/* =========================================================
   Bhaironix Creative Agency – Landing Page Stylesheet
   ========================================================= */

:root {
  /* Brand */
  --navy: #0B1120;
  --navy-2: #0f172a;
  --royal: #2563EB;
  --cyan: #06B6D4;
  --purple: #7C3AED;
  --white: #FFFFFF;
  --gray: #F3F4F6;
  --gray-2: #94a3b8;
  --gray-3: #64748b;

  /* Dark theme surfaces */
  --bg: #05070d;
  --bg-2: #0B1120;
  --surface: rgba(255,255,255,0.04);
  --surface-2: rgba(255,255,255,0.06);
  --border: rgba(255,255,255,0.08);
  --text: #E5E7EB;
  --text-dim: #9aa4b2;
  --heading: #FFFFFF;

  /* Gradient */
  --grad: linear-gradient(135deg, var(--royal) 0%, var(--purple) 50%, var(--cyan) 100%);
  --grad-2: linear-gradient(135deg, var(--cyan), var(--royal));

  --radius: 20px;
  --radius-sm: 14px;
  --shadow-1: 0 20px 60px -20px rgba(37,99,235,.35);
  --shadow-2: 0 30px 80px -30px rgba(124,58,237,.45);
}

/* Light theme */
[data-theme="light"] {
  --bg: #F6F7FB;
  --bg-2: #FFFFFF;
  --surface: rgba(11,17,32,.03);
  --surface-2: rgba(11,17,32,.05);
  --border: rgba(11,17,32,.08);
  --text: #1f2937;
  --text-dim: #4b5563;
  --heading: #0B1120;
}

/* Reset & base */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Poppins', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  overflow-x: hidden;
  cursor: none;
}
@media (max-width: 991px){ body { cursor: auto; } }
h1,h2,h3,h4,h5,h6 { font-family: 'Space Grotesk', sans-serif; color: var(--heading); font-weight: 600; letter-spacing: -.02em; }
a { color: inherit; text-decoration: none; transition: color .3s; }
img { max-width: 100%; height: auto; }
::selection { background: var(--purple); color: #fff; }

.gradient-text {
  background: var(--grad);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

.op-70 { opacity:.7 } .op-60 { opacity:.6 } .op-80 { opacity:.8 }

/* Custom cursor */
.cursor-dot, .cursor-ring {
  position: fixed; top: 0; left: 0; pointer-events: none; z-index: 9999;
  transform: translate(-50%,-50%);
  transition: transform .15s ease, opacity .3s;
}
.cursor-dot { width: 6px; height: 6px; background: var(--cyan); border-radius: 50%; box-shadow: 0 0 12px var(--cyan); }
.cursor-ring { width: 34px; height: 34px; border: 1.5px solid rgba(6,182,212,.6); border-radius: 50%; transition: transform .2s ease, width .2s, height .2s, border-color .2s; }
.cursor-ring.hover { width: 60px; height: 60px; border-color: var(--purple); background: rgba(124,58,237,.08); }
@media (max-width: 991px){ .cursor-dot,.cursor-ring{ display:none; } }

/* Preloader */
#preloader {
  position: fixed; inset: 0; background: var(--bg);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  z-index: 10000; transition: opacity .6s, visibility .6s;
}
#preloader.hidden { opacity: 0; visibility: hidden; }
.loader-hex { display: flex; gap: 8px; margin-bottom: 20px; }
.loader-hex span {
  width: 14px; height: 14px; background: var(--grad); border-radius: 4px;
  animation: bounce 1s infinite ease-in-out;
}
.loader-hex span:nth-child(2){ animation-delay:.15s; }
.loader-hex span:nth-child(3){ animation-delay:.30s; }
@keyframes bounce { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-16px)} }
.loader-text { font-family:'Space Grotesk',sans-serif; letter-spacing: 6px; color: var(--text-dim); font-size: 14px; }

/* Header */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 1000;
  padding: 20px 0;
  background: transparent;
  transition: all .35s ease;
}
.site-header.scrolled {
  padding: 12px 0;
  background: rgba(11,17,32,.75);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--border);
}
[data-theme="light"] .site-header.scrolled { background: rgba(255,255,255,.75); }

