/* ==========================================
   MEET & GREET DHAKA — MAIN STYLESHEET
   ========================================== */

/* === FONTS & RESET === */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

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

:root {
  --primary:       #000a1e;
  --primary-dark:  #000513;
  --primary-mid:   #002147;
  --gold:          #d4a847;
  --gold-light:    #ffdea5;
  --gold-dark:     #a07c2e;
  --white:         #ffffff;
  --off-white:     #f7f9fb;
  --light-gray:    #f2f4f6;
  --mid-gray:      #eceef0;
  --text-main:     #191c1e;
  --text-muted:    #44474e;
  --text-light:    #74777f;
  --border:        #c4c6cf;
  --shadow-sm: 0 2px 8px rgba(0,33,71,0.06);
  --shadow-md: 0 4px 20px rgba(0,33,71,0.1);
  --shadow-lg: 0 12px 40px rgba(0,33,71,0.15);
  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 999px;
  --transition: 0.25s ease;
  --font-head: 'Montserrat', sans-serif;
  --font-body: 'Inter', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background: var(--off-white);
  overflow-x: hidden;
  line-height: 1.6;
}

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
}

.material-symbols-outlined {
  font-variation-settings: 'FILL' 0, 'wght' 400, 'GRAD' 0, 'opsz' 24;
}

/* ==========================================
   BUTTONS
   ========================================== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.04em;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-lg { padding: 16px 36px; font-size: 15px; }
.btn-full { width: 100%; justify-content: center; }

.btn-gold {
  background: var(--gold);
  color: var(--primary);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-dark {
  background: var(--primary);
  color: var(--white);
  border-color: var(--primary);
}
.btn-dark:hover { background: var(--primary-mid); border-color: var(--primary-mid); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-outline-dark {
  background: transparent;
  color: var(--primary);
  border-color: var(--primary);
}
.btn-outline-dark:hover { background: var(--primary); color: var(--white); transform: translateY(-2px); }

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border-color: var(--gold);
}
.btn-outline-light:hover { background: var(--gold); color: var(--primary); transform: translateY(-2px); }

.btn-text {
  background: transparent;
  color: var(--primary);
  border-color: transparent;
  font-size: 15px;
  padding: 8px 0;
}
.btn-text:hover { color: var(--gold-dark); }

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: var(--primary);
  box-shadow: 0 2px 20px rgba(0,0,0,0.3);
  transition: all var(--transition);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 30px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 18px;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-icon { font-size: 24px; color: var(--gold); }
.logo-accent { color: var(--gold); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-link {
  color: rgba(255,255,255,0.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: color var(--transition);
  position: relative;
  padding-bottom: 4px;
}

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

.nav-link:hover, .nav-link.active {
  color: var(--gold);
}

.nav-link.active::after,
.nav-link:hover::after { width: 100%; }

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

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==========================================
   HERO SECTION
   ========================================== */
.hero {
  position: relative;
  min-height: 90vh;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to   { transform: scale(1.05); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,30,0.85) 0%, rgba(0,10,30,0.6) 60%, rgba(0,10,30,0.4) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 80px 30px;
}

.hero-badge {
  display: inline-block;
  background: rgba(212,168,71,0.2);
  border: 1px solid var(--gold);
  color: var(--gold);
  padding: 6px 20px;
  border-radius: var(--radius-full);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 24px;
}

.hero-title {
  font-family: var(--font-head);
  font-size: clamp(36px, 6vw, 68px);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  margin-bottom: 20px;
  max-width: 700px;
}

.hero-subtitle {
  font-size: 18px;
  line-height: 1.7;
  opacity: 0.9;
  max-width: 560px;
  margin-bottom: 36px;
}

.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 56px;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}

.hero-stat { text-align: center; }
.stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(black);
  display: block;
  line-height: 1;
}

.stat-label {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
  margin-top: 4px;
}
.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.2);
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--gold);
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ==========================================
   RIBBON
   ========================================== */
.ribbon {
  background: var(--primary-mid);
  padding: 28px 0;
  border-bottom: 2px solid var(--gold);
}

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

.ribbon-item {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--white);
}

.ribbon-item + .ribbon-item { border-left: 1px solid rgba(255,255,255,0.1); padding-left: 24px; }

