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

/* Loading Page Styles */
.loading-page {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #1a3d1a;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  z-index: 9999;
  transition: opacity 0.5s ease-out, visibility 0.5s ease-out;
}

.loading-page.fade-out {
  opacity: 0;
  visibility: hidden;
}

.loading-logo {
  width: 120px;
  height: 120px;
  margin-bottom: 1rem;
  animation: logoPulse 1.5s ease-in-out infinite;
}





@keyframes logoPulse {
  0%, 100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.1);
    opacity: 0.8;
  }
}

/* Hide content while loading */
.page-content {
  opacity: 0;
  transition: opacity 1s ease-in;
}

.page-content.loaded {
  opacity: 1;
}

body {
  font-family: "Source Sans Pro", sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  max-width: 100%;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

/* Luxurious Typography with Playfair Display */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  line-height: 1.3;
  letter-spacing: -0.02em;
}

/* Enhanced typography for section headers */
.section-title {
  font-family: "Playfair Display", serif;
  font-weight: 500;
  font-size: 3.5rem;
  line-height: 1.1;
  letter-spacing: -0.03em;
  color: var(--forest-green);
  margin-bottom: 32px;
}

.section-title em {
  font-style: italic;
  font-weight: 400;
  color: var(--antique-gold);
  position: relative;
}

/* Responsive section title scaling */
@media (max-width: 1024px) {
  .section-title {
    font-size: 3rem;
    margin-bottom: 28px;
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
    margin-bottom: 24px;
  }
}

/* Elegant italic emphasis for luxury feel */
.elegant-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-custom-a10, var(--clr-custom-a10-fallback));
}

/* Hero title with luxury styling */
.hero-main-title {
  font-family: "Playfair Display", serif;
  font-size: 3.8rem;
  font-weight: 500;
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.03em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.hero-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--antique-gold);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

.section-label {
  display: inline-block;
  background: var(--antique-gold);
  color: var(--charcoal);
  padding: 8px 24px;
  border-radius: 50px;
  font-size: 0.9rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 24px;
  font-family: "Source Sans Pro", sans-serif;
}

.section-description {
  font-size: 1.2rem;
  line-height: 1.7;
  color: rgba(0, 0, 0, 0.7);
  font-weight: 300;
  max-width: 700px;
}

/* Responsive section description scaling */
@media (max-width: 1024px) {
  .section-description {
    font-size: 1.1rem;
    max-width: 600px;
  }
}

@media (max-width: 768px) {
  .section-description {
    font-size: 1rem;
    max-width: 100%;
  }
}

/* Enhanced Buttons with Hero Style */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  border: 2px solid transparent;
  cursor: pointer;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--clr-custom-a20, var(--clr-custom-a20-fallback)),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--clr-custom-a20, var(--clr-custom-a20-fallback))
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn:hover::before {
  left: 100%;
}

.btn:hover::after {
  opacity: 1;
}

.btn:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(164, 134, 61, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
}

.btn:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn span,
.btn .btn-label {
  position: relative;
  z-index: 2;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Color variables for new palette */
:root {
  /* HDR oklab color palette with fallbacks */
  --clr-custom-a0: oklab(47.6% 0.023 0.055);
  --clr-custom-a10: oklab(60.9% 0.028 0.078);
  --clr-custom-a20: oklab(84.7% 0.005 0.036);
  --clr-custom-a30: oklab(68.2% 0.006 0.03);
  --clr-custom-a40: oklab(41.3% -0.031 0.024);

  /* New Color Palette */
  --charcoal: #333333;
  --antique-gold: #a4863d;
  --lavender-white: #e6e6fa;
  --forest-green: #0e300e;

  /* Legacy variables updated to use new palette */
  --dark-green: var(--forest-green);
  --highlight-yellow: var(--antique-gold);
  --primary-brown: var(--charcoal);
  --secondary-brown: var(--antique-gold);
  --light-brown: var(--lavender-white);
}

/* Button Variants - Hero Style */
.btn-primary {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  color: var(--charcoal);
}

.btn-secondary {
  background: transparent;
  color: var(--charcoal);
  border: 2px solid var(--antique-gold);
}

.btn-secondary:hover {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  border-color: transparent;
}

.btn-outline {
  background: transparent;
  color: white;
  border: 2px solid white;
}
.btn-outline:hover {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  border-color: transparent;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: transparent;
  backdrop-filter: blur(0px);
  transition: background-color 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              backdrop-filter 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
              box-shadow 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.top-bar {
  background: #a4863d;
  padding: 10px 0;
  font-size: 14px;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

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

.top-bar-left span {
  margin-right: 20px;
}

.social-icons a {
  display: inline-block;
  width: 35px;
  height: 35px;
  background: transparent;
  color: white;
  text-align: center;
  line-height: 35px;
  border-radius: 50%;
  margin-left: 10px;
  transition: all 0.3s ease;
  border: 1px solid transparent;
}

.social-icons a:hover {
  border-color: white;
  transform: translateY(0);
}

.main-header {
  padding: 15px 0;
}

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

.main-logo {
  height: 80px;
}

/* Navigation updates */
.nav-menu {
  display: flex;
  list-style: none;
  gap: 30px;
  align-items: center;
}

/* Ensure navigation is visible on desktop */
@media (min-width: 1025px) {
  .nav-menu {
    display: flex !important;
    position: static;
    background: none;
    backdrop-filter: none;
    border: none;
    box-shadow: none;
    padding: 0;
    text-align: left;
    border-radius: 0;
    flex-direction: row;
    gap: 30px;
  }
  
  .nav-menu .nav-link {
    color: white !important;
    padding: 10px 0;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-family: "Source Sans Pro", sans-serif;
    position: relative;
  }
  
  .header.scrolled .nav-menu .nav-link {
    color: var(--dark-green) !important;
  }
  
  .nav-menu .nav-link:hover,
  .header.scrolled .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }
  
  .mobile-menu-toggle {
    display: none !important;
  }
  
  /* Improve header layout on desktop */
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
}

/* Large tablet and desktop optimizations */
@media (min-width: 1025px) {
  .nav-menu {
    gap: 40px;
  }
  
  .nav-menu .nav-link {
    font-size: 1rem;
  }
  
  .main-header .container {
    padding: 0 40px;
  }
  
  .main-logo {
    height: 90px;
  }
}

.nav-link {
  text-decoration: none;
  color: white;
  font-weight: 600;
  transition: color 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  text-transform: uppercase;
  font-size: 0.9rem;
  font-family: "Source Sans Pro", sans-serif;
  letter-spacing: 1px;
  position: relative;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--highlight-yellow);
  transition: width 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* Navigation links */
.nav-link {
  color: white;
}
.header.scrolled .nav-link {
  color: var(--dark-green);
}
.nav-link:hover,
.header.scrolled .nav-link:hover {
  color: var(--highlight-yellow);
}

.header.scrolled .nav-link:hover {
  color: #026631;
}

.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

/* Hide mobile menu toggle on desktop */
@media (min-width: 769px) {
  .mobile-menu-toggle {
    display: none !important;
  }
}

/* Show mobile menu toggle on mobile and tablets (up to 1024px) */
@media (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
  }
  
  /* Ensure mobile navigation is visible on tablets */
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: none;
    padding: 120px 40px 40px;
    text-align: center;
    border-radius: 0;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-link {
    color: #333 !important;
    font-size: 1.1rem;
    padding: 18px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }
}

/* Tablet-specific navigation styles (769px - 1024px) */
@media (min-width: 769px) and (max-width: 1024px) {
  .mobile-menu-toggle {
    display: flex !important;
    position: relative;
    z-index: 1001;
  }
  
  .nav-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    border: none;
    box-shadow: none;
    padding: 120px 40px 40px;
    text-align: center;
    border-radius: 0;
    flex-direction: column;
    gap: 20px;
    z-index: 1000;
  }
  
  .nav-menu.active {
    display: flex;
  }
  
  .nav-menu .nav-link {
    color: #333 !important;
    font-size: 1.2rem;
    padding: 20px 0;
    font-weight: 600;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  }
  
  .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }
  
  /* Ensure header layout works on tablets */
  .main-header .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
  }
  
  .logo {
    flex-shrink: 0;
  }
  
  .nav {
    display: flex;
    align-items: center;
  }
}

  .mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    margin: 3px 0;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .mobile-menu-toggle span.scrolled {
    background: #333 !important;
    background-color: #333 !important;
  }

  /* Hamburger menu animation */
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
  }

  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }

  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
  }

/* Hero Section - Fully Responsive */
.hero {
  position: relative;
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: clamp(120px, 15vh, 200px) 0 clamp(60px, 8vh, 100px);
}

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

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

.hero-slide.active {
  opacity: 1;
}

/* Dramatic gradient overlay */
.hero-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.7) 0%, rgba(0, 0, 0, 0.4) 50%, rgba(0, 0, 0, 0.6) 100%);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 3;
  color: white;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.hero-content-wrapper {
  max-width: min(600px, 85vw);
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.hero-main-title {
  font-size: clamp(2rem, 6vw, 3.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin-bottom: clamp(16px, 3vh, 24px);
  letter-spacing: -0.02em;
  text-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  font-family: "Playfair Display", serif;
  word-wrap: break-word;
  hyphens: auto;
}

.hero-italic {
  font-style: italic;
  font-weight: 400;
  color: var(--clr-custom-a20, var(--clr-custom-a20-fallback));
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4);
}

/* Remove animation states - elements are visible by default */

.hero-description {
  font-size: clamp(1rem, 3vw, 1.25rem);
  line-height: 1.6;
  margin-bottom: clamp(32px, 6vh, 48px);
  color: rgba(255, 255, 255, 0.9);
  max-width: min(600px, 85vw);
  font-weight: 300;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

/* CTA Section */
.hero-cta-section {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(16px, 3vw, 32px);
  margin-bottom: clamp(24px, 4vh, 40px);
  flex-wrap: wrap;
  width: 100%;
}

.btn-hero-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: clamp(6px, 1.5vw, 8px);
  padding: clamp(14px, 3vh, 16px) clamp(24px, 4vw, 32px);
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: clamp(14px, 3vw, 16px);
  transition: all 0.3s ease;
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
  position: relative;
  overflow: hidden;
  border: 2px solid transparent;
  white-space: nowrap;
}

.btn-hero-primary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-hero-primary::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--clr-custom-a20, var(--clr-custom-a20-fallback)),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--clr-custom-a20, var(--clr-custom-a20-fallback))
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-hero-primary:hover::before {
  left: 100%;
}

.btn-hero-primary:hover::after {
  opacity: 1;
}

.btn-hero-primary:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(164, 134, 61, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
}

.btn-hero-primary:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-hero-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Divider with text */
.hero-divider-text {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 1rem;
  width: 100%;
}

.plus-symbol {
  font-size: 1.2rem;
  color: var(--antique-gold);
}

