:root {
    --light-color: #f9f9f5;
    --dark-green: #1a3b2d;
    --dark-green-transparent: rgba(26, 59, 45, 0.9);
    --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    background-color: #f5f5f5;
    color: #333;
    overflow-x: hidden;
}

/* header.css */
:root {
  --primary-color: #3C4F2A;
  --primary-color-rgb: 60, 79, 42;
  --text-dark: #333;
  --text-light: #777;
  --transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  --header-height: 90px;
}

.site-header {
  font-family: 'Poppins', sans-serif;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background-color: transparent;
  transition: var(--transition);
  height: var(--header-height);
}

.site-header.scrolled {
  background-color: white;
  box-shadow: none;
  height: calc(var(--header-height) - 10px);
}

.site-header.scrolled .logo {
  filter: none;
}

.site-header.scrolled .nav-list li a {
  color: #3C4F2A;
}

.header-container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
}

.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
}

.logo {
  width: 160px;
  height: auto;
  transition: var(--transition);
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  flex: 1;
  justify-content: center;
}

.nav-list {
  display: flex;
  list-style: none;
  margin: 0;
  padding: 0;
  gap: 35px;
}

.nav-list li a {
  text-decoration: none;
  color: white;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  padding: 5px 0;
  position: relative;
  transition: var(--transition);
}

.nav-list li a:hover {
  color: white;
}

.nav-list li a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: white;
  transition: var(--transition);
}

.nav-list li a:hover::after {
  width: 100%;
}

.site-header.scrolled .nav-list li a::after {
  background-color: var(--primary-color);
}

/* IMPROVED PREMIUM SOLID BUTTON */
.book-now-button {
  background-color: var(--primary-color);
  color: white;
  padding: 14px 28px;
  border-radius: 30px;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 
    0 6px 20px rgba(var(--primary-color-rgb), 0.3),
    0 2px 4px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  border: none;
  position: relative;
  overflow: hidden;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.site-header.scrolled .book-now-button {
  background-color: var(--primary-color);
  box-shadow: 
    0 6px 20px rgba(var(--primary-color-rgb), 0.4),
    0 2px 4px rgba(0, 0, 0, 0.15);
}

.book-now-button:hover {
  transform: translateY(-3px);
  box-shadow: 
    0 10px 25px rgba(var(--primary-color-rgb), 0.5),
    0 4px 8px rgba(0, 0, 0, 0.15);
  background-color: #2f3e21;
  cursor: pointer;
}

/* Premium shine effect on hover */
.book-now-button::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.7s ease;
}

.book-now-button:hover::after {
  left: 100%;
}

/* Mobile Layout */
@media (max-width: 992px) {
  .header-container {
    justify-content: space-between;
    padding: 0 20px;
  }

  .logo-link {
    position: relative;
    left: auto;
    transform: none;
    margin: 0 auto;
  }

  /* REMOVED: Book now button from mobile header */
  .book-now-button {
    display: none;
  }

  .hamburger {
    margin-left: auto;
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: block;
  }

  .logo {
    width: 140px;
  }
}

/* Premium Mobile Menu Styles */
.hamburger {
  display: none;
  padding: 15px;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: relative;
}

.hamburger-box {
  width: 30px;
  height: 24px;
  display: inline-block;
  position: relative;
}

.hamburger-inner {
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  transition: var(--transition);
}

.site-header.scrolled .hamburger-inner,
.site-header.scrolled .hamburger-inner::before,
.site-header.scrolled .hamburger-inner::after {
  background-color: var(--text-dark);
}

.hamburger-inner::before,
.hamburger-inner::after {
  content: '';
  width: 100%;
  height: 2px;
  background-color: white;
  position: absolute;
  left: 0;
  transition: var(--transition);
}

.hamburger-inner::before {
  top: -8px;
}

.hamburger-inner::after {
  top: 8px;
}

.mobile-menu-overlay {
  position: fixed;
  top: 0;
  right: -70%;
  width: 70%;
  height: 100vh;
  background: white;
  box-shadow: -5px 0 30px rgba(0, 0, 0, 0.1);
  z-index: 1001;
  transition: var(--transition);
  padding: 120px 40px 40px;
  overflow-y: auto;
}

.site-header.menu-open .mobile-menu-overlay {
  right: 0;
}

.site-header.menu-open .mobile-menu-overlay::before {
  opacity: 1;
  pointer-events: all;
}

.site-header.menu-open .hamburger-inner {
  background-color: transparent;
}

.site-header.menu-open .hamburger-inner::before {
  transform: translateY(8px) rotate(45deg);
  background-color: var(--primary-color);
}

.site-header.menu-open .hamburger-inner::after {
  transform: translateY(-8px) rotate(-45deg);
  background-color: var(--primary-color);
}

/* Mobile Menu Content */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 25px;
}

.mobile-nav-list li a {
  color: var(--text-dark);
  text-decoration: none;
  font-size: 1.2rem;
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: var(--transition);
  display: inline-block;
  padding: 5px 0;
}

.mobile-nav-list li a:hover {
  color: var(--primary-color);
  transform: translateX(5px);
}

.mobile-menu-cta {
  margin-top: 40px;
}

/* Responsive Design */
@media (max-width: 1200px) {
  .header-container {
    padding: 0 30px;
  }
  
  .nav-list {
    gap: 25px;
  }
}

/* Mobile Navigation List */
.mobile-nav-list {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-nav-list li {
  margin-bottom: 25px;
  opacity: 0;
  transform: translateX(20px);
  transition: all 0.4s ease;
}

.site-header.menu-open .mobile-nav-list li {
  opacity: 1;
  transform: translateX(0);
}

.mobile-nav-list li:nth-child(1) { transition-delay: 0.1s; }
.mobile-nav-list li:nth-child(2) { transition-delay: 0.15s; }
.mobile-nav-list li:nth-child(3) { transition-delay: 0.2s; }
.mobile-nav-list li:nth-child(4) { transition-delay: 0.25s; }
.mobile-nav-list li:nth-child(5) { transition-delay: 0.3s; }

.mobile-nav-list li a {
  color: #333;
  text-decoration: none;
  font-size: 1.1rem;
  font-weight: 500;
  display: flex;
  align-items: center;
  padding: 10px 0;
  transition: all 0.3s ease;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.mobile-nav-list li a i {
  width: 30px;
  font-size: 1.2rem;
  color: #3C4F2A;
  margin-right: 15px;
  transition: all 0.3s ease;
}

.mobile-nav-list li a span {
  flex-grow: 1;
}

.mobile-nav-list li a:hover {
  color: #3C4F2A;
  transform: translateX(5px);
}

.mobile-nav-list li a:hover i {
  transform: scale(1.1);
}

/* Mobile Menu Footer */
.mobile-menu-footer {
  padding: 30px;
  background: rgba(58, 134, 255, 0.05);
  margin-top: auto;
}

.mobile-book-now-button {
  background-color: #3C4F2A;
  color: white;
  padding: 15px 25px;
  border-radius: 8px;
  text-decoration: none;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  box-shadow: none;
  transition: all 0.3s ease;
}

.mobile-book-now-button:hover {
  background-color: #3C4F2A;
  transform: translateY(-3px);
  box-shadow: 0 8px 25px rgba(58, 134, 255, 0.4);
}

.mobile-book-now-button i {
  font-size: 1.2rem;
}

/* Hide desktop icons on mobile */
@media (min-width: 993px) {
  .nav-icon.desktop-only {
    display: inline-block;
    margin-right: 8px;
  }
}

@media (max-width: 992px) {
  .nav-icon.desktop-only {
    display: none;
  }
  
  .mobile-menu-overlay {
    display: block;
  }
}

@media (max-width: 576px) {
  .mobile-menu-overlay {
    width: 85%;
    right: -85%;
  }
  
  .mobile-menu-content {
    padding: 0 20px;
  }
  
  .mobile-nav-list li a {
    font-size: 1rem;
  }
  
  .mobile-book-now-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

@media (max-width: 768px) {
  .header-container {
    padding: 0 20px;
  }

  .book-now-button {
    padding: 12px 20px;
    font-size: 0.9rem;
  }
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 500px;
    background: '';
    background-size: cover;
    display: flex;
    align-items: center;
    padding: 0 5%;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(60, 79, 42, 0.7) 0%, rgba(60, 79, 42, 0.3) 100%);
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 650px;
    color: var(--light-color);
    transform: translateY(-5%);
    margin-top: 65px;
}

.hero-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.2s forwards;
}

.tagline-text {
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
}

.tagline-line {
    width: 60px;
    height: 1px;
    background-color: var(--light-color);
    opacity: 0.6;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    opacity: 0;
    animation: fadeInUp 0.8s 0.4s forwards;
}

.hero-subtitle {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2.5rem;
    max-width: 600px;
    font-weight: 300;
    opacity: 0;
    animation: fadeInUp 0.8s 0.6s forwards;
}

.hero-cta {
    display: flex;
    gap: 1.5rem;
    opacity: 0;
    animation: fadeInUp 0.8s 0.8s forwards;
}

.cta-primary {
  background-color: var(--light-color);
  color: var(--dark-green);
  border: none;
  padding: 1rem 2rem;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex; /* Better than `flex` for inline alignment */
  align-items: center;
  gap: 0.5rem;
}

.cta-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: var(--light-color);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 500;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.cta-secondary:hover {
    background-color: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

.cta-secondary i {
    font-size: 1.2rem;
}

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s 1.5s forwards;
}

.mouse {
    width: 26px;
    height: 42px;
    border: 2px solid rgba(255, 255, 255, 0.7);
    border-radius: 13px;
    display: flex;
    justify-content: center;
    padding-top: 6px;
}

.wheel {
    width: 4px;
    height: 8px;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 2px;
    animation: scrollWheel 2s infinite;
}

.arrow-down {
    width: 16px;
    height: 16px;
    border-right: 2px solid rgba(255, 255, 255, 0.7);
    border-bottom: 2px solid rgba(255, 255, 255, 0.7);
    transform: rotate(45deg);
    margin: 8px auto 0;
    animation: scrollArrow 2s infinite;
}

/* Hero Section Styles */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    overflow: hidden;
}