.brand { display: inline-flex; align-items: center; gap: 10px; font-family: 'Space Grotesk', sans-serif; font-size: 22px; font-weight: 700; color: var(--heading); }
.brand-mark {
  width: 38px; height: 38px; display: grid; place-items: center;
  background: var(--grad); border-radius: 10px; color: #fff;
  box-shadow: 0 8px 24px -6px rgba(124,58,237,.6);
}
.brand-text em { color: var(--cyan); font-style: normal; }

.main-nav { display: flex; gap: 32px; align-items: center; }
.main-nav a {
  position: relative; font-size: 15px; font-weight: 500; color: var(--text-dim);
  padding: 6px 0;
}
.main-nav a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--grad); transition: width .3s;
}
.main-nav a:hover, .main-nav a.active { color: var(--heading); }
.main-nav a:hover::after, .main-nav a.active::after { width: 100%; }

.header-actions { display: flex; align-items: center; gap: 14px; }
.theme-toggle {
  width: 40px; height: 40px; border-radius: 50%; border: 1px solid var(--border);
  background: var(--surface); color: var(--text); display: grid; place-items: center;
  transition: all .3s;
}
.theme-toggle:hover { background: var(--surface-2); border-color: var(--cyan); color: var(--cyan); }

.hamburger { display: none; background: transparent; border: 0; width: 40px; height: 40px; padding: 8px; }
.hamburger span { display: block; height: 2px; background: var(--heading); margin: 5px 0; border-radius: 2px; transition: .3s; }
.hamburger.open span:nth-child(1){ transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2){ opacity: 0; }
.hamburger.open span:nth-child(3){ transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 991px) {
  .hamburger { display: block; }
  .main-nav {
    position: fixed; top: 0; right: -100%; height: 100vh; width: 80%; max-width: 340px;
    background: var(--bg-2); flex-direction: column; padding: 100px 32px 40px; gap: 8px;
    box-shadow: -20px 0 60px rgba(0,0,0,.3); transition: right .4s ease;
    align-items: flex-start;
  }
  .main-nav.open { right: 0; }
  .main-nav a { padding: 14px 0; font-size: 18px; width: 100%; border-bottom: 1px solid var(--border); }
}

/* Buttons */
.btn-neon {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 28px; border: 0; border-radius: 999px;
  font-family: 'Space Grotesk',sans-serif; font-weight: 600; font-size: 15px; color: #fff;
  background: var(--grad); background-size: 200% 200%;
  box-shadow: 0 12px 30px -10px rgba(37,99,235,.55), 0 0 0 1px rgba(255,255,255,.06) inset;
  transition: transform .3s, box-shadow .3s, background-position .6s;
  cursor: pointer;
  animation: gradShift 6s ease infinite;
}
.btn-neon:hover { transform: translateY(-3px); box-shadow: 0 20px 40px -10px rgba(124,58,237,.7), 0 0 0 1px rgba(255,255,255,.08) inset; color:#fff; }
@keyframes gradShift { 0%,100%{background-position:0 50%} 50%{background-position:100% 50%} }

.btn-ghost {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 24px; border-radius: 999px;
  border: 1px solid var(--border);
  color: var(--heading); background: var(--surface);
  font-weight: 500; transition: all .3s;
  backdrop-filter: blur(10px);
}
.btn-ghost:hover { border-color: var(--cyan); color: var(--cyan); background: var(--surface-2); }
.play-dot { display: inline-grid; place-items: center; width: 28px; height: 28px; border-radius: 50%; background: var(--grad); color: #fff; margin-right: 10px; font-size: 10px; }

/* Sections */
.section { padding: 120px 0; position: relative; }
@media (max-width: 767px){ .section { padding: 80px 0; } }
.section-eyebrow {
  display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px;
  border-radius: 999px; background: var(--surface); border: 1px solid var(--border);
  font-size: 12px; letter-spacing: .18em; text-transform: uppercase; color: var(--cyan);
  margin-bottom: 18px; font-family: 'Space Grotesk', sans-serif;
}
.section-title { font-size: clamp(2rem, 4vw, 3.25rem); line-height: 1.15; margin-bottom: 18px; }
.section-lead { color: var(--text-dim); font-size: 17px; max-width: 640px; }
.section-head { max-width: 780px; margin: 0 auto 20px; }

/* HERO */
.hero {
  min-height: 100vh; position: relative; padding: 160px 0 100px;
  overflow: hidden;
  background:
    radial-gradient(1000px 500px at 20% 20%, rgba(124,58,237,.25), transparent 60%),
    radial-gradient(800px 500px at 90% 10%, rgba(6,182,212,.20), transparent 60%),
    radial-gradient(600px 400px at 50% 90%, rgba(37,99,235,.25), transparent 65%),
    var(--bg);
}
.hero-particles { position: absolute; inset: 0; z-index: 0; }
.hero-grid {
  position: absolute; inset: 0; z-index: 0; opacity: .35;
  background-image:
    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 40%, transparent 80%);
}
.hero-orb {
  position: absolute; border-radius: 50%; filter: blur(80px); opacity: .55; z-index: 0;
  animation: float 10s ease-in-out infinite;
}
.hero-orb-1 { width: 400px; height: 400px; background: var(--purple); top: -80px; left: -100px; }
.hero-orb-2 { width: 500px; height: 500px; background: var(--cyan); bottom: -150px; right: -120px; animation-delay: 3s; }
@keyframes float { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-30px)} }

