/* ═══════════════════════════════════════════════════════════════
   FESTLIFT v2 — Professional Design Override
   Loads last → safely overrides base styles without touching HTML
   ═══════════════════════════════════════════════════════════════ */

/* ── 1. ENHANCED CSS VARIABLES ─────────────────────────────── */
:root {
  /* Gold / Amber — CTA, premium, accent */
  --accent:          #F59E0B;
  --accent-dark:     #D97706;
  --accent-glow:     rgba(245, 158, 11, 0.45);
  --accent-soft:     rgba(245, 158, 11, 0.10);
  --premium:         #EAB308;

  /* Blue — icons, standard plan, secondary accent */
  --blue:            #3B82F6;
  --blue-dark:       #2563EB;
  --blue-light:      #60A5FA;
  --blue-glow:       rgba(59, 130, 246, 0.40);
  --blue-soft:       rgba(59, 130, 246, 0.10);

  /* Backgrounds & surfaces */
  --primary:         #1E293B;
  --primary-dark:    #020617;
  --primary-light:   #334155;
  --dark-bg:         #080D1A;
  --surface:         rgba(16, 24, 48, 0.90);
  --surface-hover:   rgba(22, 34, 64, 0.95);

  /* Text */
  --text:            #F1F5F9;
  --text-secondary:  #8FA4C8;

  /* Borders */
  --border-subtle:   rgba(255, 255, 255, 0.07);
  --border-accent:   rgba(245, 158, 11, 0.22);
  --border-blue:     rgba(59, 130, 246, 0.25);

  /* Status */
  --success:         #34D399;

  /* Tokens */
  --radius-card:     22px;
  --radius-btn:      50px;
  --shadow-card:     0 8px 32px rgba(0, 0, 0, 0.36), 0 1px 0 rgba(255,255,255,0.04) inset;
  --transition:      all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: all 0.18s ease;
}

/* ── 2. BASE RESET ENHANCEMENTS ─────────────────────────────── */
html { background: var(--dark-bg); }

body {
  background:
    radial-gradient(ellipse 70% 55% at 10% 15%, rgba(59,130,246,0.07) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 90% 25%, rgba(245,158,11,0.05) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 50% 80%, rgba(59,130,246,0.04) 0%, transparent 50%),
    var(--dark-bg);
  color: var(--text);
  -webkit-font-smoothing: antialiased;
}

/* ── 3. BUTTONS — THE CRITICAL FIX ─────────────────────────── */
.btn {
  position: relative;
  overflow: hidden;
  font-weight: 700;
  letter-spacing: 0.01em;
  border-radius: var(--radius-btn);
  transition: var(--transition);
}

/* Shimmer effect on hover */
.btn::after {
  content: '';
  position: absolute;
  top: 0; left: -100%;
  width: 60%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.18), transparent);
  transition: left 0.5s ease;
}
.btn:hover::after { left: 140%; }

/* PRIMARY → GOLD (the main fix) */
.btn-primary {
  background: linear-gradient(135deg, var(--accent) 0%, var(--accent-dark) 100%);
  color: #020617;
  border: none;
  box-shadow: 0 4px 20px rgba(245,158,11,0.35), 0 1px 0 rgba(255,255,255,0.15) inset;
  font-weight: 800;
}
.btn-primary:hover {
  background: linear-gradient(135deg, #FBBF24 0%, var(--accent) 100%);
  box-shadow: 0 6px 32px rgba(245,158,11,0.55), 0 1px 0 rgba(255,255,255,0.2) inset;
  transform: translateY(-3px);
  color: #020617;
}
.btn-primary:active { transform: translateY(-1px); }

/* SECONDARY */
.btn-secondary {
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(245,158,11,0.35);
  color: var(--text);
  backdrop-filter: blur(8px);
}
.btn-secondary:hover {
  background: rgba(245,158,11,0.08);
  border-color: rgba(245,158,11,0.65);
  color: #fff;
  transform: translateY(-3px);
}

/* ── 4. NAVIGATION ──────────────────────────────────────────── */
.main-nav {
  background: rgba(10, 15, 30, 0.75);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border-bottom: 1px solid var(--border-accent);
  padding: 0.7rem 5%;
  transition: var(--transition);
}

/* Blue→Gold top accent line */
.main-nav::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--blue), var(--accent), var(--blue-light), transparent);
  opacity: 0.9;
}