.hero-media {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-video,
.hero-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Network detection indicator (hidden by default) */
.network-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 5px 10px;
    border-radius: 20px;
    font-size: 12px;
    z-index: 10;
    display: none;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollWheel {
    0%, 100% {
        transform: translateY(0);
        opacity: 1;
    }
    50% {
        transform: translateY(8px);
        opacity: 0.5;
    }
}

@keyframes scrollArrow {
    0%, 100% {
        transform: rotate(45deg) translateY(0);
        opacity: 1;
    }
    50% {
        transform: rotate(45deg) translateY(5px);
        opacity: 0.5;
    }
}

/* Responsive Adjustments */
@media (max-width: 992px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
}

@media (max-width: 768px) {
    .hero {
        padding: 0 8%;
    }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-cta {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
    }
    
    .tagline-text {
        letter-spacing: 2px;
        font-size: 0.8rem;
    }
}

/* Responsive */
@media (max-width: 992px) {
    .nav-menu {
        display: none;
    }
    
    .header-actions {
        display: none;
    }
    
    .hamburger {
        display: flex;
    }
}

@media (max-width: 576px) {
    .header {
        padding: 1rem;
    }
    
    .logo-text {
        font-size: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .mobile-menu {
        width: 280px;
    }
    
    .mobile-menu.active {
        transform: translateX(-280px);
    }
}

/* General body and scroll control */
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
  position: relative;
}

/* Mobile menu for devices ≤ 600px */
@media (max-width: 600px) {
  .header-container,
  .hero-content {
    padding: 0 1rem;
    box-sizing: border-box;
    max-width: 100vw;
    overflow-x: hidden;
  }

  .mobile-menu {
    position: fixed;
    top: 0;
    right: 0;
    width: 75%;               /* Only take 80% of screen width */
    height: 100%;
    background: #f9f9f5;
    z-index: 1000;
    transform: translateX(100%);
    transition: transform 0.3s ease-in-out;
    box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  }

  .mobile-menu.active {
    transform: translateX(0);
  }
}

/* Font Imports */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Poppins:wght@300;400;500;600;700&display=swap');

/* Base Styles */
:root {
    --primary: #1a5653;
    --primary-dark: #0e3a38;
    --primary-light: #2a7a76;
    --secondary: #e8b959;
    --secondary-dark: #d9a33e;
    --text: #333333;
    --text-light: #5a6d7a;
    --white: #ffffff;
    --light-bg: #f8f8f8;
    --border: #e0e0e0;
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', 'Open Sans', sans-serif;
    color: var(--text);
    line-height: 1.6;
}

/* Section Container */
.teva-welcome {
    padding: 100px 0;
    background-color: var(--light-bg);
    position: relative;
    overflow: hidden;
}

.teva-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
}

/* Header Styles */
/* Premium Header Styles */
.premium-header {
    text-align: center;
    padding: 4rem 0 3rem;
    position: relative;
    overflow: hidden;
}

.premium-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 100%;
    background: linear-gradient(135deg, rgba(20,30,40,0.9) 0%, rgba(40,60,80,0.8) 100%);
    z-index: -1;
}

.premium-header-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.premium-title-wrapper {
    margin-bottom: 1.5rem;
}

.premium-subtitle {
    font-size: 1.1rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #d4af37;
    margin-bottom: 1rem;
    font-weight: 300;
}

.premium-title {
    font-family: 'Playfair Display', serif;
    color: #3C4F2A;
    font-weight: 700;
    line-height: 1.1;
    margin: 0;
}

.premium-title .title-line {
    display: block;
}

.premium-title .title-line:first-child {
    font-size: 3.5rem;
    letter-spacing: 1px;
}

.premium-title .title-line:last-child {
    font-size: 4.5rem;
    letter-spacing: 2px;
    margin-top: -0.5rem;
}

.premium-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem 0;
}

.premium-divider .divider-line {
    height: 1px;
    width: 80px;
    background: linear-gradient(90deg, transparent, rgba(212,175,55,0.5), transparent);
}

.premium-divider .divider-icon {
    margin: 0 1rem;
    color: #d4af37;
    display: flex;
    align-items: center;
}

.premium-divider .divider-icon svg {
    width: 20px;
    height: 20px;
    fill: currentColor;
}

.premium-tagline {
    font-size: 1.3rem;
    color: #5A6B47;
    font-style: italic;
    font-weight: 300;
    letter-spacing: 0.5px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.4;
}

/* Animation */
.premium-header .title-line {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

.premium-header .title-line:first-child {
    animation-delay: 0.2s;
}

.premium-header .title-line:last-child {
    animation-delay: 0.4s;
}

.premium-header .premium-subtitle,
.premium-header .premium-divider,
.premium-header .premium-tagline {
    opacity: 0;
    animation: fadeIn 1s forwards;
}

.premium-header .premium-subtitle {
    animation-delay: 0.6s;
}

.premium-header .premium-divider {
    animation-delay: 0.8s;
}

.premium-header .premium-tagline {
    animation-delay: 1s;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .premium-header {
        padding: 3rem 0 2rem;
    }
    
    .premium-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .premium-title .title-line:first-child {
        font-size: 2.5rem;
    }
    
    .premium-title .title-line:last-child {
        font-size: 3rem;
    }
    
    .premium-tagline {
        font-size: 1.1rem;
    }
}

/* Content Grid */
.teva-content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

.teva-media {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    height: 100%;
    min-height: 500px;
}

.media-frame {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.teva-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0.3) 100%);
    z-index: 1;
}

/* Features Section */
.teva-features {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.feature-item {
    display: flex;
    gap: 20px;
    padding: 25px;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border-left: 4px solid transparent;
}

.feature-item:hover {
    transform: translateY(-5px);
    border-left: 4px solid var(--secondary);
}

.feature-icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(42, 122, 118, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
}

.feature-icon svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.feature-text {
    color: var(--text-light);
}

.feature-text p {
    margin: 0;
}

/* Mission & Vision Cards */
.teva-mission-vision {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 60px;
}

.mv-card {
    padding: 30px;
    border-radius: 12px;
    box-shadow: var(--shadow);
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mission {
    background: linear-gradient(135deg, rgba(26, 86, 83, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 4px solid var(--primary);
}

.vision {
    background: linear-gradient(135deg, rgba(232, 185, 89, 0.05) 0%, rgba(255, 255, 255, 1) 100%);
    border-top: 4px solid var(--secondary);
}

.mv-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.mv-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.mission .mv-icon {
    background: rgba(26, 86, 83, 0.1);
}

.vision .mv-icon {
    background: rgba(232, 185, 89, 0.1);
}

.mv-icon svg {
    width: 24px;
    height: 24px;
}

.mission .mv-icon svg {
    fill: var(--primary);
}

.vision .mv-icon svg {
    fill: var(--secondary-dark);
}

.mv-header h3 {
    font-size: 1.5rem;
    color: var(--text);
    margin: 0;
}

.mv-body {
    margin-bottom: 20px;
    color: var(--text-light);
    flex-grow: 1;
}

.mv-body p {
    margin: 0;
}

.mv-footer {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.mv-tag {
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.mission .mv-tag {
    background: rgba(26, 86, 83, 0.1);
    color: var(--primary);
}

.vision .mv-tag {
    background: rgba(232, 185, 89, 0.1);
    color: var(--secondary-dark);
}

/* CTA Section */
.teva-cta {
    text-align: center;
    padding: 40px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 12px;
    box-shadow: var(--shadow);
    position: relative;
    overflow: hidden;
}

.teva-cta::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 100%;
    height: 200%;
    background: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100" preserveAspectRatio="none"><path fill="rgba(255,255,255,0.03)" d="M0,0 L100,0 L100,100 L0,100 Z"></path></svg>') repeat;
    transform: rotate(15deg);
    z-index: 0;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.5rem;
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 500;
}

.teva-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 30px;
    background-color: var(--secondary);
    color: var(--primary-dark);
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.teva-button:hover {
    background-color: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

/* Responsive Design */
@media (max-width: 992px) {
    .teva-content-grid {
        grid-template-columns: 1fr;
    }
    
    .teva-media {
        min-height: 400px;
    }
    
    .teva-mission-vision {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .teva-welcome {
        padding: 60px 0;
    }
    
    .teva-title {
        font-size: 2rem;
    }
    
    .teva-subtitle {
        font-size: 1.1rem;
    }
    
    .feature-item {
        flex-direction: column;
        gap: 15px;
    }
    
    .teva-cta {
        padding: 30px 20px;
    }
    
    .cta-text {
        font-size: 1.3rem;
    }
}

/* Animation */
@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

[data-aos] {
    opacity: 0;
    transition-property: opacity, transform;
}

[data-aos].aos-animate {
    opacity: 1;
}

/* Base Styles */
:root {
    --primary-color: #6B7A4F;
    --primary-dark: #3C4F2A;
    --text-light: #f9f9f5;
    --text-dark: #333;
    --overlay-gradient: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0.3) 50%, rgba(0,0,0,0) 100%);
    --transition: all 0.3s ease;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: #f9f9f5;
    margin: 0;
    padding: 0;
}

/* Section Styles */
.destinations-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 4rem 2rem;
    text-align: center;
}

.section-header {
    margin-bottom: 3rem;
}

.section-subtitle {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 600;
}

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin: 0 0 1rem;
    color: #222;
    line-height: 1.2;
}

.section-tagline {
    font-size: 1.1rem;
    font-style: italic;
    color: #666;
    margin: 0;
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.destination-card {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    aspect-ratio: 3/4;
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
    transition: var(--transition);
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.card-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--overlay-gradient);
    z-index: 2;
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    text-align: left;
    color: var(--text-light);
    z-index: 3;
}

.card-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin: 0 0 0.5rem;
    font-weight: 700;
}

.card-content p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

/* Button Styles */
.section-footer {
    margin-top: 2rem;
}

.explore-button {
    display: inline-block;
    padding: 1rem 2rem;
    background-color: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    letter-spacing: 1px;
    transition: var(--transition);
    border: 2px solid var(--primary-color);
    text-transform: uppercase;
    font-size: 0.9rem;
}

.explore-button:hover {
    background-color: transparent;
    color: var(--primary-color);
    border-color: var(--primary-color);
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .destination-card {
        aspect-ratio: 16/9;
    }
}

/* Teva Memories Section */
.teva-memories-block {
  display: flex;
  flex-wrap: wrap;
  max-width: 1200px;
  margin: 0 auto;
  padding: 60px 20px;
  gap: 40px;
  background-color: white;
  box-sizing: border-box;
}

.teva-text-panel {
  flex: 1;
  min-width: 300px;
}

.teva-highlight-tag {
  font-family: 'Poppins', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  color: #f2542d;
  letter-spacing: 1px;
  display: block;
  margin-bottom: 20px;
}

.teva-fancy-title {
  font-family: 'Dancing Script', cursive;
  font-size: 2.25rem;
  line-height: 1.3;
  margin-bottom: 20px;
  color: #222;
}

.teva-description-text {
  max-width: 400px;
  line-height: 1.6;
  color: #333;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
}

.teva-gallery-panel {
  flex: 1;
  min-width: 300px;
  position: relative;
}

.teva-slider-wrapper {
  position: relative;
}

.teva-slider-controls {
  position: absolute;
  top: 10px;
  right: 10px;
  z-index: 2;
}

.teva-slider-prev,
.teva-slider-next {
  background: rgba(0,0,0,0.5);
  color: white;
  border: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-left: 5px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.3s ease;
}

.teva-slider-prev:hover,
.teva-slider-next:hover {
  background: rgba(0,0,0,0.8);
}

.teva-experience-slider {
  display: flex;
  gap: 20px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  padding-bottom: 25px; /* Increased for scroll indicator */
  scroll-behavior: smooth;
}

/* Scrollbar styling for desktop */
.teva-experience-slider::-webkit-scrollbar {
  height: 8px;
}

.teva-experience-slider::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 4px;
}

.teva-experience-slider::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}

