/* ============================================================
   SDV Tours & Travels — Main Stylesheet
   Brand: #1E4744 (Deep Teal) | #CBA16F (Gold)
   Domain: sdvtourstravels.com
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800&family=Nunito+Sans:wght@300;400;600;700&display=swap');

/* ── CSS Variables ── */
:root {
  --teal:       #1E4744;
  --teal-dark:  #152f2d;
  --teal-mid:   #245450;
  --gold:       #CBA16F;
  --gold-light: #dbb98a;
  --gold-dark:  #b08850;
  --white:      #ffffff;
  --off-white:  #f8f5f0;
  --text-dark:  #1a1a1a;
  --text-mid:   #444444;
  --text-light: #777777;
  --shadow-sm:  0 2px 12px rgba(0,0,0,0.08);
  --shadow-md:  0 8px 30px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);
  --radius-sm:  6px;
  --radius-md:  12px;
  --radius-lg:  20px;
  --transition: 0.3s cubic-bezier(0.4,0,0.2,1);
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'Nunito Sans', sans-serif;
}

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

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

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

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

/* ── Typography ── */
h1, h2, h3, h4, h5 { font-family: var(--font-display); line-height: 1.25; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.7rem); }
h4 { font-size: 1.15rem; }
p  { font-size: 1rem; color: var(--text-mid); }

/* ── Layout ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section { padding: 90px 0; }
.section-alt { background: var(--off-white); }

/* ── Section Heading ── */
.section-heading { text-align: center; margin-bottom: 60px; }
.section-heading .tag {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.section-heading h2 { color: var(--teal); }
.section-heading .divider {
  width: 60px; height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  margin: 18px auto 0;
  border-radius: 2px;
}
.section-heading p { max-width: 600px; margin: 18px auto 0; color: var(--text-light); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 700;
  letter-spacing: 0.5px;
  transition: all var(--transition);
}
.btn-primary {
  background: var(--gold);
  color: var(--teal-dark);
}
.btn-primary:hover {
  background: var(--gold-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(203,161,111,0.4);
}
.btn-outline {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
}
.btn-outline:hover {
  background: var(--white);
  color: var(--teal);
}
.btn-teal {
  background: var(--teal);
  color: var(--white);
}
.btn-teal:hover {
  background: var(--teal-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(30,71,68,0.35);
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
#site-header {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all var(--transition);
  padding: 0;
}
#site-header.scrolled {
  background: var(--teal-dark);
  box-shadow: var(--shadow-md);
}
#site-header.transparent { background: transparent; }

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  padding: 0 40px;
}

.header-logo img { height: 250px; width: auto; }

.header-nav { display: flex; align-items: center; gap: 6px; }

.nav-link {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 50px;
  transition: all var(--transition);
  letter-spacing: 0.3px;
}
.nav-link:hover,
.nav-link.active { background: rgba(203,161,111,0.15); color: var(--gold); }

.header-cta {
  background: var(--gold);
  color: var(--teal-dark) !important;
  padding: 10px 22px;
  border-radius: 50px;
  font-weight: 700;
  font-size: 0.88rem;
  transition: all var(--transition);
}
.header-cta:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
}