.ribbon-icon { font-size: 36px; color: var(--gold); flex-shrink: 0; }
.ribbon-title { font-weight: 700; font-size: 15px; margin-bottom: 2px; }
.ribbon-sub { font-size: 13px; opacity: 0.7; }

/* ==========================================
   SECTIONS
   ========================================== */
.section { padding:50px; }
.section-light { background: var(--off-white); }
.section-dark-alt { background: var(--mid-gray); }

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

.section-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 16px;
  line-height: 1.3;
}

.section-sub {
  color: var(--text-muted);
  max-width: 540px;
  margin: 0 auto;
  font-size: 17px;
}

/* ==========================================
   PRICING
   ========================================== */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  align-items: stretch;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px 32px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
  position: relative;
}

.pricing-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pricing-featured {
  background: linear-gradient(135deg, var(--primary), var(--primary-mid));
  color: var(--white);
  border-color: var(--gold);
  transform: scale(1.03);
  box-shadow: var(--shadow-lg);
  z-index: 1;
}

.pricing-featured:hover { transform: scale(1.03) translateY(-4px); }

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--gold);
  color: var(--primary);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 16px;
  border-radius: var(--radius-full);
}

.pricing-header h3 {
  font-family: var(--font-head);
  font-size: 22px;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 12px;
  color: inherit;
}

.pricing-featured .pricing-header h3 { color: var(--white); }

.pricing-price {
  font-family: var(--font-head);
  font-size: 34px;
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 8px;
}

.pricing-featured .pricing-price { color: var(--gold); }

.pricing-price span {
  font-size: 15px;
  font-weight: 400;
  color: var(--text-muted);
  margin-left: 4px;
}

.pricing-featured .pricing-price span { color: rgba(255,255,255,0.6); }

.pricing-header p { font-size: 14px; color: var(--text-muted); }
.pricing-featured .pricing-header p { color: rgba(255,255,255,0.75); }

.pricing-features { display: flex; flex-direction: column; gap: 12px; flex: 1; }
.pricing-features li { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: var(--text-main); }
.pricing-featured .pricing-features li { color: rgba(255,255,255,0.9); }

.check-icon { color: var(--gold-dark); font-size: 18px; flex-shrink: 0; margin-top: 1px; }
.pricing-featured .check-icon { color: var(--gold); }

.pricing-cta { text-align: center; margin-top: 40px; }

/* ==========================================
   Traveling with Family
   ========================================== */
.family-banner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
}

.family-banner-img-wrap {
  position: relative;
  min-height: 280px;
}
.family-banner-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-banner-content {
  padding: 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ==========================================
   SERVICES GRID
   ========================================== */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gold);
}

.service-icon-wrap {
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, var(--primary-mid), var(--primary));
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 4px;
  transition: transform var(--transition);
}

.service-card:hover .service-icon-wrap { transform: rotate(-5deg) scale(1.05); }

.service-icon-wrap .material-symbols-outlined { color: var(--gold); font-size: 30px; }

.service-card h3 {
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
}

.service-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; flex: 1; }

.service-link {
  color: var(--gold-dark);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.05em;
  margin-top: 4px;
}

/* ==========================================
   HOW IT WORKS
   ========================================== */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  position: relative;
  overflow: hidden;
  transition: all 0.3s ease;
}

.step-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: -linear-gradient(90deg, var(--primary), var(--gold));
}

.step-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.step-num {
  position: absolute;
  top: 16px;
  right: 20px;
  font-family: var(--font-head);
  font-size: 48px;
  font-weight: 800;
  color: var(--primary);
  opacity: 0.06;
  line-height: 1;
}

.step-icon {
  font-size: 48px;
  color: var(--primary-mid);
  display: block;
  margin-bottom: 16px;
}

.step-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 10px;
}

.step-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

/* ==========================================
   VISA SECTION
   ========================================== */
.visa-section {
  padding: 100px 0;
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-mid) 100%);
  color: var(--white);
}

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

.visa-content .section-label { color: var(--gold); }

.visa-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  margin: 12px 0 20px;
  line-height: 1.2;
}

.visa-content p { font-size: 16px; line-height: 1.8; opacity: 0.9; margin-bottom: 28px; }