/* Scroll Indicator Container */
.teva-scroll-indicator {
  display: none; /* Hidden by default, shown on mobile */
  text-align: center;
  padding: 10px 0 5px;
}

/* Scroll Indicator Dots */
.teva-scroll-dots {
  display: inline-flex;
  gap: 8px;
}

.teva-scroll-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.teva-scroll-dot.active {
  background: #3C4F2A;
  transform: scale(1.2);
}

.teva-experience-card {
  position: relative;
  min-width: 250px;
  height: 350px;
  scroll-snap-align: start;
  flex: 1;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}

.teva-experience-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.teva-experience-card:hover img {
  transform: scale(1.03);
}

.teva-card-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  border-radius: 0 0 8px 8px;
  transition: all 0.3s ease;
}

.teva-card-caption h3 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  font-size: 1rem;
  text-transform: uppercase;
  color: white;
  margin-bottom: 5px;
}

.teva-card-caption p {
  font-family: 'Poppins', sans-serif;
  font-size: 0.875rem;
  color: white;
  line-height: 1.4;
  margin: 0;
}

/* Mobile improvements */
@media (max-width: 768px) {
  .teva-memories-block {
    flex-direction: column;
    padding: 40px 0;
    gap: 30px;
  }
  
  .teva-text-panel {
    padding: 0 16px;
  }
  
  .teva-gallery-panel {
    width: 100%;
    overflow: hidden;
  }
  
  .teva-slider-wrapper {
    margin: 0;
    width: 100%;
  }
  
  .teva-experience-slider {
    gap: 16px;
    padding: 0 16px 10px;
    scroll-padding: 16px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
  }
  
  .teva-experience-slider::-webkit-scrollbar {
    display: none;
  }
  
  .teva-experience-card {
    min-width: calc(100vw - 32px);
    width: calc(100vw - 32px);
    height: 65vw;
    max-height: 400px;
    flex: 0 0 auto;
    scroll-snap-align: center;
  }
  
  .teva-slider-controls {
    display: none;
  }
  
  /* Show scroll indicator on mobile */
  .teva-scroll-indicator {
    display: block;
  }
  
  .teva-fancy-title {
    font-size: 2rem;
    margin-bottom: 15px;
  }
  
  .teva-description-text {
    max-width: 100%;
    font-size: 0.95rem;
  }
  
  .teva-card-caption {
    padding: 16px;
  }
  
  .teva-card-caption h3 {
    font-size: 1.1rem;
  }
  
  .teva-card-caption p {
    font-size: 0.9rem;
  }
}

/* Tablet adjustments */
@media (min-width: 481px) and (max-width: 768px) {
  .teva-experience-card {
    min-width: calc(50vw - 24px);
    height: 55vw;
  }
}

/* Safari Packages Section - Premium Design */
.safari-packages {
  padding: 80px 0;
  background-color: #ffffff;
  position: relative;
}

.container {
  max-width: 1200px; /* Reduced from 1440px */
  margin: 0 auto;
  padding: 0 20px; /* Reduced padding */
}

.section-header {
  text-align: center;
  margin-bottom: 50px; /* Slightly reduced */
  position: relative;
}

.section-pre-title {
  font-size: 0.85rem; /* Slightly smaller */
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #9a8c6d;
  margin-bottom: 12px; /* Reduced */
  font-weight: 500;
}

.section-title {
  font-size: 2.4rem; /* Reduced from 2.8rem */
  color: #1a2a1f;
  font-weight: 400;
  margin-bottom: 18px; /* Reduced */
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: -0.5px;
  line-height: 1.2;
}

.section-divider {
  width: 70px; /* Slightly smaller */
  height: 2px;
  background: linear-gradient(90deg, #9a8c6d 0%, rgba(154, 140, 109, 0) 100%);
  margin: 0 auto 20px; /* Reduced */
}

.section-subtitle {
  font-size: 1rem; /* Slightly smaller */
  color: #5a6d5e;
  max-width: 550px; /* Slightly reduced */
  margin: 0 auto;
  line-height: 1.7; /* Slightly tighter */
  font-weight: 300;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(240px, 1fr)); /* Reduced min width from 280px */
  gap: 20px; /* Reduced from 30px */
  margin-bottom: 50px; /* Reduced */
}

.package-card {
  display: block;
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.215, 0.61, 0.355, 1);
  height: 420px; /* Reduced from 480px */
  text-decoration: none;
  color: inherit;
  position: relative;
  min-width: 0;
}

.package-card:hover {
  transform: none; /* Slightly reduced effect */
  box-shadow: none; /* Slightly reduced */
}

.package-image {
  height: 100%;
  width: 100%;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: flex-end;
  transition: transform 0.8s ease;
}

.package-card:hover .package-image {
  transform: none;
}

.package-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.2) 50%, transparent 100%);
  opacity: 0.9;
}

.package-content {
  position: relative;
  z-index: 2;
  padding: 25px; /* Reduced from 30px */
  color: white;
  width: 100%;
}

.package-meta {
  display: flex;
  gap: 10px; /* Reduced from 12px */
  margin-bottom: 12px; /* Reduced */
}

.package-duration,
.package-difficulty {
  font-size: 0.75rem; /* Slightly smaller */
  padding: 3px 8px; /* Reduced */
  border-radius: 20px;
  background-color: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(4px);
}

.package-name {
  font-size: 1.5rem; /* Reduced from 1.7rem */
  font-weight: 400;
  margin-bottom: 8px; /* Reduced */
  font-family: 'Cormorant Garamond', serif;
  line-height: 1.3;
  letter-spacing: -0.5px;
}

.package-price {
  font-size: 1rem; /* Reduced from 1.1rem */
  font-weight: 300;
  margin-bottom: 20px; /* Reduced */
  letter-spacing: 0.5px;
}

.package-price span {
  font-weight: 500;
  font-size: 1.2rem; /* Reduced from 1.4rem */
}

.package-button {
  display: inline-flex;
  align-items: center;
  gap: 5px; /* Reduced from 6px */
  padding: 7px 14px; /* Reduced */
  background-color: #6B7A4F; /* Slightly lighter */
  color: #f9f9f5;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  font-size: 0.8rem; /* Slightly smaller */
  letter-spacing: 0.5px;
}

.package-card:hover .package-button {
  background-color: #5A6B47;
  transform: translateX(4px); /* Slightly reduced */
}

