/* ============================================================
   JOURNEY MAP — Main Stylesheet
   Vibrant Indian-inspired travel design
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;0,900;1,400&family=DM+Sans:wght@300;400;500;600&family=Bebas+Neue&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
  --saffron:     #E8631A;
  --saffron-lt:  #F5894A;
  --saffron-dk:  #C04E0F;
  --gold:        #F0A500;
  --gold-lt:     #FFD166;
  --indigo:      #1B3A6B;
  --indigo-lt:   #2C5282;
  --teal:        #0D7377;
  --teal-lt:     #14A085;
  --earth:       #7C5C3E;
  --rose:        #D4496B;
  --cream:       #FDF6ED;
  --warm-white:  #FFFBF4;
  --dark:        #1A1208;
  --dark-2:      #2D2112;
  --text:        #3B2E1E;
  --text-muted:  #7A6754;
  --border:      #E8D9C8;
  --shadow:      rgba(26,18,8,0.12);

  --font-display: 'Playfair Display', Georgia, serif;
  --font-body:    'DM Sans', sans-serif;
  --font-hero:    'Bebas Neue', sans-serif;

  --radius:     12px;
  --radius-lg:  20px;
  --transition: 0.35s cubic-bezier(0.4,0,0.2,1);
  --max-width:  1280px;
}

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

/* ── Utility ───────────────────────────────────────────────── */
.container { max-width: var(--max-width); margin: 0 auto; padding: 0 24px; }
.section-pad { padding: 96px 0; }
.section-pad-sm { padding: 64px 0; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: 4px 12px;
  border-radius: 100px;
  background: var(--saffron);
  color: #fff;
}
.tag.teal   { background: var(--teal); }
.tag.gold   { background: var(--gold); color: var(--dark); }
.tag.indigo { background: var(--indigo); }
.tag.rose   { background: var(--rose); }

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .04em;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}
.btn-primary {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}
.btn-primary:hover {
  background: var(--saffron-dk);
  border-color: var(--saffron-dk);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232,99,26,0.35);
}
.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.6);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.15);
  border-color: #fff;
}
.btn-dark {
  background: var(--dark);
  color: #fff;
  border-color: var(--dark);
}
.btn-dark:hover {
  background: var(--dark-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(26,18,8,0.25);
}

/* ── Cookie Banner ─────────────────────────────────────────── */
#cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--dark);
  color: #fff;
  padding: 20px 32px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  box-shadow: 0 -4px 30px rgba(0,0,0,0.3);
  transform: translateY(100%);
  transition: transform 0.5s cubic-bezier(0.4,0,0.2,1);
}
#cookie-banner.visible { transform: translateY(0); }
#cookie-banner p { flex: 1; min-width: 240px; font-size: 14px; color: rgba(255,255,255,0.85); }
#cookie-banner a { color: var(--gold); }
#cookie-banner .cookie-actions { display: flex; gap: 12px; }
#cookie-banner .btn-accept {
  padding: 10px 24px;
  background: var(--saffron);
  color: #fff;
  border-radius: 100px;
  font-size: 14px;
  font-weight: 600;
  transition: all var(--transition);
}
#cookie-banner .btn-accept:hover { background: var(--saffron-dk); }
#cookie-banner .btn-decline {
  padding: 10px 24px;
  background: transparent;
  color: rgba(255,255,255,0.6);
  border-radius: 100px;
  border: 1px solid rgba(255,255,255,0.25);
  font-size: 14px;
  font-weight: 500;
  transition: all var(--transition);
}
#cookie-banner .btn-decline:hover { border-color: rgba(255,255,255,0.6); color: #fff; }

/* ── Navbar ────────────────────────────────────────────────── */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  transition: all 0.4s ease;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  transition: all 0.4s ease;
}
#navbar.scrolled .nav-inner {
  background: rgba(253,246,237,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  padding: 12px 40px;
  box-shadow: 0 2px 30px var(--shadow);
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
  transition: color var(--transition);
}
#navbar.scrolled .nav-logo { color: var(--dark); }
.nav-logo .logo-icon {
  width: 36px; height: 36px;
  background: var(--saffron);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}