/* Mobile hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
}
.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: rotate(45deg) translate(5px,5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px,-5px); }

.mobile-menu {
  display: none;
  background: var(--teal-dark);
  padding: 20px 24px 30px;
  border-top: 1px solid rgba(203,161,111,0.2);
}
.mobile-menu.open { display: block; }
.mobile-menu .nav-link { display: block; padding: 12px 0; border-bottom: 1px solid rgba(255,255,255,0.08); border-radius: 0; }
.mobile-menu .nav-link:last-child { border-bottom: none; }

/* ============================================================
   HERO SECTION
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--teal-dark);
}

.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(21,47,45,0.92) 0%, rgba(30,71,68,0.75) 60%, rgba(21,47,45,0.88) 100%),
    url('../images/hero-bg.jpg') center/cover no-repeat;
}

.hero-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 20% 80%, rgba(203,161,111,0.12) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(203,161,111,0.08) 0%, transparent 50%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 720px;
  padding: 120px 0 80px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(203,161,111,0.15);
  border: 1px solid rgba(203,161,111,0.4);
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 28px;
}

.hero h1 {
  color: var(--white);
  font-weight: 800;
  margin-bottom: 22px;
  line-height: 1.15;
}
.hero h1 span { color: var(--gold); display: block; }

.hero p {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin-bottom: 40px;
}

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

.hero-stats {
  position: absolute;
  bottom: 50px;
  right: 0;
  display: flex;
  gap: 0;
  background: rgba(21,47,45,0.85);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(203,161,111,0.25);
  border-radius: var(--radius-md);
  overflow: hidden;
}
.hero-stat {
  padding: 20px 32px;
  text-align: center;
  border-right: 1px solid rgba(203,161,111,0.2);
}
.hero-stat:last-child { border-right: none; }
.hero-stat .num { font-family: var(--font-display); font-size: 1.9rem; font-weight: 800; color: var(--gold); display: block; }
.hero-stat .lbl { font-size: 0.75rem; color: rgba(255,255,255,0.6); text-transform: uppercase; letter-spacing: 1px; }

/* ============================================================
   MARQUEE STRIP
   ============================================================ */
.marquee-strip {
  background: var(--gold);
  padding: 14px 0;
  overflow: hidden;
  white-space: nowrap;
}
.marquee-track {
  display: inline-flex;
  animation: marquee 28s linear infinite;
}
.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0 36px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--teal-dark);
}
.marquee-item i { font-size: 1rem; }
.marquee-dot { width: 5px; height: 5px; background: var(--teal); border-radius: 50%; flex-shrink: 0; }
@keyframes marquee { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* ============================================================
   ABOUT SECTION
   ============================================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-image-wrap { position: relative; }
.about-image-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-image-main img { width: 100%; height: 480px; object-fit: cover; }

.about-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--gold);
  color: var(--teal-dark);
  padding: 24px 28px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-md);
}
.about-badge .big { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; display: block; line-height: 1; }
.about-badge .small { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; }

.about-content .tag {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 3px;
  text-transform: uppercase; color: var(--gold); margin-bottom: 14px; display: block;
}
.about-content h2 { color: var(--teal); margin-bottom: 20px; }
.about-content > p { margin-bottom: 30px; }

.about-features { display: flex; flex-direction: column; gap: 18px; margin-bottom: 36px; }
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px 22px;
  background: var(--off-white);
  border-radius: var(--radius-md);
  border-left: 4px solid var(--gold);
  transition: all var(--transition);
}
.about-feature:hover { background: #f0ebe2; transform: translateX(4px); }
.about-feature .icon {
  width: 44px; height: 44px;
  background: var(--teal);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}
.about-feature .text h4 { color: var(--teal); margin-bottom: 4px; font-size: 0.95rem; }
.about-feature .text p { font-size: 0.85rem; margin: 0; }

/* ============================================================
   SERVICES SECTION
   ============================================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  border: 1px solid rgba(30,71,68,0.08);
  transition: all var(--transition);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 72px; height: 72px;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: var(--gold);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 24px;
  transition: all var(--transition);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold), var(--gold-dark));
  color: var(--white);
  transform: scale(1.1) rotate(-5deg);
}
.service-card h3 { color: var(--teal); margin-bottom: 12px; font-size: 1.2rem; }
.service-card p { font-size: 0.88rem; color: var(--text-light); line-height: 1.7; }

/* ============================================================
   PACKAGES SECTION
   ============================================================ */
.packages-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.pkg-tab {
  padding: 10px 26px;
  border-radius: 50px;
  border: 2px solid var(--teal);
  color: var(--teal);
  font-weight: 700;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all var(--transition);
}
.pkg-tab.active, .pkg-tab:hover {
  background: var(--teal);
  color: var(--white);
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.package-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  border: 1px solid rgba(0,0,0,0.06);
}
.package-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }

