/* =============================================
   HN TRAVEL — STYLESHEET
   File: css/style.css
   ============================================= */

/* ---------- CSS VARIABLES (Easy to customize) ---------- */
:root {
  --green:        #1a6b3c;
  --green-dark:   #0f4526;
  --green-mid:    #2d8a52;
  --green-light:  #e8f5ee;
  --green-pale:   #f0faf4;
  --gold:         #c9a84c;
  --gold-light:   #f0d98c;
  --white:        #ffffff;
  --off-white:    #fafcfb;
  --text:         #1c2b22;
  --text-mid:     #4a6355;
  --text-light:   #7a9688;
  --border:       #d4e8db;
  --shadow:       0 4px 24px rgba(26, 107, 60, 0.10);
}

/* ---------- RESET ---------- */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'DM Sans', sans-serif;
  color: var(--text);
  background: var(--white);
  overflow-x: hidden;
}


/* =============================================
   LOADER / INTRO ANIMATION
   ============================================= */
#loader {
  position: fixed;
  inset: 0;
  background: #0f4526;
  z-index: 9999;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}

#loader.fade-out {
  opacity: 0;
  pointer-events: none;
}

.loader-brand {
  font-family: 'DM Sans', sans-serif;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.75rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 3rem;
}

.loader-path {
  width: 80vw;
  max-width: 500px;
  position: relative;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 2px;
  margin-bottom: 2rem;
}

.loader-path::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  height: 100%;
  background: var(--gold);
  border-radius: 2px;
  animation: pathGrow 2.2s ease forwards;
}

@keyframes pathGrow {
  from { width: 0; }
  to   { width: 100%; }
}

.loader-plane {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.8rem;
  animation: flyPlane 2.2s ease forwards;
}

@keyframes flyPlane {
  from { left: -5%; }
  to   { left: 100%; }
}

.loader-dots {
  display: flex;
  gap: 4px;
  margin-top: 0.5rem;
}

.loader-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  animation: blink 1.2s infinite;
}
.loader-dot:nth-child(2) { animation-delay: 0.2s; }
.loader-dot:nth-child(3) { animation-delay: 0.4s; }

@keyframes blink {
  0%, 100% { opacity: 0.3; }
  50%       { opacity: 1; }
}

.loader-text {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.9rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-top: 1.5rem;
}


/* =============================================
   NAVBAR
   ============================================= */
nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green);
  text-decoration: none;
  cursor: pointer;
}

.logo span {
  color: var(--gold);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2rem;
  list-style: none;
}

.nav-links a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 0.9rem;
  font-weight: 500;
  cursor: pointer;
  transition: color 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--green);
}

.nav-btn {
  background: var(--green) !important;
  color: white !important;
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem !important;
}

.nav-btn:hover {
  background: var(--green-dark) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 4px;
  cursor: pointer;
  padding: 4px;
}

.hamburger span {
  width: 22px;
  height: 2px;
  background: var(--green);
  border-radius: 2px;
  transition: all 0.3s;
}


/* =============================================
   PAGE SYSTEM
   ============================================= */
.page {
  display: none;
  padding-top: 70px;
}

.page.active {
  display: block;
}


/* =============================================
   HERO SECTION
   ============================================= */
.hero {
  position: relative;
  height: calc(100vh - 70px);
  min-height: 500px;
  background: linear-gradient(135deg, #0f4526 0%, #1a6b3c 50%, #2d8a52 100%);
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('../public/bg2.jpg?w=1400&auto=format&fit=crop&q=80') center / cover;
  opacity: 0.25;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(15, 69, 38, 0.92) 0%,
    rgba(15, 69, 38, 0.60) 60%,
    rgba(15, 69, 38, 0.20) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(201, 168, 76, 0.2);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  padding: 0.4rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 900;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.2rem;
  max-width: 700px;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero p {
  color: rgba(255, 255, 255, 0.8);
  font-size: 1.1rem;
  max-width: 500px;
  margin-bottom: 2rem;
  line-height: 1.7;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-stats {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  z-index: 2;
  display: flex;
  gap: 2rem;
}

.stat {
  text-align: center;
  color: white;
}

.stat-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--gold-light);
}

.stat-label {
  font-size: 0.75rem;
  opacity: 0.7;
  letter-spacing: 1px;
  text-transform: uppercase;
}


/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  background: var(--gold);
  color: #1c2b22;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent;
  color: white;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-weight: 500;
  font-size: 0.95rem;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, 0.5);
  transition: all 0.2s;
  display: inline-block;
}
.btn-outline:hover {
  border-color: white;
  background: rgba(255, 255, 255, 0.1);
}