.section-footer {
  text-align: center;
  margin-top: 50px; /* Reduced */
}

.view-all-button {
  display: inline-flex;
  align-items: center;
  gap: 6px; /* Reduced from 8px */
  padding: 12px 24px; /* Reduced */
  background-color: #3C4F2A; /* Slightly lighter */
  color: white;
  text-decoration: none;
  font-weight: 500;
  border-radius: 4px;
  transition: all 0.3s ease;
  border: #3C4F2A;
  letter-spacing: 0.5px;
  font-size: 0.9rem; /* Slightly smaller */
}

.view-all-button:hover {
  background-color: transparent;
  border: #3C4F2A;
  color: #1a2a1f;
  transform: translateX(4px); /* Slightly reduced */
}

/* Responsive adjustments */
@media (max-width: 1200px) {
  .packages-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  }
}

@media (max-width: 992px) {
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 15px;
  }
  
  .section-title {
    font-size: 2rem;
  }
  
  .packages-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  
  .package-card {
    height: 380px;
  }
  
  .package-name {
    font-size: 1.4rem;
  }
}

/* Parallax Premium Section Styling */
.parallax-premium {
  position: relative;
  height: 80vh;
  min-height: 600px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  margin: 80px 0;
}

.parallax-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url('images/TT_03678tab.jpg');
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* This creates the parallax effect */
  z-index: -1;
}

.parallax-background::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  backdrop-filter: blur(2px);
}

.parallax-content {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1200px;
  padding: 0 20px;
}

.premium-text-container {
  max-width: 600px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: 40px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  transform: translateY(20px);
  transition: transform 0.6s ease-out;
}

.parallax-premium:hover .premium-text-container {
  transform: translateY(0);
}

.premium-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 20px;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.premium-subtext {
  font-family: 'Lato', sans-serif;
  font-size: 1.2rem;
  line-height: 1.6;
  margin-bottom: 30px;
  font-weight: 300;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.premium-cta {
  background: linear-gradient(135deg, #3C4F2A 0%, #2C3E20 100%);
  color: white;
  border: none;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  position: relative;
  overflow: hidden;
}

.premium-cta::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: 0.5s;
}

.premium-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
}

.premium-cta:hover::before {
  left: 100%;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .parallax-premium {
    height: 60vh;
    min-height: 400px;
  }
  
  .premium-text-container {
    padding: 30px;
  }
  
  .premium-heading {
    font-size: 2rem;
  }
  
  .premium-subtext {
    font-size: 1rem;
  }
  
  .premium-cta {
    padding: 14px 28px;
  }
}

@media (max-width: 480px) {
  .parallax-premium {
    height: 50vh;
  }
  
  .premium-text-container {
    padding: 20px;
  }
  
  .premium-heading {
    font-size: 1.8rem;
  }
}
  .premium-subtext {
    font-size: 0.9rem;
  }
  
  .premium-cta {
    padding: 12px 24px;
  }

  /* When to Visit Tanzania - Minimal Horizontal */
.seasons-horizontal-section {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 1rem;
}

.seasons-header {
  text-align: center;
  margin-bottom: 2rem;
}

.seasons-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 500;
  color: #3C4F2A;
  margin-bottom: 0.5rem;
}

.seasons-header p {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.5;
}

.seasons-container {
  display: flex;
  gap: 1.25rem;
  overflow-x: auto;
  padding: 1rem 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #ddd transparent;
}

.seasons-container::-webkit-scrollbar {
  height: 6px;
}

.seasons-container::-webkit-scrollbar-thumb {
  background-color: #ddd;
  border-radius: 3px;
}

.season-card {
  min-width: 260px;
  border: 1px solid #eaeaea;
  border-radius: 10px;
  padding: 1.5rem;
  background: white;
  box-shadow: none;
  flex-shrink: 0;
}

.season-title {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-bottom: 1.25rem;
}

.season-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.9rem;
}

.dry .season-icon {
  background: #FFF4E6;
  color: #E67A00;
}

.wet .season-icon {
  background: #E6F7F3;
  color: #009975;
}

.season-title h3 {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0;
  line-height: 1.4;
}

.season-title h3 span {
  display: block;
  font-size: 0.85rem;
  font-weight: 400;
  color: #666;
  margin-top: 0.15rem;
}

.season-details {
  font-size: 0.95rem;
  line-height: 1.6;
  color: #444;
}

.season-details p {
  margin: 0 0 0.75rem 0;
}

.season-details strong {
  font-weight: 500;
  color: #222;
}

.highlight {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #E67A00;
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px dashed #eee;
}

.wet .highlight {
  color: #009975;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .seasons-horizontal-section {
    padding: 2rem 1rem;
  }
  
  .season-card {
    min-width: 240px;
    padding: 1.25rem;
  }
}

/* Centered Packing Guide */
.packing-guide {
  font-family: 'Inter', -apple-system, sans-serif;
  max-width: 1100px;
  margin: 4rem auto;
  padding: 0 2rem;
  text-align: center;
}

.guide-header h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.4rem;
  font-weight: 500;
  color: #3C4F2A;
  margin-bottom: 0.5rem;
}

.guide-header .subtitle {
  color: #666;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 3rem;
}

.guide-cards {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 2rem;
  margin-top: 2rem;
}

.guide-card {
  background: white;
  border-radius: 12px;
  padding: 2rem 1.5rem;
  width: 280px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: transform 0.3s ease;
}

.guide-card:hover {
  transform: translateY(-5px);
}

.card-icon {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  font-size: 1.4rem;
}

.card-icon.clothing {
  background: rgba(230, 122, 0, 0.1);
  color: #E67A00;
}

.card-icon.mountain {
  background: rgba(0, 153, 117, 0.1);
  color: #009975;
}

.card-icon.camera {
  background: rgba(52, 152, 219, 0.1);
  color: #3498db;
}

.guide-card h3 {
  font-size: 1.2rem;
  font-weight: 600;
  margin-bottom: 1.5rem;
  color: #333;
}

.card-items {
  list-style: none;
  padding: 0;
  margin: 0;
  text-align: left;
}

.card-items li {
  padding: 0.5rem 0;
  color: #555;
  font-size: 0.95rem;
  position: relative;
  padding-left: 1.5rem;
}

.card-items li:before {
  content: "•";
  color: #3C4F2A;
  position: absolute;
  left: 0;
}

/* Responsive Design */
@media (max-width: 900px) {
  .guide-cards {
    gap: 1.5rem;
  }
  .guide-card {
    width: 240px;
  }
}

@media (max-width: 768px) {
  .packing-guide {
    padding: 0 1.5rem;
  }
  .guide-cards {
    flex-direction: column;
    align-items: center;
  }
  .guide-card {
    width: 100%;
    max-width: 350px;
  }
}

/* Newsletter Section */
.newsletter-section {
  background: #fff;
  padding: 4rem 1rem;
  font-family: 'Inter', -apple-system, sans-serif;
}

.newsletter-container {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: center;
  justify-content: space-between;
}

.newsletter-content {
  flex: 1;
  min-width: 300px;
}

.newsletter-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: #3C4F2A;
  margin-bottom: 1rem;
  font-weight: 500;
}

.newsletter-content p {
  color: #666;
  line-height: 1.6;
  max-width: 400px;
}

.newsletter-form {
  flex: 1;
  min-width: 300px;
}

.form-group {
  display: flex;
  max-width: 480px;
}

.form-group input {
  flex: 1;
  padding: 0.9rem 1.2rem;
  border: 1px solid #ddd;
  border-radius: 6px 0 0 6px;
  font-size: 1rem;
  outline: none;
  transition: border 0.3s ease;
}

.form-group input:focus {
  border-color: #3C4F2A;
}

.form-group button {
  background: #3C4F2A;
  color: white;
  border: none;
  padding: 0 1.5rem;
  border-radius: 0 6px 6px 0;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: background 0.3s ease;
}

.form-group button:hover {
  background: #2e3d22;
}

.form-footer {
  margin-top: 0.8rem;
}

.form-footer p {
  font-size: 0.8rem;
  color: #999;
}

/* Responsive Design */
@media (max-width: 768px) {
  .newsletter-container {
    flex-direction: column;
    text-align: center;
  }
  
  .newsletter-content p {
    margin: 0 auto 1.5rem;
  }
  
  .form-group {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .form-group {
    flex-direction: column;
  }
  
  .form-group input,
  .form-group button {
    border-radius: 6px;
    width: 100%;
  }
  
  .form-group button {
    margin-top: 0.5rem;
    justify-content: center;
    padding: 0.9rem;
  }
}

/* Google Fonts Import */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap');

/* Font Awesome Import */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css');

/* Footer Styles */
.footer {
  background-color: #ffffff;
  color: #333333;
  font-family: 'Poppins', sans-serif;
  padding: 40px 0 0;
  box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.05);
}

.footer-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  gap: 30px;
}

.footer-column {
  flex: 1;
  min-width: 200px;
  margin-bottom: 30px;
}

.footer-title {
  font-size: 1.1rem;
  font-weight: 700;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 8px;
  color: #2c3e50;
}

.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: #d4af37;
}

.footer-links {
  list-style: none;
  padding: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: #555555;
  text-decoration: none;
  transition: color 0.3s;
}

.footer-links a:hover {
  color: #d4af37;
}

.emergency-contacts {
  margin-top: 20px;
}

.emergency-contacts h4 {
  font-size: 0.9rem;
  margin-bottom: 15px;
  font-weight: 500;
  color: #2c3e50;
}

