/* ===== ZORV SHARED STYLES ===== */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700&family=Nunito+Sans:wght@300;400;600;700&display=swap');

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'Nunito Sans', sans-serif; color: #444; background: #fff; }
h1, h2, h3, h4, .heading { font-family: 'Playfair Display', serif; }
a { text-decoration: none; }
img { max-width: 100%; }

/* ===== VARIABLES ===== */
:root {
  --primary: #0F2439;
  --gold: #D9A53F;
  --red: #C0392B;
  --orange: #E67E22;
  --light: #f8f9fb;
  --border: #eef0f3;
  --white:#fff;
}

/* ===== TOP BAR ===== */
.topbar { background: var(--primary); padding: 8px 0; }
.topbar-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.topbar a { color: #cbd5e1; font-size: 12.5px; display: flex; align-items: center; gap: 6px; transition: color .2s; }
.topbar a:hover { color: var(--gold); }
.topbar-left { display: flex; gap: 24px; }
.topbar-right { display: flex; align-items: center; gap: 16px; }
.topbar-cta { background: var(--gold); color: var(--primary) !important; padding: 4px 14px; border-radius: 4px; font-weight: 700; font-size: 12px !important; }

/* ===== NAVBAR ===== */
.navbar { background: #fff; border-bottom: 1px solid var(--border); position: sticky; top: 0; z-index: 999; transition: box-shadow .3s; }
.navbar.scrolled { box-shadow: 0 2px 20px rgba(15,36,57,.09); }
.nav-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; height: 78px; display: flex; align-items: center; justify-content: space-between; }

/* Logo */
.logo { display: flex; align-items: center; gap: 12px; }
.logo-box { background: var(--primary); border-radius: 8px; padding: 7px 15px; }
.logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--gold); letter-spacing: 3px; }
.logo-sub { line-height: 1.3; }
.logo-sub span:first-child { display: block; font-size: 10.5px; font-weight: 700; color: var(--primary); letter-spacing: 1px; }
.logo-sub span:last-child { display: block; font-size: 10px; color: var(--gold); }

/* Nav links */
.nav-links { 
  display: flex; 
  align-items: center; 
  gap: 10px; /* was 2px → too tight */
}

.nav-links > a, 
.nav-links > .dropdown > button {
  padding: 10px 16px; 
   font-size: 17px;
  font-weight: 600; 
  color: #1e293b;
  background: none; 
  border: none; 
  cursor: pointer; 
  border-radius: 6px;
  transition: all .2s; 
  font-family: 'Nunito Sans', sans-serif;
}

.nav-links > a:hover, 
.nav-links > .dropdown > button:hover { 
  color: var(--gold); 
  background: #fdf8ef; 
}

.nav-links > a.active { 
  color: var(--gold); 
}


/* Dropdown */
.dropdown { position: relative; }

.dropdown-menu {
  display: none; 
  position: absolute; 
  top: calc(100% + 6px); /* more breathing space */
  left: 0;
  background: #fff; 
  min-width: 240px; /* slightly bigger */
  box-shadow: 0 12px 45px rgba(15,36,57,.14);
  border-top: 3px solid var(--gold); 
  border-radius: 0 0 12px 12px; 
  z-index: 1000;
}

.dropdown:hover .dropdown-menu { display: block; }


/* Dropdown titles */
.dm-title { 
  padding: 10px 18px 6px; 
  font-size: 12px;  /* 🔥 increased from 10px */
  font-weight: 700; 
  color: var(--gold); 
  letter-spacing: 1.6px; 
  text-transform: uppercase; 
  background: #fafafa; 
  border-bottom: 1px solid var(--border); 
}


/* Dropdown links */
.dropdown-menu a { 
  display: block; 
  padding: 11px 18px; 
  font-size: 15px;  /* 🔥 increased from 13px */
  color: #334155; 
  border-bottom: 1px solid var(--border); 
  transition: all .18s; 
}

.dropdown-menu a:last-child { 
  border-bottom: none; 
  border-radius: 0 0 12px 12px; 
}

