@charset "utf-8";
/* CSS Document */


@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800&display=swap');

:root{
  --blue: #3b82f6;
  --blue-dark: #2563eb;
  --bg: #061326;
  --text-muted: #94a3b8;
  --text-dim: #64748b;
  --border: rgba(255,255,255,.1);
  --panel: rgba(255,255,255,.06);
}

*{ margin:0; padding:0; box-sizing:border-box; }
html{ scroll-behavior:smooth; }

body{
  font-family:'Inter',sans-serif;
  background:
    radial-gradient(circle at top right,#002385 0%,transparent 20%),
    radial-gradient(circle at bottom left,#0f172a 0%,transparent 35%),
    var(--bg);
  color:#fff;
  padding-top:104px; /* offset for fixed header */
}

a{ text-decoration:none; color:inherit; }
img{ max-width:100%; display:block; }
.container{ width:92%; max-width:1300px; margin:auto; }
section{ padding:100px 0; position:relative; }

/* ---------- shared elements ---------- */

.badge{
  display:inline-block;
  padding:12px 22px;
  border-radius:50px;
  background:rgba(59,130,246,.15);
  color:#60a5fa;
  border:1px solid rgba(59,130,246,.3);
}

.btn-primary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:16px 34px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--blue-dark),var(--blue));
  color:#fff;
  font-weight:600;
  transition:.35s;
  box-shadow:0 15px 35px rgba(37,99,235,.35);
}
.btn-primary:hover{ transform:translateY(-3px); box-shadow:0 20px 50px rgba(37,99,235,.55); }

.btn-outline{
  display:inline-flex;
  padding:16px 34px;
  border:1px solid var(--border);
  color:#fff;
  border-radius:14px;
  backdrop-filter:blur(20px);
  transition:.35s;
	    background: #2a6aed;
}
.btn-outline:hover{ background:var(--blue-dark); border-color:var(--blue); }

.section-head{ text-align:center; max-width:680px; margin:0 auto 60px; }
.section-head h2{ font-size:42px; font-weight:800; margin-top:20px; line-height:1.2; }
.section-head p{ color:var(--text-muted); font-size:17px; line-height:1.8; margin-top:18px; }
.section-eyebrow{ display:flex; justify-content:center; margin-bottom:0; }

.hidden{ opacity:0; transform:translateY(40px); transition:.8s ease; }
.show{ opacity:1; transform:translateY(0); }

/* ---------- header / nav ---------- */

header{
  position:fixed;
  top:0; left:0; right:0;
  z-index:100;
  padding:24px 0;
  background:transparent;
  border-bottom:1px solid transparent;
  transition:.3s ease;
}

header.scrolled{
  padding:14px 0;
  background:rgba(6,19,38,.85);
  backdrop-filter:blur(18px);
  border-bottom:1px solid var(--border);
  box-shadow:0 15px 35px rgba(0,0,0,.35);
}

.nav{ display:flex; align-items:center; justify-content:space-between; position:relative; }
.logo{ display:flex; align-items:center; gap:12px; }

.logo-icon{
  width:52px; height:52px;
  border-radius:16px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex; align-items:center; justify-content:center;
  font-size:22px;
}