.phone-numbers {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.phone-number {
  display: flex;
  align-items: center;
}

.messaging-icons {
  display: flex;
  margin-left: 10px;
  gap: 8px;
}

.messaging-icons a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  font-size: 0.9rem;
  transition: transform 0.3s;
  text-decoration: none;
}

.messaging-icons a:hover {
  transform: scale(1.1);
}

.messaging-icons .whatsapp {
  color: #25D366;
}

.messaging-icons .telegram {
  color: #0088cc;
}

.footer-buttons {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 25px;
}

.footer-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background-color: #27ae60;
  color: white;
  padding: 10px 15px;
  border-radius: 4px;
  text-decoration: none;
  font-size: 0.9rem;
  transition: background-color 0.3s;
}

.footer-button:hover {
  background-color: #219653;
}

.footer-button i {
  margin-right: 8px;
}

.social-media-container {
  background: white;
  border-radius: 50px;
  padding: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: inline-block;
}

.social-media {
  display: flex;
  gap: 12px;
}

.social-media a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  font-size: 1rem;
  transition: transform 0.3s;
  text-decoration: none;
}

.social-media a:hover {
  transform: scale(1.1);
}

.social-media .facebook {
  color: #1877F2;
}

.social-media .instagram {
  color: #E4405F;
}

.social-media .youtube {
  color: #FF0000;
}

.social-media .linkedin {
  color: #0A66C2;
}

.social-media .twitter {
  color: #1DA1F2;
}

.footer-bottom {
  border-top: 1px solid #eaeaea;
  padding: 20px 0;
  background-color: #f9f9f9;
}

.footer-bottom-container {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  font-size: 0.8rem;
  color: #777777;
}

.copyright {
  line-height: 1.6;
}

.website-credit {
  margin-top: 5px;
}

.website-credit a {
  color: #27ae60;
  text-decoration: none;
  transition: color 0.3s;
}

.website-credit a:hover {
  color: #219653;
  text-decoration: underline;
}

.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.badge {
  display: flex;
  align-items: center;
  gap: 5px;
}

.badge i {
  color: #d4af37;
}

.badge span {
  font-size: 0.8rem;
  color: #555555;
}

/* Responsive Styles */
@media (max-width: 768px) {
  .footer-container {
    flex-direction: column;
    gap: 20px;
  }
  
  .footer-column {
    min-width: 100%;
  }
  
  .footer-bottom-container {
    flex-direction: column;
    text-align: center;
    gap: 15px;
  }
  
  .footer-badges {
    justify-content: center;
    margin-top: 15px;
  }
  
  .phone-numbers {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
  }
  
  .phone-number {
    flex-direction: column;
    align-items: flex-start;
  }
  
  .messaging-icons {
    margin-left: 0;
    margin-top: 5px;
  }
}

/* Base Styles - Started with these after my morning coffee */
:root {
    --forest-dark: #2C3E20;    /* Like the deepest part of the woods */
    --forest-light: #3C4F2A;   /* Sunlit leaves color */
    --cream: #FAF9F7;         /* My notebook paper color */
    --text-dark: #2A2A2A;     /* Almost black, but softer */
    --text-light: #777;      /* For when I want to whisper */
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.125); /* Bouncy but classy */
}

/* I always reset margins first thing - old habit from 2015 */
body, h1, h2, h3, p {
    margin: 0;
    padding: 0;
}

/* Main section - spent hours tweaking the padding */
.luxury-adventures {
    position: relative;
    padding: 7.5rem 0; /* 120px - I prefer rem but sometimes mix px */
    background-color: white;
    overflow: hidden;
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 
                'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 
                sans-serif; /* System stack is underrated */
}

/* This decorative corner was inspired by a hotel brochure */
.corner-accent {
    position: absolute;
    top: 3.125rem; /* 50px */
    right: 3.125rem;
    width: 18.75rem; /* 300px */
    height: 18.75rem;
    border: 1px solid rgba(60, 79, 42, 0.08); /* Super subtle */
    transform: rotate(45deg);
    opacity: 0.6; /* Designers know the magic is in opacity */
}

/* Container with comfortable padding */
.luxury-container {
    max-width: 75rem; /* 1200px */
    margin: 0 auto;
    padding: 0 2.5rem; /* 40px - but mobile will need less */
    position: relative;
    z-index: 1; /* Just enough to stay above decorations */
}

/* Header styles - tweaked these 12 times */
.section-header {
    text-align: center;
    margin-bottom: 5rem; /* 80px - gives breathing room */
}

.section-subtitle {
    display: block;
    font-size: 0.875rem; /* 14px */
    letter-spacing: 0.3125rem; /* 5px */
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 1.25rem; /* 20px */
    font-weight: 500;
    position: relative;
}

/* That little underline - saw this in a magazine */
.section-subtitle:after {
    content: '';
    position: absolute;
    bottom: -0.625rem; /* 10px */
    left: 50%;
    transform: translateX(-50%);
    width: 3.75rem; /* 60px */
    height: 1px;
    background: var(--forest-light);
    opacity: 0.3;
}

.section-title {
    font-size: 3rem; /* 48px */
    font-weight: 300;
    color: var(--text-dark);
    margin: 0 auto 1.5625rem; /* 25px */
    line-height: 1.2;
    letter-spacing: -0.015em; /* Slightly tighter */
    max-width: 36ch; /* Perfect line length */
}

/* Made this divider by experimenting in Figma first */
.title-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1.25rem; /* 20px */
}

.divider-line {
    width: 2.5rem; /* 40px */
    height: 1px;
    background-color: var(--forest-light);
    opacity: 0.3;
}

.divider-diamond {
    width: 0.5rem; /* 8px */
    height: 0.5rem;
    background-color: var(--forest-light);
    transform: rotate(45deg);
    margin: 0 1rem; /* 16px */
    opacity: 0.5;
}

/* Grid layout - mobile first approach */
.adventures-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem; /* 40px */
}

/* Featured card - my favorite piece */
.featured-experience {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 34.375rem; /* 550px */
    box-shadow: 0 2.5rem 5rem -1.25rem rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    background: white; /* Fallback */
}

.featured-experience:hover {
    transform: translateY(-0.5rem); /* 8px */
    box-shadow: 0 3.125rem 6.25rem -1.25rem rgba(0, 0, 0, 0.1);
}

/* Image side */
.experience-image {
    position: relative;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0; /* Placeholder color */
}

/* Overlay gradient - tested 5 variations */
.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(44, 62, 32, 0.2) 0%, rgba(44, 62, 32, 0) 100%);
    transition: opacity 0.6s ease;
}

.featured-experience:hover .image-overlay {
    opacity: 0.7;
}

/* Content side */
.experience-content {
    padding: 4.375rem; /* 70px */
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: white;
}

.experience-meta {
    font-size: 0.75rem; /* 12px */
    letter-spacing: 0.1875rem; /* 3px */
    text-transform: uppercase;
    color: var(--forest-light);
    margin-bottom: 1.25rem; /* 20px */
    font-weight: 500;
}

.experience-title {
    font-size: 2.25rem; /* 36px */
    font-weight: 350; /* Between 300 and 400 */
    color: var(--text-dark);
    margin: 0 0 1.5625rem; /* 25px */
    line-height: 1.3;
}

.experience-description {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 2.1875rem; /* 35px */
    font-weight: 350;
}

/* Small cards grid - struggled with the gap sizes */
.experience-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5625rem; /* 25px */
}

.experience-card {
    position: relative;
    height: 20rem; /* 320px */
    overflow: hidden;
    box-shadow: 0 1.25rem 2.5rem -0.625rem rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    background: #f5f5f5; /* Loading color */
}

.experience-card:hover {
    transform: translateY(-0.625rem); /* 10px */
    box-shadow: 0 1.875rem 3.75rem -0.625rem rgba(0, 0, 0, 0.12);
}

.card-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    transition: transform 0.8s ease-out;
}

.experience-card:hover .card-image {
    transform: scale(1.08); /* Subtle zoom */
}

/* Card content - positioned carefully */
.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 1.875rem; /* 30px */
    color: white;
    background: linear-gradient(to top, rgba(0,0,0,0.8) 0%, rgba(0,0,0,0) 100%);
    z-index: 2;
    transition: var(--transition);
}

.experience-card:hover .card-content {
    padding-bottom: 2.5rem; /* 40px */
}

.card-title {
    font-size: 1.25rem; /* 20px */
    font-weight: 400;
    margin: 0 0 0.5rem; /* 8px */
}

.card-meta {
    display: block;
    font-size: 0.75rem; /* 12px */
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 1.25rem; /* 20px */
    letter-spacing: 0.09375rem; /* 1.5px */
    text-transform: uppercase;
    font-weight: 400;
}

/* This button took 3 iterations */
.card-link {
    position: absolute;
    right: 1.875rem; /* 30px */
    bottom: 1.875rem;
    width: 2.5rem; /* 40px */
    height: 2.5rem;
    border-radius: 50%;
    background-color: var(--forest-light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
    opacity: 0.9;
}

.card-link:hover {
    background-color: white;
    transform: scale(1.1);
}

.card-link:hover svg {
    stroke: var(--forest-light);
}

/* Main button - with that nice hover effect */
.luxury-button {
    display: inline-flex;
    align-items: center;
    padding: 0.875rem 1.875rem; /* 14px 30px */
    background-color: transparent;
    color: var(--forest-light);
    border: 1px solid var(--forest-light);
    font-size: 0.8125rem; /* 13px */
    letter-spacing: 0.125rem; /* 2px */
    text-transform: uppercase;
    text-decoration: none;
    transition: var(--transition);
    max-width: 13.75rem; /* 220px */
    position: relative;
    overflow: hidden;
}

.luxury-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--forest-light);
    transition: var(--transition);
    z-index: -1;
}

