@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=Cormorant+Garamond:wght@300;400;500;600&family=Noto+Serif+Bengali:wght@400;600&display=swap');

:root {
  --cream: #FAF6F0;
  --ivory: #F5EDE0;
  --gold: #C9A84C;
  --gold-light: #E8C97A;
  --gold-dark: #8B6914;
  --deep: #1A1208;
  --brown: #3D2B0E;
  --rose: #C4886A;
  --sage: #7A9E7E;
  --text: #2C1A0E;
  --text-light: #6B4C2A;
  --white: #FFFFFF;
  --shadow: rgba(26,18,8,0.12);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', serif;
  background: var(--cream);
  color: var(--text);
  overflow-x: hidden;
}

/* ---- SCROLLBAR ---- */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--ivory); }
::-webkit-scrollbar-thumb { background: var(--gold); border-radius: 3px; }

/* ---- NAVBAR ---- */
.navbar {
  position: fixed; top: 0; width: 100%; z-index: 1000;
  padding: 18px 5%;
  display: flex; align-items: center; justify-content: space-between;
  background: rgba(250,246,240,0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(201,168,76,0.25);
  transition: all 0.4s ease;
}
.navbar.scrolled {
  padding: 12px 5%;
  box-shadow: 0 4px 30px var(--shadow);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none;
}
.nav-logo .logo-icon {
  width: 42px; height: 42px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white;
  box-shadow: 0 4px 15px rgba(201,168,76,0.4);
}
.nav-logo .logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  font-weight: 700;
  letter-spacing: 0.5px;
}
.nav-logo .logo-sub {
  font-size: 0.65rem;
  color: var(--gold-dark);
  letter-spacing: 2px;
  text-transform: uppercase;
  display: block;
  margin-top: -4px;
}
.nav-links {
  display: flex; align-items: center; gap: 36px;
  list-style: none;
}
.nav-links a {
  text-decoration: none;
  color: var(--text-light);
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  position: relative;
  transition: color 0.3s;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.3s ease;
}
.nav-links a:hover { color: var(--gold-dark); }
.nav-links a:hover::after { width: 100%; }
.nav-btn {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600 !important;
  box-shadow: 0 4px 15px rgba(201,168,76,0.35);
  transition: all 0.3s ease !important;
}
.nav-btn::after { display: none !important; }
.nav-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(201,168,76,0.5) !important;
}
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  cursor: pointer; padding: 5px;
}
.nav-toggle span {
  display: block; width: 25px; height: 2px;
  background: var(--brown);
  transition: all 0.3s;
}

/* ---- HERO ---- */
.hero {
  min-height: 100vh;
  position: relative;
  display: flex; align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, #FAF6F0 0%, #F0E6D3 40%, #E8D5BA 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: 
    radial-gradient(circle at 20% 50%, rgba(201,168,76,0.08) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(196,136,106,0.08) 0%, transparent 50%),
    radial-gradient(circle at 60% 80%, rgba(201,168,76,0.06) 0%, transparent 40%);
}
.ornament-left, .ornament-right {
  position: absolute;
  width: 350px; height: 350px;
  border-radius: 50%;
  pointer-events: none;
}
.ornament-left {
  top: -80px; left: -100px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite;
}
.ornament-right {
  bottom: -100px; right: -80px;
  background: radial-gradient(circle, rgba(196,136,106,0.12) 0%, transparent 70%);
  animation: pulse-glow 4s ease-in-out infinite reverse;
}
@keyframes pulse-glow {
  0%, 100% { transform: scale(1); opacity: 0.8; }
  50% { transform: scale(1.1); opacity: 1; }
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1280px; margin: 0 auto;
  padding: 0 5%;
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  padding: 7px 18px; border-radius: 50px;
  font-size: 0.8rem; color: var(--gold-dark);
  letter-spacing: 2px; text-transform: uppercase;
  margin-bottom: 24px;
  opacity: 0; animation: fadeUp 0.8s 0.2s forwards;
}
.hero-badge span { font-size: 14px; }
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  line-height: 1.15;
  color: var(--brown);
  margin-bottom: 20px;
  opacity: 0; animation: fadeUp 0.8s 0.4s forwards;
}
.hero-title .accent { color: var(--gold); font-style: italic; }
.hero-subtitle {
  font-size: 1.1rem;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 40px;
  max-width: 480px;
  opacity: 0; animation: fadeUp 0.8s 0.6s forwards;
}
.hero-actions {
  display: flex; gap: 16px; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s 0.8s forwards;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
  color: white;
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600;
  text-decoration: none;
  box-shadow: 0 8px 30px rgba(201,168,76,0.4);
  transition: all 0.3s ease;
  cursor: pointer; border: none;
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(201,168,76,0.55);
}
.btn-secondary {
  display: inline-flex; align-items: center; gap: 10px;
  background: transparent;
  color: var(--brown);
  padding: 16px 36px; border-radius: 50px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600;
  text-decoration: none;
  border: 1.5px solid rgba(61,43,14,0.25);
  transition: all 0.3s ease;
  cursor: pointer;
}
.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--gold-dark);
  transform: translateY(-2px);
}
.hero-stats {
  display: flex; gap: 40px; margin-top: 50px;
  opacity: 0; animation: fadeUp 0.8s 1s forwards;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--gold-dark);
}
.stat-label { font-size: 0.8rem; color: var(--text-light); letter-spacing: 1px; text-transform: uppercase; }