.hero-inner { position: relative; z-index: 2; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px; padding: 8px 16px;
  background: var(--surface); border: 1px solid var(--border); border-radius: 999px;
  font-size: 13px; color: var(--text); backdrop-filter: blur(10px);
  margin-bottom: 24px;
}
.eyebrow i { color: var(--cyan); }
.hero-title { font-size: clamp(2.4rem, 5vw, 4.5rem); line-height: 1.05; margin-bottom: 22px; }
.hero-sub { font-size: 18px; color: var(--text-dim); max-width: 620px; margin-bottom: 32px; }
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 60px; }
@media (max-width: 767px){ .hero-stats { grid-template-columns: repeat(2,1fr); } }
.stat {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 22px 18px; backdrop-filter: blur(14px); transition: transform .3s;
}
.stat:hover { transform: translateY(-4px); border-color: var(--cyan); }
.stat .counter { font-family: 'Space Grotesk', sans-serif; font-size: 34px; font-weight: 700; color: var(--heading); }
.stat small { color: var(--cyan); font-weight: 600; margin-left: 4px; }
.stat p { margin: 4px 0 0; color: var(--text-dim); font-size: 13px; }

/* Hero visual */
.hero-visual { position: relative; height: 480px; }
.visual-card {
  position: absolute; top: 40px; right: 20px; width: 92%;
  background: rgba(255,255,255,.05); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 20px; backdrop-filter: blur(20px);
  box-shadow: var(--shadow-1);
}
.vc-head { display: flex; align-items: center; gap: 6px; padding-bottom: 14px; border-bottom: 1px solid var(--border); }
.vc-head .dot { width: 10px; height: 10px; border-radius: 50%; }
.vc-head .d1 { background:#ef4444 } .vc-head .d2 { background:#f59e0b } .vc-head .d3 { background:#10b981 }
.vc-head em { margin-left: auto; font-style: normal; color: var(--text-dim); font-size: 12px; font-family: 'Space Grotesk',sans-serif; }
.vc-body { padding-top: 18px; }
.chart-row { display: flex; align-items: flex-end; gap: 10px; height: 120px; }
.chart-row .bar { flex: 1; height: var(--h); background: var(--grad); border-radius: 6px 6px 2px 2px; opacity: .85; animation: rise 1.2s ease both; }
.chart-row .bar:nth-child(2){ animation-delay:.08s } .chart-row .bar:nth-child(3){ animation-delay:.16s }
.chart-row .bar:nth-child(4){ animation-delay:.24s } .chart-row .bar:nth-child(5){ animation-delay:.32s } .chart-row .bar:nth-child(6){ animation-delay:.4s }
@keyframes rise { from { height: 0; opacity: 0 } }
.metric { display: flex; justify-content: space-between; margin-top: 20px; padding-top: 18px; border-top: 1px solid var(--border); }
.metric span { display: block; font-family: 'Space Grotesk',sans-serif; font-size: 22px; color: var(--heading); font-weight: 700; }
.metric small { color: var(--text-dim); font-size: 12px; }

.visual-pill {
  position: absolute; padding: 10px 16px; background: rgba(255,255,255,.06);
  border: 1px solid var(--border); border-radius: 999px; backdrop-filter: blur(14px);
  font-size: 13px; color: var(--heading); box-shadow: var(--shadow-1);
}
.visual-pill i { margin-right: 8px; color: var(--cyan); }
.float-a { animation: floatA 6s ease-in-out infinite; }
.float-b { top: 0; left: -10px; animation: floatB 5s ease-in-out infinite; }
.float-c { bottom: 60px; left: -20px; animation: floatB 6s ease-in-out infinite reverse; }
.float-d { bottom: 20px; right: 40px; animation: floatB 7s ease-in-out infinite; }
@keyframes floatA { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-14px)} }
@keyframes floatB { 0%,100%{transform:translateY(0) rotate(-2deg)} 50%{transform:translateY(-18px) rotate(2deg)} }

