/* ============================
   Lishaq Solutions — styles.min.css
   Premium dark navy + neon blue
   ============================ */
:root {
  --bg: #0b1024;
  --bg-2: #0f1733;
  --surface: #131c3d;
  --surface-2: #1a2450;
  --border: rgba(120, 180, 255, 0.14);
  --text: #eaf0ff;
  --muted: #9aa6c7;
  --primary: #4fc3ff;
  --primary-2: #2f7bff;
  --neon: #6ee0ff;
  --shadow-card: 0 20px 50px -20px rgba(0, 0, 0, 0.7);
  --shadow-neon: 0 0 0 1px rgba(79, 195, 255, 0.3),
    0 10px 40px -10px rgba(79, 195, 255, 0.45);
  --gradient-primary: linear-gradient(135deg, #6ee0ff, #2f7bff);
  --gradient-card: linear-gradient(160deg, rgba(26, 36, 80, 0.9), rgba(15, 23, 51, 0.8));
  --gradient-hero: radial-gradient(1200px 600px at 20% 0%, rgba(47, 123, 255, 0.35), transparent 60%),
    radial-gradient(900px 500px at 90% 20%, rgba(110, 224, 255, 0.25), transparent 60%),
    linear-gradient(180deg, #0b1024, #0f1733);
  --radius: 14px;
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* related links */
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 20px;
  margin-top: 24px;
  list-style: none;
}

.related-links li a {
  background: var(--gradient-card);
  padding: 8px 18px;
  border-radius: 999px;
  border: 1px solid var(--border);
  font-size: 0.9rem;
  transition: var(--transition);
  display: inline-block;
}

.related-links li a:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
  box-shadow: var(--shadow-neon);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  background-image:
    radial-gradient(800px 400px at 10% -10%, rgba(47, 123, 255, 0.18), transparent 60%),
    radial-gradient(700px 400px at 100% 10%, rgba(110, 224, 255, 0.12), transparent 60%);
  background-attachment: fixed;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  font-family: 'Space Grotesk', 'Inter', sans-serif;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  font-weight: 700;
}

h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 700;
}

h3 {
  font-size: 1.25rem;
  font-weight: 700;
}

p {
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.section {
  padding: 80px 0;
}

.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

.center {
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 12px;
}

/* ===== Buttons ===== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: 0;
  transition: var(--transition);
}

.btn-primary {
  background: var(--gradient-primary);
  color: #06122a;
  box-shadow: var(--shadow-neon);
}

.btn-primary:hover {
  transform: scale(1.04);
}

.btn-ghost {
  background: rgba(20, 30, 70, 0.5);
  backdrop-filter: blur(14px);
  color: var(--text);
  border: 1px solid var(--border);
}

.btn-ghost:hover {
  color: var(--primary);
  border-color: rgba(110, 224, 255, 0.4);
}

/* ===== Glass / Card ===== */
.glass {
  background: rgba(20, 30, 70, 0.55);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
}

.card {
  background: var(--gradient-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-neon);
}

/* ===== Header ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(11, 16, 36, 0.7);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  font-size: 1.1rem;
}

.logo-mark {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  font-weight: 800;
  color: #06122a;
  box-shadow: 0 0 30px -5px rgba(110, 224, 255, 0.6);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: var(--transition);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--text);
}

.nav-cta {
  margin-left: 12px;
}

.menu-toggle {
  display: none;
}

@media (max-width: 900px) {

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    width: 48px;
    height: 48px;

    padding: 0;

    background: rgba(255,255,255,.05);
    border: 1px solid var(--border);
    border-radius: 12px;

    cursor: pointer;

    transition:
      background .25s ease,
      border-color .25s ease,
      transform .2s ease;
  }

  .menu-toggle:hover {
    background: rgba(255,255,255,.08);
    border-color: var(--primary);
  }

  .menu-toggle:active {
    transform: scale(.95);
  }

  .menu-toggle span {
    width: 22px;
    height: 2px;

    margin: 3px 0;

    background: var(--text);
    border-radius: 999px;

    transition:
      transform .3s ease,
      opacity .3s ease,
      width .3s ease;
  }

  /* Open state */

  .menu-toggle.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .menu-toggle.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

/* ===== Hero ===== */
.hero {
  position: relative;
  overflow: hidden;
  padding: 100px 0 130px;
  text-align: center;
  background: var(--gradient-hero);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 224, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 224, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.6;
  pointer-events: none;
}

.hero>* {
  position: relative;
}

.hero-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 500;
  margin-bottom: 24px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 12px var(--primary);
}

.hero h1 {
  max-width: 900px;
  margin: 0 auto;
}

.hero p.lead {
  max-width: 640px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 1.1rem;
}

