/* ============================================
   TRINITY TOURS – MAIN STYLESHEET
   Sri Lanka Tourism Website
   ============================================ */

/* ---- CSS Variables / Design Tokens ---- */
:root {
  --green-primary: #2D6A4F;
  --green-mid: #40916C;
  --green-light: #52B788;
  --green-pale: #D8F3DC;
  --green-accent: #74C69D;
  --gold: #E9A227;
  --gold-light: #F4C261;
  --dark: #0D1B12;
  --dark-2: #1A2F20;
  --dark-3: #243B2C;
  --text-main: #1A1A2E;
  --text-body: #4A5568;
  --text-light: #718096;
  --white: #FFFFFF;
  --white-90: rgba(255,255,255,0.9);
  --white-70: rgba(255,255,255,0.7);
  --white-10: rgba(255,255,255,0.1);
  --white-15: rgba(255,255,255,0.15);
  --glass: rgba(255,255,255,0.08);
  --glass-border: rgba(255,255,255,0.15);
  --shadow-sm: 0 2px 8px 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);
  --shadow-green: 0 8px 30px rgba(45,106,79,0.3);
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --font-main: 'Outfit', sans-serif;
  --font-serif: 'Playfair Display', serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }
body {
  font-family: var(--font-main);
  color: var(--text-main);
  background: var(--white);
  overflow-x: hidden;
  line-height: 1.6;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; cursor: pointer; font-family: var(--font-main); }
input, select, textarea { font-family: var(--font-main); }

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Typography Utilities ---- */
.section-tag {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--green-mid);
  background: var(--green-pale);
  padding: 4px 12px;
  border-radius: 20px;
  margin-bottom: 12px;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  line-height: 1.25;
  color: var(--text-main);
  margin-bottom: 12px;
}

.section-desc {
  font-size: 0.95rem;
  color: var(--text-body);
  line-height: 1.7;
  max-width: 480px;
}

.section-header { margin-bottom: 48px; }
.section-header-row {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 24px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.section-desc-side {
  font-size: 0.9rem;
  color: var(--text-body);
  max-width: 300px;
  text-align: right;
}

.link-more {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--green-mid);
  border-bottom: 1px solid var(--green-mid);
  padding-bottom: 2px;
  transition: color var(--transition), border-color var(--transition);
  white-space: nowrap;
}
.link-more:hover { color: var(--green-primary); border-color: var(--green-primary); }

/* ---- Buttons ---- */
.btn-primary {
  background: var(--green-primary);
  color: var(--white);
  padding: 10px 22px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.875rem;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}
.btn-primary:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: var(--shadow-green);
}

.btn-hero-primary {
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(45,106,79,0.4);
}
.btn-hero-primary:hover {
  background: var(--green-mid);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(45,106,79,0.5);
}

.btn-hero-secondary {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 14px 28px;
  border: 2px solid var(--white-70);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(8px);
  background: var(--white-10);
  transition: all var(--transition);
}
.btn-hero-secondary:hover {
  background: var(--white-15);
  border-color: var(--white);
  transform: translateY(-2px);
}
.play-icon {
  width: 30px; height: 30px;
  background: var(--white);
  color: var(--green-primary);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 0.7rem;
}

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 8px 0;
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(16px) saturate(180%);
  -webkit-backdrop-filter: blur(16px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.35s ease;
}

/* Scrolled state — full-width blurred bar */
.navbar.scrolled {
  padding: 6px 0;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05), 0 4px 24px rgba(0,0,0,0.06);
}
.nav-container {
  max-width: 1440px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.site-logo {
  height: 60px; /* Increased height for visibility */
  width: auto;
  display: block;
  transition: all 0.35s ease;
}
.navbar.scrolled .site-logo {
  height: 50px; /* Slightly smaller when scrolled */
}
.logo-text {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}
.nav-link {
  color: var(--text-body);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all var(--transition);
  text-decoration: none;
}
.nav-link:hover,
.nav-link.active {
  color: var(--text-main);
  font-weight: 600;
}

.nav-actions { display: flex; align-items: center; gap: 16px; }

.nav-mobile-only, .nav-close, .nav-socials, .btn-get-started {
  display: none;
}

.btn-signin {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 10px 24px;
  border-radius: 30px;
  background: var(--text-main);
  border: 1px solid var(--text-main);
  transition: all var(--transition);
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
}
.btn-signin:hover {
  background: var(--text-body);
  border-color: var(--text-body);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: transparent;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--text-main);
  border-radius: 2px;
  transition: all var(--transition);
}
.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); }

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 700px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 1;
}

