/* style.css */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800&display=swap');

:root {
  /* Colors */
  --primary: #619f35; /* Green */
  --primary-dark: #4b8224;
  --secondary: #f79b00; /* Orange */
  --secondary-hover: #cc8000;
  --accent-green: #619f35;
  --accent-green-hover: #4b8224;
  
  --dark-teal: #264a13; /* Dark Green for CTA */
  --dark-blue: #0f172a;
  --dark-blue-footer: #1e293b; /* Adjusted to a neutral dark slate */
  
  --text-dark: #1e293b;
  --text-light: #64748b;
  --text-white: #ffffff;
  
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  
  /* Layout */
  --container-width: 1200px;
  --border-radius-sm: 8px;
  --border-radius-md: 12px;
  --border-radius-lg: 24px;
  
  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-normal: 0.3s ease;
}

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

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-weight: 700;
  line-height: 1.2;
}

h1 {
  font-size: 3.5rem;
}

h2 {
  font-size: 2.5rem;
}

h3 {
  font-size: 1.5rem;
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-normal);
}

ul {
  list-style: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

/* Utilities */
.container {
  width: 100%;
  max-width: var(--container-width);
  margin: 0 auto;
  padding: 0 20px;
}

.text-center {
  text-align: center;
}

.text-primary {
  color: var(--primary);
}

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

.btn {
  display: inline-block;
  padding: 12px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: var(--transition-normal);
  border: none;
  text-align: center;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
}

.btn-primary:hover {
  background-color: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(14, 165, 233, 0.3);
}

.btn-secondary {
  background-color: var(--secondary);
  color: var(--text-dark);
}

.btn-secondary:hover {
  background-color: var(--secondary-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(234, 179, 8, 0.3);
}

.btn-outline {
  background-color: transparent;
  color: var(--text-white);
  border: 2px solid var(--text-white);
}

.btn-outline:hover {
  background-color: var(--text-white);
  color: var(--text-dark);
}

.btn-whatsapp {
  background-color: var(--accent-green);
  color: var(--text-white);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.btn-whatsapp:hover {
  background-color: var(--accent-green-hover);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(34, 197, 94, 0.3);
}

.btn-whatsapp-solid {
  background-color: #25D366;
  color: white !important;
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center;
  gap: 10px;
  font-weight: 600;
  transition: var(--transition-normal);
  border: none;
}

.btn-whatsapp-solid:hover {
  background-color: #128C7E;
  transform: translateY(-3px);
  box-shadow: 0 5px 15px rgba(37, 211, 102, 0.4);
}

/* Header */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  padding: 20px 0;
  z-index: 1000;
  transition: var(--transition-normal);
}

header.scrolled {
  position: fixed;
  background-color: rgba(15, 23, 42, 0.95);
  backdrop-filter: blur(10px);
  padding: 15px 0;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

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

.logo img {
  height: 50px;
}

.nav-links {
  display: flex;
  gap: 30px;
}

.nav-links a {
  color: var(--text-white);
  font-weight: 500;
  font-size: 1rem;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--primary);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 15px;
}

/* Language Dropdown Container */
.lang-dropdown-wrapper {
  position: relative;
  display: inline-block;
}

.lang-selector {
  background: rgba(255, 255, 255, 0.2);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 8px 16px;
  border-radius: 20px;
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  transition: var(--transition-normal);
}

.lang-selector:hover {
  background: rgba(255, 255, 255, 0.3);
}

.lang-dropdown-content {
  display: none;
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 10px;
  background-color: var(--dark-blue-footer);
  min-width: 180px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  border-radius: var(--border-radius-sm);
  z-index: 1000;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,0.1);
}

.lang-dropdown-content.show {
  display: block;
  animation: fadeIn 0.2s ease;
}

.lang-dropdown-content a {
  color: white;
  padding: 10px 16px;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  transition: background-color 0.2s ease;
}

.lang-dropdown-content a:hover {
  background-color: var(--primary);
  color: white;
}

.lang-dropdown-content a span {
  font-size: 0.75rem;
  text-transform: uppercase;
  background: rgba(255,255,255,0.2);
  padding: 2px 6px;
  border-radius: 4px;
  font-weight: 600;
  min-width: 25px;
  text-align: center;
}

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

/* Hide Default Google Translate UI */
.goog-te-banner-frame.skiptranslate { display: none !important; } 
body { top: 0px !important; }
#google_translate_element { display: none !important; }
.goog-tooltip { display: none !important; }
.goog-tooltip:hover { display: none !important; }
.goog-text-highlight { background-color: transparent !important; border: none !important; box-shadow: none !important; }

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero Section */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  color: var(--text-white);
  padding-top: 80px; /* Offset for header */
  overflow: hidden;
}

