/* GLOBAL STYLES */
html {
    scroll-behavior: smooth;
  }
  
  /* Optional: Add these for better cross-browser support and to customize scrolling */
  body {
    overflow-y: auto;
    -webkit-overflow-scrolling: touch; /* For iOS devices */
  }
  
  /* For specific scroll containers if needed */
  .scroll-container {
    scroll-behavior: smooth;
    overflow-y: auto;
  }
  
:root {
  --primary-color: #40E0D0;     /* Turquoise */
  --primary-dark: #36B9B0;      /* Darker Turquoise */
  --primary-light: #7EEAE0;     /* Lighter Turquoise */
  --secondary-color: #003366;   /* Dark Blue */
  --accent-color: #FFD700;      /* Gold */
  --dark-color: #333333;
  --light-color: #FFFFFF;       /* White */
  --gray-light: #f5f5f5;
  --gray-medium: #e0e0e0;
  --gray-dark: #757575;
  --text-color: #424242;
  --bg-color: #f9f9f9;          /* Light neutral background */
  --card-bg: #ffffff;           /* White card background */
  --card-text: #555;            /* Card text color */
  --card-title: #333;           /* Card title color */
  --heading-color: #333;        /* Heading color */
  --border-color: #ddd;         /* Border color */
  --btn-text: #ffffff;          /* Button text color */
  --shadow-light: 0 5px 15px rgba(0, 0, 0, 0.08);
  --shadow-medium: 0 8px 30px rgba(0, 0, 0, 0.12);
  --transition-slow: all 0.5s ease;
  --transition-medium: all 0.3s ease;
  --transition-fast: all 0.2s ease;

  /* Dark mode variables will be applied when .dark-mode class is added */
  --dark-bg-primary: #00264d;   /* Darker shade of #003366 */
  --dark-bg-secondary: #003366; /* Dark Blue */
  --dark-text-primary: #f0f0f0;
  --dark-text-secondary: #cccccc;
  --dark-card-bg: #001a33;      /* Even darker shade for cards */
  --dark-input-bg: #002952;
  --dark-border: #004080;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Poppins', sans-serif;
  line-height: 1.6;
  color: var(--text-color);
  overflow-x: hidden;
  font-size: 16px;
  background-color: var(--light-color);
  scroll-behavior: smooth;
}

/* Dark Mode Styles */
body.dark-mode {
  background-color: var(--dark-bg-primary);
  color: var(--dark-text-primary);
}