.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); color: var(--text-dim); font-size: 11px; letter-spacing: .3em; text-transform: uppercase; text-align: center; z-index: 2; }
.scroll-hint span { display: block; width: 2px; height: 40px; background: linear-gradient(var(--cyan), transparent); margin: 0 auto 10px; animation: scrollDown 2s ease infinite; }
@keyframes scrollDown { 0%{transform:scaleY(0);transform-origin:top} 50%{transform:scaleY(1);transform-origin:top} 51%{transform-origin:bottom} 100%{transform:scaleY(0);transform-origin:bottom} }

/* Marquee */
.marquee { padding: 24px 0; border-block: 1px solid var(--border); background: var(--bg-2); overflow: hidden; }
.marquee-track { display: inline-flex; gap: 40px; white-space: nowrap; animation: mv 30s linear infinite; }
.marquee-track span { font-family: 'Space Grotesk', sans-serif; font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 700; color: var(--heading); opacity: .9; }
.marquee-track i { color: var(--cyan); font-size: 14px; align-self: center; font-style: normal; }
@keyframes mv { from { transform: translateX(0) } to { transform: translateX(-50%) } }

/* About */
.about-visual { position: relative; }
.about-visual img { width: 100%; border-radius: var(--radius); border: 1px solid var(--border); box-shadow: var(--shadow-2); }
.badge-glass {
  position: absolute; padding: 12px 18px; background: rgba(255,255,255,.08);
  border: 1px solid var(--border); border-radius: 14px; backdrop-filter: blur(16px);
  font-size: 13px; color: var(--heading);
}
.badge-glass i { color: var(--cyan); margin-right: 8px; }
.badge-a { top: 20px; left: -12px; }
.badge-b { bottom: 20px; right: -12px; }
.mini-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm);
  padding: 22px; transition: all .3s;
}
.mini-card:hover { transform: translateY(-4px); border-color: var(--purple); }
.mini-card i { color: var(--cyan); font-size: 22px; margin-bottom: 12px; }
.mini-card h6 { margin: 0 0 6px; font-size: 17px; }
.mini-card p { margin: 0; color: var(--text-dim); font-size: 14px; }

