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

:root {
    --gold: #c19a6b;
    --dark: #1a1a1a;
    --light: #f9f5f0;
}

body {
    background-color: var(--light);
    color: var(--dark);
    line-height: 1.6;
    overflow-x: hidden;
    font-family: 'Poppins', sans-serif;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', serif;
    font-weight: 600;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Header Styles */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 20px 0;
    z-index: 1000;
    transition: all 0.5s ease;
}

.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-left, .nav-right {
    display: flex;
    align-items: center;
    gap: 30px;
}

.logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
}

.logo-img {
    height: 50px;
    transition: all 0.3s ease;
}

.nav-link {
    color: white;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    padding: 5px 0;
}

.nav-link:after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    background: var(--gold);
    bottom: 0;
    left: 0;
    transition: width 0.3s ease;
}

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

.nav-link:hover {
    color: var(--gold);
}

/* CTA Button */
.cta-button {
    background-color: var(--gold);
    color: white;
    padding: 10px 25px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    margin-left: 15px;
}

.cta-button:hover {
    background-color: #b0885a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

/* Scrolled Header Styles */
.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    padding: 12px 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.scrolled .logo-img {
    height: 40px;
}

.scrolled .nav-link {
    color: white;
}

.scrolled .cta-button {
    background-color: var(--gold);
}

/* Hero Section */
.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.3)), 
                url('https://images.unsplash.com/photo-1516426122078-c23e76319801?ixlib=rb-4.0.3&ixid=M3wxMjA3fDB8MHxwaG90by1wYWdlfHx8fGVufDB8fHx8fA%3D%3D&auto=format&fit=crop&w=2068&q=80') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    padding-top: 80px;
}

.hero-content {
    max-width: 800px;
    padding: 0 20px;
}

.hero h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: 600;
    letter-spacing: 2px;
    line-height: 1.2;
}

.hero p {
    font-size: 1.2rem;
    letter-spacing: 1px;
    margin-bottom: 30px;
    font-weight: 300;
}

.hero-cta {
    background-color: var(--gold);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
}

.hero-cta:hover {
    background-color: #b0885a;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Mobile Menu Styles */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1001;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease;
    background-color: white;
}

.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 80%;
    max-width: 400px;
    height: 100vh;
    background-color: var(--dark);
    padding: 100px 30px 40px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 25px;
    transition: right 0.5s ease;
    z-index: 1000;
}

.mobile-menu.active {
    right: 0;
}

.mobile-nav-link {
    color: white;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    padding: 5px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    display: block;
}

.mobile-nav-link:hover {
    color: var(--gold);
}

.mobile-cta {
    background-color: var(--gold);
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    margin-top: 20px;
    display: inline-block;
}

.mobile-cta:hover {
    background-color: #b0885a;
}

/* Responsive Design */
@media (max-width: 992px) {
    .nav-left, .nav-right {
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .hamburger {
        display: block;
    }
    
    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    .nav-left, .nav-right {
        display: none;
    }
    
    .logo {
        position: static;
        transform: none;
        margin-right: auto;
    }
    
    .navbar {
        justify-content: flex-start;
        gap: 20px;
    }
    
    .scrolled {
        padding: 15px 0;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
    }
    
    .hero p {
        font-size: 1rem;
    }
    
    .hero-cta {
        padding: 12px 30px;
        font-size: 0.8rem;
    }
    
    .mobile-menu {
        width: 100%;
        max-width: 100%;
        padding: 100px 20px 40px;
    }
}

/* Hero Section - Updated */
.hero {
    position: relative;
    height: 100vh;
    width: 100%;
    overflow: hidden;
    color: white;
    padding-top: 80px;
}

/* Slideshow Styles */
.slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.slide {
    position: absolute;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(26, 26, 26, 0.2) 0%, rgba(26, 26, 26, 0.7) 100%);
}

/* Hero Content */
.hero-content {
    position: relative;
    height: 100%;
    display: flex;
    align-items: center;
    z-index: 2;
}

.hero-text {
    max-width: 800px;
    padding: 0 30px;
    animation: fadeInUp 1s ease-out;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: inline-block;
}