/* Header & Navigation Dark Mode */
body.dark-mode header {
  background-color: rgba(0, 26, 51, 0.95);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

body.dark-mode .nav-links a {
  color: var(--dark-text-primary);
}

body.dark-mode .hamburger div {
  background-color: var(--dark-text-primary);
}

/* Container backgrounds */
body.dark-mode .services,
body.dark-mode .about,
body.dark-mode .policy-content,
body.dark-mode .booking-form-section,
body.dark-mode .thank-you-section {
  background-color: var(--dark-bg-primary);
}

/* Cards & sections */
body.dark-mode .service-card,
body.dark-mode .destination-card,
body.dark-mode .card,
body.dark-mode .booking-info-card,
body.dark-mode .booking-help,
body.dark-mode .booking-form,
body.dark-mode .policy-section,
body.dark-mode .thank-you-content {
  background-color: var(--dark-card-bg);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Text colors */
body.dark-mode .section-title,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4 {
  color: var(--dark-text-primary);
}

body.dark-mode p,
body.dark-mode .stat-box p,
body.dark-mode .contact-item p,
body.dark-mode li {
  color: var(--dark-text-secondary);
}

/* Form elements */
body.dark-mode input,
body.dark-mode select,
body.dark-mode textarea {
  background-color: var(--dark-input-bg);
  border-color: var(--dark-border);
  color: var(--dark-text-primary);
}

body.dark-mode input::placeholder,
body.dark-mode textarea::placeholder {
  color: var(--dark-text-secondary);
}

/* Toggle switch specific styles */
body.dark-mode .toggle-wrapper {
  background-color: #001a33;
}

body.dark-mode .toggle-label {
  color: var(--dark-text-primary);
}

/* Footer */
body.dark-mode footer {
  background: linear-gradient(135deg, #001a33, #002952);
}

/* Other elements */
body.dark-mode .stat-box i,
body.dark-mode .contact-item i,
body.dark-mode .contact-method i {
  color: var(--primary-color);
}

body.dark-mode .counter {
  color: var(--primary-light);
}

body.dark-mode .booking-summary {
  background-color: var(--dark-bg-secondary);
}

body.dark-mode .footer-bottom {
  border-top-color: #004080;
}

/* Fix visibility issues in destinations page dark mode */
/* Override dark mode background for destinations page */
body.dark-mode .all-destinations {
    background-color: #004466; /* Lighter shade of dark turquoise */
}

body.dark-mode .destination-card {
    background-color: #005577; /* Even lighter card background */
    border-color: #006688;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure text visibility in destination cards */
body.dark-mode .card-content h3 {
    color: #ffffff; /* White for headings */
}

body.dark-mode .card-content p {
    color: #e0e0e0; /* Light grey for paragraphs */
}

/* Category buttons visibility */
body.dark-mode .category-btn {
    border: 2px solid var(--primary-color);
    color: #e0e0e0;
}

body.dark-mode .category-btn:hover, 
body.dark-mode .category-btn.active {
    background-color: var(--primary-color);
    color: #003366; /* Dark text on light background for contrast */
}

/* Section title visibility */
body.dark-mode .all-destinations .section-title {
    color: #ffffff;
}

/* Add specific dark mode styles for destination page elements */
body.dark-mode .destination-grid {
    background-color: transparent;
}

/* Fix visibility issues in booking page dark mode */
body.dark-mode .booking-form-section {
    background-color: #004466; /* Lighter shade of dark turquoise */
}

body.dark-mode .booking-form,
body.dark-mode .booking-info-card,
body.dark-mode .booking-help {
    background-color: #005577; /* Even lighter card background */
    border-color: #006688;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

/* Ensure text visibility in booking form */
body.dark-mode .booking-form-container h2 {
    color: #ffffff; /* Ensure heading is white in dark mode */
}

body.dark-mode .booking-info-card h3,
body.dark-mode .booking-help h3 {
    color: #40E0D0; /* Turquoise color for subheadings in dark mode */
}

body.dark-mode .booking-info-card li,
body.dark-mode .booking-help p,
body.dark-mode .contact-method span {
    color: #e0e0e0; /* Light gray for better readability */
}

/* Ensure form elements have good contrast */
body.dark-mode .form-group label {
    color: #ffffff; /* White labels */
}

body.dark-mode .form-error {
    color: #ff9999; /* Lighter red for errors in dark mode */
}

body.dark-mode .terms-link {
    color: #40E0D0; /* Turquoise for links */
}

/* Booking summary in dark mode */
body.dark-mode .booking-summary {
    background-color: #003855; /* Darker blue background */
}

body.dark-mode .summary-section h4 {
    color: #40E0D0; /* Turquoise color for headings */
}

body.dark-mode .summary-item {
    border-bottom-color: #004d73; /* Darker border */
}

body.dark-mode .summary-item span {
    color: #e0e0e0; /* Light gray text */
}

/* Form elements in dark mode */
body.dark-mode .form-group input,
body.dark-mode .form-group select,
body.dark-mode .form-group textarea {
    background-color: #003855;
    border-color: #004d73;
    color: #e0e0e0;
}

body.dark-mode .form-group input::placeholder,
body.dark-mode .form-group textarea::placeholder {
    color: #8a9aa4;
}

body.dark-mode .form-group input:focus,
body.dark-mode .form-group select:focus,
body.dark-mode .form-group textarea:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.15);
}

/* Step indicators in dark mode */
body.dark-mode .form-progress::before {
    background-color: #004d73;
}

body.dark-mode .step-number {
    background-color: #003855;
    color: #e0e0e0;
}

body.dark-mode .progress-step.active .step-number {
    background-color: var(--primary-color);
    color: #003366;
}

body.dark-mode .step-title {
    color: #a9bac5;
}

body.dark-mode .progress-step.active .step-title {
    color: var(--primary-color);
}

/* Form buttons in dark mode */
body.dark-mode .btn-prev {
    background-color: #003855;
    color: #e0e0e0;
}

body.dark-mode .btn-prev:hover {
    background-color: #004d73;
}

/* Terms and conditions checkbox in dark mode */
body.dark-mode .checkbox-group label {
    color: #e0e0e0;
}

/* Add a transition to ensure smooth theme switching */
.destination-card, .card-content, .card-content h3, .card-content p, .category-btn {
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Smooth transitions for changing themes */
body, 
header, 
.service-card, 
.destination-card, 
.card,
input, 
select, 
textarea,
footer {
  transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

/* Improved Dark Mode Switch */
.theme-toggle {
    display: flex;
    align-items: center;
    margin-left: 20px;
}

/* Fix toggle knob initial position and ensure proper transitions */
.toggle-wrapper {
    position: relative;
    width: 84px;
    height: 34px;
    background: linear-gradient(to right, #003366 50%, #f5f5f5 50%);
    border-radius: 17px;
    box-shadow: inset 0 1px 3px rgba(0, 0, 0, 0.2);
    cursor: pointer;
    overflow: hidden; /* Keep the knob inside the wrapper */
}

.toggle-knob {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 30px;
    height: 30px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
    z-index: 1;
}

/* Ensure proper toggle state */
body.dark-mode .toggle-knob {
    transform: translateX(50px);
}

/* Fix the toggle text to be visible with correct opacity */
.toggle-text {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: white;
    font-weight: 500;
    font-size: 0.85rem;
    transition: opacity 0.3s ease;
}

.toggle-text.dark {
    left: 8px;
    opacity: 0;
}

.toggle-text.light {
    right: 8px;
    color: #003366;
    opacity: 1;
}

body.dark-mode .toggle-text.dark {
    opacity: 1;
}

body.dark-mode .toggle-text.light {
    opacity: 0;
}

/* Hide the checkbox */
.theme-toggle input {
    display: none;
}

@media (max-width: 768px) {
    .theme-toggle {
        position: absolute;
        right: 70px;
        top: 20px;
    }
}

.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-fast);
}

a:hover {
  color: var(--primary-color);
}

img {
  max-width: 100%;
  height: auto;
}

.section-title {
  text-align: center;
  font-size: 2.5rem;
  margin-bottom: 3rem;
  position: relative;
  font-weight: 600;
}

.section-title::after {
  content: "";
  display: block;
  height: 4px;
  width: 80px;
  background: var(--primary-color);
  margin: 10px auto 0;
  border-radius: 2px;
}

/* BUTTON STYLES */
.btn-primary, .btn-small {
  display: inline-block;
  background-color: var(--primary-color);
  color: white;
  padding: 12px 30px;
  border-radius: 50px;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border: none;
  cursor: pointer;
}

.btn-primary:hover, .btn-small:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-medium);
  transform: translateY(-3px);
}

.btn-small {
  padding: 8px 20px;
  font-size: 0.9rem;
}

/* HEADER AND NAVIGATION */
header {
  position: fixed;
  width: 100%;
  z-index: 1000;
  top: 0;
  left: 0;
  transition: var(--transition-medium);
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

header.scrolled {
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 5%;
  height: 80px;
  position: relative;
}

.logo img {
  height: 50px;
  transition: var(--transition-medium);
}

.nav-links {
  display: flex;
  list-style: none;
  align-items: center;
}

.nav-links li {
  margin: 0 15px;
}

.nav-links a {
  font-weight: 500;
  position: relative;
  padding: 5px 0;
}

.nav-links a:not(.btn-small)::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background-color: var(--primary-color);
  transition: var(--transition-medium);
}

.nav-links a:not(.btn-small):hover::after {
  width: 100%;
}

.hamburger {
  display: none;
  cursor: pointer;
}

.hamburger div {
  width: 25px;
  height: 3px;
  background-color: var(--text-color);
  margin: 5px;
  transition: var(--transition-medium);
}

/* HERO SECTION */
.hero {
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  color: white;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5));
  z-index: -1;
}