.hero-cta {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.trust {
  margin-top: 38px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 22px;
  color: var(--muted);
  font-size: 0.9rem;
}

/* ===== Grids ===== */
.grid {
  display: grid;
  gap: 22px;
}

.grid-2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid-3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid-4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 900px) {

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-3.tight {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 600px) {
  .grid-3.tight {
    grid-template-columns: 1fr;
  }
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 48px;
}

.section-head p {
  color: var(--muted);
  margin-top: 12px;
}

/* ===== Service card ===== */
.svc-icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--gradient-primary);
  display: grid;
  place-items: center;
  color: #06122a;
  font-weight: 700;
  margin-bottom: 14px;
}

.svc-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin-top: 6px;
}

/* ===== Problem list ===== */
.problem-item {
  display: flex;
  gap: 14px;
  padding: 16px;
  border-radius: 12px;
  margin-bottom: 12px;
}

.problem-badge {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: rgba(255, 90, 90, 0.18);
  color: #ff7a7a;
  display: grid;
  place-items: center;
  font-weight: 700;
  flex-shrink: 0;
}

/* ===== Project card ===== */
.project-card {
  padding: 0;
  overflow: hidden;
}

.project-card .thumb {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.project-card .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

.project-card:hover .thumb img {
  transform: scale(1.06);
}

.project-card .body {
  padding: 22px;
}

.tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 0.72rem;
  background: rgba(110, 224, 255, 0.1);
  color: var(--primary);
  border: 1px solid rgba(110, 224, 255, 0.25);
  margin-right: 6px;
  margin-top: 8px;
}

.link-arrow {
  color: var(--primary);
  font-weight: 600;
  font-size: 0.9rem;
  margin-top: 14px;
  display: inline-block;
}