/* HERO VISUAL */
.hero-visual {
  position: relative;
  opacity: 0; animation: fadeLeft 0.8s 0.5s forwards;
}
.hero-card-main {
  background: white;
  border-radius: 24px;
  padding: 30px;
  box-shadow: 0 20px 80px rgba(26,18,8,0.15);
  position: relative;
  overflow: hidden;
}
.hero-card-main::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rose), var(--gold));
}
.certificate-preview {
  background: var(--cream);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid rgba(201,168,76,0.2);
  text-align: center;
}
.cert-top {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  color: var(--gold-dark);
  margin-bottom: 8px;
  font-style: italic;
}
.cert-title {
  font-family: 'Playfair Display', serif;
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 16px;
}
.cert-divider {
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  margin: 12px 0;
}
.cert-names {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: var(--brown);
  margin: 12px 0;
}
.cert-date { font-size: 0.85rem; color: var(--text-light); margin: 8px 0; }
.cert-seal {
  width: 60px; height: 60px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px;
  margin: 16px auto 0;
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
  animation: rotateSeal 8s linear infinite;
}
@keyframes rotateSeal {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
.float-card {
  position: absolute;
  background: white;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 10px 40px rgba(26,18,8,0.12);
  display: flex; align-items: center; gap: 12px;
  animation: floatCard 3s ease-in-out infinite;
}
.float-card-1 { top: -20px; right: -30px; animation-delay: 0s; }
.float-card-2 { bottom: 30px; left: -40px; animation-delay: 1.5s; }
@keyframes floatCard {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.float-icon {
  width: 38px; height: 38px;
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
}
.float-icon.green { background: rgba(122,158,126,0.15); }
.float-icon.gold { background: rgba(201,168,76,0.15); }
.float-card-text .label { font-size: 0.7rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 1px; }
.float-card-text .value { font-size: 0.95rem; font-weight: 600; color: var(--brown); }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes fadeLeft {
  from { opacity: 0; transform: translateX(30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* ---- SECTION STYLES ---- */
.section { padding: 100px 5%; }
.section-header { text-align: center; margin-bottom: 70px; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase;
  color: var(--gold-dark);
  background: rgba(201,168,76,0.1);
  padding: 6px 20px; border-radius: 50px;
  margin-bottom: 16px;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  color: var(--brown);
  line-height: 1.2;
  margin-bottom: 16px;
}
.section-title .italic { font-style: italic; color: var(--gold); }
.section-desc { font-size: 1.05rem; color: var(--text-light); max-width: 580px; margin: 0 auto; line-height: 1.8; }

/* ---- SEARCH SECTION ---- */
.search-section {
  background: linear-gradient(135deg, var(--brown) 0%, #5C3D15 100%);
  padding: 80px 5%;
  position: relative; overflow: hidden;
}
.search-section::before {
  content: '';
  position: absolute; inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23C9A84C' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.search-inner {
  position: relative; max-width: 900px; margin: 0 auto; text-align: center;
}
.search-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem; color: white; margin-bottom: 12px;
}
.search-sub { color: rgba(255,255,255,0.65); margin-bottom: 36px; font-size: 1rem; }
.search-box {
  display: flex; gap: 0;
  background: white;
  border-radius: 60px;
  padding: 8px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
  max-width: 680px; margin: 0 auto;
}
.search-box input {
  flex: 1; border: none; outline: none;
  padding: 14px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--text);
  background: transparent;
}
.search-box select {
  border: none; outline: none;
  padding: 14px 16px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem; color: var(--text-light);
  background: transparent;
  border-left: 1px solid rgba(0,0,0,0.08);
  cursor: pointer;
}
.search-box button {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border: none; border-radius: 50px;
  padding: 14px 32px;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; font-weight: 600;
  transition: all 0.3s;
  display: flex; align-items: center; gap: 8px;
}
.search-box button:hover { transform: scale(1.03); }

/* ---- STEPS SECTION ---- */
.steps-section { background: var(--ivory); }
.steps-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 30px; max-width: 1200px; margin: 0 auto;
}
.step-card {
  text-align: center;
  padding: 40px 24px;
  background: white;
  border-radius: 24px;
  border: 1px solid rgba(201,168,76,0.15);
  position: relative;
  transition: all 0.4s ease;
  cursor: default;
}
.step-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 60px rgba(26,18,8,0.1);
  border-color: rgba(201,168,76,0.4);
}
.step-number {
  position: absolute; top: -16px; left: 50%; transform: translateX(-50%);
  width: 32px; height: 32px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.8rem; font-weight: 700;
}
.step-icon {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, rgba(201,168,76,0.12), rgba(196,136,106,0.12));
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  margin: 0 auto 20px;
}
.step-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem; color: var(--brown);
  margin-bottom: 10px;
}
.step-desc { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }
.step-connector {
  position: absolute; top: 50%; right: -15px;
  width: 30px; height: 2px;
  background: linear-gradient(90deg, var(--gold-light), transparent);
}

