/* =============================================
   CABBY TOURS — style.css
   Green luxury travel aesthetic
   ============================================= */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --green-deep:    #0d3d2b;
  --green-mid:     #1a6645;
  --green-bright:  #2ca06e;
  --green-light:   #4ecb8d;
  --green-pale:    #d4efe3;
  --gold:          #c8a84b;
  --gold-light:    #f0d080;
  --white:         #fdfcf8;
  --text-dark:     #0a1f16;
  --text-mid:      #3a5a46;

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

  --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  --transition-fast: 0.2s ease;
}

html {
  scroll-behavior: smooth;
}

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

/* =============================================
   HEADER
   ============================================= */

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 0 2rem;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
}

.site-header.scrolled {
  background: rgba(13, 61, 43, 0.97);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 30px rgba(0,0,0,0.3);
  padding: 0 2rem;
}

.header-inner {
  max-width: 1400px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2rem;
  height: 80px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--white);
  flex-shrink: 0;
}

.logo-icon {
  width:70px;
  height: 100%;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 8px;

}

.logo-icon img {
 
    width: 100%;
    height: 100%;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-main {
  font-family: var(--font-display);
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.logo-sub {
  font-family: var(--font-body);
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  color: var(--green-light);
}

/* Nav */
.main-nav {
  flex: 1;
  display: flex;
  justify-content: center;
}

.main-nav ul {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.main-nav a {
  text-decoration: none;
  color: rgba(255,255,255,0.85);
  font-size: 0.9rem;
  font-weight: 500;
  padding: 0.5rem 0.9rem;
  border-radius: 8px;
  transition: color var(--transition-fast), background var(--transition-fast);
  position: relative;
  letter-spacing: 0.01em;
}

.main-nav a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--green-light);
  border-radius: 2px;
  transition: width var(--transition);
}

.main-nav a:hover {
  color: white;
  background: rgba(255,255,255,0.08);
}

.main-nav a:hover::after {
  width: 60%;
}

/* Plan Your Tour button */
.btn-plan {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  text-decoration: none;
  padding: 0.7rem 1.4rem;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: transform var(--transition-fast), box-shadow var(--transition-fast);
  flex-shrink: 0;
  box-shadow: 0 4px 15px rgba(200, 168, 75, 0.4);
  white-space: nowrap;
}

.btn-plan svg {
  width: 16px;
  height: 16px;
  transition: transform var(--transition-fast);
}

.btn-plan:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(200, 168, 75, 0.5);
}

.btn-plan:hover svg {
  transform: translateX(4px);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 8px;
  transition: background var(--transition-fast);
  margin-left: auto;
}

.hamburger:hover {
  background: rgba(255,255,255,0.1);
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition-fast);
  transform-origin: center;
}

.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }



/* =============================================
   MOBILE / RESPONSIVE
   ============================================= */

@media (max-width: 900px) {
  .hamburger {
    display: flex;
  }

  .btn-plan {
    display: none;
  }

  .main-nav {
    position: fixed;
    top: 0px;
    left: 0;
    right: 0;
    background: rgba(10, 45, 28, 0.98);
    backdrop-filter: blur(16px);
    padding: 1rem 0 2rem;
    transform: translateY(-110%);
    transition: transform var(--transition);
    border-bottom: 1px solid rgba(78, 203, 141, 0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
    
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 0 1.5rem;
  }

  .main-nav li {
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }

  .main-nav a {
    display: block;
    padding: 1rem 0.5rem;
    font-size: 1.05rem;
    border-radius: 0;
  }

  .main-nav a::after {
    display: none;
  }

  .main-nav li:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  /* Mobile plan button inside nav */
  .main-nav::after {
    content: 'Plan Your Tour →';
    display: block;
    margin: 1.5rem 2rem 0;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--green-deep);
    text-align: center;
    padding: 0.85rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 0.02em;
    cursor: pointer;
    height: fit-content;
  }

  .slide-badge {
    display: none;
  }

  .slide-content {
    padding: 0 1.5rem;
    padding-top: 80px;
  }
}

@media (max-width: 480px) {
  .slide-title {
    font-size: 2.4rem;
  }

  .slide-desc {
    font-size: 0.95rem;
  }

  .lang-switcher {
    bottom: 1rem;
    right: 1rem;
  }
}

/* =============================================
   SCROLLBAR
   ============================================= */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--green-deep); }
::-webkit-scrollbar-thumb { background: var(--green-bright); border-radius: 3px; }

/* =============================================
   HERO CAROUSEL
   ============================================= */

.carousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  width: 200%;
  height: 100%;
  transition: transform 0.9s cubic-bezier(0.77, 0, 0.175, 1);
}

.slide {
  position: relative;
  width: 50%;
  height: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
}

/* Slide backgrounds using CSS gradients + unsplash */
.slide-1 {
  background:
    url('../img/hero/beach.jpg') center/cover no-repeat;
}

.slide-2 {
  background:
    url('../img/hero/hill.jpg') center/cover no-repeat;
}

/* Animated background pan */
.slide-1 { animation: panBg1 18s ease-in-out infinite alternate; }
.slide-2 { animation: panBg2 20s ease-in-out infinite alternate; }

@keyframes panBg1 {
  from { background-position: 30% 40%; }
  to   { background-position: 70% 60%; }
}
@keyframes panBg2 {
  from { background-position: 60% 30%; }
  to   { background-position: 40% 70%; }
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(5, 30, 18, 0.80) 0%,
    rgba(10, 50, 30, 0.55) 50%,
    rgba(5, 30, 18, 0.25) 100%
  );
}

.slide-content {
  position: relative;
  z-index: 2;
  padding: 0 6vw;
  max-width: 800px;
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease 0.2s, transform 0.8s ease 0.2s;
}

.slide.active .slide-content {
  opacity: 1;
  transform: translateY(0);
}

.slide-eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.slide-eyebrow::before {
  content: '';
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--green-light);
}

.slide-title {
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 6.5vw, 5.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.slide-title em {
  font-style: italic;
  color: var(--gold-light);
  display: inline-block;
  position: relative;
}

.slide-desc {
  font-size: clamp(1rem, 1.5vw, 1.15rem);
  color: rgba(255,255,255,0.82);
  line-height: 1.75;
  max-width: 520px;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

.btn-hero {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid var(--green-light);
  color: white;
  text-decoration: none;
  padding: 0.9rem 2rem;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--green-bright);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
  z-index: -1;
}

.btn-hero:hover {
  border-color: var(--green-bright);
  box-shadow: 0 0 30px rgba(78, 203, 141, 0.4);
}

.btn-hero:hover::before {
  transform: scaleX(1);
}

.btn-hero svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-hero:hover svg {
  transform: translateX(5px);
}

/* Slide badge */
.slide-badge {
  position: absolute;
  bottom: 6rem;
  right: 4rem;
  z-index: 2;
  text-align: center;
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 16px;
  padding: 1rem 1.5rem;
  color: white;
  opacity: 0;
  transform: scale(0.8);
  transition: opacity 0.8s ease 0.5s, transform 0.8s ease 0.5s;
}

.slide.active .slide-badge {
  opacity: 1;
  transform: scale(1);
}

.slide-badge span {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 0.25rem;
}

.slide-badge strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
}