.hero-content {
  max-width: 800px;
  padding: 20px;
  z-index: 1;
}

.hero-content h1 {
  font-size: 4rem;
  margin-bottom: 20px;
  font-weight: 700;
  animation: fadeInUp 1s ease-out;
  text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.hero-content p {
  font-size: 1.5rem;
  margin-bottom: 30px;
  animation: fadeInUp 1s ease-out 0.2s forwards;
  opacity: 0;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
}

.hero-content .btn-primary {
  animation: fadeInUp 1s ease-out 0.4s forwards;
  opacity: 0;
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* SERVICES SECTION */
.services {
  padding: 100px 0;
  background-color: var(--gray-light);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}

.service-card {
  background-color: var(--light-color);
  border-radius: 10px;
  padding: 30px;
  text-align: center;
  box-shadow: var(--shadow-light);
  transition: var(--transition-medium);
  border-bottom: 3px solid transparent;
  overflow: hidden; /* Ensures transforms stay contained */
  transform: translateY(0); /* Explicitly set starting position */
  will-change: transform; /* Optimizes for animations */
}

.service-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-medium);
  border-bottom: 3px solid var(--primary-color);
}

.service-card i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 20px;
  display: inline-block; /* Ensures the icon can be transformed */
  transition: transform 0.5s ease; /* Specific transition for icon */
}