/* ---- CERTIFICATE SECTION ---- */
.cert-section { background: var(--cream); }
.cert-showcase {
  display: grid; grid-template-columns: 1fr 1fr;
  align-items: center; gap: 80px;
  max-width: 1200px; margin: 0 auto;
}
.cert-features { display: flex; flex-direction: column; gap: 24px; }
.cert-feature {
  display: flex; gap: 18px;
  padding: 20px;
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.3s;
}
.cert-feature:hover {
  border-color: rgba(201,168,76,0.35);
  box-shadow: 0 8px 30px rgba(26,18,8,0.08);
}
.cert-feature-icon {
  width: 48px; height: 48px; flex-shrink: 0;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 14px;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px; color: white;
}
.cert-feature-text h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--brown); margin-bottom: 4px;
}
.cert-feature-text p { font-size: 0.88rem; color: var(--text-light); line-height: 1.6; }
.cert-big-preview {
  background: white;
  border-radius: 24px;
  padding: 40px;
  box-shadow: 0 30px 100px rgba(26,18,8,0.15);
  text-align: center;
  position: relative;
  border: 1px solid rgba(201,168,76,0.2);
}
.cert-big-preview::before {
  content: '';
  position: absolute; inset: 12px;
  border: 1px solid rgba(201,168,76,0.2);
  border-radius: 16px;
  pointer-events: none;
}
.cert-header-text {
  font-family: 'Playfair Display', serif;
  font-size: 0.7rem; letter-spacing: 4px; text-transform: uppercase;
  color: var(--gold-dark); margin-bottom: 8px;
}
.cert-big-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; color: var(--brown); font-style: italic;
  margin-bottom: 4px;
}
.cert-subtitle { font-size: 0.75rem; letter-spacing: 2px; text-transform: uppercase; color: var(--text-light); }
.cert-ornament {
  font-size: 2.5rem; margin: 20px 0;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.cert-this-certifies { font-size: 0.85rem; color: var(--text-light); font-style: italic; margin-bottom: 8px; }
.cert-parties {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--brown); margin-bottom: 16px;
}
.cert-meta { font-size: 0.85rem; color: var(--text-light); line-height: 1.8; }
.cert-footer {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-top: 30px; padding-top: 20px;
  border-top: 1px solid rgba(201,168,76,0.2);
}
.cert-sign { text-align: center; }
.cert-sign .sign-name { font-family: 'Playfair Display', serif; font-size: 0.9rem; color: var(--brown); font-style: italic; }
.cert-sign .sign-role { font-size: 0.7rem; letter-spacing: 2px; color: var(--text-light); text-transform: uppercase; }
.cert-big-seal {
  width: 70px; height: 70px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 28px;
  box-shadow: 0 8px 25px rgba(201,168,76,0.4);
}