/* Services */
.service-card {
  position: relative; padding: 32px 28px; border-radius: var(--radius);
  background: var(--surface); border: 1px solid var(--border);
  backdrop-filter: blur(14px);
  transition: transform .4s, border-color .3s, box-shadow .4s;
  height: 100%;
  overflow: hidden;
}
.service-card::before {
  content: ""; position: absolute; inset: 0; opacity: 0;
  background: radial-gradient(400px circle at var(--mx,50%) var(--my,50%), rgba(6,182,212,.15), transparent 60%);
  transition: opacity .3s;
  pointer-events: none;
}
.service-card:hover::before { opacity: 1; }
.service-card:hover { transform: translateY(-6px); border-color: rgba(6,182,212,.4); box-shadow: var(--shadow-1); }
.sc-icon {
  width: 60px; height: 60px; border-radius: 16px;
  background: var(--grad); color: #fff; display: grid; place-items: center;
  font-size: 24px; margin-bottom: 20px;
  box-shadow: 0 12px 30px -10px rgba(124,58,237,.6);
}
.service-card h4 { font-size: 20px; margin-bottom: 12px; }
.service-card p { color: var(--text-dim); font-size: 15px; margin-bottom: 20px; }
.learn { color: var(--cyan); font-weight: 600; font-size: 14px; display: inline-flex; align-items: center; gap: 8px; transition: gap .3s; }
.learn:hover { gap: 14px; color: var(--cyan); }

/* Why */
.why-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 18px; }
@media (max-width: 991px){ .why-grid { grid-template-columns: repeat(3,1fr); } }
@media (max-width: 575px){ .why-grid { grid-template-columns: repeat(2,1fr); } }
.why-tile {
  padding: 26px 18px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); text-align: center; transition: all .3s;
}
.why-tile:hover { transform: translateY(-4px); border-color: var(--purple); background: var(--surface-2); }
.why-tile i { font-size: 26px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 12px; display: block; }
.why-tile span { font-family: 'Space Grotesk',sans-serif; font-weight: 600; color: var(--heading); font-size: 14px; }

/* Process timeline */
.timeline { position: relative; max-width: 820px; margin: 0 auto; padding-left: 40px; }
.timeline::before { content: ""; position: absolute; top: 0; bottom: 0; left: 20px; width: 2px; background: linear-gradient(var(--royal), var(--purple), var(--cyan)); }
.tl-item { position: relative; padding: 24px 0 32px 40px; }
.tl-num {
  position: absolute; left: -25px; top: 20px;
  width: 50px; height: 50px; border-radius: 50%; background: var(--bg-2);
  border: 2px solid var(--cyan); display: grid; place-items: center;
  font-family: 'Space Grotesk',sans-serif; font-weight: 700; color: var(--cyan);
  box-shadow: 0 0 0 6px rgba(6,182,212,.08);
}
.tl-body { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm); padding: 22px 24px; backdrop-filter: blur(12px); }
.tl-body h4 { margin: 0 0 8px; font-size: 20px; }
.tl-body p { margin: 0; color: var(--text-dim); }

