/* ============================================================
   MUDRA DETOX CENTRE — style.css
   www.mudrasolutions.in
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Cinzel:wght@400;600;700;900&family=Raleway:wght@300;400;500;600;700&family=Noto+Sans+Telugu:wght@400;600;700&display=swap');

/* ── Variables ─────────────────────────────────────────────── */
:root {
  --indigo:      #1E1B6E;
  --indigo-dark: #13116A;
  --indigo-mid:  #2D2BAF;
  --green:       #2E7D32;
  --green-light: #43A047;
  --pink:        #D81B60;
  --gold:        #C9973A;
  --gold-light:  #E8C06A;
  --ivory:       #FAF8F2;
  --cream:       #FFF8EE;
  --text-dark:   #1A1A2E;
  --text-mid:    #3D3D5C;
  --white:       #FFFFFF;
  --shadow-soft: 0 8px 40px rgba(30,27,110,0.12);
  --shadow-card: 0 4px 24px rgba(30,27,110,0.10);
  --radius:      16px;
  --radius-sm:   8px;
}

/* ── Reset & Base ───────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Raleway', sans-serif;
  background: var(--ivory);
  color: var(--text-dark);
  line-height: 1.65;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { text-decoration: none; color: inherit; }

h1, h2, h3, h4 {
  font-family: 'Cinzel', serif;
  letter-spacing: 0.02em;
}

/* ── Utility ────────────────────────────────────────────────── */
.container { max-width: 1180px; margin: 0 auto; padding: 0 24px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 14px 32px; border-radius: 50px; font-family: 'Raleway', sans-serif;
  font-weight: 700; font-size: 0.95rem; letter-spacing: 0.06em;
  text-transform: uppercase; cursor: pointer; border: none;
  transition: all 0.3s ease;
}
.btn-primary {
  background: var(--indigo); color: var(--white);
  box-shadow: 0 4px 20px rgba(30,27,110,0.30);
}
.btn-primary:hover { background: var(--indigo-mid); transform: translateY(-2px); box-shadow: 0 8px 28px rgba(30,27,110,0.35); }
.btn-outline {
  background: transparent; color: var(--white);
  border: 2px solid rgba(255,255,255,0.7);
}
.btn-outline:hover { background: rgba(255,255,255,0.15); transform: translateY(-2px); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--indigo-dark); box-shadow: 0 4px 20px rgba(201,151,58,0.40);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 8px 28px rgba(201,151,58,0.50); }
.section-label {
  display: inline-block; font-family: 'Raleway', sans-serif;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.22em;
  text-transform: uppercase; color: var(--gold);
  margin-bottom: 12px;
}
.section-label::before, .section-label::after {
  content: '✦'; margin: 0 8px; opacity: 0.6;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--indigo);
  line-height: 1.2; margin-bottom: 16px;
}
.section-subtitle {
  font-size: 1.05rem; color: var(--text-mid);
  max-width: 560px; line-height: 1.7;
}

/* ── Top Bar ────────────────────────────────────────────────── */
.top-bar {
  background: var(--indigo-dark);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem; font-weight: 500;
  padding: 8px 0;
}
.top-bar .container {
  display: flex; justify-content: space-between; align-items: center;
  gap: 12px; flex-wrap: wrap;
}
.top-bar a { color: var(--gold-light); }
.top-bar a:hover { color: var(--white); }
.top-bar-item { display: flex; align-items: center; gap: 6px; }
.top-bar-item svg { width: 14px; height: 14px; flex-shrink: 0; }

/* ── Navbar ─────────────────────────────────────────────────── */
.navbar {
  position: sticky; top: 0; z-index: 1000;
  background: var(--white);
  border-bottom: 3px solid var(--gold);
  box-shadow: 0 2px 20px rgba(30,27,110,0.10);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 0; gap: 24px;
}
.nav-logo { display: flex; align-items: center; gap: 14px; }
.nav-logo img { height: 90px; width: auto; }
.nav-logo-text { display: flex; flex-direction: column; }
.nav-logo-text .brand { font-family: 'Cinzel', serif; font-size: 1.7rem; font-weight: 900; color: var(--indigo); line-height: 1.1; }
.nav-logo-text .sub   { font-size: 0.82rem; color: var(--green); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 6px; list-style: none; }
.nav-links a {
  padding: 8px 16px; border-radius: 50px;
  font-weight: 600; font-size: 0.88rem; letter-spacing: 0.03em;
  color: var(--text-dark); transition: all 0.25s;
}
.nav-links a:hover, .nav-links a.active {
  background: var(--indigo); color: var(--white);
}
.nav-cta { display: flex; align-items: center; gap: 10px; }
.nav-phone {
  font-family: 'Cinzel', serif; font-size: 0.95rem; font-weight: 700;
  color: var(--indigo); letter-spacing: 0.04em;
}
.hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer; padding: 6px;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--indigo); border-radius: 2px; transition: all 0.3s; }

