/* ===== MODERN ATV TERAS DESIGN SYSTEM ===== */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600&display=swap');

:root {
  /* Colors */
  --color-bg: #090a0a;
  --color-bg-alt: #111312;
  --color-surface: rgba(26, 30, 28, 0.6);
  --color-surface-hover: rgba(36, 42, 39, 0.8);
  
  --color-primary: #ff5722; /* Vibrant Orange */
  --color-primary-glow: rgba(255, 87, 34, 0.25);
  --color-accent: #ff9800; /* Warm Yellow/Orange */
  --color-accent-glow: rgba(255, 152, 0, 0.25);
  
  --color-text: #f0f4f0;
  --color-text-muted: #94a398;
  
  --color-green: #00e676;
  --color-blue: #2979ff;
  --color-whatsapp: #25D366;
  --color-border: rgba(255, 255, 255, 0.08);

  /* Typography */
  --font-display: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;

  /* Spacing & Border Radius */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --radius-full: 9999px;

  /* Shadows & Effects */
  --shadow-glow: 0 0 40px var(--color-primary-glow);
  --shadow-card: 0 20px 40px rgba(0, 0, 0, 0.4);
  --glass-blur: blur(16px);
  
  /* Transitions */
  --transition: 0.3s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-slow: 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  --transition-bounce: 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* --- Language Switcher --- */
.lang-switcher {
  display: flex;
  align-items: center;
}

.lang-btn {
  background: rgba(255, 255, 255, 0.08);
  padding: 8px 16px !important;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-weight: 700 !important;
  font-size: 0.7rem !important;
  color: white !important;
  display: flex;
  align-items: center;
  gap: 6px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  letter-spacing: 1px;
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}

.lang-btn:hover {
  background: var(--color-primary);
  border-color: var(--color-primary);
  color: white !important;
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 20px rgba(255, 87, 34, 0.3);
}

.lang-btn ion-icon {
  font-size: 1.1rem;
  margin-right: 6px;
}

@media (max-width: 991px) {
  .lang-switcher {
    margin-left: 0;
    margin-top: 20px;
    width: 100%;
    justify-content: center;
  }
  .lang-btn {
    width: 150px;
    justify-content: center;
  }
}

/* ===== RESET & BASE ===== */
*, *::before, *::after {
  margin: 0; padding: 0; box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}

body {
  font-family: var(--font-body);
  background-color: var(--color-bg);
  color: var(--color-text);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, video {
  max-width: 100%;
  height: auto;
  display: block;
  border-radius: var(--radius-md);
}

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* Typography Utilities */
.accent-text {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  font-weight: 800;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  line-height: 1.2;
}

/* ===== UI COMPONENTS ===== */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 32px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition-bounce);
  cursor: pointer;
  border: none;
  text-align: center;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
  box-shadow: 0 8px 24px var(--color-primary-glow);
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 0; left: 0; width: 100%; height: 100%;
  background: linear-gradient(135deg, var(--color-accent), var(--color-primary));
  z-index: -1;
  transition: var(--transition);
  opacity: 0;
}

.btn-primary:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px var(--color-primary-glow);
}

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

.btn-outline {
  background: transparent;
  color: var(--color-text);
  border: 2px solid rgba(255, 255, 255, 0.2);
}

.btn-outline:hover {
  border-color: var(--color-primary);
  color: var(--color-primary);
  background: rgba(255, 87, 34, 0.05);
  transform: translateY(-4px);
}

.btn-whatsapp {
  background: var(--color-whatsapp);
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.3);
}

.btn-whatsapp:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.4);
}

.btn-glass {
  background: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border);
  color: var(--color-text);
}

.btn-glass:hover {
  background: var(--color-surface-hover);
  border-color: var(--color-primary);
  transform: translateY(-4px);
}