.main-nav.scrolled {
  background: rgba(2, 6, 23, 0.96);
  border-bottom-color: rgba(245,158,11,0.14);
  box-shadow: 0 4px 24px rgba(0,0,0,0.35);
  padding: 0.45rem 5%;
}

.nav-link {
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(241,245,249,0.82);
  letter-spacing: 0.01em;
  padding: 0.3rem 0.1rem;
  position: relative;
  transition: var(--transition-fast);
  text-decoration: none;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--accent);
  transition: width 0.25s ease;
  border-radius: 2px;
}
.nav-link:hover { color: #fff; }
.nav-link:hover::after { width: 100%; }

/* Nav phone CTA → gold (needs !important to override inline style) */
.main-nav > a[href^="tel"] {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #020617 !important;
  font-weight: 800 !important;
  box-shadow: 0 2px 16px rgba(245,158,11,0.35) !important;
}
.main-nav > a[href^="tel"]:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 24px rgba(245,158,11,0.55) !important;
}

/* ── 5. HERO ────────────────────────────────────────────────── */
.hero {
  background:
    linear-gradient(160deg, rgba(10,15,30,0.94) 0%, rgba(2,6,23,0.88) 50%, rgba(10,15,30,0.96) 100%),
    url('../images/elev-glass-building.jpg') center/cover no-repeat fixed;
  padding: 160px 0 120px;
  position: relative;
  overflow: hidden;
}

/* Ambient glow — blue left, gold right */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 55% 65% at 15% 50%, rgba(59,130,246,0.10) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 85% 40%, rgba(245,158,11,0.08) 0%, transparent 55%);
  pointer-events: none;
}

/* Thin gold line at bottom of hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(245,158,11,0.4), transparent);
}

.hero-content { position: relative; z-index: 1; text-align: center; }

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  line-height: 1.05;
  font-weight: 800;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
}

/* Animate gradient text */
@keyframes shimmerGold {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-gradient {
  background: linear-gradient(90deg, var(--accent), #FCD34D, var(--accent-dark), var(--premium), var(--accent));
  background-size: 300% 300%;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  animation: shimmerGold 6s ease infinite;
}

.hero-subtitle {
  font-size: 1.15rem;
  line-height: 1.8;
  color: var(--text-secondary);
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

/* Hero stats */
.hero-stats {
  display: flex;
  justify-content: center;
  gap: 2.5rem;
  margin-top: 3.5rem;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
}
.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: -1.25rem; top: 15%;
  height: 70%; width: 1px;
  background: rgba(245,158,11,0.2);
}

.stat-number {
  font-size: 2.2rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
  font-family: 'Space Grotesk', sans-serif;
}
.stat-label {
  color: var(--text-secondary);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 0.3rem;
  font-weight: 600;
}

/* ── 6. SECTION LABELS & HEADERS ────────────────────────────── */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 1.2rem;
  background: rgba(245,158,11,0.09);
  color: var(--accent);
  border-radius: 50px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  border: 1px solid rgba(245,158,11,0.22);
  box-shadow: 0 0 20px rgba(245,158,11,0.08);
}
.section-label::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 8px var(--accent);
  flex-shrink: 0;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.025em;
  margin-bottom: 1.2rem;
}
.section-title .text-accent,
.section-title span[style*="F59E0B"] {
  color: var(--accent);
}

.section-subtitle {
  color: var(--text-secondary);
  font-size: 1.08rem;
  line-height: 1.8;
  max-width: 680px;
  margin: 0 auto;
}