/* ── Hero ───────────────────────────────────────────────────── */
.hero {
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #2A2880 55%, #1B5E20 100%);
  position: relative; overflow: hidden; min-height: 90vh;
  display: flex; align-items: center;
}
.hero-bg-pattern {
  position: absolute; inset: 0; pointer-events: none;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(201,151,58,0.15) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(46,125,50,0.18) 0%, transparent 40%),
    radial-gradient(circle at 60% 10%, rgba(255,255,255,0.04) 0%, transparent 30%);
}
.hero-mandala {
  position: absolute; right: -60px; top: 50%; transform: translateY(-50%);
  width: 600px; height: 600px; opacity: 0.06; pointer-events: none;
}
.hero-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 60px;
  align-items: center; padding: 80px 0;
}
.hero-content { position: relative; z-index: 2; }
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,151,58,0.2); border: 1px solid rgba(201,151,58,0.4);
  color: var(--gold-light); font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.18em; text-transform: uppercase;
  padding: 6px 16px; border-radius: 50px; margin-bottom: 24px;
}
.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  color: var(--white); line-height: 1.1; margin-bottom: 20px;
}
.hero-title span { color: var(--gold-light); display: block; }
.hero-subtitle {
  font-size: 1.1rem; color: rgba(255,255,255,0.78);
  margin-bottom: 36px; max-width: 480px; line-height: 1.75;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-stats {
  display: flex; gap: 32px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.15);
}
.stat-item { text-align: center; }
.stat-num { font-family: 'Cinzel', serif; font-size: 1.9rem; font-weight: 900; color: var(--gold-light); line-height: 1; }
.stat-lbl { font-size: 0.75rem; color: rgba(255,255,255,0.65); font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; }
.hero-visual { position: relative; z-index: 2; display: flex; justify-content: center; }
.hero-card {
  background: rgba(255,255,255,0.08); backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.18); border-radius: 24px;
  padding: 40px 32px; text-align: center; max-width: 360px; width: 100%;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.hero-icon-ring {
  width: 120px; height: 120px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px; font-size: 3.5rem;
  box-shadow: 0 8px 32px rgba(201,151,58,0.45);
}
.hero-card h3 { font-size: 1.4rem; color: var(--white); margin-bottom: 12px; }
.hero-card p { color: rgba(255,255,255,0.72); font-size: 0.95rem; line-height: 1.65; }
.feature-pills { display: flex; flex-wrap: wrap; gap: 8px; justify-content: center; margin-top: 20px; }
.pill {
  background: rgba(255,255,255,0.12); border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.85); font-size: 0.78rem; font-weight: 600;
  padding: 5px 14px; border-radius: 50px; letter-spacing: 0.04em;
}

/* ── Services ───────────────────────────────────────────────── */
.services { padding: 100px 0; background: var(--ivory); }
.services-header { text-align: center; margin-bottom: 64px; }
.services-header .section-subtitle { margin: 0 auto; }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.service-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; position: relative; overflow: hidden;
  box-shadow: var(--shadow-card); transition: all 0.35s ease;
  border-top: 4px solid transparent;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-soft); }
