/* ============================================================
   Doctor Website — Dark Navy & Gold Premium Theme
   Bengali Language — Mobile-First Responsive Design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Hind+Siliguri:wght@300;400;500;600;700&family=Noto+Serif+Bengali:wght@400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --navy:        #0B1929;
  --navy-light:  #122035;
  --navy-mid:    #1A2F4A;
  --navy-card:   #0F2137;
  --gold:        #C9A84C;
  --gold-light:  #E2C46A;
  --gold-pale:   #F5E6B8;
  --gold-dark:   #9E7D2E;
  --white:       #FFFFFF;
  --off-white:   #F8F4EC;
  --text-main:   #E8DEC8;
  --text-muted:  #8A9BB5;
  --text-light:  #B8C8DC;
  --border:      rgba(201,168,76,0.25);
  --shadow:      0 8px 40px rgba(0,0,0,0.45);
  --shadow-gold: 0 4px 24px rgba(201,168,76,0.25);
  --radius:      12px;
  --radius-lg:   20px;
  --transition:  0.35s cubic-bezier(0.4,0,0.2,1);
  --font-sans:   'Hind Siliguri', sans-serif;
  --font-serif:  'Noto Serif Bengali', serif;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-sans);
  background: var(--navy);
  color: var(--text-main);
  line-height: 1.7;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-light); }
ul { list-style: none; }

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--navy); }
::-webkit-scrollbar-thumb { background: var(--gold-dark); border-radius: 3px; }

/* ── Utility ── */
.container { width: 100%; max-width: 1200px; margin: 0 auto; padding: 0 1.25rem; }
.section-pad { padding: 5rem 0; }
.text-gold { color: var(--gold); }
.text-center { text-align: center; }

.section-header { text-align: center; margin-bottom: 3.5rem; }
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  padding: 0.3rem 1rem;
  border-radius: 50px;
  margin-bottom: 1rem;
}
.section-title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.section-title span { color: var(--gold); }
.section-desc { color: var(--text-light); font-size: 1.05rem; max-width: 560px; margin: 0 auto; }

/* Gold divider */
.gold-divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
  margin: 1rem auto 0;
  border-radius: 2px;
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn-gold {
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
  background-size: 200% 200%;
  color: var(--navy);
  box-shadow: 0 4px 20px rgba(201,168,76,0.4);
}
.btn-gold:hover {
  background-position: right center;
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(201,168,76,0.55);
  color: var(--navy);
}
.btn-outline {
  background: transparent;
  color: var(--gold);
  border: 1.5px solid var(--gold);
}
.btn-outline:hover {
  background: rgba(201,168,76,0.1);
  transform: translateY(-2px);
  color: var(--gold-light);
}
.btn-lg { padding: 1rem 2.25rem; font-size: 1.05rem; }

/* ── Navigation ── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 1rem 0;
  transition: all var(--transition);
}
#navbar.scrolled {
  background: rgba(11,25,41,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0.6rem 0;
  box-shadow: var(--shadow);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.nav-logo-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--navy);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}
.nav-logo-text { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 700; color: var(--white); line-height: 1.2; }
.nav-logo-sub { font-size: 0.7rem; color: var(--gold); font-weight: 400; letter-spacing: 0.05em; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
}
.nav-links a {
  color: var(--text-light);
  font-size: 0.9rem;
  font-weight: 500;
  position: relative;
  padding-bottom: 2px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }

.nav-cta { display: flex; align-items: center; gap: 1rem; }
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.hamburger span { display: block; width: 24px; height: 2px; background: var(--gold); border-radius: 2px; transition: all 0.3s; }

/* Mobile nav */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(11,25,41,0.98);
  backdrop-filter: blur(16px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 2rem;
}
.mobile-menu.active { display: flex; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.5rem; color: var(--white); font-weight: 700; }
.mobile-menu a:hover { color: var(--gold); }
.mobile-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: none; border: none;
  color: var(--gold); font-size: 2rem;
  cursor: pointer;
}