.hero-slider {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

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

.slide.active {
  opacity: 1;
}

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255, 255, 255, 0.2);
  backdrop-filter: blur(5px);
  color: white;
  border: 1px solid rgba(255, 255, 255, 0.3);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.slider-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  transform: translateY(-50%) scale(1.1);
}

.slider-btn.prev {
  left: 30px;
}

.slider-btn.next {
  right: 30px;
}

@media (max-width: 768px) {
  .slider-btn {
    width: 40px;
    height: 40px;
    font-size: 0.8rem;
  }
  .slider-btn.prev { left: 10px; }
  .slider-btn.next { right: 10px; }
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  padding: 0 20px;
}

.hero h1 {
  margin-bottom: 20px;
  text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.hero p {
  font-size: 1.2rem;
  margin-bottom: 30px;
  text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

/* About Us Section */
.about-section {
  background-color: var(--bg-white);
}

.about-container {
  display: flex;
  align-items: center;
  gap: 60px;
}

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

.about-content h2 {
  margin-bottom: 20px;
  font-size: 2.5rem;
}

.about-content p {
  color: var(--text-light);
  margin-bottom: 20px;
  font-size: 1.05rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

@keyframes float {
  0% { transform: translateY(0); }
  50% { transform: translateY(-12px); box-shadow: 0 10px 20px rgba(0,0,0,0.1); }
  100% { transform: translateY(0); }
}

.stat-card {
  background: var(--bg-white);
  width: 150px;
  height: 150px;
  margin: 0 auto;
  border-radius: 50%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 4px 15px rgba(0,0,0,0.08);
  transition: var(--transition-normal);
  border: 4px solid var(--primary);
  animation: float 4s ease-in-out infinite;
}

.stat-card:nth-child(2) {
  animation-delay: 1s;
}

.stat-card:nth-child(3) {
  animation-delay: 2s;
}

.stat-card:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0,0,0,0.12);
  animation-play-state: paused;
}

.stat-card h3 {
  color: var(--primary);
  font-size: 2rem;
  margin-bottom: 5px;
}

.stat-card p {
  color: var(--text-dark);
  font-size: 0.9rem;
  font-weight: 500;
  margin-bottom: 0;
}

.about-image {
  flex: 1;
  display: flex;
  justify-content: center;
}

.about-image img {
  max-width: 80%;
  filter: drop-shadow(0 10px 20px rgba(0,0,0,0.1));
}

/* Popular Tours Section */
.section-header {
  margin-bottom: 50px;
}

.section-header p {
  color: var(--text-light);
  max-width: 600px;
  margin: 10px auto 0;
}

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

.tour-card {
  background: var(--bg-white);
  border-radius: var(--border-radius-md);
  overflow: hidden;
  box-shadow: 0 4px 15px rgba(0,0,0,0.05);
  transition: var(--transition-normal);
  display: flex;
  flex-direction: column;
}

.tour-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 15px 30px rgba(0,0,0,0.1);
}

.tour-image {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.tour-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

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

.badge {
  position: absolute;
  top: 15px;
  right: 15px;
  background-color: var(--secondary);
  color: var(--text-dark);
  padding: 5px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  z-index: 2;
}

.tour-details {
  padding: 25px;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.tour-meta {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 0.9rem;
  color: var(--text-light);
}

.text-secondary {
  color: var(--secondary);
}

.tour-details h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
  color: var(--text-dark);
}

.tour-details p {
  color: var(--text-light);
  font-size: 0.95rem;
  margin-bottom: 20px;
  flex: 1;
}

.tour-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 15px;
  border-top: 1px solid #f1f5f9;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--text-dark);
}

.btn-outline-primary {
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 8px 16px;
  border-radius: 20px;
  transition: var(--transition-normal);
}

.btn-outline-primary:hover {
  background-color: var(--primary);
  color: white;
}

/* Happy Travelers Section */
.travelers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 20px;
}

.travelers-grid img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
  transition: var(--transition-normal);
  padding: 4px;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.travelers-grid img:nth-child(odd) {
  border-radius: 60px 10px 60px 10px;
}