.or-text {
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  padding-bottom: 2px;
  cursor: pointer;
  transition: border-color 0.3s ease;
  text-decoration: none;
  color: rgba(255, 255, 255, 0.8);
  display: inline-block;
  padding: 8px 16px;
  border-radius: 25px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.or-text:hover {
  border-color: var(--antique-gold);
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Trust indicator */
.hero-trust-indicator {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 8px;
  width: 100%;
}

.stars {
  color: #fbbf24;
  font-size: 1.1rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.trust-text {
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.95rem;
  margin: 0;
  font-weight: 300;
}

/* Hero Responsive Design */
@media (max-width: 768px) {
  .hero {
    padding: 120px 0 60px;
    min-height: 100vh;
    align-items: center;
  }

  .hero-main-title {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }

  .hero-description {
    font-size: 1.1rem;
    margin-bottom: 36px;
    max-width: 100%;
  }

  .hero-cta-section {
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    margin-bottom: 32px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
    font-size: 1rem;
  }

  .hero-divider-text {
    align-self: center;
  }

  .hero-trust-indicator {
    align-self: center;
    flex-direction: column;
    gap: 8px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 40px;
    align-items: center;
  }

  .hero-main-title {
    font-size: 2rem;
    line-height: 1.2;
    margin-bottom: 16px;
  }

  .hero-description {
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 28px;
  }

  .hero-content-wrapper {
    max-width: 100%;
  }

  .hero-cta-section {
    margin-bottom: 24px;
  }

  .btn-hero-primary {
    padding: 16px 28px;
    font-size: 0.95rem;
  }

  .or-text {
    padding: 6px 12px;
    font-size: 0.9rem;
  }
}

@media (max-width: 375px) {
  .hero {
    padding: 100px 0 30px;
    min-height: 100vh;
  }

  .hero-main-title {
    font-size: 1.8rem;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .hero-description {
    font-size: 0.85rem;
    line-height: 1.3;
    margin-bottom: 20px;
  }

  .hero-cta-section {
    margin-bottom: 16px;
    gap: 16px;
  }

  .btn-hero-primary {
    padding: 12px 20px;
    font-size: 0.85rem;
  }

  .hero-divider-text {
    font-size: 0.8rem;
  }

  .trust-text {
    font-size: 0.8rem;
  }
}

/* Ultra-small devices and devices with small heights */
@media (max-width: 375px) and (max-height: 700px) {
  .hero {
    padding: 120px 0 15px;
    min-height: 100vh;
  }

  .hero-main-title {
    font-size: 1.4rem;
    line-height: 1.05;
    margin-bottom: 8px;
  }

  .hero-description {
    font-size: 0.75rem;
    line-height: 1.2;
    margin-bottom: 12px;
  }

  .hero-cta-section {
    margin-bottom: 10px;
    gap: 10px;
  }

  .btn-hero-primary {
    padding: 8px 16px;
    font-size: 0.75rem;
  }

  .hero-divider-text {
    font-size: 0.7rem;
  }

  .trust-text {
    font-size: 0.7rem;
  }

  .hero-content-wrapper {
    max-width: 95vw;
  }

  .or-text {
    padding: 4px 10px;
    font-size: 0.8rem;
  }

  .scroll-indicator-luxury {
    bottom: 20px;
    padding: 8px;
  }

  .scroll-mouse {
    width: 24px;
    height: 36px;
  }

  .scroll-wheel {
    width: 2px;
    height: 8px;
  }

  .scroll-arrows span {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
  }
}

/* Very small width devices */
@media (max-width: 320px) {
  .hero {
    padding: 100px 0 10px;
  }

  .hero-main-title {
    font-size: 1.3rem;
    line-height: 1.05;
    margin-bottom: 6px;
  }

  .hero-description {
    font-size: 0.7rem;
    line-height: 1.15;
    margin-bottom: 10px;
  }

  .hero-cta-section {
    margin-bottom: 8px;
    gap: 8px;
  }

  .btn-hero-primary {
    padding: 6px 14px;
    font-size: 0.7rem;
  }

  .hero-divider-text {
    font-size: 0.65rem;
  }

  .trust-text {
    font-size: 0.65rem;
  }

  .or-text {
    padding: 3px 8px;
    font-size: 0.7rem;
  }

  .scroll-indicator-luxury {
    bottom: 15px;
    padding: 6px;
  }

  .scroll-mouse {
    width: 20px;
    height: 32px;
  }

  .scroll-wheel {
    width: 2px;
    height: 6px;
  }

  .scroll-arrows span {
    width: 8px;
    height: 8px;
    border-width: 1px;
  }
}

/* Sections */
section {
  padding: 80px 0;
}

/* Section header alignments for visual variety */
.section-header {
  margin-bottom: 30px;
}

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

/* Center the description block horizontally only when header is centered */
.section-header.text-center .section-description {
  margin-left: auto;
  margin-right: auto;
}

.section-header.text-left {
  text-align: left;
}

.section-header.text-right {
  text-align: right;
}

.section-subtitle {
  font-size: 1.8rem;
  color: var(--clr-custom-a30, var(--clr-custom-a30-fallback));
  margin-bottom: 20px;
  font-weight: 300;
}

/* Feature cards and footer styling */
.feature-card h3,
.footer-section h4 {
  color: var(--clr-custom-a40, var(--clr-custom-a40-fallback));
}

/* Section backgrounds with subtle styling */
.who-we-are,
.travel-itineraries,
.destinations {
  background: var(--clr-custom-a20, var(--clr-custom-a20-fallback));
}

/* Statistics section styling */
.stats-container {
  display: flex;
  gap: 80px;
  margin-top: 60px;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  min-width: 200px;
}

.stat-number {
  font-family: "Playfair Display", serif;
  font-size: 4.5rem;
  font-weight: 600;
  color: var(--clr-custom-a40, var(--clr-custom-a40-fallback));
  line-height: 1;
  margin-bottom: 8px;
  letter-spacing: -0.02em;
}

.stat-label {
  font-size: 1.1rem;
  color: rgba(0, 0, 0, 0.6);
  font-weight: 400;
  line-height: 1.4;
}

/* Responsive statistics */
@media (max-width: 768px) {
  .stats-container {
    gap: 40px;
    justify-content: space-between;
  }

  .stat-item {
    min-width: 120px;
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.8rem;
  }

  .hero-main-title {
    font-size: 3.8rem;
  }

  .section-label {
    font-size: 0.8rem;
    padding: 6px 20px;
  }
}

/* Enhanced Mobile Design */
@media (max-width: 600px) {
  .container {
    padding: 0 20px;
  }

  .section-title {
    font-size: 2.6rem;
    line-height: 1.2;
  }

  .hero-main-title {
    font-size: 3.4rem;
    line-height: 1.1;
  }

  .newsletter-form {
    gap: 15px;
    margin-bottom: 20px;
  }

  .newsletter-cta {
    margin-top: 15px;
  }

  .newsletter-form input,
  .newsletter-form select,
  .newsletter-form button {
    padding: 16px 20px;
    font-size: 16px;
    border-radius: 50px;
  }

  .btn-hero-primary {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }

  .custom-package-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 24px;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  /* About section mobile responsiveness */
  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about-story h3,
  .about-mission h3 {
    font-size: 1.3rem;
  }

  .about-story,
  .about-mission {
    margin: 30px 0;
  }
}

@media (max-width: 480px) {
  .stats-container {
    flex-direction: column;
    gap: 40px;
    align-items: center;
  }

  .stat-item {
    min-width: auto;
    text-align: center;
  }

  .stat-number {
    font-size: 3rem;
  }

  .section-title {
    font-size: 2.4rem;
  }

  .hero-main-title {
    font-size: 3rem;
  }

  .hero-description {
    font-size: 1.1rem;
    line-height: 1.6;
  }

  .hero-cta-section {
    flex-direction: column;
    gap: 20px;
    align-items: center;
  }

  /* Mobile navigation - extra small devices */
  .mobile-menu-toggle span {
    background: white !important;
    width: 22px;
    height: 2px;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-toggle span.scrolled {
    background: #333 !important;
    width: 22px;
    height: 2px;
  }

  .nav-menu .nav-link {
    color: #333 !important;
    font-size: 1rem;
    padding: 16px 0;
    font-weight: 600;
  }

  .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }

  /* Optimize GSAP animations for mobile */
  .gsap-fade-in,
  .gsap-fade-in-left,
  .gsap-fade-in-right,
  .gsap-slide-up,
  .gsap-stagger {
    transform: translateY(20px);
  }

  .gsap-hero-title {
    transform: translateY(30px) scale(0.98);
  }

  /* Mobile-optimized sections */
  section {
    padding: 60px 0;
  }

  .hero {
    padding: 160px 0 80px;
    height: 100vh;
  }

  .who-we-are,
  .why-choose-us,
  .travel-itineraries,
  .testimonials {
    padding: 70px 0;
  }

  /* Mobile button optimizations */
  .btn {
    padding: 14px 24px;
    font-size: 15px;
  }

  .btn-destination {
    padding: 12px 20px;
    font-size: 14px;
  }

  /* Mobile itinerary cards */
  .itineraries-carousel {
    margin: 0 -20px;
    padding: 10px 20px;
    gap: 15px;
  }

  .itinerary-card {
    min-width: 260px;
    height: 400px;
  }

  .itinerary-card h3 {
    font-size: 1.4rem;
  }

  .safari-header h3 {
    font-size: 1.3rem;
  }

  /* Additional mobile optimization for About section */
  .about-story,
  .about-mission {
    margin: 25px 0;
  }

  .about-story h3,
  .about-mission h3 {
    font-size: 1.2rem;
  }

  .about-story p,
  .about-mission p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

/* Who We Are Section */
.who-we-are {
  background: #f8f9fa;
  overflow: visible;
  max-height: none;
  height: auto;
  min-height: auto;
}

.who-we-are * {
  overflow: visible !important;
}

.who-we-are .image-placeholder {
  overflow: hidden !important;
}

.content-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  height: auto;
  min-height: auto;
  overflow: visible;
}

.image-content .image-placeholder {
  width: 100%;
  height: 450px;
  background: url("/images/about1.jpeg") center / cover;
  border-radius: 20px;
  box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.image-content .image-placeholder::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, rgba(44, 85, 48, 0.1) 0%, rgba(26, 61, 31, 0.1) 100%);
  z-index: 1;
}

.image-content .image-placeholder:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
}

/* Enhanced About Section Content */
.about-story,
.about-mission {
  margin: 30px 0;
}

.about-story h3,
.about-mission h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--forest-green);
  margin-bottom: 15px;
  line-height: 1.2;
}

.about-story h3 em,
.about-mission h3 em {
  color: var(--antique-gold);
  font-style: italic;
}

.about-story p,
.about-mission p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(0, 0, 0, 0.7);
  margin-bottom: 25px;
}

/* About CTA Button */
.about-cta {
  margin-top: 40px;
}

.about-cta .btn-hero-primary {
  margin-top: 20px;
}

/* Why Choose Us Section */
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-top: 60px;
}

.feature-card {
  text-align: left;
  padding: 0;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  transition: none;
}

.feature-card:hover {
  transform: none;
}

/* Feature icon circle and icon sizing */
.feature-icon {
  width: 70px;
  height: 70px;
  min-width: 70px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  position: relative;
  z-index: 1;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2), inset 0 1px 3px rgba(255, 255, 255, 0.2);
}
.feature-icon i {
  font-size: 2.2rem;
  color: var(--highlight-yellow);
  width: 1em;
  height: 1em;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}
@media (max-width: 600px) {
  .feature-icon {
    width: 54px;
    height: 54px;
    margin-bottom: 18px;
  }
  .feature-icon i {
    font-size: 1.6rem;
  }
}
/* Keep animated border as before */

.feature-card h3 {
  font-size: 1.5rem;
  margin-bottom: 15px;
  color: #333;
}

.feature-card p {
  color: #666;
  line-height: 1.6;
}

/* Responsible Travel Section */
.responsible-travel {
  position: relative;
  overflow: hidden;
  color: white;
  padding: 120px 0;
}

.responsible-bg-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url(images/bg-image.jpg);
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
  z-index: 1;
}

/* Responsible Travel Section - Darker Overlay */
.responsible-bg-image::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.7);
}

.responsible-travel .container {
  position: relative;
  z-index: 2;
}

.responsible-flex {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 48px;
}
.responsible-content {
  flex: 1 1 0;
  min-width: 0;
}
.responsible-logo-large-wrapper {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
}
.responsible-logo-large-animated {
  height: 180px;
  width: auto;
  max-width: 320px;
  animation: logoPulse 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@media (max-width: 900px) {
  .responsible-logo-large-animated {
    height: 120px;
    max-width: 180px;
  }
  .responsible-flex {
    gap: 24px;
  }
}
@media (max-width: 700px) {
  .responsible-flex {
    flex-direction: column !important;
    gap: 30px !important;
  }
  .responsible-content {
    width: 100% !important;
    min-width: 0 !important;
  }
  .responsible-logo-large-wrapper {
    width: 100% !important;
    min-width: 0 !important;
    text-align: center;
  }
  .responsible-content form,
  .responsible-content form[style] {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  .responsible-content form input,
  .responsible-content form select,
  .responsible-content form textarea,
  .responsible-content form button {
    min-width: 0 !important;
    width: 100% !important;
    box-sizing: border-box;
  }
}

.responsible-travel .section-title {
  color: white;
  font-size: 2.3rem;
  line-height: 1.2;
  margin-bottom: 30px;
  font-family: "Rufina", serif;
}

.responsible-travel .divider {
  width: 100px;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.5);
  margin-bottom: 30px;
}

.responsible-travel p {
  font-size: 1.1rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  max-width: 700px;
}

/* Destinations Accordion Section */
.destinations {
  background: #f0f0f0;
  padding: 100px 0;
}

.destination-accordion {
  display: flex;
  gap: 10px;
  height: 500px;
  position: relative;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.destination-accordion.transitioning {
  pointer-events: none;
}

.destination-accordion-card {
  flex: 0 0 80px;
  border-radius: 25px; /* Nicely curved */
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: flex 1.2s cubic-bezier(0.25, 1, 0.5, 1);
  color: white;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  touch-action: pan-y;
}

.destination-accordion-card.active {
  flex: 1 1 500px;
}

.card-background {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.9s ease-out, filter 0.9s ease-out;
}

.destination-accordion-card:hover .card-background {
  transform: scale(1.05);
}

.destination-accordion-card:not(.active) .card-background {
  filter: brightness(0.85);
  transform: scale(1);
}

.destination-accordion-card.active .card-background {
  filter: brightness(1);
  transform: scale(1.05);
}

.card-label {
  position: absolute;
  left: 30px;
  bottom: 25px; /* Positioned at the bottom */
  transform: rotate(-90deg);
  transform-origin: left bottom;
  white-space: nowrap;
  font-family: "Rufina", serif;
  font-size: 1.2rem;
  font-weight: 700;
  text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5);
  transition: opacity 0.3s ease;
}

/* Accordion and cards */
.destination-accordion-card {
  background: var(--dark-green);
}
.card-label {
  color: #fff !important;
}

.destination-accordion-card.active .card-label {
  opacity: 0;
}

.card-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 10%, rgba(0, 0, 0, 0) 90%); /* Better gradient */
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 1s ease 0.4s, transform 1s ease 0.4s, filter 0.8s ease;
  filter: blur(0px);
  height: auto;
  min-height: 180px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.destination-accordion-card.active .card-content {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0px);
  pointer-events: auto;
}

.destination-accordion-card.active .card-content .btn {
  pointer-events: auto !important;
}

.destination-accordion-card .card-content {
  transition: opacity 0.8s ease, transform 0.8s ease, filter 0.8s ease;
}

@media (min-width: 769px) {
  .destination-accordion-card:not(.active) .card-content,
  .destination-accordion-card.closing .card-content {
    opacity: 0;
    transform: translateY(40px);
    filter: blur(3px);
  }
}

@media (max-width: 768px) {
  .destination-accordion-card:not(.active) .card-content,
  .destination-accordion-card.closing .card-content {
    opacity: 0;
    transform: translateY(20px);
    filter: blur(2px);
    transition: opacity 0.5s ease, transform 0.5s ease, filter 0.5s ease;
  }
}

.destination-accordion-card.closing {
  transition: flex 1.2s cubic-bezier(0.25, 1, 0.5, 1);
}

.card-content h4 {
  font-size: 2.2rem;
  font-family: "Playfair Display", serif;
  font-weight: 600;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}

.card-content p {
  margin-bottom: 24px;
  max-width: 450px;
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1rem;
  line-height: 1.6;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.9);
}

/* Remove shiny effects from accordion buttons - Desktop */
.destination-accordion-card .card-content .btn {
  background: var(--antique-gold) !important;
  color: var(--charcoal) !important;
  border: 2px solid var(--antique-gold) !important;
  box-shadow: 0 4px 12px rgba(164, 134, 61, 0.2) !important;
  transition: all 0.3s ease !important;
  min-height: 44px; /* Better touch target for mobile */
  display: inline-flex !important;
  align-items: center !important;
  justify-content: center !important;
  text-decoration: none !important;
  font-weight: 600 !important;
  border-radius: 25px !important;
  font-family: "Source Sans Pro", sans-serif !important;
  cursor: pointer !important;
  position: relative !important;
  overflow: hidden !important;
  padding: 12px 24px !important;
  font-size: 14px !important;
  pointer-events: auto !important;
  z-index: 10 !important;
}

.destination-accordion-card .card-content .btn::before,
.destination-accordion-card .card-content .btn::after {
  display: none !important; /* Remove shiny effects */
}

.destination-accordion-card .card-content .btn:hover {
  background: #d4af37 !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 6px 16px rgba(164, 134, 61, 0.3) !important;
}

.destination-accordion-card .card-content .btn:active {
  transform: translateY(0) !important;
  box-shadow: 0 2px 8px rgba(164, 134, 61, 0.2) !important;
}

.destination-accordion-card .card-content .btn .btn-arrow {
  transition: transform 0.3s ease !important;
}

.destination-accordion-card .card-content .btn:hover .btn-arrow {
  transform: translateX(3px) !important;
}

/* Position-based expansion logic */
.destination-accordion-card[data-expand-direction="left"].active .card-content {
  text-align: right;
  left: 0;
  right: 0;
  padding: 40px;
}

.destination-accordion-card[data-expand-direction="left"] .card-content p {
  margin-left: auto;
}

@media (max-width: 992px) {
  .destination-accordion {
    height: 400px;
  }
  .destination-accordion-card {
    flex: 0 0 60px;
  }
}

@media (max-width: 768px) {
  .destination-accordion {
    flex-direction: column;
    height: auto;
    gap: 12px;
    padding: 10px 0;
    overflow: visible;
  }
  .destination-accordion-card {
    flex: 0 0 70px;
    /* Avoid animating border-radius to prevent circular morph */
    transition: flex 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1),
                transform 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    border-radius: 40px; /* pill-like on collapsed state */
    will-change: flex, transform;
    transform: translateZ(0);
    cursor: pointer;
    position: relative;
    overflow: hidden;
  }
  .destination-accordion-card.active {
    flex: 0 0 280px;
    margin: 8px 0;
    border-radius: 24px; /* softer when expanded */
  }
  .card-label {
    transform: none;
    writing-mode: horizontal-tb;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.2rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    bottom: auto;
    
    z-index: 5;
    pointer-events: none;
  }
  .destination-accordion-card.active .card-label {
    opacity: 0;
    transition: opacity 0.4s ease;
  }
  .card-content h4 {
    font-size: 1.6rem;
    margin-bottom: 12px;
  }
  .card-content p {
    font-size: 1rem;
    margin-bottom: 18px;
    line-height: 1.5;
  }
  .card-content .btn {
    padding: 8px 20px;
    font-size: 0.9rem;
  }
  
  /* Enhanced mobile button styles */
  .destination-accordion-card .card-content .btn {
    background: var(--antique-gold) !important;
    color: var(--charcoal) !important;
    border: 2px solid var(--antique-gold) !important;
    box-shadow: 0 4px 12px rgba(164, 134, 61, 0.2) !important;
    transition: all 0.3s ease !important;
    min-height: 48px;
    display: inline-flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-decoration: none !important;
    font-weight: 400 !important;
    border-radius: 25px !important;
    font-family: "Source Sans Pro", sans-serif !important;
    cursor: pointer !important;
    position: relative !important;
    overflow: hidden !important;
    pointer-events: auto !important;
    z-index: 10 !important;
  }
  
  .destination-accordion-card .card-content .btn::before,
  .destination-accordion-card .card-content .btn::after {
    display: none !important;
  }
  
  .destination-accordion-card .card-content .btn:hover {
    background: #d4af37 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 6px 16px rgba(164, 134, 61, 0.3) !important;
  }
  
  .destination-accordion-card .card-content .btn:active {
    transform: translateY(0) !important;
    box-shadow: 0 2px 8px rgba(164, 134, 61, 0.2) !important;
  }
  
  .destination-accordion-card .card-content .btn .btn-arrow {
    transition: transform 0.3s ease !important;
  }
  
  .destination-accordion-card .card-content .btn:hover .btn-arrow {
    transform: translateX(3px) !important;
  }
  
  /* Ensure proper touch behavior */
  .destination-accordion-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Make card content properly interactive */
  .destination-accordion-card .card-content {
    pointer-events: auto;
  }
  
  .destination-accordion-card .card-content .btn {
    pointer-events: auto !important;
  }
  
  /* Add visual feedback for touches */
  .destination-accordion-card:active {
    transform: scale(0.98);
  }
  
  /* Ensure smooth transitions on mobile */
  .destination-accordion-card,
  .destination-accordion-card * {
    transition: all 0.6s cubic-bezier(0.25, 1, 0.5, 1);
  }
  
  /* Prevent any unwanted behaviors */
  .destination-accordion-card {
    -webkit-touch-callout: none;
    -webkit-tap-highlight-color: transparent;
  }
}