.service-card.foot  { border-top-color: var(--pink); }
.service-card.body  { border-top-color: var(--indigo); }
.service-card.leg   { border-top-color: var(--green); }
.service-card::before {
  content: ''; position: absolute; top: 0; right: 0;
  width: 120px; height: 120px; border-radius: 0 var(--radius) 0 100%;
  opacity: 0.06; transition: opacity 0.35s;
}
.service-card.foot::before  { background: var(--pink); }
.service-card.body::before  { background: var(--indigo); }
.service-card.leg::before   { background: var(--green); }
.service-card:hover::before { opacity: 0.12; }
.service-icon {
  width: 72px; height: 72px; border-radius: 18px;
  display: flex; align-items: center; justify-content: center;
  font-size: 2.2rem; margin-bottom: 24px;
}
.service-card.foot .service-icon  { background: rgba(216,27,96,0.10);  }
.service-card.body .service-icon  { background: rgba(30,27,110,0.10); }
.service-card.leg  .service-icon  { background: rgba(46,125,50,0.10);  }
.service-card h3 { font-size: 1.3rem; color: var(--indigo); margin-bottom: 10px; }
.service-card p  { font-size: 0.92rem; color: var(--text-mid); margin-bottom: 20px; line-height: 1.7; }
.service-benefits { list-style: none; display: flex; flex-direction: column; gap: 8px; }
.service-benefits li {
  display: flex; align-items: center; gap: 8px;
  font-size: 0.88rem; font-weight: 600; color: var(--text-dark);
}
.service-benefits li::before {
  content: '✓'; width: 20px; height: 20px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem; font-weight: 900; flex-shrink: 0;
}
.service-card.foot .service-benefits li::before  { background: rgba(216,27,96,0.12); color: var(--pink); }
.service-card.body .service-benefits li::before  { background: rgba(30,27,110,0.12); color: var(--indigo); }
.service-card.leg  .service-benefits li::before  { background: rgba(46,125,50,0.12); color: var(--green); }

/* ── Why Us ─────────────────────────────────────────────────── */
.why-us {
  padding: 100px 0;
  background: linear-gradient(160deg, var(--indigo-dark) 0%, #1B5E20 100%);
  position: relative; overflow: hidden;
}
.why-us::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 50%, rgba(201,151,58,0.12) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(255,255,255,0.04) 0%, transparent 40%);
}
.why-us .section-title { color: var(--white); }
.why-us .section-subtitle { color: rgba(255,255,255,0.72); }
.why-inner {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px;
  align-items: center; position: relative; z-index: 1;
}
.why-content { }
.why-features { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-top: 48px; }
.why-feature {
  background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--radius); padding: 24px 20px; text-align: center;
  backdrop-filter: blur(10px); transition: all 0.3s;
}
.why-feature:hover { background: rgba(255,255,255,0.13); transform: translateY(-4px); }
.why-feature .wf-icon { font-size: 2rem; margin-bottom: 12px; }
.why-feature h4 { font-family: 'Cinzel', serif; font-size: 0.88rem; color: var(--gold-light); margin-bottom: 6px; letter-spacing: 0.05em; }
.why-feature p  { font-size: 0.8rem; color: rgba(255,255,255,0.65); line-height: 1.5; }
.why-visual { display: flex; flex-direction: column; gap: 16px; }
.testimonial-card {
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.18);
  border-radius: var(--radius); padding: 28px 24px; backdrop-filter: blur(10px);
}
.t-stars { color: var(--gold-light); font-size: 1rem; margin-bottom: 10px; letter-spacing: 2px; }
.t-text { font-size: 0.92rem; color: rgba(255,255,255,0.85); line-height: 1.65; font-style: italic; margin-bottom: 14px; }
.t-author { display: flex; align-items: center; gap: 12px; }
.t-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--green));
  display: flex; align-items: center; justify-content: center;
  font-family: 'Cinzel', serif; font-weight: 700; font-size: 1rem; color: var(--white);
}
.t-name { font-weight: 700; font-size: 0.9rem; color: var(--white); }
.t-loc  { font-size: 0.78rem; color: rgba(255,255,255,0.55); }

/* ── About ──────────────────────────────────────────────────── */
.about { padding: 100px 0; background: var(--cream); }
.about-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-img-wrap {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 60px rgba(30,27,110,0.18);
  border: 4px solid var(--gold);
}
.about-img-wrap img { width: 100%; object-fit: cover; }
.about-badge-float {
  position: absolute; bottom: -20px; right: -20px;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-radius: 20px; padding: 20px 24px; text-align: center;
  box-shadow: 0 8px 32px rgba(201,151,58,0.45);
  min-width: 140px;
}
.about-badge-float .num { font-family: 'Cinzel', serif; font-size: 2rem; font-weight: 900; color: var(--indigo-dark); line-height: 1; }
.about-badge-float .lbl { font-size: 0.72rem; font-weight: 700; color: var(--indigo-dark); letter-spacing: 0.08em; text-transform: uppercase; margin-top: 4px; opacity: 0.8; }
.about-tagline {
  font-family: 'Cinzel', serif; font-size: 1.05rem; font-weight: 600;
  color: var(--green); margin-bottom: 20px; font-style: italic;
}
.about-text { font-size: 1rem; color: var(--text-mid); line-height: 1.8; margin-bottom: 16px; }
.about-values { display: flex; gap: 24px; margin-top: 36px; flex-wrap: wrap; }
.value-item { display: flex; align-items: center; gap: 10px; }
.value-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }
.value-text { font-weight: 700; font-size: 0.88rem; color: var(--indigo); }