/* ── Hero Section ── */
#hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-top: 80px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background: 
    radial-gradient(ellipse 80% 60% at 70% 50%, rgba(201,168,76,0.08) 0%, transparent 60%),
    radial-gradient(ellipse 60% 80% at 10% 80%, rgba(26,47,74,0.9) 0%, transparent 50%),
    linear-gradient(160deg, #051020 0%, #0B1929 40%, #0F2137 100%);
}
.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: 
    repeating-linear-gradient(
      60deg,
      transparent,
      transparent 80px,
      rgba(201,168,76,0.03) 80px,
      rgba(201,168,76,0.03) 81px
    );
}
.hero-glow {
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(201,168,76,0.12) 0%, transparent 70%);
  top: 50%; right: 5%;
  transform: translateY(-50%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  padding: 3rem 0;
}
.hero-content { }
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.3);
  color: var(--gold);
  font-size: 0.8rem;
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 50px;
  margin-bottom: 1.5rem;
  letter-spacing: 0.05em;
}
.hero-badge::before { content: '✦'; font-size: 0.6rem; }

.hero-name {
  font-family: var(--font-serif);
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.15;
  margin-bottom: 0.5rem;
}
.hero-name span { color: var(--gold); display: block; }
.hero-degree {
  font-size: 1rem;
  color: var(--gold-light);
  font-weight: 500;
  margin-bottom: 1.5rem;
  letter-spacing: 0.03em;
}
.hero-text {
  font-size: 1.05rem;
  color: var(--text-light);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  max-width: 480px;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-stats {
  display: flex;
  gap: 2rem;
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
}
.hero-stat-num {
  font-family: var(--font-serif);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.hero-stat-label { font-size: 0.8rem; color: var(--text-muted); margin-top: 0.2rem; }

/* Hero Image */
.hero-image-wrap {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.hero-image-bg {
  position: absolute;
  width: 85%;
  height: 85%;
  background: linear-gradient(135deg, var(--navy-mid), var(--navy-card));
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-gold);
  animation: morphBlob 8s ease-in-out infinite;
}
@keyframes morphBlob {
  0%,100% { border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%; }
  50% { border-radius: 60% 40% 40% 60% / 60% 60% 40% 40%; }
}
.hero-img {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 420px;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  object-fit: cover;
  aspect-ratio: 3/4;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,0.5));
}
.hero-img-placeholder {
  position: relative;
  z-index: 2;
  width: 85%;
  max-width: 420px;
  aspect-ratio: 3/4;
  background: linear-gradient(160deg, var(--navy-mid), var(--navy-card));
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--gold);
  font-size: 5rem;
  gap: 1rem;
  border: 1px solid var(--border);
}
.hero-img-placeholder p { font-size: 0.9rem; color: var(--text-muted); }
.hero-float-card {
  position: absolute;
  background: rgba(15,33,55,0.92);
  backdrop-filter: blur(10px);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: var(--shadow);
  animation: floatUp 3s ease-in-out infinite;
  z-index: 3;
}
.hero-float-card:nth-child(3) { bottom: 10%; left: -5%; animation-delay: 0s; }
.hero-float-card:nth-child(4) { top: 15%; right: -5%; animation-delay: 1.5s; }
.float-icon { font-size: 1.5rem; }
.float-label { font-size: 0.7rem; color: var(--text-muted); }
.float-val { font-size: 0.9rem; font-weight: 700; color: var(--gold); }
@keyframes floatUp { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-8px); } }