.pkg-image {
  position: relative;
  height: 220px;
  overflow: hidden;
  background: var(--teal);
  display: flex; align-items: center; justify-content: center;
}
.pkg-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.package-card:hover .pkg-image img { transform: scale(1.05); }
.pkg-badge {
  position: absolute;
  top: 14px; right: 14px;
  background: var(--gold);
  color: var(--teal-dark);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
}
.pkg-body { padding: 26px; }
.pkg-meta {
  display: flex; gap: 16px;
  margin-bottom: 12px;
}
.pkg-meta span {
  font-size: 0.78rem;
  color: var(--text-light);
  display: flex; align-items: center; gap: 5px;
}
.pkg-meta i { color: var(--gold); }
.pkg-body h3 { color: var(--teal); margin-bottom: 10px; font-size: 1.1rem; }
.pkg-body p { font-size: 0.84rem; color: var(--text-light); margin-bottom: 20px; line-height: 1.65; }
.pkg-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 26px;
  background: var(--off-white);
  border-top: 1px solid rgba(0,0,0,0.06);
}
.pkg-price .from { font-size: 0.72rem; color: var(--text-light); display: block; }
.pkg-price .amount {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--teal);
}
.pkg-price .per { font-size: 0.72rem; color: var(--text-light); }
.pkg-link {
  font-size: 0.82rem;
  font-weight: 700;
  color: var(--gold-dark);
  display: flex; align-items: center; gap: 5px;
  transition: gap var(--transition);
}
.pkg-link:hover { gap: 10px; }

/* ============================================================
   WHY CHOOSE US
   ============================================================ */
.why-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list { display: flex; flex-direction: column; gap: 20px; }
.why-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
  padding: 24px;
  border-radius: var(--radius-md);
  background: var(--white);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.why-item:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.why-num {
  font-family: var(--font-display);
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold);
  opacity: 0.4;
  line-height: 1;
  flex-shrink: 0;
  width: 50px;
}
.why-text h4 { color: var(--teal); margin-bottom: 6px; }
.why-text p { font-size: 0.87rem; }

.why-visual {
  position: relative;
  height: 540px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-mid) 100%);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 50px;
}
.why-visual::before {
  content: '';
  position: absolute; inset: 0;
  background: url('../images/why-bg.jpg') center/cover no-repeat;
  opacity: 0.2;
}
.why-visual-inner { position: relative; z-index: 1; text-align: center; }
.why-visual-inner .big-icon {
  font-size: 4rem;
  color: var(--gold);
  margin-bottom: 24px;
  display: block;
}
.why-visual-inner h3 { color: var(--white); margin-bottom: 14px; }
.why-visual-inner p { color: rgba(255,255,255,0.75); margin-bottom: 28px; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-wrap { position: relative; }
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 6rem;
  color: var(--gold);
  opacity: 0.15;
  position: absolute;
  top: -10px; left: 20px;
  line-height: 1;
}
.testimonial-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card blockquote {
  font-size: 0.92rem;
  color: var(--text-mid);
  line-height: 1.75;
  margin-bottom: 24px;
  font-style: italic;
}
.reviewer {
  display: flex;
  align-items: center;
  gap: 14px;
}
.reviewer-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  flex-shrink: 0;
}
.reviewer-info .name { font-weight: 700; color: var(--teal); font-size: 0.9rem; }
.reviewer-info .loc { font-size: 0.78rem; color: var(--text-light); }