/* ── 7. SERVICE CARDS ───────────────────────────────────────── */
.service-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-card);
  padding: 2.2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Top gradient line — gold for 1st card, blue for 2nd, back to gold 3rd */
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.services-grid .service-card:nth-child(1)::before { background: linear-gradient(90deg, var(--blue), var(--accent)); }
.services-grid .service-card:nth-child(2)::before { background: linear-gradient(90deg, var(--accent), var(--blue)); }
.services-grid .service-card:nth-child(3)::before { background: linear-gradient(90deg, var(--blue-light), var(--blue-dark)); }
.service-card:hover::before { opacity: 1; }

.service-card:hover {
  background: var(--surface-hover);
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.38);
}
.services-grid .service-card:nth-child(1):hover { border-color: rgba(59,130,246,0.35); box-shadow: 0 20px 48px rgba(0,0,0,0.38), 0 0 30px rgba(59,130,246,0.10); }
.services-grid .service-card:nth-child(2):hover { border-color: rgba(245,158,11,0.35); box-shadow: 0 20px 48px rgba(0,0,0,0.38), 0 0 30px rgba(245,158,11,0.10); }
.services-grid .service-card:nth-child(3):hover { border-color: rgba(59,130,246,0.35); box-shadow: 0 20px 48px rgba(0,0,0,0.38), 0 0 30px rgba(59,130,246,0.10); }

/* Service icons — alternate gold / blue / gold */
.service-icon {
  width: 60px; height: 60px;
  border-radius: 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin-bottom: 1.4rem;
  transition: var(--transition);
}
.services-grid .service-card:nth-child(1) .service-icon { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); color: #fff; box-shadow: 0 4px 20px rgba(59,130,246,0.40); }
.services-grid .service-card:nth-child(2) .service-icon { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); color: #020617; box-shadow: 0 4px 20px rgba(245,158,11,0.40); }
.services-grid .service-card:nth-child(3) .service-icon { background: linear-gradient(135deg, var(--blue-light), var(--blue)); color: #020617; box-shadow: 0 4px 20px rgba(96,165,250,0.40); }
.service-card:hover .service-icon { transform: scale(1.1) rotate(-4deg); }

.service-features li {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  padding: 0.38rem 0;
  color: var(--text-secondary);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}
.service-features li:last-child { border: none; }
.service-features li i.fa-check { color: var(--blue-light); font-size: 0.75rem; flex-shrink: 0; }

/* ── 8. PORTFOLIO CARDS ─────────────────────────────────────── */
.portfolio-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid var(--border-subtle);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-card);
}
.portfolio-card:hover {
  border-color: rgba(245,158,11,0.28);
  transform: translateY(-6px);
  box-shadow: 0 24px 52px rgba(0,0,0,0.4);
}

.portfolio-image {
  height: 220px;
  position: relative;
  overflow: hidden;
}
.portfolio-image > div { transition: transform 0.5s ease; }
.portfolio-card:hover .portfolio-image > div { transform: scale(1.04); }

.portfolio-overlay {
  position: absolute; inset: 0;
  background: rgba(2,6,23,0.6);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
  backdrop-filter: blur(4px);
}
.portfolio-card:hover .portfolio-overlay { opacity: 1; }

.portfolio-content { padding: 1.5rem; }
.portfolio-category {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--accent);
  background: rgba(245,158,11,0.1);
  padding: 0.25rem 0.7rem;
  border-radius: 20px;
  margin-bottom: 0.7rem;
  border: 1px solid rgba(245,158,11,0.2);
}

