@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:wght@600;700&family=DM+Sans:wght@400;500;600;700&display=swap');

:root {
  --primary:       #0D3B2A;
  --primary-mid:   #1A6B4A;
  --primary-light: #2D9B6F;
  --accent:        #E8A020;
  --accent-dark:   #C4851A;
  --text:          #1A1A1A;
  --text-light:    #5A6472;
  --bg:            #FFFFFF;
  --bg-alt:        #F5F7F5;
  --border:        #E0E8E4;
  --radius:        8px;
  --shadow:        0 4px 16px rgba(0,0,0,0.10);
  --transition:    0.25s ease;
  --container:     1180px;

  /* Legacy aliases */
  --green-deep:    var(--primary);
  --green-mid:     var(--primary-mid);
  --green-light:   var(--primary-light);
  --green-pale:    #D4EDE0;
  --gold:          var(--accent);
  --sand:          var(--bg-alt);
  --white:         #FFFFFF;
  --text-muted:    var(--text-light);
  --emerald:       var(--primary-mid);
  --emerald-deep:  var(--primary);
  --emerald-vivid: var(--primary-light);
  --emerald-pale:  #D4EDE0;
  --emerald-glow:  rgba(26,107,74,0.12);
  --amber:         var(--accent);
  --amber-pale:    #FEF3DC;
  --sky:           #2D9B9B;
  --muted:         var(--text-light);
  --ink:           var(--text);
  --ink-80:        #333333;
  --surface:       var(--bg-alt);
  --wa-green:      #25D366;
  --color-success: #16A34A;
  --color-danger:  #DC2626;
  --color-warning: #D97706;
  --radius-xs:     4px;
  --radius-sm:     var(--radius);
  --radius-md:     12px;
  --radius-lg:     20px;
  --radius-full:   999px;
  --shadow-xs:     0 1px 4px rgba(0,0,0,0.06);
  --shadow-sm:     var(--shadow);
  --shadow-md:     0 8px 28px rgba(0,0,0,0.14);
  --shadow-lg:     0 16px 48px rgba(0,0,0,0.18);
  --shadow-glow:   0 8px 24px rgba(13,59,42,0.25);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'DM Sans', 'Segoe UI', system-ui, sans-serif; color: var(--text); background: var(--bg); line-height: 1.7; font-size: 16px; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
img { max-width: 100%; display: block; }
ul, ol { list-style: none; }
a { color: var(--primary-mid); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--accent-dark); }

h1, h2, h3 { font-family: 'DM Sans', sans-serif; font-weight: 700; line-height: 1.25; color: var(--text); }
h4 { font-weight: 600; color: var(--text); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }
section { padding: 80px 0; }
.section-sm { padding: 44px 0; }
.section { padding: 80px 0; }
.bg-alt { background: var(--bg-alt); }
.text-center { text-align: center; }

/* ─── Section header ───────────────────────────────────────────────────── */
.section-label {
  display: block;
  font-size: 0.78rem; font-weight: 700; letter-spacing: 2px;
  text-transform: uppercase; color: var(--primary-mid);
  margin-bottom: 8px;
}
.section-title { font-size: clamp(1.6rem, 3vw, 2.2rem); color: var(--primary); margin-bottom: 14px; }
.section-sub { font-size: 1rem; color: var(--text-light); max-width: 560px; margin-bottom: 44px; }

.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow {
  display: inline-block; font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--primary-mid);
  background: #D4EDE0; padding: 4px 14px; border-radius: var(--radius-full); margin-bottom: 12px;
}
.section-header h2 { color: var(--primary); margin-bottom: 12px; }
.section-header p { color: var(--text-light); max-width: 500px; margin: 0 auto; }
.section-link { display: inline-flex; align-items: center; gap: 4px; font-size: 0.9rem; font-weight: 600; color: var(--primary-mid); margin-top: 8px; }
.section-link:hover { color: var(--primary); gap: 8px; }

/* ─── Buttons ──────────────────────────────────────────────────────────── */
.btn {
  display: inline-block; padding: 13px 28px;
  border-radius: 50px; font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; font-weight: 600; cursor: pointer; border: none;
  transition: transform 0.2s, box-shadow 0.2s; text-decoration: none; white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 8px 20px rgba(0,0,0,0.15); }
