/* ═══════════════════════════════════════════════════════
   ESTRATEGAS LEGALES — styles.css
   Paleta: Azul marino profundo, dorado, crema/blanco
   Tipografía: Cormorant Garamond (display) + Mulish (body)
═══════════════════════════════════════════════════════ */

/* ── VARIABLES (LIGHT MODE) ─────────────────────────── */
:root {
  --navy:        #0D1F3C;
  --navy-mid:    #172B52;
  --navy-light:  #1E3A6E;
  --gold:        #B8952A;
  --gold-light:  #D4AF50;
  --gold-pale:   #F0E0A0;
  --cream:       #FAF7F2;
  --cream-dark:  #F0EBE1;
  --white:       #FFFFFF;
  --text-main:   #1A1A2E;
  --text-muted:  #5A6070;
  --text-light:  #8A91A0;
  --border:      rgba(13, 31, 60, 0.12);
  --border-gold: rgba(184, 149, 42, 0.35);
  --shadow-sm:   0 2px 12px rgba(13,31,60,0.08);
  --shadow-md:   0 8px 32px rgba(13,31,60,0.12);
  --shadow-lg:   0 24px 64px rgba(13,31,60,0.16);
  --bg-primary:  #FAF7F2;
  --bg-section:  #FFFFFF;
  --bg-alt:      #F4F0E8;
  --nav-bg:      rgba(250, 247, 242, 0.95);
  --card-bg:     #FFFFFF;
  --radius:      6px;
  --radius-lg:   12px;
  --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── DARK MODE ──────────────────────────────────────── */
[data-theme="dark"] {
  --cream:       #0A1628;
  --cream-dark:  #0D1F3C;
  --white:       #0D1F3C;
  --text-main:   #EDE8DF;
  --text-muted:  #9AA3B5;
  --text-light:  #6B748A;
  --border:      rgba(255,255,255,0.08);
  --border-gold: rgba(184, 149, 42, 0.4);
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.3);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.4);
  --shadow-lg:   0 24px 64px rgba(0,0,0,0.5);
  --bg-primary:  #080F1E;
  --bg-section:  #0A1628;
  --bg-alt:      #0D1F3C;
  --nav-bg:      rgba(8, 15, 30, 0.95);
  --card-bg:     #111D35;
}

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

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

body {
  font-family: 'Mulish', sans-serif;
  background-color: var(--bg-primary);
  color: var(--text-main);
  line-height: 1.7;
  transition: background-color 0.4s ease, color 0.4s ease;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: color var(--transition); }
img { max-width: 100%; display: block; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── CONTAINER ──────────────────────────────────────── */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ─────────────────────────────────────── */
.section-eyebrow {
  font-family: 'Mulish', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  color: var(--text-main);
  margin-bottom: 20px;
}

.section-desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 560px;
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .section-desc {
  margin: 0 auto;
}

/* ── BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn--primary {
  background: var(--gold);
  color: var(--navy);
}

.btn--primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(184, 149, 42, 0.4);
}

.btn--ghost {
  border: 1.5px solid var(--border-gold);
  color: var(--text-main);
}

.btn--ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(184, 149, 42, 0.06);
}

.btn--sm { padding: 10px 20px; font-size: 0.82rem; }
.btn--lg { padding: 16px 36px; font-size: 0.95rem; }
.btn--full { width: 100%; justify-content: center; }

/* ── REVEAL ANIMATIONS ──────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal--delay { transition-delay: 0.15s; }
.reveal--delay-2 { transition-delay: 0.3s; }
.mt-1 { margin-top: 16px; }

/* ════════════════════════════════════════════════════════
   NAVBAR
════════════════════════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--nav-bg);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  transition: all var(--transition);
}

.navbar.scrolled {
  box-shadow: var(--shadow-md);
}

.navbar__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  height: 72px;
}

.navbar__logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-mark {
  font-size: 1.6rem;
  color: var(--gold);
  line-height: 1;
}

.logo-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}

.logo-main {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  color: var(--text-main);
  line-height: 1;
}

.logo-sub {
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  line-height: 1;
}

.navbar__links {
  display: flex;
  gap: 36px;
}

.nav-link {
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  position: relative;
  padding-bottom: 2px;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold);
  transition: width var(--transition);
}

.nav-link:hover { color: var(--text-main); }
.nav-link:hover::after { width: 100%; }

.navbar__actions {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Theme Toggle */
.theme-toggle {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  font-size: 1rem;
  transition: all var(--transition);
}

.theme-toggle:hover {
  border-color: var(--gold);
  background: rgba(184, 149, 42, 0.08);
}

.theme-icon {
  position: absolute;
  transition: all var(--transition);
}

.theme-icon.sun { opacity: 1; }
.theme-icon.moon { opacity: 0; }

[data-theme="dark"] .theme-icon.sun { opacity: 0; }
[data-theme="dark"] .theme-icon.moon { opacity: 1; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--text-main);
  transition: all var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px;
  background: var(--nav-bg);
  border-bottom: 1px solid var(--border);
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 999;
  transform: translateY(-110%);
  transition: transform var(--transition);
}