/* ── Packages Section ── */
#packages { background: var(--navy-light); }
.category-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}
.cat-tab {
  padding: 0.6rem 1.5rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  border: 1.5px solid var(--border);
  color: var(--text-muted);
  background: transparent;
  font-family: var(--font-sans);
  transition: all var(--transition);
}
.cat-tab:hover { border-color: var(--gold); color: var(--gold); }
.cat-tab.active {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  border-color: transparent;
  color: var(--navy);
  box-shadow: var(--shadow-gold);
}
.packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.package-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}
.package-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.package-card:hover {
  transform: translateY(-6px);
  border-color: rgba(201,168,76,0.5);
  box-shadow: var(--shadow-gold), var(--shadow);
}
.package-card.featured::after {
  content: 'জনপ্রিয়';
  position: absolute;
  top: 1rem; right: 1rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--navy);
  font-size: 0.7rem;
  font-weight: 700;
  padding: 0.2rem 0.7rem;
  border-radius: 50px;
}
.pkg-category-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.pkg-title {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 0.75rem;
}
.pkg-desc { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; margin-bottom: 1.25rem; }
.pkg-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.pkg-meta-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.82rem;
  color: var(--text-light);
}
.pkg-meta-item svg { color: var(--gold); flex-shrink: 0; }
.pkg-price {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
  padding-top: 1.25rem;
  border-top: 1px solid var(--border);
}
.pkg-price-val { font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700; color: var(--gold); }
.pkg-price-val small { font-size: 0.75rem; color: var(--text-muted); font-family: var(--font-sans); font-weight: 400; }

/* ── Gallery ── */
#gallery { }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: 1rem;
}
.gallery-item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 4/3;
  background: var(--navy-card);
  border: 1px solid var(--border);
}
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,25,41,0.85), transparent);
  opacity: 0;
  transition: opacity var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-icon { font-size: 2rem; color: var(--gold); }
.gallery-empty {
  grid-column: 1/-1;
  text-align: center;
  padding: 3rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9999;
  background: rgba(5,16,32,0.97);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}
.lightbox.active { display: flex; }
.lightbox-img {
  max-width: 90vw;
  max-height: 85vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid var(--border);
}
.lightbox-close {
  position: absolute;
  top: 1.5rem; right: 1.5rem;
  background: rgba(201,168,76,0.15);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 44px; height: 44px;
  border-radius: 50%;
  font-size: 1.3rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.lightbox-close:hover { background: var(--gold); color: var(--navy); }

/* ── Testimonials ── */
#testimonials { background: var(--navy-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testimonial-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.75rem;
  transition: all var(--transition);
}
.testimonial-card:hover { transform: translateY(-4px); border-color: rgba(201,168,76,0.4); }
.stars { color: var(--gold); font-size: 1rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-text { font-size: 0.95rem; color: var(--text-light); line-height: 1.8; margin-bottom: 1.25rem; font-style: italic; }
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.author-avatar {
  width: 40px; height: 40px;
  background: linear-gradient(135deg, var(--gold-dark), var(--gold));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  color: var(--navy);
  font-weight: 700;
}
.author-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }

/* ── Contact ── */
#contact { }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}
.contact-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  position: relative;
  overflow: hidden;
}
.contact-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold-dark), var(--gold), var(--gold-dark));
}
.contact-card-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid var(--border);
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.25rem;
}
.contact-icon {
  width: 40px; height: 40px;
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  flex-shrink: 0;
  color: var(--gold);
}
.contact-label { font-size: 0.75rem; color: var(--text-muted); margin-bottom: 0.2rem; }
.contact-val { font-size: 0.95rem; color: var(--text-main); font-weight: 500; }

.booking-form-card {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
}
.booking-form-card h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 1.5rem;
}

/* ── Forms ── */
.form-group { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.85rem; color: var(--text-light); font-weight: 500; margin-bottom: 0.4rem; }
.form-control {
  width: 100%;
  background: rgba(255,255,255,0.04);
  border: 1.5px solid rgba(201,168,76,0.2);
  border-radius: var(--radius);
  color: var(--text-main);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
  background: rgba(255,255,255,0.06);
}
.form-control::placeholder { color: var(--text-muted); }
select.form-control option { background: var(--navy-card); color: var(--text-main); }
textarea.form-control { resize: vertical; min-height: 110px; }