.btn-whatsapp {
  background: #25D366;
  color: white;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  transition: all 0.2s;
  text-decoration: none;
}
.btn-whatsapp:hover {
  background: #20bf5b;
  transform: translateY(-2px);
}

.btn-sm {
  padding: 0.5rem 1rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: all 0.2s;
}

.btn-green {
  background: var(--green);
  color: white;
}
.btn-green:hover {
  background: var(--green-dark);
}

.btn-ghost {
  background: transparent;
  color: var(--green);
  border: 1.5px solid var(--green);
}
.btn-ghost:hover {
  background: var(--green-light);
}

.btn-submit {
  background: var(--green);
  color: white;
  padding: 0.75rem 2rem;
  font-size: 0.95rem;
  width: 100%;
  border-radius: 50px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  transition: background 0.2s;
}
.btn-submit:hover {
  background: var(--green-dark);
}

.center-btn {
  text-align: center;
  margin-top: 2.5rem;
}


/* =============================================
   SECTIONS — LAYOUT & TYPOGRAPHY
   ============================================= */
section {
  padding: 5rem 2rem;
}

.section-offwhite {
  background: var(--off-white);
}

.section-pale {
  background: var(--green-pale);
}

.section-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-center {
  text-align: center;
  margin-bottom: 3rem;
}

.section-tag {
  color: var(--green);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.gold-tag {
  color: var(--gold-light);
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  line-height: 1.2;
}

.section-title em {
  font-style: italic;
  color: var(--green);
}

.section-sub {
  color: var(--text-mid);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 3rem;
}


/* =============================================
   DESTINATION CARDS
   ============================================= */
.dest-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}

.dest-card {
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  cursor: pointer;
  aspect-ratio: 4 / 3;
  transition: transform 0.3s;
}
.dest-card:hover {
  transform: scale(1.02);
}

.dest-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.dest-card .overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(15, 69, 38, 0.9) 0%, transparent 60%);
}

.dest-card .info {
  position: absolute;
  bottom: 1.2rem;
  left: 1.2rem;
  color: white;
}

.dest-card .info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 700;
}

.dest-card .info p {
  font-size: 0.8rem;
  opacity: 0.8;
  margin-top: 2px;
}

.dest-card .badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: var(--gold);
  color: #1c2b22;
  font-size: 0.75rem;
  font-weight: 700;
  padding: 0.3rem 0.7rem;
  border-radius: 50px;
}


/* =============================================
   TOUR CARDS
   ============================================= */
.tour-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.tour-card {
  background: white;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  transition: all 0.3s;
  cursor: pointer;
}
.tour-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(26, 107, 60, 0.15);
}

.tour-card img {
  width: 100%;
  height: 200px;
  object-fit: cover;
}

.tour-card-body {
  padding: 1.25rem;
}

.tour-tag {
  font-size: 0.75rem;
  color: var(--green);
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.tour-card-body h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}

.tour-meta {
  display: flex;
  gap: 1rem;
  margin-bottom: 1rem;
}

.tour-meta span {
  font-size: 0.82rem;
  color: var(--text-mid);
}

.tour-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
}

.tour-price small {
  font-size: 0.75rem;
  font-family: 'DM Sans', sans-serif;
  color: var(--text-mid);
  font-weight: 400;
}

.tour-btns {
  display: flex;
  gap: 0.75rem;
}


/* =============================================
   WHY CHOOSE US CARDS
   ============================================= */
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1.5rem;
}

.why-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  text-align: center;
}