/* Carousel controls */
.carousel-controls {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.carousel-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.3);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  backdrop-filter: blur(8px);
}

.carousel-btn svg {
  width: 18px;
  height: 18px;
}

.carousel-btn:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: scale(1.1);
}

.carousel-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(255,255,255,0.35);
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  padding: 0;
}

.dot.active {
  width: 28px;
  border-radius: 4px;
  background: var(--green-light);
}

/* Progress bar */
.carousel-progress {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: rgba(255,255,255,0.15);
  z-index: 10;
}

.progress-bar {
  height: 100%;
  background: linear-gradient(90deg, var(--green-bright), var(--green-light));
  width: 0%;
  transition: width linear;
}

@media (max-width: 1600px)  {
  .slide-title {
     font-size: clamp(1.8rem, 4.5vw, 3.5rem);
  }
  
}

/* =============================================
   LANGUAGE SWITCHER
   ============================================= */

.lang-switcher {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 2000;
}

.lang-toggle {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-deep);
  border: 1px solid var(--green-mid);
  color: white;
  cursor: pointer;
  padding: 0.6rem 1rem;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 20px rgba(0,0,0,0.3);
}

.lang-toggle svg {
  width: 16px;
  height: 16px;
  color: var(--green-light);
}

.lang-toggle:hover {
  background: var(--green-mid);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0,0,0,0.35);
}

.lang-dropdown {
  position: absolute;
  bottom: calc(100% + 0.5rem);
  right: 0;
  background: var(--green-deep);
  border: 1px solid var(--green-mid);
  border-radius: 16px;
  overflow: hidden;
  min-width: 160px;
  box-shadow: 0 10px 40px rgba(0,0,0,0.4);
  opacity: 0;
  transform: translateY(10px) scale(0.95);
  pointer-events: none;
  transition: all var(--transition-fast);
  transform-origin: bottom right;
}

.lang-switcher.open .lang-dropdown {
  opacity: 1;
  transform: translateY(0) scale(1);
  pointer-events: all;
}

.lang-option {
  display: block;
  width: 100%;
  background: none;
  border: none;
  color: rgba(255,255,255,0.75);
  cursor: pointer;
  padding: 0.75rem 1.25rem;
  text-align: left;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: all var(--transition-fast);
  border-left: 3px solid transparent;
}

.lang-option:hover {
  background: rgba(255,255,255,0.07);
  color: white;
  border-left-color: var(--green-light);
  padding-left: 1.5rem;
}

.lang-option.active {
  color: var(--green-light);
  font-weight: 600;
  border-left-color: var(--green-light);
}

/* =============================================
   WHO WE ARE
   ============================================= */

.who-we-are {
  position: relative;
  background: linear-gradient(160deg, var(--green-deep) 0%, #0e4a32 50%, #0d3d2b 100%);
  padding: 6rem 2rem;
  overflow: hidden;
}

/* Wave decorators */
.wwa-wave-top,
.wwa-wave-bottom {
  position: absolute;
  left: 0;
  right: 0;
  line-height: 0;
  z-index: 2;
  pointer-events: none;
  
}
.wwa-wave-top  { top: -1px; }
.wwa-wave-bottom { bottom: -1px; }
.wwa-wave-top svg,
.wwa-wave-bottom svg { width: 100%; height: 80px; display: block; }

/* Floating background leaves */
.wwa-bg-decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
  z-index: 1;
}

.leaf {
  position: absolute;
  font-size: 4rem;
  opacity: 0.06;
  animation: floatLeaf 12s ease-in-out infinite;
}

.leaf-1 { top: 10%;  left: 5%;  animation-delay: 0s;   animation-duration: 14s; font-size: 5rem; }
.leaf-2 { top: 55%;  right: 3%; animation-delay: 3s;   animation-duration: 11s; }
.leaf-3 { bottom: 15%; left: 40%; animation-delay: 6s; animation-duration: 16s; font-size: 3rem; }

@keyframes floatLeaf {
  0%, 100% { transform: translateY(0)   rotate(0deg);   }
  33%       { transform: translateY(-20px) rotate(8deg);  }
  66%       { transform: translateY(12px)  rotate(-5deg); }
}

/* Container */
.wwa-container {
  position: relative;
  z-index: 3;
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ── Image collage ── */
.wwa-images {
  position: relative;
  height: 580px;
}

.wwa-img-main,
.wwa-img-secondary,
.wwa-img-tertiary {
  position: absolute;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
}

.wwa-img-main {
  top: 0;
  left: 0;
  width: 72%;
  height: 65%;
  z-index: 3;
}

.wwa-img-secondary {
  top: 30%;
  right: 0;
  width: 42%;
  height: 42%;
  z-index: 4;
  border: 3px solid var(--green-mid);
}

.wwa-img-tertiary {
  bottom: 0;
  left: 8%;
  width: 44%;
  height: 38%;
  z-index: 2;
  border: 3px solid rgba(78, 203, 141, 0.3);
}

.wwa-img-main img,
.wwa-img-secondary img,
.wwa-img-tertiary img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.wwa-img-main:hover img,
.wwa-img-secondary:hover img,
.wwa-img-tertiary:hover img {
  transform: scale(1.06);
}

/* Image location label */
.wwa-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 2rem 1rem 1rem;
  background: linear-gradient(to top, rgba(5,25,15,0.85), transparent);
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: rgba(255,255,255,0.85);
  font-size: 0.75rem;
  letter-spacing: 0.05em;
}

.wwa-img-label svg {
  width: 14px;
  height: 14px;
  color: var(--green-light);
  flex-shrink: 0;
}

/* Floating stat cards */
.wwa-stat-card {
  position: absolute;
  z-index: 5;
  background: rgba(255,255,255,0.07);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 16px;
  padding: 0.9rem 1.3rem;
  text-align: center;
  color: white;
  box-shadow: 0 8px 30px rgba(0,0,0,0.3);
  animation: floatCard 5s ease-in-out infinite alternate;
}

.wwa-stat-1 {
  top: -1.5rem;
  right: 5%;
  animation-delay: 0s;
}

.wwa-stat-2 {
  bottom: 4rem;
  right: -1rem;
  animation-delay: 2s;
}

@keyframes floatCard {
  from { transform: translateY(0); }
  to   { transform: translateY(-10px); }
}

.wwa-stat-card strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1.1;
}

.wwa-stat-card span {
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: rgba(255,255,255,0.65);
  white-space: nowrap;
}

/* ── Content ── */
.wwa-content {
  color: white;
}

.wwa-eyebrow {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.5rem;
}

.eyebrow-line {
  display: inline-block;
  width: 40px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-light), var(--green-bright));
  border-radius: 2px;
}

.wwa-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 700;
  line-height: 1.15;
  color: white;
  margin-bottom: 1.75rem;
  letter-spacing: -0.01em;
}

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

.wwa-lead {
  font-size: 1.1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.9);
  line-height: 1.7;
  margin-bottom: 1.1rem;
}

.wwa-body {
  font-size: 0.975rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.85;
  margin-bottom: 2.5rem;
  font-weight: 300;
}