/* ── Process ────────────────────────────────────────────────── */
.process { padding: 100px 0; background: var(--ivory); }
.process-header { text-align: center; margin-bottom: 64px; }
.process-steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; position: relative; }
.process-steps::before {
  content: ''; position: absolute; top: 40px; left: 12.5%; right: 12.5%;
  height: 2px; background: linear-gradient(90deg, var(--gold), var(--indigo), var(--green), var(--pink));
  z-index: 0;
}
.process-step { text-align: center; position: relative; z-index: 1; }
.step-circle {
  width: 80px; height: 80px; border-radius: 50%; margin: 0 auto 20px;
  display: flex; align-items: center; justify-content: center; font-size: 1.8rem;
  background: var(--white); box-shadow: 0 4px 20px rgba(30,27,110,0.15);
  border: 3px solid var(--gold); transition: all 0.3s;
}
.process-step:hover .step-circle { background: var(--indigo); transform: scale(1.08); }
.step-num {
  position: absolute; top: -8px; right: calc(50% - 50px);
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--indigo); color: var(--white);
  font-size: 0.72rem; font-weight: 900; display: flex; align-items: center; justify-content: center;
}
.process-step h4 { font-size: 1rem; color: var(--indigo); margin-bottom: 8px; }
.process-step p  { font-size: 0.85rem; color: var(--text-mid); line-height: 1.6; }

/* ── Pricing ────────────────────────────────────────────────── */
.pricing { padding: 100px 0; background: var(--cream); }
.pricing-header { text-align: center; margin-bottom: 64px; }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.pricing-card {
  background: var(--white); border-radius: var(--radius);
  padding: 40px 32px; text-align: center;
  box-shadow: var(--shadow-card); position: relative;
  transition: all 0.35s ease; border: 2px solid transparent;
}
.pricing-card:hover, .pricing-card.featured {
  border-color: var(--gold); transform: translateY(-6px);
  box-shadow: 0 12px 48px rgba(201,151,58,0.25);
}
.pricing-card.featured::before {
  content: 'MOST POPULAR';
  position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--indigo-dark); font-size: 0.68rem; font-weight: 900;
  letter-spacing: 0.14em; padding: 4px 16px; border-radius: 50px;
}
.pricing-icon { font-size: 2.8rem; margin-bottom: 16px; }
.pricing-name { font-family: 'Cinzel', serif; font-size: 1.2rem; color: var(--indigo); margin-bottom: 8px; }
.pricing-duration { font-size: 0.8rem; color: var(--text-mid); margin-bottom: 20px; letter-spacing: 0.05em; }
.pricing-price { font-family: 'Cinzel', serif; font-size: 2.4rem; font-weight: 900; color: var(--indigo); margin-bottom: 4px; }
.pricing-price span { font-size: 1rem; color: var(--text-mid); font-family: 'Raleway', sans-serif; font-weight: 400; }
.pricing-divider { border: none; border-top: 1px solid rgba(30,27,110,0.10); margin: 24px 0; }
.pricing-features { list-style: none; text-align: left; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }
.pricing-features li { display: flex; align-items: center; gap: 10px; font-size: 0.88rem; color: var(--text-mid); }
.pricing-features li::before { content: '✓'; color: var(--green); font-weight: 900; }

/* ── Location ───────────────────────────────────────────────── */
.location { padding: 100px 0; background: var(--ivory); }
.location-inner { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.location-info h2 { font-size: clamp(1.8rem, 3vw, 2.4rem); color: var(--indigo); margin-bottom: 24px; }
.contact-items { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }
.contact-item {
  display: flex; align-items: flex-start; gap: 16px;
  padding: 20px; background: var(--white); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-card); border-left: 4px solid var(--gold);
}
.ci-icon {
  width: 44px; height: 44px; border-radius: 10px; flex-shrink: 0;
  background: rgba(30,27,110,0.08); display: flex; align-items: center; justify-content: center; font-size: 1.3rem;
}
.ci-body h4 { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 4px; }
.ci-body p, .ci-body a { font-size: 0.95rem; color: var(--text-dark); font-weight: 600; line-height: 1.5; }
.ci-body a:hover { color: var(--indigo); }
.map-embed {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: var(--shadow-soft); border: 3px solid var(--gold);
}
.map-embed iframe { width: 100%; height: 380px; border: none; display: block; }