@media (max-width: 768px) {
  .destination-accordion-card:not(.active) .card-background::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4) 40%, rgba(0, 0, 0, 0.6) 100%);
    border-radius: inherit; /* follow pill shape */
    z-index: 2;
    pointer-events: none;
    transition: opacity 0.6s ease;
  }

  /* Ensure image background follows the card radius on mobile */
  .destination-accordion-card .card-background {
    border-radius: inherit;
  }

  /* Ensure collapsed cards keep the pill shape explicitly */
  .destination-accordion-card:not(.active) {
    border-radius: 40px;
    overflow: hidden;
  }

  .destination-accordion-card.active .card-content {
    padding: 30px 20px;
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s, filter 0.6s ease 0.2s;
  }
  .destination-accordion-card:not(.active) .card-label {
    color: #fff;
    
    z-index: 3;
  }
  
  /* Improved mobile touch targets */
  .destination-accordion-card .card-content .btn {
    min-height: 48px !important; /* Larger touch target for mobile */
    padding: 12px 24px !important;
    font-size: 16px !important; /* Prevent zoom on iOS */
    margin-top: 8px !important;
    width: auto !important;
    min-width: 140px !important;
  }
  
  /* Add some spacing around buttons to prevent accidental clicks */
  .destination-accordion-card .card-content {
    padding-bottom: 40px !important;
  }
  
  /* Ensure buttons are properly spaced from other content */
  .destination-accordion-card .card-content p {
    margin-bottom: 20px !important;
  }
  
  /* Prevent text selection on card clicks */
  .destination-accordion-card {
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Ensure buttons are clickable and don't trigger card toggle */
  .destination-accordion-card .btn {
    pointer-events: auto !important;
    z-index: 10 !important;
    position: relative !important;
  }
  
  /* Prevent card content from interfering with button clicks */
  .destination-accordion-card .card-content {
    pointer-events: auto;
  }
  
  .destination-accordion-card .card-content .btn {
    pointer-events: auto !important;
  }
  
  /* Add visual feedback for card clicks */
  .destination-accordion-card:active {
    transform: scale(0.98);
  }
  
  /* Ensure proper touch behavior */
  .destination-accordion-card {
    touch-action: pan-y;
  }
  
  /* Allow scrolling on the accordion container */
  .destination-accordion {
    touch-action: pan-y;
    overflow: visible;
  }
  
  /* Prevent any unwanted text selection or highlighting */
  .destination-accordion-card * {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
  }
  
  /* Allow text selection only on buttons */
  .destination-accordion-card .btn {
    -webkit-user-select: text;
    -moz-user-select: text;
    -ms-user-select: text;
    user-select: text;
  }
}

/* Responsive styles for destination accordion */
@media (min-width: 769px) and (max-width: 1024px) {
  .destination-accordion {
    gap: 25px;
    padding: 0 30px;
  }

  .destination-accordion-card {
    min-height: 350px;
  }

  .destination-accordion-card .card-content {
    padding: 30px 25px;
  }

  .destination-accordion-card .card-content h4 {
    font-size: 1.5rem;
    margin-bottom: 18px;
  }

  .destination-accordion-card .card-content p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .destination-accordion-card .btn {
    padding: 14px 24px;
    font-size: 15px;
  }
}

@media (max-width: 768px) {
  .destination-accordion {
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
    height: auto;
    min-height: 100vh;
    justify-content: center;
    align-items: center;
    margin: 0 auto;
    max-width: 450px;
  }

  .destination-accordion-card {
    flex: 0 0 auto;
    min-height: 80px;
    max-height: 80px;
    border-radius: 15px;
    transition: max-height 0.6s cubic-bezier(0.25, 1, 0.5, 1), min-height 0.6s cubic-bezier(0.25, 1, 0.5, 1);
    width: 100%;
    max-width: 400px;
  }

  .destination-accordion-card.active {
    flex: 0 0 auto;
    min-height: 300px;
    max-height: 300px;
    border-radius: 15px;
    width: 100%;
    max-width: 400px;
  }

  .destination-accordion-card .card-content {
    padding: 25px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8) 0%, rgba(0, 0, 0, 0.6) 50%, rgba(0, 0, 0, 0.3) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    min-height: 100%;
    box-sizing: border-box;
  }

  .destination-accordion-card .card-content h4 {
    font-size: 1.6rem;
    margin-bottom: 15px;
    font-weight: 600;
  }

  .destination-accordion-card .card-content p {
    font-size: 1rem;
    line-height: 1.3;
    margin-bottom: 18px;
  }

  .destination-accordion-card .btn {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    min-height: 44px;
  }

  /* Ensure proper touch behavior on mobile */
  .destination-accordion-card {
    touch-action: manipulation;
    -webkit-tap-highlight-color: transparent;
  }

  /* Improve mobile card label positioning */
  .destination-accordion-card .card-label {
    left: 50%;
    bottom: 25px;
    transform: translateX(-50%);
    font-size: 1.3rem;
    font-weight: 300;
    text-align: center;
    
    white-space: nowrap;
  }

  /* Ensure content is visible when card is active */
  .destination-accordion-card.active .card-content {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
    text-align: center;
  }

  /* Center text content on mobile */
  .destination-accordion-card .card-content h4 {
    text-align: center;
    margin-bottom: 15px;
  }

  .destination-accordion-card .card-content p {
    text-align: center;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 20px;
    max-width: 250px;
  }

  .destination-accordion-card .card-content .btn {
    margin: 0 auto;
    display: block;
    width: fit-content;
  }

  /* Lighter overlay for active cards on mobile */
  .destination-accordion-card.active .card-content {
    background: linear-gradient(to top, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.7) 30%, rgba(0, 0, 0, 0.4) 70%, rgba(0, 0, 0, 0.1) 100%);
  }
}

/* Travel Itineraries Section */
.travel-itineraries {
  background: #f8f9fa;
  padding: 60px 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  box-sizing: border-box;
}

.travel-itineraries .section-header {
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  text-align: left;
  margin-bottom: 40px;
}

/* Enhanced Section Header */
.section-header-enhanced {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 40px;
  gap: 40px;
}

.section-intro {
  flex: 0 0 auto;
}

.section-intro .section-title {
  margin-bottom: 0;
  line-height: 1.2;
}

.section-description-wrapper {
  flex: 1;
  max-width: 500px;
}

.section-description-wrapper .section-description {
  margin-bottom: 15px;
  line-height: 1.7;
  color: #666;
}

.section-note {
  font-style: italic;
  color: #026631;
  font-weight: 600;
  margin: 0;
}

@media (max-width: 768px) {
  .section-header-enhanced {
    flex-direction: column;
    gap: 20px;
    margin-bottom: 50px;
  }

  .section-description-wrapper {
    max-width: 100%;
  }
}

/* Tablet optimizations for section header */
@media (min-width: 769px) and (max-width: 1024px) {
  .section-header-enhanced {
    flex-direction: column;
    gap: 30px;
    margin-bottom: 50px;
    text-align: center;
  }

  .section-description-wrapper {
    max-width: 700px;
    margin: 0 auto;
  }

  .section-description-wrapper .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
  }

  .section-note {
    font-size: 1rem;
  }
}

.itineraries-wrapper {
  position: relative;
  overflow: visible;
}
.carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  width: 100%;
  display: flex;
  justify-content: space-between;
  z-index: 10;
  pointer-events: none;
  transform: translateY(-50%);
}

/* Responsive carousel controls */
@media (max-width: 1024px) {
  .carousel-controls {
    padding: 0 20px;
  }
  
  .carousel-btn {
    width: 45px;
    height: 45px;
    font-size: 1.1rem;
  }
}
.carousel-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.9);
  border: none;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2em;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  cursor: pointer;
  transition: background 0.2s;
}
.carousel-btn:hover {
  background: #eee;
}

.itineraries-carousel {
  display: flex;
  gap: 30px;
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
  scrollbar-width: none; /* Hide scrollbar for Firefox */
  scroll-snap-type: x mandatory;
  padding: 10px 0;
  margin-bottom: 30px;
}

/* Hide scrollbar for Chrome, Safari and Opera */
.itineraries-carousel::-webkit-scrollbar {
  display: none;
}

.itinerary-card {
  position: relative;
  height: 500px;
  min-width: 350px;
  flex: 0 0 auto;
  border-radius: 15px;
  overflow: hidden;
  color: white;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
  scroll-snap-align: center;
}

/* Mobile optimizations for itineraries */
@media (max-width: 768px) {
  .itineraries-carousel {
    margin: 0 -20px;
    padding: 10px 20px;
    width: calc(100% + 40px);
  }

  .itinerary-card {
    min-width: 280px;
    height: 450px;
  }

  .travel-itineraries .carousel-controls {
    display: none;
  }
}

/* Tablet optimizations for itineraries */
@media (min-width: 769px) and (max-width: 1024px) {
  .itineraries-carousel {
    margin: 0 -30px;
    padding: 15px 30px;
    width: calc(100% + 60px);
    gap: 25px;
  }

  .itinerary-card {
    min-width: 320px;
    height: 480px;
  }

  .travel-itineraries .carousel-controls {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .travel-itineraries .carousel-btn {
    opacity: 1 !important;
    visibility: visible !important;
    width: 45px;
    height: 45px;
  }
  
  .travel-itineraries .carousel-btn i {
    font-size: 1.1rem;
  }

  /* Optimize section header for tablets */
  .section-header-enhanced {
    text-align: center;
    margin-bottom: 40px;
  }

  .section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
  }

  .section-description {
    font-size: 1.1rem;
    line-height: 1.7;
    max-width: 800px;
    margin: 0 auto 15px;
  }

  .section-note {
    font-size: 1rem;
    color: var(--antique-gold);
  }

  /* Optimize card content for tablets */
  .itinerary-content-wrapper {
    padding: 30px;
  }

  .safari-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
  }

  .safari-description p {
    font-size: 1rem;
    line-height: 1.6;
  }

  .itinerary-card h3 {
    font-size: 1.7rem;
  }

  .itinerary-card p {
    font-size: 1rem;
  }

  /* Ensure proper spacing and layout on tablets */
  .travel-itineraries {
    padding: 80px 0;
  }

  .travel-itineraries .container {
    padding: 0 30px;
  }

  /* Optimize card spacing and shadows for tablets */
  .itinerary-card {
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
  }

  .itinerary-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.18);
  }

  /* Ensure badges and tags are properly sized for tablets */
  .itinerary-country-tag {
    font-size: 0.85rem;
    padding: 6px 18px;
  }

  .safari-badge {
    font-size: 0.7rem;
    padding: 7px 14px;
  }
}

/* Desktop carousel controls visibility */
@media (min-width: 1025px) {
  .travel-itineraries .carousel-controls {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .travel-itineraries .carousel-btn {
    opacity: 1 !important;
    visibility: visible !important;
  }
  
  .travel-itineraries .carousel-btn.disabled {
    opacity: 0.5 !important;
    cursor: not-allowed !important;
  }
}

.itinerary-pagination {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 30px;
}

.pagination-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #ddd;
  transition: all 0.3s ease;
}

.pagination-dot.active {
  background: #026631;
  width: 24px;
  border-radius: 4px;
}

.itinerary-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.itinerary-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 20%, rgba(0, 0, 0, 0.1) 60%);
  z-index: 1;
}

.itinerary-bg-image {
  position: absolute;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.itinerary-card:hover .itinerary-bg-image {
  transform: scale(1.05);
}

.itinerary-content-wrapper {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 25px;
  z-index: 2;
}

.itinerary-country-tag {
  position: absolute;
  top: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  padding: 5px 15px;
  border-radius: 20px;
  font-size: 0.9rem;
  font-weight: 600;
  z-index: 2;
}

.itinerary-type {
  display: block;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.8rem;
  font-weight: 600;
  margin-bottom: 15px;
}

.itinerary-card h3 {
  font-size: 1.8rem;
  margin-bottom: 10px;
  line-height: 1.1;
  color: white;
}

.itinerary-details {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 15px;
  font-size: 0.9rem;
  color: #eee;
}

.itinerary-details .separator {
  height: 15px;
  width: 1px;
  background-color: #777;
}

.itinerary-card p {
  color: #ccc;
  line-height: 1.6;
}

/* Enhanced Safari Card Styles */
.safari-card-enhanced {
  position: relative;
}

.safari-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(2, 102, 49, 0.9);
  color: white;
  padding: 6px 12px;
  border-radius: 20px;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  z-index: 2;
  backdrop-filter: blur(5px);
}

.safari-header {
  margin-bottom: 20px;
}

.safari-header h3 {
  font-size: 1.6rem;
  margin-bottom: 12px;
  text-transform: capitalize;
  color: white;
  font-weight: 700;
}

.safari-duration {
  display: flex;
  align-items: center;
  gap: 8px;
  color: #e0e0e0;
  font-size: 0.9rem;
  font-weight: 500;
}

.safari-duration i {
  color: #fff;
  background: transparent;
  padding: 0;
  border-radius: 0;
  font-size: 0.95rem;
  width: auto;
  height: auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: none;
  border: none;
}

.safari-description {
  margin-top: 15px;
}

.safari-description p {
  color: #d0d0d0;
  line-height: 1.6;
  font-size: 0.95rem;
  margin: 0;
}

/* Remove old styles that are no longer needed */
.safari-card-enhanced .itinerary-type {
  display: none;
}

.safari-card-enhanced .itinerary-details {
  display: none;
}

/* Custom Package CTA Section */
.custom-package-cta {
  background: none;
  padding: 30px 0;
  position: relative;
  overflow: hidden;
}

.custom-package-cta::before {
  content: none;
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: none;
  opacity: 0.05;
  z-index: 1;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
}

.testimonials .testimonials-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 24px auto 0;
}

.testimonials .testimonial {
  background: transparent;
  border: 1px solid #eaeaea;
  border-radius: 12px;
  padding: 24px;
}

.testimonials .testimonial .hero-description {
  margin: 0 0 12px 0;
  color: #444;
}

.testimonials .testimonial-author {
  font-weight: 600;
  color: #333;
}