.visa-list { display: flex; flex-direction: column; gap: 14px; margin-bottom: 36px; }
.visa-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 15px;
}
.visa-list li .material-symbols-outlined { color: var(--gold); }

.visa-image {
  position: relative;
}
.visa-image::before {
  content: '';
  position: absolute;
  inset: -16px;
  border: 2px solid rgba(212,168,71,0.3);
  border-radius: var(--radius-lg);
  transform: rotate(3deg);
}
.visa-image img {
  border-radius: var(--radius-lg);
  width: 100%;
  height: 450px;
  object-fit: cover;
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}

/* ==========================================
   TESTIMONIALS
   ========================================== */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all 0.3s ease;
  border-bottom: 3px solid transparent;
}

.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-bottom-color: var(--gold);
}

.stars { color: var(--gold); font-size: 18px; letter-spacing: 2px; }

.testimonial-text {
  font-size: 15px;
  line-height: 1.7;
  color: var(--text-muted);
  font-style: italic;
  flex: 1;
}

.testimonial-author { display: flex; align-items: center; gap: 14px; }
.author-avatar {
  width: 48px;
  height: 48px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
}

.author-name { font-weight: 700; color: var(--primary); font-size: 14px; }
.author-role { font-size: 12px; color: var(--text-light); }

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  padding: 100px 0;
  background: var(--primary);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,168,71,0.12) 0%, transparent 70%);
  border-radius: 50%;
}

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

.cta-content h2 {
  font-family: var(--font-head);
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 800;
  line-height: 1.15;
  margin-bottom: 16px;
}

.cta-content > p {
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.8;
  margin-bottom: 40px;
}

.cta-contacts { display: flex; flex-direction: column; gap: 20px; }
.cta-contact-item { display: flex; align-items: flex-start; gap: 16px; }
.cta-contact-icon {
  width: 44px;
  height: 44px;
  background: rgba(212,168,71,0.15);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  flex-shrink: 0;
  transition: background var(--transition);
}
.cta-contact-item:hover .cta-contact-icon { background: var(--gold); color: var(--primary); }
.cta-contact-label { font-size: 11px; letter-spacing: 0.1em; text-transform: uppercase; opacity: 0.5; margin-bottom: 3px; }
.cta-contact-val { font-size: 16px; font-weight: 700; color: var(--white); }
a.cta-contact-val:hover { color: var(--gold); }

.cta-form-wrap {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.cta-form-wrap h3 {
  font-family: var(--font-head);
  font-size: 24px;
  color: var(--primary);
  font-weight: 700;
  margin-bottom: 28px;
}

/* ==========================================
   FORMS
   ========================================== */
.inquiry-form, .contact-form { display: flex; flex-direction: column; gap: 18px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 16px;
  background: var(--off-white);
  border: 1.5px solid var(--border);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--text-main);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--gold-dark);
  box-shadow: 0 0 0 3px rgba(212,168,71,0.15);
}

.form-group textarea { resize: vertical; }

/* ==========================================
   FOOTER
   ========================================== */
.footer {
  background: var(--primary-dark);
  color: rgba(255,255,255,0.85);
  padding: 80px 0 32px;
  border-top: 2px solid var(--gold);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
  margin-bottom: 60px;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-size: 18px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}

.logo-icon-footer { font-size: 22px; color: var(--gold); }

.footer-brand p {
  font-size: 14px;
  line-height: 1.7;
  opacity: 0.7;
  margin-bottom: 24px;
}

.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25D366;
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 14px;
  margin-bottom: 20px;
  transition: all var(--transition);
}
.whatsapp-btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(37,211,102,0.4); }

.footer-contacts { display: flex; flex-direction: column; gap: 8px; }
.footer-contacts p {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  opacity: 0.8;
}
.footer-contacts .material-symbols-outlined { font-size: 16px; color: var(--gold); }

.footer-col h4 {
  font-family: var(--font-head);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold); }

.footer-col > p {
  font-size: 13px;
  opacity: 0.7;
  line-height: 1.7;
  margin-bottom: 16px;
}

.map-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 600;
  margin-bottom: 20px;
  transition: opacity var(--transition);
}
.map-link:hover { opacity: 0.8; }
.map-link .material-symbols-outlined { font-size: 18px; }