.hero-title {
    font-family: 'Playfair Display', serif;
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 20px;
    text-transform: uppercase;
}

.hero-title span {
    color: var(--gold);
    font-style: italic;
    font-weight: 400;
    text-transform: none;
}

.hero-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    max-width: 600px;
    margin-left: 65px;
    margin-bottom: 30px;
    font-weight: 300;
}

/* Hero Buttons */
.hero-buttons {
    margin-left: 120px;
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-primary {
    background-color: var(--gold);
    color: white;
    padding: 15px 40px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid var(--gold);
}

.cta-primary:hover {
    background-color: transparent;
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

.cta-secondary {
    background-color: transparent;
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-block;
    border: 2px solid white;
}

.cta-secondary:hover {
    background-color: white;
    color: var(--dark);
    transform: translateY(-3px);
}

.cta-secondary i {
    margin-left: 8px;
    font-size: 0.8rem;
}

/* Slideshow Controls */
.slide-controls {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 30px;
    z-index: 3;
}

.slide-prev, .slide-next {
    background: transparent;
    border: none;
    color: white;
    font-size: 1.2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    opacity: 0.7;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.slide-prev:hover, .slide-next:hover {
    opacity: 1;
    background: rgba(255, 255, 255, 0.1);
}

.slide-dots {
    display: flex;
    gap: 10px;
}

.slide-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.slide-dot.active {
    background: var(--gold);
    transform: scale(1.2);
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    z-index: 3;
    color: white;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    animation: bounce 2s infinite;
}

.mouse {
    width: 25px;
    height: 40px;
    border: 2px solid white;
    border-radius: 15px;
    margin-top: 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    position: absolute;
    top: 5px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s infinite;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0) translateX(-50%);
    }
    40% {
        transform: translateY(-10px) translateX(-50%);
    }
    60% {
        transform: translateY(-5px) translateX(-50%);
    }
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 5px;
    }
    100% {
        opacity: 0;
        top: 20px;
    }
}

/* Color Variables (add to your existing :root) */
:root {
    --gold: #c19a6b;       /* Primary gold color */
    --gold-light: #d4b483; /* Lighter gold */
    --brown: #3a2c1a;      /* Dark brown */
    --brown-light: #5a4a30;/* Medium brown */
    --green: #2a4a3a;      /* Deep green */
    --green-light: #3a6a4a;/* Lighter green */
    --white: #ffffff;
    --dark: #1a1a1a;
    --light: #f9f5f0;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }
    
    .hero-description {
        margin-right: 50px;
        font-size: 1rem;
    }
    
    .hero-buttons {
        margin-right: 70px;
        margin-left: 70px;
        flex-direction: column;
        gap: 15px;
    }
    
    .cta-primary, .cta-secondary {
        width: 100%;
        text-align: center;
    }
    
    .slide-controls {
        bottom: 30px;
    }
}

@media (max-width: 480px) {
    .hero-subtitle {
        font-size: 0.9rem;
        letter-spacing: 2px;
    }
    
    .hero-text {
        padding: 0 20px;
    }
    
    .slide-controls {
        gap: 15px;
    }
}