/* Badges */
.badge {
  display: inline-block;
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.badge-outline {
  border: 1px solid var(--color-border);
  background: var(--color-surface);
  color: var(--color-accent);
}

.badge-solid {
  background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
  color: white;
}

/* Glass Cards */
.glass-card {
  background: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  transition: var(--transition-bounce);
  position: relative;
  overflow: hidden;
}

.glass-card::before {
  content: '';
  position: absolute;
  top: 0; left: -100%; width: 50%; height: 100%;
  background: linear-gradient(to right, transparent, rgba(255,255,255,0.03), transparent);
  transform: skewX(-20deg);
  transition: 0.7s ease;
}

.glass-card:hover {
  transform: translateY(-8px);
  border-color: rgba(255, 87, 34, 0.3);
  box-shadow: var(--shadow-card), 0 0 40px rgba(255, 87, 34, 0.1);
}

.glass-card:hover::before {
  left: 200%;
}

/* ===== LAYOUT & SECTIONS ===== */

.section-padding {
  padding: 120px 0;
}

.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 64px;
}

.section-header .badge {
  margin-bottom: 16px;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -1px;
  margin-bottom: 16px;
}

.section-desc {
  font-size: 1.1rem;
  color: var(--color-text-muted);
}

/* ===== NAVIGATION ===== */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 24px 0;
  transition: var(--transition);
}

.navbar.scrolled {
  padding: 16px 0;
  background: rgba(9, 10, 10, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--color-border);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 900;
  letter-spacing: -0.5px;
}

.nav-logo .icon {
  font-size: 1.8rem;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 24px;
}

.nav-link {
  font-weight: 500;
  font-size: 1rem;
  color: var(--color-text-muted);
  transition: var(--transition);
  position: relative;
}

.nav-link:hover, .nav-link.active {
  color: white;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: -6px; left: 50%;
  width: 0; height: 2px;
  background: var(--color-primary);
  transition: var(--transition);
  transform: translateX(-50%);
}

.nav-link:hover::after, .nav-link.active::after {
  width: 100%;
}

.hamburger {
  display: none;
  background: none; border: none; cursor: pointer;
  flex-direction: column; gap: 6px;
  z-index: 1001;
}

.hamburger .bar {
  width: 30px; height: 2px;
  background: white;
  transition: var(--transition);
}

/* ===== HERO SECTION ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  padding-top: 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(9,10,10,0.3) 0%, rgba(9,10,10,1) 100%);
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -2px;
  margin-bottom: 24px;
  text-transform: uppercase;
}

.hero-subtitle {
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--color-text-muted);
  margin-bottom: 40px;
  max-width: 600px;
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating Elements Animation */
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

.floating-element {
  animation: float 6s ease-in-out infinite;
}

/* ===== STATS BAR ===== */
.stats-bar {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  background: var(--color-surface);
  backdrop-filter: var(--glass-blur);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-xl);
  padding: 40px;
  margin-top: -60px;
  position: relative;
  z-index: 10;
}

.stat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  border-right: 1px solid var(--color-border);
  padding: 0 10px;
}

.stat-item:last-child {
  border-right: none;
}

.stat-num {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: var(--color-primary);
  line-height: 1;
  margin-bottom: 8px;
}

.stat-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
}

/* ===== GRID LAYOUTS ===== */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 40px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }

/* ===== PACKAGE CARDS ===== */
.package-card {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.package-img-wrapper {
  position: relative;
  height: 240px;
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
}

.package-img-wrapper img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.package-card:hover .package-img-wrapper img {
  transform: scale(1.08);
}

.package-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--color-primary);
  color: white;
  padding: 6px 12px;
  border-radius: var(--radius-full);
  font-size: 0.8rem;
  font-weight: 700;
  font-family: var(--font-display);
  z-index: 10;
}

.package-price {
  font-family: var(--font-display);
  font-size: 3rem;
  font-weight: 900;
  color: white;
  margin: 16px 0;
  display: flex;
  align-items: baseline;
  gap: 8px;
}

.package-price span {
  font-size: 1rem;
  color: var(--color-text-muted);
  font-weight: 500;
}

.package-features {
  margin-bottom: 32px;
  flex-grow: 1;
}

.package-features li {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 12px;
  color: var(--color-text-muted);
}

.package-features li i {
  color: var(--color-primary);
  font-size: 1.2rem;
}