.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 40%, rgba(0,0,0,0.5) 100%);
  z-index: 2;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
}
.hero-title {
  font-family: var(--font-main);
  font-size: clamp(3rem, 5.5vw, 5.5rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -1px;
}

/* POINTERS */
.pointer {
  position: absolute;
  z-index: 10;
  display: flex;
  align-items: center;
}
.pointer-label {
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(12px);
  color: var(--white);
  padding: 8px 18px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  white-space: nowrap;
}
.pointer-dot {
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  box-shadow: 0 0 10px #fff;
  position: relative;
}
.pointer-dot::after {
  content: '';
  position: absolute;
  top: -4px; left: -4px;
  width: 14px; height: 14px;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 50%;
}

.pointer-line {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}
.pointer-line-left {
  width: 60px;
  height: 1px;
  background: rgba(255,255,255,0.5);
}

.pointer-tl { top: 28%; left: 15%; }
.pointer-tr { top: 28%; right: 20%; }
.pointer-bl { bottom: 35%; left: 20%; }
.pointer-br { bottom: 32%; right: 25%; }

/* HERO FOOTER */
.hero-footer {
  position: absolute;
  bottom: 40px;
  left: 40px;
  right: 40px;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.hf-left {
  display: flex;
  align-items: center;
  gap: 12px;
}
.btn-book-now {
  background: #4a6c52;
  color: var(--white);
  padding: 14px 28px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-book-now:hover {
  background: #385540;
}
.btn-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  background: var(--white);
  border-radius: 50%;
  color: #000;
  text-decoration: none;
  transition: all var(--transition);
}
.btn-arrow:hover {
  transform: rotate(45deg);
}

.hf-center p {
  color: rgba(255,255,255,0.9);
  font-size: 0.95rem;
  text-align: center;
  line-height: 1.6;
  margin: 0;
  text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

.hf-right {
  display: flex;
  gap: 12px;
}
.social-circle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.2);
  color: var(--white);
  backdrop-filter: blur(10px);
  transition: all var(--transition);
}
.social-circle:hover {
  background: rgba(255,255,255,0.2);
}

/* ============================================
   ABOUT US NEW
   ============================================ */
.about-new-section {
  padding: 100px 0;
  background: #ffffff;
}
.about-new-top {
  display: flex;
  gap: 40px;
  margin-bottom: 80px;
  align-items: flex-start;
}
.about-new-label {
  flex: 0 0 150px;
}
.about-new-text {
  flex: 1;
}
.about-new-desc {
  font-size: 1.6rem;
  font-style: italic;
  color: #555;
  line-height: 1.6;
  font-weight: 400;
}
.about-new-stats {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}
.about-stat-pill {
  display: flex;
  align-items: center;
  border: 1px solid #ccc;
  border-radius: 50px;
  padding: 4px;
  padding-right: 24px;
  gap: 16px;
  flex: 1;
  min-width: 250px;
}
.about-stat-pill .stat-circle {
  width: 70px;
  height: 70px;
  border: 1px solid var(--green-mid);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  font-weight: 400;
  color: #222;
  flex-shrink: 0;
}
.about-stat-pill p {
  font-size: 0.85rem;
  color: #555;
  line-height: 1.4;
  margin: 0;
}

/* ============================================
   ABOUT INTRO
   ============================================ */
.about-intro { padding: 100px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.about-text .section-title { font-size: clamp(1.6rem, 2.5vw, 2.2rem); }
.about-description {
  font-size: 1rem;
  color: var(--text-body);
  line-height: 1.8;
  margin-bottom: 36px;
}
.about-features { display: flex; flex-direction: column; gap: 20px; }
.feature-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 16px;
  border-radius: var(--radius-md);
  background: #F7FFF9;
  border: 1px solid #E8F5E9;
  transition: transform var(--transition), box-shadow var(--transition);
}
.feature-item:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }
.feature-icon {
  font-size: 1.6rem;
  flex-shrink: 0;
  width: 44px; height: 44px;
  background: var(--green-pale);
  border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
}
.feature-item strong { display: block; font-weight: 700; margin-bottom: 4px; color: var(--text-main); }
.feature-item p { font-size: 0.85rem; color: var(--text-body); margin: 0; }