.luxury-button:hover {
    color: white;
    border-color: var(--forest-light);
}

.luxury-button:hover:before {
    left: 0;
}

/* Responsive adjustments - because mobile is important */
@media (max-width: 75rem) { /* 1200px */
    .experience-cards {
        gap: 1.25rem; /* 20px */
    }
    
    .experience-content {
        padding: 3.125rem; /* 50px */
    }
}

@media (max-width: 64rem) { /* 1024px */
    .experience-cards {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .featured-experience {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .experience-image {
        height: 21.875rem; /* 350px */
    }
    
    .section-title {
        font-size: 2.625rem; /* 42px */
    }
}

@media (max-width: 48rem) { /* 768px */
    .luxury-adventures {
        padding: 5rem 0; /* 80px */
    }
    
    .section-header {
        margin-bottom: 3.75rem; /* 60px */
    }
    
    .section-title {
        font-size: 2.25rem; /* 36px */
    }
    
    .experience-content {
        padding: 2.5rem; /* 40px */
    }
    
    .experience-title {
        font-size: 1.875rem; /* 30px */
    }
}

@media (max-width: 36rem) { /* 576px */
    .experience-cards {
        grid-template-columns: 1fr;
        gap: 1.5625rem; /* 25px */
    }
    
    .section-title {
        font-size: 2rem; /* 32px */
    }
    
    .experience-title {
        font-size: 1.625rem; /* 26px */
    }
    
    .luxury-container {
        padding: 0 1.5625rem; /* 25px */
    }
}

@media (max-width: 25rem) { /* 400px */
    .section-title {
        font-size: 1.75rem; /* 28px */
    }
    
    .experience-content {
        padding: 1.875rem; /* 30px */
    }
}

/* Little details that make it feel handcrafted */
.experience-card:nth-child(3n) .card-content {
    background: linear-gradient(to top, rgba(44, 62, 32, 0.8) 0%, rgba(44, 62, 32, 0) 100%);
}

.featured-experience .experience-title {
    position: relative;
    display: inline-block;
}

.featured-experience .experience-title:after {
    content: '';
    position: absolute;
    bottom: -0.625rem; /* 10px */
    left: 0;
    width: 3.125rem; /* 50px */
    height: 1px;
    background: var(--forest-light);
    opacity: 0.5;
}

/* Add this to your existing CSS file */
.back-to-top {
  position: fixed;
  bottom: 30px;
  left: 30px;
  width: 50px;
  height: 50px;
  background-color: #3C4F2A; /* Teva's green color - adjust to match your brand */
  color: white;
  border: none;
  border-radius: 50%;
  cursor: pointer;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
}

.back-to-top:hover {
  background-color: #3C4F2A; /* Darker green on hover */
  transform: translateY(-2px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}

.back-to-top:active {
  transform: translateY(0);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

/* Optional: Add a subtle animation */
@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

.back-to-top.visible {
  animation: fadeIn 0.3s ease;
}

@import url('https://fonts.googleapis.com/css2?family=Dancing+Script:wght@400;500;600;700&display=swap');

.welcome-section {
    padding: 5rem 2rem;
    position: relative;
    max-width: 1400px;
    margin: 0 auto;
    overflow: hidden;
}

.safari-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('animal-skin-pattern.png');
    background-size: cover;
    background-position: center;
    opacity: 0.15;
}

.white-blur-gradient {
    position: absolute;
    top: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 150%;
    height: 100%;
    background: radial-gradient(
        ellipse at center top,
        rgba(255, 255, 255, 0.8) 0%,
        rgba(255, 255, 255, 0.4) 30%,
        rgba(255, 255, 255, 0.1) 60%,
        transparent 80%
    );
    mask-image: radial-gradient(
        ellipse at center top,
        black 0%,
        black 40%,
        transparent 70%
    );
    -webkit-mask-image: radial-gradient(
        ellipse at center top,
        black 0%,
        black 40%,
        transparent 70%
    );
}

.welcome-content {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 1;
}

.main-heading {
    font-size: 3.5rem;
    font-weight: 800;
    color: #2a4d2e;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
    letter-spacing: -0.5px;
}

.sub-heading {
    font-family: 'Dancing Script', cursive;
    font-size: 2.5rem;
    font-weight: 600;
    color: #d4af37;
    margin-bottom: 2rem;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
}

.description {
    font-size: 1.2rem;
    color: #5a5a5a;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
}

.bento-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 2rem;
    height: 600px;
    position: relative;
    z-index: 1;
}

.grid-item {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.grid-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.large-rectangle {
    grid-row: 1 / span 2;
    position: relative;
}

.safari-image {
    position: relative;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.safari-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('safari-hero.jpg') center/cover;
    z-index: 1;
}

.black-gradient-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.4) 0%,
        rgba(0, 0, 0, 0.2) 30%,
        rgba(0, 0, 0, 0.1) 50%,
        transparent 70%
    );
    z-index: 2;
}

.image-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem;
    color: white;
    z-index: 3;
}

.image-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.image-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.safari-cta {
    background: linear-gradient(135deg, #d4af37, #b8941f);
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.safari-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.small-rectangle {
    background: white;
    padding: 2.5rem;
    display: flex;
    align-items: center;
    border: 1px solid #e8e8e8;
}

.small-rectangle .text-content {
    width: 100%;
}

.small-rectangle .icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.small-rectangle h3 {
    color: #2a4d2e;
    font-size: 1.6rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.small-rectangle p {
    color: #666;
    line-height: 1.6;
    font-size: 1rem;
}

.vision {
    background: linear-gradient(135deg, #f8f6f0, #f0ede4);
    border-left: 4px solid #d4af37;
}

.mission {
    background: linear-gradient(135deg, #f0f7f0, #e8f3e8);
    border-left: 4px solid #2a4d2e;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .bento-grid {
        height: 500px;
    }
    
    .main-heading {
        font-size: 3rem;
    }
    
    .sub-heading {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        height: auto;
        gap: 1.5rem;
    }
    
    .large-rectangle {
        grid-row: auto;
        height: 400px;
    }
    
    .main-heading {
        font-size: 2.2rem;
    }
    
    .sub-heading {
        font-size: 1.8rem;
    }
    
    .description {
        font-size: 1.1rem;
    }
    
    .image-content {
        padding: 2rem;
    }
    
    .image-content h3 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .welcome-section {
        padding: 3rem 1rem;
    }
    
    .main-heading {
        font-size: 1.8rem;
    }
    
    .sub-heading {
        font-size: 1.5rem;
    }
    
    .small-rectangle {
        padding: 2rem;
    }
}

/* Floating Chat Button CSS - Left Side Version */
@import url('https://cdnjs.cloudflare.com/ajax/libs/font-awesome/5.15.4/css/all.min.css');

.teva-chat-container {
  position: fixed;
  bottom: 30px;
  left: 30px; /* Changed from right to left */
  z-index: 9998; /* Lower than back-to-top button */
  font-family: 'Poppins', sans-serif;
}

.teva-chat-button {
  background: linear-gradient(135deg, #c19a6b 0%, #8b6e46 100%);
  color: white;
  border: none;
  border-radius: 30px;
  padding: 15px 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.15);
  transition: all 0.3s ease;
  font-weight: 600;
  font-size: 16px;
}

.teva-chat-button:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(0,0,0,0.2);
}

.teva-chat-button i {
  font-size: 20px;
}

.teva-chat-text {
  transition: opacity 0.3s ease;
}

.teva-chat-bubble {
  position: absolute;
  bottom: 70px;
  left: 0; /* Changed from right to left */
  width: 350px;
  background: white;
  border-radius: 12px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.15);
  overflow: hidden;
  transform: scale(0);
  transform-origin: bottom left; /* Changed from right to left */
  transition: transform 0.3s ease;
  opacity: 0;
}

.teva-chat-container.active .teva-chat-bubble {
  transform: scale(1);
  opacity: 1;
}

.teva-chat-header {
  background: linear-gradient(135deg, #2a4d2a 0%, #1a3a1a 100%);
  color: white;
  padding: 15px;
  display: flex;
  align-items: center;
  gap: 12px;
  position: relative;
}

.teva-expert-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255,255,255,0.3);
}

.teva-chat-header h4 {
  margin: 0;
  font-size: 16px;
  font-weight: 600;
}

.teva-chat-header p {
  margin: 3px 0 0;
  font-size: 12px;
  opacity: 0.8;
}

.teva-close-chat {
  position: absolute;
  right: 15px;
  background: transparent;
  border: none;
  color: white;
  cursor: pointer;
  font-size: 16px;
}

.teva-chat-messages {
  padding: 15px;
  height: 250px;
  overflow-y: auto;
  background: #f9f9f9;
}

.teva-chat-message {
  margin-bottom: 15px;
  max-width: 80%;
  padding: 10px 15px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.5;
  position: relative;
}

.teva-expert-message {
  background: white;
  border: 1px solid #eee;
  border-top-left-radius: 4px;
  margin-right: auto;
}

.teva-message-time {
  display: block;
  font-size: 10px;
  color: #999;
  margin-top: 5px;
  text-align: right;
}

.teva-chat-input {
  display: flex;
  padding: 15px;
  background: white;
  border-top: 1px solid #eee;
}

.teva-chat-input input {
  flex: 1;
  padding: 12px 15px;
  border: 1px solid #ddd;
  border-radius: 30px;
  outline: none;
  font-size: 14px;
}

.teva-send-button {
  background: #2a4d2a;
  color: white;
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-left: 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.teva-send-button:hover {
  background: #1a3a1a;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .teva-chat-container {
    left: 15px;
    bottom: 20px;
  }
  
  .teva-chat-button {
    padding: 12px 15px 12px 12px;
  }
  
  .teva-chat-text {
    opacity: 0;
    width: 0;
    position: absolute;
  }
  
  .teva-chat-bubble {
    width: 90vw;
    left: 0;
    bottom: 60px;
  }
}

/* Previous CSS remains the same, just add these new rules */
#teva-thank-you {
  padding: 20px;
  text-align: center;
}