/* Minimal About Section */
.minimal-about {
    padding: 60px 0;
    background: #faf9f7;
  }
  
  .about-container {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 0 20px;
  }
  
  /* Image Section */
  .about-image {
    position: relative;
    height: 400px;
  }
  
  .about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-right: 3px solid #c19a6b;
  }
  
  .year-badge {
    position: absolute;
    bottom: -15px;
    right: -15px;
    background: #c19a6b;
    color: white;
    padding: 8px 20px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1rem;
  }
  
  /* Content Section */
  .about-content {
    padding-top: 20px;
  }
  
  .pre-title {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    letter-spacing: 2px;
    color: #c19a6b;
    text-transform: uppercase;
    margin-bottom: 15px;
  }
  
  .about-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 25px;
    line-height: 1.3;
  }
  
  .about-text p {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
  }
  
  .signature-line {
    font-style: italic;
    color: #2a2a2a;
    position: relative;
    padding-left: 15px;
  }
  
  .signature-line::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    height: 100%;
    width: 2px;
    background: #c19a6b;
  }
  
  /* CTA Button */
  .minimal-cta {
    display: inline-block;
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2a2a2a;
    text-decoration: none;
    margin-top: 20px;
    transition: all 0.3s ease;
  }
  
  .minimal-cta span {
    margin-left: 5px;
    transition: transform 0.3s ease;
  }
  
  .minimal-cta:hover {
    color: #c19a6b;
  }
  
  .minimal-cta:hover span {
    transform: translateX(3px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .about-container {
      grid-template-columns: 1fr;
    }
    
    .about-image {
      height: 300px;
    }
  }
  
  @media (max-width: 480px) {
    .minimal-about {
      padding: 40px 0;
    }
    
    .about-content h2 {
      font-size: 1.8rem;
    }
  }

  /* Reasons Section Styles */
.reasons-section {
    padding: 80px 0;
    background-color: #f9f5f0;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    text-align: center;
    margin-bottom: 15px;
  }
  
  .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    text-align: center;
    max-width: 600px;
    margin: 0 auto 50px;
    letter-spacing: 0.5px;
  }
  
  .reasons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .reason-card {
    background: white;
    padding: 30px;
    border-radius: 4px;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  
  .reason-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  }
  
  .reason-icon {
    margin-bottom: 20px;
  }
  
  .reason-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
  }
  
  .reason-card p {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
  }

  /* Enhanced with Texture Background */
.reasons-section {
    padding: 80px 0;
    position: relative;
    background-color: #f9f5f0; /* Fallback color */
    overflow: hidden;
  }
  
  .texture-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('https://www.transparenttextures.com/patterns/cream-paper.png');
    opacity: 0.03;
    z-index: 0;
  }
  
  .container {
    position: relative;
    z-index: 1;
  }
  
  /* Responsive Design */
  @media (max-width: 768px) {
    .section-title {
      font-size: 2rem;
    }
    
    .reasons-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }
  }
  
  @media (max-width: 480px) {
    .reasons-section {
      padding: 60px 0;
    }
    
    .section-title {
      font-size: 1.8rem;
    }
  }

  /* Popular Tours Section */
.popular-tours {
    padding: 80px 0;
    background: #faf9f7;
  }
  
  .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 50px;
  }
  
  .section-title {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #2a2a2a;
    margin-bottom: 10px;
  }
  
  .section-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    color: #666;
    letter-spacing: 1px;
  }
  
  .tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
  }
  
  .tour-card {
    background: white;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
  }
  
  .tour-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0,0,0,0.1);
  }
  
  .tour-image {
    height: 220px;
    background-size: cover;
    background-position: center;
    position: relative;
  }
  
  .tour-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: #c19a6b;
    color: white;
    padding: 5px 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    font-weight: 600;
    border-radius: 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
  }
  
  .tour-content {
    padding: 25px;
  }
  
  .tour-content h3 {
    font-family: 'Playfair Display', serif;
    font-size: 1.4rem;
    font-weight: 600;
    color: #2a2a2a;
    margin-bottom: 15px;
  }
  
  .tour-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #666;
    margin-bottom: 20px;
  }
  
  .tour-price {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
  }
  
  .tour-price span {
    font-size: 1.4rem;
    font-weight: 700;
    color: #2a2a2a;
  }
  
  .tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
  }
  
  .tour-button {
    font-family: 'Poppins', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    color: #c19a6b;
    text-decoration: none;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
  }
  
  .tour-button:hover {
    color: #a07d52;
  }
  
  .tour-duration {
    font-family: 'Poppins', sans-serif;
    font-size: 0.8rem;
    color: #999;
  }

  /* View All Button Styles */
.view-all-container {
    text-align: center;
    margin-top: 50px;
  }
  
  .view-all-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #2a2a2a;
    text-decoration: none;
    padding: 12px 30px;
    border: 2px solid #2a2a2a;
    border-radius: 30px;
    transition: all 0.3s ease;
  }
  
  .view-all-button svg {
    transition: transform 0.3s ease;
  }
  
  .view-all-button:hover {
    background: #2a2a2a;
    color: white;
  }
  
  .view-all-button:hover svg {
    transform: translateX(5px);
    stroke: white;
  }
  
  /* Responsive Adjustments */
  @media (max-width: 768px) {
    .view-all-button {
      padding: 10px 25px;
    }
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .tours-grid {
      grid-template-columns: 1fr;
      max-width: 500px;
      margin: 0 auto;
    }
    
    .section-title {
      font-size: 2rem;
    }
  }
  
  @media (max-width: 480px) {
    .popular-tours {
      padding: 60px 0;
    }
    
    .tour-image {
      height: 180px;
    }
  }

  /* Safari CTA with Parallax */