@media (max-width: 992px) {
  .testimonials .testimonials-list {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 600px) {
  .testimonials .testimonials-list {
    grid-template-columns: 1fr;
  }
}

/* Enhanced Testimonials Section with horizontal scrolling and premium styling */
.testimonials {
  padding: 40px 0;
  background: linear-gradient(135deg, #fafafa 0%, #f5f5f5 100%);
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23000000' fill-opacity='0.02'%3E%3Ccircle cx='30' cy='30' r='1'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E")
    repeat;
  pointer-events: none;
}

.testimonials-carousel-wrapper {
  position: relative;
  max-width: 1200px;
  margin: 30px auto 0;
  padding: 0 20px;
}
/* Edge fade masks */
.testimonials-carousel-wrapper::before,
.testimonials-carousel-wrapper::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 80px;
  pointer-events: none;
  z-index: 5;
}
.testimonials-carousel-wrapper::before {
  left: 0;
  background: linear-gradient(90deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}
.testimonials-carousel-wrapper::after {
  right: 0;
  background: linear-gradient(270deg, #f5f5f5 0%, rgba(245, 245, 245, 0) 100%);
}

.testimonials-carousel-controls {
  display: none; /* Hide navigation buttons for automatic carousel */
}

.testimonial-nav-btn {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.95);
  border: 1px solid rgba(0, 0, 0, 0.1);
  color: #333;
  font-size: 18px;
  cursor: pointer;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: all;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(10px);
}

.testimonial-nav-btn:hover {
  background: rgba(255, 255, 255, 1);
  transform: scale(1.05);
  box-shadow: 0 6px 25px rgba(0, 0, 0, 0.15);
}

.testimonial-nav-btn:active {
  transform: scale(0.95);
}

.testimonial-nav-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  transform: none;
}

.testimonials-carousel {
  display: flex;
  gap: 24px;
  overflow-x: auto;
  scroll-behavior: smooth;
  padding: 20px 0 40px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.testimonials-carousel::-webkit-scrollbar {
  display: none;
}

.testimonial.premium-testimonial {
  min-width: 380px;
  max-width: 380px;
  background: linear-gradient(145deg, #ffffff 0%, #fafafa 100%);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.testimonial.premium-testimonial::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--dark-green), var(--highlight-yellow), var(--dark-green));
  opacity: 0;
  transition: opacity 0.3s ease;
}

.testimonial.premium-testimonial:hover {
  transform: none;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08);
}

.testimonial.premium-testimonial:hover::before {
  opacity: 0;
}

.testimonial-content {
  display: flex;
  flex-direction: column;
  height: 100%;
}

.quote-icon {
  color: var(--dark-green);
  font-size: 24px;
  margin-bottom: 16px;
  opacity: 0.7;
}

.testimonial-text {
  font-size: 16px;
  line-height: 1.6;
  color: #444;
  margin: 0 0 20px 0;
  flex-grow: 1;
  font-style: italic;
}

.testimonial-rating {
  margin-bottom: 20px;
}

.testimonial-rating .stars {
  color: #ffd700;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-author-info {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: auto;
}

.author-avatar {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  overflow: hidden;
  border: 2px solid #f0f0f0;
}

.author-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* Google-style letter avatars */
.avatar-initial {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font: 500 18px / 1 "Roboto", Arial, sans-serif;
  color: #fff;
  user-select: none;
  background: linear-gradient(135deg, var(--dark-green) 0%, #1b4d30 100%);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.avatar-initial:hover {
  transform: scale(1.05);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

/* Generate different background colors for different initials */
.avatar-initial[data-initials="JR"] {
  background: linear-gradient(135deg, #4a90e2 0%, #357abd 100%);
}

.avatar-initial[data-initials="SM"] {
  background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
}

.avatar-initial[data-initials="ES"] {
  background: linear-gradient(135deg, #9b59b6 0%, #8e44ad 100%);
}

.avatar-initial[data-initials="MD"] {
  background: linear-gradient(135deg, #f39c12 0%, #e67e22 100%);
}

.avatar-initial[data-initials="AK"] {
  background: linear-gradient(135deg, #1abc9c 0%, #16a085 100%);
}

.avatar-initial[data-initials="LB"] {
  background: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
}
@supports not (font-variation-settings: normal) {
  .avatar-initial {
    font-weight: 600;
  }
}

.author-details {
  flex-grow: 1;
}

.testimonial-author {
  font-weight: 600;
  color: #333;
  margin: 0 0 4px 0;
  font-size: 15px;
}

.author-location {
  color: #666;
  font-size: 13px;
  margin: 0;
  opacity: 0.8;
}

.testimonials-pagination {
  display: none; /* Hide pagination dots for automatic carousel */
}

.testimonial-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(63, 81, 61, 0.3);
  cursor: pointer;
  transition: all 0.3s ease;
}

.testimonial-dot.active {
  background: var(--dark-green);
  transform: scale(1.2);
}

.testimonial-dot:hover {
  background: rgba(63, 81, 61, 0.6);
  transform: scale(1.1);
}

/* GSAP mobile animation adjustments */
@media (max-width: 768px) {
  .gsap-accordion-card {
    transform: translateY(20px) rotateX(10deg);
  }

  .gsap-testimonial {
    transform: translateY(25px) scale(0.98);
  }

  .gsap-feature-card {
    transform: translateY(20px) scale(0.98);
  }
}

/* Enhanced mobile responsiveness for testimonials */
@media (max-width: 992px) {
  .testimonials-carousel-controls {
    display: none;
  }

  .testimonial.premium-testimonial {
    min-width: 320px;
    max-width: 320px;
    padding: 24px;
  }

  .testimonials-carousel {
    padding-left: 20px;
    padding-right: 20px;
  }
}

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

  .testimonial.premium-testimonial {
    min-width: 280px;
    max-width: 280px;
    padding: 20px;
  }

  .testimonial-text {
    font-size: 15px;
  }

  .testimonials-carousel {
    gap: 16px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .testimonials-pagination {
    display: none; /* Hide pagination dots for automatic carousel */
  }

  .testimonial-dot {
    display: none; /* Hide dots for automatic carousel */
  }
}

.custom-package-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  z-index: 2;
  max-width: 1000px;
  margin: 0 auto;
}

.cta-text {
  flex: 1;
}

.cta-text h3 {
  font-size: 2rem;
  color: #333;
  margin-bottom: 15px;
  font-weight: 700;
}

.cta-text p {
  font-size: 1.1rem;
  color: #666;
  line-height: 1.6;
  margin: 0;
}

.custom-package-btn {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal) !important;
  padding: 18px 36px;
  border-radius: 50px;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  white-space: nowrap;
  border: 2px solid transparent;
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.custom-package-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.custom-package-btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--clr-custom-a20, var(--clr-custom-a20-fallback)),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--clr-custom-a20, var(--clr-custom-a20-fallback))
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.custom-package-btn:hover::before {
  left: 100%;
}

.custom-package-btn:hover::after {
  opacity: 1;
}

.custom-package-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(164, 134, 61, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
  color: var(--charcoal) !important;
}

.custom-package-btn:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.custom-package-btn i {
  font-size: 1rem;
  transition: transform 0.3s ease;
}

.custom-package-btn:hover i {
  transform: translateX(4px);
}

@media (max-width: 768px) {
  .custom-package-content {
    flex-direction: column;
    text-align: center;
    gap: 30px;
  }

  .cta-text h3 {
    font-size: 1.6rem;
  }

  .cta-text p {
    font-size: 1rem;
  }

  .custom-package-btn {
    width: 100%;
    justify-content: center;
    padding: 18px 32px;
  }
}

/* Newsletter Section */
.newsletter {
  background: linear-gradient(135deg, var(--forest-green) 0%, var(--charcoal) 100%);
  color: var(--lavender-white);
  text-align: left;
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.newsletter::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url("/images/safari-pattern.png") center / cover;
  opacity: 0.05;
  z-index: 1;
}

.newsletter .container {
  position: relative;
  z-index: 2;
}

.newsletter h2 {
  font-size: 2.5rem;
  margin-bottom: 30px;
}

.newsletter-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 500px;
  margin: 0 auto 30px auto;
}

.newsletter-cta {
  text-align: center;
  margin-top: 20px;
}

.newsletter-cta .btn-hero-primary {
  margin: 0 auto;
  display: inline-flex;
}

.newsletter-form input,
.newsletter-form select {
  flex: 1;
  padding: 15px;
  border: none;
  border-radius: 50px;
  font-size: 16px;
}

.newsletter-form button {
  padding: 16px 32px;
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  border: 2px solid var(--antique-gold);
  border-radius: 50px;
  font-weight: 700;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
}

.newsletter-form button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-form button:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  color: var(--charcoal);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 24px rgba(164, 134, 61, 0.4), 0 2px 8px rgba(0, 0, 0, 0.1);
}

.newsletter-form button:hover::before {
  left: 100%;
}

.newsletter-form button:active {
  transform: translateY(0) scale(0.98);
  transition: all 0.1s ease;
}

/* Newsletter form specific button styling */
.newsletter-submit-btn {
  white-space: nowrap;
  min-width: 200px;
  justify-content: center;
}

.newsletter-submit-btn .btn-label {
  position: relative;
  z-index: 2;
}

.newsletter-submit-btn .btn-arrow {
  position: relative;
  z-index: 2;
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.newsletter-submit-btn:hover .btn-arrow {
  transform: translateX(4px);
}

/* Footer with background image and overlay */
.footer {
  background: var(--dark-green);
  color: var(--highlight-yellow);
  padding: 80px 0 30px;
  position: relative;
}

.footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-image: url("/images/footer.jpeg");
  background-size: cover;
  background-position: center;
  opacity: 0.15;
  z-index: 0;
}

.footer::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.75) 100%);
  z-index: 1;
}

.footer .container {
  position: relative;
  z-index: 2;
}

.footer-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1.2fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}

/* Enhanced footer brand section */
.footer-brand {
  max-width: 350px;
}

.footer-logo {
  height: 60px;
  width: auto;
  margin-bottom: 20px;
  display: block;
  filter: brightness(1.1);
}

.footer-section h4 {
  font-size: 1.4rem;
  margin-bottom: 25px;
  color: white;
  font-weight: 600;
  position: relative;
}

.footer-section h4::after {
  content: "";
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 40px;
  height: 2px;
  background: var(--highlight-yellow);
}

.footer-section p {
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 25px;
}

/* Added social media styling */
.footer-social {
  display: flex;
  gap: 15px;
  margin-top: 20px;
}

.footer-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 45px;
  height: 45px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  color: var(--highlight-yellow);
  font-size: 1.2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Ensure icons are always visible */
.footer-social a i {
  color: var(--highlight-yellow) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
  font-size: 1.3rem;
  transition: all 0.3s ease;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-social a:hover {
  background: linear-gradient(135deg, var(--highlight-yellow) 0%, #d4af37 100%);
  color: var(--dark-green);
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.3);
  border: 2px solid rgba(255, 255, 255, 0.5);
}

/* Ensure icons are always visible on hover */
.footer-social a:hover i {
  color: var(--dark-green) !important;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  transform: scale(1.1);
  transition: transform 0.3s ease;
}

/* Responsive footer social icons */
@media (max-width: 768px) {
  .footer-social {
    gap: 12px;
    margin-top: 15px;
  }
  
  .footer-social a {
    width: 40px;
    height: 40px;
  }
  
  .footer-social a i {
    font-size: 1.1rem;
  }
}

@media (max-width: 480px) {
  .footer-social {
    gap: 10px;
    margin-top: 12px;
  }
  
  .footer-social a {
    width: 35px;
    height: 35px;
  }
  
  .footer-social a i {
    font-size: 1rem;
  }
}

.footer-section ul {
  list-style: none;
}

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

.footer-section a {
  color: rgba(255, 255, 255, 0.8);
  text-decoration: none;
  transition: all 0.3s ease;
  position: relative;
}

.footer-section a:hover {
  color: var(--highlight-yellow);
  padding-left: 8px;
}

/* Enhanced contact info styling */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.85);
}

.contact-item i {
  color: var(--highlight-yellow);
  font-size: 1.1rem;
  width: 20px;
  text-align: center;
}

.contact-item a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: var(--highlight-yellow);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 30px;
}

.footer-bottom-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}

.footer-bottom p {
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
}

.footer-links {
  display: flex;
  gap: 25px;
  align-items: center;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--highlight-yellow);
}

/* Responsive footer design */
@media (max-width: 1024px) {
  .footer-content {
    grid-template-columns: 1fr 1fr;
    gap: 40px;
  }
}

@media (max-width: 768px) {
  .footer {
    padding: 60px 0 20px;
    background: var(--dark-green);
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: left;
  }

  .footer-section h4::after {
    left: 0;
    transform: none;
  }

  .footer-bottom-content {
    flex-direction: column;
    text-align: left;
  }

  .footer-social {
    justify-content: flex-start;
  }
}

/* GSAP Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
  .gsap-fade-in,
  .gsap-fade-in-left,
  .gsap-fade-in-right,
  .gsap-scale-in,
  .gsap-slide-up,
  .gsap-stagger,
  .gsap-rotate-in,
  .gsap-hero-title,
  .gsap-hero-description,
  .gsap-hero-cta,
  .gsap-stat-number,
  .gsap-accordion-card,
  .gsap-testimonial,
  .gsap-feature-card,
  .gsap-section-label,
  .gsap-section-title,
  .gsap-section-description {
    opacity: 1 !important;
    transform: none !important;
  }
}

/* GPU acceleration for smooth animations */
.hero,
.destinations,
.testimonials,
.why-choose-us,
.travel-itineraries {
  transform: translateZ(0);
  backface-visibility: hidden;
}

/* Responsive Design */
/* Original mobile styles for destinations have been replaced with the improved version above */

/* Enhanced Responsive Design - Tablets and Small Desktops */
@media (max-width: 1200px) {
  .container {
    max-width: 100%;
    padding: 0 30px;
  }

  .section-title {
    font-size: 3rem;
  }

  .hero-main-title {
    font-size: 4rem;
  }

  .why-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-areas:
      "a b"
      "c b"
      "d e";
  }
}

@media (max-width: 768px) {
  .section-title {
    font-size: 2.5rem;
  }
}

@media (max-width: 480px) {
  .section-title {
    font-size: 2.2rem;
  }
}

@media (max-width: 375px) {
  .section-title {
    font-size: 2rem;
  }
}

@media (max-width: 320px) {
  .section-title {
    font-size: 1.8rem;
  }
}

@media (max-width: 992px) {
  .top-bar {
    display: none;
  }

  .mobile-menu-toggle {
    display: flex;
  }

  /* Ensure mobile hamburger menu visibility on all mobile devices */
  .mobile-menu-toggle span {
    background: white !important;
  }

  .mobile-menu-toggle span.scrolled {
    background: #333 !important;
    background-color: #333 !important;
  }

  .nav-menu {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-top: none;
    flex-direction: column;
    padding: 30px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
    text-align: center;
    z-index: 1000;
    border-radius: 0 0 20px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                transform 0.2s cubic-bezier(0.4, 0, 0.2, 1), 
                visibility 0.2s cubic-bezier(0.4, 0, 0.2, 1);
  }

  .nav-menu.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .header.scrolled .nav-menu {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(0, 0, 0, 0.1);
    border-top: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  }

  .header.scrolled .nav-menu .nav-link {
    color: #333 !important;
    text-shadow: none;
  }

  .nav-menu .nav-link {
    color: #333 !important; /* Always black on mobile for visibility */
    padding: 15px 0;
    font-size: 1.1rem;
    display: block;
    font-weight: 500;
    font-family: "Playfair Display", serif;
    text-transform: none;
    letter-spacing: 0;
    text-shadow: none;
  }

  .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }

  .header.scrolled .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }

  .mobile-menu-toggle span {
    height: 2px;
    margin: 4px 0;
  }

  .hero-title {
    font-size: 2.5rem;
  }

  .content-wrapper {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  /* Features grid styles are now handled in the dedicated mobile section */

  .destinations-carousel {
    flex-direction: column;
  }

  .destination-card {
    min-width: auto;
  }

  .newsletter-form {
    flex-direction: column;
  }

  .newsletter-form input,
  .newsletter-form select,
  .newsletter-form button {
    width: 100%;
  }

  .footer-bottom-content {
    flex-direction: column;
    gap: 20px;
    text-align: center;
  }

  section {
    padding: 80px 0;
  }

  /* Destination mobile styles are now handled in the dedicated section above */

  .responsible-travel {
    height: auto;
    padding: 100px 0;
  }

  .responsible-travel .section-title {
    font-size: 2.1rem;
  }

  .carousel-controls {
    position: static;
    transform: none;
    justify-content: center;
    margin-top: 20px;
  }

  .destinations .carousel-controls,
  .travel-itineraries .carousel-controls {
    display: none;
  }

  /* Itinerary styling */
  .itineraries-carousel {
    margin: 0 -20px;
    padding: 10px 20px;
    width: calc(100% + 40px);
  }

  .itinerary-card {
    min-width: 280px;
    height: 450px;
  }

  .itinerary-pagination {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
  }
}

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

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

  .container {
    padding: 0 15px;
  }

  .feature-card {
    padding: 30px 15px;
  }

  .section-title {
    font-size: 1.8rem;
  }

  /* Features grid styles are now handled in the dedicated mobile section */
}