#teva-chat-form.sending {
  opacity: 0.6;
  pointer-events: none;
}

#teva-chat-history {
  max-height: 200px;
  overflow-y: auto;
}

/* Animation for new messages */
@keyframes teva-messageIn {
  from {
    opacity: 0;
    transform: translateY(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.teva-chat-message {
  animation: teva-messageIn 0.3s ease-out;
}

/* Base Styles - Modified to fix scrolling */
body, html {
    margin: 0;
    padding: 0;
    width: 100%; /* Added */
    height: auto; /* Changed from 100% */
    min-height: 100vh; /* Added */
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden; /* Added */
}

/* Parallax Section - Modified for proper containment */
.parallax-section {
    position: relative;
    height: 100vh;
    width: 100%; /* Added */
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

/* Added new rule for content after parallax */
main {
    position: relative;
    width: 100%;
    height: auto;
}

/* Original untouched styles below */
.parallax-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('images/TT_07485tab.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    z-index: -1;
}

.cta-content {
    max-width: 800px;
    padding: 20px;
}

.cta-heading {
    font-family: 'Caveat Brush', cursive;
    font-size: 4rem;
    line-height: 1.2;
    margin-bottom: 20px;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

.cta-text {
    font-size: 1.2rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.3);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-button {
    display: inline-block;
    padding: 15px 40px;
    background-color: #3C4F2A;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.cta-button:hover {
    background-color: #3C4F2A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

/* Responsive Adjustments - Modified slightly for mobile scrolling */
@media (max-width: 768px) {
    body, html {
        height: auto; /* Ensure mobile can scroll */
    }
    
    .parallax-section {
        height: auto;
        min-height: 100vh;
    }
    
    .parallax-image {
        background-attachment: scroll !important; /* Better mobile performance */
    }
    
    .cta-heading {
        font-size: 3rem;
        padding-top: 60px; /* Space for mobile header */
    }
    
    .cta-text {
        font-size: 1rem;
    }
    
    .cta-button {
        padding: 12px 30px;
        margin-bottom: 60px; /* Space at bottom */
    }
}

.testimonial-slider {
  position: relative;
  width: 100%;
  height: 500px;
  overflow: hidden;
}

.slider-container {
  position: relative;
  width: 100%;
  height: 100%;
}

.slider-track {
  display: flex;
  height: 100%;
  transition: transform 0.8s ease;
}

.slider-slide {
  min-width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  background-size: cover;
  background-position: center;
  position: relative;
}

.slider-slide::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.3) 100%);
}

.slider-content {
  position: relative;
  z-index: 2;
  color: white;
  max-width: 800px;
  padding: 0 60px;
  text-align: left;
  margin-left: 50px;
}

.testimonial-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: 'playfair display', serif;
  font-size: 1.7rem;
  line-height: 1.4;
  margin-bottom: 2rem;
  font-weight: 300;
}

.customer-name {
  font-family: 'Dancing Script', cursive;
  font-weight: 200;
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.tripadvisor-logo img {
  height: 30px;
  margin-bottom: 2rem;
}

.pagination-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 4;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  cursor: pointer;
  transition: background-color 0.3s;
}

.dot.active {
  background-color: white;
}

.slider-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: white;
  border: none;
  font-size: 1.5rem;
  color: #333;
  cursor: pointer;
  z-index: 4;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0.8;
  transition: opacity 0.3s;
}

.slider-nav:hover {
  opacity: 1;
}

.prev {
  left: 30px;
}

.next {
  right: 30px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .testimonial-slider {
    height: 450px;
  }
  
  .slider-content {
    padding: 0 30px;
    margin-left: 20px;
  }
  
  .testimonial-quote {
    font-size: 1.4rem;
  }
  
  .slider-nav {
    width: 40px;
    height: 40px;
    font-size: 1.2rem;
  }
  
  .prev {
    left: 15px;
  }
  
  .next {
    right: 15px;
  }
}

.faq-modern-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    align-items: stretch;
    font-family: 'Poppins', sans-serif;
    min-height: 80vh;
}

.faq-left-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-pill {
    font-size: 12px;
    font-weight: 600;
    color: #2C3E20;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid #2C3E20;
    border-radius: 12px;
    background-color: rgba(37, 99, 235, 0.05);
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.faq-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #1e293b;
    line-height: 1.2;
}

.cta-modern-card {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
}

.cta-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
}

.cta-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.modern-cta-button {
    background-color: #2C3E20;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modern-cta-button:hover {
    background-color: #2C3E20;
    transform: translateY(-1px);
}

.faq-right-column {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modern-faq-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.modern-faq-card:hover {
    border-color: #2C3E20;
}

.faq-question-row {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1e293b;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer-content.active {
    max-height: 300px;
    padding-top: 16px;
}

.expand-icon {
    font-size: 20px;
    color: #2C3E20;
    transition: transform 0.25s ease;
}

.modern-faq-card.active .expand-icon {
    transform: rotate(45deg);
}

.faq-modern-container {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 60px 20px;
    gap: 60px;
    align-items: stretch;
    font-family: 'Poppins', sans-serif;
    min-height: 80vh;
}

.faq-left-column {
    width: 40%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.support-pill {
    font-size: 12px;
    font-weight: 600;
    color: #2C3E20;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 4px 10px;
    border: 1px solid #2C3E20;
    border-radius: 12px;
    background-color: rgba(37, 99, 235, 0.05);
    display: inline-block;
    width: fit-content;
    margin-bottom: 20px;
}

.faq-main-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    margin: 0 0 40px 0;
    color: #1e293b;
    line-height: 1.2;
}

.cta-modern-card {
    background-color: white;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    margin-top: auto;
    order: 2; /* Ensure CTA stays at bottom in column layout */
}

.cta-title {
    font-weight: 600;
    font-size: 18px;
    margin-bottom: 8px;
    color: #1e293b;
}

.cta-description {
    color: #64748b;
    font-size: 14px;
    margin-bottom: 16px;
    line-height: 1.5;
}

.modern-cta-button {
    background-color: #2C3E20;
    color: white;
    border: none;
    padding: 10px 24px;
    border-radius: 8px;
    font-family: 'Poppins', sans-serif;
    font-weight: 500;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.modern-cta-button:hover {
    background-color: #2C3E20;
    transform: translateY(-1px);
}

.faq-right-column {
    width: 60%;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.modern-faq-card {
    background-color: white;
    border-radius: 12px;
    padding: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
}

.modern-faq-card:hover {
    border-color: #2C3E20;
}

.faq-question-row {
    font-weight: 600;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    color: #1e293b;
}

.faq-answer-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.25s ease;
    color: #64748b;
    line-height: 1.7;
    font-size: 15px;
}

.faq-answer-content.active {
    max-height: 300px;
    padding-top: 16px;
}

.expand-icon {
    font-size: 20px;
    color: #2C3E20;
    transition: transform 0.25s ease;
}

.modern-faq-card.active .expand-icon {
    transform: rotate(45deg);
}

/* Mobile Responsive Styles */
@media (max-width: 768px) {
    .faq-modern-container {
        flex-direction: column;
        padding: 40px 16px;
        gap: 40px;
        min-height: auto;
    }
    
    .faq-left-column {
        width: 100%;
        display: flex;
        flex-direction: column;
    }
    
    .faq-main-title {
        font-size: 36px;
        margin: 0 0 24px 0;
        order: 1; /* Title comes first */
    }
    
    .support-pill {
        order: 0; /* Support pill comes before title */
    }
    
    .cta-modern-card {
        order: 2; /* CTA comes after title */
        margin-top: 20px; /* Add space between title and CTA */
    }
    
    .faq-right-column {
        width: 100%;
        order: 3; /* FAQ section comes after left column content */
    }
    
    .modern-faq-card {
        padding: 20px;
    }
    
    .faq-question-row {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .faq-main-title {
        font-size: 28px;
    }
    
    .support-pill {
        font-size: 11px;
    }
    
    .modern-faq-card {
        padding: 16px;
    }
    
    .faq-question-row {
        font-size: 15px;
        gap: 12px;
    }
    
    .expand-icon {
        font-size: 18px;
        flex-shrink: 0;
    }
    
    .cta-title {
        font-size: 16px;
    }
    
    .cta-description {
        font-size: 13px;
    }
    
    .modern-cta-button {
        width: 100%;
    }
}

.serengeti-slideshow {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
    font-family: 'Poppins', sans-serif;
}

.serengeti-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.serengeti-slide.active {
    opacity: 1;
    z-index: 1;
}

.serengeti-slide-image {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.serengeti-slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0) 100%);
    z-index: 1;
}

.serengeti-slide-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: white;
}

/* Text styles */
.serengeti-slide-pretitle {
    display: block;
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.9);
}