/* Three pillars */
.wwa-pillars {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.wwa-pillar {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 14px;
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.wwa-pillar:hover {
  background: rgba(78, 203, 141, 0.07);
  border-color: rgba(78, 203, 141, 0.2);
  transform: translateX(6px);
}

.pillar-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(44,160,110,0.3), rgba(78,203,141,0.15));
  border: 1px solid rgba(78,203,141,0.25);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.pillar-icon svg {
  width: 20px;
  height: 20px;
  color: var(--green-light);
}

.wwa-pillar strong {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: white;
  margin-bottom: 0.2rem;
  letter-spacing: 0.01em;
}

.wwa-pillar p {
  font-size: 0.825rem;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  margin: 0;
}

/* About button */
.btn-about {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  color: white;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 6px 25px rgba(44, 160, 110, 0.45);
  position: relative;
  overflow: hidden;
}

.btn-about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-about:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(44, 160, 110, 0.55);
}

.btn-about:hover::before {
  opacity: 1;
}

.btn-about span,
.btn-about svg {
  position: relative;
  z-index: 1;
}

.btn-about svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-about:hover svg {
  transform: translateX(5px);
}

/* ── Scroll reveal animations ── */
[data-reveal] {
  opacity: 0;
  transition: opacity 0.9s ease, transform 0.9s ease;
}

[data-reveal="left"]  { transform: translateX(-50px); }
[data-reveal="right"] { transform: translateX(50px);  }

[data-reveal].revealed {
  opacity: 1;
  transform: translateX(0);
}

/* ── Who We Are responsive ── */
/* ── Who We Are responsive ── */
@media (max-width: 1024px) {
  .wwa-container {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .wwa-images {
    height: 480px;
    max-width: 560px;
    margin: 0 auto;
  }

  .wwa-stat-2 {
    right: 1rem;
  }
}

@media (max-width: 600px) {
  .who-we-are {
    padding: 4rem 1.25rem;
  }

  /* ── Hide leaves on mobile entirely ── */
  .wwa-bg-decor {
    display: none;
  }

  /* ── Image collage: switch to normal flow ── */
  .wwa-images {
    position: static;
    height: auto;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    max-width: 100%;
    margin: 0;
  }

  /* Reset all absolute positioning on images */
  .wwa-img-main,
  .wwa-img-secondary,
  .wwa-img-tertiary {
    position: static;
    width: 100%;
    height: 200px;
    border-radius: 14px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.35);
    border: none;
  }

  /* Hide third image to keep it clean */
  .wwa-img-tertiary {
    display: none;
  }

  /* ── Stat cards: two side-by-side in a row ── */
  .wwa-stats-row {
    display: flex;
    gap: 0.6rem;
    width: 100%;
  }

  .wwa-stat-card {
    position: static;
    animation: none;
    flex: 1;
    padding: 0.9rem 0.75rem;
    border-radius: 14px;
    text-align: center;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  }

  /* Override individual card positioning */
  .wwa-stat-1,
  .wwa-stat-2 {
    position: static;
    top: auto;
    bottom: auto;
    right: auto;
    left: auto;
    animation: none;
  }

  .wwa-stat-card strong {
    font-size: 1.4rem;
  }

  .wwa-stat-card span {
    font-size: 0.68rem;
    white-space: normal;
    line-height: 1.3;
  }

  /* ── Content side ── */
  .wwa-heading {
    font-size: 1.8rem;
  }

  .wwa-lead {
    font-size: 1rem;
  }

  .wwa-body {
    font-size: 0.9rem;
    margin-bottom: 1.75rem;
  }

  /* ── Pillars: stack cleanly ── */
  .wwa-pillars {
    gap: 0.65rem;
    margin-bottom: 1.75rem;
  }

  .wwa-pillar {
    padding: 0.9rem 1rem;
    gap: 0.75rem;
  }

  .pillar-icon {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
  }

  .pillar-icon svg {
    width: 16px;
    height: 16px;
  }

  .wwa-pillar strong {
    font-size: 0.85rem;
  }

  .wwa-pillar p {
    font-size: 0.78rem;
  }
}

@media (max-width: 380px) {
  .wwa-img-main,
  .wwa-img-secondary {
    height: 175px;
  }

  .wwa-stat-card strong {
    font-size: 1.2rem;
  }

  .wwa-heading {
    font-size: 1.6rem;
  }





  .wwa-wave-top {
    top: -2px;
  }
  .wwa-img-label{
    visibility: hidden;
  }
}



/* =============================================
   WHAT WE OFFER
   ============================================= */

.what-we-offer {
  background: var(--white);
  padding: 7rem 2rem;
  position: relative;
}

.wwo-container {
  max-width: 1300px;
  margin: 0 auto;
}

/* Section header */
.wwo-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 4rem;
}

.wwo-header .wwa-eyebrow {
  justify-content: center;
}

.wwo-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.75rem 0 1.25rem;
  letter-spacing: -0.01em;
}

.wwo-heading em {
  font-style: italic;
  color: var(--green-bright);
}

.wwo-subtext {
  font-size: 1.05rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* Cards grid */
.wwo-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-bottom: 4rem;
}

/* Card base */
.wwo-card {
  background: var(--white);
  border: 1px solid rgba(26, 102, 69, 0.1);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  position: relative;
  opacity: 0;
  transform: translateY(40px);
}

.wwo-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease var(--card-delay, 0ms),
              transform 0.7s ease var(--card-delay, 0ms),
              box-shadow 0.4s ease,
              border-color 0.4s ease;
}

.wwo-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 50px rgba(13, 61, 43, 0.12);
  border-color: rgba(44, 160, 110, 0.3);
}

/* Featured card */
.wwo-card--featured {
  border-color: var(--green-bright);
  box-shadow: 0 8px 30px rgba(44, 160, 110, 0.15);
}

.wwo-card--featured:hover {
  box-shadow: 0 24px 55px rgba(44, 160, 110, 0.22);
}

.wwo-card-badge {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 5;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  color: white;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(44, 160, 110, 0.4);
}

/* Card icon */
.wwo-card-icon {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 5;
  width: 40px;
  height: 40px;
  background: rgba(13, 61, 43, 0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(78, 203, 141, 0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.wwo-card-icon svg {
  width: 18px;
  height: 18px;
  color: var(--green-light);
}

/* Card image */
.wwo-card-img {
  width: 100%;
  height: 200px;
  overflow: hidden;
  flex-shrink: 0;
}

.wwo-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.wwo-card:hover .wwo-card-img img {
  transform: scale(1.07);
}

/* Card body */
.wwo-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

.wwo-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.wwo-card-body p {
  font-size: 0.875rem;
  color: var(--text-mid);
  line-height: 1.7;
  flex: 1;
  font-weight: 300;
  margin-bottom: 1.25rem;
}

.wwo-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--green-bright);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: gap var(--transition-fast), color var(--transition-fast);
  margin-top: auto;
}

.wwo-card-link svg {
  width: 15px;
  height: 15px;
  transition: transform var(--transition-fast);
}

.wwo-card-link:hover {
  color: var(--green-mid);
  gap: 0.65rem;
}

.wwo-card-link:hover svg {
  transform: translateX(4px);
}

.wwo-card--featured .wwo-card-link {
  color: var(--green-mid);
}

/* CTA row */
.wwo-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
  padding-top: 1rem;
}