.travelers-grid img:nth-child(even) {
  border-radius: 10px 60px 10px 60px;
}

.travelers-grid img:hover {
  transform: scale(1.03) translateY(-5px);
  box-shadow: 0 15px 25px rgba(0,0,0,0.15);
  border-radius: 20px; /* Morphs to a softer rectangle on hover */
}

/* Get In Touch Section */
.contact-container {
  display: flex;
  gap: 50px;
  align-items: center;
}

.contact-info {
  flex: 1;
}

.contact-info h2 {
  font-size: 2.5rem;
  margin-bottom: 15px;
}

.contact-info > p {
  color: var(--text-light);
  margin-bottom: 30px;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 25px;
}

.contact-item .icon {
  background-color: rgba(14, 165, 233, 0.1);
  color: var(--primary);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
}

.contact-item h4 {
  font-size: 1.1rem;
  margin-bottom: 5px;
  color: var(--text-dark);
}

.contact-item p {
  color: var(--text-light);
}

.contact-whatsapp {
  flex: 1;
}

.whatsapp-card {
  background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
  color: white;
  padding: 50px 40px;
  border-radius: 40px 10px 40px 10px;
  box-shadow: 0 15px 35px rgba(18, 140, 126, 0.3);
  text-align: center;
  position: relative;
  transition: transform 0.3s ease;
}

.whatsapp-card:hover {
  transform: translateY(-10px);
}

.wa-icon {
  background-color: white;
  color: #128C7E;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.5rem;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.whatsapp-card h3 {
  margin-bottom: 15px;
  color: white;
  font-size: 1.8rem;
}

.whatsapp-card p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 30px;
  font-size: 1.05rem;
  line-height: 1.6;
}

.whatsapp-card .btn-whatsapp {
  background-color: white;
  color: #128C7E;
  font-weight: 700;
  font-size: 1.1rem;
  padding: 15px 25px;
  border-radius: 30px;
}

.whatsapp-card .btn-whatsapp:hover {
  background-color: #f8f9fa;
  color: #075E54;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0,0,0,0.15);
}

.w-100 {
  width: 100%;
}

.mb-3 {
  margin-bottom: 15px;
}

/* Footer */
.footer {
  background-color: var(--dark-blue-footer);
  color: var(--text-white);
  padding: 80px 0 0 0;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 50px;
}

.footer-brand {
  flex: 2;
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.footer-logo img {
  height: 60px;
}

.footer-logo h3 {
  font-size: 1.5rem;
  font-weight: 700;
}

.footer-brand p {
  color: rgba(255,255,255,0.7);
  margin-bottom: 25px;
  max-width: 300px;
}

.social-links {
  display: flex;
  gap: 15px;
}

.social-links a {
  background-color: rgba(255,255,255,0.1);
  color: white;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social-links a:hover {
  background-color: var(--primary);
  transform: translateY(-3px);
}

.footer-links, .footer-contact {
  flex: 1;
}

.footer h4 {
  font-size: 1.2rem;
  margin-bottom: 20px;
  position: relative;
  padding-bottom: 10px;
}

.footer h4::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background-color: var(--primary);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer ul li a {
  color: rgba(255,255,255,0.7);
}

.footer ul li a:hover {
  color: var(--primary);
  padding-left: 5px;
}

.footer-contact ul li {
  color: rgba(255,255,255,0.7);
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--primary);
  margin-top: 5px;
}

.footer-bottom {
  text-align: center;
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.1);
  color: rgba(255,255,255,0.5);
  font-size: 0.9rem;
}

/* Tour Details Page */
.tour-hero {
  height: 50vh;
  min-height: 400px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-badge {
  display: inline-block;
  background-color: transparent;
  border: 1px solid white;
  color: white;
  padding: 5px 15px;
  font-size: 0.8rem;
  letter-spacing: 2px;
  text-transform: uppercase;
  margin-bottom: 15px;
}

.tour-page-wrapper {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 40px;
  align-items: start;
}

.tour-section {
  margin-bottom: 40px;
  background-color: var(--bg-white);
  padding: 40px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 20px rgba(0,0,0,0.03);
}

.tour-section h2 {
  color: var(--dark-blue);
  margin-bottom: 25px;
  font-size: 1.8rem;
  position: relative;
  padding-bottom: 10px;
}

.tour-section h2::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  height: 3px;
  width: 50px;
  background-color: var(--primary);
}