/* ---- OFFICES SECTION ---- */
.offices-section { background: var(--ivory); }
.offices-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.office-card {
  background: white;
  border-radius: 20px;
  overflow: hidden;
  border: 1px solid rgba(201,168,76,0.12);
  transition: all 0.4s;
}
.office-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 20px 60px rgba(26,18,8,0.1);
}
.office-map-thumb {
  height: 150px;
  background: linear-gradient(135deg, #E8D5BA, #D4C4A8);
  display: flex; align-items: center; justify-content: center;
  font-size: 3rem; position: relative; overflow: hidden;
}
.office-map-thumb::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, transparent, rgba(26,18,8,0.1));
}
.office-body { padding: 24px; }
.office-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem; color: var(--brown); margin-bottom: 6px;
}
.office-location { font-size: 0.85rem; color: var(--text-light); margin-bottom: 14px; display: flex; align-items: center; gap: 6px; }
.office-info { display: flex; flex-direction: column; gap: 6px; margin-bottom: 18px; }
.office-info span { font-size: 0.83rem; color: var(--text-light); display: flex; align-items: center; gap: 8px; }
.office-badge {
  display: inline-block;
  padding: 4px 12px; border-radius: 50px;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 1px; text-transform: uppercase;
}
.badge-open { background: rgba(122,158,126,0.12); color: var(--sage); }
.badge-closed { background: rgba(196,136,106,0.12); color: var(--rose); }

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1200px; margin: 0 auto;
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 32px;
  border: 1px solid rgba(201,168,76,0.12);
  position: relative;
  transition: all 0.3s;
}
.testimonial-card:hover {
  box-shadow: 0 16px 50px rgba(26,18,8,0.09);
  border-color: rgba(201,168,76,0.3);
}
.quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 4rem; line-height: 1;
  color: var(--gold-light);
  position: absolute; top: 16px; right: 24px;
}
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 24px; }
.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--rose));
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; color: white;
  font-family: 'Playfair Display', serif;
}
.author-name { font-family: 'Playfair Display', serif; font-size: 0.95rem; color: var(--brown); }
.author-meta { font-size: 0.78rem; color: var(--text-light); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 14px; }

/* ---- FAQ ---- */
.faq-section { background: var(--ivory); }
.faq-container { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item {
  background: white;
  border-radius: 16px;
  border: 1px solid rgba(201,168,76,0.12);
  overflow: hidden;
  transition: all 0.3s;
}
.faq-item.active { border-color: rgba(201,168,76,0.4); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer;
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: var(--brown);
  transition: background 0.2s;
}
.faq-question:hover { background: rgba(201,168,76,0.04); }
.faq-icon {
  width: 28px; height: 28px;
  border-radius: 50%;
  background: rgba(201,168,76,0.1);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-dark);
  font-size: 18px;
  transition: all 0.3s;
  flex-shrink: 0;
}
.faq-item.active .faq-icon { background: var(--gold); color: white; transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s;
  padding: 0 24px;
  font-size: 0.92rem; color: var(--text-light); line-height: 1.8;
}
.faq-item.active .faq-answer { max-height: 200px; padding: 0 24px 20px; }