.nav-links a {
  padding: 8px 12px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  border-radius: 8px;
  transition: all var(--transition);
  white-space: nowrap;
}
#navbar.scrolled .nav-links a { color: var(--text); }
.nav-links a:hover {
  background: rgba(255,255,255,0.15);
  color: #fff;
}
#navbar.scrolled .nav-links a:hover {
  background: rgba(232,99,26,0.1);
  color: var(--saffron);
}
.nav-links a.active { color: var(--gold); font-weight: 600; }
#navbar.scrolled .nav-links a.active { color: var(--saffron); }
.nav-cta {
  padding: 9px 22px !important;
  background: var(--saffron) !important;
  color: #fff !important;
  border-radius: 100px !important;
}
.nav-cta:hover { background: var(--saffron-dk) !important; color: #fff !important; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
  cursor: pointer;
}
.hamburger span {
  width: 24px; height: 2px;
  background: #fff;
  transition: all var(--transition);
  display: block;
}
#navbar.scrolled .hamburger span { background: var(--dark); }
.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); }

/* Mobile Nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: var(--dark);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.mobile-nav.open {
  display: flex;
  opacity: 1;
  pointer-events: all;
}
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 28px;
  color: rgba(255,255,255,0.8);
  padding: 8px 24px;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--gold); }

/* ── Hero (Home) ───────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://d1bv4heaa2n05k.cloudfront.net/user-images/1444124382002/shutterstock-59760706small_destinationMain_1444124438669.jpeg');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: heroZoom 8s ease-out forwards;
}
@keyframes heroZoom {
  from { transform: scale(1.1); }
  to   { transform: scale(1.0); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(26,18,8,0.15) 0%,
    rgba(26,18,8,0.1) 40%,
    rgba(26,18,8,0.75) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 860px;
  padding: 0 40px 80px;
  animation: heroUp 1s 0.3s both;
}
@keyframes heroUp {
  from { opacity:0; transform: translateY(40px); }
  to   { opacity:1; transform: translateY(0); }
}
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold-lt);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero-eyebrow::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--gold);
  display: block;
}
.hero-title {
  font-family: var(--font-hero);
  font-size: clamp(64px, 9vw, 140px);
  line-height: 0.92;
  color: #fff;
  letter-spacing: .01em;
  margin-bottom: 24px;
}
.hero-title span { color: var(--gold-lt); }
.hero-subtitle {
  font-size: clamp(16px, 2vw, 20px);
  color: rgba(255,255,255,0.82);
  max-width: 520px;
  margin-bottom: 40px;
  font-weight: 300;
  line-height: 1.6;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 40px; right: 48px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.6);
  font-size: 11px;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.scroll-line {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.5));
  animation: scrollLine 2s infinite;
}
@keyframes scrollLine {
  0%   { height: 20px; opacity: 0; }
  50%  { height: 60px; opacity: 1; }
  100% { height: 20px; opacity: 0; }
}

/* ── Section Headers ───────────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}
.section-tag {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--saffron);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.section-tag::before, .section-tag::after {
  content: '';
  width: 32px; height: 2px;
  background: var(--saffron);
  display: block;
}
.section-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 16px;
}
.section-desc {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  font-weight: 300;
}

/* ── Stats Bar ─────────────────────────────────────────────── */
.stats-bar {
  background: var(--indigo);
  padding: 40px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
}
.stat-item {
  text-align: center;
  color: #fff;
  padding: 20px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-item:last-child { border-right: none; }
.stat-num {
  font-family: var(--font-hero);
  font-size: 52px;
  line-height: 1;
  color: var(--gold-lt);
  letter-spacing: .02em;
}
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  letter-spacing: .06em;
  text-transform: uppercase;
  margin-top: 6px;
}

/* ── Featured Blogs Grid ───────────────────────────────────── */
.featured-section { background: var(--cream); }

.blogs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.blogs-grid.two-col { grid-template-columns: repeat(2, 1fr); }

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 4px 24px var(--shadow);
  transition: all var(--transition);
  display: flex;
  flex-direction: column;
}
.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 48px rgba(26,18,8,0.18);
}
.blog-card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
  position: relative;
}
.blog-card-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.blog-card:hover .blog-card-img img { transform: scale(1.08); }
.card-category {
  position: absolute;
  top: 16px; left: 16px;
}
.blog-card-body {
  padding: 28px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 14px;
}
.blog-meta span { display: flex; align-items: center; gap: 5px; }
.blog-card-title {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.3;
  margin-bottom: 12px;
  flex: 1;
}
.blog-card-title a:hover { color: var(--saffron); }
.blog-card-excerpt {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.65;
  margin-bottom: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.blog-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--border);
}
.author-mini {
  display: flex;
  align-items: center;
  gap: 10px;
}
.author-mini img {
  width: 36px; height: 36px;
  border-radius: 50%;
  object-fit: cover;
}
.author-mini .name { font-size: 13px; font-weight: 600; color: var(--dark); }
.read-more {
  font-size: 13px;
  font-weight: 600;
  color: var(--saffron);
  display: flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition);
}
.read-more:hover { gap: 8px; }