/* ============================================================
   GALLERY SECTION
   ============================================================ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: auto auto;
  gap: 16px;
}
.gallery-item {
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  background: var(--teal);
}
.gallery-item:nth-child(1) { grid-column: span 2; grid-row: span 2; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; min-height: 200px; }
.gallery-item:nth-child(1) img { min-height: 420px; }
.gallery-overlay {
  position: absolute; inset: 0;
  background: rgba(30,71,68,0);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.gallery-overlay i {
  color: var(--white);
  font-size: 2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item:hover .gallery-overlay { background: rgba(30,71,68,0.55); }
.gallery-item:hover .gallery-overlay i { opacity: 1; }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-wrapper {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}
.contact-info-card {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  border-radius: var(--radius-lg);
  padding: 50px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.contact-info-card::before {
  content: '';
  position: absolute;
  top: -50px; right: -50px;
  width: 200px; height: 200px;
  background: rgba(203,161,111,0.1);
  border-radius: 50%;
}
.contact-info-card h3 { margin-bottom: 10px; }
.contact-info-card > p { color: rgba(255,255,255,0.7); margin-bottom: 36px; }
.contact-items { display: flex; flex-direction: column; gap: 24px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-item .ci-icon {
  width: 44px; height: 44px;
  background: rgba(203,161,111,0.2);
  border: 1px solid rgba(203,161,111,0.4);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold);
  font-size: 1rem;
  flex-shrink: 0;
}
.contact-item .ci-text .label { font-size: 0.72rem; text-transform: uppercase; letter-spacing: 1.5px; color: rgba(255,255,255,0.5); margin-bottom: 4px; }
.contact-item .ci-text a,
.contact-item .ci-text span { color: var(--white); font-weight: 600; font-size: 0.92rem; transition: color var(--transition); }
.contact-item .ci-text a:hover { color: var(--gold); }

.social-row { display: flex; gap: 10px; margin-top: 36px; }
.social-btn {
  width: 40px; height: 40px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  transition: all var(--transition);
}
.social-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--teal-dark); }

/* Contact Form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 50px 44px;
  box-shadow: var(--shadow-md);
}
.contact-form-card h3 { color: var(--teal); margin-bottom: 8px; }
.contact-form-card > p { color: var(--text-light); margin-bottom: 32px; font-size: 0.9rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 13px 18px;
  border: 2px solid rgba(30,71,68,0.12);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.92rem;
  color: var(--text-dark);
  transition: border-color var(--transition);
  background: var(--off-white);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--teal); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-submit { width: 100%; padding: 15px; font-size: 1rem; }

/* ============================================================
   NEWSLETTER STRIP
   ============================================================ */
.newsletter {
  background: linear-gradient(135deg, var(--teal), var(--teal-mid));
  padding: 70px 0;
}
.newsletter-inner { text-align: center; }
.newsletter h2 { color: var(--white); margin-bottom: 12px; }
.newsletter p { color: rgba(255,255,255,0.75); margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  max-width: 500px;
  margin: 0 auto;
  border-radius: 50px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 26px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 0.92rem;
}
.newsletter-form button {
  padding: 16px 30px;
  background: var(--gold);
  color: var(--teal-dark);
  font-weight: 700;
  font-size: 0.88rem;
  white-space: nowrap;
  transition: background var(--transition);
}
.newsletter-form button:hover { background: var(--gold-dark); }

/* ============================================================
   FOOTER
   ============================================================ */
#site-footer {
  background: var(--teal-dark);
  color: rgba(255,255,255,0.7);
}
.footer-top {
  padding: 70px 0 50px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 50px;
}
.footer-logo { display: block; width: 130px; margin-bottom: 20px; }
.footer-about p { font-size: 0.87rem; line-height: 1.75; margin-bottom: 24px; color:#b08850}
.footer-social { display: flex; gap: 10px; }
.footer-col h5 {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
}
.footer-col ul li { margin-bottom: 10px; }
.footer-col ul li a {
  font-size: 0.87rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--transition);
  display: flex; align-items: center; gap: 6px;
}
.footer-col ul li a::before {
  content: '›';
  color: var(--gold);
  font-size: 1rem;
}
.footer-col ul li a:hover { color: var(--gold); }
.footer-contact-item { display: flex; gap: 12px; align-items: flex-start; margin-bottom: 14px; }
.footer-contact-item i { color: var(--gold); margin-top: 3px; font-size: 0.85rem; }
.footer-contact-item span { font-size: 0.85rem; color: rgba(255,255,255,0.6); }
.footer-contact-item a { color: rgba(255,255,255,0.6); font-size: 0.85rem; }
.footer-contact-item a:hover { color: var(--gold); }