.logo h2{ font-size:28px; font-weight:800; }
.logo span{ color:#9ca3af; font-size:13px; }

nav{ display:flex; align-items:center; gap:40px; }
nav a{ color:#cbd5e1; font-weight:500; transition:.3s; }
nav a:hover, nav a.active{ color:var(--blue); }

.hamburger{
  display:none;
  width:46px; height:46px;
  align-items:center; justify-content:center;
  border-radius:12px;
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  color:#fff;
  font-size:20px;
  cursor:pointer;
  z-index:30;
  transition:.3s;
}
.hamburger:hover{ background:rgba(59,130,246,.25); }
.mobile-btn{ display:none; }

/* ---------- hero ---------- */

.hero{ padding:40px 0 50px; }
.hero-grid{ display:grid; grid-template-columns:50% 45%; align-items:center; gap:30px; }
.hero-left .badge{ margin-bottom:30px; }
.hero-left h1{ font-size:55px; line-height:1.1; font-weight:800; }
.hero-left h1 span{ display:block; color:var(--blue); }
.hero-left p{ margin:30px 0; font-size:20px; color:var(--text-muted); line-height:1.8; }
.hero-buttons{ display:flex; gap:18px; margin-bottom:50px; }

.features{ display:flex; gap:40px; }
.feature{ display:flex; gap:15px; align-items:flex-start; transition:.3s; }
.feature:hover{ transform:translateY(-6px); }
.feature i{
  width:50px; height:50px; border-radius:50%;
  background:#1e3a8a;
  display:flex; justify-content:center; align-items:center;
  color:#60a5fa;
}
.feature h4{ margin-bottom:6px; }
.feature p{ margin:0; font-size:14px; color:var(--text-muted); }

.hero-right{ position:relative; display:flex; justify-content:center; overflow:visible; }

.circle{
  position:absolute;
  width:520px; height:520px;
  border-radius:50%;
  background:radial-gradient(circle,var(--blue-dark),transparent 70%);
  filter:blur(25px);
  opacity:.5;
  z-index:-1;
}

.hero-img{
  width:700px;
  max-width:none;
  position:relative;
  z-index:2;
  filter:drop-shadow(0 35px 60px rgba(37,99,235,.45));
  -webkit-mask-image:linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,.9) 82%, rgba(0,0,0,.3) 92%, rgba(0,0,0,0) 100%);
  mask-image:linear-gradient(to bottom, rgba(0,0,0,1) 0%, rgba(0,0,0,1) 72%, rgba(0,0,0,.9) 82%, rgba(0,0,0,.3) 92%, rgba(0,0,0,0) 100%);
}