.service-card:hover i {
  transform: scale(1.2) rotate(5deg); /* Enhanced icon animation */
}

.service-card h3 {
  margin-bottom: 15px;
  font-weight: 600;
  transition: color 0.3s ease; /* Smooth color transition */
}

.service-card:hover h3 {
  color: var(--primary-color); /* Change heading color on hover */
}

/* DESTINATIONS SECTION */
.destinations {
  padding: 100px 0;
}

.destinations-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 25px;
}

.destination-card {
  cursor: pointer;
  display: flex;
  flex-direction: column;
  height: auto;
  min-height: 400px;
  background-color: #ffffff;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: 0 5px 15px rgba(64, 224, 208, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid rgba(64, 224, 208, 0.2);
  margin-bottom: 30px;
}

.destination-card:hover {
  transform: translateY(-10px);
}

.card-image {
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.card-content {
  padding: 20px;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}

.card-content h3 {
  color: var(--secondary-color);
  margin-bottom: 12px;
  font-size: 1.3rem;
}

.card-content p {
  color: var(--text-color);
  margin-bottom: 0;
  font-size: 0.95rem;
  line-height: 1.6;
  flex-grow: 1;
}

.destination-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.destination-card:hover img {
  transform: scale(1.1);
}

.destination-info {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 20px;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
  color: white;
  transition: all 0.4s ease;
  transform: translateY(0); /* Ensures consistent starting position */
}

.destination-card:hover .destination-info {
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.9));
  padding-bottom: 25px; /* Slightly increase padding on hover */
}

.destination-info h3 {
  font-size: 1.4rem;
  margin-bottom: 10px;
  font-weight: 600;
  transform: translateY(0);
  transition: transform 0.3s ease;
}

.destination-info p {
  font-size: 0.9rem;
  opacity: 0.9;
  transform: translateY(0);
  transition: transform 0.3s ease 0.1s, opacity 0.3s;
}

.destination-card:hover .destination-info h3 {
  transform: translateY(-5px);
}

.destination-card:hover .destination-info p {
  opacity: 1;
}

/* Destination Cards Layout */
.destinations .cards {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    margin-bottom: 30px;
}

.destinations .card {
    flex: 0 0 calc(33.333% - 20px);
    margin-bottom: 30px;
    transition: transform 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    padding-bottom: 20px;
    cursor: pointer;
    position: relative;
}

.destinations .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 0, 0, 0.2);
}

.destinations .card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

/* Center the View All button */
.view-all-container.text-center {
    text-align: center;
    margin-top: 30px;
}

/* Responsive adjustments */
@media screen and (max-width: 992px) {
    .destinations .card {
        flex: 0 0 calc(50% - 15px);
    }
}

@media screen and (max-width: 768px) {
    .destinations .card {
        flex: 0 0 100%;
    }
    .destination-grid {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    }
    
    .destination-card {
        min-height: 400px;
    }
}