.mobile-menu.open {
  transform: translateY(0);
}

.mobile-link {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 12px 0;
  width: 100%;
  text-align: center;
  border-bottom: 1px solid var(--border);
}

.mobile-link:hover { color: var(--gold); }

/* ════════════════════════════════════════════════════════
   HERO
════════════════════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  padding: 120px 0 80px;
  background-color: var(--bg-primary);
}

/* Background shapes */
.hero__bg-shapes { position: absolute; inset: 0; pointer-events: none; }

.shape {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.08;
}

.shape--1 {
  width: 600px;
  height: 600px;
  background: var(--navy-light);
  top: -200px;
  right: -100px;
}

.shape--2 {
  width: 400px;
  height: 400px;
  background: var(--gold);
  bottom: -100px;
  left: -80px;
  opacity: 0.06;
}

.shape--3 {
  width: 300px;
  height: 300px;
  background: var(--navy);
  top: 40%;
  left: 30%;
  opacity: 0.05;
}

[data-theme="dark"] .shape { opacity: 0.15; }

.hero__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
}

.hero__eyebrow::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1.5px;
  background: var(--gold);
}

.hero__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 5.5vw, 5rem);
  font-weight: 600;
  line-height: 1.05;
  color: var(--text-main);
  margin-bottom: 24px;
}

.hero__title em {
  font-style: italic;
  color: var(--gold);
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 450px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero__cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Hero Visual */
.hero__visual {
  position: relative;
}

.hero__card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}

.hero__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
}

.hero__card-inner {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.stat-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 20px;
  background: var(--bg-alt);
  border-radius: var(--radius);
  border: 1px solid var(--border);
}

.stat__num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}

.stat__label {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-muted);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero__badge {
  position: absolute;
  bottom: -20px;
  right: 32px;
  background: var(--navy);
  color: #EDE8DF;
  border-radius: var(--radius);
  padding: 16px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: var(--shadow-md);
  min-width: 220px;
}

[data-theme="dark"] .hero__badge { background: var(--navy-light); }

.badge-icon {
  font-size: 1.4rem;
  color: var(--gold-light);
}

.hero__badge strong {
  display: block;
  font-size: 0.85rem;
  font-weight: 700;
  color: #EDE8DF;
}

.hero__badge small {
  font-size: 0.72rem;
  color: rgba(237, 232, 223, 0.65);
  letter-spacing: 0.04em;
}

/* Scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-light);
}

.scroll-hint__arrow {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 1; transform: scaleY(1); }
  50%       { opacity: 0.4; transform: scaleY(0.7); }
}

/* ════════════════════════════════════════════════════════
   ABOUT
════════════════════════════════════════════════════════ */
.about {
  padding: 120px 0;
  background: var(--bg-section);
}

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about__image-frame {
  position: relative;
}

.about__image-placeholder {
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  position: relative;
}

.about__image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.img-placeholder-inner {
  text-align: center;
  color: var(--text-light);
}

.placeholder-icon {
  font-size: 3rem;
  color: var(--border-gold);
  display: block;
  margin-bottom: 12px;
}

.img-placeholder-inner p {
  font-size: 0.85rem;
  line-height: 1.5;
}

.about__accent-box {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--navy);
  color: #EDE8DF;
  padding: 24px 28px;
  border-radius: var(--radius);
  max-width: 240px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.05rem;
  font-style: italic;
  line-height: 1.5;
  box-shadow: var(--shadow-md);
}

[data-theme="dark"] .about__accent-box { background: var(--navy-light); }

.about__body {
  color: var(--text-muted);
  margin-bottom: 16px;
  font-size: 1.02rem;
}