.footer-legal-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 8px;
}
.footer-legal-links a { font-size: 12px; color: rgba(255,255,255,0.5); transition: color var(--transition); }
.footer-legal-links a:hover { color: var(--gold); }

.footer-bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ==========================================
   WHATSAPP FAB
   ========================================== */
.whatsapp-fab {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 32px rgba(37,211,102,0.5);
  z-index: 9999;
  transition: all 0.3s ease;
  animation: fabPulse 3s infinite;
}
.whatsapp-fab:hover { transform: scale(1.15); box-shadow: 0 12px 40px rgba(37,211,102,0.6); }

@keyframes fabPulse {
  0%, 100% { box-shadow: 0 8px 32px rgba(37,211,102,0.5); }
  50%       { box-shadow: 0 8px 48px rgba(37,211,102,0.7); }
}

.fab-tooltip {
  position: absolute;
  right: calc(100% + 16px);
  top: 50%;
  transform: translateY(-50%);
  background: var(--white);
  color: var(--primary);
  padding: 8px 16px;
  border-radius: var(--radius-sm);
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  box-shadow: var(--shadow-md);
  opacity: 0;
  transition: opacity var(--transition);
  pointer-events: none;
}
.whatsapp-fab:hover .fab-tooltip { opacity: 1; }

/* ==========================================
   PAGE HERO (internal pages)
   ========================================== */
.page-hero {
  position: relative;
  height: 60vh;
  min-height: 420px;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img { width: 100%; height: 100%; object-fit: cover; }
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,10,30,0.88) 0%, rgba(0,10,30,0.55) 100%);
}

.page-hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 0 30px;
  max-width: 1200px;
  margin: 0 auto;
  width: 100%;
}

.page-hero-content .section-label { color: var(--gold); }

.page-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(32px, 5vw, 60px);
  font-weight: 800;
  line-height: 1.1;
  margin: 12px 0 16px;
}

.page-hero-content p {
  font-size: 18px;
  opacity: 0.9;
  max-width: 560px;
}

/* ==========================================
   CONTACT PAGE
   ========================================== */
.contact-layout {
  display: grid;
  grid-template-columns: 5fr 7fr;
  gap: 60px;
  align-items: start;
}

.contact-info-cards { display: flex; flex-direction: column; gap: 20px; }

.contact-card {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-card h3 {
  font-family: var(--font-head);
  font-size: 16px;
  color: var(--primary);
  margin-bottom: 4px;
}

.contact-card a, .contact-card p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.5;
}
.contact-card a { color: var(--gold-dark); font-weight: 600; }
.contact-card a:hover { text-decoration: underline; }
.contact-card small { font-size: 12px; color: var(--text-light); }

.contact-form-wrap {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: var(--shadow-md);
}

.contact-form-wrap h2 {
  font-family: var(--font-head);
  font-size: 28px;
  color: var(--primary);
  margin-bottom: 32px;
}

/* ==========================================
   ABOUT PAGE
   ========================================== */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.about-story-content .section-label { text-align: left; }
.about-story-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  font-weight: 700;
  color: var(--primary);
  margin: 12px 0 20px;
  line-height: 1.3;
}
.about-story-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 16px; }

.about-stats { display: flex; gap: 40px; margin-top: 32px; }
.about-stat-num {
  font-family: var(--font-head);
  font-size: 36px;
  font-weight: 800;
  color: var(--primary);
}
.about-stat-label { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-muted); }

.about-image {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image img { width: 100%; height: 500px; object-fit: cover; }

.about-quote {
  position: absolute;
  bottom: -24px;
  left: -24px;
  background: var(--primary);
  color: var(--white);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  max-width: 280px;
}
.about-quote p { font-family: var(--font-head); font-size: 15px; font-style: italic; line-height: 1.5; }

.mission-vision-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.mv-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 40px;
  transition: all 0.3s ease;
  box-shadow: var(--shadow-sm);
}
.mv-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.mv-card .material-symbols-outlined { font-size: 48px; color: var(--gold-dark); margin-bottom: 16px; display: block; }
.mv-card h3 { font-family: var(--font-head); font-size: 24px; color: var(--primary); margin-bottom: 12px; }
.mv-card p { color: var(--text-muted); line-height: 1.7; }