.wwo-cta p {
  font-size: 1.05rem;
  color: var(--text-mid);
  font-weight: 400;
}

.btn-services {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: var(--green-deep);
  color: white;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 6px 25px rgba(13, 61, 43, 0.3);
  position: relative;
  overflow: hidden;
}

.btn-services::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-services:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(13, 61, 43, 0.4);
}

.btn-services:hover::before {
  opacity: 1;
}

.btn-services span,
.btn-services svg {
  position: relative;
  z-index: 1;
}

.btn-services svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-services:hover svg {
  transform: translateX(5px);
}

/* ── data-reveal="up" variant ── */
[data-reveal="up"] {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

[data-reveal="up"].revealed {
  opacity: 1;
  transform: translateY(0);
}

/* Responsive */
@media (max-width: 1024px) {
  .wwo-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .what-we-offer {
    padding: 5rem 1.25rem;
  }

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

  .wwo-cta {
    flex-direction: column;
    text-align: center;
    gap: 1rem;
  }
}

/* =============================================
   CONTACT SECTION
   ============================================= */

.contact-page {
  background: var(--white);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Pale green tinted background — same as testimonials */
.contact-page::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, var(--green-pale) 0%, transparent 40%, var(--green-pale) 100%); */
  opacity: 0.3;
  pointer-events: none;
}

/* ── Header ── */
.contact-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 4rem;
  position: relative;
  z-index: 2;
}

.contact-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 1.25rem;
}

.contact-header .eyebrow::before,
.contact-header .eyebrow::after {
  content: '';
  display: inline-block;
  width: 32px;
  height: 2px;
  background: linear-gradient(90deg, var(--green-bright), var(--green-light));
  border-radius: 2px;
}

.contact-header h1 {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
}

.contact-header h1 em {
  font-style: italic;
  color: var(--green-bright);
}

.contact-header p {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Grid ── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 3rem;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  z-index: 2;
  align-items: start;
}

/* ── Contact Info (left) ── */
.contact-info {
  color: var(--text-dark);
}

.contact-info h2 {
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 2rem;
  letter-spacing: -0.01em;
}

.contact-info h2 em {
  font-style: italic;
  color: var(--green-bright);
}

.contact-info h2 span {
  color: var(--text-dark);
}

.info-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.08);
  border-radius: 16px;
  margin-bottom: 0.85rem;
  box-shadow: 0 2px 12px rgba(13, 61, 43, 0.05);
  transition: background var(--transition-fast), border-color var(--transition-fast), transform var(--transition-fast);
}

.info-item:hover {
  background: rgba(44, 160, 110, 0.04);
  border-color: rgba(44, 160, 110, 0.25);
  transform: translateX(5px);
}

.info-icon {
  width: 42px;
  height: 42px;
  background: linear-gradient(135deg, rgba(44,160,110,0.12), rgba(78,203,141,0.08));
  border: 1px solid rgba(44, 160, 110, 0.2);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--green-bright);
}

.info-icon svg {
  width: 18px;
  height: 18px;
}

.info-text h4 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--green-bright);
  margin-bottom: 0.3rem;
}

.info-text p {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.6;
  font-weight: 300;
}

.info-text a {
  color: var(--text-mid);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.info-text a:hover {
  color: var(--green-bright);
}

/* Social links */
.social-links {
  display: flex;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.social-icon {
  width: 42px;
  height: 42px;
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.12);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--green-mid);
  text-decoration: none;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 8px rgba(13, 61, 43, 0.06);
}

.social-icon:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(44, 160, 110, 0.35);
}

.social-icon svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
  stroke: none;
}

/* Map placeholder */
.map-placeholder {
  background: white !important;
  border: 1px solid rgba(13, 61, 43, 0.08) !important;
  color: var(--text-mid) !important;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 20px !important;
  margin-top: 1.5rem !important;
  box-shadow: 0 2px 12px rgba(13, 61, 43, 0.05);
  transition: border-color var(--transition-fast);
}

.map-placeholder:hover {
  border-color: rgba(44, 160, 110, 0.25) !important;
}

/* ── Contact Form (right) ── */
.contact-form {
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.08);
  border-radius: 28px;
  padding: 2.5rem;
  box-shadow: 0 8px 40px rgba(13, 61, 43, 0.08);
}

.form-row {
  margin-bottom: 1.4rem;
}

.form-row label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 0.5rem;
}

.form-control {
  width: 100%;
  background: var(--white);
  border: 1px solid rgba(13, 61, 43, 0.15);
  border-radius: 12px;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 0.925rem;
  font-weight: 400;
  color: var(--text-dark);
  outline: none;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
  appearance: none;
}

.form-control::placeholder {
  color: rgba(10, 31, 22, 0.3);
}

.form-control:focus {
  border-color: var(--green-bright);
  background: rgba(44, 160, 110, 0.03);
  box-shadow: 0 0 0 3px rgba(44, 160, 110, 0.12);
}

/* Select arrow */
select.form-control {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%232ca06e' stroke-width='2' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

select.form-control option {
  background: white;
  color: var(--text-dark);
}

/* Textarea */
textarea.form-control {
  min-height: 140px;
  resize: vertical;
  line-height: 1.6;
}

/* Submit button */
.btn-submit {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.95rem 2.25rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  box-shadow: 0 6px 25px rgba(44, 160, 110, 0.35);
  position: relative;
  overflow: hidden;
  width: 100%;
  justify-content: center;
}

.btn-submit::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(44, 160, 110, 0.45);
}

.btn-submit:hover::before {
  opacity: 1;
}

.btn-submit span,
.btn-submit svg {
  position: relative;
  z-index: 1;
}

.btn-submit svg {
  width: 17px;
  height: 17px;
  transition: transform var(--transition-fast);
}

.btn-submit:hover svg {
  transform: translateX(4px);
}

/* ── Form error ── */
.form-error-msg {
  font-size: 0.85rem;
  color: #e05252;
  background: #fff5f5;
  border: 1px solid #fccaca;
  border-radius: 10px;
  padding: 0.75rem 1rem;
  margin: 0;
}

@keyframes formSpin {
  from { transform: rotate(0deg); }
  to   { transform: rotate(360deg); }
}

/* ── Success popup backdrop ── */
.form-popup-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(5, 20, 12, 0.65);
  backdrop-filter: blur(6px);
  z-index: 8000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.form-popup-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

/* ── Popup card ── */
.form-popup {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -48%) scale(0.95);
  z-index: 8001;
  background: white;
  border-radius: 24px;
  padding: 2.5rem 2rem;
  width: 90%;
  max-width: 440px;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.2);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease, transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

.form-popup.active {
  opacity: 1;
  pointer-events: all;
  transform: translate(-50%, -50%) scale(1);
}