/* GSAP Animation Classes and States */
.gsap-fade-in {
  opacity: 0;
  transform: translateY(40px);
}

.gsap-fade-in-left {
  opacity: 0;
  transform: translateX(-40px);
}

.gsap-fade-in-right {
  opacity: 0;
  transform: translateX(40px);
}

.gsap-scale-in {
  opacity: 0;
  transform: scale(0.8);
}

.gsap-slide-up {
  transform: translateY(60px);
  opacity: 0;
}

.gsap-stagger {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-rotate-in {
  opacity: 0;
  transform: rotate(-10deg) scale(0.9);
}

.gsap-hero-title {
  opacity: 0;
  transform: translateY(50px) scale(0.95);
}

.gsap-hero-description {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-hero-cta {
  opacity: 0;
  transform: translateY(40px) scale(0.9);
}

.gsap-stat-number {
  opacity: 0;
  transform: scale(0.5);
}

.gsap-accordion-card {
  opacity: 0;
  transform: translateY(30px) rotateX(15deg);
}

.gsap-testimonial {
  opacity: 0;
  transform: translateY(40px) scale(0.95);
}

.gsap-feature-card {
  opacity: 0;
  transform: translateY(30px) scale(0.95);
}

.gsap-section-label {
  opacity: 0;
  transform: translateY(-20px);
}

.gsap-section-title {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-section-description {
  opacity: 0;
  transform: translateY(20px);
}

/* Smooth scrolling with momentum */
html {
  scroll-behavior: smooth;
}

/* Enhanced performance for GSAP animations */
.gsap-fade-in,
.gsap-fade-in-left,
.gsap-fade-in-right,
.gsap-scale-in,
.gsap-slide-up,
.gsap-stagger,
.gsap-rotate-in,
.gsap-hero-title,
.gsap-hero-description,
.gsap-hero-cta,
.gsap-stat-number,
.gsap-accordion-card,
.gsap-testimonial,
.gsap-feature-card,
.gsap-section-label,
.gsap-section-title,
.gsap-section-description {
  will-change: transform, opacity;
  transform-origin: center;
  backface-visibility: hidden;
  transform: translateZ(0);
}

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

.fade-in-up {
  animation: fadeInUp 0.6s ease-out;
}

/* Entrance animation for sections (fallback) */
.fade-in-section {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}
.fade-in-section.visible {
  opacity: 1;
  transform: none;
}

/* Loading states */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

@keyframes draw {
  to {
    stroke-dashoffset: 0;
  }
}

.why-choose-us {
  position: relative;
  overflow: hidden;
  background: #f6f7f9;
  width: 100%;
  box-sizing: border-box;
}

.why-bg-image {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: url("/images/7.png") center center / cover no-repeat;
  opacity: 0.12;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: overlay;
}

.why-choose-us > .container {
  position: relative;
  z-index: 2;
}

/* Feature Cards Mobile Improvements */
@media (max-width: 600px) {
  .why-choose-us {
    padding: 80px 0;
  }

  .features-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-top: 40px;
  }

  .feature-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-left: 0;
    margin-bottom: 0;
  }

  .feature-icon {
    margin: 0 0 22px 0;
  }

  .feature-card h3 {
    margin-bottom: 10px;
  }

  .feature-card p {
    font-size: 0.95rem;
    line-height: 1.6;
  }
}

@media (max-width: 480px) {
  .features-grid {
    gap: 40px;
  }

  .feature-card {
    padding-left: 60px;
  }

  .feature-icon {
    width: 40px;
    height: 40px;
  }
}

/* Destination mobile improvements */
@media (max-width: 992px) {
  .destinations-showcase {
    grid-template-columns: 1fr;
    height: auto;
  }

  .main-destination {
    height: 400px;
    margin-bottom: 20px;
  }

  .destination-tabs {
    display: flex;
    flex-direction: row;
    width: 100%;
    height: 120px;
    overflow-x: auto;
    overflow-y: hidden;
    -ms-overflow-style: none; /* Hide scrollbar for IE and Edge */
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    scroll-snap-type: x mandatory;
    gap: 10px;
    padding: 10px 0;
  }

  /* Hide scrollbar for Chrome, Safari and Opera */
  .destination-tabs::-webkit-scrollbar {
    display: none;
  }

  .destination-tab {
    scroll-snap-align: center;
    min-width: 110px;
    height: 100%;
    border-radius: 15px;
    position: relative;
    transition: all 0.3s ease;
    flex: 0 0 auto;
  }

  .destination-tab::after {
    content: "";
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: transparent;
    transition: all 0.3s ease;
  }

  .destination-tab.active::after {
    background: #026631;
  }

  .destination-tab:hover,
  .destination-tab.active {
    transform: translateY(-5px);
  }

  .tab-name {
    position: absolute;
    bottom: 10px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 8px 0;
    color: white;
    font-size: 0.9rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0));
    border-bottom-left-radius: 15px;
    border-bottom-right-radius: 15px;
  }
}

@media (max-width: 768px) {
  /* ... existing code ... */

  /* Remove old destination styles that conflict */
  .destinations-showcase {
    flex-direction: column;
  }

  .destination-tabs {
    height: 100px;
    padding-bottom: 5px;
  }

  .destination-tab {
    min-width: 90px;
  }
}

/* Header mobile improvements */
@media (max-width: 768px) {
  .header {
    background: transparent;
  }

  .header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  }

  /* Mobile menu toggle - white by default, black when scrolled */
  .mobile-menu-toggle span {
    background: white !important;
    transition: background-color 0.3s ease;
  }

  .mobile-menu-toggle span.scrolled {
    background: #333 !important;
    background-color: #333 !important;
  }

  /* Nav item separators */
  .nav-menu .nav-link {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08) !important;
    margin-bottom: 0;
    padding: 18px 0;
    color: #333 !important; /* Always black on mobile for visibility */
  }

  .header.scrolled .nav-menu .nav-link {
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    color: #333 !important;
  }

  .nav-menu li:last-child .nav-link {
    border-bottom: none;
  }

  /* Override nav link colors on mobile to always be visible */
  .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }

  .header.scrolled .nav-menu .nav-link:hover {
    color: var(--highlight-yellow) !important;
  }
}

/* Decorative corner images for Who We Are section */
.who-we-are {
  position: relative;
}
.corner-img {
  position: absolute;
  width: 220px;
  height: 220px;
  max-width: 40vw;
  max-height: 40vw;
  opacity: 0;
  z-index: 2;
  pointer-events: none;
  /* Remove old animation, GSAP will handle this */
}
.corner-img.top-left {
  top: 0;
  left: 0;
  transform: translate(-20%, -20%) scale(1.1);
  animation-delay: 0.1s;
}
.corner-img.top-right {
  top: 0;
  right: 0;
  transform: translate(20%, -20%) scale(1.1);
  animation-delay: 0.3s;
}
.corner-img.bottom-left {
  bottom: 0;
  left: 0;
  transform: translate(-20%, 20%) scale(1.1);
  animation-delay: 0.5s;
}
.corner-img.bottom-right {
  bottom: 0;
  right: 0;
  transform: translate(20%, 20%) scale(1.1);
  animation-delay: 0.7s;
}
/* Removed cornerFadeIn keyframe - GSAP handles this now */
@media (max-width: 768px) {
  .corner-img {
    width: 120px;
    height: 120px;
    max-width: 32vw;
    max-height: 32vw;
  }
}
@media (max-width: 480px) {
  .corner-img {
    width: 70px;
    height: 70px;
    max-width: 22vw;
    max-height: 22vw;
  }
}

/* Enhanced Itinerary Card Button Styles */
.itinerary-card .btn,
.itinerary-card a.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  padding: 14px 32px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: #fff !important;
  box-shadow: 0 6px 20px rgba(164, 134, 61, 0.2), 0 2px 8px rgba(0, 0, 0, 0.1);
  border: 2px solid transparent;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.itinerary-card .btn::before,
.itinerary-card a.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-card .btn::after,
.itinerary-card a.btn::after {
  content: "→";
  font-size: 0.9rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.itinerary-card .btn:hover,
.itinerary-card a.btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  color: #fff;
  transform: translateY(-3px) scale(1.05);
  box-shadow: 0 12px 32px rgba(164, 134, 61, 0.3), 0 4px 16px rgba(0, 0, 0, 0.15);
  border-color: var(--highlight-yellow);
}

.itinerary-card .btn:hover::before,
.itinerary-card a.btn:hover::before {
  left: 100%;
}

.itinerary-card .btn:hover::after,
.itinerary-card a.btn:hover::after {
  transform: translateX(4px) scale(1.1);
}

.itinerary-card .btn:active,
.itinerary-card a.btn:active {
  transform: translateY(-1px) scale(1.02);
  transition: all 0.1s ease;
}

.travel-itineraries .carousel-controls {
  position: absolute;
  top: 50%;
  left: 0;
  right: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  pointer-events: none;
  z-index: 15;
  transform: translateY(-50%);
  padding: 0 10px;
}

.travel-itineraries .carousel-btn {
  pointer-events: auto;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.4rem;
  font-weight: 600;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: all 0.2s ease;
  outline: none;
  cursor: pointer;
  opacity: 1;
  position: relative;
}
.travel-itineraries .carousel-btn:hover,
.travel-itineraries .carousel-btn:focus {
  background: var(--antique-gold);
  color: var(--charcoal);
  border-color: var(--antique-gold);
  transform: scale(1.1);
  box-shadow: 0 6px 18px rgba(164, 134, 61, 0.3);
}

.travel-itineraries .carousel-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
  background: rgba(255, 255, 255, 0.6);
  color: #999;
  border-color: #ccc;
}

.travel-itineraries .carousel-btn:disabled:hover {
  transform: none;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1);
  background: rgba(255, 255, 255, 0.6);
  color: #999;
  border-color: #ccc;
}

/* Add pulse animation for better visibility */
.travel-itineraries .carousel-btn::before {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: var(--antique-gold);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.3s ease;
}

.travel-itineraries .carousel-btn:hover::before {
  opacity: 0.2;
}

@media (max-width: 768px) {
  .travel-itineraries .carousel-controls {
    display: none;
  }
}

/* Floating WhatsApp Button */
.whatsapp-float {
  position: fixed;
  width: 60px;
  height: 60px;
  bottom: 100px;
  right: 24px;
  background-color: #25d366;
  color: white;
  border-radius: 50%;
  text-align: center;
  font-size: 2rem;
  box-shadow: 0 4px 16px rgba(37, 211, 102, 0.4);
  z-index: 1200;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
  text-decoration: none;
  opacity: 1 !important;
  visibility: visible !important;
  transform: translateX(0) scale(1) !important;
}
.whatsapp-float:hover {
  background: #128c7e;
  color: white;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.6);
  transform: scale(1.1) translateY(-4px);
}
@media (max-width: 600px) {
  .whatsapp-float {
    width: 60px;
    height: 60px;
    font-size: 2rem;
    bottom: 90px;
    right: 18px;
  }
}
/* End Floating WhatsApp Button */



/* Floating Go Up Button */
.go-up-float {
  position: fixed;
  width: 48px;
  height: 48px;
  bottom: 176px;
  right: 28px;
  background: var(--highlight-yellow);
  color: var(--dark-green);
  border: 2px solid var(--dark-green);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
  z-index: 1201;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0.92;
  transition: box-shadow 0.3s, transform 0.3s, background 0.3s, opacity 0.3s, border 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
}
.go-up-float:hover,
.go-up-float:focus {
  background: #e6eeb0;
  color: var(--dark-green);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.24);
  transform: scale(1.08) translateY(-4px);
  opacity: 1;
}
@media (max-width: 600px) {
  .go-up-float {
    width: 52px;
    height: 52px;
    font-size: 1.4rem;
    bottom: 170px;
    right: 15px;
  }


}
/* End Floating Go Up Button */

/* CRITICAL: Force hamburger menu visibility on scroll - Debug Rule */
@media (max-width: 992px) {
  .mobile-menu-toggle span.scrolled,
  .mobile-menu-toggle span.scrolled:before,
  .mobile-menu-toggle span.scrolled:after {
    background: #000 !important;
    background-color: #000 !important;
    color: #000 !important;
  }
}

/* Animated round border for feature icons */
.feature-icon {
  position: relative;
  z-index: 1;
}
.feature-icon::before {
  content: "";
  position: absolute;
  top: -10px;
  left: -10px;
  right: -10px;
  bottom: -10px;
  border-radius: 50%;
  border: 3px solid var(--highlight-yellow);
  box-sizing: border-box;
  z-index: -1;
  animation: borderPulse 4s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon::after {
  content: "";
  position: absolute;
  top: -3px;
  left: -3px;
  right: -3px;
  bottom: -3px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, rgba(255, 255, 255, 0) 70%);
  z-index: -1;
  opacity: 0.6;
}
@keyframes borderPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 var(--highlight-yellow, #f0fb7e);
    opacity: 1;
  }
  50% {
    box-shadow: 0 0 0 8px rgba(240, 251, 126, 0.2);
    opacity: 0.9;
  }
}

/* Animate feature icons on hover */
.feature-card:hover .feature-icon::before {
  animation: borderPulse 1s infinite cubic-bezier(0.4, 0, 0.2, 1);
}

/* Animate icon itself on hover */
.feature-card:hover .feature-icon i {
  transform: scale(1.12) rotate(-8deg);
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.feature-icon i {
  transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Why Choose Us Section alignment improvements */
.why-choose-us {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1b4d30 100%);
  text-align: center;
  padding: 100px 0 80px 0;
  position: relative;
  overflow: hidden;
}

.why-choose-us::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/decos/bg.webp') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}
.why-choose-us::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 6px;
  background: linear-gradient(90deg, var(--highlight-yellow) 0%, #fffbe0 50%, var(--highlight-yellow) 100%);
}
.why-choose-us .section-label,
.why-choose-us .section-title {
  color: var(--highlight-yellow);
}
.features-content {
  display: none;
}

/* New grid inspired layout */
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-areas:
    "a b c"
    "d b e";
  gap: 28px;
  margin-top: 40px;
}

.why-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 28px;
  text-align: left;
  position: relative;
  overflow: hidden;
}

.why-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/decos/full bg.webp') center center / cover no-repeat, rgba(0, 0, 0, 0.05);
  opacity: 0.25;
  z-index: 1;
  pointer-events: none;
}

.why-card h3 {
  margin: 12px 0 10px 0;
  font-size: 1.3rem;
  color: #2b2b2b;
  position: relative;
  z-index: 2;
}

.why-card p {
  color: #555;
  margin: 0;
  line-height: 1.6;
  position: relative;
  z-index: 2;
}

.icon-badge {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: #0f332c;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 2;
}
.icon-badge i {
  color: #ffd166;
  font-size: 22px;
}

.why-cta {
  grid-area: b;
  background: rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 20px;
  padding: 36px 28px;
  color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.why-cta h3 {
  font-size: 1.6rem;
  margin: 0 0 10px 0;
}
.why-cta p {
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 18px 0;
}
.why-cta-btn {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
  cursor: pointer;
}

.why-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-cta-btn::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--clr-custom-a20, var(--clr-custom-a20-fallback)),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--clr-custom-a20, var(--clr-custom-a20-fallback))
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.why-cta-btn:hover::before {
  left: 100%;
}

.why-cta-btn:hover::after {
  opacity: 1;
}