/* ── Destinations Band ─────────────────────────────────────── */
.destinations-section { background: var(--dark); padding: 96px 0; }
.dest-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  grid-template-rows: 280px 280px;
  gap: 16px;
}
.dest-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}
.dest-card:first-child { grid-row: 1 / 3; }
.dest-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.dest-card:hover img { transform: scale(1.08); }
.dest-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26,18,8,0.75) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.dest-name {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 700;
  color: #fff;
}
.dest-count {
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  margin-top: 4px;
}

/* ── CTA Band ──────────────────────────────────────────────── */
.cta-band {
  background: var(--saffron);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute;
  right: -80px; top: -80px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
}
.cta-band::after {
  content: '';
  position: absolute;
  left: 40%; bottom: -100px;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: rgba(255,255,255,0.06);
}
.cta-inner {
  position: relative; z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-text .headline {
  font-family: var(--font-display);
  font-size: clamp(28px, 3.5vw, 44px);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 12px;
}
.cta-text p { font-size: 17px; color: rgba(255,255,255,0.82); max-width: 480px; }
.cta-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.btn-white {
  background: #fff;
  color: var(--saffron);
  border: 2px solid #fff;
}
.btn-white:hover {
  background: transparent;
  color: #fff;
  transform: translateY(-2px);
}

/* ── Newsletter ────────────────────────────────────────────── */
.newsletter-section {
  background: url('https://images.unsplash.com/photo-1519750157634-b6d493a0f77c?w=1800&q=60') center/cover;
  position: relative;
  padding: 120px 0;
}
.newsletter-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(26,18,8,0.72);
}
.newsletter-inner {
  position: relative; z-index: 1;
  text-align: center;
  max-width: 580px;
  margin: 0 auto;
}
.newsletter-inner h2 {
  font-family: var(--font-display);
  font-size: clamp(28px, 4vw, 44px);
  color: #fff;
  margin-bottom: 16px;
}
.newsletter-inner p { color: rgba(255,255,255,0.75); font-size: 16px; margin-bottom: 36px; }
.newsletter-form {
  display: flex;
  gap: 0;
  background: #fff;
  border-radius: 100px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.newsletter-form input {
  flex: 1;
  padding: 16px 28px;
  border: none;
  outline: none;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--dark);
}
.newsletter-form button {
  padding: 16px 32px;
  background: var(--saffron);
  color: #fff;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  border-radius: 0 100px 100px 0;
  transition: background var(--transition);
  white-space: nowrap;
}
.newsletter-form button:hover { background: var(--saffron-dk); }