.about__values {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.value-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.value-icon {
  color: var(--gold);
  font-size: 0.6rem;
  margin-top: 6px;
  flex-shrink: 0;
}

.value-item strong {
  display: block;
  font-weight: 700;
  margin-bottom: 2px;
  font-size: 0.95rem;
}

.value-item p {
  font-size: 0.88rem;
  color: var(--text-muted);
}

/* ════════════════════════════════════════════════════════
   SERVICES
════════════════════════════════════════════════════════ */
.services {
  padding: 120px 0;
  background: var(--bg-alt);
}

.services__grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

/* Service Card (collapsible) */
.service-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--transition), box-shadow var(--transition);
}

.service-card:hover {
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.service-card.active {
  border-color: var(--gold);
  box-shadow: 0 4px 24px rgba(184, 149, 42, 0.15);
}

.service-card__header {
  padding: 28px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  user-select: none;
}

.service-card__title-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.service-icon {
  font-size: 1.5rem;
  width: 48px;
  height: 48px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
}

.service-card.active .service-icon {
  background: rgba(184, 149, 42, 0.12);
  border-color: var(--border-gold);
}

.service-card__header h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.service-arrow {
  font-size: 1.6rem;
  color: var(--text-light);
  transition: all var(--transition);
  font-weight: 300;
  line-height: 1;
  flex-shrink: 0;
}

.service-card.active .service-arrow {
  transform: rotate(90deg);
  color: var(--gold);
}

.service-card__body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
  padding: 0 32px;
}

.service-card.active .service-card__body {
  max-height: 400px;
  padding: 0 32px 32px;
}

.service-card__body p {
  color: var(--text-muted);
  margin-bottom: 14px;
  font-size: 0.97rem;
  line-height: 1.8;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--gold);
  font-weight: 700;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
  transition: gap var(--transition);
}

.service-link:hover { gap: 12px; }

/* ════════════════════════════════════════════════════════
   TESTIMONIALS
════════════════════════════════════════════════════════ */
.testimonials {
  padding: 120px 0;
  background: var(--navy);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '"';
  position: absolute;
  top: -40px;
  left: 5%;
  font-family: 'Cormorant Garamond', serif;
  font-size: 18rem;
  color: rgba(255,255,255,0.03);
  line-height: 1;
  pointer-events: none;
}

.testimonials .section-eyebrow { color: var(--gold-light); }

.testimonials .section-title { color: #EDE8DF; }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  backdrop-filter: blur(8px);
  transition: all var(--transition);
}

.testimonial-card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(184, 149, 42, 0.4);
  transform: translateY(-4px);
}

.testimonial-stars {
  color: var(--gold-light);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 20px;
}

.testimonial-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: #D8D4CC;
  line-height: 1.75;
  margin-bottom: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
}

.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--navy);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8rem;
  font-weight: 800;
  flex-shrink: 0;
}

.testimonial-author strong {
  display: block;
  color: #EDE8DF;
  font-size: 0.9rem;
}

