/* ============================================
   EWAY TAX — PROFESSIONAL GST SERVICES WEBSITE
   Color Palette from Logo:
   Primary  : #22c55e (bright green)
   Dark Green: #15803d
   Accent1  : #3b82f6 (blue)
   Accent2  : #8b5cf6 (purple)
   Accent3  : #f97316 (orange-red)
   Dark     : #0d1f12
   ============================================ */

:root {
  --green:        #22c55e;
  --green-dark:   #15803d;
  --green-deep:   #052e16;
  --green-light:  #dcfce7;
  --green-mid:    #86efac;
  --blue:         #3b82f6;
  --blue-light:   #dbeafe;
  --purple:       #8b5cf6;
  --purple-light: #ede9fe;
  --orange:       #f97316;
  --orange-light: #ffedd5;
  --dark:         #0a1a10;
  --dark2:        #0f2618;
  --dark3:        #1a3a22;
  --text:         #0f172a;
  --text-muted:   #64748b;
  --text-light:   #94a3b8;
  --border:       #e2e8f0;
  --bg:           #f8fffe;
  --bg2:          #f0fdf4;
  --white:        #ffffff;
  --grad-main:    linear-gradient(135deg, #22c55e 0%, #16a34a 50%, #15803d 100%);
  --grad-hero:    linear-gradient(135deg, #052e16 0%, #0a3d1a 40%, #0d1f12 100%);
  --grad-accent:  linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
  --grad-warm:    linear-gradient(135deg, #f97316 0%, #ef4444 100%);
  --shadow-green: 0 8px 32px rgba(34,197,94,0.25);
  --shadow-card:  0 4px 24px rgba(0,0,0,0.07);
  --font-head:    'Poppins', sans-serif;
  --font-body:    'Nunito', sans-serif;
  --radius:       16px;
  --radius-lg:    24px;
}

/* ── BASE ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: var(--font-body); color: var(--text); background: var(--white); overflow-x: hidden; font-size: 16px; line-height: 1.7; }

img { max-width: 100%; }
a { text-decoration: none; }

/* ── TYPOGRAPHY ── */
h1,h2,h3,h4,h5,h6 { font-family: var(--font-head); font-weight: 700; line-height: 1.25; }

.text-green { color: var(--green) !important; }
.text-gradient-green {
  background: var(--grad-main);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}
.text-gradient-accent {
  background: var(--grad-accent);
  -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text;
}

/* ── BUTTONS ── */
.btn-eway {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--grad-main);
  color: #fff; font-weight: 700; font-size: 15px;
  border: none; border-radius: 50px;
  padding: 13px 32px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(.4,0,.2,1);
  box-shadow: var(--shadow-green);
  font-family: var(--font-body);
}
.btn-eway:hover { color: #fff; transform: translateY(-3px); box-shadow: 0 12px 40px rgba(34,197,94,0.4); }
.btn-eway-outline {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent;
  color: var(--green-dark); font-weight: 700; font-size: 15px;
  border: 2px solid var(--green);
  border-radius: 50px; padding: 11px 30px;
  cursor: pointer; transition: all 0.3s;
  font-family: var(--font-body);
}
.btn-eway-outline:hover { background: var(--green); color: #fff; transform: translateY(-2px); }
.btn-eway-white {
  display: inline-flex; align-items: center; gap: 8px;
  background: #fff; color: var(--green-dark);
  font-weight: 700; font-size: 15px;
  border: none; border-radius: 50px;
  padding: 13px 32px; cursor: pointer;
  transition: all 0.3s; box-shadow: 0 4px 20px rgba(0,0,0,0.12);
  font-family: var(--font-body);
}
.btn-eway-white:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,0,0,0.18); color: var(--green-dark); }

/* ── NAVBAR ── */
.eway-nav {
  background: rgba(5, 46, 22, 0.97);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(34,197,94,0.15);
  padding: 12px 0;
  transition: all 0.3s;
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
}
.eway-nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.3); }
.nav-logo { display: flex; align-items: center; gap: 10px; }
.nav-logo img { height: 44px; width: 44px; object-fit: contain; border-radius: 8px; background: #fff; padding: 2px; }
.nav-logo-text .brand-name { font-family: var(--font-head); font-size: 20px; font-weight: 800; color: #fff; line-height: 1; }
.nav-logo-text .brand-sub { font-size: 10px; color: var(--green-mid); letter-spacing: 2px; text-transform: uppercase; }
.eway-nav .nav-link { color: rgba(255,255,255,0.8) !important; font-weight: 600; font-size: 15px; padding: 8px 14px !important; border-radius: 8px; transition: all 0.2s; }
.eway-nav .nav-link:hover, .eway-nav .nav-link.active { color: var(--green) !important; background: rgba(34,197,94,0.1); }
.navbar-toggler { border: none; filter: invert(1); }
.navbar-toggler:focus { box-shadow: none; }

/* ── SECTION COMMONS ── */
.py-sec { padding: 96px 0; }
.py-sec-sm { padding: 64px 0; }
.bg-green-light { background: var(--bg2); }
.bg-dark-green { background: var(--dark); }

.sec-tag {
  display: inline-flex; align-items: center; gap: 6px;
  background: var(--green-light);
  color: var(--green-dark);
  font-size: 12px; font-weight: 800;
  letter-spacing: 2px; text-transform: uppercase;
  padding: 6px 16px; border-radius: 100px;
  margin-bottom: 14px;
  border: 1px solid rgba(34,197,94,0.3);
}
.sec-tag.on-dark { background: rgba(34,197,94,0.15); color: var(--green-mid); border-color: rgba(34,197,94,0.25); }
.sec-tag.blue { background: var(--blue-light); color: var(--blue); border-color: rgba(59,130,246,0.3); }
.sec-tag.purple { background: var(--purple-light); color: var(--purple); border-color: rgba(139,92,246,0.3); }

.sec-title { font-family: var(--font-head); font-size: clamp(28px, 4vw, 42px); font-weight: 800; line-height: 1.2; color: var(--text); margin-bottom: 14px; }
.sec-title.on-dark { color: #fff; }
.sec-desc { color: var(--text-muted); font-size: 17px; line-height: 1.75; }

/* ── HERO ── */
.hero-wrap {
  background: var(--grad-hero);
  min-height: 100vh;
  padding: 120px 0 80px;
  position: relative;
  overflow: hidden;
}
/* Animated background mesh */
.hero-mesh {
  position: absolute; inset: 0; pointer-events: none;
}
.mesh-circle {
  position: absolute; border-radius: 50%;
  filter: blur(100px); opacity: 0.35;
}
.mc1 { width: 700px; height: 700px; background: radial-gradient(circle, #22c55e, transparent 70%); top: -250px; right: -200px; animation: mcFloat 12s ease-in-out infinite; }
.mc2 { width: 400px; height: 400px; background: radial-gradient(circle, #3b82f6, transparent 70%); bottom: -100px; left: -100px; animation: mcFloat 9s ease-in-out infinite reverse; }
.mc3 { width: 300px; height: 300px; background: radial-gradient(circle, #8b5cf6, transparent 70%); top: 40%; left: 30%; animation: mcFloat 15s ease-in-out infinite; opacity: 0.2; }
@keyframes mcFloat { 0%,100%{transform:translate(0,0)} 50%{transform:translate(25px,-25px)} }

/* Rotating ring */
.hero-ring {
  position: absolute; right: 5%; top: 10%;
  width: 500px; height: 500px;
  border: 1px solid rgba(34,197,94,0.15);
  border-radius: 50%;
  animation: ringRotate 30s linear infinite;
}
.hero-ring::before {
  content: '';
  position: absolute; top: 20px; left: 20px; right: 20px; bottom: 20px;
  border: 1px solid rgba(34,197,94,0.1);
  border-radius: 50%;
  animation: ringRotate 20s linear infinite reverse;
}
@keyframes ringRotate { from{transform:rotate(0deg)} to{transform:rotate(360deg)} }

.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(34,197,94,0.15);
  border: 1px solid rgba(34,197,94,0.3);
  color: var(--green-mid);
  font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase;
  padding: 8px 18px; border-radius: 100px; margin-bottom: 24px;
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--green); animation: dotPulse 1.5s ease-in-out infinite; }
@keyframes dotPulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(0.7)} }

.hero-title { font-family: var(--font-head); font-size: clamp(38px,5.5vw,68px); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 22px; }
.hero-desc { font-size: 18px; color: rgba(255,255,255,0.72); line-height: 1.8; margin-bottom: 36px; max-width: 540px; }

.hero-trust { display: flex; flex-wrap: wrap; gap: 18px; margin-top: 28px; }
.trust-pill {
  display: flex; align-items: center; gap: 8px;
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 100px; padding: 8px 16px;
  color: rgba(255,255,255,0.8); font-size: 13px; font-weight: 600;
}
.trust-pill i { color: var(--green); }

/* Hero floating cards */
.hero-right { position: relative; }
.hero-float-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 16px;
  max-width: 440px; margin: 0 auto;
  position: relative;
}
.hfg-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(34,197,94,0.2);
  border-radius: 20px; padding: 28px 20px;
  text-align: center; backdrop-filter: blur(10px);
  transition: all 0.4s;
  cursor: default;
}
.hfg-card:hover { border-color: rgba(34,197,94,0.5); background: rgba(34,197,94,0.1); transform: translateY(-6px); }
.hfg-icon { font-size: 34px; display: block; margin-bottom: 10px; }
.hfg-card span { font-size: 13px; font-weight: 700; color: rgba(255,255,255,0.85); display: block; }
.hfg-card small { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; display: block; }
.hfg-card:nth-child(1) { animation: cardBob 4s ease-in-out infinite; }
.hfg-card:nth-child(2) { animation: cardBob 4s ease-in-out 1s infinite; }
.hfg-card:nth-child(3) { animation: cardBob 4s ease-in-out 2s infinite; }
.hfg-card:nth-child(4) { animation: cardBob 4s ease-in-out 3s infinite; }
@keyframes cardBob { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }

.hero-center-orb {
  position: absolute; top: 50%; left: 50%; transform: translate(-50%,-50%);
  width: 90px; height: 90px;
  background: var(--grad-main);
  border-radius: 50%; z-index: 2;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  box-shadow: 0 0 40px rgba(34,197,94,0.5), 0 0 0 12px rgba(34,197,94,0.1);
  animation: orbPulse 3s ease-in-out infinite;
}
@keyframes orbPulse { 0%,100%{box-shadow:0 0 40px rgba(34,197,94,0.5),0 0 0 12px rgba(34,197,94,0.1)} 50%{box-shadow:0 0 60px rgba(34,197,94,0.7),0 0 0 20px rgba(34,197,94,0.08)} }
.hero-center-orb img { width: 54px; height: 54px; object-fit: contain; }
.hero-center-orb .orb-num { font-family: var(--font-head); font-size: 18px; font-weight: 900; color: #fff; line-height: 1; }
.hero-center-orb .orb-lbl { font-size: 9px; color: rgba(255,255,255,0.8); text-align: center; font-weight: 700; letter-spacing: 0.5px; }

/* ── STATS BAND ── */
.stats-band { background: var(--green-dark); padding: 48px 0; }
.stat-pill {
  text-align: center;
  padding: 24px 16px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-pill:last-child { border-right: none; }
.sp-num { font-family: var(--font-head); font-size: 42px; font-weight: 900; color: #fff; line-height: 1; }
.sp-label { font-size: 13px; color: rgba(255,255,255,0.65); margin-top: 6px; font-weight: 600; letter-spacing: 0.5px; }

/* ── SERVICE CARDS ── */
.srv-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  height: 100%;
  position: relative; overflow: hidden;
  transition: all 0.4s cubic-bezier(.4,0,.2,1);
  cursor: default;
}
.srv-card::after {
  content: '';
  position: absolute; bottom: 0; left: 0; right: 0; height: 4px;
  background: var(--grad-main);
  transform: scaleX(0); transform-origin: left;
  transition: transform 0.4s;
}
.srv-card:hover { border-color: rgba(34,197,94,0.35); transform: translateY(-8px); box-shadow: 0 20px 60px rgba(34,197,94,0.12); }
.srv-card:hover::after { transform: scaleX(1); }
.srv-card.featured-card {
  background: var(--grad-main); border: none; color: #fff;
}
.srv-card.featured-card::after { display: none; }
.srv-card.featured-card h5, .srv-card.featured-card p, .srv-card.featured-card .sc-link { color: rgba(255,255,255,0.9) !important; }
.srv-card .featured-tag {
  position: absolute; top: 16px; right: 16px;
  background: rgba(255,255,255,0.2); color: #fff;
  font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: 100px;
}
.sc-icon-wrap {
  width: 64px; height: 64px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px; margin-bottom: 20px;
  transition: transform 0.3s;
}
.srv-card:hover .sc-icon-wrap { transform: scale(1.1) rotate(-5deg); }
.sc-icon-wrap.green { background: var(--green-light); }
.sc-icon-wrap.blue { background: var(--blue-light); }
.sc-icon-wrap.purple { background: var(--purple-light); }
.sc-icon-wrap.orange { background: var(--orange-light); }
.srv-card h5 { font-family: var(--font-head); font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.srv-card p { color: var(--text-muted); font-size: 14px; line-height: 1.75; }
.sc-link { display: inline-flex; align-items: center; gap: 5px; margin-top: 16px; color: var(--green-dark); font-weight: 700; font-size: 14px; transition: gap 0.2s; }
.sc-link:hover { gap: 10px; }
.sc-num { position: absolute; top: 16px; right: 20px; font-family: var(--font-head); font-size: 42px; font-weight: 900; color: rgba(34,197,94,0.07); line-height: 1; }

/* ── WHY CHOOSE US ── */
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.why-box {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 28px 22px;
  transition: all 0.3s; position: relative; overflow: hidden;
}
.why-box::before { content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 0; background: var(--grad-main); transition: height 0.4s; border-radius: 0 0 4px 0; }
.why-box:hover { border-color: rgba(34,197,94,0.3); box-shadow: var(--shadow-card); transform: translateX(4px); }
.why-box:hover::before { height: 100%; }
.wb-icon { font-size: 28px; margin-bottom: 12px; display: block; }
.why-box h6 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.why-box p { font-size: 13px; color: var(--text-muted); margin: 0; }

/* Visual panel */
.why-visual-panel {
  background: var(--dark2);
  border-radius: var(--radius-lg);
  padding: 40px;
  display: flex; flex-direction: column; gap: 20px;
  position: relative; overflow: hidden;
  height: 100%;
}
.why-visual-panel::before {
  content: '';
  position: absolute; top: -100px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(34,197,94,0.2), transparent 70%);
  border-radius: 50%;
}
.wvp-stat { display: flex; align-items: center; gap: 16px; }
.wvp-icon { width: 52px; height: 52px; border-radius: 14px; background: rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; font-size: 22px; flex-shrink: 0; }
.wvp-num { font-family: var(--font-head); font-size: 26px; font-weight: 800; color: #fff; line-height: 1; }
.wvp-lbl { font-size: 13px; color: rgba(255,255,255,0.55); margin-top: 2px; }
.wvp-divider { height: 1px; background: rgba(255,255,255,0.07); }
.wvp-logo-area { display: flex; align-items: center; gap: 14px; }
.wvp-logo-area img { width: 50px; height: 50px; object-fit: contain; background: rgba(255,255,255,0.1); border-radius: 12px; padding: 6px; }
.wvp-logo-area .wvp-brand { font-family: var(--font-head); font-size: 18px; font-weight: 800; color: #fff; }
.wvp-logo-area small { color: rgba(255,255,255,0.5); font-size: 12px; display: block; }
.wvp-badge { background: var(--grad-main); border-radius: 12px; padding: 16px; text-align: center; }
.wvp-badge-num { font-family: var(--font-head); font-size: 32px; font-weight: 900; color: #fff; }
.wvp-badge-lbl { font-size: 13px; color: rgba(255,255,255,0.8); }

/* ── PROCESS ── */
.process-step {
  text-align: center;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute; top: 36px; left: calc(50% + 40px);
  width: calc(100% - 80px); height: 2px;
  background: linear-gradient(90deg, var(--green), transparent);
  display: block;
}
.process-step:last-child::after { display: none; }
.ps-num {
  width: 72px; height: 72px; border-radius: 50%;
  background: var(--grad-main);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-head); font-size: 22px; font-weight: 900; color: #fff;
  box-shadow: var(--shadow-green);
  transition: transform 0.3s;
}
.process-step:hover .ps-num { transform: scale(1.1); }
.process-step h6 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.process-step p { font-size: 13px; color: var(--text-muted); }

/* ── TESTIMONIALS ── */
.testi-card {
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius-lg); padding: 28px;
  height: 100%; transition: all 0.3s;
}
.testi-card:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-5px); box-shadow: 0 16px 48px rgba(34,197,94,0.1); }
.testi-card.featured-t { background: var(--grad-main); border: none; }
.testi-card.featured-t .tc-text, .testi-card.featured-t .tc-name, .testi-card.featured-t .tc-role { color: rgba(255,255,255,0.9) !important; }
.testi-card.featured-t .tc-stars { color: #fef08a; }
.tc-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; letter-spacing: 2px; }
.tc-text { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 20px; }
.tc-author { display: flex; align-items: center; gap: 12px; }
.tc-av { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.tc-av.green-av { background: var(--grad-main); }
.tc-av.blue-av { background: var(--grad-accent); }
.tc-av.orange-av { background: var(--grad-warm); }
.tc-av.purple-av { background: linear-gradient(135deg, #8b5cf6, #ec4899); }
.tc-name { font-weight: 700; font-size: 15px; color: var(--text); display: block; }
.tc-role { font-size: 12px; color: var(--text-light); }
.tc-quote-mark { font-size: 56px; color: rgba(34,197,94,0.12); line-height: 0.8; margin-bottom: 8px; font-family: Georgia, serif; }

/* Marquee */
.marquee-outer { overflow: hidden; }
.marquee-row { display: flex; gap: 20px; width: max-content; }
.marquee-row.ltr { animation: mLTR 35s linear infinite; }
.marquee-row.rtl { animation: mRTL 35s linear infinite; }
@keyframes mLTR { 0%{transform:translateX(0)} 100%{transform:translateX(-50%)} }
@keyframes mRTL { 0%{transform:translateX(-50%)} 100%{transform:translateX(0)} }
.marquee-row:hover { animation-play-state: paused; }
.mq-card {
  min-width: 300px; max-width: 300px;
  background: #fff; border: 1.5px solid var(--border);
  border-radius: var(--radius); padding: 22px;
  flex-shrink: 0;
}
.mq-card.green-border { border-left: 4px solid var(--green); }
.mq-card.blue-border { border-left: 4px solid var(--blue); }
.mq-card.purple-border { border-left: 4px solid var(--purple); }
.mq-card.orange-border { border-left: 4px solid var(--orange); }
.mq-stars { color: #f59e0b; font-size: 13px; margin-bottom: 8px; }
.mq-card p { font-size: 13px; color: var(--text-muted); line-height: 1.7; margin: 0 0 12px; }
.mq-author { display: flex; align-items: center; gap: 8px; }
.mq-av { width: 32px; height: 32px; border-radius: 50%; background: var(--grad-main); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 800; flex-shrink: 0; }
.mq-author span { font-size: 12px; font-weight: 700; color: var(--text); }

/* Detailed testimonials */
.tfc { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 32px; height: 100%; transition: all 0.3s; }
.tfc:hover { border-color: rgba(34,197,94,0.35); transform: translateY(-5px); box-shadow: 0 16px 50px rgba(34,197,94,0.1); }
.tfc.featured-tfc { border: 2px solid var(--green); background: var(--bg2); }
.tfc-q { color: rgba(34,197,94,0.15); font-size: 52px; line-height: 0.9; margin-bottom: 6px; font-family: Georgia, serif; }
.tfc-text { font-size: 15px; color: var(--text-muted); line-height: 1.85; margin-bottom: 20px; }
.tfc-stars { color: #f59e0b; font-size: 15px; margin-bottom: 16px; letter-spacing: 1px; }
.tfc-author { display: flex; align-items: center; gap: 14px; }
.tfc-av { width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 15px; color: #fff; flex-shrink: 0; }
.tfc-av.g { background: var(--grad-main); }
.tfc-av.b { background: var(--grad-accent); }
.tfc-av.o { background: var(--grad-warm); }
.tfc-av.p { background: linear-gradient(135deg,#8b5cf6,#ec4899); }
.tfc-av.r { background: linear-gradient(135deg,#ef4444,#f97316); }
.tfc-name { font-weight: 700; font-size: 15px; display: block; }
.tfc-role { font-size: 12px; color: var(--text-light); }
.tfc-service { font-size: 11px; color: var(--green-dark); font-weight: 700; text-transform: uppercase; letter-spacing: 0.5px; margin-top: 2px; display: block; }

/* Video cards */
.vc { border-radius: var(--radius); overflow: hidden; cursor: pointer; transition: all 0.3s; }
.vc:hover { transform: translateY(-4px); box-shadow: 0 16px 50px rgba(34,197,94,0.15); }
.vc-thumb { height: 180px; background: var(--grad-main); display: flex; align-items: center; justify-content: center; position: relative; }
.vc.blue-vc .vc-thumb { background: var(--grad-accent); }
.vc.warm-vc .vc-thumb { background: var(--grad-warm); }
.vc-play { font-size: 54px; color: rgba(255,255,255,0.9); transition: transform 0.3s; }
.vc:hover .vc-play { transform: scale(1.12); }
.vc-lbl { position: absolute; bottom: 10px; left: 12px; color: #fff; font-weight: 700; font-size: 14px; }
.vc-info { background: #fff; border: 1.5px solid var(--border); border-top: none; padding: 14px 16px; border-radius: 0 0 var(--radius) var(--radius); }
.vc-info strong { font-size: 14px; display: block; }
.vc-info small { color: var(--text-light); font-size: 12px; }

/* Stats bar on testimonials page */
.tst-stats { background: var(--bg2); border-bottom: 1px solid var(--border); padding: 36px 0; }
.tst-stat { text-align: center; border-right: 1px solid var(--border); padding: 16px; }
.tst-stat:last-child { border-right: none; }
.tst-num { font-family: var(--font-head); font-size: 34px; font-weight: 900; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.tst-lbl { font-size: 13px; color: var(--text-muted); font-weight: 600; }

/* ── PAGE HERO ── */
.page-hero {
  background: var(--grad-hero);
  padding: 150px 0 80px;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(34,197,94,0.15), transparent 60%);
}
.ph-dots {
  position: absolute; inset: 0; pointer-events: none;
  background-image: radial-gradient(rgba(34,197,94,0.15) 1px, transparent 1px);
  background-size: 32px 32px;
}
.page-hero-tag { display: inline-flex; align-items: center; gap: 6px; background: rgba(34,197,94,0.15); border: 1px solid rgba(34,197,94,0.3); color: var(--green-mid); font-size: 12px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; padding: 7px 16px; border-radius: 100px; margin-bottom: 16px; }
.page-hero-title { font-family: var(--font-head); font-size: clamp(36px,5vw,56px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.page-hero-desc { color: rgba(255,255,255,0.65); font-size: 17px; margin-bottom: 24px; }
.page-breadcrumb { display: flex; align-items: center; gap: 8px; }
.page-breadcrumb a { color: rgba(255,255,255,0.5); font-size: 14px; font-weight: 600; }
.page-breadcrumb span { color: rgba(255,255,255,0.3); font-size: 12px; }
.page-breadcrumb .current { color: var(--green-mid); font-size: 14px; font-weight: 600; }

/* ── SERVICES PAGE ── */
.srv-detail-row { padding: 72px 0; border-bottom: 1px solid var(--border); }
.srv-detail-row:last-child { border-bottom: none; }
.srv-visual {
  background: var(--dark2); border-radius: var(--radius-lg);
  padding: 48px 32px; text-align: center;
  position: relative; overflow: hidden;
  min-height: 260px; display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 20px;
}
.srv-visual::before { content: ''; position: absolute; top: -80px; right: -80px; width: 240px; height: 240px; background: radial-gradient(circle, rgba(34,197,94,0.2), transparent 70%); border-radius: 50%; }
.sv-big-icon { font-size: 64px; display: block; filter: drop-shadow(0 4px 12px rgba(34,197,94,0.3)); }
.sv-anim-bars { display: flex; flex-direction: column; gap: 10px; width: 80%; }
.sv-bar { height: 10px; border-radius: 100px; background: rgba(34,197,94,0.15); overflow: hidden; }
.sv-bar-fill { height: 100%; border-radius: 100px; background: var(--grad-main); animation: barFill 2.5s ease-in-out infinite; }
.sv-bar:nth-child(2) .sv-bar-fill { animation-delay: 0.3s; width: 75%; }
.sv-bar:nth-child(3) .sv-bar-fill { animation-delay: 0.6s; width: 55%; }
@keyframes barFill { 0%{width:20%;opacity:.4} 60%{opacity:1} 100%{width:90%;opacity:.4} }
.srv-badge { position: absolute; top: 16px; right: 16px; background: var(--grad-main); color: #fff; font-size: 11px; font-weight: 700; padding: 6px 14px; border-radius: 100px; }
.srv-detail-title { font-family: var(--font-head); font-size: 30px; font-weight: 800; margin-bottom: 14px; }
.srv-features-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.srv-features-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; }
.srv-features-list li i { color: var(--green); font-size: 16px; }
.srv-price-row { display: flex; align-items: center; gap: 14px; margin-top: 28px; flex-wrap: wrap; }
.srv-from { color: var(--text-muted); font-size: 13px; }
.srv-amount { font-family: var(--font-head); font-size: 26px; font-weight: 900; color: var(--green-dark); }

.mini-srv { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 24px; text-align: center; transition: all 0.3s; height: 100%; }
.mini-srv:hover { border-color: rgba(34,197,94,0.35); transform: translateY(-5px); box-shadow: 0 12px 40px rgba(34,197,94,0.1); }
.mini-srv-icon { font-size: 36px; display: block; margin-bottom: 12px; }
.mini-srv h6 { font-family: var(--font-head); font-weight: 700; font-size: 15px; margin-bottom: 6px; }
.mini-srv p { font-size: 13px; color: var(--text-muted); margin-bottom: 10px; }
.mini-srv-price { font-size: 13px; font-weight: 800; color: var(--green-dark); background: var(--green-light); padding: 4px 12px; border-radius: 100px; display: inline-block; }

/* ── CONTACT PAGE ── */
.cq-card { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius); padding: 28px 20px; text-align: center; transition: all 0.3s; height: 100%; }
.cq-card:hover { border-color: rgba(34,197,94,0.3); transform: translateY(-4px); box-shadow: 0 12px 40px rgba(34,197,94,0.1); }
.cq-icon { width: 56px; height: 56px; border-radius: 16px; display: flex; align-items: center; justify-content: center; font-size: 22px; margin: 0 auto 14px; }
.cq-icon.g { background: var(--green-light); color: var(--green-dark); }
.cq-icon.b { background: var(--blue-light); color: var(--blue); }
.cq-icon.p { background: var(--purple-light); color: var(--purple); }
.cq-icon.o { background: var(--orange-light); color: var(--orange); }
.cq-card h6 { font-family: var(--font-head); font-weight: 700; margin-bottom: 4px; }
.cq-card p { color: var(--text-muted); font-size: 14px; margin-bottom: 10px; }
.cq-link { color: var(--green-dark); font-weight: 700; font-size: 14px; }

.contact-form-wrap { background: #fff; border: 1.5px solid var(--border); border-radius: var(--radius-lg); padding: 40px; box-shadow: var(--shadow-card); }
.eway-input { border: 1.5px solid var(--border); border-radius: 12px; padding: 13px 16px; font-family: var(--font-body); font-size: 15px; width: 100%; transition: all 0.2s; color: var(--text); background: #fff; }
.eway-input:focus { border-color: var(--green); box-shadow: 0 0 0 3px rgba(34,197,94,0.12); outline: none; }
.eway-input::placeholder { color: var(--text-light); }
label.form-label { font-weight: 700; font-size: 14px; color: var(--text); margin-bottom: 6px; display: block; }
.srv-checkboxes { display: flex; flex-wrap: wrap; gap: 8px; }
.srv-chip { display: flex; align-items: center; gap: 5px; background: var(--bg2); border: 1.5px solid var(--border); border-radius: 100px; padding: 7px 14px; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; user-select: none; }
.srv-chip input[type=checkbox] { display: none; }
.srv-chip:has(input:checked), .srv-chip.checked { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }
.time-chip { padding: 9px 18px; border: 1.5px solid var(--border); border-radius: 100px; background: #fff; font-size: 13px; font-weight: 600; color: var(--text-muted); cursor: pointer; transition: all 0.2s; }
.time-chip:hover { border-color: var(--green); color: var(--green-dark); }
.time-chip.active { background: var(--green-light); border-color: var(--green); color: var(--green-dark); }

.contact-side-panel { background: var(--dark2); border-radius: var(--radius-lg); padding: 32px; height: 100%; }
.csp-title { color: #fff; font-family: var(--font-head); font-size: 20px; font-weight: 800; margin-bottom: 24px; }
.csp-item { display: flex; gap: 14px; margin-bottom: 22px; }
.csp-icon { width: 44px; height: 44px; border-radius: 12px; background: rgba(34,197,94,0.15); display: flex; align-items: center; justify-content: center; color: var(--green); font-size: 18px; flex-shrink: 0; }
.csp-item strong { display: block; color: rgba(255,255,255,0.9); font-size: 14px; margin-bottom: 3px; }
.csp-item p { color: rgba(255,255,255,0.5); font-size: 13px; margin: 0; line-height: 1.6; }
.csp-wa { display: flex; align-items: center; justify-content: center; gap: 10px; background: #25d366; color: #fff; padding: 15px; border-radius: 12px; font-weight: 700; font-size: 15px; text-decoration: none; transition: all 0.3s; margin: 24px 0; }
.csp-wa:hover { background: #1da851; color: #fff; transform: translateY(-2px); }
.csp-wa i { font-size: 20px; }
.csp-response { display: flex; gap: 12px; background: rgba(34,197,94,0.1); border-radius: 12px; padding: 14px; }
.csp-response i { color: var(--orange); font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.csp-response strong { display: block; color: rgba(255,255,255,0.9); font-size: 13px; }
.csp-response p { color: rgba(255,255,255,0.5); font-size: 12px; margin: 0; line-height: 1.5; }

.form-success-box { display: none; flex-direction: column; align-items: center; text-align: center; padding: 50px 20px; }
.form-success-box i { font-size: 64px; color: var(--green); margin-bottom: 18px; animation: successPop 0.5s cubic-bezier(.4,0,.2,1); }
@keyframes successPop { 0%{transform:scale(0)} 70%{transform:scale(1.15)} 100%{transform:scale(1)} }
.form-success-box h5 { font-family: var(--font-head); font-size: 22px; font-weight: 800; color: var(--text); }
.form-success-box p { color: var(--text-muted); }

/* Accordion */
.eway-acc { border: 1.5px solid var(--border) !important; border-radius: var(--radius) !important; margin-bottom: 10px !important; overflow: hidden; }
.eway-acc-btn { font-size: 14px; font-weight: 700; padding: 15px 18px; background: #fff !important; color: var(--text) !important; }
.eway-acc-btn:not(.collapsed) { background: var(--bg2) !important; color: var(--green-dark) !important; }
.eway-acc-btn:focus { box-shadow: none !important; }
.eway-acc-btn::after { filter: none; }
.accordion-body { font-size: 14px; color: var(--text-muted); padding: 14px 18px; }

/* Map placeholder */
.map-area { height: 320px; background: var(--dark2); display: flex; align-items: center; justify-content: center; }
.map-inner { text-align: center; }
.map-inner i { font-size: 56px; display: block; margin-bottom: 10px; background: var(--grad-main); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
.map-inner p { color: rgba(255,255,255,0.6); font-weight: 700; }
.map-inner small { color: rgba(255,255,255,0.35); font-size: 13px; }

/* ── CTA SECTION ── */
.cta-wrap {
  background: var(--dark);
  padding: 96px 0;
  position: relative; overflow: hidden;
}
.cta-wrap::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 50%, rgba(34,197,94,0.18), transparent 65%);
}
.cta-wrap .cta-ring {
  position: absolute; width: 600px; height: 600px;
  border: 1px solid rgba(34,197,94,0.07); border-radius: 50%;
  top: 50%; left: 50%; transform: translate(-50%,-50%);
  animation: ringRotate 40s linear infinite;
}
.cta-title { font-family: var(--font-head); font-size: clamp(28px,4vw,46px); font-weight: 800; color: #fff; margin-bottom: 14px; }
.cta-desc { color: rgba(255,255,255,0.6); font-size: 17px; margin-bottom: 32px; }

/* ── FOOTER ── */
.eway-footer { background: #030d06; padding: 72px 0 0; border-top: 1px solid rgba(34,197,94,0.1); }
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; }
.footer-logo img { width: 42px; height: 42px; object-fit: contain; background: rgba(255,255,255,0.05); border-radius: 10px; padding: 4px; }
.footer-logo .fl-name { font-family: var(--font-head); font-size: 19px; font-weight: 800; color: #fff; }
.footer-logo .fl-sub { font-size: 11px; color: var(--green-mid); display: block; letter-spacing: 1.5px; text-transform: uppercase; }
.footer-desc { color: rgba(255,255,255,0.45); font-size: 14px; line-height: 1.8; }
.footer-head { font-family: var(--font-head); color: rgba(255,255,255,0.9); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 18px; }
.footer-links { list-style: none; padding: 0; }
.footer-links li { margin-bottom: 9px; }
.footer-links a { color: rgba(255,255,255,0.45); font-size: 14px; transition: color 0.2s; display: flex; align-items: center; gap: 6px; }
.footer-links a:hover { color: var(--green); }
.footer-links a i { font-size: 12px; }
.footer-contact-list { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-contact-list li { display: flex; align-items: flex-start; gap: 10px; color: rgba(255,255,255,0.45); font-size: 14px; }
.footer-contact-list li i { color: var(--green); margin-top: 3px; flex-shrink: 0; }
.social-row { display: flex; gap: 10px; margin-top: 20px; }
.social-row a { width: 40px; height: 40px; border-radius: 10px; background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.08); display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.5); font-size: 16px; transition: all 0.3s; }
.social-row a:hover { background: var(--green); border-color: var(--green); color: #fff; transform: translateY(-3px); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 22px 0; margin-top: 52px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 8px; color: rgba(255,255,255,0.3); font-size: 13px; }
.footer-bottom a { color: var(--green); text-decoration: none; }

/* ── SCROLL ANIMATIONS ── */
.fade-up { opacity: 0; transform: translateY(36px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up.d1 { transition-delay: 0.1s; }
.fade-up.d2 { transition-delay: 0.2s; }
.fade-up.d3 { transition-delay: 0.3s; }
.fade-up.d4 { transition-delay: 0.4s; }
.hero-anim { opacity: 0; transform: translateY(28px); animation: heroIn 0.8s ease forwards; }
.hero-anim.d1 { animation-delay: 0.1s; }
.hero-anim.d2 { animation-delay: 0.22s; }
.hero-anim.d3 { animation-delay: 0.36s; }
.hero-anim.d4 { animation-delay: 0.52s; }
.hero-anim.d5 { animation-delay: 0.68s; }
.hero-right-anim { opacity: 0; transform: translateX(40px); animation: heroRight 0.9s ease 0.4s forwards; }
@keyframes heroIn { to { opacity: 1; transform: translateY(0); } }
@keyframes heroRight { to { opacity: 1; transform: translateX(0); } }

/* ── RESPONSIVE ── */
@media (max-width: 992px) {
  .why-grid { grid-template-columns: 1fr; }
  .process-step::after { display: none; }
}
@media (max-width: 768px) {
  .py-sec { padding: 64px 0; }
  .hero-wrap { padding: 100px 0 60px; }
  .hero-float-grid { max-width: 320px; }
  .stats-band .stat-pill { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .contact-form-wrap { padding: 24px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .eway-nav .btn-eway { display: none; }
}
@media (max-width: 576px) {
  .hero-float-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
  .hero-center-orb { width: 70px; height: 70px; }
}