.footer-bottom {
  padding: 22px 0;
  border-top: 1px solid rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom a { color: var(--gold); }
.footer-bottom p {color:#b08850}

/* ============================================================
   PAGE HERO (inner pages)
   ============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
  padding: 140px 0 80px;
  text-align: center;
}
.page-hero h1 { color: var(--white); margin-bottom: 12px; }
.breadcrumb {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumb a { color: var(--gold); }
.breadcrumb span { color: rgba(255,255,255,0.4); }

/* ============================================================
   FAQ PAGE
   ============================================================ */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item {
  border: 1px solid rgba(30,71,68,0.12);
  border-radius: var(--radius-md);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq-question {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 26px;
  background: var(--white);
  cursor: pointer;
  font-weight: 700;
  color: var(--teal);
  font-size: 0.95rem;
  gap: 20px;
  transition: background var(--transition);
}
.faq-question:hover { background: var(--off-white); }
.faq-toggle {
  width: 30px; height: 30px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
  flex-shrink: 0;
  transition: transform var(--transition), background var(--transition);
}
.faq-item.open .faq-toggle { transform: rotate(45deg); background: var(--gold); }
.faq-answer {
  padding: 0 26px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
  color: var(--text-mid);
  font-size: 0.92rem;
  line-height: 1.75;
}
.faq-item.open .faq-answer { padding: 20px 26px 26px; }

/* ============================================================
   SCROLL TO TOP
   ============================================================ */
#scrollTop {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--teal-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  z-index: 999;
}
#scrollTop.visible { opacity: 1; pointer-events: auto; }
#scrollTop:hover { transform: translateY(-3px); background: var(--gold-dark); }

/* ============================================================
   UTILITY
   ============================================================ */
.text-gold { color: var(--gold); }
.text-teal { color: var(--teal); }
.text-center { text-align: center; }
.mt-auto { margin-top: auto; }
.hidden { display: none; }

/* ============================================================
   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); }

/* Stagger children */
.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.1s; }
.stagger > *:nth-child(3) { transition-delay: 0.2s; }
.stagger > *:nth-child(4) { transition-delay: 0.3s; }
.stagger > *:nth-child(5) { transition-delay: 0.4s; }
.stagger > *:nth-child(6) { transition-delay: 0.5s; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
  .header-inner { padding: 0 24px; }
  .about-grid, .why-wrapper, .contact-wrapper { gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .services-grid, .packages-grid, .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .header-nav { display: none; }
  .hamburger { display: flex; }
  .about-grid, .why-wrapper, .contact-wrapper { grid-template-columns: 1fr; }
  .about-badge { bottom: -16px; right: 16px; }
  .hero-stats { position: static; margin-top: 40px; border-radius: var(--radius-md); flex-wrap: wrap; }
  .hero-stat { flex: 1; min-width: 100px; padding: 16px 20px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-item:nth-child(1) { grid-column: span 2; }
  .services-grid, .packages-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .form-row { grid-template-columns: 1fr; }
  .section { padding: 60px 0; }
  .why-visual { height: 280px; }
  .header-inner { height: 70px; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; }
  .btn { width: 100%; justify-content: center; }
  .packages-tabs { gap: 8px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-md); }
  .newsletter-form input { padding: 14px 20px; }
  .newsletter-form button { border-radius: 0; }
}