.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.why-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 36px 24px;
  text-align: center;
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.why-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.why-icon {
  width: 64px; height: 64px;
  background: var(--mid-gray);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 16px;
  color: var(--primary);
}
.why-card h4 { font-family: var(--font-head); font-size: 17px; color: var(--primary); margin-bottom: 10px; }
.why-card p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }

.values-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 72px; align-items: center; }
.values-list { display: flex; flex-direction: column; gap: 24px; }
.value-item { display: flex; align-items: flex-start; gap: 16px; }
.value-item .material-symbols-outlined { color: var(--gold-dark); font-size: 28px; flex-shrink: 0; margin-top: 2px; }
.value-item h5 { font-family: var(--font-head); font-size: 18px; color: var(--primary); margin-bottom: 6px; }
.value-item p { color: var(--text-muted); font-size: 14px; line-height: 1.6; }
.values-img img { width: 100%; height: 420px; object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }

/* ==========================================
   SERVICES PAGE
   ========================================== */
.service-detail {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
  padding: 72px 0;
  border-bottom: 1px solid var(--border);
}
.service-detail.reverse { direction: rtl; }
.service-detail.reverse > * { direction: ltr; }

.service-detail-content .section-label { text-align: left; }
.service-detail-content h2 {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 36px);
  color: var(--primary);
  margin: 12px 0 16px;
  line-height: 1.3;
}
.service-detail-content p { color: var(--text-muted); font-size: 16px; line-height: 1.8; margin-bottom: 24px; }
.service-detail-list { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.service-detail-list li { display: flex; align-items: center; gap: 10px; font-size: 15px; color: var(--text-main); }
.service-detail-list li .material-symbols-outlined { color: var(--gold-dark); }

.service-detail-img { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.service-detail-img img { width: 100%; height: 400px; object-fit: cover; }

/* ==========================================
   PRICING PAGE
   ========================================== */
.comparison-table { width: 100%; border-collapse: collapse; background: var(--white); border-radius: var(--radius-md); overflow: hidden; box-shadow: var(--shadow-md); }
.comparison-table thead tr { background: var(--primary); color: var(--white); }
.comparison-table th { padding: 20px 24px; font-family: var(--font-head); font-size: 16px; font-weight: 600; text-align: center; }
.comparison-table th:first-child { text-align: left; }
.comparison-table td { padding: 16px 24px; text-align: center; border-bottom: 1px solid var(--mid-gray); font-size: 14px; }
.comparison-table td:first-child { text-align: left; font-weight: 600; color: var(--primary); }
.comparison-table tr:hover td { background: var(--light-gray); }
.check-yes { color: var(--gold-dark); font-size: 22px; }
.check-no { color: var(--border); font-size: 22px; }
.gold-col { background: rgba(212,168,71,0.05); }

/* ==========================================
   FAQ PAGE
   ========================================== */
.faq-layout { display: grid; grid-template-columns: 3fr 9fr; gap: 60px; }
.faq-sidebar { position: sticky; top: 90px; }
.faq-sidebar h4 { font-size: 11px; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); margin-bottom: 16px; }
.faq-nav-btn {
  display: block;
  width: 100%;
  text-align: left;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  color: var(--text-muted);
  background: none;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  margin-bottom: 4px;
}
.faq-nav-btn:hover, .faq-nav-btn.active { background: var(--primary); color: var(--white); }

.faq-section-group { margin-bottom: 60px; scroll-margin-top: 90px; }
.faq-section-header { display: flex; align-items: center; gap: 16px; margin-bottom: 24px; }
.faq-section-header .material-symbols-outlined { font-size: 36px; color: var(--gold-dark); }
.faq-section-header h2 { font-family: var(--font-head); font-size: 26px; color: var(--primary); }

.accordion-item {
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}
.accordion-btn {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  gap: 16px;
  transition: color var(--transition);
}
.accordion-btn:hover .accordion-q { color: var(--gold-dark); }
.accordion-q {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 600;
  color: var(--primary);
  transition: color var(--transition);
}
.accordion-icon {
  font-size: 20px;
  color: var(--text-muted);
  transition: transform 0.3s ease;
  flex-shrink: 0;
}
.accordion-item.open .accordion-icon { transform: rotate(180deg); }
.accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
}
.accordion-item.open .accordion-content { max-height: 500px; padding-bottom: 20px; }
.accordion-content p { color: var(--text-muted); font-size: 15px; line-height: 1.7; padding-right: 40px; }