/* Icon */
.form-popup-icon {
  width: 72px;
  height: 72px;
  background: linear-gradient(135deg, rgba(44,160,110,0.12), rgba(78,203,141,0.08));
  border: 2px solid rgba(44,160,110,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  color: var(--green-bright);
  animation: popupIconPop 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) 0.2s both;
}

@keyframes popupIconPop {
  from { transform: scale(0); opacity: 0; }
  to   { transform: scale(1); opacity: 1; }
}

.form-popup-icon svg {
  width: 36px;
  height: 36px;
}

.form-popup h3 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.75rem;
  letter-spacing: -0.01em;
}

.form-popup p {
  font-size: 0.925rem;
  color: var(--text-mid);
  line-height: 1.7;
  margin-bottom: 1rem;
}

.form-popup-meta {
  font-size: 0.8rem;
  color: var(--green-bright);
  background: rgba(44,160,110,0.06);
  border: 1px solid rgba(44,160,110,0.15);
  border-radius: 10px;
  padding: 0.6rem 1rem;
  margin-bottom: 1.5rem;
  display: none;
}

.form-popup-meta.visible {
  display: block;
}

.btn-popup-close {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--green-deep);
  color: white;
  border: none;
  cursor: pointer;
  padding: 0.8rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  width: 100%;
  justify-content: center;
  margin-bottom: 0.75rem;
}

.btn-popup-close:hover {
  background: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(44,160,110,0.35);
}

.btn-popup-close svg {
  width: 15px;
  height: 15px;
}

.btn-popup-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  background: #f0fdf6;
  border: 1px solid rgba(37,211,102,0.25);
  color: #128C7E;
  text-decoration: none;
  padding: 0.75rem 1.5rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  width: 100%;
  transition: all var(--transition-fast);
}

.btn-popup-wa svg {
  width: 16px;
  height: 16px;
  color: #25D366;
}

.btn-popup-wa:hover {
  background: #e6faf0;
  transform: translateY(-2px);
}

/* ── Responsive ── */
@media (max-width: 900px) {
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

@media (max-width: 600px) {
  .contact-page {
    padding: 5rem 1.25rem;
  }

  .contact-form {
    padding: 1.75rem 1.25rem;
  }
}

/* =============================================
   TOURS SECTION
   ============================================= */

.tours-section {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0e4a32 55%, #0d3d2b 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Dot texture overlay */
.tours-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(78, 203, 141, 0.07) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb top-right */
.tours-section::after {
  content: '';
  position: absolute;
  top: -120px;
  right: -120px;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(44, 160, 110, 0.18) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.tours-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.tours-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 2.5rem;
}

.tours-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0.75rem 0 1.1rem;
  letter-spacing: -0.01em;
}

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

.tours-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Tab switcher ── */
.tours-tabs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin: 0 auto 3rem;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 50px;
  padding: 0.4rem;
  width: fit-content;
  backdrop-filter: blur(8px);
}

.tours-tab {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0.75rem 1.75rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  color: rgba(255,255,255,0.6);
  transition: all var(--transition);
  letter-spacing: 0.02em;
}

.tours-tab svg {
  width: 16px;
  height: 16px;
}

.tours-tab.active {
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  color: white;
  box-shadow: 0 4px 18px rgba(44, 160, 110, 0.45);
}

.tours-tab:hover:not(.active) {
  background: rgba(255,255,255,0.08);
  color: white;
}

/* ── Panels ── */
.tours-panel {
  display: none;
}

.tours-panel.active {
  display: block;
  animation: panelFadeIn 0.45s ease forwards;
}

@keyframes panelFadeIn {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Grid ── */
#panel-day .tours-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

#panel-multi .tours-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1.75rem;
}

/* ── Tour Card ── */
.tour-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: 22px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition), background var(--transition);
  opacity: 0;
  transform: translateY(40px);
  backdrop-filter: blur(6px);
}

.tour-card.revealed {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.7s ease var(--card-delay, 0ms),
              transform 0.7s ease var(--card-delay, 0ms),
              box-shadow 0.4s ease,
              border-color 0.4s ease,
              background 0.4s ease;
}

.tour-card:hover {
  transform: translateY(-8px);
  background: rgba(255,255,255,0.08);
  box-shadow: 0 24px 55px rgba(0,0,0,0.35);
  border-color: rgba(78, 203, 141, 0.35);
}

.tour-card--featured {
  border-color: rgba(78, 203, 141, 0.4);
  background: rgba(44, 160, 110, 0.08);
  box-shadow: 0 8px 30px rgba(44, 160, 110, 0.2);
}

.tour-card--featured:hover {
  box-shadow: 0 28px 60px rgba(44, 160, 110, 0.3);
}

/* Wide card for multi-day */
.tour-card--wide {
  flex-direction: row;
}

.tour-card--wide .tour-card-img {
  width: 40%;
  height: auto;
  flex-shrink: 0;
}

.tour-card--wide .tour-card-body {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

/* ── Card image ── */
.tour-card-img {
  position: relative;
  height: 210px;
  overflow: hidden;
  flex-shrink: 0;
}

.tour-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
  display: block;
}

.tour-card:hover .tour-card-img img {
  transform: scale(1.07);
}

/* Gradient overlay on image bottom */
.tour-card-img::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60%;
  background: linear-gradient(to top, rgba(5, 25, 15, 0.6), transparent);
  pointer-events: none;
}

/* Tag pill */
.tour-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  z-index: 2;
  background: rgba(13, 61, 43, 0.8);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(78, 203, 141, 0.4);
  color: var(--green-light);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
}

/* Best Seller badge */
.tour-badge-featured {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: var(--green-deep);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  box-shadow: 0 4px 12px rgba(200, 168, 75, 0.5);
}

/* Duration pill */
.tour-duration {
  position: absolute;
  bottom: 1rem;
  right: 1rem;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 0.35rem;
  background: rgba(5, 20, 12, 0.75);
  backdrop-filter: blur(8px);
  color: white;
  font-size: 0.75rem;
  font-weight: 600;
  padding: 0.3rem 0.75rem;
  border-radius: 50px;
  border: 1px solid rgba(78, 203, 141, 0.2);
}

.tour-duration svg {
  width: 13px;
  height: 13px;
  color: var(--green-light);
}

/* ── Card body ── */
.tour-card-body {
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  flex: 1;
}

/* Highlight chips */
.tour-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-bottom: 0.85rem;
}

.tour-highlights span {
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--green-light);
  background: rgba(78, 203, 141, 0.1);
  border: 1px solid rgba(78, 203, 141, 0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 50px;
  white-space: nowrap;
}

.tour-card-body h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 700;
  color: white;
  line-height: 1.3;
  margin-bottom: 0.6rem;
  letter-spacing: -0.01em;
}

.tour-card-body p {
  font-size: 0.865rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.7;
  font-weight: 300;
  flex: 1;
  margin-bottom: 1.25rem;
}

/* Card footer */
.tour-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: auto;
}

.tour-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
}

.price-from,
.price-per {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  font-weight: 400;
}

.tour-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--green-light);
  line-height: 1;
}

.tour-card--featured .tour-price strong {
  color: var(--gold-light);
}