/* ── 9. TESTIMONIAL CARDS ───────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  border: 1px solid rgba(245,158,11,0.10);
  padding: 2.2rem;
  box-shadow: var(--shadow-card);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

/* Big decorative quote mark */
.testimonial-card::before {
  content: '"';
  position: absolute;
  top: -0.5rem; right: 1.5rem;
  font-size: 8rem;
  color: rgba(245,158,11,0.06);
  font-family: Georgia, serif;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.testimonial-card:hover {
  border-color: rgba(245,158,11,0.35);
  transform: translateY(-6px);
  box-shadow: 0 20px 48px rgba(0,0,0,0.35), 0 0 0 1px rgba(245,158,11,0.1);
}

.testimonial-stars i { color: var(--accent); }

.testimonial-quote {
  color: rgba(241,245,249,0.82);
  font-size: 0.95rem;
  line-height: 1.85;
  font-style: italic;
}

/* ── 10. PROCESS STEPS ──────────────────────────────────────── */
.process-grid { position: relative; }

/* Connecting line between steps */
.process-grid::before {
  content: '';
  position: absolute;
  top: 35px; left: calc(12.5%);
  width: calc(75%);
  height: 2px;
  background: linear-gradient(90deg, var(--accent), rgba(245,158,11,0.2));
  z-index: 0;
}

.process-step { position: relative; z-index: 1; }

.process-step-index {
  width: 70px; height: 70px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; font-weight: 800;
  margin: 0 auto 1.5rem;
  position: relative;
  transition: var(--transition);
}
.process-step:hover .process-step-index { transform: scale(1.12); }

.process-step-index--accent  { background: linear-gradient(135deg, var(--blue), var(--blue-dark)); box-shadow: 0 0 28px rgba(59,130,246,0.55); color: #fff; }
.process-step-index--primary  { background: linear-gradient(135deg, var(--accent), var(--accent-dark)); box-shadow: 0 0 28px rgba(245,158,11,0.5); color: #020617; }
.process-step-index--premium  { background: linear-gradient(135deg, var(--blue-light), var(--blue)); box-shadow: 0 0 28px rgba(96,165,250,0.45); color: #020617; }
.process-step-index--success  { background: linear-gradient(135deg, var(--success), #059669); box-shadow: 0 0 28px rgba(52,211,153,0.4); color: #020617; }

.process-step-title {
  font-size: 1.05rem;
  font-weight: 700;
  margin-bottom: 0.6rem;
  color: var(--text);
}
.process-step-description {
  color: var(--text-secondary);
  font-size: 0.88rem;
  line-height: 1.7;
}

/* ── 11. PLAN CARDS ─────────────────────────────────────────── */
.plan-card {
  background: var(--surface);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  position: relative;
  transition: var(--transition);
}
.plan-card:hover { transform: translateY(-7px); }

/* Standard → blue accent */
.plan-card.standard {
  border-color: rgba(59, 130, 246, 0.35) !important;
  background: linear-gradient(160deg, rgba(16,26,56,0.97), rgba(10,18,42,0.99));
  box-shadow: 0 0 50px rgba(59,130,246,0.10), var(--shadow-card);
}
.plan-card.standard:hover {
  border-color: rgba(59,130,246,0.55) !important;
  box-shadow: 0 0 70px rgba(59,130,246,0.18), var(--shadow-card);
}

/* Premium → gold accent */
.plan-card.premium {
  border-color: rgba(245,158,11,0.40) !important;
  background: linear-gradient(160deg, rgba(26,22,10,0.98), rgba(18,16,6,0.99));
  box-shadow: 0 0 60px rgba(245,158,11,0.14), var(--shadow-card);
}
.plan-card.premium:hover {
  border-color: rgba(245,158,11,0.65) !important;
  box-shadow: 0 0 80px rgba(245,158,11,0.24), var(--shadow-card);
}

/* Badge — keep position: absolute from original, just update visuals */
.standard .plan-badge {
  background: linear-gradient(135deg, var(--blue), var(--blue-dark)) !important;
  color: #fff !important;
  box-shadow: 0 2px 14px rgba(59,130,246,0.45) !important;
  font-weight: 800 !important;
}
.premium .plan-badge {
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #020617 !important;
  box-shadow: 0 2px 14px rgba(245,158,11,0.45) !important;
  font-weight: 800 !important;
}

.plan-price {
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--accent);
  font-family: 'Space Grotesk', sans-serif;
  margin: 0.5rem 0;
}
.standard .plan-price { color: var(--blue-light) !important; }

/* ── 12. COVERAGE CARDS ─────────────────────────────────────── */
.coverage-card {
  background: rgba(22,32,54,0.7);
  border: 1px solid rgba(245,158,11,0.15);
  border-radius: 14px;
  padding: 1.1rem 0.8rem;
  text-align: center;
  transition: var(--transition);
  backdrop-filter: blur(8px);
}
.coverage-card:hover {
  border-color: rgba(245,158,11,0.45);
  background: rgba(245,158,11,0.06);
  transform: translateY(-3px);
}
.coverage-card--expansion {
  background: rgba(234,179,8,0.05);
  border-color: rgba(234,179,8,0.28);
}
.coverage-card--expansion:hover { border-color: var(--premium); }
.coverage-card-city { font-weight: 700; font-size: 0.92rem; color: var(--text); }
.coverage-card-area { color: var(--text-secondary); font-size: 0.76rem; margin-top: 0.2rem; }

/* ── 13. FAQ ITEMS ──────────────────────────────────────────── */
.ds-faq-item {
  background: var(--surface);
  border: 1px solid var(--border-subtle);
  border-radius: 16px;
  overflow: hidden;
  transition: border-color 0.25s ease;
}
.ds-faq-item:hover { border-color: rgba(245,158,11,0.2); }
.ds-faq-btn {
  padding: 1.4rem 1.8rem;
  font-size: 0.97rem;
  color: var(--text);
}
.ds-faq-btn:hover { color: #fff; }
.ds-faq-chevron { color: var(--accent); }

/* ── 14. CONTACT SECTION ────────────────────────────────────── */
.contact-section { background: linear-gradient(180deg, rgba(10,15,30,0.0) 0%, rgba(10,15,30,0.5) 100%); }

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.2rem;
  padding: 1.3rem;
  background: var(--surface);
  border-radius: 16px;
  border: 1px solid var(--border-subtle);
  margin-bottom: 1rem;
  transition: var(--transition);
}
.contact-item:hover {
  border-color: rgba(245,158,11,0.25);
  transform: translateX(4px);
}

.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark));
  display: flex; align-items: center; justify-content: center;
  color: #020617;
  font-size: 1rem;
  flex-shrink: 0;
  box-shadow: 0 4px 12px rgba(245,158,11,0.3);
}

/* Contact form fields */
.form-control,
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: rgba(22, 32, 54, 0.8);
  border: 1.5px solid rgba(255,255,255,0.08);
  border-radius: 12px;
  color: var(--text);
  font-size: 0.95rem;
  padding: 0.9rem 1.1rem;
  width: 100%;
  transition: var(--transition-fast);
  outline: none;
  min-height: 46px;
  font-family: 'Inter', sans-serif;
}
.form-control:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px rgba(245,158,11,0.12);
  background: rgba(30, 44, 72, 0.9);
}
.form-control::placeholder { color: var(--text-secondary); }
.form-label { font-size: 0.85rem; font-weight: 600; color: var(--text); margin-bottom: 0.5rem; display: block; }