/* ==========================================
   STORIES PAGE
   ========================================== */
.stories-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.story-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all 0.3s ease;
}
.story-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.story-card-img { height: 220px; overflow: hidden; }
.story-card-img img { width: 100%; height: 100%; object-fit: cover; object-position: 50% 20%; transition: transform 0.4s ease; }
.story-card:hover .story-card-img img { transform: scale(1.06); }
.story-card-body { padding: 24px; }
.story-stars { color: var(--gold); font-size: 16px; margin-bottom: 10px; }
.story-text { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-style: italic; margin-bottom: 16px; }
.story-author { display: flex; align-items: center; gap: 12px; }
.story-avatar {
  width: 40px; height: 40px;
  background: var(--primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white); font-weight: 800; font-size: 12px;
}
.story-name { font-weight: 700; font-size: 14px; color: var(--primary); }
.story-role { font-size: 12px; color: var(--text-light); }

/* ==========================================
   PRIVACY / TERMS / REFUND PAGES
   ========================================== */
.policy-content {
  max-width: 860px;
  margin: 0 auto;
}
.policy-content h2 {
  font-family: var(--font-head);
  font-size: 26px;
  color: var(--primary);
  margin: 40px 0 16px;
}
.policy-content h2:first-child { margin-top: 0; }
.policy-content p { color: var(--text-muted); font-size: 15px; line-height: 1.8; margin-bottom: 16px; }
.policy-content ul { padding-left: 20px; margin-bottom: 16px; }
.policy-content ul li { color: var(--text-muted); font-size: 15px; line-height: 1.8; list-style: disc; margin-bottom: 6px; }

/* ==========================================
   TEXT UTILITIES
   ========================================== */
.text-center { text-align: center; }
.mt-4 { margin-top: 16px; }
.mt-6 { margin-top: 24px; }
.mt-8 { margin-top: 32px; }
.mb-6 { margin-bottom: 24px; }

/* ==========================================
   RESPONSIVE — TABLET
   ========================================== */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .visa-grid { grid-template-columns: 1fr; gap: 48px; }
  .visa-image { max-width: 560px; margin: 0 auto; }
  .cta-grid { grid-template-columns: 1fr; gap: 48px; }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .values-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail { grid-template-columns: 1fr; gap: 40px; }
  .service-detail.reverse { direction: ltr; }
  .faq-layout { grid-template-columns: 1fr; }
  .faq-sidebar { position: static; }
  .stories-grid { grid-template-columns: repeat(2, 1fr); }
  .ribbon-grid { grid-template-columns: 1fr; }
  .ribbon-item + .ribbon-item { border-left: none; border-top: 1px solid rgba(255,255,255,0.1); padding-left: 0; padding-top: 20px; }
}

/* ==========================================
   RESPONSIVE — MOBILE
   ========================================== */