.why-icon {
  width: 56px;
  height: 56px;
  background: var(--green-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  font-size: 1.5rem;
}

.why-card h3 {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  margin-bottom: 0.5rem;
  font-size: 1rem;
}

.why-card p {
  font-size: 0.85rem;
  color: var(--text-mid);
  line-height: 1.6;
}


/* =============================================
   TESTIMONIALS
   ============================================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.testi-card {
  background: white;
  border-radius: 16px;
  padding: 1.75rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.stars {
  color: var(--gold);
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.testi-card p {
  color: var(--text-mid);
  line-height: 1.7;
  font-size: 0.92rem;
  margin-bottom: 1.25rem;
  font-style: italic;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testi-avatar {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--green-light);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green);
  font-weight: 700;
  font-size: 0.85rem;
  flex-shrink: 0;
}

.testi-name {
  font-weight: 600;
  font-size: 0.9rem;
}

.testi-loc {
  font-size: 0.78rem;
  color: var(--text-light);
}


/* =============================================
   CALL TO ACTION SECTION
   ============================================= */
.cta-section {
  background: linear-gradient(135deg, #0f4526, #1a6b3c);
  text-align: center;
  color: white;
  padding: 5rem 2rem;
}

.cta-section h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  margin-bottom: 1rem;
}

.cta-section p {
  opacity: 0.8;
  max-width: 500px;
  margin: 0 auto 2rem;
  line-height: 1.7;
}


/* =============================================
   PAGE HEADER (Tours, About, Contact)
   ============================================= */
.page-header {
  background: linear-gradient(135deg, #0f4526, #1a6b3c);
  padding: 4rem 2rem;
  color: white;
  text-align: center;
}

.page-header h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 900;
  margin-bottom: 0.5rem;
}

.page-header p {
  opacity: 0.8;
}


/* =============================================
   TOUR FILTERS
   ============================================= */
.filters {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.5rem 1.2rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  cursor: pointer;
  border: 1.5px solid var(--border);
  background: white;
  color: var(--text-mid);
  transition: all 0.2s;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--green);
  color: white;
  border-color: var(--green);
}


/* =============================================
   TOUR DETAIL PAGE
   ============================================= */
.detail-hero {
  width: 100%;
  height: 400px;
  object-fit: cover;
  display: block;
}

.detail-body {
  max-width: 900px;
  margin: 0 auto;
  padding: 3rem 2rem;
}

.detail-meta {
  display: flex;
  gap: 2rem;
  flex-wrap: wrap;
  margin: 1.5rem 0;
  padding: 1.5rem;
  background: var(--green-pale);
  border-radius: 12px;
}

.detail-meta-item {
  text-align: center;
  flex: 1;
  min-width: 100px;
}

.detail-meta-item .label {
  font-size: 0.75rem;
  color: var(--text-light);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.detail-meta-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--green);
  margin-top: 4px;
}

.day-item {
  padding: 1rem 1.25rem;
  margin-bottom: 0.75rem;
  background: white;
  border-radius: 10px;
  border-left: 3px solid var(--green);
  border: 1px solid var(--border);
}

.day-item h4 {
  font-weight: 600;
  color: var(--green);
  font-size: 0.9rem;
  margin-bottom: 4px;
}

.day-item p {
  font-size: 0.88rem;
  color: var(--text-mid);
  line-height: 1.6;
}

.incl-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.5rem 0;
}

.incl-col h4 {
  font-weight: 600;
  margin-bottom: 0.75rem;
  font-size: 0.95rem;
}

.incl-col ul {
  list-style: none;
}

.incl-col ul li {
  font-size: 0.85rem;
  color: var(--text-mid);
  padding: 3px 0;
  display: flex;
  align-items: center;
  gap: 6px;
}

.incl-col ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.incl-col.yes li::before { background: #22c55e; }
.incl-col.no  li::before { background: #ef4444; }

.detail-cta {
  text-align: center;
  margin-top: 2.5rem;
  padding: 2rem;
  background: var(--green-pale);
  border-radius: 16px;
}

.detail-cta h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

.detail-cta p {
  color: var(--text-mid);
  font-size: 0.9rem;
  margin-bottom: 1.25rem;
}


/* =============================================
   ABOUT PAGE
   ============================================= */
.about-hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 5rem 2rem;
}

.about-img-wrap {
  position: relative;
}

.about-img-wrap img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
  height: 450px;
}

.about-float {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--green);
  color: white;
  border-radius: 12px;
  padding: 1.25rem 1.5rem;
  text-align: center;
  box-shadow: 0 8px 30px rgba(26, 107, 60, 0.3);
}

.about-float .num {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold-light);
}

.about-float .lbl {
  font-size: 0.75rem;
  opacity: 0.8;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.about-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-top: 2rem;
}

.about-stat {
  background: var(--green-pale);
  border-radius: 12px;
  padding: 1rem;
  text-align: center;
}

.about-stat .num {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green);
}

.about-stat .lbl {
  font-size: 0.8rem;
  color: var(--text-mid);
}