.serengeti-slide-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
    text-align: left;
}

.serengeti-slide-title span {
    font-family: 'Dancing Script', cursive;
    color: #e8b954;
}

.serengeti-slide-subtitle {
    font-size: 18px;
    line-height: 1.6;
    max-width: 500px;
    margin-bottom: 30px;
    opacity: 0.9;
    text-align: left;
}

/* Updated Button Styles */
.serengeti-slide-button {
    display: inline-flex;
    align-items: center;
    padding: 12px 25px;
    background: linear-gradient(90deg, #3C4F2A 0%, #2C3E20 100%);
    color: white;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 50px;
    transition: all 0.3s ease;
    width: fit-content;
}

.serengeti-slide-button i {
    margin-left: 10px;
    transition: all 0.3s ease;
}

.serengeti-slide-button:hover {
    background: linear-gradient(90deg, #3C4F2A 0%, #2C3E20 100%);
    transform: translateY(-2px);
}

.serengeti-slide-button:hover i {
    transform: translateX(5px);
}

/* Navigation styles */
.serengeti-slide-nav {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 20px;
}

.serengeti-slide-prev,
.serengeti-slide-next {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.serengeti-slide-prev:hover,
.serengeti-slide-next:hover {
    background: rgba(255, 255, 255, 0.4);
}

.serengeti-slide-dots {
    display: flex;
    gap: 10px;
}

.serengeti-slide-dots .dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: all 0.3s ease;
}

.serengeti-slide-dots .dot.active {
    background: white;
    transform: scale(1.2);
}

/* Responsive styles */
@media (max-width: 768px) {
    .serengeti-slideshow {
        height: 450px;
    }
    
    .serengeti-slide-image {
        background-position: 60% center;
    }
    
    .serengeti-slide-overlay {
        width: 100%;
        background: linear-gradient(90deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.5) 100%);
    }
    
    .serengeti-slide-content {
        text-align: center;
        padding: 0 20px;
    }
    
    .serengeti-slide-title,
    .serengeti-slide-subtitle {
        text-align: center;
        margin-left: auto;
        margin-right: auto;
    }
    
    .serengeti-slide-title {
        font-size: 36px;
    }
    
    .serengeti-slide-subtitle {
        max-width: 100%;
        font-size: 16px;
    }
    
    .serengeti-slide-button {
        margin: 0 auto;
        padding: 10px 20px;
        font-size: 15px;
    }
    
    .serengeti-slide-nav {
        bottom: 20px;
    }
}

@media (max-width: 480px) {
    .serengeti-slideshow {
        height: 400px;
    }
    
    .serengeti-slide-title {
        font-size: 28px;
    }
    
    .serengeti-slide-subtitle {
        font-size: 15px;
    }
    
    .serengeti-slide-nav {
        gap: 10px;
    }
    
    .serengeti-slide-prev,
    .serengeti-slide-next {
        width: 30px;
        height: 30px;
        font-size: 12px;
    }
    
    .serengeti-slide-dots .dot {
        width: 8px;
        height: 8px;
    }
    
    .serengeti-slide-button {
        padding: 8px 16px;
        font-size: 14px;
    }
}

/* CSS for Teva EcoTravels - Premium Fonts Version */

/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,600;0,700;1,400&family=Poppins:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300&family=Dancing+Script:wght@400;500;600;700&display=swap');

.teva-welcome-section {
  width: 100%;
  font-family: 'Poppins', sans-serif;
  color: #1a1a1a;
  line-height: 1.6;
}

/* Welcome Block Styles */
.teva-welcome-block {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 120px 20px;
  background: #ffffff;
  position: relative;
}

.teva-welcome-block::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 100px;
  height: 2px;
  background: linear-gradient(90deg, transparent, #2c5530, transparent);
}

.teva-welcome-content {
  max-width: 680px;
  text-align: center;
}

.teva-header-container {
  margin-bottom: 50px;
}

.teva-main-heading {
  font-family: 'Playfair Display', serif;
  font-size: 3.8rem;
  font-weight: 600;
  color: #1a1a1a;
  margin-bottom: 25px;
  letter-spacing: -0.5px;
  line-height: 1.1;
  font-style: normal;
}

.teva-header-divider {
  width: 60px;
  height: 1px;
  background: #2c5530;
  margin: 0 auto 25px auto;
  transition: width 0.3s ease;
}

.teva-welcome-content:hover .teva-header-divider {
  width: 80px;
}

.teva-subheading {
  font-family: 'Dancing Script', cursive;
  font-size: 2rem;
  font-weight: 500;
  color: #4a7c59;
  letter-spacing: 0.5px;
}

.teva-welcome-text {
  margin-bottom: 40px;
}

.teva-welcome-text p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 25px;
  color: #555;
  font-weight: 300;
}

.teva-callout {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 32px;
  background: transparent;
  color: #2c5530;
  border: 1px solid #2c5530;
  border-radius: 0;
  font-family: 'Poppins', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.teva-callout:hover {
  color: #ffffff;
  letter-spacing: 1.2px;
}

.teva-icon {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.teva-callout:hover .teva-icon {
  transform: scale(1.1);
}

/* Parallax Section Styles */
.teva-parallax-section {
  position: relative;
  height: 700px;
  overflow: hidden;
}

.teva-parallax-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 130%;
  background-image: url('images/DSC08309.jpg');
  background-attachment: fixed;
  background-position: center 30%;
  background-repeat: no-repeat;
  background-size: cover;
  transform: translateZ(0);
}

.teva-parallax-content {
  position: relative;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 0 80px;
  background: rgba(0, 0, 0, 0.3);
}

.teva-parallax-block {
  flex: 1;
  max-width: 45%;
}

.teva-parallax-item {
  padding: 0;
  background: transparent;
  text-align: center;
  color: #ffffff;
}

.teva-mission-block .teva-parallax-item {
  margin-right: auto;
  text-align: left;
}

.teva-vision-block .teva-parallax-item {
  margin-left: auto;
  text-align: right;
}

.teva-section-icon {
  font-size: 2.2rem;
  color: #ffffff;
  margin-bottom: 25px;
  opacity: 0.9;
  transition: all 0.3s ease;
}

.teva-section-heading {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 400;
  color: #ffffff;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 3px;
  font-style: italic;
}

.teva-parallax-item .teva-header-divider {
  width: 40px;
  height: 1px;
  background: #ffffff;
  margin: 0 0 25px 0;
  opacity: 0.8;
  transition: all 0.3s ease;
}

.teva-mission-block .teva-header-divider {
  margin-left: 0;
}

.teva-vision-block .teva-header-divider {
  margin-right: 0;
  margin-left: auto;
}

.teva-section-text {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.7;
  color: #ffffff;
  font-weight: 300;
  opacity: 0.9;
  max-width: 400px;
  letter-spacing: 0.3px;
}

/* FIXED: Vision text alignment */
.teva-mission-block .teva-section-text {
  text-align: left;
  margin-right: auto;
}

.teva-vision-block .teva-section-text {
  text-align: right;
  margin-left: auto;
}

/* Ensure the entire vision block content aligns right */
.teva-vision-block .teva-parallax-item {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
}

.teva-mission-block .teva-parallax-item {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

/* Hover Effects */
.teva-parallax-item:hover .teva-section-icon {
  opacity: 1;
  transform: scale(1.1);
  color: #f8f6f0;
}

.teva-parallax-item:hover .teva-section-heading {
  letter-spacing: 4px;
  color: #f8f6f0;
}

.teva-parallax-item:hover .teva-header-divider {
  width: 60px;
  opacity: 1;
  background: #f8f6f0;
}

.teva-parallax-item:hover .teva-section-text {
  opacity: 1;
  color: #f8f6f0;
}

/* Responsive Design */
@media (max-width: 1024px) {
  .teva-parallax-content {
    padding: 0 40px;
  }
  
  .teva-main-heading {
    font-size: 3.2rem;
  }
}

@media (max-width: 768px) {
  .teva-main-heading {
    font-size: 2.8rem;
  }
  
  .teva-subheading {
    font-size: 1.8rem;
  }
  
  .teva-welcome-block {
    padding: 80px 20px;
  }
  
  .teva-parallax-content {
    flex-direction: column;
    justify-content: center;
    gap: 60px;
    padding: 40px 20px;
  }
  
  .teva-parallax-block {
    max-width: 100%;
  }
  
  .teva-parallax-item {
    text-align: center !important;
    align-items: center !important;
  }
  
  .teva-section-text {
    text-align: center !important;
    margin: 0 auto !important;
  }
  
  .teva-header-divider {
    margin: 0 auto 25px auto !important;
  }
  
  .teva-parallax-section {
    height: auto;
    min-height: 800px;
  }
  
  .teva-parallax-image {
    background-attachment: scroll;
  }
  
  .teva-section-heading {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .teva-main-heading {
    font-size: 2.2rem;
  }
  
  .teva-subheading {
    font-size: 1.5rem;
  }
  
  .teva-welcome-block {
    padding: 60px 15px;
  }
  
  .teva-parallax-content {
    padding: 30px 15px;
  }
  
  .teva-section-heading {
    font-size: 1.6rem;
    letter-spacing: 2px;
  }
  
  .teva-section-text {
    font-size: 1rem;
  }
}

/* Font Smoothing for Better Readability */
.teva-main-heading,
.teva-subheading,
.teva-section-heading,
.teva-section-text {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}