@media (max-width: 768px) {
  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0; right: 0;
    background: var(--primary-dark);
    flex-direction: column;
    padding: 24px 20px;
    gap: 12px;
    border-top: 1px solid rgba(255,255,255,0.1);
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
  }
  .nav-links.open { display: flex; }
  .nav-link {
    padding: 14px 20px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
    text-align: center;
    font-size: 14px;
    letter-spacing: 0.08em;
    width: 100%;
    transition: all var(--transition);
  }
  .nav-link:hover, .nav-link.active {
    background: var(--gold);
    color: var(--primary) !important;
    border-color: var(--gold);
  }
  .nav-link::after { display: none; }
  .hamburger { display: flex; }
  .navbar .btn { display: none; }

  .hero-title { font-size: 32px; }
  .hero-btns { flex-direction: column; width: 100%; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .hero-stats { gap: 20px; }
  .stat-divider { display: none; }

  .section { padding: 60px 0; }

  .services-grid { grid-template-columns: 1fr; }
  .steps-grid { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .pricing-featured { transform: none; }
  .pricing-featured:hover { transform: translateY(-4px); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .mission-vision-grid { grid-template-columns: 1fr; }
  .why-grid { grid-template-columns: 1fr 1fr; }
  .stories-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; text-align: center; }

  .cta-form-wrap { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }

  .about-stats { flex-wrap: wrap; gap: 24px; }
  .about-quote { display: none; }

  .page-hero-content h1 { font-size: 30px; }
  .page-hero {
    height: 40vh;
    min-height: 280px;
  }
  .comparison-table th { padding: 12px 14px; font-size: 14px; }
  .comparison-table td { padding: 10px 14px; font-size: 13px; }
  .faq-sidebar {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
  }
  .faq-sidebar h4 {
    width: 100%;
    margin-bottom: 8px;
  }
  .faq-nav-btn {
    display: inline-block;
    width: auto;
    margin-bottom: 0;
    padding: 8px 16px;
  }
  .service-detail-img img { height: 260px; }
  .about-image img { height: 300px; }
  .values-img img { height: 260px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .nav-container { padding: 0 16px; }
  .why-grid { grid-template-columns: 1fr; }
  .hero-content { padding: 60px 16px; }
  .nav-logo { font-size: 15px; }
  .logo-icon { font-size: 20px; }
}

/* ==========================================
   POLICY HERO & UTILITY GRID SYSTEM
   ========================================== */
.policy-hero {
  background: var(--primary);
  padding: 80px 0 60px;
  color: var(--white);
}
.policy-hero-content h1 {
  font-family: var(--font-head);
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 800;
  margin-top: 12px;
}
.policy-hero-content p {
  opacity: 0.75;
  margin-top: 8px;
}

.stats-banner-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}

.policy-summary-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.family-banner {
  background: var(--primary);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 60px;
  box-shadow: var(--shadow-lg);
}

.family-banner-img-wrap {
  position: relative;
  min-height: 280px;
}
.family-banner-img-wrap img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.family-banner-content {
  padding: 48px;
  color: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quick-answers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.policy-links-banner {
  background: var(--primary);
  padding: 32px 0;
  text-align: center;
}
.policy-links-container {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Responsive adjusters for utility systems */
@media (max-width: 768px) {
  .stats-banner-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
  }
  .policy-summary-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .family-banner {
    grid-template-columns: 1fr;
  }
  .family-banner-img-wrap {
    position: relative !important;
    min-height: 200px !important;
  }
  .family-banner-content {
    padding: 30px 20px;
  }
}

@media (max-width: 480px) {
  .stats-banner-grid {
    grid-template-columns: 1fr;
  }
  .quick-answers-grid {
    grid-template-columns: 1fr;
  }
}

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

/* ==========================================
   ABOUT PAGE YEARS HAPPY AVAILABILITY IN SAME LINE FIX ANIMATIONS & SCROLL REVEAL
   ========================================== */

@media (max-width: 768px) {
  .about-stats {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    gap: 16px;
  }

  .about-stats > div {
    flex: 1;
  }

  .about-stat-num {
    font-size: 1.4rem;
  }

  .about-stat-label {
    font-size: 0.65rem;
  }
}

/* ==========================================
   MOBILE PERFORMANCE FIX — COMPREHENSIVE
   ========================================== */

/* ---- NAVBAR MOBILE ---- */
@media (max-width: 768px) {
  .hamburger { display: flex !important; }
  .navbar .btn.btn-gold { display: none; }
  .nav-links {
    z-index: 999;
    width: 100%;
  }
}

/* ---- HERO SECTION ---- */
@media (max-width: 768px) {
  .hero { min-height: 90vh; }
  .hero-content { padding: 80px 20px 60px; }
  .hero-title { font-size: clamp(26px, 7vw, 40px); line-height: 1.2; }
  .hero-subtitle { font-size: 15px; margin-top: 14px; }
  .hero-btns { flex-direction: column; gap: 12px; align-items: center; }
  .hero-btns .btn { width: 100%; max-width: 280px; text-align: center; }
  .hero-stats { gap: 16px; flex-wrap: wrap; justify-content: center; }
  .stat-num { font-size: 28px; }
}

@media (max-width: 480px) {
  .hero-title { font-size: 24px; }
  .hero-badge { font-size: 11px; padding: 6px 14px; }
}

/* ---- PAGE HERO ---- */
@media (max-width: 768px) {
  .page-hero { min-height: 260px; }
  .page-hero-content h1 { font-size: clamp(22px, 6vw, 36px); }
  .page-hero-content p { font-size: 14px; }
}

/* ---- SECTION SPACING ---- */
@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(22px, 5vw, 34px); }
  .section-header { margin-bottom: 32px; }
}