.tour-section p {
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

.itinerary-box {
  border: 1px solid rgba(0,0,0,0.1);
  padding: 25px;
  border-radius: var(--border-radius-md);
  background-color: #fcfcfc;
}

.itinerary-box h3 {
  color: var(--dark-blue);
  margin-bottom: 15px;
  font-size: 1.2rem;
}

.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.highlight-item {
  border: 1px solid rgba(0,0,0,0.05);
  padding: 15px;
  border-radius: var(--border-radius-sm);
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.highlight-item i {
  color: var(--primary);
  font-size: 1.1rem;
}

/* Tour Sidebar */
.tour-sidebar {
  position: sticky;
  top: 100px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.tour-sidebar-card {
  background-color: var(--bg-white);
  padding: 35px;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.price-card {
  text-align: center;
}

.price-header {
  margin-bottom: 25px;
}

.price-header h2 {
  font-size: 2.8rem;
  color: var(--dark-blue);
  margin-bottom: 5px;
}

.price-header span {
  color: var(--text-light);
  font-size: 0.9rem;
}

.btn-dark {
  background-color: #1e293b;
  color: white;
}

.btn-dark:hover {
  background-color: #0f172a;
}

.btn-outline-dark {
  background-color: transparent;
  color: #1e293b;
  border: 1px solid #1e293b;
}

.btn-outline-dark:hover {
  background-color: #f8f9fa;
}

.tour-sidebar-card h3 {
  color: var(--dark-blue);
  margin-bottom: 20px;
  font-size: 1.2rem;
}

.includes-list, .info-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.includes-list li, .info-list li {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-light);
  font-size: 0.95rem;
}

.includes-list li i {
  color: var(--primary);
}

.info-list li i {
  color: var(--dark-blue);
  width: 20px;
  text-align: center;
}

/* Round Tours Page Styles */
.horizontal-tour-card {
  display: flex;
  background: white;
  border-radius: var(--border-radius-lg);
  box-shadow: 0 5px 20px rgba(0,0,0,0.05);
  margin-bottom: 40px;
  overflow: hidden;
}

.tour-card-left {
  flex: 2;
  padding: 40px;
  border-right: 1px solid rgba(0,0,0,0.05);
}

.tour-card-right {
  flex: 1;
  padding: 40px;
  display: flex;
  flex-direction: column;
}

.duration-badge {
  display: inline-block;
  background-color: #e0f2fe;
  color: #0284c7;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.tour-card-left h3 {
  font-size: 1.8rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.tour-card-left p {
  color: var(--text-light);
  line-height: 1.7;
  margin-bottom: 25px;
}

.tour-card-left h4 {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 15px;
}

.tour-highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
  margin-bottom: 30px;
}

.tour-highlights-grid div {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--text-dark);
  font-size: 0.95rem;
}

.tour-highlights-grid div i {
  color: var(--primary);
  margin-top: 3px;
}

.inclusion-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.inclusion-chip {
  background-color: #f1f5f9;
  border: 1px solid #e2e8f0;
  color: #475569;
  padding: 6px 15px;
  border-radius: 20px;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  gap: 8px;
}

.inclusion-chip i {
  color: #64748b;
}

.tour-card-right h4 {
  font-size: 1.1rem;
  color: var(--dark-blue);
  margin-bottom: 20px;
}

.itinerary-timeline {
  list-style: none;
  flex-grow: 1;
}

.itinerary-timeline li {
  position: relative;
  padding-left: 20px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: var(--text-dark);
}

.itinerary-timeline li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 6px;
  width: 8px;
  height: 8px;
  background-color: #0ea5e9;
  border-radius: 50%;
}

.itinerary-timeline li:not(:last-child)::after {
  content: '';
  position: absolute;
  left: 3px;
  top: 18px;
  bottom: -10px;
  width: 2px;
  background-color: #e0f2fe;
}

.itinerary-timeline li strong {
  color: var(--dark-blue);
}

.pricing-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid rgba(0,0,0,0.05);
}

.pricing-section .starting-from {
  display: block;
  font-size: 0.8rem;
  color: var(--text-light);
  margin-bottom: 5px;
}

.pricing-section .price {
  font-size: 2rem;
  color: var(--dark-blue);
  font-weight: 700;
  margin-bottom: 15px;
  display: flex;
  align-items: baseline;
  gap: 5px;
}