/* =============================================
   CONTACT PAGE
   ============================================= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  max-width: 1100px;
  margin: 0 auto;
  padding: 4rem 2rem;
}

.contact-form .form-group {
  margin-bottom: 1.25rem;
}

.contact-form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--text);
  margin-bottom: 0.4rem;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  color: var(--text);
  outline: none;
  transition: border-color 0.2s;
  background: white;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--green);
}

.contact-form textarea {
  height: 120px;
  resize: vertical;
}

.wa-contact-box {
  margin-top: 1.5rem;
  padding: 1rem;
  background: var(--green-pale);
  border-radius: 10px;
  text-align: center;
}

.wa-contact-box p {
  font-size: 0.85rem;
  color: var(--text-mid);
  margin-bottom: 0.75rem;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.contact-icon {
  width: 44px;
  height: 44px;
  background: var(--green-light);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h4 {
  font-weight: 600;
  font-size: 0.9rem;
  margin-bottom: 2px;
}

.contact-info-item p {
  font-size: 0.85rem;
  color: var(--text-mid);
}

.map-embed {
  margin-top: 1.5rem;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid var(--border);
}


/* =============================================
   FLOATING WHATSAPP BUTTON
   ============================================= */
.wa-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 500;
  background: #25D366;
  color: white;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  transition: all 0.2s;
  animation: waPulse 2s infinite;
}

.wa-float:hover {
  transform: scale(1.1);
  background: #20bf5b;
}

@keyframes waPulse {
  0%, 100% { box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4); }
  50%       { box-shadow: 0 4px 30px rgba(37, 211, 102, 0.7); }
}


/* =============================================
   FOOTER
   ============================================= */
footer {
  background: #0a2e18;
  color: rgba(255, 255, 255, 0.7);
  padding: 4rem 2rem 2rem;
}

.footer-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.75rem;
}

.footer-logo span {
  color: var(--gold);
}

.footer-desc {
  font-size: 0.85rem;
  line-height: 1.7;
  max-width: 280px;
}