.safari-cta {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    color: white;
    text-align: center;
    padding: 0 20px;
  }
  
  .parallax-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed; /* Creates parallax effect */
    z-index: 0;
  }
  
  .cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
  }
  
  .cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
  }
  
  .cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.3;
  }
  
  .cta-content p {
    font-family: 'Poppins', sans-serif;
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: white;
    background: #c19a6b;
    padding: 15px 35px;
    border-radius: 30px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
  }
  
  .cta-button svg {
    transition: transform 0.3s ease;
  }
  
  .cta-button:hover {
    background: #a07d52;
    transform: translateY(-2px);
  }
  
  .cta-button:hover svg {
    transform: translateX(5px);
  }
  
  /* Responsive */
  @media (max-width: 768px) {
    .safari-cta {
      height: 400px;
    }
    
    .cta-content h2 {
      font-size: 2rem;
    }
    
    .cta-content p {
      font-size: 1rem;
    }
  }
  
  @media (max-width: 480px) {
    .safari-cta {
      height: 350px;
    }
    
    .cta-button {
      padding: 12px 25px;
      font-size: 0.9rem;
    }
  }

  /* Kilimanjaro Trekking Packages Section */
.trekking-packages {
  padding: 80px 0;
  background-color: #f9f5f0;
}

.trekking-packages .container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.trekking-packages .section-header {
  text-align: center;
  margin-bottom: 50px;
}

.trekking-packages .section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 10px;
}

.trekking-packages .section-subtitle {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  color: #666;
  letter-spacing: 1px;
}

.trekking-packages .packages-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 30px;
}

.trekking-packages .package-card {
  background: white;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(0,0,0,0.05);
  transition: all 0.3s ease;
}

.trekking-packages .package-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.trekking-packages .package-image {
  height: 220px;
  background-size: cover;
  background-position: center;
  position: relative;
}

.trekking-packages .package-badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background: #c19a6b;
  color: white;
  padding: 5px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 1px;
}

.trekking-packages .package-content {
  padding: 25px;
}

.trekking-packages .package-content h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: #2a2a2a;
  margin-bottom: 20px;
}

.trekking-packages .package-details {
  margin-bottom: 20px;
}

.trekking-packages .detail-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #555;
}

.trekking-packages .detail-item i {
  color: #c19a6b;
  width: 20px;
  text-align: center;
  font-size: 1rem;
}

.trekking-packages .package-price {
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  color: #666;
  margin: 25px 0;
}

.trekking-packages .package-price span {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2a2a2a;
}

.trekking-packages .package-button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  color: #c19a6b;
  text-decoration: none;
  transition: all 0.3s ease;
}

.trekking-packages .package-button:hover {
  color: #a07d52;
}

.trekking-packages .package-button i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.trekking-packages .package-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .trekking-packages .packages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin: 0 auto;
  }
  
  .trekking-packages .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .trekking-packages {
    padding: 60px 0;
  }
  
  .trekking-packages .package-image {
    height: 180px;
  }
}

/* Adventure CTA Section */
.adventure-cta {
  position: relative;
  height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: white;
  overflow: hidden;
  padding: 0 20px;
}

.parallax-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  background-attachment: fixed; /* Creates parallax effect */
  z-index: 0;
}

.overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(26, 26, 26, 0.5); /* Dark overlay for readability */
  z-index: 1;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
}

.cta-content h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2.8rem;
  font-weight: 700;
  margin-bottom: 20px;
  line-height: 1.3;
  text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.cta-content p {
  font-family: 'Poppins', sans-serif;
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 30px;
  opacity: 0.9;
  text-shadow: 0 1px 2px rgba(0,0,0,0.2);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: white;
  background: #c19a6b;
  padding: 15px 35px;
  border-radius: 30px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.3s ease;
}