.pricing-section .price span {
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--text-light);
}

.btn-whatsapp-solid {
  background-color: #25D366;
  color: white;
  width: 100%;
  border: none;
  display: inline-flex;
}

.btn-whatsapp-solid:hover {
  background-color: #128C7E;
  color: white;
}

/* CTA Section */
.cta-section {
  background-color: #266b6b; /* Matching the teal from design */
  color: white;
  text-align: center;
  padding: 80px 0;
}

.cta-section h2 {
  color: white;
  margin-bottom: 15px;
  font-size: 2.2rem;
}

.cta-section p {
  color: rgba(255,255,255,0.9);
  margin-bottom: 30px;
  font-size: 1.1rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-bottom: 40px;
}

.btn-yellow {
  background-color: #f79b00; /* Matching secondary color */
  color: white;
  border: none;
}

.btn-yellow:hover {
  background-color: #e69000;
  color: white;
}

.btn-outline-white {
  background-color: transparent;
  border: 1px solid white;
  color: white;
}

.btn-outline-white:hover {
  background-color: rgba(255,255,255,0.1);
  color: white;
}

.cta-contact-info {
  display: flex;
  justify-content: center;
  gap: 30px;
  font-size: 0.95rem;
}

.cta-contact-info span {
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Tour Gallery */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  border-radius: var(--border-radius-sm);
  cursor: pointer;
  transition: var(--transition-normal);
}

.gallery-grid img:hover {
  transform: scale(1.05);
  box-shadow: 0 8px 25px rgba(0,0,0,0.2);
}

/* Gallery Lightbox */
.gallery-lightbox {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.92);
  z-index: 10000;
  justify-content: center;
  align-items: center;
}

.gallery-lightbox.active {
  display: flex;
}

.gallery-lightbox img {
  max-width: 90%;
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--border-radius-md);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  animation: lightboxZoomIn 0.3s ease;
}

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

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 30px;
  color: white;
  font-size: 2.5rem;
  cursor: pointer;
  background: none;
  border: none;
  z-index: 10001;
  transition: var(--transition-normal);
  line-height: 1;
}

.lightbox-close:hover {
  color: var(--primary);
  transform: scale(1.2);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
  background: rgba(255,255,255,0.1);
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-normal);
  backdrop-filter: blur(10px);
}

.lightbox-nav:hover {
  background: rgba(255,255,255,0.25);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-counter {
  position: absolute;
  bottom: 25px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
  font-weight: 500;
}

/* Responsive */
@media (max-width: 992px) {
  .nav-links {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background-color: var(--dark-blue);
    flex-direction: column;
    padding: 100px 40px;
    transition: 0.4s ease;
    z-index: 999;
    box-shadow: -5px 0 15px rgba(0,0,0,0.2);
  }

  .nav-links.active {
    right: 0;
    display: flex;
  }

  .mobile-menu-btn {
    display: block;
    z-index: 1001;
  }

  h1 {
    font-size: 2.5rem;
  }

  h2 {
    font-size: 2rem;
  }

  .about-container {
    flex-direction: column;
    text-align: center;
  }

  .about-image img {
    max-width: 100%;
  }

  .tour-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .tour-page-wrapper {
    grid-template-columns: 1fr;
  }

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

  .horizontal-tour-card {
    flex-direction: column;
  }

  .tour-card-left {
    border-right: none;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    padding: 25px;
  }

  .tour-card-right {
    padding: 25px;
  }

  .tour-highlights-grid {
    grid-template-columns: 1fr;
  }

  .cta-buttons {
    flex-direction: column;
  }

  .cta-contact-info {
    flex-direction: column;
    gap: 15px;
    align-items: center;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .contact-container {
    flex-direction: column;
  }
}

@media (max-width: 768px) {
  .section-padding {
    padding: 60px 0;
  }

  .hero h1 {
    font-size: 2.2rem;
  }

  .hero p {
    font-size: 1rem;
  }

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

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .stat-card {
    width: 130px;
    height: 130px;
  }

  .stat-card h3 {
    font-size: 1.5rem;
  }

  .footer-content {
    flex-direction: column;
    gap: 30px;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 1.8rem;
  }

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

  .price-header h2 {
    font-size: 2.2rem;
  }

  .container {
    padding: 0 15px;
  }
}