.btn-full { width: 100%; text-align: center; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-mid); color: #fff; }
.btn-secondary { background: transparent; color: var(--primary); border: 2px solid var(--primary); }
.btn-secondary:hover { background: var(--primary); color: #fff; }
.btn-accent { background: var(--accent); color: #000; }
.btn-accent:hover { background: var(--accent-dark); color: #fff; }
.btn-wa { background: var(--wa-green); color: #fff; font-weight: 700; }
.btn-wa:hover { background: #1db954; color: #fff; }
.btn-ghost { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.65); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); color: #fff; }
.btn-outline-light { background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.65); border-radius: 50px; padding: 13px 28px; }
.btn-outline-light:hover { background: #fff; color: var(--primary); }
.btn-amber { background: var(--accent); color: #000; }
.btn-amber:hover { background: var(--accent-dark); color: #fff; }

/* ─── Badges & Tags ────────────────────────────────────────────────────── */
.badge { display: inline-block; padding: 4px 12px; background: var(--accent); color: #000; border-radius: 50px; font-size: 0.76rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.04em; }
.badge-emerald { background: var(--primary-mid); color: #fff; }
.tag { display: inline-block; padding: 4px 11px; background: #D4EDE0; color: var(--primary); border-radius: 50px; font-size: 0.8rem; font-weight: 500; }

/* ─── Cards ────────────────────────────────────────────────────────────── */
.card {
  background: var(--bg); border: 1px solid var(--border);
  border-radius: 16px; overflow: hidden;
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}
.card:hover { box-shadow: var(--shadow-md); transform: translateY(-5px); }

/* card skeleton */
.card-skeleton {
  height: 320px;
  background: linear-gradient(90deg, var(--bg-alt) 25%, #e8ede9 50%, var(--bg-alt) 75%);
  background-size: 400% 100%;
  animation: shimmer 1.4s ease infinite;
  border: none;
}
@keyframes shimmer { 0% { background-position: 100% 0; } 100% { background-position: -100% 0; } }

/* card image area — full overlay layout */
.card-img-area {
  height: 160px; position: relative; overflow: hidden;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 12px 14px 14px;
}
/* strong bottom-up gradient for title legibility */
.card-img-area::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(0,0,0,0.72) 0%,
    rgba(0,0,0,0.35) 45%,
    rgba(0,0,0,0.05) 100%
  );
  pointer-events: none;
}

/* top row: chips */
.card-img-top {
  position: relative; z-index: 1;
  display: flex; gap: 8px; flex-wrap: wrap;
}
.card-img-dest {
  background: rgba(255,255,255,0.2); backdrop-filter: blur(6px);
  color: #fff; font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.07em; text-transform: uppercase;
  padding: 4px 12px; border-radius: 50px;
  border: 1px solid rgba(255,255,255,0.3);
}
.card-img-dur {
  background: var(--accent); color: #1a0f00;
  font-size: 0.7rem; font-weight: 700;
  padding: 4px 12px; border-radius: 50px;
}

/* bottom: title overlay */
.card-img-bottom {
  position: relative; z-index: 1;
}
.card-title {
  font-size: 1rem; font-weight: 700; line-height: 1.35;
  color: #fff; margin: 0;
}

/* ─── Itinerary card ───────────────────────────────────────────────────── */
.itin-card { display: flex; flex-direction: column; text-decoration: none; color: inherit; }
.itin-card .card-body { padding: 12px 16px; }
.itin-card .card-highlights { display: flex; gap: 6px; flex-wrap: wrap; }
.itin-card .card-footer {
  padding: 11px 16px; margin-top: auto;
  background: var(--bg-alt); border-top: 1px solid var(--border);
  display: flex; align-items: center; justify-content: space-between;
}
.itin-card .btn-view {
  font-size: 0.87rem; color: var(--primary-mid); font-weight: 700;
  display: inline-flex; align-items: center; gap: 6px;
  transition: gap var(--transition), color var(--transition);
}
.itin-card:hover .btn-view { color: var(--primary); gap: 10px; }

/* ─── Stars ────────────────────────────────────────────────────────────── */
.star { color: #ddd; font-size: 1rem; }
.star.filled, .star--on { color: var(--accent); }
.stars { color: var(--accent); font-size: 0.9rem; }

/* ─── Spinner ──────────────────────────────────────────────────────────── */
.spinner { width: 40px; height: 40px; border: 3px solid #D4EDE0; border-top-color: var(--primary-mid); border-radius: 50%; animation: spin 0.7s linear infinite; margin: 40px auto; }
@keyframes spin { to { transform: rotate(360deg); } }

/* ─── Alert ────────────────────────────────────────────────────────────── */
.alert { padding: 12px 16px; border-radius: var(--radius); font-size: 0.9rem; margin-bottom: 12px; }
.alert-success { background: #D1FAE5; color: #065F46; }
.alert-error { background: #FEE2E2; color: #991B1B; }

/* ─── Breadcrumb ───────────────────────────────────────────────────────── */
.breadcrumb { font-size: 0.84rem; color: rgba(255,255,255,0.65); padding: 12px 0; display: flex; align-items: center; flex-wrap: wrap; gap: 4px; }
.breadcrumb a { color: rgba(255,255,255,0.65); }
.breadcrumb a:hover { color: #fff; }
.bc-sep { color: rgba(255,255,255,0.4); }

/* ─── Navigation ───────────────────────────────────────────────────────── */
.site-nav {
  position: sticky; top: 0; z-index: 200; height: 68px;
  background: var(--primary);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  box-shadow: 0 2px 20px rgba(0,0,0,0.2);
  transition: background 0.3s ease;
}
.nav-inner {
  display: flex; align-items: center; height: 68px;
  padding: 0 28px; gap: 8px;
  max-width: var(--container); margin: 0 auto;
}
.nav-logo {
  font-size: 1.4rem; font-weight: 800;
  text-decoration: none; flex-shrink: 0;
  color: #fff; font-family: 'DM Sans', sans-serif;
  letter-spacing: -0.5px; margin-right: 16px;
}
.logo-vihar { color: #fff; }
.logo-tours { color: var(--accent); }
.nav-links { display: flex; align-items: center; gap: 2px; margin-left: auto; list-style: none; }
.nav-links li a {
  color: rgba(255,255,255,0.8); font-size: 0.9rem; font-weight: 500;
  padding: 8px 14px; border-radius: 8px;
  transition: background var(--transition), color var(--transition);
}
.nav-links li a:hover, .nav-links li a.active {
  background: rgba(255,255,255,0.12); color: #fff;
}
.nav-links li a.active { color: var(--accent); }
.nav-links li a.nav-admin { color: rgba(255,255,255,0.35); font-size: 0.8rem; }
.nav-wa-btn { flex-shrink: 0; padding: 9px 22px; font-size: 0.87rem; border-radius: 50px; margin-left: 12px; }
.nav-hamburger {
  display: none; flex-direction: column; gap: 5px;
  background: none; border: none; cursor: pointer;
  padding: 8px; margin-left: auto; border-radius: 8px;
}
.nav-hamburger:hover { background: rgba(255,255,255,0.1); }
.nav-hamburger span { display: block; width: 22px; height: 2px; background: #fff; border-radius: 2px; transition: all 0.25s ease; }

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }
  .nav-links {
    display: none; position: fixed; top: 68px; left: 0; right: 0;
    background: #0a2d1e;
    flex-direction: column; padding: 12px 20px 20px; gap: 2px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
    z-index: 199;
    box-shadow: 0 8px 24px rgba(0,0,0,0.3);
  }
  .nav-links li a { padding: 12px 16px; display: block; border-radius: 10px; font-size: 0.95rem; }
  .nav-links.open { display: flex; }
  .nav-wa-btn { display: none; }
  .nav-links .nav-wa-btn { display: block; width: 100%; text-align: center; margin-top: 8px; border-radius: 10px; }
}

/* ─── Footer ───────────────────────────────────────────────────────────── */
.site-footer {
  background: #071a10;
  color: rgba(255,255,255,0.65);
  padding: 72px 0 0;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.06);
}
.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 52px;
  padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-logo {
  font-size: 1.55rem; font-weight: 800; color: #fff;
  margin-bottom: 12px; letter-spacing: -0.4px;
}
.footer-logo span { color: var(--accent); }
.footer-tagline {
  font-size: 0.88rem; color: rgba(255,255,255,0.5);
  margin-bottom: 14px; line-height: 1.65; max-width: 260px;
}
.footer-address {
  font-size: 0.8rem; color: rgba(255,255,255,0.35); line-height: 1.75;
}
.footer-links h4, .footer-contact h4 {
  color: rgba(255,255,255,0.9); margin-bottom: 18px;
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  font-weight: 700;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a {
  color: rgba(255,255,255,0.55); font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--accent); }
.footer-contact p { font-size: 0.88rem; color: rgba(255,255,255,0.55); margin-bottom: 8px; line-height: 1.6; }
.footer-bottom {
  padding: 22px 0; text-align: center;
  font-size: 0.8rem; color: rgba(255,255,255,0.3);
}

@media (max-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 480px) {
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

/* ─── Modal ────────────────────────────────────────────────────────────── */
.modal-overlay { position: fixed; inset: 0; background: rgba(0,0,0,0.55); z-index: 500; display: flex; align-items: center; justify-content: center; padding: 16px; }
.modal-overlay[hidden] { display: none; }
.modal { background: var(--bg); border-radius: 12px; padding: 36px; max-width: 560px; width: 100%; max-height: 90vh; overflow-y: auto; position: relative; box-shadow: 0 20px 60px rgba(0,0,0,0.2); }
.modal h2 { margin-bottom: 4px; color: var(--primary); }
.modal > p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 24px; }
.modal-close { position: absolute; top: 16px; right: 20px; background: var(--bg-alt); border: none; width: 32px; height: 32px; border-radius: 50%; font-size: 1.1rem; cursor: pointer; color: var(--text-light); display: flex; align-items: center; justify-content: center; }
.modal-close:hover { background: #D4EDE0; color: var(--primary); }

/* ─── Forms ────────────────────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: 0.86rem; font-weight: 600; color: var(--text); }
.form-group input, .form-group select, .form-group textarea { padding: 11px 14px; border: 1.5px solid var(--border); border-radius: var(--radius); font-family: 'DM Sans', sans-serif; font-size: 0.95rem; transition: border-color var(--transition), box-shadow var(--transition); background: var(--bg); color: var(--text); outline: none; }
.form-group input:focus, .form-group select:focus, .form-group textarea:focus { border-color: var(--primary-mid); box-shadow: 0 0 0 3px rgba(26,107,74,0.12); }
.form-group textarea { resize: vertical; }
@media (max-width: 480px) { .form-row { grid-template-columns: 1fr; } }

/* ─── Success ──────────────────────────────────────────────────────────── */
.success-icon { width: 56px; height: 56px; background: var(--color-success); color: #fff; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.5rem; margin: 0 auto 16px; }
#enquiry-success { text-align: center; padding: 24px 0; }

/* ─── Grid ─────────────────────────────────────────────────────────────── */
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
@media (max-width: 900px) { .grid-3 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-3, .grid-2 { grid-template-columns: 1fr; } }

/* ─── Sticky WhatsApp ──────────────────────────────────────────────────── */
.sticky-wa { position: fixed; bottom: 24px; right: 24px; z-index: 200; }
.sticky-wa-btn { display: flex; align-items: center; gap: 10px; background: var(--wa-green); color: #fff; border: none; border-radius: 50px; padding: 14px 24px; font-size: 0.97rem; font-weight: 700; cursor: pointer; box-shadow: 0 6px 24px rgba(37,211,102,0.4); transition: all var(--transition); font-family: 'DM Sans', sans-serif; }
.sticky-wa-btn:hover { transform: translateY(-2px); background: #1db954; }
.wa-icon { font-size: 1.2rem; }

@media (max-width: 768px) { .sticky-wa { bottom: 0; right: 0; left: 0; } .sticky-wa-btn { border-radius: 0; width: 100%; justify-content: center; padding: 16px; } }

/* ─── Skeleton ─────────────────────────────────────────────────────────── */
.card-skeleton { height: 280px; animation: shimmer 1.5s ease infinite; border: none; }
@keyframes shimmer { 0%,100% { background: #F0F4F2; } 50% { background: #E2EBE6; } }

/* ─── Floating WhatsApp bubble ──────────────────────────────────────────── */
.wa-float-btn {
  position: fixed; bottom: 28px; right: 28px; z-index: 9990;
  width: 58px; height: 58px; border-radius: 50%;
  background: #25D366; color: #fff; border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,0.45), 0 1px 6px rgba(0,0,0,0.15);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  padding: 0;
}
.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,0.55), 0 2px 8px rgba(0,0,0,0.18);
}
.wa-float-btn:active { transform: scale(0.96); }
.wa-float-btn svg { width: 30px; height: 30px; pointer-events: none; }
/* Pulse ring animation */
.wa-float-btn::before {
  content: ''; position: absolute; inset: -6px;
  border-radius: 50%; border: 2px solid rgba(37,211,102,0.4);
  animation: wa-pulse 2.2s ease-out infinite;
}
@keyframes wa-pulse {
  0%   { transform: scale(0.85); opacity: 0.7; }
  70%  { transform: scale(1.15); opacity: 0; }
  100% { transform: scale(1.15); opacity: 0; }
}
@media (max-width: 600px) {
  .wa-float-btn { bottom: 20px; right: 20px; width: 52px; height: 52px; }
  .wa-float-btn svg { width: 26px; height: 26px; }
}