.dropdown-menu a:hover { 
  background: #fdf8ef; 
  color: var(--gold); 
  padding-left: 26px; 
}
/* Nav CTA */
.nav-cta { background: var(--gold); color: var(--primary) !important; padding: 9px 20px !important; border-radius: 8px; font-weight: 700 !important; margin-left: 8px; }
.nav-cta:hover { background: #c8922e !important; color: var(--primary) !important; }


/* ===== HAMBURGER FIX ===== */
.hamburger {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  z-index: 10000;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--primary);
  margin: 5px 0;
  border-radius: 2px;
}

/* MOBILE NAV FIX */
.mobile-nav {
  position: fixed;
  top: 0;
  right: -100%;
  width: 300px;
  height: 100vh;
  background: #fff;
  box-shadow: -10px 0 30px rgba(0,0,0,0.15);
  transition: right .3s ease;
  z-index: 9999;
  overflow-y: auto;
}

.mobile-nav.open {
  right: 0;
}

/* SHOW HAMBURGER ONLY MOBILE */
@media (max-width: 992px) {
  .hamburger {
    display: block;
  }

  .nav-links {
    display: none !important;
  }
}
/* ===== MOBILE OVERLAY ===== */
.mobile-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.45);
  display: none;
  z-index: 9998;
}

/* show overlay when menu open */
.mobile-nav.open + .mobile-overlay {
  display: block;
}

/* Items */
.mob-item {
  border-bottom: 1px solid var(--border);
}

.mob-item > a,
.mob-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 20px; /* increased */
  font-size: 15px; /* 🔥 increased */
  font-weight: 600;
  color: #1e293b;
  background: none;
  border: none;
  cursor: pointer;
  width: 100%;
  font-family: 'Nunito Sans', sans-serif;
}

/* Sub menu */
.mob-sub {
  display: none;
  background: #fafafa;
  padding: 6px 0;
}

.mob-sub.open {
  display: block;
}

.mob-sub a {
  display: block;
  padding: 10px 34px; /* improved spacing */
  font-size: 14px; /* 🔥 increased */
  color: #64748b;
  transition: color .2s;
}

.mob-sub a:hover {
  color: var(--gold);
}

/* CTA */
.mob-cta {
  padding: 16px 20px;
}

.mob-cta a {
  display: block;
  text-align: center;
  background: var(--gold);
  color: var(--primary);
  padding: 14px;
  border-radius: 8px;
  font-weight: 700;
  font-size: 15px; /* 🔥 increased */
}