/* ===== FEATURES/TRAILS ===== */
.trail-card {
  padding: 0;
}

.trail-content {
  padding: 32px;
}

.trail-icon {
  width: 64px; height: 64px;
  background: rgba(255, 87, 34, 0.1);
  border-radius: var(--radius-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin-bottom: 24px;
  color: var(--color-primary);
}

/* ===== FOOTER ===== */
.footer {
  background: var(--color-bg-alt);
  padding: 80px 0 40px;
  border-top: 1px solid var(--color-border);
}

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

.footer-brand p {
  color: var(--color-text-muted);
  margin-top: 16px;
  max-width: 300px;
}

.footer-heading {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 24px;
  color: white;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: var(--color-text-muted);
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--color-primary);
  padding-left: 8px;
}

.footer-bottom {
  text-align: center;
  padding-top: 32px;
  border-top: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-size: 0.9rem;
}

/* ===== GALLERY ===== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1 / 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
}

.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.4);
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  transition: var(--transition);
}

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

.gallery-overlay span {
  color: white;
  font-family: var(--font-display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  transform: translateY(20px);
  transition: var(--transition);
}

.gallery-item:hover .gallery-overlay span {
  transform: translateY(0);
}

/* Lightbox Styling */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.95);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  z-index: 2000;
  display: flex; align-items: center; justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
  padding: 40px;
}

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

.lightbox-close {
  position: absolute;
  top: 40px; right: 40px;
  background: white;
  color: black;
  border: none;
  width: 50px; height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  z-index: 2001;
  transition: var(--transition-bounce);
}

.lightbox-close:hover {
  transform: scale(1.1) rotate(90deg);
}

.lightbox img {
  max-width: 100%;
  max-height: 85vh;
  border-radius: var(--radius-md);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
  transform: scale(0.9);
  transition: var(--transition-bounce);
}

.lightbox.active img {
  transform: scale(1);
}

/* ===== ANIMATIONS (Scroll Reveal) ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.reveal-scale { transform: scale(0.9); }

.reveal-left.visible, .reveal-right.visible, .reveal-scale.visible {
  transform: translate(0) scale(1);
}

/* Delay classes */
.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }

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