/* ---- SERVICES GRID ---- */
@media (max-width: 768px) {
  .service-detail {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 48px;
  }
  .service-detail.reverse { direction: ltr; }
  .service-detail-img img { height: 220px; border-radius: 12px; }
  .service-detail-content h2 { font-size: 24px; }
}

/* ---- PRICING CARDS ---- */
@media (max-width: 768px) {
  .pricing-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    max-width: 420px;
    margin: 0 auto;
  }
  .pricing-card { padding: 28px 24px; }
  .pricing-featured { transform: none; border: 2px solid var(--gold); }
}

/* ---- WHY/FEATURE GRID ---- */
@media (max-width: 768px) {
  .why-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
  .why-card { padding: 20px 16px; }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ---- MISSION VISION ---- */
@media (max-width: 768px) {
  .mission-vision-grid { grid-template-columns: 1fr; gap: 20px; }
  .mv-card { padding: 28px 20px; }
}

/* ---- ABOUT PAGE ---- */
@media (max-width: 768px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image img { height: 260px; object-fit: cover; border-radius: 12px; }
  .values-grid { grid-template-columns: 1fr; gap: 40px; }
  .values-img img { height: 240px; object-fit: cover; border-radius: 12px; }
}

/* ---- CONTACT PAGE ---- */
@media (max-width: 768px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-info-cards { gap: 16px; }
  .contact-card { padding: 16px; }
  .contact-form-wrap { padding: 24px 20px; }
  .quick-answers-grid { grid-template-columns: 1fr; }
}

/* ---- FAQ PAGE ---- */
@media (max-width: 768px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar { position: static; display: flex; flex-wrap: wrap; gap: 8px; }
  .faq-nav-btn { flex: 1; min-width: 120px; text-align: center; font-size: 12px; padding: 8px 10px; }
  .accordion-btn { font-size: 14px; padding: 16px; }
  .accordion-q { font-size: 14px; }
}

/* ---- FOOTER ---- */
@media (max-width: 768px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }
}

/* ---- STORIES GRID ---- */
@media (max-width: 768px) {
  .stories-grid { grid-template-columns: 1fr; gap: 24px; }
  .story-card { max-width: 480px; margin: 0 auto; }
}

/* ---- RIBBON ---- */
@media (max-width: 768px) {
  .ribbon-grid { grid-template-columns: 1fr 1fr; gap: 20px; }
}
@media (max-width: 480px) {
  .ribbon-grid { grid-template-columns: 1fr; }
}

/* ---- TESTIMONIALS ---- */
@media (max-width: 768px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
}

/* ---- STEPS / HOW IT WORKS ---- */
@media (max-width: 768px) {
  .steps-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
}

/* ---- BUTTONS ---- */
@media (max-width: 480px) {
  .btn-lg { padding: 14px 24px; font-size: 14px; }
  .btn { font-size: 13px; padding: 10px 18px; }
}

/* ---- CTA SECTION BUTTONS ---- */
@media (max-width: 768px) {
  section [style*="display:flex"][style*="gap:16px"] {
    flex-direction: column;
    align-items: center;
  }
  section [style*="display:flex"][style*="gap:16px"] .btn {
    width: 100%;
    max-width: 280px;
    text-align: center;
  }
}

/* ---- WHATSAPP FAB ---- */
@media (max-width: 480px) {
  .whatsapp-fab { width: 52px; height: 52px; bottom: 20px; right: 16px; }
  .fab-tooltip { display: none; }
}

/* ---- IMAGE OVERFLOW FIX ---- */
img { max-width: 100%; height: auto; }

/* ---- TOUCH IMPROVEMENTS ---- */
@media (max-width: 768px) {
  .btn, .nav-link, .accordion-btn, .faq-nav-btn {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
  a { -webkit-tap-highlight-color: transparent; }
}

.nav-logo-img {
  height: 50px;
  width: auto;
  max-width: 50px;
  object-fit: contain;
  display: block;
}

@media (max-width: 768px) {
  .nav-logo-img {
    height: 50px;
    max-width: 50px;
  }
}