.testimonial-author small {
  font-size: 0.75rem;
  color: rgba(237, 232, 223, 0.5);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════
   CONTACT
════════════════════════════════════════════════════════ */
.contact {
  padding: 120px 0;
  background: var(--bg-section);
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}

.contact__desc {
  color: var(--text-muted);
  margin-bottom: 48px;
  font-size: 1.02rem;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.contact-detail {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.contact-detail__icon {
  font-size: 1.1rem;
  width: 44px;
  height: 44px;
  background: rgba(184, 149, 42, 0.1);
  border: 1px solid var(--border-gold);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail strong {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail p, .contact-detail a {
  font-size: 0.94rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-detail a:hover { color: var(--gold); }

/* Form */
.contact-form {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-md);
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  background: var(--bg-alt);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: 'Mulish', sans-serif;
  font-size: 0.95rem;
  color: var(--text-main);
  transition: all var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23B8952A' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--text-light);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184, 149, 42, 0.12);
  background: var(--card-bg);
}

.form-group input.error,
.form-group select.error,
.form-group textarea.error {
  border-color: #D9534F;
}

.form-group textarea { resize: vertical; min-height: 130px; }

.form-group--checkbox { margin-top: 4px; }

.checkbox-label {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  cursor: pointer;
  font-size: 0.85rem;
  color: var(--text-muted);
  line-height: 1.5;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 400;
}

.checkbox-label input[type="checkbox"] {
  width: 18px;
  height: 18px;
  min-width: 18px;
  accent-color: var(--gold);
  margin-top: 2px;
  cursor: pointer;
}

.checkbox-label a {
  color: var(--gold);
  text-decoration: underline;
}

.form-error {
  display: block;
  font-size: 0.78rem;
  color: #D9534F;
  margin-top: 6px;
  min-height: 18px;
}

.form-success {
  display: none;
  align-items: center;
  gap: 16px;
  margin-top: 20px;
  padding: 20px 24px;
  background: rgba(40, 167, 69, 0.08);
  border: 1px solid rgba(40, 167, 69, 0.3);
  border-radius: var(--radius);
  color: #28a745;
  font-size: 0.9rem;
}

.form-success.show { display: flex; }

.form-success span {
  font-size: 1.4rem;
  flex-shrink: 0;
}

.form-success strong { display: block; margin-bottom: 2px; }
.form-success p { color: var(--text-muted); font-size: 0.85rem; }

/* ════════════════════════════════════════════════════════
   FOOTER
════════════════════════════════════════════════════════ */
.footer {
  background: var(--navy);
  padding: 80px 0 0;
  color: rgba(237, 232, 223, 0.7);
}

.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer__brand .navbar__logo {
  margin-bottom: 20px;
  display: inline-flex;
}

.footer__brand .logo-main { color: #EDE8DF; }

.footer__tagline {
  font-size: 0.88rem;
  line-height: 1.7;
  max-width: 280px;
  color: rgba(237, 232, 223, 0.55);
}

.footer__links h4,
.footer__legal h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 20px;
}

.footer__links ul,
.footer__legal ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a,
.footer__legal a {
  font-size: 0.88rem;
  color: rgba(237, 232, 223, 0.55);
  transition: color var(--transition);
}

.footer__links a:hover,
.footer__legal a:hover { color: var(--gold-light); }

.footer__disclaimer {
  margin-top: 24px;
  font-size: 0.76rem;
  color: rgba(237, 232, 223, 0.35);
  line-height: 1.6;
}

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  font-size: 0.8rem;
  color: rgba(237, 232, 223, 0.35);
}

/* ════════════════════════════════════════════════════════
   WHATSAPP CARD
════════════════════════════════════════════════════════ */
.whatsapp-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 56px 44px;
  box-shadow: var(--shadow-md);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 20px;
}

.whatsapp-card__icon {
  width: 88px;
  height: 88px;
  background: rgba(37, 211, 102, 0.1);
  border: 1.5px solid rgba(37, 211, 102, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #25D366;
}

.whatsapp-card__title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.2;
}

.whatsapp-card__desc {
  font-size: 1rem;
  color: var(--text-muted);
  max-width: 380px;
  line-height: 1.8;
}

.btn--whatsapp {
  background: #25D366;
  color: #fff;
  font-size: 1rem;
  padding: 16px 40px;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition);
  margin-top: 8px;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
}

.btn--whatsapp:hover {
  background: #1ebe5d;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.45);
  color: #fff;
}

.whatsapp-card__note {
  font-size: 0.78rem;
  color: var(--text-light);
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .hero__inner { gap: 48px; }
  .about__grid { gap: 48px; }
  .contact__grid { gap: 48px; }
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .testimonials__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
  .navbar__links { display: none; }
  .hamburger { display: flex; }
  .mobile-menu { display: flex; }

  .hero__inner {
    grid-template-columns: 1fr;
    gap: 48px;
    text-align: center;
  }

  .hero__eyebrow { justify-content: center; }
  .hero__desc { margin: 0 30px 40px; }
  .hero__cta { justify-content: center; }

  .hero__badge {
    position: static;
    margin-top: 24px;
    display: inline-flex;
  }

  .about__grid { grid-template-columns: 1fr; gap: 48px; }

  .about__accent-box {
    position: static;
    margin-top: 20px;
    max-width: 100%;
  }

  .testimonials__grid { grid-template-columns: 1fr; }

  .contact__grid { grid-template-columns: 1fr; gap: 48px; }

  .contact-form { padding: 28px 24px; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

  .service-card__header { padding: 20px 20px; }
  .service-card.active .service-card__body { padding: 0 20px 24px; }
}

@media (max-width: 480px) {
  .hero__title { font-size: 2.6rem; }
  .stat-row { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat { padding: 14px; }
  .stat__num { font-size: 1.8rem; }
  .hero__cta { flex-direction: column; align-items: center; }
  .btn--lg { width: 100%; justify-content: center; }
  .navbar__actions .btn { display: none; }
}