.card{
  position:absolute;
  width:220px;
  padding:24px;
  border-radius:24px;
  backdrop-filter:blur(30px);
  background:rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.12);
  box-shadow:0 20px 50px rgba(0,0,0,.35);
  transition:.35s;
}
.card:hover{ transform:translateY(-10px) scale(1.03); box-shadow:0 25px 60px rgba(37,99,235,.45); }
.card h5{ color:#cbd5e1; margin-bottom:10px; font-weight:500; }
.card h2{ font-size:38px; margin-bottom:10px; }
.card span{ color:#22c55e; font-weight:600; }

.card1{ top:30px; left:-30px; }
.card2{ top:40px; right:-20px; }
.card3{ bottom:60px; left:-10px; }
.card4{ bottom:20px; right:-30px; }

.circle-progress{
  width:110px; height:110px;
  border-radius:50%;
  border:8px solid var(--blue-dark);
  display:flex; justify-content:center; align-items:center;
  font-size:28px; font-weight:700;
}

/* bottom stats */

.stats{ margin-top:30px; }
.stats-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:25px;
  padding:30px;
  border-radius:26px;
  background:var(--panel);
  backdrop-filter:blur(30px);
  border:1px solid rgba(255,255,255,.08);
}
.stat{ display:flex; align-items:center; gap:18px; }
.stat i{
  width:70px; height:70px;
  border-radius:50%;
  background:#1d4ed8;
  display:flex; justify-content:center; align-items:center;
  font-size:26px;
}
.stat h2{ font-size:38px; }
.stat p{ color:var(--text-muted); }

/* ---------- who we are ---------- */

.who-we-are{ overflow:visible; padding-top:40px; }
.who-grid{ display:grid; grid-template-columns:52% 1fr; gap:70px; align-items:center; }

.who-visual{ position:relative; min-height:520px; display:flex; align-items:center; justify-content:center; }
.who-visual .glow{
  position:absolute;
  width:400px; height:400px;
  border-radius:50%;
  background:radial-gradient(circle,var(--blue-dark),transparent 70%);
  filter:blur(30px);
  opacity:.45;
  z-index:0;
}

.stack-card{
  position:absolute;
  width:210px;
  padding:22px 24px;
  border-radius:20px;
  background:rgba(255,255,255,.07);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter:blur(30px);
  box-shadow:0 25px 60px rgba(0,0,0,.4);
  transition:.4s;
}
.stack-card:hover{ transform:translateY(-8px) rotate(0deg) !important; z-index:20 !important; }
.stack-card .sc-icon{
  width:42px; height:42px; border-radius:12px;
  display:flex; align-items:center; justify-content:center;
  font-size:16px; margin-bottom:14px;
}
.stack-card h3{ font-size:25px; font-weight:800; margin-bottom:4px; }
.stack-card p{ color:var(--text-muted); font-size:12.5px; line-height:1.5; }

.stack-1{ top:0; left:0; transform:rotate(-6deg); z-index:1; }
.stack-1 .sc-icon{ background:rgba(96,165,250,.18); color:#60a5fa; }
.stack-2{ top:6%; right:0; transform:rotate(5deg); z-index:2; }
.stack-2 .sc-icon{ background:rgba(74,222,128,.18); color:#4ade80; }
.stack-3{ top:38%; left:26%; transform:rotate(-2deg); z-index:5; }
.stack-3 .sc-icon{ background:rgba(251,191,36,.18); color:#fbbf24; }
.stack-4{ bottom:8%; left:0; transform:rotate(-4deg); z-index:3; }
.stack-4 .sc-icon{ background:rgba(244,114,182,.18); color:#f472b6; }
.stack-5{ bottom:0; right:4%; transform:rotate(4deg); z-index:4; }
.stack-5 .sc-icon{ background:rgba(56,189,248,.18); color:#38bdf8; }

.who-content .badge{ margin-bottom:24px; }
.who-content h2{ font-size:40px; font-weight:800; line-height:1.22; margin-bottom:24px; }
.who-content h2 .accent{ color:var(--blue); }
.who-content p{ color:var(--text-muted); font-size:16px; line-height:1.9; margin-bottom:20px; }

.who-points{ display:grid; gap:16px; margin:30px 0 36px; }
.who-point{
  display:flex; align-items:center; gap:16px;
  padding:14px 18px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid rgba(255,255,255,.06);
  transition:.25s;
}
.who-point:hover{ background:rgba(255,255,255,.06); border-color:rgba(59,130,246,.3); }
.who-point .wp-icon{
  width:34px; height:34px; border-radius:50%;
  background:rgba(59,130,246,.15); color:#60a5fa;
  display:flex; align-items:center; justify-content:center;
  font-size:13px; flex-shrink:0;
}
.who-point span{ color:#e2e8f0; font-size:15px; font-weight:500; }

.who-actions{ display:flex; align-items:center; gap:28px; flex-wrap:wrap; }
.who-rating{ display:flex; align-items:center; gap:10px; }
.who-rating .stars{ color:#facc15; font-size:15px; letter-spacing:2px; }
.who-rating span{ color:var(--text-muted); font-size:13.5px; }

/* ---------- expertise / services pills ---------- */

.expertise-section{ padding:110px 0; }

.expertise-pills{
  display:flex;
  flex-wrap:wrap;
  justify-content:center;
  gap:16px;
  max-width:1050px;
  margin:0 auto 55px;
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:14px 24px;
  border-radius:50px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.1);
  font-weight:600;
  font-size:14.5px;
  color:#e2e8f0;
  transition:background .3s, border-color .3s, box-shadow .3s, opacity .6s ease, transform .6s ease;
}

.expertise-pills .pill:nth-child(6n+1){ transition-delay:0s; }
.expertise-pills .pill:nth-child(6n+2){ transition-delay:.06s; }
.expertise-pills .pill:nth-child(6n+3){ transition-delay:.12s; }
.expertise-pills .pill:nth-child(6n+4){ transition-delay:.18s; }
.expertise-pills .pill:nth-child(6n+5){ transition-delay:.24s; }
.expertise-pills .pill:nth-child(6n+6){ transition-delay:.3s; }

.pill:hover{
  transform:translateY(-5px);
  border-color:var(--blue);
  background:rgba(59,130,246,.12);
  box-shadow:0 15px 30px rgba(37,99,235,.25);
}

.pill i{
  color:#60a5fa;
  font-size:15px;
}

.expertise-text{
  
  margin:0 auto;
}

.expertise-text p{
  color:var(--text-muted);
  line-height:1.9;
  font-size:16px;
  text-align:center;
  margin-bottom:20px;
}

.expertise-text p:last-child{ margin-bottom:0; }
.expertise-text strong{ color:#e2e8f0; font-weight:600; }

/* ---------- why choose us ---------- */

.why-us{ background:rgba(255,255,255,.02); }
.why-list{ display:grid; grid-template-columns:1fr 1fr 1fr 1fr; gap:26px 40px; }

.why-row{
  gap:20px;
  align-items:flex-start;
  padding:26px;
  border-radius:20px;
  background:rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
  transition:.3s;
}
.why-row:hover{ background:rgba(255,255,255,.08); border-color:rgba(59,130,246,.35); transform:translateX(6px); }
.why-row .num{
  flex-shrink:0;
  width:46px; height:46px;
  border-radius:14px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex; align-items:center; justify-content:center;
  font-size:18px; color:#fff;
  margin-bottom:20px;
}
.why-row h4{ font-size:17px; margin-bottom:8px; }
.why-row p{ color:var(--text-muted); font-size:14px; line-height:1.7; margin:0; }

/* ---------- process ---------- */

.process{ background:rgba(255,255,255,.04); }
.process-spine{ position:relative; max-width:900px; margin:0 auto; }
.process-spine::before{
  content:'';
  position:absolute;
  top:0; bottom:0; left:50%;
  width:2px;
  transform:translateX(-50%);
  background:linear-gradient(180deg,transparent,var(--blue-dark) 8%,var(--blue-dark) 92%,transparent);
}

.process-item{
  position:relative;
  display:grid;
  grid-template-columns:1fr auto 1fr;
  align-items:center;
  gap:30px;
  margin-bottom:14px;
}
.process-item:last-child{ margin-bottom:0; }

.process-node{
  position:relative;
  z-index:2;
  width:52px; height:52px;
  border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex; align-items:center; justify-content:center;
  font-weight:800; font-size:18px;
  box-shadow:0 0 0 8px var(--bg), 0 15px 35px rgba(37,99,235,.5);
}

.process-card{
  padding:28px 30px;
  border-radius:20px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  backdrop-filter:blur(20px);
  transition:.3s;
  display:flex;
  align-items:flex-start;
  gap:18px;
}
.process-item:nth-child(odd) .process-card{ grid-column:1; text-align:right; flex-direction:row-reverse; }
.process-item:nth-child(even) .process-card{ grid-column:3; }
.process-card:hover{ background:rgba(255,255,255,.09); border-color:rgba(59,130,246,.4); transform:translateY(-4px); }
.process-card i{
  width:44px; height:44px; border-radius:12px; flex-shrink:0;
  background:#1e3a8a; color:#60a5fa;
  display:flex; align-items:center; justify-content:center; font-size:17px;
}
.process-card h4{ font-size:17px; margin-bottom:6px; }
.process-card p{ color:var(--text-muted); font-size:14px; line-height:1.7; margin:0; }
.process-spacer{ grid-column:3; }
.process-item:nth-child(even) .process-spacer{ grid-column:1; }

/* ---------- testimonials ---------- */

.testimonials-grid{ display:grid; grid-template-columns:repeat(3,1fr); gap:26px; }
.t-card{
  padding:34px 30px;
  border-radius:24px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  backdrop-filter:blur(30px);
  transition:.35s;
  display:flex; flex-direction:column; gap:20px;
}
.t-card:hover{ transform:translateY(-8px); box-shadow:0 25px 55px rgba(37,99,235,.3); }
.t-stars{ color:#facc15; font-size:14px; letter-spacing:3px; }
.t-quote{ color:#cbd5e1; font-size:15px; line-height:1.8; flex-grow:1; }
.t-quote::before{
  content:'\201C';
  font-size:40px; color:var(--blue);
  display:block; line-height:.6; margin-bottom:6px;
}
.t-person{ display:flex; align-items:center; gap:14px; }
.t-avatar{
  width:48px; height:48px; border-radius:50%;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex; align-items:center; justify-content:center;
  font-weight:700; font-size:16px;
}
.t-name{ font-weight:600; font-size:14.5px; }
.t-role{ color:var(--text-muted); font-size:13px; }

/* ---------- faq ---------- */

.faq{ background:rgba(255,255,255,.02); }
.faq-list{ max-width:820px; margin:0 auto; display:flex; flex-direction:column; gap:16px; }

.faq-item{
  border-radius:18px;
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.09);
  overflow:hidden;
  transition:border-color .3s;
}
.faq-item.open{ border-color:rgba(59,130,246,.4); }

.faq-question{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:22px 26px;
  cursor:pointer;
  font-weight:600;
  font-size:15.5px;
}
.faq-question i{ flex-shrink:0; color:#60a5fa; transition:transform .3s; }
.faq-item.open .faq-question i{ transform:rotate(45deg); }

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease, padding .35s ease;
  padding:0 26px;
}
.faq-item.open .faq-answer{ max-height:260px; padding:0 26px 24px; }
.faq-answer p{ color:var(--text-muted); font-size:14.5px; line-height:1.8; }

/* ---------- footer ---------- */

footer{ padding:80px 0 0; border-top:1px solid var(--border); }
.footer-grid{ display:grid; grid-template-columns:1.4fr 1fr 1fr 1.2fr; gap:50px; padding-bottom:60px; }
.footer-brand .logo{ display:flex; align-items:center; gap:12px; margin-bottom:18px; }
.footer-logo-icon{
  width:48px; height:48px; border-radius:14px;
  background:linear-gradient(135deg,var(--blue),var(--blue-dark));
  display:flex; align-items:center; justify-content:center; font-size:20px;
}
.footer-brand h3{ font-size:22px; font-weight:800; }
.footer-brand p{ color:var(--text-muted); font-size:14.5px; line-height:1.8; margin:16px 0 24px; max-width:280px; }
.footer-social{ display:flex; gap:12px; }
.footer-social a{
  width:42px; height:42px; border-radius:12px;
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.1);
  display:flex; align-items:center; justify-content:center;
  transition:.3s;
  color:#fff;
}
.footer-social a:hover{ background:var(--blue-dark); border-color:var(--blue); transform:translateY(-3px); }

.footer-col h4{ font-size:15.5px; margin-bottom:22px; letter-spacing:.3px; }
.footer-col ul{ list-style:none; display:grid; gap:14px; }
.footer-col ul li a{ color:var(--text-muted); font-size:14.5px; transition:.25s; }
.footer-col ul li a:hover{ color:#60a5fa; padding-left:4px; }

.footer-contact li{ display:flex; align-items:flex-start; gap:12px; color:var(--text-muted); font-size:14.5px; line-height:1.6; }
.footer-contact li i{ color:#60a5fa; margin-top:3px; }

.footer-bottom{
  border-top:1px solid var(--border);
  padding:26px 0;
  display:flex; align-items:center; justify-content:space-between;
  flex-wrap:wrap; gap:14px;
}
.footer-bottom p{ color:var(--text-dim); font-size:13.5px; }
.footer-bottom-links{ display:flex; gap:24px; }
.footer-bottom-links a{ color:var(--text-dim); font-size:13.5px; transition:.25s; }
.footer-bottom-links a:hover{ color:#60a5fa; }

/* ---------- responsive ---------- */

@media(max-width:1100px){
  .hero-grid{ grid-template-columns:1fr; text-align:center; }
  .features{ justify-content:center; flex-wrap:wrap; }
  .hero-buttons{ justify-content:center; }
  .hero-right{
    position:relative;
    display:flex;
    justify-content:center;
    align-items:center;
    min-height:700px;
    transform:translateY(-60px);
  }
  .stats-grid{ grid-template-columns:repeat(2,1fr); }
  .who-grid{ grid-template-columns:1fr; }
  .who-visual{ min-height:420px; margin-bottom:30px; }
  .testimonials-grid{ grid-template-columns:1fr; }
  .why-list{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media(max-width:900px){
  .process-spine::before{ left:22px; }
  .process-item{ grid-template-columns:auto 1fr; align-items:flex-start; gap:20px; margin-bottom:22px; }
  .process-node{ width:44px; height:44px; font-size:15px; margin-top:2px; }
  .process-item:nth-child(odd) .process-card,
  .process-item:nth-child(even) .process-card{ grid-column:2; text-align:left; flex-direction:row; }
  .process-card{ align-items:center; min-height:76px; }
  .process-spacer{ display:none; }
}

@media(max-width:768px){
  body{ padding-top:88px; }
  section{ padding:64px 0; }
  .section-head h2{ font-size:28px; }
  .who-content h2{ font-size:28px; }

  .nav{ flex-direction:row; align-items:center; justify-content:space-between; gap:0; }
  nav{
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:18px;
    position:absolute;
    top:calc(100% + 12px);
    left:0; right:0;
    background:#0b1a33;
    border:1px solid var(--border);
    border-radius:18px;
    padding:26px 24px;
    box-shadow:0 25px 55px rgba(0,0,0,.45);
    z-index:25;
  }
  nav.active{ display:flex; }
  nav a{ text-align:center; padding:6px 0; }
  .desktop-btn{ display:none; }
  .mobile-btn{ display:inline-flex; width:100%; margin-top:8px; }
  .hamburger{ display:flex; }

  .hero{ padding:40px 0; }
  .hero-grid{ grid-template-columns:1fr; gap:60px; }
  .hero-left{ text-align:center; }
  .hero-left h1{ font-size:38px; line-height:1.2; }
  .hero-left p{ font-size:16px; line-height:1.7; }
  .hero-buttons{ flex-direction:column; width:100%; margin-bottom:0 !important; }
  .hero-buttons a{ width:100%; }
  .features{ flex-direction:column; gap:20px; }

  .hero-img, .circle{ display:none; }
  .hero-right{
    position:relative;
    height:auto;
    min-height:0;
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:12px;
    justify-content:center;
    align-items:stretch;
    transform:none;
  }
  .card{
    position:static; width:100%; max-width:none; margin:0; padding:16px;
    display:flex; flex-direction:column; justify-content:center;
    min-height:150px;
  }
  .card h2{ font-size:26px; }
  .card1, .card2, .card3, .card4{ top:auto; left:auto; right:auto; bottom:auto; }
  .circle-progress{ width:80px; height:80px; font-size:20px; }
  .stats-grid{ grid-template-columns:1fr; padding:20px; }
  .stat{ justify-content:center; text-align:center; flex-direction:column; }

  .stats, .who-visual{ display:none; }
  .footer-grid{ grid-template-columns:1fr; gap:40px; padding-bottom:40px; }
  .footer-bottom{ flex-direction:column; text-align:center; }
}

@media(max-width:600px){
  .stack-3{ grid-column:1/-1; justify-self:center; max-width:220px; }
}

@media(max-width:400px){
  .logo h2{ font-size:22px; }
  .logo-icon{ width:44px; height:44px; font-size:18px; }
}


/* Floating WhatsApp Button */
  .wa-float-btn{
  position: fixed;
  bottom: 26px;
  right: 26px;
  width: 62px;
  height: 62px;
  background: linear-gradient(135deg, #25D366, #128C7E);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(18,140,126,0.4), 0 2px 8px rgba(0,0,0,0.15);
  z-index: 9999;
  cursor: pointer;
  text-decoration: none;
  border: 3px solid rgba(255,255,255,0.15);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  animation: waPulse 2.4s infinite;
}
.wa-float-btn:hover{
  transform: scale(1.08) translateY(-2px);
  box-shadow: 0 12px 28px rgba(18,140,126,0.5), 0 4px 10px rgba(0,0,0,0.2);
}
.wa-float-btn i{
  font-size: 30px;
  color: #fff;
  filter: drop-shadow(0 1px 2px rgba(0,0,0,0.15));
}
@keyframes waPulse{
  0%   { box-shadow: 0 0 0 0 rgba(37,211,102,0.5), 0 8px 24px rgba(18,140,126,0.4); }
  70%  { box-shadow: 0 0 0 16px rgba(37,211,102,0), 0 8px 24px rgba(18,140,126,0.4); }
  100% { box-shadow: 0 0 0 0 rgba(37,211,102,0), 0 8px 24px rgba(18,140,126,0.4); }
}
@media (max-width: 480px){
  .wa-float-btn{
    width: 54px;
    height: 54px;
    bottom: 18px;
    right: 18px;
  }
  .wa-float-btn i{ font-size: 26px; }
}
 
/* WhatsApp Modal */
.wa-modal-overlay{
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(6,10,20,0.65);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  z-index: 10000;
  align-items: center;
  justify-content: center;
  padding: 16px;
  opacity: 0;
  transition: opacity 0.25s ease;
}
.wa-modal-overlay.active{
  display: flex;
  opacity: 1;
}
.wa-modal{
  background: #ffffff;
  width: 100%;
  max-width: 400px;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.35), 0 0 0 1px rgba(255,255,255,0.06);
  transform: translateY(16px) scale(0.97);
  opacity: 0;
  animation: waModalIn 0.3s ease forwards;
}
@keyframes waModalIn{
  to{ transform: translateY(0) scale(1); opacity: 1; }
}
.wa-modal-header{
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  padding: 20px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  overflow: hidden;
}
.wa-modal-header::before{
  content: "";
  position: absolute;
  top: -40px;
  right: -30px;
  width: 120px;
  height: 120px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
}
.wa-modal-header h3{
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 10px;
  position: relative;
  z-index: 1;
}
.wa-modal-header h3 i{
  font-size: 22px;
}
.wa-modal-header p{
  margin: 4px 0 0;
  font-size: 12.5px;
  opacity: 0.85;
  position: relative;
  z-index: 1;
}
.wa-modal-close{
  background: rgba(255,255,255,0.18);
  border: none;
  color: #fff;
  font-size: 18px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  cursor: pointer;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
  transition: background 0.2s ease;
}
.wa-modal-close:hover{
  background: rgba(255,255,255,0.3);
}
.wa-modal-body{
  padding: 22px;
  background: #fafbfc;
}
.wa-field{
  margin-bottom: 15px;
}
.wa-field label{
  display: block;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 6px;
  color: #333;
  letter-spacing: 0.2px;
}
.wa-field input,
.wa-field select,
.wa-field textarea{
  width: 100%;
  padding: 11px 13px;
  border: 1.5px solid #e2e5e9;
  border-radius: 10px;
  font-size: 14px;
  font-family: inherit;
  box-sizing: border-box;
  background: #fff;
  color: #222;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}
.wa-field input:focus,
.wa-field select:focus,
.wa-field textarea:focus{
  outline: none;
  border-color: #25D366;
  box-shadow: 0 0 0 3px rgba(37,211,102,0.15);
}
.wa-field textarea{
  resize: vertical;
  min-height: 72px;
}
.wa-send-btn{
  width: 100%;
  background: linear-gradient(135deg, #25D366, #128C7E);
  color: #fff;
  border: none;
  padding: 13px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 4px;
  box-shadow: 0 6px 16px rgba(18,140,126,0.3);
  transition: transform 0.15s ease, box-shadow 0.15s ease;
}
.wa-send-btn i{ font-size: 18px; }
.wa-send-btn:hover{
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(18,140,126,0.4);
}
.wa-send-btn:active{
  transform: translateY(0);
}