.about-image-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 16px;
  height: 500px;
}
.about-img-main img { width: 100%; height: 100%; object-fit: cover; border-radius: var(--radius-lg); }
.about-img-side { display: flex; flex-direction: column; gap: 16px; }
.about-img-side img { width: 100%; height: 50%; object-fit: cover; border-radius: var(--radius-md); }

/* ============================================
   PACKAGES
   ============================================ */
.packages-section {
  padding: 100px 0;
  background: #F8F7F3; /* Warm beige background matching screenshot */
}
.packages-split {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 80px;
  align-items: center;
}
.section-tag-new {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #6C7A6C;
  margin-bottom: 16px;
}
.packages-content-left .section-title {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 400;
  color: #1A1A1A;
  margin-bottom: 24px;
  line-height: 1.15;
}
.packages-content-left .section-desc {
  font-size: 1.05rem;
  color: #737373;
  line-height: 1.6;
  margin-bottom: 40px;
  max-width: 90%;
}
.link-view-all {
  display: inline-flex;
  align-items: center;
  font-size: 1.05rem;
  font-weight: 600;
  color: #1A1A1A;
  text-decoration: none;
  border-bottom: 1.5px solid #1A1A1A;
  padding-bottom: 2px;
  transition: opacity var(--transition);
}
.link-view-all:hover {
  opacity: 0.7;
}

.packages-content-right {
  position: relative;
}
.package-featured-single {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.package-featured-single img {
  width: 100%;
  height: 600px;
  object-fit: cover;
  display: block;
}
.package-featured-overlay {
  position: absolute;
  bottom: 24px;
  left: 24px;
  right: 24px;
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 12px;
  padding: 32px;
  color: #fff;
}
.package-featured-overlay h3 {
  font-size: 1.6rem;
  font-weight: 600;
  margin-bottom: 12px;
  color: #fff;
}
.package-featured-overlay p {
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  margin-bottom: 24px;
  max-width: 90%;
}
.package-featured-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.package-price-large {
  font-size: 1.3rem;
  font-weight: 700;
  color: #fff;
}
.btn-start-booking {
  background: #fff;
  color: var(--green-primary);
  padding: 12px 28px;
  border-radius: 30px;
  font-size: 0.95rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.btn-start-booking:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 15px rgba(0,0,0,0.1);
}

/* ============================================
   DESTINATIONS
   ============================================ */
.destinations-section { padding: 80px 0; background: #fff; }

.dest-header-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  border-bottom: 1px solid #eaeaea;
  padding-bottom: 24px;
  margin-bottom: 0;
}
.dest-main-title {
  font-family: var(--font-main);
  font-size: clamp(2rem, 3vw, 2.8rem);
  font-weight: 400;
  color: #1a1a1a;
  line-height: 1;
}
.dest-main-desc {
  font-size: 0.95rem;
  color: #666;
  max-width: 300px;
  text-align: right;
}

.dest-tabs-container {
  border-bottom: 1px solid #eaeaea;
  margin-bottom: 40px;
}
.dest-tabs {
  display: flex;
  justify-content: space-between;
  padding-top: 24px;
  max-width: 900px;
}
.dest-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: 16px;
  background: none;
  border: none;
  font-size: 0.95rem;
  font-weight: 500;
  color: #333;
  cursor: pointer;
  position: relative;
  transition: color 0.3s;
}
.dest-tab:hover { color: #4a6c52; }
.dest-tab.active {
  color: #4a6c52;
}
.dest-tab.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  left: 0; right: 0;
  height: 2px;
  background: #4a6c52;
}