.btn-tour {
  display: inline-flex;
  align-items: center;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15);
  color: white;
  text-decoration: none;
  padding: 0.6rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition-fast);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-tour:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: translateY(-2px);
  box-shadow: 0 6px 18px rgba(44, 160, 110, 0.45);
}

.tour-card--featured .btn-tour {
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  border-color: transparent;
  box-shadow: 0 4px 14px rgba(44, 160, 110, 0.4);
}

/* ── CTA row ── */
.tours-cta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  flex-wrap: wrap;
  margin-top: 3.5rem;
}

.tours-cta p {
  font-size: 1rem;
  color: rgba(255,255,255,0.55);
  width: 100%;
  text-align: center;
  margin-bottom: -0.25rem;
}

.btn-all-tours {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  color: white;
  text-decoration: none;
  padding: 0.95rem 2rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: all var(--transition);
  box-shadow: 0 6px 25px rgba(44, 160, 110, 0.4);
  position: relative;
  overflow: hidden;
}

.btn-all-tours::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-mid), var(--green-bright));
  opacity: 0;
  transition: opacity var(--transition);
}

.btn-all-tours:hover { transform: translateY(-3px); box-shadow: 0 14px 35px rgba(44,160,110,0.5); }
.btn-all-tours:hover::before { opacity: 1; }
.btn-all-tours span, .btn-all-tours svg { position: relative; z-index: 1; }
.btn-all-tours svg { width: 17px; height: 17px; transition: transform var(--transition-fast); }
.btn-all-tours:hover svg { transform: translateX(4px); }

.btn-custom-tour {
  display: inline-flex;
  align-items: center;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  padding: 0.95rem 1.75rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  border: 1px solid rgba(255,255,255,0.2);
  transition: all var(--transition);
  letter-spacing: 0.03em;
  backdrop-filter: blur(6px);
}

.btn-custom-tour:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(255,255,255,0.35);
  color: white;
  transform: translateY(-3px);
}

/* ── Responsive ── */
@media (max-width: 1200px) {
  #panel-day .tours-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 900px) {
  .tour-card--wide {
    flex-direction: column;
  }
  .tour-card--wide .tour-card-img {
    width: 100%;
    height: 240px;
  }
}

@media (max-width: 640px) {
  .tours-section { padding: 5rem 1.25rem; }

  #panel-day .tours-grid {
    grid-template-columns: 1fr;
  }

  .tours-tabs {
    width: 100%;
    border-radius: 16px;
  }

  .tours-tab {
    flex: 1;
    justify-content: center;
    padding: 0.7rem 0.5rem;
    font-size: 0.82rem;
  }

  .tours-cta {
    flex-direction: column;
    align-items: stretch;
    text-align: center;
  }

  .btn-all-tours,
  .btn-custom-tour {
    justify-content: center;
  }
}

/* =============================================
   TESTIMONIALS SECTION
   ============================================= */

.testimonials-section {
  background: var(--white);
  padding: 7rem 0;
  position: relative;
  overflow: hidden;
}

/* Pale green tinted background */
.testimonials-section::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: linear-gradient(180deg, var(--green-pale) 0%, transparent 40%, var(--green-pale) 100%); */
  opacity: 0.3;
  pointer-events: none;
  
}

.testi-container {
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.testi-header {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 2.5rem;
  padding: 0 2rem;
}

.testi-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.01em;
}

.testi-heading em {
  font-style: italic;
  color: var(--green-bright);
}

.testi-subtext {
  font-size: 1rem;
  color: var(--text-mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Star summary bar ── */
.testi-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  padding: 1.5rem 2rem;
  max-width: 700px;
  margin: 0 auto 3rem;
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.1);
  border-radius: 20px;
  box-shadow: 0 4px 25px rgba(13, 61, 43, 0.07);
}

.summary-score {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
}

.summary-score strong {
  font-family: var(--font-display);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1;
}

.summary-stars {
  display: flex;
  gap: 3px;
}

.summary-stars svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  fill: var(--gold);
}

.summary-score span {
  font-size: 0.78rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

.summary-platforms {
  display: flex;
  gap: 1.25rem;
}

.platform-badge {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.6rem 1rem;
  background: rgba(13, 61, 43, 0.04);
  border: 1px solid rgba(13, 61, 43, 0.08);
  border-radius: 12px;
  transition: border-color var(--transition-fast), background var(--transition-fast);
}

.platform-badge:hover {
  background: rgba(13, 61, 43, 0.07);
  border-color: rgba(44, 160, 110, 0.25);
}

.platform-badge svg {
  width: 20px;
  height: 20px;
  color: var(--green-bright);
  flex-shrink: 0;
}

.platform-badge strong {
  display: block;
  font-size: 1rem;
  font-weight: 700;
  color: var(--text-dark);
  line-height: 1.1;
}

.platform-badge span {
  display: block;
  font-size: 0.7rem;
  color: var(--text-mid);
  letter-spacing: 0.03em;
}

/* ── Scrolling track ── */
.testi-track-wrapper {
  position: relative;
  overflow: hidden;
  padding: 1rem 0 1.5rem;
}

.testi-track {
  display: flex;
  gap: 1.5rem;
  padding: 0.5rem 2rem;
  transition: transform 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
  will-change: transform;
}

/* Fade edge masks */
.testi-fade {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 120px;
  z-index: 2;
  pointer-events: none;
}

.testi-fade--left {
  left: 0;
  background: linear-gradient(to right, var(--white), transparent);
}

.testi-fade--right {
  right: 0;
  background: linear-gradient(to left, var(--white), transparent);
}

/* ── Testimonial card ── */
.testi-card {
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.09);
  border-radius: 24px;
  padding: 2rem;
  min-width: 360px;
  max-width: 360px;
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  box-shadow: 0 4px 20px rgba(13, 61, 43, 0.06);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
  cursor: default;
}

.testi-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 45px rgba(13, 61, 43, 0.12);
  border-color: rgba(44, 160, 110, 0.25);
}

.testi-card--featured {
  background: linear-gradient(145deg, var(--green-deep) 0%, #0e4a32 100%);
  border-color: rgba(78, 203, 141, 0.35);
  box-shadow: 0 8px 30px rgba(13, 61, 43, 0.25);
}

.testi-card--featured:hover {
  box-shadow: 0 20px 50px rgba(13, 61, 43, 0.35);
  border-color: rgba(78, 203, 141, 0.5);
}

/* Card top row */
.testi-card-top {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  position: relative;
}

/* Avatar */
.testi-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--green-pale);
  box-shadow: 0 3px 10px rgba(0,0,0,0.12);
}

.testi-card--featured .testi-avatar {
  border-color: rgba(78, 203, 141, 0.4);
}

.testi-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

/* Meta */
.testi-meta {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.testi-meta strong {
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--text-dark);
  letter-spacing: 0.01em;
}

.testi-card--featured .testi-meta strong {
  color: white;
}

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

.testi-card--featured .testi-meta span {
  color: rgba(255,255,255,0.6);
}

/* Stars */
.testi-stars {
  display: flex;
  gap: 2px;
  margin-top: 0.15rem;
}

.testi-stars svg {
  width: 13px;
  height: 13px;
  fill: var(--gold);
  color: var(--gold);
}