.why-cta-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  color: var(--charcoal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(164, 134, 61, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
}

.why-cta-btn:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

.area-a {
  grid-area: a;
}
.area-c {
  grid-area: c;
}
.area-d {
  grid-area: d;
}
.area-e {
  grid-area: e;
}

@media (max-width: 992px) {
  .why-grid {
    grid-template-columns: 1fr;
    grid-template-areas:
      "b"
      "a"
      "c"
      "d"
      "e";
  }
  .why-cta {
    padding: 28px;
  }
}

.feature-point {
  display: block;
  margin-bottom: 24px;
  position: relative;
  padding-left: 50px;
}

.feature-point i {
  position: absolute;
  left: 0;
  top: 0;
  color: var(--highlight-yellow);
  font-size: 1.5rem;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.feature-point strong {
  color: var(--highlight-yellow);
  font-weight: 600;
}
@media (max-width: 900px) {
  .features-content {
    max-width: 98vw;
  }
}
@media (max-width: 768px) {
  .why-choose-us {
    padding: 60px 0 40px 0;
  }
  .features-text {
    font-size: 1.1rem;
    line-height: 1.8;
  }
  .feature-point {
    margin-bottom: 20px;
    padding-left: 45px;
  }
  .feature-point i {
    font-size: 1.3rem;
  }
}
@media (max-width: 600px) {
  .features-text {
    font-size: 1rem;
    line-height: 1.7;
    text-align: center;
  }
  .feature-point {
    margin-bottom: 18px;
    padding-left: 0;
    text-align: center;
  }
  .feature-point i {
    position: static;
    display: inline-block;
    margin-right: 8px;
    font-size: 1.2rem;
  }
}

.why-choose-us,
.why-choose-us .section-label,
.why-choose-us .section-title,
.why-choose-us .features-text,
.why-choose-us .feature-point {
  color: #fff !important;
}

.responsible-heading-with-logo {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: center;
  margin-bottom: 18px;
}
.responsible-logo-animated {
  height: 64px;
  width: auto;
  animation: logoPulse 3.5s infinite cubic-bezier(0.4, 0, 0.2, 1);
}
@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
}
@media (max-width: 600px) {
  .responsible-heading-with-logo {
    flex-direction: column;
    gap: 10px;
  }
  .responsible-logo-animated {
    height: 48px;
  }
}

/* Enhanced Loading page styles with GSAP */
#loading-overlay {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100vw;
  height: 100vh;
  background: linear-gradient(135deg, var(--dark-green, #014421) 0%, #1b4d30 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.loading-logo {
  height: 120px;
  width: auto;
  opacity: 0;
  transform: scale(0.8) rotate(-10deg);
  filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.3));
}

/* Loading animation particles */
#loading-overlay::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(circle at 30% 70%, rgba(240, 251, 126, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 70% 30%, rgba(163, 122, 73, 0.1) 0%, transparent 50%),
    radial-gradient(circle at 20% 20%, rgba(217, 203, 179, 0.05) 0%, transparent 50%);
  opacity: 0;
  animation: particleFloat 4s ease-in-out infinite alternate;
}

@keyframes particleFloat {
  0% {
    opacity: 0;
    transform: translateY(0) scale(1);
  }
  100% {
    opacity: 1;
    transform: translateY(-20px) scale(1.05);
  }
}

.scroll-indicator-luxury {
  display: none;
}

.scroll-indicator-luxury:hover {
  transform: translateX(-50%) translateY(-6px);
  background: rgba(255, 255, 255, 0.12);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  border-color: rgba(255, 255, 255, 0.3);
}

/* Minimalistic scroll indicator */
.scroll-mouse {
  width: 28px;
  height: 44px;
  border: 2px solid rgba(255, 255, 255, 0.7);
  border-radius: 16px;
  position: relative;
  background: rgba(0, 0, 0, 0.1);
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-bottom: 10px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(5px);
  transition: all 0.3s ease;
}
.scroll-wheel {
  width: 3px;
  height: 10px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 2px;
  margin-top: 10px;
  animation: scrollWheelMove 2.5s infinite ease-in-out;
  box-shadow: 0 0 6px rgba(255, 255, 255, 0.3);
}

@keyframes scrollWheelMove {
  0% {
    opacity: 0.4;
    transform: translateY(0px);
  }
  50% {
    opacity: 1;
    transform: translateY(16px);
  }
  100% {
    opacity: 0.4;
    transform: translateY(0px);
  }
}

/* Minimalistic down arrow */
.scroll-arrows {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: 8px;
}

.scroll-arrows span {
  display: block;
  width: 12px;
  height: 12px;
  border-right: 2px solid rgba(255, 255, 255, 0.6);
  border-bottom: 2px solid rgba(255, 255, 255, 0.6);
  transform: rotate(45deg);
  margin-top: -6px;
  animation: scrollArrowBounce 2.2s infinite ease-in-out;
  transition: all 0.3s ease;
}

.scroll-arrows span:nth-child(1) {
  animation-delay: 0s;
  opacity: 0.8;
}

.scroll-arrows span:nth-child(2) {
  animation-delay: 0.15s;
  opacity: 0.6;
}

.scroll-arrows span:nth-child(3) {
  animation-delay: 0.3s;
  opacity: 0.4;
}
@keyframes scrollArrowBounce {
  0% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
  50% {
    transform: translateY(6px) rotate(45deg);
    opacity: 1;
  }
  100% {
    transform: translateY(0) rotate(45deg);
    opacity: 0.7;
  }
}


@media (max-width: 768px) {
  .scroll-indicator-luxury {
    bottom: 25px;
    padding: 10px;
  }
  .scroll-mouse {
    width: 24px;
    height: 36px;
    border-width: 2px;
    margin-bottom: 8px;
  }
  .scroll-wheel {
    width: 3px;
    height: 8px;
    margin-top: 8px;
  }
  .scroll-arrows {
    margin-top: 8px;
  }
  .scroll-arrows span {
    width: 12px;
    height: 12px;
    border-width: 2px;
    margin-top: -6px;
  }
}

@media (max-width: 480px) {
  .scroll-indicator-luxury {
    bottom: 20px;
    padding: 8px;
  }
  .scroll-mouse {
    width: 22px;
    height: 32px;
    border-width: 1.5px;
    margin-bottom: 6px;
  }
  .scroll-wheel {
    width: 2.5px;
    height: 6px;
    margin-top: 6px;
  }
  .scroll-arrows {
    margin-top: 6px;
  }
  .scroll-arrows span {
    width: 10px;
    height: 10px;
    border-width: 1.5px;
    margin-top: -5px;
  }
}

/* Scroll indicator GSAP animation class */
.gsap-scroll-indicator {
  opacity: 0;
  transform: translateY(20px);
}
.itinerary-card,
.itinerary-card * {
  color: #f8f8f8 !important;
}
.itinerary-country-tag {
  background: rgba(0, 0, 0, 0.3);
  color: #fff !important;
}
.itinerary-type {
  color: #fff !important;
}
.itinerary-details {
  color: #f8f8f8 !important;
}
.itinerary-card h3 {
  color: #fff !important;
}
.itinerary-card p {
  color: #f0f0f0 !important;
}
.carousel-btn i {
  color: #222 !important;
}
.travel-itineraries .carousel-btn {
  color: #fff !important;
}

/* Enhanced secondary button with modern styling */
.btn-secondary {
  background: transparent;
  color: var(--highlight-yellow);
  border: 2px solid var(--highlight-yellow);
  font-weight: 600;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: var(--highlight-yellow);
  transition: left 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover,
.btn-secondary:focus {
  color: var(--dark-green);
  border-color: var(--highlight-yellow);
  box-shadow: 0 8px 24px rgba(240, 251, 126, 0.3);
}

/* Enhanced primary button with modern styling */
.btn-primary {
  background: linear-gradient(135deg, var(--highlight-yellow) 0%, #fffbe0 100%);
  color: var(--dark-green);
  font-weight: 700;
  border: 2px solid var(--highlight-yellow);
  box-shadow: 0 6px 20px rgba(240, 251, 126, 0.3), 0 2px 8px rgba(0, 0, 0, 0.1);
  position: relative;
}

.btn-primary::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--dark-green),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--dark-green)
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-primary:hover,
.btn-primary:focus {
  background: linear-gradient(135deg, #fffbe0 0%, var(--highlight-yellow) 100%);
  color: var(--dark-green);
  border-color: #fffbe0;
  box-shadow: 0 10px 30px rgba(240, 251, 126, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.btn-destination {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: var(--charcoal);
  border: 2px solid transparent;
  border-radius: 50px;
  padding: 16px 32px;
  font-weight: 600;
  font-size: 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  text-decoration: none;
  box-shadow: 0 4px 16px rgba(164, 134, 61, 0.3);
  position: relative;
  overflow: hidden;
  transform: translateZ(0);
  will-change: transform, box-shadow;
}

.btn-destination::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-destination::after {
  content: "";
  position: absolute;
  top: -2px;
  left: -2px;
  right: -2px;
  bottom: -2px;
  background: linear-gradient(
    45deg,
    var(--clr-custom-a20, var(--clr-custom-a20-fallback)),
    var(--clr-custom-a10, var(--clr-custom-a10-fallback)),
    var(--clr-custom-a20, var(--clr-custom-a20-fallback))
  );
  border-radius: 50px;
  z-index: -1;
  opacity: 0;
  transition: opacity 0.4s ease;
}

.btn-destination:hover,
.btn-destination:focus {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%);
  color: var(--charcoal);
  transform: translateY(-3px) scale(1.02);
  box-shadow: 0 16px 40px rgba(164, 134, 61, 0.4), 0 4px 16px rgba(0, 0, 0, 0.15);
  text-decoration: none;
}

.btn-destination:hover::before {
  left: 100%;
}

.btn-destination:hover::after {
  opacity: 1;
}

.btn-destination:active {
  transform: translateY(-1px) scale(0.98);
  transition: all 0.1s ease;
}

/* Newsletter CTA Section */
.newsletter .newsletter-content {
  max-width: 600px;
  margin: 0 auto;
  text-align: center;
}
.newsletter .cta-title {
  font-family: "Playfair Display", serif;
  font-size: 3rem;
  font-weight: 600;
  color: #fff;
  text-align: center;
  margin: 0 0 10px 0;
}
.newsletter .cta-title em {
  font-style: italic;
  color: var(--antique-gold);
  font-weight: 400;
}
.newsletter .cta-subtitle {
  color: var(--lavender-white);
  text-align: center;
  margin: 2px 0;
}
.newsletter .newsletter-form {
  margin: 22px auto 0;
  max-width: 500px;
}

/* Form elements GSAP animation */
.gsap-form-element {
  opacity: 0;
  transform: translateY(20px) scale(0.95);
}

/* Image animation classes */
.gsap-image {
  opacity: 0;
  transform: scale(1.1);
  filter: blur(2px);
}

.gsap-corner-img {
  opacity: 0;
  transform: scale(0.8) rotate(-15deg);
}

@media (max-width: 768px) {
  .newsletter .cta-title {
    font-size: 2.2rem;
  }

  /* Mobile-specific GSAP optimizations */
  .gsap-newsletter-form {
    transform: translateY(20px);
  }

  .gsap-footer-section {
    transform: translateY(15px);
  }
}

/* Additional GSAP animation optimizations */
.gsap-newsletter-form {
  opacity: 0;
  transform: translateY(30px);
}

.gsap-footer-section {
  opacity: 0;
  transform: translateY(20px);
}

.gsap-floating-buttons {
  opacity: 0;
  transform: translateX(60px) scale(0.8);
}

/* Decorative Background Elements */
.decorative-bg {
  position: relative;
  overflow: hidden;
}

.decorative-bg::before,
.decorative-bg::after {
  content: "";
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.decorative-bg .container {
  position: relative;
  z-index: 2;
}

/* Paw prints decoration */
.decorative-paws::before {
  background-image: url("/images/decos/paws.webp");
  width: 350px;
  height: 250px;
  top: 30px;
  right: 80px;
  transform: rotate(15deg);
}

.decorative-paws::after {
  background-image: url("/images/decos/paws.webp");
  width: 280px;
  height: 200px;
  bottom: 40px;
  left: 50px;
  transform: rotate(-10deg) scaleX(-1);
}

/* Birds decoration */
.decorative-birds::before {
  background-image: url("/images/decos/birds.webp");
  width: 320px;
  height: 180px;
  top: 50px;
  left: 80px;
  transform: rotate(-5deg);
}

.decorative-birds::after {
  background-image: url("/images/decos/birds.webp");
  width: 250px;
  height: 140px;
  bottom: 60px;
  right: 100px;
  transform: rotate(8deg) scaleX(-1);
}

/* Tribal pattern decoration */
.decorative-tribal::before {
  background-image: url("/images/decos/tl (1).webp");
  width: 400px;
  height: 320px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(45deg);
  opacity: 0.12;
}

/* Corner decorations */
.decorative-corner::before {
  background-image: url("/images/decos/paws.webp");
  width: 200px;
  height: 150px;
  top: 30px;
  right: 40px;
  transform: rotate(25deg);
}

.decorative-corner::after {
  background-image: url("/images/decos/birds.webp");
  width: 180px;
  height: 120px;
  bottom: 30px;
  left: 40px;
  transform: rotate(-15deg);
}

/* Giraffes decoration */
.decorative-giraffes::before {
  background-image: url("/images/decos/girrafes.webp");
  width: 300px;
  height: 400px;
  top: 20px;
  right: 60px;
  transform: rotate(5deg);
}

.decorative-giraffes::after {
  background-image: url("/images/decos/girrafes.webp");
  width: 250px;
  height: 320px;
  bottom: 30px;
  left: 40px;
  transform: rotate(-8deg) scaleX(-1);
}

/* Grass silhouette decoration */
.decorative-grass::before {
  background-image: url("/images/decos/grass-silhouette.webp");
  width: 400px;
  height: 200px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0.08;
}

.decorative-grass::after {
  background-image: url("/images/decos/grass-silhouette.webp");
  width: 350px;
  height: 180px;
  bottom: 20px;
  right: 30px;
  transform: rotate(15deg);
}

/* Floating decorative elements */
.floating-decoration {
  position: absolute;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  opacity: 0.12;
  z-index: 1;
  pointer-events: none;
  animation: float 6s ease-in-out infinite;
}

.floating-decoration:nth-child(2) {
  animation-delay: -2s;
}

.floating-decoration:nth-child(3) {
  animation-delay: -4s;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-10px) rotate(5deg);
  }
  100% {
    transform: translateY(0px) rotate(0deg);
  }
}

/* FAQ Section Styles */
.faq-section {
  padding: 120px 0;
  background: linear-gradient(135deg, var(--dark-green) 0%, #1b4d30 100%);
  position: relative;
  overflow: hidden;
  z-index: 1;
  min-height: 400px;
}

.faq-content {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 80px;
  align-items: start;
  position: relative;
  z-index: 3;
}

.faq-intro {
  position: relative;
  z-index: 3;
  opacity: 1;
}

.faq-intro .section-label {
  background: var(--antique-gold);
  color: var(--charcoal);
}

.faq-intro .section-title {
  font-size: 3rem;
  margin-bottom: 24px;
  color: #fff;
}

.faq-description {
  font-size: 1.1rem;
  line-height: 1.6;
  color: #fff;
  margin-bottom: 40px;
  max-width: 400px;
}

.faq-list {
  position: relative;
  z-index: 3;
  opacity: 1;
}

.faq-item {
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  margin-bottom: 0;
  transition: all 0.3s ease;
  opacity: 1;
}

.faq-item:last-child {
  border-bottom: none;
}

.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}

.faq-question:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.faq-question h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.3rem;
  font-weight: 500;
  color: #fff;
  margin: 0;
  padding-right: 40px;
  line-height: 1.4;
}

.faq-toggle {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 50%;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.3s ease;
  flex-shrink: 0;
  color: var(--highlight-yellow);
}

.faq-toggle:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--highlight-yellow);
  transform: scale(1.1);
  border-color: var(--highlight-yellow);
}

.faq-toggle i {
  font-size: 14px;
  transition: transform 0.3s ease;
}

.faq-item.active .faq-toggle i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: all 0.4s ease;
  opacity: 0;
}

.faq-item.active .faq-answer {
  max-height: 200px;
  opacity: 1;
  padding-bottom: 24px;
}

.faq-answer p {
  font-size: 1rem;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.85);
  margin: 0;
}