.cta-button i {
  font-size: 0.8rem;
  transition: transform 0.3s ease;
}

.cta-button:hover {
  background: #a07d52;
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.cta-button:hover i {
  transform: translateX(5px);
}

/* Responsive */
@media (max-width: 768px) {
  .adventure-cta {
    height: 400px;
  }
  
  .cta-content h2 {
    font-size: 2.2rem;
  }
  
  .cta-content p {
    font-size: 1rem;
  }
}

@media (max-width: 480px) {
  .adventure-cta {
    height: 350px;
  }
  
  .cta-button {
    padding: 12px 25px;
    font-size: 0.9rem;
  }
}

/* Compact Premium Travel Specialists */
.travel-specialists-compact-premium {
  padding: 70px 0;
  background-color: #f9f5f0;
}

.travel-specialists-compact-premium .container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 20px;
}

.specialist-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
}

.text-content {
  padding-right: 20px;
}

.section-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.2rem;
  font-weight: 700;
  color: #2a2a2a;
  margin-bottom: 15px;
  line-height: 1.3;
}

.section-description {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  color: #555;
  margin-bottom: 30px;
}

.contact-methods {
  display: grid;
  gap: 20px;
}

.contact-item {
  display: flex;
  gap: 15px;
  align-items: center;
}

.contact-icon {
  color: #c19a6b;
  font-size: 1.1rem;
  width: 24px;
  text-align: center;
}

.contact-info {
  display: flex;
  flex-direction: column;
}

.contact-label {
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 2px;
}

.contact-detail {
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: #2a2a2a;
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-detail:hover {
  color: #c19a6b;
}

.image-content {
  position: relative;
  height: 350px;
}

.specialist-image {
  height: 100%;
  background-size: cover;
  background-position: center;
  border-radius: 4px;
  position: relative;
  overflow: hidden;
}

.badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: #c19a6b;
  color: white;
  padding: 6px 15px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: 20px;
  letter-spacing: 1px;
}

/* Responsive */
@media (max-width: 992px) {
  .specialist-content {
    grid-template-columns: 1fr;
  }
  
  .text-content {
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .image-content {
    height: 300px;
  }
}

@media (max-width: 768px) {
  .travel-specialists-compact-premium {
    padding: 60px 0;
  }
  
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 480px) {
  .image-content {
    height: 250px;
  }
}

/* Premium White Footer Styles */
.premium-white-footer {
  background: #ffffff;
  color: #333333;
  padding: 60px 0 30px;
  font-family: 'Poppins', sans-serif;
  border-top: 1px solid #f0f0f0;
}

.footer-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

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

.footer-brand {
  display: flex;
  flex-direction: column;
}

.footer-logo {
  width: 180px;
  height: auto;
  margin-bottom: 20px;
  filter: brightness(0.9);
}

.footer-tagline {
  font-size: 0.9rem;
  color: #c19a6b;
  margin-bottom: 25px;
  letter-spacing: 1px;
}

.footer-socials {
  display: flex;
  gap: 15px;
}

.social-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: #f5f5f5;
  border-radius: 50%;
  color: #555555;
  transition: all 0.3s ease;
}

.social-icon:hover {
  background: #c19a6b;
  color: white;
  transform: translateY(-3px);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.links-column h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: #222222;
  margin-bottom: 20px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.links-column ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

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

.links-column a {
  color: #666666;
  text-decoration: none;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.links-column a:hover {
  color: #c19a6b;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 30px;
  border-top: 1px solid #eeeeee;
  font-size: 0.8rem;
  color: #888888;
}

.copyright {
  color: #888888;
}

.credits a {
  color: #c19a6b;
  text-decoration: none;
  transition: opacity 0.3s ease;
}

.credits a:hover {
  opacity: 0.8;
}

/* Responsive */
@media (max-width: 992px) {
  .footer-top {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-links {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .footer-links {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .premium-white-footer {
    padding: 50px 0 25px;
  }
  
  .footer-logo {
    width: 150px;
  }
}

/* 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;
}