/* Quote icon */
.testi-quote-icon {
  position: absolute;
  top: 0;
  right: 0;
  color: var(--green-pale);
  opacity: 0.6;
}

.testi-card--featured .testi-quote-icon {
  color: rgba(78, 203, 141, 0.25);
  opacity: 1;
}

.testi-quote-icon svg {
  width: 28px;
  height: 28px;
}

/* Review text */
.testi-text {
  font-size: 0.9rem;
  color: var(--text-mid);
  line-height: 1.8;
  font-weight: 300;
  font-style: italic;
  flex: 1;
}

.testi-card--featured .testi-text {
  color: rgba(255,255,255,0.75);
}

/* Tour tag at bottom */
.testi-tour-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--green-bright);
  background: rgba(44, 160, 110, 0.08);
  border: 1px solid rgba(44, 160, 110, 0.2);
  padding: 0.35rem 0.85rem;
  border-radius: 50px;
  letter-spacing: 0.03em;
  width: fit-content;
}

.testi-card--featured .testi-tour-tag {
  background: rgba(78, 203, 141, 0.12);
  border-color: rgba(78, 203, 141, 0.3);
  color: var(--green-light);
}

.testi-tour-tag svg {
  width: 13px;
  height: 13px;
}

/* ── Controls ── */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin-top: 2rem;
  padding: 0 2rem;
}

.testi-btn {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: white;
  border: 1px solid rgba(13, 61, 43, 0.15);
  color: var(--green-deep);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
  box-shadow: 0 2px 10px rgba(13, 61, 43, 0.08);
  flex-shrink: 0;
}

.testi-btn svg {
  width: 18px;
  height: 18px;
}

.testi-btn:hover {
  background: var(--green-deep);
  border-color: var(--green-deep);
  color: white;
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(13, 61, 43, 0.25);
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testi-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(13, 61, 43, 0.2);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all var(--transition);
}

.testi-dot.active {
  width: 24px;
  border-radius: 4px;
  background: var(--green-bright);
}

/* ── Responsive ── */
@media (max-width: 768px) {
  .testi-summary {
    flex-direction: column;
    gap: 1.5rem;
  }

  .summary-platforms {
    flex-wrap: wrap;
    justify-content: center;
  }

  .testi-card {
    min-width: 300px;
    max-width: 300px;
  }

  .testi-fade {
    width: 60px;
  }
}

@media (max-width: 480px) {
  .testimonials-section {
    padding: 5rem 0;
  }

  .testi-card {
    min-width: 280px;
    max-width: 280px;
    padding: 1.5rem;
  }
}


/* =============================================
   GALLERY SECTION
   ============================================= */

.gallery-section {
  background: linear-gradient(160deg, var(--green-deep) 0%, #0e4a32 55%, #0d3d2b 100%);
  padding: 7rem 2rem;
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.gallery-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(78, 203, 141, 0.06) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb bottom left */
.gallery-section::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 480px;
  height: 480px;
  background: radial-gradient(circle, rgba(44,160,110,0.16) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.gallery-container {
  max-width: 1300px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

/* ── Header ── */
.gallery-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.gallery-heading {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700;
  color: white;
  line-height: 1.2;
  margin: 0.75rem 0 1rem;
  letter-spacing: -0.01em;
}

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

.gallery-subtext {
  font-size: 1rem;
  color: rgba(255,255,255,0.6);
  line-height: 1.75;
  font-weight: 300;
}

/* ── Masonry grid ── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 260px 260px;
  gap: 1rem;
  margin-bottom: 3rem;
}

/* Tall item — spans 2 rows, 1 column (top left) */
.gallery-item--tall {
  grid-column: 1;
  grid-row: 1 / 3;
}

/* Wide item — spans 2 columns (bottom center) */
.gallery-item--wide {
  grid-column: 2 / 4;
  grid-row: 2;
}

/* Tall right — spans 2 rows (far right) */
.gallery-item--tall-right {
  grid-column: 4;
  grid-row: 1 / 3;
}

/* Base item */
.gallery-item {
  position: relative;
  border-radius: 18px;
  overflow: hidden;
  cursor: pointer;
  background: rgba(255,255,255,0.04);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.65s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.gallery-item:hover img {
  transform: scale(1.08);
}

/* ── Overlay ── */
.gallery-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(5, 25, 15, 0.88) 0%,
    rgba(5, 25, 15, 0.3) 45%,
    transparent 70%
  );
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 1.25rem;
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover .gallery-overlay {
  opacity: 1;
}

.gallery-overlay-content {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.gallery-cat {
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--green-light);
  background: rgba(13, 61, 43, 0.7);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(78, 203, 141, 0.3);
  padding: 0.2rem 0.6rem;
  border-radius: 50px;
  width: fit-content;
}

.gallery-overlay-content p {
  font-size: 0.875rem;
  font-weight: 600;
  color: white;
  line-height: 1.3;
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* Zoom button */
.gallery-zoom {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.12);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.25);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  align-self: flex-end;
  transition: background var(--transition-fast), transform var(--transition-fast);
}

.gallery-zoom svg {
  width: 16px;
  height: 16px;
}

.gallery-zoom:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: scale(1.1);
}

/* Subtle border on all items */
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 18px;
  border: 1px solid rgba(255,255,255,0.07);
  pointer-events: none;
  transition: border-color var(--transition);
}

.gallery-item:hover::after {
  border-color: rgba(78, 203, 141, 0.3);
}

/* ── CTA ── */
.gallery-cta {
  display: flex;
  justify-content: center;
}

.btn-gallery {
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.25);
  color: white;
  text-decoration: none;
  padding: 0.95rem 2.25rem;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.btn-gallery::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--green-bright), var(--green-light));
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 0;
}

.btn-gallery:hover {
  border-color: var(--green-bright);
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(44, 160, 110, 0.4);
}

.btn-gallery:hover::before {
  opacity: 1;
}

.btn-gallery span,
.btn-gallery svg {
  position: relative;
  z-index: 1;
}

.btn-gallery svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
}

.btn-gallery:hover svg {
  transform: translateX(5px);
}

/* ── Lightbox ── */
.lightbox-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.92);
  backdrop-filter: blur(8px);
  z-index: 9000;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox-backdrop.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 9001;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.35s ease;
}

.lightbox.active {
  opacity: 1;
  pointer-events: all;
}

.lightbox-img-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 90vw;
  max-height: 90vh;
}

.lightbox-img-wrap img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.6);
  display: block;
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.lightbox-img-wrap p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  text-align: center;
}

.lightbox-close {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: scale(1.1) rotate(90deg);
}

.lightbox-close svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav {
  position: fixed;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.2);
  color: white;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition-fast);
}

.lightbox-nav svg {
  width: 20px;
  height: 20px;
}

.lightbox-nav:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  transform: translateY(-50%) scale(1.1);
}

.lightbox-nav--prev { left: 1.5rem; }
.lightbox-nav--next { right: 1.5rem; }

.lightbox-counter {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.5);
  font-size: 0.8rem;
  letter-spacing: 0.1em;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: 220px 220px 220px;
  }

  .gallery-item--tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-item--tall-right {
    grid-column: 2;
    grid-row: 1 / 3;
  }
}