/* FAQ Button Icon */
.faq-intro .btn-icon {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-left: 12px;
}

.faq-intro .btn-icon i {
  color: var(--highlight-yellow);
  font-size: 12px;
}

/* Responsive FAQ */
@media (max-width: 992px) {
  .faq-content {
    grid-template-columns: 1fr;
    gap: 60px;
  }

  .faq-intro .section-title {
    font-size: 2.5rem;
  }

  .faq-description {
    max-width: 100%;
  }
}

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

  .faq-content {
    gap: 40px;
  }

  .faq-intro .section-title {
    font-size: 2rem;
  }

  .faq-question h3 {
    font-size: 1.1rem;
  }

  .faq-question {
    padding: 20px 0;
  }
}

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

  .faq-intro .section-title {
    font-size: 1.8rem;
  }

  .faq-question h3 {
    font-size: 1rem;
    padding-right: 30px;
  }

  .faq-toggle {
    width: 35px;
    height: 35px;
  }
}

/* Responsive decorative elements */
@media (max-width: 768px) {
  .decorative-bg::before,
  .decorative-bg::after {
    opacity: 0.12;
  }

  .decorative-paws::before {
    width: 200px;
    height: 150px;
    top: 20px;
    right: 30px;
  }

  .decorative-paws::after {
    width: 180px;
    height: 140px;
    bottom: 30px;
    left: 25px;
  }

  .decorative-birds::before {
    width: 180px;
    height: 100px;
    top: 30px;
    left: 40px;
  }

  .decorative-birds::after {
    width: 150px;
    height: 80px;
    bottom: 40px;
    right: 50px;
  }

  .decorative-tribal::before {
    width: 250px;
    height: 200px;
    opacity: 0.08;
  }

  .decorative-giraffes::before {
    width: 200px;
    height: 250px;
  }

  .decorative-giraffes::after {
    width: 180px;
    height: 220px;
  }

  .decorative-grass::before {
    width: 280px;
    height: 140px;
  }

  .decorative-grass::after {
    width: 240px;
    height: 120px;
  }
}

@media (max-width: 480px) {
  .decorative-bg::before,
  .decorative-bg::after {
    opacity: 0.08;
  }

  .decorative-paws::before,
  .decorative-paws::after,
  .decorative-birds::before,
  .decorative-birds::after {
    width: 120px;
    height: 90px;
  }

  .decorative-tribal::before {
    width: 180px;
    height: 140px;
    opacity: 0.05;
  }

  .decorative-giraffes::before,
  .decorative-giraffes::after {
    width: 120px;
    height: 160px;
  }

  .decorative-grass::before,
  .decorative-grass::after {
    width: 160px;
    height: 80px;
  }
}

/* Removed logo pulse animations */
.responsible-logo-large-animated {
  height: 180px;
  width: auto;
  max-width: 320px;
  /* animation: logoPulse 2.5s infinite cubic-bezier(0.4, 0, 0.2, 1); */
}

@media (max-width: 900px) {
  .responsible-logo-large-animated {
    height: 120px;
    max-width: 180px;
  }
}

/* Removed logo pulse keyframes and animation */
/* @keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.06);
    opacity: 0.92;
  }
} */



/* Destinations Carousel Section */
.destinations-carousel {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}

.destinations-carousel-container {
    position: relative;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    margin-bottom: 2rem;
    padding: 0 20px;
}

.destinations-carousel-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    height: 500px;
    position: relative;
    margin: 0 -20px;
}

.destination-slide {
    min-width: 100%;
    position: relative;
    display: flex;
    align-items: center;
    transition: all 0.5s ease-in-out;
}

.destination-slide:not(.active) {
    opacity: 0.4;
    transform: scale(0.95);
    filter: blur(1px);
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float-gentle 3s ease-in-out infinite;
}

@keyframes float-gentle {
    0%, 100% {
        transform: scale(0.95) translateY(0px);
    }
    50% {
        transform: scale(0.95) translateY(-5px);
    }
}

.destination-slide:not(.active)::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.3) 100%);
    z-index: 3;
    pointer-events: none;
}

.destination-slide.active {
    z-index: 2;
}

.destination-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.destination-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.1) 50%, rgba(0, 0, 0, 0.4) 100%);
    z-index: 1;
}

.destination-content {
    position: relative;
    z-index: 2;
    color: var(--lavender-white);
    text-align: center;
    padding: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.destination-label {
    display: inline-block;
    background: var(--antique-gold);
    color: var(--charcoal);
    padding: 0.5rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
}

.destination-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    color: var(--lavender-white);
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.destination-description {
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: var(--lavender-white);
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.destination-content .btn {
    background: var(--antique-gold);
    color: var(--charcoal);
    border: 2px solid var(--antique-gold);
    font-weight: 600;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.destination-content .btn:hover {
    background: transparent;
    color: var(--antique-gold);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(212, 175, 55, 0.3);
}

.destinations-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: var(--charcoal);
    color: var(--lavender-white);
    border: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    font-size: 1.2rem;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.destinations-nav:hover {
    background: var(--antique-gold);
    color: var(--charcoal);
    transform: translateY(-50%) scale(1.1);
}

.destinations-prev {
    left: 20px;
}

.destinations-next {
    right: 20px;
}

.destinations-progress {
    text-align: center;
    margin-top: 2rem;
}

.progress-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.progress-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--clr-custom-a20);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.progress-dot:hover {
    background: var(--antique-gold);
    transform: scale(1.2);
}

.progress-dot.active {
    background: var(--antique-gold);
    border-color: var(--charcoal);
    transform: scale(1.3);
}

/* Responsive Design for Destinations Carousel */
@media (max-width: 1024px) {
    .destinations-carousel-track {
        height: 450px;
    }
    
    .destination-content {
        padding: 2rem;
    }
    
    .destination-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .destinations-carousel-track {
        height: 400px;
    }
    
    .destination-content {
        padding: 1.5rem;
    }
    
    .destination-title {
        font-size: 1.75rem;
    }
    
    .destination-description {
        font-size: 1.1rem;
    }
    
    .destinations-nav {
        width: 50px;
        height: 50px;
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .destinations-carousel-track {
        height: 350px;
    }
    
    .destination-content {
        padding: 1rem;
    }
    
    .destination-title {
        font-size: 1.5rem;
    }
    
    .destination-description {
        font-size: 1rem;
    }
    
    .destination-label {
        font-size: 0.8rem;
        padding: 0.4rem 1.2rem;
    }
    
    .progress-dots {
        gap: 0.75rem;
    }
    
    .progress-dot {
        width: 10px;
        height: 10px;
    }
}

/* Specialized Services Section */
.specialized-services {
  background: var(--clr-custom-a20, var(--clr-custom-a20-fallback));
  padding: 100px 0;
  position: relative;
  overflow: hidden;
}

.specialized-services::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/decos/full bg.webp') center center / cover no-repeat;
  opacity: 0.05;
  pointer-events: none;
}

.specialized-services .container {
  position: relative;
  z-index: 2;
}

.specialized-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 32px;
  margin-top: 60px;
}

.specialized-card {
  background: #ffffff;
  border: 1px solid #eaeaea;
  border-radius: 18px;
  padding: 40px 32px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.specialized-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: url('/images/decos/full bg.webp') center center / cover no-repeat;
  opacity: 0.15;
  z-index: 1;
  pointer-events: none;
}

.specialized-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  border-color: var(--antique-gold);
}

.specialized-icon {
  width: 80px;
  height: 80px;
  border-radius: 16px;
  background: var(--forest-green);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 24px;
  position: relative;
  z-index: 2;
  transition: all 0.3s ease;
}

.specialized-icon i {
  color: var(--antique-gold);
  font-size: 32px;
  transition: all 0.3s ease;
}

.specialized-card:hover .specialized-icon {
  background: var(--antique-gold);
  transform: scale(1.1);
}

.specialized-card:hover .specialized-icon i {
  color: var(--forest-green);
}

.specialized-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--forest-green);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
  line-height: 1.3;
}

.specialized-card p {
  color: #555;
  line-height: 1.7;
  font-size: 1rem;
  position: relative;
  z-index: 2;
  margin: 0;
}

/* Responsive design for specialized services */
@media (max-width: 768px) {
  .specialized-services {
    padding: 80px 0;
  }
  
  .specialized-grid {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 40px;
  }
  
  .specialized-card {
    padding: 32px 24px;
  }
  
  .specialized-icon {
    width: 70px;
    height: 70px;
    margin-bottom: 20px;
  }
  
  .specialized-icon i {
    font-size: 28px;
  }
  
  .specialized-card h3 {
    font-size: 1.3rem;
  }
}

@media (max-width: 480px) {
  .specialized-card {
    padding: 28px 20px;
  }
  
  .specialized-icon {
    width: 60px;
    height: 60px;
  }
  
  .specialized-icon i {
    font-size: 24px;
  }
}

/* ================================================
   SPECIALIZED SERVICES STYLES
   ================================================ */

.destinations {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1a4d2e 100%);
  padding: 80px 0;
  position: relative;
}

.destinations .section-header .section-label {
  background: var(--highlight-yellow);
  color: var(--dark-green);
}

.destinations .section-title {
  color: white;
}

.destinations .section-description {
  color: rgba(255, 255, 255, 0.9);
}

/* Discover Tanzania Section - Light Gray Background */
.discover-tanzania-section {
  background: #f5f5f5 !important;
  padding: 80px 0;
}

.discover-tanzania-section .section-header .section-label {
  background: var(--antique-gold);
  color: var(--charcoal);
}

.discover-tanzania-section .section-title {
  color: var(--forest-green);
}

.discover-tanzania-section .section-description {
  color: rgba(0, 0, 0, 0.7);
}

.specialized-services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
  margin-top: 50px;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.specialized-service-card {
  background: linear-gradient(135deg, var(--dark-green) 0%, #1a4d2e 100%);
  padding: 40px 30px;
  border-radius: 15px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-align: center;
  position: relative;
  transition: all 0.3s ease;
  overflow: hidden;
}

.specialized-service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: url('/images/decos/card.webp');
  background-size: cover;
  background-position: center;
  opacity: 0.2;
  z-index: 1;
  pointer-events: none;
}



.specialized-service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.specialized-service-card:hover::before {
  opacity: 0.3;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: var(--highlight-yellow);
  color: var(--dark-green);
  border-radius: 12px;
  font-size: 1.8rem;
  margin: 0 auto 20px;
  box-shadow: 0 5px 15px rgba(255, 193, 7, 0.3);
  transition: all 0.3s ease;
  position: relative;
  z-index: 2;
}

.service-icon:hover {
  transform: rotate(5deg) scale(1.05);
  background: #ffd700;
  box-shadow: 0 8px 20px rgba(255, 193, 7, 0.4);
}

.service-title {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--highlight-yellow);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
  position: relative;
  z-index: 2;
}

.service-description {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.6;
  font-size: 0.95rem;
  font-weight: 400;
  margin: 0;
  position: relative;
  z-index: 2;
}

/* Responsive Design for Specialized Services */
@media (max-width: 1024px) {
  .specialized-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 20px;
  }
  
  .specialized-service-card {
    padding: 35px 25px;
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .specialized-services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
    margin-top: 40px;
    padding: 0 15px;
  }
  
  .specialized-service-card {
    padding: 35px 25px;
  }
  
  .service-icon {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
    margin-bottom: 18px;
  }
  
  .service-title {
    font-size: 1.2rem;
    margin-bottom: 16px;
  }
  
  .service-description {
    font-size: 0.9rem;
  }
}

@media (max-width: 480px) {
  .specialized-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 30px;
  }
  
  .specialized-service-card {
    padding: 30px 20px;
  }
  
  .service-icon {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
    margin-bottom: 16px;
  }
  
  .service-title {
    font-size: 1.1rem;
    margin-bottom: 14px;
  }
  
  .service-description {
    font-size: 0.85rem;
  }
}

/* ================================================
   BOOKING PROCESS SECTION STYLES
   ================================================ */

.booking-process-section {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
}

.booking-process-section .section-header {
  margin-bottom: 60px;
}

.booking-process-section .section-label {
  background: var(--antique-gold);
  color: var(--charcoal);
}

.booking-process-section .section-title {
  color: var(--charcoal);
}

.process-description {
  text-align: center;
  color: #666;
  max-width: 600px;
  margin: 0 auto 60px;
  font-size: 1.1rem;
  line-height: 1.6;
}

.process-steps-horizontal-line {
  display: flex;
  align-items: flex-start;
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  gap: 0;
  overflow-x: hidden;
  width: 100%;
  box-sizing: border-box;
}

.process-steps-horizontal-line::before {
  content: '';
  position: absolute;
  top: 80px;
  left: 50px;
  right: 50px;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--antique-gold) 0,
    var(--antique-gold) 8px,
    transparent 8px,
    transparent 16px
  );
  z-index: 1;
}

.process-step-horizontal-line {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  position: relative;
  z-index: 2;
  padding: 0 15px;
}

.step-number-horizontal-line {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 20px;
}

.step-label-horizontal-line {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--antique-gold);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 5px;
}

.step-digit-horizontal-line {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--antique-gold);
  font-family: "Playfair Display", serif;
}

.step-content-horizontal-line {
  background: white;
  padding: 30px 25px;
  border-radius: 20px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
  border: 2px solid rgba(164, 134, 61, 0.2);
  text-align: center;
  position: relative;
  max-width: 280px;
  transition: all 0.3s ease;
}

.step-content-horizontal-line:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
  border-color: rgba(164, 134, 61, 0.4);
}

.step-content-horizontal-line::before {
  content: '';
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid rgba(255, 255, 255, 0.95);
}

.step-title-horizontal-line {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--charcoal);
  margin-bottom: 18px;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: "Playfair Display", serif;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.step-description-horizontal-line {
  color: #444;
  line-height: 1.7;
  margin-bottom: 25px;
  font-size: 1rem;
  font-weight: 500;
  text-shadow: 0 1px 1px rgba(255, 255, 255, 0.8);
}

.step-icon-horizontal-line {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 70px;
  height: 70px;
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%);
  color: white;
  border-radius: 50%;
  font-size: 1.8rem;
  margin: 0 auto;
  box-shadow: 0 8px 20px rgba(164, 134, 61, 0.3);
  border: 3px solid rgba(255, 255, 255, 0.8);
  transition: all 0.3s ease;
}

.step-icon-horizontal-line:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 25px rgba(164, 134, 61, 0.4);
}

/* Responsive Design */
@media (max-width: 1024px) {
  .process-steps-horizontal-line {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    max-width: 100%;
    padding: 0 20px;
  }
  
  .process-steps-horizontal-line::before {
    top: 60px;
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 120px);
    background: repeating-linear-gradient(
      to bottom,
      var(--antique-gold) 0,
      var(--antique-gold) 8px,
      transparent 8px,
      transparent 16px
    );
  }

  .step-content-horizontal-line {
    max-width: 100%;
    padding: 25px 20px;
  }
}

@media (max-width: 768px) {
  .process-steps-horizontal-line {
    flex-direction: column;
    gap: 50px;
    align-items: center;
    padding: 0 15px;
  }
  
  .process-steps-horizontal-line::before {
    top: 60px;
    left: 50%;
    right: auto;
    width: 2px;
    height: calc(100% - 120px);
    background: repeating-linear-gradient(
      to bottom,
      var(--antique-gold) 0,
      var(--antique-gold) 8px,
      transparent 8px,
      transparent 16px
    );
  }
  
  .process-step-horizontal-line {
    padding: 0;
    width: 100%;
    max-width: 400px;
  }
  
  .step-content-horizontal-line {
    max-width: 100%;
    padding: 30px 25px;
    margin: 0 20px;
  }
  
  .step-content-horizontal-line::before {
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid rgba(255, 255, 255, 0.95);
  }
  
  .step-digit-horizontal-line {
    font-size: 2.4rem;
  }
  
  .step-title-horizontal-line {
    font-size: 1.2rem;
  }
  
  .step-description-horizontal-line {
    font-size: 0.95rem;
  }
  
  .step-icon-horizontal-line {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }
}