/* ── Footer ── */
footer {
  background: #050F1A;
  border-top: 1px solid var(--border);
  padding: 3rem 0 1.5rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  margin-bottom: 2.5rem;
}
.footer-brand-name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 0.25rem; }
.footer-brand-sub { font-size: 0.8rem; color: var(--gold); margin-bottom: 1rem; }
.footer-desc { font-size: 0.88rem; color: var(--text-muted); line-height: 1.8; }
.footer-col-title { font-size: 0.85rem; font-weight: 700; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-links a { font-size: 0.88rem; color: var(--text-muted); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  border-top: 1px solid var(--border);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.82rem;
  color: var(--text-muted);
}
.footer-bottom span { color: var(--gold); }

/* ── Scroll Animations ── */
.fade-up {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-in { opacity: 0; transition: opacity 0.8s ease; }
.fade-in.visible { opacity: 1; }
.slide-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-left.visible { opacity: 1; transform: translateX(0); }
.slide-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.slide-right.visible { opacity: 1; transform: translateX(0); }

/* Stagger delays */
.delay-1 { transition-delay: 0.1s !important; }
.delay-2 { transition-delay: 0.2s !important; }
.delay-3 { transition-delay: 0.3s !important; }
.delay-4 { transition-delay: 0.4s !important; }

/* ── Booking Modal ── */
.modal-overlay {
  position: fixed;
  inset: 0;
  z-index: 8000;
  background: rgba(5,16,32,0.92);
  backdrop-filter: blur(8px);
  display: none;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}
.modal-overlay.active { display: flex; }
.modal-box {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  width: 100%;
  max-width: 480px;
  position: relative;
  box-shadow: var(--shadow);
  animation: modalSlide 0.35s ease;
}
@keyframes modalSlide { from { opacity: 0; transform: translateY(20px) scale(0.98); } to { opacity: 1; transform: none; } }
.modal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 1.5rem; }
.modal-title { font-family: var(--font-serif); font-size: 1.3rem; color: var(--white); font-weight: 700; }
.modal-close-btn {
  background: rgba(201,168,76,0.1);
  border: 1px solid var(--border);
  color: var(--gold);
  width: 36px; height: 36px;
  border-radius: 50%;
  font-size: 1.1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
}
.modal-close-btn:hover { background: var(--gold); color: var(--navy); }
.modal-pkg-info {
  background: rgba(201,168,76,0.06);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.9rem 1rem;
  margin-bottom: 1.5rem;
  font-size: 0.88rem;
  color: var(--text-light);
}
.modal-pkg-info strong { color: var(--gold); }
.success-msg {
  text-align: center;
  padding: 2rem 0;
  display: none;
}
.success-icon { font-size: 3.5rem; margin-bottom: 1rem; }
.success-msg h3 { font-family: var(--font-serif); color: var(--white); font-size: 1.3rem; margin-bottom: 0.5rem; }
.success-msg p { color: var(--text-muted); font-size: 0.9rem; }

/* ── Toast ── */
.toast-container {
  position: fixed;
  bottom: 1.5rem;
  right: 1.5rem;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  pointer-events: none;
}
.toast {
  background: var(--navy-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.85rem 1.25rem;
  color: var(--text-main);
  font-size: 0.88rem;
  box-shadow: var(--shadow);
  animation: toastIn 0.35s ease, toastOut 0.35s ease 2.8s forwards;
  max-width: 300px;
  pointer-events: all;
}
.toast.success { border-left: 3px solid #4CAF50; }
.toast.error { border-left: 3px solid #ef5350; }
@keyframes toastIn { from { opacity: 0; transform: translateX(20px); } to { opacity: 1; transform: none; } }
@keyframes toastOut { from { opacity: 1; } to { opacity: 0; } }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-inner > :first-child { grid-column: 1/-1; }
}

@media (max-width: 768px) {
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  
  .hero-inner { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-image-wrap { order: -1; }
  .hero-img, .hero-img-placeholder { width: 70%; max-width: 280px; margin: 0 auto; }
  .hero-stats { justify-content: center; }
  .hero-btns { justify-content: center; }
  .hero-text { margin-left: auto; margin-right: auto; }
  .hero-float-card { display: none; }
  
  .contact-grid { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-inner > :first-child { grid-column: auto; }
  
  .section-pad { padding: 3.5rem 0; }
}

@media (max-width: 480px) {
  .packages-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.25rem; }
  .hero-stat-num { font-size: 1.6rem; }
}