@media (max-width: 768px) {
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 80%; max-width: 400px;
    height: 100vh;
    background: var(--color-bg-alt);
    flex-direction: column;
    justify-content: center;
    transition: 0.4s ease;
    border-left: 1px solid var(--color-border);
  }
  
  .nav-menu.active {
    right: 0;
  }
  
  .hamburger { display: flex; }
  .hamburger.active .bar:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .hamburger.active .bar:nth-child(2) { opacity: 0; }
  .hamburger.active .bar:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  
  .stats-bar {
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    padding: 24px 12px;
    margin-top: -40px;
    border-radius: var(--radius-lg);
  }
  
  .stat-item {
    border-right: 1px solid var(--color-border);
    border-bottom: none;
    padding-bottom: 0;
  }
  .stat-item:last-child { border-right: none; }

  .stat-num {
    font-size: 1.75rem;
  }
  
  .stat-label {
    font-size: 0.65rem;
    letter-spacing: 0;
  }

  /* Best Practice Mobile Footer: Clean Vertical Stack */
  .footer-grid { 
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 48px;
    text-align: center;
  }

  .footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 100%;
  }

  .footer-brand p {
    max-width: 280px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
    margin-bottom: 0;
  }

  .social-links {
    display: flex;
    gap: 20px;
    margin-top: 24px;
    justify-content: center;
  }

  .footer-links-container {
    width: 100%;
    padding: 32px 0;
    border-top: 1px solid rgba(255,255,255,0.08);
  }

  /* Explore Section as a 2x2 Grid */
  .footer-links:nth-child(1) ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    width: 100%;
  }

  /* Hide the original Legal header/list in the container */
  .footer-links:nth-child(2) {
    display: none;
  }

  .footer-heading {
    margin-bottom: 24px;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-primary);
  }

  /* Contact section alignment */
  .footer-links:last-child {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding-top: 32px;
    width: 100%;
  }

  .footer-links:last-child ul {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }

  /* Horizontal Legal Links at the very bottom */
  .footer-legal-mobile {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-top: 20px;
    font-size: 0.8rem;
    opacity: 0.7;
  }
  
  .footer-legal-mobile a { color: white; }

  .social-link {
    width: 40px; height: 40px;
    background: rgba(255,255,255,0.05);
    border: 1px solid var(--color-border);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    font-size: 1.2rem;
    transition: var(--transition-bounce);
  }

  .social-link:hover {
    background: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-5px);
  }

  /* Redesign Features (Home) for Mobile - Horizontal layout */
  .home-features .trail-card .trail-content {
    display: flex;
    gap: 20px;
    padding: 24px;
    text-align: left;
    align-items: flex-start;
  }
  
  .home-features .trail-icon {
    width: 54px; height: 54px;
    min-width: 54px;
    font-size: 1.5rem;
    margin-bottom: 0;
  }
  
  .home-features .trail-content h3 {
    margin-top: 4px;
    font-size: 1.1rem;
  }

  /* Redesign Packages for Mobile - Horizontal Scroll */
  .grid-3, #teambuilding-packages-container {
    display: flex;
    overflow-x: auto;
    gap: 20px;
    padding: 20px 4px 30px;
    margin-left: -15px;
    margin-right: -15px;
    padding-left: 15px;
    padding-right: 15px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
  }
  
  .grid-3::-webkit-scrollbar,
  #teambuilding-packages-container::-webkit-scrollbar {
    height: 4px;
  }

  .grid-3::-webkit-scrollbar-track,
  #teambuilding-packages-container::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-full);
  }

  .grid-3::-webkit-scrollbar-thumb,
  #teambuilding-packages-container::-webkit-scrollbar-thumb {
    background: var(--color-primary);
    border-radius: var(--radius-full);
  }
  
  .grid-3 > *, #teambuilding-packages-container > * {
    min-width: 88%;
    scroll-snap-align: center;
  }

  /* Compact spacing for Mobile cards */
  .tb-package-card div[style*="padding:28px"],
  .tb-package-card div[style*="padding: 28px"] {
    padding: 20px 18px !important;
  }

  .tb-package-card h3 {
    font-size: 1.45rem !important;
  }

  .package-img-wrapper {
    height: 180px;
  }

  .package-price {
    font-size: 2.2rem;
  }

  /* Gallery Mobile Redesign */
  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }
  
  .gallery-item {
    /* Uses global aspect-ratio: 1/1 */
  }

  .lightbox {
    padding: 20px;
  }

  .lightbox-close {
    top: 20px; right: 20px;
    width: 44px; height: 44px;
    font-size: 1.5rem;
  }
}

/* Floating WhatsApp */
.wa-float {
  position: fixed;
  bottom: 30px; right: 30px;
  width: 60px; height: 60px;
  background: var(--color-whatsapp);
  color: white;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
  box-shadow: 0 10px 24px rgba(37, 211, 102, 0.4);
  z-index: 99;
  transition: var(--transition-bounce);
}

.wa-float:hover {
  transform: scale(1.1) translateY(-10px);
}

/* Time Slots */
.time-slot {
  background: var(--color-surface);
  border: 1.5px solid var(--color-border);
  border-radius: 12px;
  padding: 14px;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.time-slot .slot-time {
  font-weight: 700;
  color: var(--color-text);
  font-size: 1rem;
}

.time-slot .slot-count {
  font-size: 0.75rem;
  color: var(--color-text-muted);
}

.time-slot:hover:not(.sold-out) {
  border-color: var(--color-primary);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(255, 87, 34, 0.1);
}

.time-slot.active {
  background: rgba(255, 87, 34, 0.1);
  border-color: var(--color-primary);
}

.time-slot.active .slot-time, .time-slot.active .slot-count {
  color: var(--color-primary);
}

.time-slot.sold-out {
  opacity: 0.5;
  cursor: not-allowed;
  background: #F3F4F6;
  border-color: #E5E7EB;
}

.time-slot.sold-out .slot-time {
  text-decoration: line-through;
  color: #9CA3AF;
}

/* ===== TEAM BUILDING RICH CARDS ===== */

/* Override grid for TB so cards can be full-width if needed */
#teambuilding-packages-container {
  grid-template-columns: repeat(auto-fill, minmax(440px, 1fr));
  gap: 40px;
}