.destinations-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.dest-card-new {
  position: relative;
  height: 280px;
  cursor: pointer;
}
.dest-card-new img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 12px;
  transition: transform 0.6s ease;
}
/* Ensure the image scales but stays within bounds without clipping the button */
.dest-img-wrap {
  width: 100%;
  height: 100%;
  border-radius: 12px;
  overflow: hidden;
  position: absolute;
  inset: 0;
}
.dest-card-new:hover img {
  transform: scale(1.05);
}
.dest-card-new::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 12px;
  background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, transparent 60%);
  pointer-events: none;
}

.dest-rating-badge {
  position: absolute;
  top: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.25);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  color: #fff;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 0.85rem;
  font-weight: 500;
  z-index: 2;
}

.dest-card-content {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 60px;
  z-index: 2;
  color: #fff;
}
.dest-card-title {
  font-size: 1.25rem;
  font-weight: 400;
  margin-bottom: 4px;
}
.dest-card-price {
  font-size: 0.95rem;
  font-weight: 700;
}

.dest-card-btn {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 60px;
  height: 60px;
  background: #fff;
  border-radius: 20px 0 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  text-decoration: none;
}

.dest-card-btn::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 10px 0 10px #fff;
  pointer-events: none;
}

.dest-card-btn::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: transparent;
  border-bottom-right-radius: 20px;
  box-shadow: 10px 10px 0 10px #fff;
  pointer-events: none;
}

.dest-card-btn svg {
  position: relative;
  z-index: 1;
  width: 46px;
  height: 46px;
  background: #4a6c52;
  border-radius: 50%;
  color: #fff;
  padding: 12px;
  transition: background 0.3s, transform 0.3s;
}

.dest-card-btn:hover svg {
  background: #385540;
  transform: translate(2px, -2px);
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
  padding: 100px 0;
  background: #FFFFFF;
  overflow: hidden;
}
.section-tag-green {
  background: transparent;
  color: #6C7A6C;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  padding: 0;
  margin-bottom: 12px;
}
.testimonials-section .section-title {
  color: #1a1a1a;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  font-weight: 400;
}