@media (max-width: 480px) {
  .process-steps-horizontal-line {
    gap: 40px;
    padding: 0 10px;
  }
  
  .process-steps-horizontal-line::before {
    top: 50px;
    height: calc(100% - 100px);
  }
  
  .process-step-horizontal-line {
    max-width: 100%;
  }
  
  .step-content-horizontal-line {
    max-width: 100%;
    padding: 25px 20px;
    margin: 0 10px;
  }
  
  .step-content-horizontal-line::before {
    top: -10px;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 10px solid rgba(255, 255, 255, 0.95);
  }
  
  .step-digit-horizontal-line {
    font-size: 2.2rem;
  }
  
  .step-title-horizontal-line {
    font-size: 1.1rem;
  }
  
  .step-description-horizontal-line {
    font-size: 0.9rem;
  }
  
  .step-icon-horizontal-line {
    width: 60px;
    height: 60px;
    font-size: 1.5rem;
  }
}

/* ================================================
   CONTACT FORM SECTION STYLES
   ================================================ */

.contact-form-section {
  background: #f8f9fa;
  padding: 100px 0;
  position: relative;
}

.contact-form-content {
  max-width: 1000px;
  margin: 0 auto;
}

.contact-form-section .section-header {
  margin-bottom: 60px;
}

.contact-form-section .section-label {
  background: var(--antique-gold);
  color: var(--charcoal);
}

.contact-form-section .section-title {
  color: var(--charcoal);
}

.contact-form-section .section-description {
  color: #666;
  max-width: 600px;
  margin: 0 auto;
}

/* ================================================
   MODERN CONTACT FORM STYLES
   ================================================ */

.modern-contact-form {
  max-width: 800px !important;
  margin: 50px auto 0 !important;
  background: white !important;
  border-radius: 20px !important;
  padding: 40px !important;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1) !important;
  border: 1px solid rgba(0, 0, 0, 0.05) !important;
}

.modern-contact-form .contact-form {
  display: grid !important;
  gap: 25px !important;
  width: 100% !important;
}

.modern-contact-form .form-row {
  display: grid !important;
  grid-template-columns: 1fr 1fr !important;
  gap: 20px !important;
}

.modern-contact-form .form-group {
  display: flex !important;
  flex-direction: column !important;
  gap: 8px !important;
}

.modern-contact-form .form-group.full-width {
  grid-column: 1 / -1 !important;
}

.modern-contact-form .form-group label {
  font-size: 0.9rem !important;
  font-weight: 500 !important;
  color: #333 !important;
  margin-bottom: 8px !important;
  font-family: "Source Sans Pro", sans-serif !important;
}

.modern-contact-form .form-group input,
.modern-contact-form .form-group textarea {
  padding: 16px 20px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: "Source Sans Pro", sans-serif !important;
  background: #f8f9fa !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  color: #333 !important;
  width: 100% !important;
  box-sizing: border-box !important;
  font-weight: 400 !important;
}

.modern-contact-form .form-group input:focus,
.modern-contact-form .form-group textarea:focus {
  border-color: var(--antique-gold) !important;
  background: white !important;
  box-shadow: 0 0 0 2px rgba(164, 134, 61, 0.1) !important;
}

.modern-contact-form .form-group input::placeholder,
.modern-contact-form .form-group textarea::placeholder {
  color: #999 !important;
  font-style: normal !important;
}

.modern-contact-form .form-group textarea {
  resize: vertical !important;
  min-height: 120px !important;
  line-height: 1.6 !important;
}

/* Select Dropdown Styling */
.modern-contact-form .select-wrapper {
  position: relative;
}

.modern-contact-form .select-wrapper select {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  padding: 16px 50px 16px 20px !important;
  border: 1px solid #e0e0e0 !important;
  border-radius: 8px !important;
  font-size: 1rem !important;
  font-family: "Source Sans Pro", sans-serif !important;
  background: #f8f9fa !important;
  transition: all 0.3s ease !important;
  outline: none !important;
  color: #333 !important;
  width: 100% !important;
  cursor: pointer !important;
  box-sizing: border-box !important;
  font-weight: 400 !important;
}

.modern-contact-form .select-wrapper select:focus {
  border-color: var(--antique-gold) !important;
  background: white !important;
  box-shadow: 0 0 0 2px rgba(164, 134, 61, 0.1) !important;
}

.modern-contact-form .select-arrow {
  position: absolute !important;
  right: 20px !important;
  top: 50% !important;
  transform: translateY(-50%) !important;
  color: #999 !important;
  pointer-events: none !important;
  font-size: 0.9rem !important;
  transition: transform 0.3s ease, color 0.3s ease !important;
  z-index: 2 !important;
}

.modern-contact-form .select-wrapper select:focus + .select-arrow {
  color: var(--antique-gold) !important;
  transform: translateY(-50%) rotate(180deg) !important;
}

/* Submit Button */
.modern-submit-btn {
  background: linear-gradient(135deg, var(--antique-gold) 0%, #d4af37 100%) !important;
  color: white !important;
  border: none !important;
  border-radius: 50px !important;
  padding: 16px 40px !important;
  font-size: 1rem !important;
  font-weight: 600 !important;
  cursor: pointer !important;
  transition: all 0.3s ease !important;
  position: relative !important;
  overflow: hidden !important;
  margin-top: 20px !important;
  text-transform: uppercase !important;
  letter-spacing: 0.5px !important;
  box-shadow: 0 8px 25px rgba(164, 134, 61, 0.3) !important;
  width: 100% !important;
  font-family: "Source Sans Pro", sans-serif !important;
}

.modern-submit-btn:hover {
  background: linear-gradient(135deg, #d4af37 0%, var(--antique-gold) 100%) !important;
  transform: translateY(-2px) !important;
  box-shadow: 0 12px 30px rgba(164, 134, 61, 0.4) !important;
}

.modern-submit-btn:active {
  transform: translateY(0) !important;
  transition: transform 0.1s ease !important;
}

.modern-submit-btn .btn-text {
  transition: opacity 0.3s ease;
}

.modern-submit-btn .btn-loading {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.modern-submit-btn.loading .btn-text {
  opacity: 0;
}

.modern-submit-btn.loading .btn-loading {
  opacity: 1;
}

.modern-submit-btn.loading {
  cursor: not-allowed;
  background: linear-gradient(135deg, #ccc 0%, #999 100%) !important;
}

/* Form Message */
.modern-contact-form .form-message {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

.modern-contact-form .form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.modern-contact-form .form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Responsive Design */
@media (max-width: 768px) {
  .modern-contact-form {
    padding: 30px 20px !important;
    margin: 30px auto 0 !important;
    border-radius: 15px !important;
  }
  
  .modern-contact-form .form-row {
    grid-template-columns: 1fr !important;
    gap: 15px !important;
  }
  
  .modern-contact-form .contact-form {
    gap: 20px !important;
  }
  
  .modern-contact-form .form-group input,
  .modern-contact-form .form-group textarea,
  .modern-contact-form .select-wrapper select {
    padding: 16px 18px !important;
    font-size: 0.95rem !important;
  }
  
  .modern-contact-form .select-wrapper select {
    padding-right: 45px !important;
  }
  
  .modern-contact-form .select-arrow {
    right: 18px !important;
  }
  
  .modern-submit-btn {
    padding: 18px 35px !important;
    font-size: 1rem !important;
  }
}

@media (max-width: 480px) {
  .modern-contact-form {
    padding: 25px 15px !important;
    margin: 20px auto 0 !important;
  }
  
  .modern-contact-form .form-group input,
  .modern-contact-form .form-group textarea,
  .modern-contact-form .select-wrapper select {
    padding: 14px 16px !important;
  }
  
  .modern-contact-form .form-group label {
    font-size: 0.9rem !important;
  }
  
  .modern-submit-btn {
    padding: 16px 30px !important;
    font-size: 0.95rem !important;
  }
}

/* Blog Styles */
.featured-articles {
    padding: 80px 0;
    background: #fff;
}

.featured-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 2rem;
    margin-top: 3rem;
}

.featured-article {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.featured-article:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
}

.featured-article.featured-large {
    grid-row: span 2;
}

.article-image {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.featured-article.featured-large .article-image {
    height: 400px;
}

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

.featured-article:hover .article-image img {
    transform: scale(1.05);
}

.article-category {
    position: absolute;
    top: 1rem;
    left: 1rem;
    background: var(--forest-green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 2rem;
}

.article-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    font-size: 0.85rem;
    color: #666;
}

.article-title {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
    line-height: 1.3;
    color: var(--forest-green);
}

.featured-article.featured-large .article-title {
    font-size: 2rem;
}

.article-excerpt {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.article-read-more {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--antique-gold);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease;
}

.article-read-more:hover {
    color: var(--forest-green);
}

.recent-articles {
    padding: 80px 0;
    background: #f8f9fa;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.article-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
}

.article-card .article-image {
    height: 200px;
}

.article-card .article-content {
    padding: 1.5rem;
}

.article-card .article-title {
    font-size: 1.2rem;
}

.load-more-btn {
    background: var(--forest-green);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.load-more-btn:hover {
    background: var(--antique-gold);
    transform: translateY(-2px);
}

.newsletter-section {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--forest-green) 0%, #1a3d1a 100%);
    color: #fff;
}

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
}

.newsletter-form .form-group {
    display: flex;
    gap: 1rem;
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
}

.newsletter-form button {
    background: var(--antique-gold);
    color: #fff;
    border: none;
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-form button:hover {
    background: #d4af37;
    transform: translateY(-2px);
}

/* Blog Post Styles */
.article-hero {
    position: relative;
    height: 60vh;
    min-height: 500px;
    display: flex;
    align-items: center;
    color: #fff;
}

.article-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
}

.article-hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(26, 61, 26, 0.8) 0%, rgba(0, 0, 0, 0.6) 100%);
}

.article-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 2rem;
    font-size: 0.9rem;
}

.breadcrumb a {
    color: var(--antique-gold);
    text-decoration: none;
}

.breadcrumb span {
    color: #fff;
}

.article-hero-title {
    font-family: "Playfair Display", serif;
    font-size: 3.5rem;
    font-weight: 600;
    margin-bottom: 2rem;
    line-height: 1.2;
}

.article-meta-hero {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin-top: 2rem;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.9rem;
}

.article-content-section {
    padding: 80px 0;
    background: #fff;
}

.article-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.article-main {
    max-width: 100%;
}

.article-intro {
    margin-bottom: 3rem;
}

.article-lead {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.8;
    font-style: italic;
}

.article-body h2 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    font-weight: 600;
    margin: 3rem 0 1.5rem;
    color: var(--forest-green);
}

.article-body h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.5rem;
    font-weight: 600;
    margin: 2.5rem 0 1rem;
    color: var(--forest-green);
}

.article-body p {
    margin-bottom: 1.5rem;
    line-height: 1.8;
    color: #333;
}

.article-body ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.article-body li {
    margin-bottom: 0.5rem;
    line-height: 1.6;
}

.article-image-large {
    margin: 2rem 0;
    text-align: center;
}

.article-image-large img {
    max-width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
}

.image-caption {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: #666;
    font-style: italic;
}

.info-box {
    background: #f8f9fa;
    border-left: 4px solid var(--antique-gold);
    padding: 2rem;
    margin: 2rem 0;
    border-radius: 8px;
}

.info-box h4 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.tips-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 2rem 0;
}

.tip-item {
    background: #f8f9fa;
    padding: 1.5rem;
    border-radius: 12px;
    border: 1px solid #e9ecef;
}

.tip-item h4 {
    color: var(--forest-green);
    margin-bottom: 1rem;
}

.call-to-action {
    background: linear-gradient(135deg, var(--forest-green) 0%, #1a3d1a 100%);
    color: #fff;
    padding: 3rem;
    border-radius: 16px;
    text-align: center;
    margin: 3rem 0;
}

.call-to-action h3 {
    font-family: "Playfair Display", serif;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.call-to-action p {
    margin-bottom: 2rem;
    font-size: 1.1rem;
    opacity: 0.9;
}

.article-footer {
    margin-top: 4rem;
    padding-top: 2rem;
    border-top: 1px solid #e9ecef;
}

.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.tag {
    background: var(--forest-green);
    color: #fff;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.article-share {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.article-share span {
    font-weight: 600;
    color: #666;
}

.article-share a {
    color: var(--forest-green);
    font-size: 1.2rem;
    transition: color 0.3s ease;
}

.article-share a:hover {
    color: var(--antique-gold);
}

/* Sidebar Styles */
.article-sidebar {
    position: sticky;
    top: 2rem;
}

.sidebar-widget {
    background: #f8f9fa;
    padding: 2rem;
    border-radius: 12px;
    margin-bottom: 2rem;
    border: 1px solid #e9ecef;
}

.sidebar-widget h3 {
    font-family: "Playfair Display", serif;
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--forest-green);
}

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

.author-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: 0 auto 1rem;
    display: block;
}

.author-info h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
}

.author-info p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.6;
}

.related-article {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.related-article:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.related-article img {
    width: 80px;
    height: 60px;
    object-fit: cover;
    border-radius: 8px;
}

.related-content h4 {
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
    color: var(--forest-green);
    line-height: 1.3;
}

.related-content a {
    color: var(--antique-gold);
    text-decoration: none;
    font-size: 0.8rem;
    font-weight: 600;
}

.related-content a:hover {
    color: var(--forest-green);
}

.sidebar-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.sidebar-newsletter-form input {
    padding: 0.8rem 1rem;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9rem;
}

.sidebar-newsletter-form button {
    background: var(--forest-green);
    color: #fff;
    border: none;
    padding: 0.8rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s ease;
}

.sidebar-newsletter-form button:hover {
    background: var(--antique-gold);
}

.package-item {
    background: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border: 1px solid #e9ecef;
}

.package-item h4 {
    color: var(--forest-green);
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.package-item p {
    color: #666;
    font-size: 0.9rem;
    margin-bottom: 1rem;
}

.package-item .btn-secondary {
    background: var(--antique-gold);
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.package-item .btn-secondary:hover {
    background: #d4af37;
}



/* Responsive Design for Blog */
@media (max-width: 1024px) {
    .featured-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .featured-article.featured-large {
        grid-row: auto;
    }
    
    .article-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .article-sidebar {
        position: static;
    }
}

@media (max-width: 768px) {
    .featured-articles,
    .recent-articles,
    .article-content-section {
        padding: 60px 0;
    }
    
    .article-hero-title {
        font-size: 2.5rem;
    }
    
    .article-meta-hero {
        flex-direction: column;
        gap: 1rem;
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-form .form-group {
        flex-direction: column;
    }
    
    .tips-grid {
        grid-template-columns: 1fr;
    }
    
    .terms-section,
    .privacy-section {
        padding: 1.5rem;
    }
}

@media (max-width: 480px) {
    .article-hero-title {
        font-size: 2rem;
    }
    
    .featured-article .article-content,
    .article-card .article-content {
        padding: 1rem;
    }
    
    .article-body h2 {
        font-size: 1.5rem;
    }
    
    .article-body h3 {
        font-size: 1.3rem;
    }
}

/* General Form Message Styles for All Forms */
.form-message {
  text-align: center;
  margin-top: 20px;
  padding: 15px;
  border-radius: 8px;
  font-weight: 600;
  display: none;
}

.form-message.success {
  background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
  color: #155724;
  border: 1px solid #c3e6cb;
}

.form-message.error {
  background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
  color: #721c24;
  border: 1px solid #f5c6cb;
}

/* Button Loading States */
.btn-hero-primary.loading,
.btn.loading {
  cursor: not-allowed;
  opacity: 0.7;
  background: linear-gradient(135deg, #ccc 0%, #999 100%);
  transform: scale(0.98);
}

.btn-hero-primary.loading:hover,
.btn.loading:hover {
  transform: scale(0.98);
  background: linear-gradient(135deg, #ccc 0%, #999 100%);
}

/* Loading animation for buttons */
@keyframes spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