@media (max-width: 600px) {
  .gallery-section {
    padding: 5rem 1.25rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 160px 160px 160px;
  }

  .gallery-item--tall {
    grid-column: 1;
    grid-row: 1 / 3;
  }

  .gallery-item--wide {
    grid-column: 1 / 3;
    grid-row: 3;
  }

  .gallery-item--tall-right {
    grid-column: 2;
    grid-row: 1 / 3;
  }

  .lightbox-nav--prev { left: 0.5rem; }
  .lightbox-nav--next { right: 0.5rem; }
}


/* =============================================
   FOOTER
   ============================================= */

.site-footer {
  background: linear-gradient(160deg, var(--green-deep) 0%, #071f13 100%);
  position: relative;
  overflow: hidden;
}

/* Dot texture */
.site-footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(rgba(78, 203, 141, 0.05) 1px, transparent 1px);
  background-size: 28px 28px;
  pointer-events: none;
  z-index: 0;
}

/* Glowing orb */
.site-footer::after {
  content: '';
  position: absolute;
  bottom: -80px;
  right: -80px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(44,160,110,0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

/* Top wave */
.footer-wave {
  line-height: 0;
  position: relative;
  z-index: 1;
}

.footer-wave svg {
  width: 100%;
  height: 80px;
  display: block;
}

/* ── Main grid ── */
.footer-inner {
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.3fr;
  gap: 3rem;
  max-width: 1300px;
  margin: 0 auto;
  padding: 3.5rem 2rem 4rem;
  position: relative;
  z-index: 1;
}

/* ── Brand column ── */
.footer-logo {
  margin-bottom: 1.25rem;
  display: inline-flex;
}

.footer-brand-desc {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.8;
  font-weight: 300;
  margin-bottom: 1.5rem;
  max-width: 280px;
}

/* Social icons */
.footer-social {
  display: flex;
  gap: 0.6rem;
  margin-bottom: 1.5rem;
}

.footer-social-icon {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  transition: all var(--transition-fast);
}

.footer-social-icon svg {
  width: 16px;
  height: 16px;
}

.footer-social-icon:hover {
  background: var(--green-bright);
  border-color: var(--green-bright);
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 6px 16px rgba(44, 160, 110, 0.4);
}

/* Trust badges */
.footer-badges {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.footer-badge {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 50px;
  padding: 0.35rem 0.85rem;
  font-size: 0.72rem;
  font-weight: 600;
  color: rgba(255,255,255,0.55);
  letter-spacing: 0.04em;
}

.footer-badge svg {
  width: 13px;
  height: 13px;
  color: var(--green-light);
}

/* ── Nav columns ── */
.footer-col-title {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.25rem;
  padding-bottom: 0.75rem;
  border-bottom: 1px solid rgba(78, 203, 141, 0.15);
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast), padding-left var(--transition-fast);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 300;
  line-height: 1.5;
}

.footer-links a::before {
  content: '';
  display: inline-block;
  width: 0;
  height: 1px;
  background: var(--green-light);
  transition: width var(--transition-fast);
  flex-shrink: 0;
}

.footer-links a:hover {
  color: white;
  padding-left: 4px;
}

.footer-links a:hover::before {
  width: 12px;
}

/* ── Contact list ── */
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
  margin-bottom: 1.5rem;
}

.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 1.5;
}

.footer-contact-list svg {
  width: 15px;
  height: 15px;
  color: var(--green-light);
  flex-shrink: 0;
  margin-top: 2px;
}

.footer-contact-list a {
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  transition: color var(--transition-fast);
}

.footer-contact-list a:hover {
  color: var(--green-light);
}

/* WhatsApp button */
.footer-whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.65rem 1.25rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  transition: all var(--transition-fast);
  box-shadow: 0 4px 14px rgba(37, 211, 102, 0.35);
}

.footer-whatsapp svg {
  width: 16px;
  height: 16px;
}

.footer-whatsapp:hover {
  background: #1ebe57;
  transform: translateY(-2px);
  box-shadow: 0 8px 20px rgba(37, 211, 102, 0.45);
}

/* ── Bottom bar ── */
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.07);
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  max-width: 1300px;
  margin: 0 auto;
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-copy {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.35);
  font-weight: 300;
}

.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.footer-bottom-links a {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--transition-fast);
  font-weight: 300;
}

.footer-bottom-links a:hover {
  color: var(--green-light);
}

.footer-divider {
  color: rgba(255,255,255,0.15);
  font-size: 0.8rem;
}

.footer-made {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
  font-weight: 300;
}

.beesmart-link {
  color: rgb(151, 151, 151);
  text-decoration: none;
  transition: color var(--transition-fast);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

  .footer-brand {
    grid-column: 1 / 3;
  }

  .footer-brand-desc {
    max-width: 100%;
  }
}

@media (max-width: 640px) {
  .footer-inner {
    grid-template-columns: 1fr;
    padding: 2.5rem 1.25rem 3rem;
    gap: 2rem;
  }

  .footer-brand {
    grid-column: 1;
  }

  .footer-bottom-inner {
    flex-direction: column;
    text-align: center;
    gap: 0.75rem;
    padding: 1.25rem;
  }

  .footer-bottom-links {
    flex-wrap: wrap;
    justify-content: center;
  }
}



/* =============================================
   WHATSAPP FLOAT BUTTON
   ============================================= */

.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  left: 2rem;
  z-index: 1999;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: #25D366;
  color: white;
  text-decoration: none;
  padding: 0.75rem 1.25rem 0.75rem 0.9rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
  transition: all var(--transition);
  overflow: hidden;
  max-width: 52px; /* collapsed — shows only icon */
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  transition: transform var(--transition);
}

.whatsapp-float-label {
  white-space: nowrap;
  opacity: 0;
  max-width: 0;
  overflow: hidden;
  transition: opacity var(--transition), max-width var(--transition);
}

/* Expand on hover */
.whatsapp-float:hover {
  max-width: 200px;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.55);
  transform: translateY(-3px);
}

.whatsapp-float:hover .whatsapp-float-label {
  opacity: 1;
  max-width: 140px;
}

.whatsapp-float:hover svg {
  transform: scale(1.1) rotate(-8deg);
}

/* Pulse ring animation */
.whatsapp-float::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 50px;
  background: #25D366;
  z-index: -1;
  animation: waPulse 2.5s ease-out infinite;
}

@keyframes waPulse {
  0%   { transform: scale(1);   opacity: 0.6; }
  70%  { transform: scale(1.4); opacity: 0; }
  100% { transform: scale(1.4); opacity: 0; }
}

@media (max-width: 600px) {
  .whatsapp-float {
    bottom: 1rem;
    left: 1rem;
    padding: 0.7rem;
    max-width: 48px;
    border-radius: 50%;
  }

  /* Always icon-only on mobile — no expand */
  .whatsapp-float:hover {
    max-width: 48px;
    border-radius: 50%;
  }

  .whatsapp-float:hover .whatsapp-float-label {
    display: none;
  }

  .whatsapp-float svg {
    width: 26px;
    height: 26px;
  }
}