/* ===== Video ===== */
.video-wrap {
  position: relative;
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.video-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

/* ===== Testimonials ===== */
.stars {
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.t-author {
  margin-top: 16px;
  font-size: 0.88rem;
}

.t-author strong {
  display: block;
}

.t-author span {
  color: var(--muted);
}

/* ===== Final CTA ===== */
.final-cta {
  position: relative;
  padding: 70px 30px;
  border-radius: 24px;
  text-align: center;
  overflow: hidden;
  margin: 90px auto;
  max-width: 1100px;
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(110, 224, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(110, 224, 255, 0.06) 1px, transparent 1px);
  background-size: 48px 48px;
  opacity: 0.5;
}

.final-cta>* {
  position: relative;
}

/* ===== Footer ===== */
.site-footer {
  background: rgba(15, 23, 51, 0.6);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 40px;
  padding: 60px 0;
}

/* ===== Footer ===== */
.site-footer {
  background: rgba(15, 23, 51, 0.6);
  border-top: 1px solid var(--border);
  margin-top: 80px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
  padding: 60px 0;
}

.footer-grid h4 {
  margin-bottom: 16px;
  font-size: 1rem;
  color: var(--text);
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li {
  margin-bottom: 12px;
  color: var(--muted);
  line-height: 1.6;
}

.footer-grid li a {
  color: var(--muted);
  transition: .25s;
}

.footer-grid li a:hover {
  color: var(--primary);
}

.copyright {
  padding: 20px;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: .85rem;
}

/* ========================= */
/* Mobile */
/* ========================= */

@media (max-width: 800px) {

  .site-footer {
    margin-top: 60px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 35px;
    padding: 40px 0;
    text-align: center;
  }

  .footer-grid > div {
    padding-bottom: 25px;
    border-bottom: 1px solid rgba(255,255,255,.08);
  }

  .footer-grid > div:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .footer-grid .logo {
    justify-content: center;
  }

  .footer-grid p {
    margin: 18px auto 0;
    max-width: 340px;
  }

  .footer-grid ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  .footer-grid li {
    margin: 0;
  }

  .copyright {
    padding: 18px 15px;
    line-height: 1.6;
  }

}

.footer-grid h4 {
  font-size: 0.95rem;
  margin-bottom: 14px;
}

.footer-grid ul {
  list-style: none;
}

.footer-grid li {
  margin-bottom: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-grid li a:hover {
  color: var(--text);
}


.copyright {
  padding: 18px 0;
  border-top: 1px solid var(--border);
  text-align: center;
  color: var(--muted);
  font-size: 0.8rem;
}

/* ===== Forms ===== */
.form-row {
  display: grid;
  gap: 18px;
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}

.form-group label {
  display: block;
  font-size: 0.88rem;
  font-weight: 500;
  margin-bottom: 8px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  background: rgba(20, 30, 70, 0.5);
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 16px;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(110, 224, 255, 0.15);
}

/* ===== Blog ===== */
.blog-card .body h2 {
  font-size: 1.2rem;
  line-height: 1.35;
  transition: var(--transition);
}

.blog-card:hover .body h2 {
  color: var(--primary);
}

.meta {
  font-size: 0.78rem;
  color: var(--muted);
  margin-bottom: 10px;
  display: flex;
  gap: 16px;
}

.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 60px 20px;
}

.article h1 {
  margin-bottom: 18px;
}

.article .article-meta {
  display: flex;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 30px;
}

.article .cover {
  aspect-ratio: 16/9;
  border-radius: var(--radius);
  overflow: hidden;
  margin: 30px 0;
  box-shadow: var(--shadow-card);
}

.article .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.article-body p {
  margin: 18px 0;
  color: rgba(234, 240, 255, 0.9);
}

.article-body h2 {
  margin-top: 40px;
  margin-bottom: 14px;
  font-size: 1.5rem;
}

.article-body pre {
  background: rgba(15, 23, 51, 0.85);
  border: 1px solid var(--border);
  padding: 18px;
  border-radius: 12px;
  overflow-x: auto;
  font-size: 0.86rem;
  font-family: 'JetBrains Mono', monospace;
  margin: 18px 0;
}

.article-body code {
  font-family: 'JetBrains Mono', monospace;
}

/* ===== Service detail ===== */
.svc-detail {
  display: grid;
  gap: 18px;
  grid-template-columns: repeat(2, 1fr);
  margin-top: 22px;
}

@media (max-width: 700px) {
  .svc-detail {
    grid-template-columns: 1fr;
  }
}

.svc-detail h4 {
  color: var(--primary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  margin-bottom: 10px;
  font-weight: 600;
}

.svc-detail ul {
  list-style: none;
  font-size: 0.9rem;
  color: var(--muted);
}

.svc-detail li {
  margin-bottom: 6px;
}

.svc-foot {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: space-between;
  align-items: center;
  font-size: 0.85rem;
  color: var(--muted);
}

/* ===== Mobile Navigation ===== */
@media (max-width: 900px) {

  .nav {
    position: relative;
  }

  .menu-toggle {
    display: flex;
    align-items: center;
    justify-content: center;

    width: 46px;
    height: 46px;

    border: 1px solid var(--border);
    border-radius: 12px;

    background: rgba(255, 255, 255, .05);
    color: var(--text);

    font-size: 1.5rem;
    cursor: pointer;

    transition: .25s ease;
  }

  .menu-toggle:hover {
    background: rgba(255, 255, 255, .1);
    border-color: var(--primary);
  }

  .menu-toggle:active {
    transform: scale(.95);
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    right: 0;

    display: flex;
    flex-direction: column;
    gap: 8px;

    padding: 18px;

    background: rgba(8,12,28,.97);
    backdrop-filter: blur(18px);

    border: 1px solid var(--border);
    border-radius: 18px;

    box-shadow: 0 25px 50px rgba(0,0,0,.35);

    opacity: 0;
    visibility: hidden;

    transform: translateY(-20px) scale(.97);

    transition:
      opacity .35s ease,
      transform .35s ease,
      visibility .35s;

    z-index: 999;
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
  }

  .nav-links.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-links a {
    display: block;

    padding: 14px 18px;

    border-radius: 12px;

    color: var(--text);
    text-decoration: none;

    transition: .25s ease;
  }

  .nav-links a:hover,
  .nav-links a.active {
    background: rgba(110, 224, 255, .12);
    color: var(--primary);
  }

  .nav-cta {
    margin: 10px 0 0;
  }

  .nav-cta .btn {
    width: 100%;
    justify-content: center;
  }
}

/* ===== Reveal animation ===== */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.in {
  opacity: 1;
  transform: none;
}





/* ===== WhatsApp Floating Button — Premium Style ===== */
.wa-float {
  position: fixed;
  bottom: 24px;
  right: 24px;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(145deg, #25D366, #1da85c);
  color: #fff;
  display: grid;
  place-items: center;
  z-index: 999;
  font-size: 2rem;
  text-decoration: none;
  box-shadow:
    0 8px 32px rgba(37, 211, 102, 0.45),
    inset 0 2px 0 rgba(255, 255, 255, 0.2),
    0 0 0 0 rgba(37, 211, 102, 0.4);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  animation: pulse-ring 2.5s ease-in-out infinite;
}

/* animated pulse ring */
@keyframes pulse-ring {
  0% {
    box-shadow:
      0 8px 32px rgba(37, 211, 102, 0.45),
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0.4);
  }

  50% {
    box-shadow:
      0 8px 40px rgba(37, 211, 102, 0.6),
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 0 0 18px rgba(37, 211, 102, 0);
  }

  100% {
    box-shadow:
      0 8px 32px rgba(37, 211, 102, 0.45),
      inset 0 2px 0 rgba(255, 255, 255, 0.2),
      0 0 0 0 rgba(37, 211, 102, 0);
  }
}

/* hover state */
.wa-float:hover {
  transform: scale(1.12) rotate(-3deg);
  box-shadow:
    0 12px 48px rgba(37, 211, 102, 0.65),
    inset 0 2px 0 rgba(255, 255, 255, 0.3),
    0 0 0 8px rgba(37, 211, 102, 0.15);
}

/* active / click feedback */
.wa-float:active {
  transform: scale(0.92);
  transition-duration: 0.08s;
}

/* icon inside — crisp & centered */
.wa-float i {
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.15));
  line-height: 1;
}

/* optional tiny notification dot */
.wa-float .notification-dot {
  position: absolute;
  top: 2px;
  right: 4px;
  width: 14px;
  height: 14px;
  background: #ff3b5c;
  border-radius: 50%;
  border: 2.5px solid #fff;
  animation: blink-dot 1.8s ease-in-out infinite;
  box-shadow: 0 2px 8px rgba(255, 59, 92, 0.5);
}

@keyframes blink-dot {

  0%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  50% {
    opacity: 0.4;
    transform: scale(0.85);
  }
}

/* tooltip on hover — modern & clean */
.wa-float::after {
  content: "Chat with us 💬";
  position: absolute;
  right: calc(100% + 18px);
  top: 50%;
  transform: translateY(-50%) scale(0.9);
  background: #1f2937;
  color: #f9fafb;
  padding: 0.45rem 1rem;
  border-radius: 10px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
  font-family: system-ui, -apple-system, sans-serif;
}

/* tooltip arrow */
.wa-float::before {
  content: '';
  position: absolute;
  right: calc(100% + 10px);
  top: 50%;
  transform: translateY(-50%) scale(0.8);
  border: 6px solid transparent;
  border-left-color: #1f2937;
  opacity: 0;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.wa-float:hover::after {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.wa-float:hover::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

/* responsive: smaller on mobile */
@media (max-width: 480px) {
  .wa-float {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    font-size: 1.6rem;
  }

  .wa-float .notification-dot {
    width: 12px;
    height: 12px;
    top: 1px;
    right: 3px;
  }

  .wa-float::after {
    font-size: 0.7rem;
    padding: 0.35rem 0.8rem;
    right: calc(100% + 14px);
  }
}

/* accessibility */
.wa-float:focus-visible {
  outline: 3px solid #2563eb;
  outline-offset: 4px;
}






/* modern, clean style */
.socials {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  background: transparent;
  max-width: fit-content;
  margin: 0;
}

.social-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 3rem;
  height: 3rem;
  border-radius: 12px;
  background: transparent;
  color: #6b7280;
  font-size: 1.35rem;
  text-decoration: none;
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  border: none;
  position: relative;
}

/* subtle background on hover - each brand gets its own color */
.social-link:hover {
  transform: translateY(-3px) scale(1.05);
  background: rgba(0, 0, 0, 0.04);
}

/* brand-specific hover colors */
.social-link[data-whatsapp-link]:hover {
  color: #25D366;
  background: #25D36612;
}

.social-link[data-email-link]:hover {
  color: #EA4335;
  background: #EA433512;
}

.social-link[data-github-link]:hover {
  color: #181717;
  background: #18171712;
}

.social-link[data-linkedin-link]:hover {
  color: #0A66C2;
  background: #0A66C212;
}

.social-link[data-youtube-link]:hover {
  color: #FF0000;
  background: #FF000012;
}

.social-link[data-facebook-link]:hover {
  color: #1877F2;
  background: #1877F212;
}

.social-link[data-tiktok-link]:hover {
  color: #7b7676;
  background: #01010112;
}

/* active/click feedback */
.social-link:active {
  transform: scale(0.92);
  transition-duration: 0.08s;
}

/* accessible focus */
.social-link:focus-visible {
  outline: 2px solid #2563eb;
  outline-offset: 4px;
  border-radius: 12px;
}

/* tooltip-like label on hover — optional extra polish */
.social-link::after {
  content: attr(aria-label);
  position: absolute;
  bottom: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  background: #1f2937;
  color: #f9fafb;
  padding: 0.25rem 0.65rem;
  border-radius: 6px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
  white-space: nowrap;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.social-link:hover::after {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* small arrow on tooltip */
.social-link::before {
  content: '';
  position: absolute;
  bottom: calc(100% + 4px);
  left: 50%;
  transform: translateX(-50%) scale(0.8);
  border: 5px solid transparent;
  border-top-color: #1f2937;
  opacity: 0;
  transition: all 0.2s ease;
}

.social-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) scale(1);
}

/* responsive tweaks */
@media (max-width: 480px) {
  .social-link {
    width: 2.6rem;
    height: 2.6rem;
    font-size: 1.15rem;
  }

  .socials {
    gap: 0.3rem;
    padding: 0.3rem;
  }
}