@media screen and (max-width: 480px) {
    .card-image {
        height: 180px;
    }
}

/* Destinations Page Styles */
.destinations-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/uganda-landscape.jpg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
}

.destinations-hero h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.destinations-hero p {
    font-size: 1.5rem;
    max-width: 800px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.3s forwards;
    opacity: 0;
}

.all-destinations {
    padding: 80px 0;
    background-color: #f9f9f9;
}

.all-destinations .section-title {
    text-align: center;
    margin-bottom: 50px;
    color: var(--heading-color);
}

.destination-categories {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.category-btn {
    background: none;
    border: 2px solid var(--primary-color);
    color: #333333;
    padding: 10px 20px;
    margin: 0 10px 10px;
    cursor: pointer;
    border-radius: 30px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.category-btn:hover, .category-btn.active {
    background-color: var(--primary-color);
    color: white;
}

.destination-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.destination-card {
    background-color: #ffffff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
    border: 1px solid #e0e0e0;
}

.destination-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0, 128, 255, 0.15);
    border-color: rgba(0, 128, 255, 0.2);
}

.card-content h3 {
    color: #333333;
}

.card-content p {
    color: #555555;
}

.card-image {
    height: 250px;
    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.destination-card:hover .card-image img {
    transform: scale(1.1);
}

.card-content {
    padding: 25px;
}

.card-content h3 {
    color: var(--card-title);
    margin-bottom: 10px;
    font-size: 1.4rem;
}

.card-content p {
    color: var(--card-text);
    margin-bottom: 20px;
    line-height: 1.6;
}

.btn-secondary {
    display: inline-block;
    background-color: #1e3a8a;
    color: var(--btn-text);
    padding: 10px 20px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background-color: #152c69;
    transform: translateY(-3px);
}

@media (max-width: 1024px) {
    .destination-grid {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
}

@media (max-width: 768px) {
    .destinations-hero h1 {
        font-size: 2.5rem;
    }
    
    .destinations-hero p {
        font-size: 1.2rem;
    }
    
    .destination-categories {
        flex-direction: row;
    }
    
    .category-btn {
        margin: 5px;
        padding: 8px 15px;
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .destination-grid {
        grid-template-columns: 1fr;
    }
}

/* ABOUT SECTION - STATS */
.about {
  padding: 100px 0;
  background-color: var(--gray-light);
}

.stats-container {
  display: flex;
  justify-content: space-around;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.stat-box {
  text-align: center;
  padding: 20px;
  flex-basis: 25%;
  min-width: 200px;
}

.stat-box i {
  font-size: 40px;
  color: var(--primary-color);
  margin-bottom: 15px;
}

.counter {
  font-size: 3rem;
  font-weight: 700;
  margin-bottom: 5px;
  color: var(--text-color);
}

.stat-box p {
  font-size: 1.2rem;
  color: var(--gray-dark);
}

/* TESTIMONIALS */
.testimonials {
  text-align: center;
  margin-top: 50px;
}

.testimonials h3 {
  font-size: 1.8rem;
  margin-bottom: 30px;
  font-weight: 600;
}

.testimonial-slider {
  position: relative;
  max-width: 800px;
  margin: 0 auto;
  overflow: hidden;
  height: 220px;
}

.testimonial {
  position: absolute;
  width: 100%;
  padding: 30px 20px;
  opacity: 0;
  transform: translateX(50px);
  transition: var(--transition-slow);
}

.testimonial.active {
  opacity: 1;
  transform: translateX(0);
}

.testimonial-text {
  font-size: 1.2rem;
  line-height: 1.8;
  margin-bottom: 20px;
  font-style: italic;
  position: relative;
}

.testimonial-text::before,
.testimonial-text::after {
  content: '"';
  font-size: 2rem;
  color: var(--primary-light);
  font-family: serif;
}

.testimonial-author {
  font-weight: 600;
  color: var(--primary-color);
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}

.dot {
  height: 12px;
  width: 12px;
  background-color: var(--gray-medium);
  border-radius: 50%;
  margin: 0 5px;
  cursor: pointer;
  transition: var(--transition-medium);
}

.dot.active {
  background-color: var(--primary-color);
}

/* CONTACT SECTION */
.contact {
  padding: 100px 0;
}

.contact-wrapper {
  display: flex;
  flex-wrap: wrap;
  gap: 40px;
}

.contact-info {
  flex: 1;
  min-width: 300px;
}

.contact-item {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.contact-item i {
  font-size: 24px;
  color: var(--primary-color);
  margin-right: 15px;
  width: 40px;
  text-align: center;
}

.contact-item a,
.contact-item p {
  font-size: 1.1rem;
  color: var(--text-color);
}

.contact-item a:hover {
  color: var(--primary-color);
}

.social-links {
  margin-top: 40px;
  display: flex;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  width: 40px;
  background-color: var(--gray-medium);
  color: var(--text-color);
  border-radius: 50%;
  margin-right: 15px;
  transition: var(--transition-medium);
}

.social-links a:hover {
  background-color: var(--primary-color);
  color: white;
  transform: translateY(-3px);
}

.contact-map {
  flex: 2;
  min-width: 300px;
  height: 400px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--shadow-light);
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* FOOTER */
footer {
  background-color: #263238;
  color: white;
  padding-top: 60px;
}

.footer-content {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 40px;
}

.footer-logo {
  flex: 1;
  min-width: 250px;
}

.footer-logo img {
  height: 50px;
  margin-bottom: 15px;
}

.footer-links {
  flex: 1;
  min-width: 200px;
}

.footer-links h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-links h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a:hover {
  color: var(--primary-light);
  padding-left: 5px;
}

.footer-newsletter {
  flex: 1;
  min-width: 250px;
}

.footer-newsletter h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer-newsletter h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 50px;
  height: 2px;
  background-color: var(--primary-color);
}

.footer-newsletter form {
  display: flex;
  margin-top: 20px;
}

.footer-newsletter input {
  flex-grow: 1;
  padding: 12px 15px;
  border: none;
  border-radius: 4px 0 0 4px;
  background-color: #37474f;
  color: white;
  font-family: 'Poppins', sans-serif;
}

.footer-newsletter button {
  background-color: var(--primary-color);
  color: white;
  border: none;
  padding: 0 20px;
  border-radius: 0 4px 4px 0;
  cursor: pointer;
  transition: var(--transition-medium);
}

.footer-newsletter button:hover {
  background-color: var(--primary-dark);
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid #37474f;
  font-size: 0.9rem;
}

/* RESPONSIVE STYLES */
@media (max-width: 992px) {
  .nav-links {
    position: absolute;
    right: 0;
    top: 80px;
    background-color: var(--light-color);
    width: 100%;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-150%);
    transition: var(--transition-medium);
    padding: 30px 0;
    z-index: -1;
  }

  .nav-links.active {
    transform: translateY(0);
  }

  .nav-links li {
    margin: 10px 0;
  }

  .hamburger {
    display: block;
  }

  .hamburger.active div:nth-child(1) {
    transform: rotate(-45deg) translate(-5px, 6px);
  }

  .hamburger.active div:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active div:nth-child(3) {
    transform: rotate(45deg) translate(-5px, -6px);
  }

  .hero-content h1 {
    font-size: 3rem;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2rem;
  }

  .hero-content h1 {
    font-size: 2.5rem;
  }

  .hero-content p {
    font-size: 1.2rem;
  }

  .services-grid,
  .destinations-grid {
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  }

  .contact-wrapper {
    flex-direction: column;
  }

  .contact-map {
    height: 300px;
  }
}

@media (max-width: 576px) {
  .stats-container {
    flex-direction: column;
  }

  .stat-box {
    margin-bottom: 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .hero-content p {
    font-size: 1rem;
  }

  .btn-primary {
    padding: 10px 25px;
    font-size: 0.9rem;
  }
}

/* ANIMATIONS */
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.05);
  }
  100% {
    transform: scale(1);
  }
}

.scroll-down {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  animation: float 2s infinite ease-in-out;
  cursor: pointer;
  z-index: 2;
}

.scroll-down i {
  color: white;
  font-size: 2rem;
}

/* Add hover effects */
.service-card i {
  transition: var(--transition-medium);
}

.service-card:hover i {
  transform: scale(1.2);
}

/* Additional polish */
::selection {
  background-color: var(--primary-light);
  color: white;
}

/* BOOKING PAGE STYLES */
.booking-hero {
  padding-top: 80px;
  min-height: 50vh;
  display: flex;
  align-items: center;
  background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('../images/booking-bg.jpg');
  background-size: cover;
  background-position: center;
  color: white;
}

.booking-hero-content {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}

.booking-hero-content h1 {
  font-size: 3rem;
  margin-bottom: 15px;
  animation: fadeInUp 1s ease-out;
}

.booking-hero-content p {
  font-size: 1.2rem;
  opacity: 0;
  animation: fadeInUp 1s ease-out 0.2s forwards;
}

.booking-form-section {
  padding: 80px 0;
  background-color: var(--gray-light);
}

.booking-wrapper {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.booking-sidebar {
  flex: 1;
  min-width: 280px;
}

.booking-form-container {
  flex: 2;
  min-width: 500px;
}

@media (max-width: 992px) {
  .booking-form-container {
    min-width: 100%;
  }
}

.booking-form-container h2 {
  margin-bottom: 30px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.booking-form-container h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 60px;
  height: 3px;
  background-color: var(--primary-color);
}

.booking-info-card, 
.booking-help {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  padding: 25px;
  margin-bottom: 30px;
}

.booking-info-card h3,
.booking-help h3 {
  margin-bottom: 20px;
  font-size: 1.3rem;
  color: var(--primary-color);
}

.booking-info-card ul {
  list-style: none;
}

.booking-info-card li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
}

.booking-info-card i {
  color: var(--primary-color);
  margin-right: 10px;
}

.booking-help p {
  margin-bottom: 20px;
}

.contact-method {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.contact-method i {
  color: var(--primary-color);
  margin-right: 10px;
  font-size: 1.2rem;
}

/* Form Styling */
.booking-form {
  background-color: var(--light-color);
  border-radius: 10px;
  box-shadow: var(--shadow-light);
  padding: 40px;
  position: relative;
}

.form-progress {
  display: flex;
  justify-content: space-between;
  margin-bottom: 40px;
  position: relative;
}

.form-progress::before {
  content: '';
  position: absolute;
  top: 17px;
  left: 0;
  width: 100%;
  height: 2px;
  background-color: var(--gray-medium);
  z-index: 1;
}

.progress-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
}

.step-number {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: var(--gray-medium);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 8px;
  font-weight: 600;
  transition: var(--transition-medium);
}

.step-title {
  font-size: 0.9rem;
  color: var(--gray-dark);
  transition: var(--transition-medium);
}

.progress-step.active .step-number {
  background-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

.progress-step.active .step-title {
  color: var(--primary-color);
  font-weight: 500;
}

.progress-step.completed .step-number {
  background-color: var(--primary-dark);
}

.form-step {
  display: none;
}

.form-step.active {
  display: block;
  animation: fadeIn 0.5s forwards;
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.form-row .form-group {
  flex: 1;
  min-width: 200px;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 12px 15px;
  border: 1px solid var(--gray-medium);
  border-radius: 6px;
  font-family: 'Poppins', sans-serif;
  font-size: 1rem;
  transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 3px rgba(64, 224, 208, 0.2);
}

.form-error {
  color: #f44336;
  font-size: 0.85rem;
  margin-top: 5px;
  min-height: 20px;
}

.checkbox-group {
  display: flex;
  align-items: center;
}

.checkbox-group input {
  width: auto;
  margin-right: 10px;
}

.checkbox-group label {
  margin-bottom: 0;
}

.terms-link {
  color: var(--primary-color);
  text-decoration: underline;
}

.form-buttons {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  margin-top: 40px;
}

.btn-prev {
  background-color: var(--gray-medium);
  color: var(--text-color);
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: var(--transition-medium);
}

.btn-prev:hover {
  background-color: var(--gray-dark);
  color: white;
}

.btn-next, 
.btn-submit {
  background-color: var(--primary-color);
  color: white;
  border: none;
  border-radius: 50px;
  padding: 12px 30px;
  cursor: pointer;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  transition: var(--transition-medium);
}

.btn-next:hover, 
.btn-submit:hover {
  background-color: var(--primary-dark);
  box-shadow: var(--shadow-light);
}

.booking-summary {
  background-color: var(--gray-light);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 25px;
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
}

.summary-section {
  flex: 1;
  min-width: 280px;
}

.summary-section h4 {
  margin-bottom: 15px;
  color: var(--primary-color);
  font-size: 1.1rem;
}

.summary-item {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--gray-medium);
}

.summary-item:last-child {
  border-bottom: none;
}

@media (max-width: 768px) {
  .booking-hero {
    padding-top: 70px;
    min-height: 40vh;
  }
  
  .booking-hero-content h1 {
    font-size: 2.2rem;
  }
  
  .booking-form {
    padding: 30px 20px;
  }
  
  .form-buttons {
    flex-direction: column-reverse;
  }
  
  .btn-prev, .btn-next, .btn-submit {
    width: 100%;
    text-align: center;
  }
  
  .step-title {
    display: none;
  }
}

/* Thank You Page Styles */
.thank-you-section {
    padding: 120px 0 80px;
    background-color: var(--gray-light);
    min-height: 70vh;
    display: flex;
    align-items: center;
}

.thank-you-content {
    background-color: white;
    border-radius: 10px;
    padding: 50px;
    text-align: center;
    box-shadow: var(--shadow-light);
    max-width: 800px;
    margin: 0 auto;
}

.success-icon {
    font-size: 80px;
    color: #4CAF50;
    margin-bottom: 30px;
}

.success-icon .fa-envelope-open-text {
    color: var(--primary-color);
    font-size: 80px;
}

.thank-you-content h1 {
    color: var(--secondary-color);
    margin-bottom: 20px;
}

.thank-you-content p {
    color: var(--text-color);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.booking-ref {
    background-color: var(--gray-light);
    padding: 15px;
    border-radius: 5px;
    margin: 30px 0;
    font-size: 1.2rem;
    font-weight: 500;
}

.thank-you-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

@media (max-width: 768px) {
    .thank-you-content {
        padding: 30px 20px;
    }
    
    .thank-you-buttons {
        flex-direction: column;
        gap: 10px;
    }
    
    .thank-you-buttons a {
        width: 100%;
    }
}

/* Privacy Policy Page Styles */
.page-header {
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), url('../images/privacy-bg.jpg');
    background-size: cover;
    background-position: center;
    height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    margin-top: 80px;
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 10px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.page-header p {
    font-size: 1.2rem;
    max-width: 600px;
    margin: 0 auto;
    color: white;
}

.policy-content {
    padding: 60px 0;
    background-color: var(--gray-light);
}

.policy-section {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 30px;
    box-shadow: var(--shadow-light);
}

.policy-section h2 {
    color: var(--secondary-color);
    margin-bottom: 20px;
    font-size: 1.8rem;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-color);
}

.policy-section p {
    margin-bottom: 15px;
    color: var(--text-color);
    line-height: 1.7;
}

.policy-section ul {
    margin-left: 20px;
    margin-bottom: 20px;
}

.policy-section li {
    margin-bottom: 10px;
    color: var(--text-color);
}

.policy-section a {
    color: var(--primary-color);
    text-decoration: underline;
}

.policy-section a:hover {
    color: var(--primary-dark);
}

.policy-footer {
    text-align: center;
    padding: 20px 0;
    color: var(--gray-dark);
    font-style: italic;
}

.policy-section address {
    font-style: normal;
    line-height: 1.8;
    margin-top: 15px;
}

/* Dark mode styles for privacy policy */
.dark-mode .policy-section {
    background-color: var(--dark-color);
}

.dark-mode .policy-section h2 {
    border-bottom-color: var(--primary-color);
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .page-header {
        height: 200px;
    }
    
    .page-header h1 {
        font-size: 2rem;
    }
    
    .policy-section {
        padding: 20px;
    }
    
    .policy-section h2 {
        font-size: 1.5rem;
    }
}