/* Submit button → gold (full width form) */
.contact-form .btn-primary,
#contactForm .btn-primary {
  width: 100%;
  padding: 1.1rem;
  font-size: 1rem;
  justify-content: center;
}

/* ── 15. FOOTER ─────────────────────────────────────────────── */
.main-footer {
  background: #020617;
  border-top: 1px solid rgba(245,158,11,0.14);
  padding-top: 3.5rem;
}

.footer-grid {
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 3rem;
}

.ds-footer-title {
  font-size: 0.75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--accent);
  margin-bottom: 1.3rem;
  padding-bottom: 0.7rem;
  border-bottom: 1px solid rgba(245,158,11,0.12);
}

.ds-footer-link {
  color: rgba(148,163,184,0.85);
  text-decoration: none;
  font-size: 0.9rem;
  transition: var(--transition-fast);
  display: flex;
  align-items: center;
  gap: 0.4rem;
}
.ds-footer-link:hover {
  color: #fff;
  padding-left: 4px;
}
.ds-footer-link:hover::before {
  content: '›';
  color: var(--accent);
}

.ds-footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(245,158,11,0.18);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition-fast);
  text-decoration: none;
}
.ds-footer-social:hover {
  background: rgba(245,158,11,0.12);
  border-color: var(--accent);
  transform: translateY(-2px);
  color: var(--accent);
}