/* ---- FOOTER ---- */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.7);
  padding: 70px 5% 30px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 50px; margin-bottom: 50px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: white; margin-bottom: 14px;
}
.footer-desc { font-size: 0.88rem; line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 12px; }
.footer-social {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  font-size: 16px;
  cursor: pointer; transition: all 0.3s;
  text-decoration: none; color: rgba(255,255,255,0.7);
}
.footer-social:hover { background: var(--gold); color: white; }
.footer-col h4 {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; color: white; margin-bottom: 20px;
}
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  text-decoration: none; color: rgba(255,255,255,0.6);
  font-size: 0.88rem; transition: color 0.3s;
}
.footer-col ul li a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold-light); text-decoration: none; }

/* ---- MODAL ---- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(26,18,8,0.6);
  backdrop-filter: blur(8px);
  display: flex; align-items: center; justify-content: center;
  opacity: 0; pointer-events: none; transition: opacity 0.3s;
}
.modal-overlay.active { opacity: 1; pointer-events: all; }
.modal {
  background: white;
  border-radius: 24px;
  padding: 40px;
  max-width: 520px; width: 90%;
  position: relative;
  transform: translateY(20px);
  transition: transform 0.3s;
  max-height: 90vh; overflow-y: auto;
}
.modal-overlay.active .modal { transform: translateY(0); }
.modal-close {
  position: absolute; top: 20px; right: 20px;
  width: 32px; height: 32px;
  border: none; background: var(--ivory);
  border-radius: 50%; cursor: pointer;
  font-size: 16px; color: var(--text-light);
  display: flex; align-items: center; justify-content: center;
  transition: all 0.2s;
}
.modal-close:hover { background: var(--gold); color: white; }
.modal-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--brown); margin-bottom: 6px;
}
.modal-subtitle { font-size: 0.88rem; color: var(--text-light); margin-bottom: 28px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; color: var(--text-light); margin-bottom: 6px; letter-spacing: 0.5px; }
.form-group input, .form-group select, .form-group textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid rgba(61,43,14,0.15);
  border-radius: 10px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.3s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  border-color: var(--gold);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.tabs { display: flex; gap: 0; margin-bottom: 28px; border-bottom: 2px solid var(--ivory); }
.tab-btn {
  padding: 10px 24px; border: none; background: none; cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.95rem; color: var(--text-light);
  position: relative; transition: color 0.3s;
}
.tab-btn.active { color: var(--gold-dark); }
.tab-btn.active::after {
  content: '';
  position: absolute; bottom: -2px; left: 0; right: 0; height: 2px;
  background: var(--gold);
}
.tab-content { display: none; }
.tab-content.active { display: block; }

/* ---- SCROLL REVEAL ---- */
.reveal {
  opacity: 0; transform: translateY(30px);
  transition: all 0.7s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1024px) {
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: 2.8rem; }
}
@media (max-width: 768px) {
  .nav-links { display: none; position: fixed; top: 70px; left: 0; right: 0; background: white; flex-direction: column; padding: 24px; gap: 20px; box-shadow: 0 20px 40px var(--shadow); }
  .nav-links.open { display: flex; }
  .nav-toggle { display: flex; }
  .hero-content { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { display: none; }
  .hero-title { font-size: 2.4rem; }
  .steps-grid { grid-template-columns: 1fr 1fr; }
  .cert-showcase { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 30px; }
  .section-title { font-size: 2rem; }
}
@media (max-width: 480px) {
  .steps-grid { grid-template-columns: 1fr; }
  .offices-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .hero-title { font-size: 2rem; }
  .hero-stats { gap: 20px; }
  .search-box { flex-direction: column; border-radius: 16px; }
  .search-box select { border-left: none; border-top: 1px solid rgba(0,0,0,0.08); }
  .search-box button { border-radius: 10px; justify-content: center; }
}