/* Portfolio */
.portfolio-filters { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 20px 0 10px; }
.pf-btn {
  padding: 10px 20px; border-radius: 999px; border: 1px solid var(--border);
  background: var(--surface); color: var(--text-dim); font-size: 14px; font-weight: 500;
  transition: all .3s; cursor: pointer; font-family: 'Space Grotesk',sans-serif;
}
.pf-btn:hover, .pf-btn.active { color: #fff; background: var(--grad); border-color: transparent; }
.pf-item { transition: opacity .3s, transform .3s; }
.pf-item.hidden { display: none; }
.pf-card { position: relative; display: block; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--border); }
.pf-card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; transition: transform .6s; }
.pf-card:hover img { transform: scale(1.08); }
.pf-overlay {
  position: absolute; inset: 0; padding: 24px;
  background: linear-gradient(180deg, transparent 40%, rgba(5,7,13,.9) 100%);
  display: flex; flex-direction: column; justify-content: flex-end;
  opacity: 0; transform: translateY(20px); transition: all .4s;
}
.pf-card:hover .pf-overlay { opacity: 1; transform: translateY(0); }
.pf-cat { color: var(--cyan); font-size: 12px; letter-spacing: .2em; text-transform: uppercase; font-family: 'Space Grotesk',sans-serif; margin-bottom: 8px; }
.pf-overlay h5 { color: #fff; font-size: 22px; margin-bottom: 8px; }
.pf-view { color: #fff; font-weight: 600; font-size: 14px; display: inline-flex; gap: 8px; align-items: center; }

/* Tech grid */
.tech-grid { display: grid; grid-template-columns: repeat(6,1fr); gap: 18px; }
@media (max-width:991px){ .tech-grid { grid-template-columns: repeat(4,1fr); } }
@media (max-width:575px){ .tech-grid { grid-template-columns: repeat(3,1fr); } }
.tech-item {
  padding: 24px 12px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); text-align: center; transition: all .3s;
}
.tech-item:hover { transform: translateY(-6px) rotate(-2deg); border-color: var(--cyan); background: var(--surface-2); }
.tech-item i { font-size: 34px; margin-bottom: 10px; display: block; }
.tech-item span { font-family: 'Space Grotesk',sans-serif; font-weight: 600; font-size: 13px; color: var(--heading); }

/* Testimonials */
.testimonial-swiper { padding: 20px 10px 60px; }
.quote-card {
  background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius);
  padding: 32px; backdrop-filter: blur(14px); height: 100%;
}
.stars { color: #FBBF24; font-size: 18px; letter-spacing: 2px; margin-bottom: 14px; }
.quote-card p { color: var(--text); font-size: 17px; font-style: italic; margin-bottom: 24px; line-height: 1.7; }
.who { display: flex; align-items: center; gap: 14px; padding-top: 20px; border-top: 1px solid var(--border); }
.avatar { width: 50px; height: 50px; border-radius: 50%; display: grid; place-items: center; color: #fff; font-family: 'Space Grotesk',sans-serif; font-weight: 700; font-size: 20px; }
.who h6 { margin: 0; font-size: 15px; }
.who small { color: var(--text-dim); font-size: 13px; }
.swiper-pagination-bullet { background: var(--text-dim); opacity: .5; }
.swiper-pagination-bullet-active { background: var(--cyan); opacity: 1; width: 24px; border-radius: 4px; }

/* FAQ */
.faq-acc .accordion-item { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius-sm) !important; margin-bottom: 12px; overflow: hidden; }
.faq-acc .accordion-button {
  background: transparent; color: var(--heading);
  font-family: 'Space Grotesk',sans-serif; font-weight: 600; font-size: 17px;
  padding: 20px 24px; box-shadow: none;
}
.faq-acc .accordion-button:not(.collapsed) { background: rgba(6,182,212,.06); color: var(--cyan); }
.faq-acc .accordion-button::after { filter: invert(1) grayscale(1) brightness(1.6); }
[data-theme="light"] .faq-acc .accordion-button::after { filter: none; }
.faq-acc .accordion-body { padding: 0 24px 22px; color: var(--text-dim); }

/* CTA */
.cta-card {
  position: relative; padding: 64px 48px; border-radius: 28px; overflow: hidden;
  background:
    radial-gradient(600px 300px at 10% 20%, rgba(124,58,237,.35), transparent 60%),
    radial-gradient(500px 300px at 90% 80%, rgba(6,182,212,.30), transparent 60%),
    rgba(255,255,255,.03);
  border: 1px solid var(--border); backdrop-filter: blur(20px);
}
.cta-glow { position: absolute; inset: 0; background: radial-gradient(600px circle at 50% 50%, rgba(37,99,235,.15), transparent 60%); pointer-events: none; }
@media (max-width: 767px){ .cta-card { padding: 40px 24px; } }

/* Contact */
.contact-card {
  padding: 30px 22px; background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius-sm); text-align: center; transition: all .3s; height: 100%;
  backdrop-filter: blur(12px);
}
.contact-card:hover { transform: translateY(-6px); border-color: var(--cyan); }
.contact-card i { font-size: 26px; background: var(--grad); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 14px; display: block; }
.contact-card h6 { margin: 0 0 6px; font-size: 15px; }
.contact-card p { margin: 0; color: var(--text-dim); font-size: 14px; }