.testimonial-arrows { display: flex; gap: 12px; }
.arrow-btn {
  width: 50px; height: 50px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #ccc;
  color: #333;
  display: flex; align-items: center; justify-content: center;
  transition: all var(--transition);
}
.arrow-btn:hover { background: #f0f0f0; border-color: #999; }

.testimonials-track-wrap { overflow: hidden; margin-top: 20px; }
.testimonials-track {
  display: flex;
  gap: 24px;
  transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.testi-card {
  width: 100%;
  max-width: 380px;
  height: 280px;
  background: #FAFCFA;
  border: 1px solid #E2EBE5;
  border-radius: 12px;
  padding: 32px;
  position: relative;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
}
.testi-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.testi-author-wrapper {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testi-avatar-img {
  width: 56px; height: 56px;
  border-radius: 50%;
  object-fit: cover;
}
.testi-author-info {
  display: flex;
  flex-direction: column;
}
.testi-author-info strong {
  display: block;
  font-size: 1.05rem;
  color: #1a1a1a;
  font-weight: 700;
}
.testi-author-info span {
  font-size: 0.85rem;
  color: #737373;
}
.testi-quote-icon svg {
  opacity: 0.9;
}
.testi-text {
  font-size: 1rem;
  color: #333;
  line-height: 1.6;
  flex-grow: 1;
}
.testi-stars { 
  display: flex;
  gap: 4px;
}

/* ============================================
   STORIES
   ============================================ */
.stories-section { padding: 100px 0; background: #fff; }
.stories-bento-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 24px;
  height: 600px;
}
.bento-col-right {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.bento-card {
  border-radius: 20px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
.bento-large {
  background-size: cover;
  background-position: center;
  height: 100%;
  padding: 32px;
  justify-content: space-between;
}
.bento-small {
  flex: 1;
  padding: 32px;
}
.bento-solid-green {
  background: #50694e;
  color: #fff;
  display: flex;
  flex-direction: column;
}
.bento-img {
  background-size: cover;
  background-position: center;
  color: #fff;
}
.bento-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
  z-index: 1;
}
.bento-large-top, .bento-large-bottom, .bento-small-top, .bento-small-mid, .bento-desc {
  position: relative;
  z-index: 2;
}

.bento-pill-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}
.bento-pill {
  padding: 6px 16px;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
}
.bento-pill-outline {
  border: 1px solid rgba(0,0,0,0.5);
  background: rgba(255,255,255,0.2);
  color: #222;
  backdrop-filter: blur(8px);
}
.bento-pill-green {
  background: rgba(80, 105, 78, 0.8);
  color: #fff;
  border: 1px solid rgba(255,255,255,0.2);
  backdrop-filter: blur(8px);
  margin-top: 12px;
}
.bento-pill-white {
  background: #fff;
  color: #222;
  padding: 6px 16px;
  font-weight: 600;
}

.bento-number {
  font-size: 1.8rem;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  line-height: 1;
  margin-bottom: 12px;
}
.bento-title {
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.2;
}
.bento-title-small {
  font-size: 1.6rem;
  font-weight: 400;
  color: #fff;
  line-height: 1.3;
}
.bento-small-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 24px;
}
.bento-small-mid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.bento-desc {
  font-size: 0.95rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.6;
}

/* Cutout effect for Top Right Card */
.bento-corner-btn-wrap.tr {
  position: absolute;
  top: -2px;
  right: -2px;
  background: #fff;
  padding: 16px;
  border-bottom-left-radius: 20px;
}
.bento-corner-btn-wrap.tr::before {
  content: '';
  position: absolute;
  top: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 100%, transparent 20px, #fff 21px);
}
.bento-corner-btn-wrap.tr::after {
  content: '';
  position: absolute;
  bottom: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 100%, transparent 20px, #fff 21px);
}
.bento-circle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: #50694e;
  color: #fff;
  border-radius: 50%;
  transition: transform var(--transition);
}
.bento-circle-btn:hover {
  transform: rotate(45deg);
}

/* Cutout effect for Bottom Right Card */
.bento-corner-btn-wrap.br {
  position: absolute;
  bottom: -2px;
  right: -2px;
  background: #fff;
  padding: 16px 16px 16px 24px;
  border-top-left-radius: 20px;
  z-index: 2;
}
.bento-corner-btn-wrap.br::before {
  content: '';
  position: absolute;
  top: -20px;
  right: 0;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 0%, transparent 20px, #fff 21px);
}
.bento-corner-btn-wrap.br::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: -20px;
  width: 20px;
  height: 20px;
  background: radial-gradient(circle at 0% 0%, transparent 20px, #fff 21px);
}
.bento-pill-btn {
  display: inline-block;
  background: #50694e;
  color: #fff;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 500;
  text-decoration: none;
  transition: opacity var(--transition);
}
.bento-pill-btn:hover {
  opacity: 0.9;
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-section {
  position: relative;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
}
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(13,27,18,0.88) 0%, rgba(45,106,79,0.7) 100%);
}
.cta-content {
  position: relative;
  z-index: 1;
}
.cta-content .section-tag { background: rgba(82,183,136,0.2); color: var(--green-accent); }
.cta-title {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 700;
  margin: 16px 0 12px;
}
.cta-content p { color: var(--white-70); font-size: 1.05rem; margin-bottom: 36px; }
.btn-cta {
  background: var(--white);
  color: var(--green-primary);
  padding: 16px 40px;
  border-radius: var(--radius-sm);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  box-shadow: 0 4px 20px rgba(0,0,0,0.2);
}
.btn-cta:hover {
  background: var(--green-pale);
  transform: translateY(-3px);
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
}