/* ── CTA Banner ─────────────────────────────────────────────── */
.cta-banner {
  padding: 80px 0;
  background: linear-gradient(135deg, var(--indigo-dark) 0%, #2D2BAF 100%);
  text-align: center; position: relative; overflow: hidden;
}
.cta-banner::before {
  content: ''; position: absolute; inset: 0;
  background-image: radial-gradient(circle at 30% 50%, rgba(201,151,58,0.15) 0%, transparent 50%);
}
.cta-banner h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); color: var(--white); margin-bottom: 16px; }
.cta-banner h2 span { color: var(--gold-light); }
.cta-banner p { font-size: 1.05rem; color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 520px; margin-left: auto; margin-right: auto; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; position: relative; z-index: 1; }

/* ── Footer ─────────────────────────────────────────────────── */
footer {
  background: var(--indigo-dark); color: rgba(255,255,255,0.75); padding: 60px 0 0;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { }
.footer-logo { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.footer-logo img { height: 52px; filter: brightness(0) invert(1); }
.footer-logo-txt { }
.footer-logo-txt .brand { font-family: 'Cinzel', serif; font-size: 1.1rem; font-weight: 900; color: var(--white); }
.footer-logo-txt .sub   { font-size: 0.65rem; color: var(--gold-light); font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; }
.footer-desc { font-size: 0.87rem; line-height: 1.75; color: rgba(255,255,255,0.60); margin-bottom: 20px; }
.social-links { display: flex; gap: 10px; }
.social-link {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(255,255,255,0.10); border: 1px solid rgba(255,255,255,0.15);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; transition: all 0.25s; color: rgba(255,255,255,0.75);
}
.social-link:hover { background: var(--gold); color: var(--indigo-dark); border-color: var(--gold); }
.footer-col h4 {
  font-family: 'Cinzel', serif; font-size: 0.92rem; color: var(--gold-light);
  margin-bottom: 18px; letter-spacing: 0.06em;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-links a { font-size: 0.87rem; color: rgba(255,255,255,0.60); transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact-item { display: flex; gap: 10px; margin-bottom: 14px; }
.footer-contact-item .ico { font-size: 1rem; margin-top: 2px; flex-shrink: 0; color: var(--gold-light); }
.footer-contact-item p { font-size: 0.87rem; color: rgba(255,255,255,0.65); line-height: 1.55; }
.footer-contact-item a { color: rgba(255,255,255,0.85); }
.footer-contact-item a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.10); padding: 20px 0;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px;
}
.footer-bottom p { font-size: 0.80rem; color: rgba(255,255,255,0.40); }
.footer-bottom a { color: var(--gold-light); }

/* ── Scroll To Top ──────────────────────────────────────────── */
#scrollTop {
  position: fixed; bottom: 28px; right: 28px;
  width: 48px; height: 48px; border-radius: 50%; z-index: 900;
  background: var(--indigo); color: var(--white); border: none; cursor: pointer;
  font-size: 1.1rem; box-shadow: 0 4px 16px rgba(30,27,110,0.40);
  transition: all 0.3s; opacity: 0; pointer-events: none;
  display: flex; align-items: center; justify-content: center;
}
#scrollTop.visible { opacity: 1; pointer-events: all; }
#scrollTop:hover { background: var(--gold); transform: translateY(-3px); }

/* ── Animations ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes float {
  0%, 100% { transform: translateY(0px); }
  50%       { transform: translateY(-10px); }
}
@keyframes spin-slow { to { transform: rotate(360deg); } }

.animate-fadeup { animation: fadeUp 0.7s ease both; }
.float { animation: float 4s ease-in-out infinite; }
[data-reveal] { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: none; }

/* ── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .process-steps { grid-template-columns: 1fr 1fr; gap: 24px; }
  .process-steps::before { display: none; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; inset: 0; top: 0;
    background: var(--white); z-index: 999;
    justify-content: center; align-items: center;
    gap: 24px;
  }
  .nav-links.open li a { font-size: 1.3rem; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; padding: 60px 0; }
  .hero-visual { display: none; }
  .hero-stats { gap: 20px; }
  .services-grid { grid-template-columns: 1fr; }
  .why-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-inner { grid-template-columns: 1fr; gap: 48px; }
  .about-badge-float { right: 0; bottom: -16px; }
  .pricing-grid { grid-template-columns: 1fr; max-width: 400px; margin: 0 auto; }
  .location-inner { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .top-bar .container { justify-content: center; }
}

@media (max-width: 480px) {
  .why-features { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; justify-content: center; }
}