.ds-footer-bottom-row {
  background: rgba(0,0,0,0.3);
  margin: 2.5rem -20px 0;
  padding: 1.2rem 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
}

/* Footer CTA button → gold */
.ds-footer-cta-compact,
a.ds-footer-cta-compact {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  margin-top: 1.5rem;
  background: linear-gradient(135deg, var(--accent), var(--accent-dark)) !important;
  color: #020617 !important;
  font-weight: 800 !important;
  border-radius: 50px !important;
  padding: 0.65rem 1.5rem !important;
  font-size: 0.85rem !important;
  box-shadow: 0 2px 16px rgba(245,158,11,0.3) !important;
  text-decoration: none !important;
  transition: var(--transition) !important;
  border: none !important;
}
.ds-footer-cta-compact:hover {
  transform: translateY(-2px) !important;
  box-shadow: 0 4px 24px rgba(245,158,11,0.5) !important;
}

/* ── 16. SCROLL REVEAL ANIMATIONS ───────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-20px); }
  to   { opacity: 1; transform: translateX(0); }
}

.service-card,
.portfolio-card,
.testimonial-card,
.plan-card,
.coverage-card,
.process-step,
.contact-item {
  animation: fadeInUp 0.6s ease both;
}

/* Stagger children */
.services-grid .service-card:nth-child(1)    { animation-delay: 0.05s; }
.services-grid .service-card:nth-child(2)    { animation-delay: 0.15s; }
.services-grid .service-card:nth-child(3)    { animation-delay: 0.25s; }
.portfolio-grid .portfolio-card:nth-child(1) { animation-delay: 0.05s; }
.portfolio-grid .portfolio-card:nth-child(2) { animation-delay: 0.12s; }
.portfolio-grid .portfolio-card:nth-child(3) { animation-delay: 0.19s; }
.portfolio-grid .portfolio-card:nth-child(4) { animation-delay: 0.26s; }
.testimonials-grid > div:nth-child(1)        { animation-delay: 0.05s; }
.testimonials-grid > div:nth-child(2)        { animation-delay: 0.15s; }
.testimonials-grid > div:nth-child(3)        { animation-delay: 0.25s; }
.process-step:nth-child(1) { animation-delay: 0.0s; }
.process-step:nth-child(2) { animation-delay: 0.1s; }
.process-step:nth-child(3) { animation-delay: 0.2s; }
.process-step:nth-child(4) { animation-delay: 0.3s; }

/* ── 17. MOBILE ─────────────────────────────────────────────── */
@media (max-width: 768px) {
  .hero { padding: 130px 0 90px; }
  .hero h1 { font-size: clamp(2.2rem, 8vw, 3.2rem); }
  .hero-stats { gap: 1.5rem; }
  .stat-item:not(:last-child)::after { display: none; }
  .stat-number { font-size: 1.8rem; }
  .plans-grid { grid-template-columns: 1fr; }
  .process-grid::before { display: none; }
  .footer-grid { grid-template-columns: 1fr !important; gap: 2rem; }
  .section { padding: 80px 0; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2rem; }
  .btn { padding: 0.9rem 1.6rem; font-size: 0.9rem; }
}



/* ── 17. PAGE-SPECIFIC (from index.html inline) ─────────── */

/* From index.html inline */
#faq .faq-item button {
                padding: 1.1rem 1.1rem !important;
                font-size: 0.95rem !important;
}

/* From index.html inline */
#faq .faq-answer p {
                padding: 0 1.1rem 1.1rem !important;
                line-height: 1.7 !important;
}
/* ── 18. SHARED EFFECTS (merged from style.css) ──────── */