/* Prevent the generic glass-card hover lift from distorting the hero image */
.tb-package-card {
  padding: 0 !important;
  overflow: hidden;
}

.tb-package-card:hover {
  transform: translateY(-6px);
}

/* ---- Section blocks inside the card ---- */
.tb-section {
  border-top: 1px solid var(--color-border);
  padding-top: 20px;
  margin-top: 20px;
}

.tb-section-title {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  color: var(--color-accent);
  margin-bottom: 14px;
}

.tb-section-title ion-icon {
  font-size: 1.1rem;
}

/* Intro text */
.tb-intro-text {
  color: var(--color-text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ---- Timeline ---- */
.tb-timeline {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 4px;
}

.tb-timeline-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  font-size: 0.92rem;
}

.tb-timeline-dot {
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  margin-top: 5px;
}

.tb-time {
  font-weight: 700;
  color: white;
  white-space: nowrap;
}

.tb-act {
  color: var(--color-text-muted);
}

/* ---- Objectives ---- */
.tb-objectives-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tb-objectives-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  color: var(--color-text-muted);
}

.tb-objectives-list li ion-icon {
  flex-shrink: 0;
  font-size: 1.1rem;
}

/* ---- Two-column details (Inclusions / Exclusions / Bring / Facilities) ---- */
.tb-two-cols {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.tb-detail-box {
  background: rgba(255,255,255,0.02);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 16px;
}

.tb-detail-heading {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.8px;
  margin-bottom: 10px;
}

.tb-inclusions .tb-detail-heading  { color: #10B981; }
.tb-exclusions .tb-detail-heading  { color: #EF4444; }
.tb-bring .tb-detail-heading       { color: var(--color-accent); }
.tb-facilities .tb-detail-heading  { color: var(--color-blue); }

.tb-detail-box ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.tb-detail-box ul li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  color: var(--color-text-muted);
}

.tb-detail-box ul li ion-icon {
  flex-shrink: 0;
  font-size: 1rem;
}

.tb-inclusions li ion-icon  { color: #10B981; }
.tb-exclusions li ion-icon  { color: #EF4444; }
.tb-bring li ion-icon       { color: var(--color-accent); }
.tb-facilities li ion-icon  { color: var(--color-blue); }

/* ---- Conclusion ---- */
.tb-conclusion {
  margin-top: 20px;
  padding: 16px 20px;
  background: rgba(255,87,34,0.06);
  border: 1px solid rgba(255,87,34,0.2);
  border-radius: var(--radius-md);
  font-size: 0.92rem;
  color: var(--color-text-muted);
  line-height: 1.7;
  font-style: italic;
}

/* ===== RESPONSIVE — Team Building cards ===== */
@media (max-width: 960px) and (min-width: 769px) {
  #teambuilding-packages-container {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .tb-two-cols {
    grid-template-columns: 1fr;
  }
}

/* ---- Card Tab system within packages ---- */
.card-tabs-header {
  display: flex;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: 4px;
  margin-bottom: 24px;
  gap: 4px;
}

.card-tab-btn {
  flex: 1;
  background: none;
  border: none;
  color: var(--color-text-muted);
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 0.8rem;
  padding: 10px 8px;
  border-radius: calc(var(--radius-md) - 2px);
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}

.card-tab-btn.active {
  background: var(--tb-accent, var(--color-primary));
  color: white;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.card-tab-panel {
  display: none;
  animation: fadeInTab 0.35s ease;
}

.card-tab-panel.active {
  display: block;
}

/* Inside panels, remove double borders on first sections */
.card-tab-panel .tb-section {
  border-top: none;
  padding-top: 0;
  margin-top: 0;
}

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