/* ============================================
   CONTACT
   ============================================ */
.contact-section { padding: 100px 0; }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 80px;
  align-items: start;
}
.contact-info .section-desc {
  color: var(--text-body);
  margin-bottom: 40px;
  max-width: 100%;
}
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { font-size: 1.4rem; flex-shrink: 0; }
.contact-item strong { display: block; font-weight: 700; margin-bottom: 2px; }
.contact-item p { font-size: 0.9rem; color: var(--text-body); margin: 0; }

.contact-form-wrap {
  background: #F8FBF8;
  border: 1px solid #E8F0E9;
  border-radius: var(--radius-xl);
  padding: 40px;
}
.contact-form { display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-body);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 16px;
  border: 1.5px solid #E2E8F0;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  color: var(--text-main);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(64,145,108,0.12);
}
.form-group textarea { resize: vertical; }
.btn-form-submit {
  background: var(--green-primary);
  color: var(--white);
  padding: 14px 32px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 700;
  align-self: flex-start;
  transition: all var(--transition);
}
.btn-form-submit:hover { background: var(--green-mid); transform: translateY(-2px); box-shadow: var(--shadow-green); }
.form-success { color: var(--green-mid); font-size: 0.9rem; font-weight: 600; }

/* ============================================
   NEWSLETTER
   ============================================ */
.newsletter-section {
  padding: 60px 0;
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-3) 100%);
}
.newsletter-box {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.newsletter-text h3 { font-size: 1.4rem; font-weight: 700; color: var(--white); margin-bottom: 6px; }
.newsletter-text p { font-size: 0.9rem; color: var(--white-70); }
.newsletter-form { display: flex; gap: 12px; flex-wrap: wrap; }
.newsletter-form input {
  padding: 12px 20px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--glass-border);
  background: var(--glass);
  color: var(--white);
  font-size: 0.9rem;
  width: 100%;
  max-width: 280px;
  outline: none;
  backdrop-filter: blur(8px);
  transition: border-color var(--transition);
}
.newsletter-form input::placeholder { color: var(--white-70); }
.newsletter-form input:focus { border-color: var(--green-accent); }
.btn-newsletter {
  background: var(--green-primary);
  color: var(--white);
  padding: 12px 24px;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  font-weight: 700;
  transition: all var(--transition);
}
.btn-newsletter:hover { background: var(--green-mid); transform: translateY(-2px); }

/* ============================================
   FOOTER
   ============================================ */
.footer-new {
  background: #FAF8F5;
  padding: 80px 0 40px;
  color: #333;
}
.footer-new-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 60px;
}
.footer-new-brand .footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 16px;
  display: block;
}
.footer-new-brand p {
  color: #737373;
  font-size: 0.95rem;
  line-height: 1.6;
  max-width: 400px;
}
.footer-new-subscribe h2 {
  font-size: 2.2rem;
  font-weight: 500;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.footer-sub-form .input-wrapper {
  position: relative;
  display: flex;
  align-items: center;
  background: transparent;
  border: 1px solid #a3a3a3;
  border-radius: 50px;
  padding: 6px;
  width: 100%;
  max-width: 420px;
}
.footer-sub-form .input-icon {
  position: absolute;
  left: 20px;
  color: #a3a3a3;
}
.footer-sub-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 12px 12px 50px;
  font-size: 0.95rem;
  color: #333;
  outline: none;
}
.footer-sub-form input::placeholder {
  color: #a3a3a3;
}
.footer-sub-form button {
  background: #4a6c52;
  color: #fff;
  border: none;
  border-radius: 40px;
  padding: 12px 28px;
  font-weight: 600;
  font-size: 0.85rem;
  cursor: pointer;
  letter-spacing: 0.5px;
}