/* ===== BUTTONS ===== */
.btn { display: inline-block; padding: 12px 28px; border-radius: 8px; font-weight: 700; font-size: 14px; cursor: pointer; transition: all .2s; border: 2px solid transparent; font-family: 'Nunito Sans', sans-serif; }
.btn-primary { background: var(--primary); color: #fff; border-color: var(--primary); }
.btn-primary:hover { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.btn-gold { background: var(--gold); color: var(--primary); border-color: var(--gold); }
.btn-gold:hover { background: #c8922e; border-color: #c8922e; }
.btn-outline { background: transparent; color: var(--primary); border-color: var(--primary); }
.btn-outline:hover { background: var(--primary); color: #fff; }
.btn-sm { padding: 9px 20px; font-size: 13px; }

/* ===== PAGE HEADER ===== */
.page-header {
  background: linear-gradient(135deg, #0F2439 0%, #1c3a57 100%);
  border-bottom: 1px solid rgba(255,255,255,0.08);
  padding: 52px 0;
}.page-header-inner { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.breadcrumb { display: flex; align-items: center; gap: 6px; font-size: 13px; color: #94a3b8; margin-bottom: 14px; }
.breadcrumb a { color: var(--gold); font-weight: 600; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: #cbd5e1; }
.page-header h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 5vw, 44px); font-weight: 700; color: var(--white); margin-bottom: 10px; }
.page-header p { font-size: 16px; color: #64748b; max-width: 560px; line-height: 1.7; }

/* ===== SECTION HELPERS ===== */
.section { padding: 80px 0; }
.section-sm { padding: 50px 0; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
.bg-white { background: #fff; }
.bg-light { background: var(--light); }
.bg-primary { background: var(--primary); }

.section-head { text-align: center; margin-bottom: 54px; }
.section-tag { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 2px; text-transform: uppercase; }
.gold-bar { display: inline-block; width: 50px; height: 3px; background: var(--gold); border-radius: 2px; vertical-align: middle; }
.section-head h2 { font-family: 'Playfair Display', serif; font-size: clamp(24px, 4vw, 38px); font-weight: 700; color: var(--primary); margin: 8px 0; }
.section-head p { color: #64748b; max-width: 520px; margin: 0 auto; line-height: 1.7; }
.tag-row { display: flex; align-items: center; justify-content: center; gap: 12px; margin-bottom: 8px; }

/* ===== CARDS ===== */
.card { background: #fff; border: 1px solid var(--border); border-radius: 14px; transition: all .25s; overflow: hidden; }
.card:hover { box-shadow: 0 8px 32px rgba(15,36,57,.09); transform: translateY(-4px); border-color: var(--gold); }
.card-inner { padding: 28px; }
.card-top { border-top: 4px solid transparent; transition: border-top-color .25s; }
.card:hover .card-top { border-top-color: var(--gold); }

.icon-box { width: 58px; height: 58px; border-radius: 14px; background: #fdf8ef; display: flex; align-items: center; justify-content: center; font-size: 26px; margin-bottom: 16px; flex-shrink: 0; }
.icon-box-sm { width: 44px; height: 44px; border-radius: 10px; background: #fdf8ef; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }
.icon-circle { width: 48px; height: 48px; border-radius: 50%; background: #fdf8ef; display: flex; align-items: center; justify-content: center; font-size: 20px; flex-shrink: 0; }

/* ===== STATS ===== */
.stat-left { border-left: 4px solid var(--gold); padding-left: 16px; }
.stat-left .num { font-family: 'Playfair Display', serif; font-size: 28px; font-weight: 700; color: var(--gold); }
.stat-left .label { font-size: 12px; color: #94a3b8; margin-top: 2px; }

/* Number boxes */
.num-box { border-radius: 16px; padding: 30px 20px; text-align: center; }
.num-box .big { font-family: 'Playfair Display', serif; font-size: 40px; font-weight: 700; }
.num-box .sub { font-size: 13px; margin-top: 4px; }
.num-box.dark { background: var(--primary); }
.num-box.dark .big { color: var(--gold); }
.num-box.dark .sub { color: #94a3b8; }
.num-box.gold { background: var(--gold); }
.num-box.gold .big, .num-box.gold .sub { color: var(--primary); }
.num-box.gold .sub { font-weight: 700; }

/* ===== FORM ===== */
.form-group { margin-bottom: 18px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--primary); margin-bottom: 6px; }
.form-control { width: 100%; padding: 11px 15px; border: 1.5px solid #e2e8f0; border-radius: 8px; font-size: 14px; color: var(--primary); outline: none; transition: border-color .2s; font-family: 'Nunito Sans', sans-serif; background: #fff; }
.form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(217,165,63,.1); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ===== ENQUIRY BOX ===== */
.enquiry-box { border: 2px solid var(--gold); border-radius: 16px; overflow: hidden; box-shadow: 0 10px 40px rgba(217,165,63,.1); position: sticky; top: 90px; }
.enquiry-head { background: var(--primary); padding: 22px 26px; }
.enquiry-head h3 { font-family: 'Playfair Display', serif; font-size: 20px; font-weight: 700; color: #fff; }
.enquiry-head p { font-size: 13px; color: var(--gold); margin-top: 4px; }
.enquiry-body { padding: 24px 26px; background: #fff; }

/* ===== PROCESS STEPS ===== */
.step-num { width: 46px; height: 46px; border-radius: 50%; background: var(--primary); color: var(--gold); font-weight: 700; font-size: 17px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; margin: 0 auto 16px; }

/* ===== TESTIMONIAL ===== */
.testi-card { background: #fff; border: 1px solid var(--border); border-left: 4px solid var(--gold); border-radius: 14px; padding: 28px; }
.stars { color: var(--gold); font-size: 15px; margin-bottom: 14px; letter-spacing: 1px; }
.testi-card p { font-size: 14px; color: #64748b; line-height: 1.75; margin-bottom: 18px; }
.testi-author { display: flex; align-items: center; gap: 12px; }
.avatar { width: 42px; height: 42px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 13px; flex-shrink: 0; }
.testi-author .name { font-size: 14px; font-weight: 700; color: var(--primary); }
.testi-author .role { font-size: 12px; color: #94a3b8; }

/* ===== PACKAGE CARDS ===== */
.pkg-card { border: 1.5px solid var(--border); border-radius: 16px; overflow: hidden; transition: all .25s; }
.pkg-card:hover { box-shadow: 0 10px 40px rgba(15,36,57,.10); transform: translateY(-4px); }
.pkg-card.featured { border: 2.5px solid var(--gold); }
.pkg-badge { background: var(--gold); color: var(--primary); text-align: center; padding: 7px; font-size: 11px; font-weight: 700; letter-spacing: 1px; text-transform: uppercase; }
.pkg-head { padding: 28px 28px 22px; }
.pkg-head .tier { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 8px; }
.pkg-head .price { font-family: 'Playfair Display', serif; font-size: 36px; font-weight: 700; color: var(--primary); }
.pkg-head .note { font-size: 12.5px; color: #94a3b8; margin-top: 4px; }
.pkg-head.dark { background: var(--primary); }
.pkg-head.dark .tier { color: var(--gold); }
.pkg-head.dark .price { color: #fff; }
.pkg-head.dark .note { color: #94a3b8; }
.pkg-body { padding: 22px 28px 28px; }
.pkg-list { list-style: none; margin-bottom: 22px; }
.pkg-list li { font-size: 13.5px; color: #475569; padding: 6px 0; border-bottom: 1px solid var(--border); display: flex; gap: 8px; }
.pkg-list li:last-child { border-bottom: none; }
.pkg-list .tick { color: var(--gold); }
.pkg-list .cross { color: #cbd5e1; }

/* ===== BLOG ===== */
.blog-card { border-radius: 14px; overflow: hidden; border: 1px solid var(--border); transition: all .25s; }
.blog-card:hover { box-shadow: 0 8px 30px rgba(15,36,57,.09); transform: translateY(-4px); }
.blog-thumb { height: 190px; display: flex; align-items: center; justify-content: center; font-size: 52px; }
.blog-body { padding: 22px; }
.blog-tag { display: inline-block; font-size: 11px; font-weight: 700; padding: 3px 10px; border-radius: 20px; margin-bottom: 10px; background: #fdf8ef; color: var(--gold); }
.blog-tag.red { background: rgba(192,57,43,.08); color: var(--red); }
.blog-tag.orange { background: rgba(230,126,34,.08); color: var(--orange); }
.blog-date { font-size: 12px; color: #94a3b8; margin-left: 8px; }
.blog-body h3 { font-family: 'Playfair Display', serif; font-size: 17px; font-weight: 700; color: var(--primary); margin-bottom: 10px; line-height: 1.45; }
.blog-body p { font-size: 13.5px; color: #64748b; line-height: 1.7; margin-bottom: 14px; }
.blog-more { font-size: 13px; font-weight: 700; color: var(--gold); }

/* ===== FEATURE ROW ===== */
.feature-row { display: flex; gap: 14px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; transition: all .2s; }
.feature-row:hover { border-color: var(--gold); box-shadow: 0 4px 18px rgba(217,165,63,.09); }
.feature-row h4 { font-size: 14px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.feature-row p { font-size: 13px; color: #64748b; }

/* ===== CONTACT ===== */
.contact-info-row { display: flex; gap: 16px; padding: 18px; background: #fff; border: 1px solid var(--border); border-radius: 12px; margin-bottom: 12px; }
.contact-info-row .ci-icon { font-size: 22px; flex-shrink: 0; margin-top: 2px; }
.contact-info-row .ci-label { font-size: 13px; font-weight: 700; color: var(--primary); margin-bottom: 4px; }
.contact-info-row a, .contact-info-row p { font-size: 13.5px; color: #64748b; display: block; }
.contact-info-row a:hover { color: var(--gold); }

/* ===== FOOTER ===== */
footer { background: var(--primary); color: #fff; padding: 64px 0 0; }
.footer-grid { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 48px; }
.footer-logo-box { background: rgba(217,165,63,.1); border: 1px solid rgba(217,165,63,.25); border-radius: 8px; padding: 8px 16px; display: inline-block; margin-bottom: 16px; }
.footer-logo-text { font-family: 'Playfair Display', serif; font-weight: 700; font-size: 22px; color: var(--gold); letter-spacing: 3px; }
.footer-desc { font-size: 13.5px; color: #94a3b8; line-height: 1.75; max-width: 230px; margin-bottom: 20px; }
.footer-col-title { font-size: 11px; font-weight: 700; color: var(--gold); letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 18px; }
.footer-link { display: block; font-size: 13.5px; color: #94a3b8; margin-bottom: 10px; transition: color .2s; }
.footer-link:hover { color: var(--gold); }
.footer-social { display: flex; gap: 8px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; border: 1px solid rgba(255,255,255,.1); display: flex; align-items: center; justify-content: center; font-size: 13px; color: #94a3b8; transition: all .2s; }
.footer-social a:hover { border-color: var(--gold); color: var(--gold); }
.footer-cta-box { background: rgba(217,165,63,.08); border: 1px solid rgba(217,165,63,.2); border-radius: 12px; padding: 18px; }
.footer-cta-box .fc-label { font-size: 12px; font-weight: 700; color: var(--gold); margin-bottom: 4px; }
.footer-cta-box .fc-sub { font-size: 12px; color: #94a3b8; margin-bottom: 12px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.07); padding: 18px 0; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.footer-bottom p { font-size: 12.5px; color: #475569; }
.footer-bottom a { font-size: 12.5px; color: #475569; margin-left: 20px; transition: color .2s; }
.footer-bottom a:hover { color: var(--gold); }

/* ===== GRID HELPERS ===== */
.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
.grid-4 { display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 24px; }
.grid-1-2 { display: grid; grid-template-columns: 1fr 1.6fr; gap: 48px; align-items: start; }
.grid-2-1 { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }

/* ===== TRUST BADGE ===== */
.trust-badge { display: inline-flex; align-items: center; gap: 6px; background: #fdf8ef; border: 1px solid rgba(217,165,63,.35); border-radius: 20px; padding: 5px 14px; font-size: 12px; font-weight: 700; color: var(--primary); }

/* ===== CTA SECTION ===== */
.cta-box { border: 2.5px solid var(--gold); border-radius: 20px; padding: 52px 40px; text-align: center; background: #fdf8ef; }
.cta-box h2 { font-family: 'Playfair Display', serif; font-size: clamp(22px, 4vw, 34px); font-weight: 700; color: var(--primary); margin-bottom: 12px; }
.cta-box p { font-size: 16px; color: #64748b; margin-bottom: 28px; }
.cta-box .btn-row { display: flex; justify-content: center; flex-wrap: wrap; gap: 14px; }

/* ===== SCROLL TOP ===== */
.scroll-top { position: fixed; bottom: 24px; right: 24px; width: 44px; height: 44px; border-radius: 50%; background: var(--gold); color: var(--primary); font-size: 18px; font-weight: 700; border: none; cursor: pointer; display: none; align-items: center; justify-content: center; box-shadow: 0 4px 16px rgba(217,165,63,.35); z-index: 998; transition: all .3s; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top.show { display: flex; }

/* ===== MISC ===== */
.gold-text { color: var(--gold); }
.primary-text { color: var(--primary); }
.check-list { list-style: none; }
.check-list li { display: flex; gap: 10px; padding: 6px 0; font-size: 14px; color: #475569; }
.check-list .chk { color: var(--gold); font-size: 16px; flex-shrink: 0; }
.divider { height: 1px; background: var(--border); margin: 40px 0; }
.mt-4 { margin-top: 16px; } .mt-6 { margin-top: 24px; } .mt-8 { margin-top: 32px; }
.mb-4 { margin-bottom: 16px; } .mb-6 { margin-bottom: 24px; }
.flex { display: flex; } .flex-wrap { flex-wrap: wrap; }
.gap-3 { gap: 12px; } .gap-4 { gap: 16px; }
.items-center { align-items: center; }
.justify-center { justify-content: center; }
.text-center { text-align: center; }
.w-full { width: 100%; }

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .nav-links { display: none; }
  .hamburger { display: block; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .grid-1-2, .grid-2-1 { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .topbar { display: none; }
  .section { padding: 52px 0; }
  .cta-box { padding: 36px 20px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .logo-sub { display: none; }
}