/* ── Footer ────────────────────────────────────────────────── */
footer {
  background: var(--dark);
  color: rgba(255,255,255,0.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .nav-logo { color: #fff; margin-bottom: 20px; }
.footer-brand p { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 24px; }
.footer-social a {
  width: 38px; height: 38px;
  background: rgba(255,255,255,0.08);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
}
.footer-social a:hover { background: var(--saffron); color: #fff; transform: translateY(-3px); }
.footer-col h4 {
  font-family: var(--font-display);
  font-size: 16px;
  color: #fff;
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col ul { display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color var(--transition);
}
.footer-col ul li a:hover { color: var(--gold-lt); }
.footer-address {
  font-size: 13px;
  line-height: 1.8;
  color: rgba(255,255,255,0.55);
  margin-bottom: 8px;
}
.footer-address a { color: var(--gold-lt); }
.footer-bottom {
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }
.footer-links { display: flex; gap: 24px; }
.footer-links a { font-size: 13px; color: rgba(255,255,255,0.4); transition: color var(--transition); }
.footer-links a:hover { color: var(--gold-lt); }

/* ── Modal / Popup ─────────────────────────────────────────── */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26,18,8,0.75);
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--transition);
}
.modal-overlay.open { opacity: 1; pointer-events: all; }
.modal {
  background: #fff;
  border-radius: var(--radius-lg);
  max-width: 540px;
  width: 100%;
  padding: 48px;
  position: relative;
  transform: scale(0.95) translateY(20px);
  transition: transform var(--transition);
  max-height: 90vh;
  overflow-y: auto;
}
.modal-overlay.open .modal { transform: scale(1) translateY(0); }
.modal-close {
  position: absolute;
  top: 20px; right: 20px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: var(--cream);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  color: var(--text-muted);
  cursor: pointer;
  transition: all var(--transition);
}
.modal-close:hover { background: var(--saffron); color: #fff; }
.modal-tag { margin-bottom: 16px; }
.modal h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  margin-bottom: 8px;
  line-height: 1.2;
}
.modal p { font-size: 15px; color: var(--text-muted); margin-bottom: 28px; }

/* ── Forms ─────────────────────────────────────────────────── */
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 8px;
  letter-spacing: .03em;
}
.form-control {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--text);
  background: #fff;
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-control:focus {
  border-color: var(--saffron);
  box-shadow: 0 0 0 3px rgba(232,99,26,0.12);
}
.form-control::placeholder { color: var(--text-muted); opacity: 0.6; }
textarea.form-control { resize: vertical; min-height: 120px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.checkbox-group {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 20px;
}
.checkbox-group input[type="checkbox"] {
  width: 18px; height: 18px;
  margin-top: 2px;
  flex-shrink: 0;
  accent-color: var(--saffron);
  cursor: pointer;
}
.checkbox-group label {
  font-size: 13px;
  color: var(--text-muted);
  cursor: pointer;
  line-height: 1.5;
}
.checkbox-group label a { color: var(--saffron); }
.form-error {
  font-size: 12px;
  color: var(--rose);
  margin-top: 5px;
  display: none;
}
.form-control.error { border-color: var(--rose); }
.form-success {
  text-align: center;
  padding: 32px;
  display: none;
}
.form-success .success-icon {
  font-size: 48px;
  margin-bottom: 16px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 8px;
}
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ── Page Hero (Interior Pages) ───────────────────────────── */
.page-hero {
  position: relative;
  height: 480px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26,18,8,0.3), rgba(26,18,8,0.65));
  z-index: 1;
}
.page-hero-content {
  position: relative; z-index: 2;
  padding: 0 40px 60px;
}
.page-hero-content .breadcrumb {
  font-size: 12px;
  color: rgba(255,255,255,0.6);
  margin-bottom: 12px;
  letter-spacing: .05em;
}
.page-hero-content .breadcrumb a { color: var(--gold-lt); }
.page-hero-content h1 {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: #fff;
  line-height: 1.1;
}

/* ── Blog Listing Page ─────────────────────────────────────── */
.blog-page { padding: 80px 0; }
.blog-filter {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 48px;
  justify-content: center;
}
.filter-btn {
  padding: 9px 22px;
  border-radius: 100px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
  background: transparent;
  border: 1.5px solid var(--border);
  cursor: pointer;
  transition: all var(--transition);
}
.filter-btn.active, .filter-btn:hover {
  background: var(--saffron);
  color: #fff;
  border-color: var(--saffron);
}