.fl-reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.65s ease, transform 0.65s ease; }
.fl-reveal.fl-visible { opacity: 1; transform: translateY(0); }
.section-header .section-label.fl-reveal { transition-delay: 0ms; }
.section-header .section-title.fl-reveal { transition-delay: 80ms; }
.section-header .section-subtitle.fl-reveal { transition-delay: 160ms; }
.service-card, .solution-card, .contact-card { transform-style: preserve-3d; will-change: transform; }
@keyframes countDone { 0% { text-shadow: 0 0 0 transparent; } 50% { text-shadow: 0 0 18px rgba(240,180,41,0.6); } 100% { text-shadow: none; } }
.stat-number[data-counted="1"] { animation: countDone 0.6s ease 0.1s both; }
.section-title { position: relative; }
.section-title::after { content: ''; position: absolute; left: 50%; transform: translateX(-50%); bottom: -10px; height: 3px; width: 0; background: linear-gradient(90deg, transparent, #f0b429, transparent); border-radius: 2px; transition: width 0.7s ease 0.3s; }
.section-title.fl-visible::after { width: 80px; }
.footer-col .nav-brand img { height: 80px !important; width: auto; animation: none !important; }
.footer-col a:not(.btn):hover { color: #f0b429 !important; padding-left: 4px; transition: color 0.3s ease, padding-left 0.3s ease; }

/* ── 20. MISC POLISH ────────────────────────────────────────── */

/* Smooth scrollbar on webkit */
::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--dark-bg); }
::-webkit-scrollbar-thumb { background: rgba(245,158,11,0.35); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: rgba(245,158,11,0.6); }

/* Selection highlight */
::selection { background: rgba(245,158,11,0.25); color: #fff; }

/* Coverage summary pill */
.coverage-summary {
  background: rgba(245,158,11,0.05);
  border: 1px solid rgba(245,158,11,0.2);
  border-radius: 16px;
  padding: 1.2rem 1.5rem;
  margin-top: 2rem;
  font-size: 0.92rem;
  color: var(--text-secondary);
  text-align: center;
}
.coverage-summary i { color: var(--accent); margin-right: 0.4rem; }

/* Fact box */
section .container > [style*="rgba(245, 158, 11, 0.12)"] {
  background: rgba(245,158,11,0.07) !important;
  border: 1px solid rgba(245,158,11,0.25) !important;
  border-radius: 20px !important;
}

/* WhatsApp links */
.ds-whatsapp-link {
  color: #25D366 !important;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  text-decoration: none;
  transition: var(--transition-fast);
}
.ds-whatsapp-link:hover { opacity: 0.85; }

/* ── 19. DESIGN-STANDARD UTILITIES (merged from design-standard.css) ── */

.ds-footer-link { text-decoration: none; color: var(--text-secondary); font-size: 0.9rem; }
.ds-footer-link-legal { color: var(--text-secondary); text-decoration: none; font-size: 0.85rem; }
.ds-footer-title { font-size: 1.1rem; margin-bottom: 1.5rem; color: var(--accent); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.ds-footer-list { list-style: none; display: flex; flex-direction: column; gap: 0.8rem; }
.ds-flex-col { display: flex; flex-direction: column; }
.ds-footer-social { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.05); border-radius: 50%; color: var(--accent); border: 1px solid rgba(245,158,11,0.22); }
.ds-footer-row { display: flex; align-items: center; gap: 0.8rem; }
.ds-footer-row-top { display: flex; align-items: flex-start; gap: 0.8rem; }
.ds-footer-muted-sm { font-size: 0.9rem; color: var(--text-secondary); }
.ds-footer-muted-sm-line { font-size: 0.9rem; color: var(--text-secondary); line-height: 1.5; }
.ds-footer-bottom-row { max-width: 1100px; margin: 0 auto; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.06); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem; }
.ds-footer-copy { color: var(--text-secondary); font-size: 0.83rem; }
.ds-footer-links-row { display: flex; gap: 1.5rem; }
.ds-footer-links-row a { color: var(--text-secondary); font-size: 0.83rem; text-decoration: none; }
.ds-footer-links-row a:hover { color: var(--accent); }
.ds-footer-logo-white { filter: brightness(0) invert(1); height: 22px; width: auto; }
.ds-footer-logo-35 { filter: brightness(0) invert(1); height: 35px; width: auto; }
.ds-footer-badge { display: flex; align-items: center; gap: 0.4rem; font-size: 0.78rem; color: var(--text-secondary); }
.ds-footer-logos-row { display: flex; justify-content: center; gap: 2rem; flex-wrap: wrap; margin-top: 1.5rem; padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.05); }
.ds-footer-logos-row > div { display: flex; align-items: center; gap: 0.5rem; }
.ds-footer-opacity-90 { opacity: 0.9; }
.ds-text-accent { color: var(--accent); }
.ds-text-success { color: var(--success); }
.ds-text-premium { color: var(--premium); }
.ds-brand-link { margin-bottom: 1.5rem; display: block; }
.ds-footer-summary { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-top: 0.5rem; max-width: 280px; }
.ds-footer-cta-compact { padding: 0.8rem 1.5rem; font-size: 0.85rem; margin-top: 1.8rem; display: inline-block; border-radius: 50px; text-align: center; }
.ds-footer-main { text-align: left; padding: 3rem 0 1.5rem; background: var(--primary-dark); border-top: 1px solid rgba(245,158,11,0.12); }
.ds-color-text { color: var(--text); }
.ds-text-secondary { color: var(--text-secondary); }
.ds-text-danger { color: #ff6b6b; }
.ds-fs-15 { font-size: 1.5rem; }
.ds-muted-09 { color: var(--text-secondary); font-size: 0.9rem; }
.ds-premium-banner { display: flex; align-items: center; gap: 0.8rem; background: rgba(234,179,8,0.06); border: 1px solid rgba(234,179,8,0.18); border-radius: 14px; padding: 1.1rem 1.4rem; margin-bottom: 1.8rem; font-size: 0.88rem; color: var(--text-secondary); line-height: 1.7; }
.ds-row-gap-07 { display: flex; align-items: center; gap: 0.7rem; margin-bottom: 1rem; }
.ds-map-bullet-row { list-style: none; font-size: 0.8rem; color: var(--accent); margin-top: -0.5rem; display: flex; gap: 1rem; }
.ds-faq-item { background: var(--surface, rgba(30,41,59,0.85)) !important; border-radius: 16px !important; border: 1px solid rgba(245,158,11,0.12) !important; overflow: hidden; }
.ds-faq-btn { width: 100%; display: flex; justify-content: space-between; align-items: center; padding: 1.3rem 1.5rem !important; background: none; border: none; color: var(--text, #F8FAFC); font-family: 'Space Grotesk', sans-serif; font-size: 1rem; font-weight: 600; text-align: left; cursor: pointer; }
.ds-faq-chevron { color: var(--accent, #F59E0B); transition: transform 0.3s ease; flex-shrink: 0; margin-left: 1rem; }
.ds-faq-item.active .ds-faq-chevron { transform: rotate(180deg); }
.ds-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); }
.ds-faq-item.active .ds-faq-answer { max-height: 500px; }
.ds-faq-text { padding: 0 1.5rem 1.3rem !important; color: var(--text-secondary, #A7B4C8); font-size: 0.92rem; line-height: 1.8; margin: 0; }
.ds-footer-logo-main { height: 130px; width: auto; }
.ds-footer-social-row { display: flex; gap: 0.8rem; margin-top: 2rem; }
.ds-bar-premium { width: 4px; height: 28px; background: linear-gradient(to bottom, var(--premium), #e07020); border-radius: 4px; flex-shrink: 0; }
.ds-bar-accent { width: 4px; height: 28px; background: linear-gradient(to bottom, var(--accent), #007a8a); border-radius: 4px; flex-shrink: 0; }

/* ── 21. iOS SAFARI — background-attachment:fixed fix ──────── */
@media (max-width: 1024px) {
  body { background-attachment: scroll; }
  .hero { background-attachment: scroll !important; }
}

/* ── 22. PREFERS-REDUCED-MOTION ────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .hero-gradient { animation: none; }
  .service-card,
  .portfolio-card,
  .testimonial-card,
  .plan-card,
  .coverage-card,
  .process-step,
  .contact-item { animation: none; }
}