.contact-form {
  background: var(--surface); border: 1px solid var(--border);
  border-radius: var(--radius); padding: 34px; backdrop-filter: blur(14px);
}
.contact-form label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 500; color: var(--text-dim); }
.contact-form input, .contact-form select, .contact-form textarea {
  width: 100%; padding: 14px 16px; background: rgba(255,255,255,.04);
  border: 1px solid var(--border); border-radius: 12px; color: var(--text);
  font-family: inherit; font-size: 15px; transition: all .3s;
}
[data-theme="light"] .contact-form input,[data-theme="light"] .contact-form select,[data-theme="light"] .contact-form textarea { background: #fff; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--cyan); background: rgba(6,182,212,.06);
  box-shadow: 0 0 0 4px rgba(6,182,212,.12);
}
.contact-form select option { background: var(--bg-2); color: var(--text); }
.cf-success { padding: 14px 18px; background: rgba(16,185,129,.1); border: 1px solid rgba(16,185,129,.3); border-radius: 12px; color: #10b981; }
.cf-success i { margin-right: 8px; }

.map-card { background: var(--surface); border: 1px solid var(--border); border-radius: var(--radius); overflow: hidden; height: 100%; }
.map-card iframe { width: 100%; height: 320px; border: 0; display: block; filter: grayscale(.4) contrast(1.1); }
[data-theme="light"] .map-card iframe { filter: none; }
.hours { padding: 22px 26px; }
.hours h6 { margin: 0 0 12px; font-size: 15px; }
.hours div { color: var(--text-dim); font-size: 14px; padding: 4px 0; }

/* Footer */
.site-footer { padding: 80px 0 30px; background: var(--bg-2); border-top: 1px solid var(--border); }
.ft-title { font-size: 15px; text-transform: uppercase; letter-spacing: .15em; margin-bottom: 20px; color: var(--heading); }
.site-footer ul { list-style: none; padding: 0; margin: 0; }
.site-footer ul li a { color: var(--text-dim); font-size: 14px; padding: 6px 0; display: inline-block; transition: color .3s; }
.site-footer ul li a:hover { color: var(--cyan); }
.socials a {
  display: inline-grid; place-items: center; width: 40px; height: 40px; border-radius: 50%;
  background: var(--surface); border: 1px solid var(--border); color: var(--text-dim);
  margin-right: 8px; transition: all .3s;
}
.socials a:hover { background: var(--grad); color: #fff; border-color: transparent; transform: translateY(-3px); }
.ft-hr { border-color: var(--border); margin: 40px 0 20px; }
.nl-form { display: flex; align-items: center; background: var(--surface); border: 1px solid var(--border); border-radius: 999px; padding: 4px; }
.nl-form input { flex: 1; background: transparent; border: 0; padding: 10px 16px; color: var(--text); outline: none; font-family: inherit; font-size: 14px; }
.nl-form button { border: 0; background: var(--grad); color: #fff; width: 42px; height: 42px; border-radius: 50%; cursor: pointer; transition: transform .3s; }
.nl-form button:hover { transform: rotate(-15deg) scale(1.05); }
.nl-success { color: #10b981; font-size: 13px; }

/* Floating action buttons */
.fab {
  position: fixed; right: 24px; width: 54px; height: 54px; border-radius: 50%;
  display: grid; place-items: center; color: #fff; z-index: 900;
  border: 0; cursor: pointer; box-shadow: 0 12px 30px -8px rgba(0,0,0,.4);
  transition: transform .3s;
}
.fab:hover { transform: translateY(-4px) scale(1.05); color: #fff; }
.fab-wa { bottom: 100px; background: #25D366; font-size: 24px; animation: pulse 2.4s ease-in-out infinite; }
.fab-call { bottom: 160px; background: var(--royal); font-size: 20px; }
.fab-top { bottom: 24px; background: var(--grad); opacity: 0; pointer-events: none; transition: all .3s; }
.fab-top.show { opacity: 1; pointer-events: auto; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(37,211,102,.5)} 50% { box-shadow: 0 0 0 14px rgba(37,211,102,0)} }

/* Utility */
@media (max-width: 991px){
  .hero { padding: 130px 0 80px; }
  .hero-stats { gap: 12px; }
  .stat { padding: 16px 14px; }
  .stat .counter { font-size: 26px; }
}