/* ── Blog Detail Page ──────────────────────────────────────── */
.blog-detail { max-width: 820px; margin: 0 auto; padding: 80px 24px; }
.blog-detail-header { margin-bottom: 40px; }
.blog-detail-header .tag { margin-bottom: 20px; }
.blog-detail-title {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 52px);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.blog-detail-meta {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 20px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  margin-bottom: 40px;
}
.author-card {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-card img {
  width: 44px; height: 44px;
  border-radius: 50%;
  object-fit: cover;
}
.author-card .name { font-weight: 600; font-size: 14px; color: var(--dark); }
.author-card .date { font-size: 13px; color: var(--text-muted); }
.meta-divider { width: 1px; height: 36px; background: var(--border); }
.meta-item { font-size: 13px; color: var(--text-muted); display: flex; align-items: center; gap: 6px; }
.blog-cover {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
  border-radius: var(--radius-lg);
  margin-bottom: 48px;
}
.blog-body h2 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--dark);
  margin: 40px 0 16px;
  line-height: 1.2;
}
.blog-body p {
  font-size: 17px;
  line-height: 1.85;
  color: var(--text);
  margin-bottom: 20px;
}
.blog-tags { margin-top: 48px; display: flex; flex-wrap: wrap; gap: 8px; }
.blog-tags .tag-item {
  padding: 6px 16px;
  background: var(--cream);
  color: var(--text-muted);
  border-radius: 100px;
  font-size: 13px;
  border: 1px solid var(--border);
  transition: all var(--transition);
}
.blog-tags .tag-item:hover { background: var(--saffron); color: #fff; border-color: var(--saffron); }

.related-blogs { padding: 80px 0; background: var(--cream); }

/* ── About Page ────────────────────────────────────────────── */
.about-mission {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  padding: 96px 0;
}
.about-img-wrap {
  position: relative;
}
.about-img-main {
  width: 100%;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: var(--radius-lg);
}
.about-img-badge {
  position: absolute;
  bottom: -24px; right: -24px;
  background: var(--saffron);
  color: #fff;
  padding: 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  box-shadow: 0 8px 32px rgba(232,99,26,0.3);
}
.about-img-badge .num {
  font-family: var(--font-hero);
  font-size: 48px;
  line-height: 1;
  color: #fff;
}
.about-img-badge .label {
  font-size: 12px;
  color: rgba(255,255,255,0.8);
  letter-spacing: .1em;
  text-transform: uppercase;
}
.about-text h2 {
  font-family: var(--font-display);
  font-size: clamp(32px, 3.5vw, 48px);
  color: var(--dark);
  line-height: 1.15;
  margin-bottom: 24px;
}
.about-text p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 20px;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 32px;
}
.value-card {
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  border-left: 3px solid var(--saffron);
}
.value-card h4 { font-size: 15px; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.value-card p { font-size: 13px; color: var(--text-muted); line-height: 1.6; }

/* ── Contact Page ──────────────────────────────────────────── */
.contact-section { padding: 96px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: var(--font-display);
  font-size: 40px;
  color: var(--dark);
  margin-bottom: 16px;
  line-height: 1.15;
}
.contact-info > p { font-size: 16px; color: var(--text-muted); margin-bottom: 40px; }
.contact-card {
  display: flex;
  gap: 16px;
  padding: 20px;
  background: var(--cream);
  border-radius: var(--radius);
  margin-bottom: 16px;
  transition: all var(--transition);
}
.contact-card:hover { box-shadow: 0 4px 20px var(--shadow); transform: translateY(-2px); }
.contact-card-icon {
  width: 44px; height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--saffron);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.contact-card-text h4 { font-weight: 700; font-size: 14px; color: var(--dark); margin-bottom: 4px; }
.contact-card-text p { font-size: 14px; color: var(--text-muted); }
.contact-form-wrap {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 48px;
  box-shadow: 0 8px 40px var(--shadow);
}
.contact-form-wrap h3 {
  font-family: var(--font-display);
  font-size: 24px;
  color: var(--dark);
  margin-bottom: 32px;
}

/* ── Legal Pages ───────────────────────────────────────────── */
.legal-content {
  max-width: 820px;
  margin: 0 auto;
  padding: 80px 24px;
}
.legal-content h2 {
  font-family: var(--font-display);
  font-size: 26px;
  color: var(--dark);
  margin: 40px 0 16px;
}
.legal-content p, .legal-content li {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.legal-content ul { padding-left: 24px; list-style: disc; }
.legal-content a { color: var(--saffron); }
.legal-date {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 40px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--border);
}

/* ── Responsive ────────────────────────────────────────────── */
@media (max-width: 1080px) {
  .blogs-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .dest-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .dest-card:first-child { grid-row: auto; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-mission { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 16px 20px; }
  .hero-content { padding: 0 20px 60px; }
  .blogs-grid { grid-template-columns: 1fr; }
  .blogs-grid.two-col { grid-template-columns: 1fr; }
  .dest-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .section-pad { padding: 64px 0; }
  .form-row { grid-template-columns: 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .contact-form-wrap { padding: 28px 20px; }
  .modal { padding: 32px 24px; }
  .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); }
  .newsletter-form input { border-radius: var(--radius-lg); }
  .newsletter-form button { border-radius: var(--radius-lg); }
}

@media (max-width: 480px) {
  .hero-title { font-size: 56px; }
  .stat-num { font-size: 40px; }
  .cta-inner { flex-direction: column; text-align: center; }
  .cta-actions { justify-content: center; }
}