.footer-new-links {
  display: flex;
  justify-content: space-between;
  border-bottom: 2px dashed #d1d5db;
  padding-bottom: 40px;
  margin-bottom: 30px;
}
.footer-col-new {
  flex: 1;
  position: relative;
  padding: 0 20px;
}
.footer-col-new:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  border-right: 2px dashed #d1d5db;
}
.footer-col-new:first-child {
  padding-left: 0;
}
.footer-col-new:last-child {
  padding-right: 0;
}
.footer-col-new h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 24px;
}
.footer-col-new ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.footer-col-new ul li {
  color: #333;
  font-size: 0.95rem;
}
.footer-col-new ul li a {
  color: #333;
  text-decoration: none;
}
.footer-col-new ul li a:hover {
  text-decoration: underline;
}
.footer-col-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  line-height: 1.5;
}
.footer-col-contact .c-icon {
  color: #4a6c52;
  font-size: 1.1rem;
}

.footer-new-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #333;
  font-size: 0.9rem;
  font-weight: 500;
}
.footer-new-bottom a {
  color: #333;
  text-decoration: none;
}

/* ============================================
   SCROLL TO TOP
   ============================================ */
.scroll-top {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 46px; height: 46px;
  background: var(--green-primary);
  color: var(--white);
  border-radius: 50%;
  font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-green);
  z-index: 999;
  opacity: 0;
  transform: translateY(20px);
  transition: all var(--transition);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--green-mid); transform: translateY(-3px); }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-left {
  opacity: 0;
  transform: translateX(-40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-left.visible { opacity: 1; transform: translateX(0); }
.reveal-right {
  opacity: 0;
  transform: translateX(40px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal-right.visible { opacity: 1; transform: translateX(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  .destinations-grid { grid-template-columns: repeat(3, 1fr); }
  .destinations-grid .dest-card:nth-child(1) { grid-column: span 1; }
  .destinations-grid .dest-card:nth-child(4) { grid-column: span 1; }
  .footer-grid { grid-template-columns: 1.5fr 1fr 1fr; gap: 32px; }
  .footer-col:nth-child(4),
  .footer-col:nth-child(5) { grid-column: auto; }
  .about-new-stats { justify-content: center; }
  .about-stat-pill { min-width: 45%; flex: 1 1 45%; }
}

@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .about-image-grid { height: 320px; }
  .packages-grid { grid-template-columns: 1fr; }
  .package-card.featured { grid-column: span 1; grid-template-columns: 1fr; }
  .package-card.featured .package-image { min-height: 240px; }
  .stories-bento-grid { grid-template-columns: 1fr; height: auto; gap: 24px; }
  .bento-large { min-height: 400px; margin-bottom: 0; }
  .bento-small { min-height: 280px; height: auto; flex: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .testimonials-track .testi-card { min-width: calc(50% - 12px); }
  .destinations-grid { grid-template-columns: repeat(2, 1fr); }
  .destinations-grid-new { grid-template-columns: repeat(2, 1fr); }
  .hero-title { font-size: clamp(2.5rem, 4vw, 3rem); }
}

@media (max-width: 768px) {
  .dest-tabs-container { 
    overflow-x: auto; 
    padding-bottom: 10px; 
    -ms-overflow-style: none; 
    scrollbar-width: none; 
  }
  .dest-tabs-container::-webkit-scrollbar {
    display: none;
  }
  .dest-tabs { width: max-content; gap: 24px; padding: 0 4px; }
  .hero-footer {
    flex-direction: column;
    gap: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 20px;
  }
  .pointer { display: none; }
  .about-new-section { padding: 60px 0; }
  .about-new-top {
    flex-direction: column;
    gap: 16px;
    margin-bottom: 40px;
  }
  .about-new-label { flex: none; height: auto; }
  .about-new-desc { font-size: 1.3rem; }
  .about-stat-pill { min-width: 100%; flex: 1 1 100%; }
  .packages-split {
    flex-direction: column;
  }
  .navbar .nav-links {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    width: 100vw;
    height: 100vh;
    background: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    padding: 80px 32px 40px;
    gap: 0;
    transform: translateX(100%);
    transition: transform 0.4s ease;
    z-index: 999;
  }
  .navbar .nav-links.open { transform: translateX(0); }

  .navbar .nav-link {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 0;
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--text-main);
    border-bottom: 1px solid #f0f0f0;
  }
  .navbar .nav-link::after {
    content: '>';
    font-family: monospace;
    font-size: 1.2rem;
    color: #999;
  }
  .navbar .nav-link.no-chevron::after {
    display: none;
  }

  .nav-mobile-only {
    display: flex;
  }

  .nav-close {
    display: block;
    position: absolute;
    top: 24px;
    right: 24px;
    background: none;
    color: var(--text-main);
    border: none;
    cursor: pointer;
    padding: 8px;
  }

  .btn-get-started {
    display: block;
    width: 100%;
    background: var(--text-main);
    color: var(--white);
    text-align: center;
    padding: 16px 0;
    border-radius: 8px;
    margin-top: 32px;
    font-weight: 600;
    text-decoration: none;
    border: none;
  }

  .nav-socials {
    display: flex;
    justify-content: space-between;
    width: calc(100% - 64px);
    position: absolute;
    bottom: 40px;
    left: 32px;
  }
  .nav-socials a {
    color: #999;
    font-size: 0.9rem;
    text-decoration: none;
  }
  .hamburger { display: flex; z-index: 1001; }
  .nav-container { padding: 0 16px; }
  .site-logo { height: 40px; }
  .navbar.scrolled .site-logo { height: 35px; }
  .btn-signin { padding: 6px 16px; font-size: 0.85rem; }

  .hero-search { flex-direction: column; }
  .search-box { flex-direction: column; gap: 20px; }
  .search-divider { width: 100%; height: 1px; }

  .stats-grid { gap: 0; }
  .stat-divider { display: block; width: 100%; height: 1px; margin: 10px 0; }
  .stat-item { padding: 16px; min-width: 120px; }

  .section-header-row { flex-direction: column; align-items: flex-start; }
  .section-desc-side { text-align: left; max-width: 100%; }

  .destinations-grid-new { grid-template-columns: 1fr; }

  .footer-new-top { flex-direction: column; gap: 32px; }
  .footer-new-links { flex-direction: column; gap: 40px; border-bottom: 1px solid #eaeaea; padding-bottom: 30px; }
  .footer-col-new:not(:last-child)::after { display: none; }
  .footer-col-new { padding: 0; }
  .footer-new-bottom { flex-direction: column; gap: 16px; text-align: center; }
  .footer-sub-form .input-wrapper { max-width: 100%; }

  .newsletter-box { flex-direction: column; align-items: flex-start; }
  .newsletter-form { flex-direction: column; width: 100%; }
  .newsletter-form input { width: 100%; }

  .form-row { grid-template-columns: 1fr; }
  .testimonials-track .testi-card { min-width: calc(100% - 0px); }

  .footer-bottom { flex-direction: column; text-align: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
}

@media (max-width: 520px) {
  .destinations-grid { grid-template-columns: 1fr; }
  .destinations-grid-new { grid-template-columns: 1fr; }
  .hero-title { font-size: 2.2rem; }
  .about-new-desc { font-size: 1.1rem; }
  .about-stat-pill { min-width: 100%; }
  .section-title { font-size: 1.8rem; }
  .btn-hero-primary { padding: 12px 24px; font-size: 0.9rem; }
  .btn-hero-secondary { padding: 12px 24px; font-size: 0.9rem; }
  .hf-center p { font-size: 0.9rem; }
  .hf-center p br { display: none; }
  .hf-left { flex-direction: column; width: 100%; }
  .btn-book-now { width: 100%; text-align: center; justify-content: center; }
  .btn-arrow { display: none; }
}