.footer-col h4 {
  color: white;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-col ul {
  list-style: none;
}

.footer-col ul li {
  margin-bottom: 0.5rem;
}

.footer-col ul li a,
.footer-col ul li span {
  font-size: 0.84rem;
  color: rgba(255, 255, 255, 0.6);
  cursor: pointer;
  text-decoration: none;
  transition: color 0.2s;
}

.footer-col ul li a:hover {
  color: var(--gold-light);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-bottom p {
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  gap: 0.75rem;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background 0.2s;
  font-size: 0.85rem;
  color: white;
  text-decoration: none;
}

.social-link:hover {
  background: var(--green-mid);
}

        /* Team / Leadership Section */
        .contact-team {
          margin-top: 1.75rem;
          padding: 1.25rem;
          background: var(--green-pale);
          border-radius: 14px;
          border: 1px solid var(--border);
        }

        .contact-team-title {
          font-family: 'Playfair Display', serif;
          font-size: 1rem;
          font-weight: 700;
          color: var(--green-dark);
          margin-bottom: 1rem;
          padding-bottom: 0.5rem;
          border-bottom: 1px solid var(--border);
        }

        .team-grid {
          display: flex;
          flex-direction: column;
          gap: 0.75rem;
        }

        .team-card {
          display: flex;
          align-items: center;
          gap: 0.85rem;
          background: rgb(255, 255, 255);
          border-radius: 10px;
          padding: 0.75rem 1rem;
          border: 1px solid var(--border);
          transition: box-shadow 0.2s;
        }

        .team-card:hover {
          box-shadow: 0 2px 12px rgba(26, 107, 60, 0.10);
        }

        .team-avatar {
          width: 40px;
          height: 40px;
          border-radius: 50%;
          background: var(--green-light);
          color: var(--green-dark);
          font-weight: 700;
          font-size: 0.8rem;
          display: flex;
          align-items: center;
          justify-content: center;
          flex-shrink: 0;
          border: 2px solid var(--green);
        }

        .team-info {
          flex: 1;
        }

        .team-name {
          font-weight: 600;
          font-size: 0.88rem;
          color: var(--text);
          line-height: 1.3;
        }

        .team-role {
          font-size: 0.78rem;
          color: var(--green);
          font-weight: 500;
          margin-top: 1px;
        }

        .team-contact {
          font-size: 0.76rem;
          color: var(--text-light);
          margin-top: 2px;
        }

      /* =============================================
   IMAGE SLIDER — TOUR DETAIL
   ============================================= */
.slider-wrap {
  position: relative;
  width: 100%;
  background: #111;
  overflow: hidden;
}

.slider-wrap img {
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transition: opacity 0.4s ease;
}

.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(0, 0, 0, 0.5);
  color: white;
  border: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.slider-arrow:hover { background: rgba(0,0,0,0.85); }
.slider-arrow.prev  { left: 1rem; }
.slider-arrow.next  { right: 1rem; }

.slider-dots {
  position: absolute;
  bottom: 1rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 6px;
}

.slider-dots span {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background 0.2s;
}
.slider-dots span.active { background: white; }

.slider-counter {
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: rgba(0,0,0,0.5);
  color: white;
  font-size: 0.8rem;
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
}

.footer-logo-img {
  height: 120px;
  width: auto;
  object-fit: contain;
  margin-bottom: 0.75rem;
  display: block;
  margin-left: -55px;  /* ← pulls logo left to remove extra space */
  margin-top: -40px;
}

/* =============================================
   RESPONSIVE — MOBILE
   ============================================= */
@media (max-width: 768px) {

  .hamburger {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: white;
    flex-direction: column;
    padding: 1.5rem 2rem;
    gap: 1rem;
    border-bottom: 1px solid var(--border);
    z-index: 200;
  }

  .nav-links.open {
    display: flex;
  }

  .hero-stats {
    display: none;
  }

  .about-hero {
    grid-template-columns: 1fr;
  }

  .about-float {
    right: 1rem;
    bottom: 1rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .incl-grid {
    grid-template-columns: 1fr;
  }

  .detail-meta {
    gap: 1rem;
  }
}

/* =============================================
   PHOTO GALLERY
   ============================================= */
   .gallery-slider {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    background: #111;
  }
  
  .gallery-track {
    display: flex;
    transition: transform 0.5s ease;
  }
  
  .gallery-track img {
    min-width: 100%;
    height: 460px;
    object-fit: cover;
    flex-shrink: 0;
  }
  
  .gallery-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0,0,0,0.5);
    color: white;
    border: none;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    font-size: 1.2rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
  }
  .gallery-arrow:hover { background: rgba(0,0,0,0.85); }
  .gallery-arrow.prev  { left: 1rem; }
  .gallery-arrow.next  { right: 1rem; }
  
  .gallery-dots {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 6px;
  }
  
  .gallery-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.5);
    cursor: pointer;
    transition: background 0.2s;
  }
  .gallery-dots span.active { background: var(--gold); }
  
  
  /* =============================================
     NEWS SECTION
     ============================================= */
  .news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
  }
  
  .news-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    transition: transform 0.3s;
  }
  .news-card:hover {
    transform: translateY(-4px);
  }
  
  .news-img-wrap {
    position: relative;
  }
  
  .news-img-wrap img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    display: block;
  }
  
  .news-cat {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--gold);
    color: #1c2b22;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.25rem 0.7rem;
    border-radius: 50px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .news-body {
    padding: 1.25rem;
  }
  
  .news-date {
    font-size: 0.78rem;
    color: var(--text-light);
    margin-bottom: 0.5rem;
  }
  
  .news-body h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0.6rem;
    line-height: 1.4;
  }
  
  .news-body p {
    font-size: 0.85rem;
    color: var(--text-mid);
    line-height: 1.7;
    margin-bottom: 1rem;
  }
  
  .news-link {
    font-size: 0.83rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    transition: color 0.2s;
  }
  .news-link:hover {
    color: var(--green-dark);
  }
  

/* =============================================
   TEAM SLIDER
   ============================================= */
   .team-section-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
  }
  
  .team-section-card {
    background: white;
    border-radius: 16px;
    padding: 1.5rem;
    border: 1px solid var(--border);
    box-shadow: var(--shadow);
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    transition: transform 0.3s;
  }
  
  .team-section-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(26, 107, 60, 0.15);
  }
  
  .team-section-photo {
    width: 90px;
    height: 110px;
    object-fit: cover;
    object-position: top;
    border-radius: 10px;
    flex-shrink: 0;
    border: 3px solid var(--green-light);
  }
  
  .team-section-info h3 {
    font-family: 'Playfair Display', serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 3px;
  }
  
  .team-section-role {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--green);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
  }
  
  .team-section-info p {
    font-size: 0.8rem;
    color: var(--text-mid);
    line-height: 1.6;
    margin-bottom: 0.6rem;
  }
  
  .team-section-contact {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--green);
    cursor: pointer;
    transition: color 0.2s;
  }
  
  .team-section-contact:hover {
    color: #25D366;
  }
  
  @media (max-width: 1024px) {
    .team-section-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }
  
  @media (max-width: 768px) {
    .team-section-grid {
      grid-template-columns: 1fr;
    }
    .team-section-card {
      flex-direction: column;
      align-items: center;
      text-align: center;
    }
    .team-section-photo {
      width: 110px;
      height: 130px;
    }
  }