* Package detail pages */
.package-hero { position: relative; }
.package-hero-image { width: 100%; height: 36rem; object-fit: cover; }
.package-hero-overlay { position:absolute; inset:0; background: linear-gradient(180deg, rgba(0,0,0,0.2), rgba(0,0,0,0.55)); }
.package-hero-content { position:absolute; inset:0; display:flex; align-items:center; justify-content:center; }
.package-hero-title { color:#fff; font-size:4rem; font-weight:800; text-shadow:0 4px 12px rgba(0,0,0,0.5); }

.package-detail { padding: 6rem 0; }
.package-detail-container { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; gap: 3rem; grid-template-columns: 1fr; }
.package-sidebar .package-summary { background:#fff; border-radius:1rem; box-shadow:0 10px 24px rgba(0,0,0,0.08); padding:2rem; }
.package-summary h3 { font-size:2rem; font-weight:800; margin-bottom:1rem; }
.package-summary ul { margin-left:1rem; }
.package-cta { display:inline-block; margin-top:1.5rem; background:linear-gradient(135deg,#f97316,#ea580c); color:#fff; padding:1rem 1.6rem; border-radius:.6rem; text-decoration:none; font-weight:700; }
.package-content h2 { font-size:2.2rem; font-weight:800; margin-bottom:1rem; }
.package-content p { font-size:1.6rem; color:#4b5563; margin-bottom:1.5rem; line-height:1.7; }
.itinerary-list { margin-left:1.5rem; color:#374151; font-size:1.6rem; line-height:1.7; }

/* Package detail: extras */
.itinerary-day { margin-bottom: 1.25rem; }
.info-grid { display: grid; grid-template-columns: 1fr; gap: 2rem; margin-top: 2rem; }
.info-card { background:#fff; border-radius:1rem; box-shadow:0 8px 18px rgba(0,0,0,0.06); padding:1.5rem; }
.info-card h3 { font-size:1.8rem; font-weight:800; margin-bottom:0.75rem; }
.info-card ul { margin-left:1.2rem; line-height:1.8; color:#4b5563; }
.note { background:#fff7ed; border-left:4px solid #f97316; padding:1rem 1.25rem; border-radius:0.6rem; color:#7c2d12; }

@media (min-width: 1024px) {
  .info-grid { grid-template-columns: repeat(3, 1fr); }
}

/* Tabs UI for package pages */
.tabs { margin-top: 2rem; }
.tab-nav { display:flex; gap:2rem; border-bottom:1px solid #e5e7eb; overflow-x:auto; }
.tab-link { padding:1rem 0; font-weight:700; color:#6b7280; white-space:nowrap; border-bottom:3px solid transparent; cursor:pointer; }
.tab-link.active { color:#ea580c; border-color:#ea580c; }
.tab-panels { padding-top:2rem; }
.tab-panel { display:none; }
.tab-panel.active { display:block; }

/* Timeline style for day-by-day */
.timeline { position:relative; }
.timeline::before { content:""; position:absolute; top:0; bottom:0; left:1.2rem; width:2px; background:#e5e7eb; }
.timeline-item { position:relative; padding-left:3.2rem; margin-bottom:2rem; }
.timeline-item::before { content:""; position:absolute; left:0.6rem; top:0.4rem; width:1.2rem; height:1.2rem; background:#fff; border:3px solid #f97316; border-radius:50%; }
.timeline-title { font-size:1.8rem; font-weight:800; margin-bottom:0.5rem; }
.timeline-text { font-size:1.6rem; line-height:1.7; color:#4b5563; }

@media (min-width: 1024px) {
  .package-detail-container { grid-template-columns: 320px 1fr; align-items: start; }
}
/* Safari Packages */
.packages-section {
   padding: 8rem 0;
   background: transparent;
}

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

.packages-title {
   text-align: center;
   font-size: 4.2rem;
   font-weight: 800;
   color: #1a1a1a;
   margin-bottom: 4rem;
}

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

.package-card {
   background: #ffffff;
   border-radius: 1.2rem;
   overflow: hidden;
   box-shadow: 0 12px 24px rgba(0,0,0,0.08);
   transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.package-card:hover {
   transform: translateY(-6px);
   box-shadow: 0 18px 36px rgba(0,0,0,0.12);
}

.package-image {
   width: 100%;
   height: 22rem;
   object-fit: cover;
}

.package-content { padding: 2rem; }

.package-title {
   font-size: 2rem;
   font-weight: 800;
   color: #111827;
   margin-bottom: 0.75rem;
}

.package-description {
   font-size: 1.6rem;
   line-height: 1.6;
   color: #4b5563;
   margin-bottom: 1.5rem;
}

.package-button {
   display: inline-block;
   background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
   color: #fff;
   padding: 1rem 1.6rem;
   border-radius: 0.6rem;
   text-decoration: none;
   font-weight: 700;
}
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap');
/* Social brand colors for header icons */
.top-bar-social .social-link-top.twitter .social-icon { color: #1DA1F2; }
.top-bar-social .social-link-top.youtube .social-icon { color: #FF0000; }
.top-bar-social .social-link-top.instagram .social-icon { color: #E4405F; }
.top-bar-social .social-link-top .social-icon { transition: transform .2s ease, opacity .2s ease; }
.top-bar-social .social-link-top:hover .social-icon { transform: translateY(-2px); opacity: .9; }

* {
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
   margin: 0;
   padding: 0;
   box-sizing: border-box;
   outline: none;
   border: none;
   text-decoration: none;
   text-transform: none;
}

html {
   font-size: 62.5%; /* Smaller base font size like screenshot */
   overflow-x: hidden;
}

/* Base Typography - Moderate, readable font sizes */
body {
   font-size: 1.9rem;
   line-height: 1.7;
   font-weight: 400;
   color: #1a1a1a;
}

p {
   font-size: 1.9rem;
   line-height: 1.7;
   font-weight: 400;
   color: #1a1a1a;
}

/* Moderate, readable headings */
h1 {
   font-size: 4.8rem;
   line-height: 1.1;
   font-weight: 700;
   color: #1a1a1a;
}

h2 {
   font-size: 4.2rem;
   line-height: 1.2;
   font-weight: 700;
   color: #1a1a1a;
}

h3 {
   font-size: 3.2rem;
   line-height: 1.3;
   font-weight: 600;
   color: #1a1a1a;
}

h4 {
   font-size: 2.6rem;
   line-height: 1.4;
   font-weight: 600;
   color: #1a1a1a;
}

h5 {
   font-size: 2.2rem;
   line-height: 1.5;
   font-weight: 500;
   color: #1a1a1a;
}

h6 {
   font-size: 2rem;
   line-height: 1.5;
   font-weight: 500;
   color: #1a1a1a;
}



/* Islamic Geometric Pattern Background */
body::before {
   content: '';
   position: fixed !important;
   top: 0;
   left: 0;
   width: 100%;
   height: 100%;
   background: 
      /* Light grey base background */
      #e8e8e8,
      /* Complex geometric pattern using multiple gradients */
      /* Hexagonal centers */
      radial-gradient(circle at 50% 50%, transparent 15px, rgba(255,255,255,0.95) 16px, rgba(255,255,255,0.95) 18px, transparent 19px),
      /* Star patterns at intersections */
      conic-gradient(from 0deg at 25% 25%, transparent 0deg, rgba(255,255,255,0.98) 30deg, transparent 60deg, rgba(255,255,255,0.98) 90deg, transparent 120deg, rgba(255,255,255,0.98) 150deg, transparent 180deg, rgba(255,255,255,0.98) 210deg, transparent 240deg, rgba(255,255,255,0.98) 270deg, transparent 300deg, rgba(255,255,255,0.98) 330deg, transparent 360deg),
      conic-gradient(from 0deg at 75% 25%, transparent 0deg, rgba(255,255,255,0.98) 30deg, transparent 60deg, rgba(255,255,255,0.98) 90deg, transparent 120deg, rgba(255,255,255,0.98) 150deg, transparent 180deg, rgba(255,255,255,0.98) 210deg, transparent 240deg, rgba(255,255,255,0.98) 270deg, transparent 300deg, rgba(255,255,255,0.98) 330deg, transparent 360deg),
      conic-gradient(from 0deg at 25% 75%, transparent 0deg, rgba(255,255,255,0.98) 30deg, transparent 60deg, rgba(255,255,255,0.98) 90deg, transparent 120deg, rgba(255,255,255,0.98) 150deg, transparent 180deg, rgba(255,255,255,0.98) 210deg, transparent 240deg, rgba(255,255,255,0.98) 270deg, transparent 300deg, rgba(255,255,255,0.98) 330deg, transparent 360deg),
      conic-gradient(from 0deg at 75% 75%, transparent 0deg, rgba(255,255,255,0.98) 30deg, transparent 60deg, rgba(255,255,255,0.98) 90deg, transparent 120deg, rgba(255,255,255,0.98) 150deg, transparent 180deg, rgba(255,255,255,0.98) 210deg, transparent 240deg, rgba(255,255,255,0.98) 270deg, transparent 300deg, rgba(255,255,255,0.98) 330deg, transparent 360deg),
      /* Connecting lines */
      linear-gradient(0deg, rgba(255,255,255,0.9) 1px, transparent 1px),
      linear-gradient(60deg, rgba(255,255,255,0.9) 1px, transparent 1px),
      linear-gradient(120deg, rgba(255,255,255,0.9) 1px, transparent 1px);
   background-size: 100% 100%, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px, 120px 120px;
   background-position: 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0, 0 0;
   pointer-events: none;
   z-index: -1 !important;
}

/* Ensure content sections have transparent background */
section {
   background: transparent !important;
   position: relative;
   z-index: 1;
   margin: 1rem 0;
}

/* Specific styling for sections that should show savannah background */
section.bg-white {
   background: transparent !important;
}

/* Subtle textured background like the original */
body {
   background: #f8f9fa !important;
   background-image: 
      /* Subtle irregular lines pattern */
      repeating-linear-gradient(
         45deg,
         transparent,
         transparent 2px,
         rgba(200, 200, 200, 0.03) 2px,
         rgba(200, 200, 200, 0.03) 3px
      ),
      repeating-linear-gradient(
         -45deg,
         transparent,
         transparent 3px,
         rgba(180, 180, 180, 0.02) 3px,
         rgba(180, 180, 180, 0.02) 4px
      ),
      /* Fine grain texture */
      repeating-linear-gradient(
         90deg,
         transparent,
         transparent 1px,
         rgba(220, 220, 220, 0.01) 1px,
         rgba(220, 220, 220, 0.01) 2px
      ) !important;
   background-size: 100px 100px, 150px 150px, 50px 50px !important;
   background-position: 0 0, 25px 25px, 0 0 !important;
   background-attachment: fixed !important;
}



/* Hero section should have a stronger background to ensure text readability */
.hero {
   background: rgba(0, 0, 0, 0.7);
   backdrop-filter: blur(2px);
}

/* Custom Color Classes */
.bg-dark-forest { background-color: #1A3C34; }
.bg-sunset-orange { background-color: #8A5522; }
.bg-safari-green { background-color: #2F4F4F; }
.bg-earth-red { background-color: #8B4513; }
.text-golden-sand { color: #E8B923; }
.text-safari-green { color: #2F4F4F; }
.text-earth-red { color: #8B4513; }

/* Moderate text for common elements */
.text-lg {
   font-size: 1.4rem !important; /* Smaller size */
}

.text-xl {
   font-size: 1.6rem !important; /* Smaller size */
}

.text-2xl {
   font-size: 1.8rem !important; /* Smaller size */
}

.text-3xl {
   font-size: 2.2rem !important; /* Smaller size */
}

.text-4xl {
   font-size: 2.6rem !important; /* Smaller size */
}

.text-5xl {
   font-size: 3rem !important; /* Smaller size */
}

/* Moderate text for specific content areas */
.card p, .card li {
   font-size: 1.6rem !important;
   line-height: 1.5;
}

.feature-text, .description-text {
   font-size: 1.8rem !important;
   line-height: 1.5;
}

.button-text {
   font-size: 1.6rem !important;
}

.nav-link {
   font-size: 1.6rem !important;
}

/* Section Gradient */
.section-gradient {
   background: transparent !important;
   margin: 1rem 0;
}

.section-white-bg {
   background: white;
}

/* Card Hover Effects */
.card-hover {
   transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

/* Button Hover Effects */
.btn-hover {
   transition: background-color 0.3s ease;
}

/* Moderate buttons and interactive elements */
.btn, button, a.btn {
   font-size: 1.4rem !important;
   padding: 0.8rem 1.6rem !important;
}

/* Moderate form elements */
input, select, textarea {
   font-size: 1.4rem !important;
   padding: 0.8rem !important;
}

/* Moderate card content */
.card h3 {
   font-size: 1.8rem !important;
}

.card p {
   font-size: 1.4rem !important;
   line-height: 1.5;
}

/* Moderate list items */
li {
   font-size: 1.6rem !important;
   line-height: 1.5;
}

/* Moderate span elements */
span {
   font-size: 1.6rem !important;
}

/* Home page specific moderate text */
.hero .content span {
   font-size: 2rem !important; /* Moderate size */
   font-weight: 600;
   color: #E8B923;
   letter-spacing: 0.2rem;
}

.hero .content h1 {
   font-size: 3.8rem !important; /* Moderate size */
   font-weight: 700;
}

/* Feature cards moderate text */
.feature-card h3 {
   font-size: 2.2rem !important;
}

.feature-card p {
   font-size: 1.6rem !important;
   line-height: 1.5;
}

/* Welcome section moderate text */
.welcome-section p {
   font-size: 1.8rem !important;
   line-height: 1.5;
}

/* Testimonial text */
.testimonial p {
   font-size: 1.6rem !important;
   line-height: 1.5;
}

.testimonial h4 {
   font-size: 1.8rem !important;
}

/* Header Styles */
header {
   position: sticky;
   top: 0;
   left: 0;
   right: 0;
   z-index: 10;
   background-color: white;
   padding: 0.25rem 4rem;
   display: flex;
   justify-content: space-between;
   align-items: center;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.header-minimal {
   padding-top: 0.25rem;
   padding-bottom: 0.25rem;
   box-shadow: 0 1px 4px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

/* Top Bar Styles */
.top-bar {
   background-color: #374151;
   color: white;
   padding: 0.5rem 0;
   font-size: 1.2rem;
}

/* Main Header Styles */
.main-header {
   background-color: white;
   box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

header .logo img {
   width: 5rem;
   height: 5rem;
   border-radius: 50%;
   transition: transform 0.3s ease;
}

.logo-img {
   transition: transform 0.3s ease;
}

.logo-img:hover {
   transform: scale(1.1);
}

header .nav-btn {
   font-size: 1.6rem; /* Original size */
   color: #fff;
   background: none;
   padding: 0.8rem;
   display: none; /* Imefichwa kwenye desktop */
   cursor: pointer;
}

header .navbar {
   display: flex;
   align-items: center;
}

header .navbar a {
   font-size: 1.4rem; /* Original size */
   color: #fff;
   margin-left: 1.5rem;
   font-weight: 500;
   transition: color 0.3s ease;
}

header .navbar a:hover {
   color: #E8B923; /* text-golden-sand */
}

/* Header Animation */
.header-hidden {
   transform: translateY(-100%);
}

.header-visible {
   transform: translateY(0);
}

/* Mobile Menu Styles */
@media (max-width: 1023px) {
   .nav-menu {
      position: fixed;
      top: 0;
      right: -100%;
      width: 300px;
      height: 100vh;
      background-color: white;
      box-shadow: -4px 0 6px rgba(0, 0, 0, 0.1);
      padding: 6rem 2rem 2rem 2rem;
      flex-direction: column;
      transition: right 0.3s ease;
      z-index: 1000;
   }
   
   .nav-menu.active {
      right: 0;
   }
   
   .nav-menu a {
      display: block;
      padding: 1rem 0;
      border-bottom: 1px solid #e5e7eb;
      color: #374151;
      font-size: 1.6rem;
   }
   
   .nav-menu a:hover {
      color: #ea580c;
   }
   
   .nav-menu a:last-child {
      border-bottom: none;
   }
}

/* Hero Section */
.hero {
   background: url('../images/home-big-1.jpg') center/cover no-repeat;
   height: 80vh;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   color: #fff;
   box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.5);
   position: relative;
}

.hero .content span {
   font-size: 2.2rem;
   font-weight: 600;
   color: #E8B923; /* text-golden-sand */
   letter-spacing: 0.2rem;
}

.hero .content h1 {
   font-size: 6.4rem;
   font-weight: 700;
   margin-top: 1rem;
   letter-spacing: -0.02rem;
   line-height: 1.0;
}

.hero .content a {
   display: inline-block;
   margin-top: 2rem;
   padding: 1.8rem 3.6rem;
   font-size: 2rem;
   font-weight: 600;
   border-radius: 0.8rem;
   transition: all 0.3s ease;
   letter-spacing: 0.01rem;
}

.hero .content a:first-of-type {
   background-color: #E8B923; /* bg-golden-sand */
   color: #1A3C34; /* text-dark-forest */
   margin-right: 1.5rem;
}

.hero .content a:first-of-type:hover {
   background-color: #d4a51f;
}

.hero .content a:last-of-type {
   background-color: #8A5522; /* bg-sunset-orange */
   color: #fff;
}

.hero .content a:last-of-type:hover {
   background-color: #743d1b;
}

/* Section Styles */
section {
   padding: 8rem 10%;
   background: linear-gradient(to bottom, #F5F5DC, #E8B923); /* section-gradient */
}

section h2 {
   text-align: center;
   font-size: 4.8rem;
   font-weight: 700;
   color: #1A3C34; /* text-dark-forest */
   margin-bottom: 3rem;
   letter-spacing: -0.02rem;
   line-height: 1.1;
}

section .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(28rem, 1fr));
   gap: 2rem;
}

section .box {
   background: #fff;
   padding: 2.4rem;
   border-radius: 0.8rem;
   box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
   transition: transform 0.3s ease;
}

section .box:hover {
   transform: translateY(-5px);
}

section .box img {
   width: 100%;
   border-radius: 0.5rem;
   margin-bottom: 1.5rem;
   transition: transform 0.3s ease;
}

section .box:hover img {
   transform: scale(1.05);
}

section .box h3 {
   font-size: 2.6rem;
   font-weight: 600;
   color: #8B4513; /* text-earth-red */
}

section .box p {
   font-size: 1.8rem;
   color: #666;
   margin: 1rem 0;
}

section .box a {
   display: inline-block;
   background: #E8B923; /* bg-golden-sand */
   color: #1A3C34; /* text-dark-forest */
   padding: 0.9rem 2.6rem;
   font-size: 1.8rem;
   border-radius: 5rem;
   transition: background-color 0.3s ease;
}

section .box a:hover {
   background: #d4a51f;
}

/* Footer Styles */
footer {
   background-color: #8A5522; /* bg-sunset-orange */
   padding: 4rem 10%;
   color: #fff;
   box-shadow: inset 0 0 20px rgba(0, 0, 0, 0.2);
}

footer .box-container {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(22rem, 1fr));
   gap: 2rem;
}

footer .box h3 {
   font-size: 2.4rem !important;
   font-weight: 600;
   color: #E8B923; /* text-golden-sand */
   margin-bottom: 1rem;
}

footer .box a, footer .box p {
   font-size: 2rem !important;
   color: #fff;
   margin-bottom: 0.5rem;
   display: block;
   transition: color 0.3s ease;
}

footer .box a:hover {
   color: #E8B923; /* text-golden-sand */
}

footer .credit {
   text-align: center;
   font-size: 2rem !important;
   margin-top: 3rem;
}

footer .credit span {
   color: #E8B923; /* text-golden-sand */
   font-weight: 600;
}

/* Mobile Nav Bar */
@media (max-width: 768px) {
   header .nav-btn {
      display: inline-block;
   }
   
   /* Ensure video is visible on mobile */
   .hero video,
   .hero-video {
      display: block !important;
      visibility: visible !important;
      opacity: 1 !important;
      position: absolute !important;
      top: 0 !important;
      left: 0 !important;
      width: 100% !important;
      height: 100% !important;
      object-fit: cover !important;
      z-index: 1 !important;
   }

   header .navbar {
      display: none;
      position: absolute;
      top: 100%;
      right: 0;
      width: 20rem;
      background-color: #1A3C34;
      padding: 2rem;
      text-align: right;
   }

   header .navbar.active {
      display: block;
   }

   header .navbar a {
      display: block;
      margin: 1.5rem 0;
      font-size: 1.6rem;
   }

   /* Mobile navigation is handled by the styles above */

   .hero .content h1 {
      font-size: 4.2rem;
      line-height: 1.1;
   }

   section {
      padding: 4rem 5%;
   }

   section h2 {
      font-size: 3.6rem;
      line-height: 1.2;
   }
}

/* New Home Page Styles */
.hero {
   height: 100vh;
   position: relative;
   overflow: hidden;
}



.hero .bg-black {
   background-color: rgba(0, 0, 0, 0.4);
}

.hero .bg-opacity-40 {
   opacity: 0.4;
}

.hero .z-10 {
   z-index: 10;
}

.hero .max-w-2xl {
   max-width: 42rem;
}

.hero .mx-auto {
   margin-left: auto;
   margin-right: auto;
}

.hero .transform {
   transform: scale(1.05);
}

.hero .hover\:scale-105:hover {
   transform: scale(1.05);
}

.hero .transition-duration-300 {
   transition-duration: 300ms;
}

/* Enhanced Typography for Altezza-style look */
.text-center {
   text-align: center;
}

.font-medium {
   font-weight: 500;
}

.font-semibold {
   font-weight: 600;
}

.font-bold {
   font-weight: 700;
}

/* Improved text colors */
.text-gray-700 {
   color: #374151 !important;
}

.text-gray-800 {
   color: #1f2937 !important;
}

.text-gray-900 {
   color: #111827 !important;
}

/* Better button styling */
.btn-hover {
   transition: all 0.3s ease;
}

.btn-hover:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
}

/* Container and Grid Styles */
.container {
   max-width: 1200px;
   margin: 0 auto;
}

.mx-auto {
   margin-left: auto;
   margin-right: auto;
}

.px-6 {
   padding-left: 1.5rem;
   padding-right: 1.5rem;
}

.py-20 {
   padding-top: 5rem;
   padding-bottom: 5rem;
}

.py-16 {
   padding-top: 4rem;
   padding-bottom: 4rem;
}

.mb-12 {
   margin-bottom: 3rem;
}

.mb-8 {
   margin-bottom: 2rem;
}

.mb-6 {
   margin-bottom: 1.5rem;
}

.mb-4 {
   margin-bottom: 1rem;
}

.mb-2 {
   margin-bottom: 0.5rem;
}

.mt-4 {
   margin-top: 1rem;
}

.mt-8 {
   margin-top: 2rem;
}

.mt-6 {
   margin-top: 1.5rem;
}

.mt-2 {
   margin-top: 0.5rem;
}

/* Grid Layouts */
.grid {
   display: grid;
}

.grid-cols-1 {
   grid-template-columns: repeat(1, minmax(0, 1fr));
}

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

.grid-cols-3 {
   grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-cols-4 {
   grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-cols-6 {
   grid-template-columns: repeat(6, minmax(0, 1fr));
}

.gap-8 {
   gap: 2rem;
}

.gap-6 {
   gap: 1.5rem;
}

.gap-4 {
   gap: 1rem;
}

/* Text Styles */
.text-center {
   text-align: center;
}

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

.text-4xl {
   font-size: 2.25rem;
}

.text-5xl {
   font-size: 3rem;
}

.text-6xl {
   font-size: 3.75rem;
}

.text-xl {
   font-size: 1.25rem;
}

.text-2xl {
   font-size: 1.5rem;
}

.text-lg {
   font-size: 1.125rem;
}

.text-sm {
   font-size: 0.875rem;
}

.font-bold {
   font-weight: 700;
}

.font-semibold {
   font-weight: 600;
}

.font-medium {
   font-weight: 500;
}

/* Background Colors */
.bg-white {
   background-color: rgba(255, 255, 255, 0.95) !important;
   backdrop-filter: blur(1px);
}

/* Override Tailwind bg-white for sections to show blueprint background */
section.bg-white {
   background-color: transparent !important;
   backdrop-filter: none;
}

.bg-black {
   background-color: #000000;
}

/* Text Colors */
.text-white {
   color: #ffffff;
}

.text-gray-500 {
   color: #6b7280;
}

.text-gray-600 {
   color: #4b5563;
}

.text-gray-700 {
   color: #374151;
}

/* Border Radius */
.rounded-xl {
   border-radius: 0.75rem;
}

.rounded-full {
   border-radius: 9999px;
}

.rounded-md {
   border-radius: 0.375rem;
}

/* Shadows */
.shadow-xl {
   box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.shadow-2xl {
   box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
}

.shadow-lg {
   box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.shadow-md {
   box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

/* Padding and Spacing */
.p-8 {
   padding: 2rem;
}

.p-6 {
   padding: 1.5rem;
}

.p-3 {
   padding: 0.75rem;
}

.py-4 {
   padding-top: 1rem;
   padding-bottom: 1rem;
}

.py-3 {
   padding-top: 0.75rem;
   padding-bottom: 0.75rem;
}

.py-2 {
   padding-top: 0.5rem;
   padding-bottom: 0.5rem;
}

.px-8 {
   padding-left: 2rem;
   padding-right: 2rem;
}

.px-6 {
   padding-left: 1.5rem;
   padding-right: 1.5rem;
}

.px-4 {
   padding-left: 1rem;
   padding-right: 1rem;
}

/* Flexbox */
.flex {
   display: flex;
}

.flex-col {
   flex-direction: column;
}

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

.items-start {
   align-items: flex-start;
}

.justify-center {
   justify-content: center;
}

.justify-between {
   justify-content: space-between;
}

.space-x-4 > * + * {
   margin-left: 1rem;
}

.space-y-2 > * + * {
   margin-top: 0.5rem;
}

/* Position */
.relative {
   position: relative;
}

.absolute {
   position: absolute;
}

.inset-0 {
   top: 0;
   right: 0;
   bottom: 0;
   left: 0;
}

.bottom-0 {
   bottom: 0;
}

.left-0 {
   left: 0;
}

.right-0 {
   right: 0;
}

/* Object Fit */
.object-cover {
   object-fit: cover;
}

/* Width and Height */
.w-full {
   width: 100%;
}

.h-full {
   height: 100%;
}

.h-64 {
   height: 16rem;
}

.h-48 {
   height: 12rem;
}

.h-20 {
   height: 5rem;
}

.w-20 {
   width: 5rem;
}

.w-12 {
   width: 3rem;
}

.h-12 {
   height: 3rem;
}

.w-10 {
   width: 2.5rem;
}

.h-10 {
   height: 2.5rem;
}

.w-6 {
   width: 1.5rem;
}

.h-6 {
   height: 1.5rem;
}

/* Opacity */
.opacity-60 {
   opacity: 0.6;
}

.hover\:opacity-100:hover {
   opacity: 1;
}

/* Transitions */
.transition-opacity {
   transition-property: opacity;
   transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
   transition-duration: 150ms;
}

/* Gradient Overlays */
.bg-gradient-to-t {
   background-image: linear-gradient(to top, var(--tw-gradient-stops));
}

.from-black\/70 {
   --tw-gradient-from: rgba(0, 0, 0, 0.7);
   --tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgba(0, 0, 0, 0));
}

.to-transparent {
   --tw-gradient-to: transparent;
}

/* Responsive Design */
@media (max-width: 768px) {
   .md\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
   
   .md\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
   }
   
   .md\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
   }
   
   .md\:text-2xl {
      font-size: 1.5rem;
   }
   
   .md\:text-5xl {
      font-size: 3rem;
   }
   
   .md\:text-6xl {
      font-size: 3.75rem;
   }
   
   .md\:text-xl {
      font-size: 1.25rem;
   }
   
   .md\:text-lg {
      font-size: 1.125rem;
   }
   
   .md\:flex-row {
      flex-direction: row;
   }
   
   .md\:text-left {
      text-align: left;
   }
   
   .md\:h-64 {
      height: 16rem;
   }
   
   .md\:w-auto {
      width: auto;
   }
   
   .md\:w-full {
      width: 100%;
   }
}

@media (max-width: 1024px) {
   .lg\:grid-cols-2 {
      grid-template-columns: repeat(2, minmax(0, 1fr));
   }
   
   .lg\:grid-cols-3 {
      grid-template-columns: repeat(3, minmax(0, 1fr));
   }
   
   .lg\:grid-cols-4 {
      grid-template-columns: repeat(4, minmax(0, 1fr));
   }
   
   .lg\:grid-cols-6 {
      grid-template-columns: repeat(6, minmax(0, 1fr));
   }
}

@media (max-width: 450px) {
   html {
      font-size: 50%;
   }

   header .navbar {
      width: 15rem;
   }

   .hero .content span {
      font-size: 1.6rem;
   }

   .hero .content h1 {
      font-size: 2.5rem;
   }

   .hero .content a {
      padding: 1rem 2rem;
      font-size: 1.4rem;
   }
}

/* Custom Header Styles - replacing Tailwind classes */
.top-bar {
   background-color: #374151;
   color: white;
   padding: 0.75rem 0;
}

.top-bar-container {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 1rem;
}

.top-bar-left {
   display: flex;
   align-items: center;
   gap: 3rem;
   font-size: 1.6rem;
}

.top-bar-item {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.top-bar-divider {
   width: 1px;
   height: 1.5rem;
   background-color: #f97316;
}

.top-bar-right {
   display: flex;
   align-items: center;
   gap: 3rem;
   font-size: 1.6rem;
}

.social-link {
   background-color: #4b5563;
   padding: 0.75rem;
   border-radius: 0.25rem;
   transition: background-color 0.3s ease;
}

.social-link:hover {
   background-color: #6b7280;
}

.main-header {
   background-color: white;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 10;
   transition: transform 0.3s ease;
}

.header-container {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 1rem;
}

.logo-container {
   display: flex;
   align-items: center;
}

.logo-link {
   display: flex;
   align-items: center;
   text-decoration: none;
   transition: opacity 0.3s ease;
}

.logo-link:hover {
   opacity: 0.8;
}

.logo-image {
   height: 8rem;
   width: auto;
}

@media (min-width: 1024px) {
   .logo-image {
      height: 10rem;
   }
}

.mobile-rating {
   display: flex;
   flex-direction: column;
   align-items: flex-end;
}

.rating-stars {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   margin-bottom: 0.75rem;
}

.rating-text {
   font-size: 1.8rem;
   font-weight: 700;
   color: #1f2937;
   white-space: nowrap;
}

.rating-link {
   text-decoration: underline;
}

.desktop-nav {
   display: none;
   align-items: center;
   gap: 2rem;
   color: #1f2937;
   font-weight: 500;
   font-size: 1.8rem;
}

.desktop-nav a {
   transition: color 0.3s ease;
}

.desktop-nav a:hover {
   color: #ea580c;
}

.desktop-nav a.active {
   border-bottom: 2px solid #ea580c;
   padding-bottom: 0.5rem;
}

.mobile-menu-btn {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 0.5rem 1rem;
   color: #4b5563;
   transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
   color: #ea580c;
}

.mobile-menu {
   position: fixed;
   inset: 0;
   background-color: #fef7ed;
   z-index: 50;
   display: none;
}

.mobile-menu-content {
   background-color: white;
   height: 100%;
   width: 100%;
   overflow-y: auto;
   padding: 1.5rem;
}

.mobile-menu-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 4rem;
}

.mobile-menu-logo {
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.mobile-menu-logo img {
   height: 13rem;
   width: auto;
   object-fit: contain;
}

.mobile-menu-close {
   color: #4b5563;
   padding: 1rem;
   background-color: #f3f4f6;
   border-radius: 50%;
   transition: all 0.3s ease;
   cursor: pointer;
}

.mobile-menu-close:hover {
   color: #1f2937;
   background-color: #e5e7eb;
}

.mobile-menu-nav {
   margin-bottom: 4rem;
}

.mobile-menu-nav a {
   display: block;
   font-size: 3rem;
   font-weight: 700;
   color: #1f2937;
   padding: 2rem 0;
   border-bottom: 1px solid #e5e7eb;
   transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
   color: #ea580c;
}

.mobile-menu-nav a:last-child {
   border-bottom: none;
}

.whatsapp-button {
   display: inline-flex;
   align-items: center;
   gap: 1.5rem;
   background-color: #22c55e;
   color: white;
   padding: 2rem 3rem;
   border-radius: 0.5rem;
   font-weight: 700;
   transition: background-color 0.3s ease;
   font-size: 2rem;
}

.whatsapp-button:hover {
   background-color: #16a34a;
}

.social-links {
   background-color: #f3f4f6;
   border-radius: 0.5rem;
   padding: 1rem;
}

.social-links-container {
   display: flex;
   justify-content: center;
   gap: 1rem;
}

.social-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s ease;
}

.social-icon:hover {
   transform: scale(1.1);
}

.social-instagram {
   background: linear-gradient(to right, #f97316, #ec4899);
}

.social-facebook {
   background-color: #3b82f6;
}

.social-youtube {
   background-color: #ef4444;
}

.social-linkedin {
   background-color: #0ea5e9;
}

.social-twitter {
   background-color: #000000;
}

.whatsapp-widget {
   position: fixed;
   bottom: 1.5rem;
   right: 1.5rem;
   z-index: 50;
   display: none;
}

.whatsapp-widget-container {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

/* Removed duplicate whatsapp-bubble CSS */

.whatsapp-icon {
   background-color: #22c55e;
   color: white;
   padding: 1rem;
   border-radius: 50%;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.whatsapp-icon:hover {
   background-color: #16a34a;
   transform: scale(1.1);
}

/* Responsive design */
@media (min-width: 1024px) {
   .top-bar-container {
      padding: 0 1.5rem;
   }
   
   .header-container {
      padding: 1rem 1.5rem;
   }
   
   .desktop-nav {
      display: flex;
      gap: 2rem;
   }
   
   .mobile-rating {
      display: none;
   }
   
   .mobile-bottom-nav {
      display: none;
   }
   
   .whatsapp-widget {
      display: block;
   }
}

@media (min-width: 1280px) {
   .top-bar-container {
      padding: 0 3rem;
   }
   
   .header-container {
      padding: 1rem 3rem;
   }
   
   .desktop-nav {
      gap: 3rem;
      font-size: 2rem;
   }
}

@media (max-width: 1023px) {
   .desktop-nav {
      display: none;
   }
   
   .header-container {
      justify-content: flex-start; /* place logo and rating on same row */
      gap: 1.2rem;
      flex-wrap: nowrap; /* keep them on one line */
   }

   .mobile-rating {
      display: flex;
      flex-direction: column; /* restore stars above text */
      align-items: flex-start;
      gap: 0.5rem;
      flex-wrap: nowrap;
      line-height: 1;
      margin-left: 0.5rem; /* small spacing from logo */
      white-space: nowrap; /* keep text on one line */
   }
   
   .mobile-bottom-nav {
      display: block;
   }

   header .mobile-rating .rating-stars {
      display: flex;
      margin-bottom: 0.5rem !important; /* stars above text */
      gap: 0.5rem;
      align-items: center;
   }
   
   header .mobile-rating .rating-star {
      width: 1.25rem;
      height: 1.25rem;
      vertical-align: middle;
   }
   
   .rating-text {
      line-height: 1; /* align baseline with logo */
      display: inline-block;
      transform: translateY(1px); /* nudge to align with company name */
   }
   
   .logo-container, .header-container {
      align-items: center;
   }

   .header-cta { display: none; }
}

/* Custom Header Styles - replacing Tailwind classes */
.top-bar {
   background-color: #374151;
   color: white;
   padding: 0.75rem 0;
}

.top-bar-container {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 0 1rem;
}

.top-bar-left {
   display: flex;
   align-items: center;
   gap: 3rem;
   font-size: 1.6rem;
}

.top-bar-item {
   display: flex;
   align-items: center;
   gap: 1rem;
}

.top-bar-divider {
   width: 1px;
   height: 1.5rem;
   background-color: #f97316;
}

.top-bar-right {
   display: flex;
   align-items: center;
   gap: 3rem;
   font-size: 1.6rem;
}

.social-link {
   background-color: #4b5563;
   padding: 0.75rem;
   border-radius: 0.25rem;
   transition: background-color 0.3s ease;
}

.social-link:hover {
   background-color: #6b7280;
}

.main-header {
   background-color: white;
   box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05);
   position: sticky;
   top: 0;
   z-index: 10;
   transition: transform 0.3s ease;
}

.header-container {
   width: 100%;
   display: flex;
   justify-content: space-between;
   align-items: center;
   padding: 1rem 1rem;
}

.logo-container {
   display: flex;
   align-items: center;
}

.logo-image {
   height: 6rem;
   width: auto;
}

@media (min-width: 1024px) {
   .logo-image {
      height: 8rem;
   }
}

.mobile-rating {
   display: flex;
   flex-direction: column;
   align-items: flex-end;
}

.rating-stars {
   display: flex;
   align-items: center;
   gap: 0.75rem;
   margin-bottom: 0.75rem;
}

.rating-text {
   font-size: 2.8rem;
   font-weight: 700;
   color: #1f2937;
}

.desktop-nav {
   display: none;
   align-items: center;
   gap: 2rem;
   color: #1f2937;
   font-weight: 500;
   font-size: 1.8rem;
}

.desktop-nav a {
   transition: color 0.3s ease;
}

.desktop-nav a:hover {
   color: #ea580c;
}

.desktop-nav a.active {
   border-bottom: 2px solid #ea580c;
   padding-bottom: 0.5rem;
}

.mobile-menu-btn {
   display: flex;
   flex-direction: column;
   align-items: center;
   padding: 0.5rem 1rem;
   color: #4b5563;
   transition: color 0.3s ease;
}

.mobile-menu-btn:hover {
   color: #ea580c;
}

.mobile-menu {
   position: fixed;
   inset: 0;
   background-color: #fef7ed;
   z-index: 50;
   display: none;
}

.mobile-menu-content {
   background-color: white;
   height: 100%;
   width: 100%;
   overflow-y: auto;
   padding: 1.5rem;
}

.mobile-menu-header {
   display: flex;
   align-items: center;
   justify-content: space-between;
   margin-bottom: 4rem;
}

.mobile-menu-logo {
   display: flex;
   align-items: center;
   gap: 1.5rem;
}

.mobile-menu-logo img {
   height: 13rem;
   width: auto;
   object-fit: contain;
}

.mobile-menu-close {
   color: #4b5563;
   padding: 1rem;
   background-color: #f3f4f6;
   border-radius: 50%;
   transition: all 0.3s ease;
   cursor: pointer;
}

.mobile-menu-close:hover {
   color: #1f2937;
   background-color: #e5e7eb;
}

.mobile-menu-nav {
   margin-bottom: 4rem;
}

.mobile-menu-nav a {
   display: block;
   font-size: 3rem;
   font-weight: 700;
   color: #1f2937;
   padding: 2rem 0;
   border-bottom: 1px solid #e5e7eb;
   transition: color 0.3s ease;
}

.mobile-menu-nav a:hover {
   color: #ea580c;
}

.mobile-menu-nav a:last-child {
   border-bottom: none;
}

.whatsapp-button {
   display: inline-flex;
   align-items: center;
   gap: 1.5rem;
   background-color: #22c55e;
   color: white;
   padding: 2rem 3rem;
   border-radius: 0.5rem;
   font-weight: 700;
   transition: background-color 0.3s ease;
   font-size: 2rem;
}

.whatsapp-button:hover {
   background-color: #16a34a;
}

.social-links {
   background-color: #f3f4f6;
   border-radius: 0.5rem;
   padding: 1rem;
}

.social-links-container {
   display: flex;
   justify-content: center;
   gap: 1rem;
}

.social-icon {
   width: 2.5rem;
   height: 2.5rem;
   border-radius: 50%;
   display: flex;
   align-items: center;
   justify-content: center;
   transition: transform 0.3s ease;
}

.social-icon:hover {
   transform: scale(1.1);
}

.social-instagram {
   background: linear-gradient(to right, #f97316, #ec4899);
}

.social-facebook {
   background-color: #3b82f6;
}

.social-youtube {
   background-color: #ef4444;
}

.social-linkedin {
   background-color: #0ea5e9;
}

.social-twitter {
   background-color: #000000;
}

.whatsapp-widget {
   position: fixed;
   bottom: 1.5rem;
   right: 1.5rem;
   z-index: 50;
   display: none;
}

.whatsapp-widget-container {
   display: flex;
   align-items: center;
   gap: 0.75rem;
}

/* Removed duplicate whatsapp-bubble CSS */

.whatsapp-icon {
   background-color: #22c55e;
   color: white;
   padding: 1rem;
   border-radius: 50%;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: all 0.3s ease;
}

.whatsapp-icon:hover {
   background-color: #16a34a;
   transform: scale(1.1);
}

/* Responsive design */
@media (min-width: 1024px) {
   .top-bar-container {
      padding: 0 1.5rem;
   }
   
   .header-container {
      padding: 1rem 1.5rem;
   }
   
   .desktop-nav {
      display: flex;
      gap: 2rem;
   }
   
   .mobile-rating {
      display: none;
   }
   
   .mobile-bottom-nav {
      display: none;
   }
   
   .whatsapp-widget {
      display: block;
   }
}

@media (min-width: 1280px) {
   .top-bar-container {
      padding: 0 3rem;
   }
   
   .header-container {
      padding: 1rem 3rem;
   }
   
   .desktop-nav {
      gap: 3rem;
      font-size: 2rem;
   }
}

/* Hero Video Background - Clean and Simple */
.hero video {
   position: absolute !important;
   top: 0 !important;
   left: 0 !important;
   width: 100% !important;
   height: 100% !important;
   object-fit: cover !important;
   z-index: 1 !important;
   display: block !important;
   visibility: visible !important;
   opacity: 1 !important;
}

/* Modern Footer Styles */
.footer-modern {
   background: linear-gradient(135deg, #1a472a 0%, #2d5a3d 50%, #1a472a 100%);
   color: #ffffff;
   position: relative;
   overflow: hidden;
}

.footer-modern::before {
   content: '';
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.03)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.02)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.02)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
   pointer-events: none;
}

.footer-main {
   padding: 4rem 0 2rem;
   position: relative;
   z-index: 2;
}

.footer-logo-section {
   display: flex;
   flex-direction: column !important;
   align-items: center;
   justify-content: center;
   gap: 1rem !important;
   margin-bottom: 3rem;
   padding-bottom: 2rem;
   border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
   width: auto;
   height: 12rem !important;
   filter: brightness(0) invert(1);
   opacity: 0.9;
   transition: all 0.3s ease;
}

.footer-logo:hover {
   opacity: 1;
   transform: scale(1.05);
}

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

.footer-company-name {
   display: none !important;
}

.footer-tagline {
   color: #e5e7eb;
   font-size: 1.6rem !important;
   margin: 0;
   font-style: italic;
}

.footer-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
   gap: 3rem;
   margin-bottom: 2rem;
}

.footer-section {
   position: relative;
}

.footer-heading {
   color: #fbbf24;
   font-size: 1.8rem !important;
   font-weight: 700;
   text-transform: uppercase;
   letter-spacing: 0.1em;
   margin-bottom: 1.5rem;
   position: relative;
   padding-bottom: 0.75rem;
}

.footer-heading::after {
   content: '';
   position: absolute;
   bottom: 0;
   left: 0;
   width: 3rem;
   height: 2px;
   background: linear-gradient(90deg, #fbbf24, transparent);
   border-radius: 1px;
}

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

.footer-links li {
   margin-bottom: 0.75rem;
}

.footer-links a {
   color: #e5e7eb;
   text-decoration: none;
   font-size: 1.6rem !important;
   transition: all 0.3s ease;
   position: relative;
   padding-left: 0;
}

.footer-links a::before {
   content: '→';
   position: absolute;
   left: -1rem;
   opacity: 0;
   transition: all 0.3s ease;
   color: #fbbf24;
}

.footer-links a:hover {
   color: #fbbf24;
   padding-left: 1rem;
}

.footer-links a:hover::before {
   opacity: 1;
}

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

.contact-item {
   display: flex;
   flex-direction: column;
   gap: 0.25rem;
}

.contact-label {
   color: #fbbf24;
   font-size: 1.4rem !important;
   font-weight: 600;
   text-transform: uppercase;
   letter-spacing: 0.05em;
}

.contact-link {
   color: #e5e7eb;
   text-decoration: none;
   font-size: 1.6rem !important;
   transition: color 0.3s ease;
}

.contact-link:hover {
   color: #fbbf24;
}

.contact-text {
   color: #e5e7eb;
   font-size: 1.6rem !important;
}

.social-links {
   display: flex;
   gap: 1rem;
   margin-top: 1rem;
}

.social-link {
   display: flex;
   align-items: center;
   justify-content: center;
   width: 3rem;
   height: 3rem;
   background: rgba(251, 191, 36, 0.2);
   border: 2px solid #fbbf24;
   border-radius: 50%;
   color: #fbbf24;
   text-decoration: none;
   transition: all 0.3s ease;
   backdrop-filter: blur(10px);
}

.social-link:hover {
   background: #fbbf24;
   color: #1a472a;
   transform: translateY(-2px);
   box-shadow: 0 8px 25px rgba(251, 191, 36, 0.5);
   border-color: #fbbf24;
}

.social-link i {
   font-size: 1.8rem;
   width: 1.8rem;
   height: 1.8rem;
   display: flex;
   align-items: center;
   justify-content: center;
}

.footer-bottom {
   background: rgba(0, 0, 0, 0.3);
   border-top: 1px solid rgba(255, 255, 255, 0.1);
   padding: 1.5rem 0;
   position: relative;
   z-index: 2;
}

.footer-bottom-content {
   display: flex;
   flex-direction: row;
   align-items: center;
   justify-content: space-between;
   gap: 2rem;
   text-align: left;
}

.copyright {
   color: #d1d5db;
   font-size: 1.6rem !important;
   margin: 0;
   flex: 1;
   min-width: 250px;
}

.legal-links {
   display: flex;
   align-items: center;
   gap: 1rem;
   flex-wrap: wrap;
   justify-content: center;
   flex: 1;
   max-width: 300px;
}

.legal-links a {
   color: #e5e7eb;
   text-decoration: none;
   font-size: 1.1rem;
   transition: color 0.3s ease;
}

.legal-links a:hover {
   color: #fbbf24;
}

.separator {
   color: #6b7280;
   font-size: 0.9rem;
}

.developer {
   color: #d1d5db;
   font-size: 1.6rem !important;
   margin: 0;
   flex: 1;
   text-align: right;
   min-width: 250px;
}

.developer-name {
   color: #fbbf24;
   font-weight: 600;
}

/* Responsive Footer */
@media (max-width: 768px) {
   .footer-main {
      padding: 3rem 0 1.5rem;
   }
   
   .footer-logo-section {
      flex-direction: column;
      gap: 1rem;
      margin-bottom: 2rem;
      padding-bottom: 1.5rem;
   }
   
   .footer-logo {
      height: 10rem !important;
   }
   
   .footer-company-name {
      display: none !important;
   }
   
   .footer-tagline {
      font-size: 1.6rem !important;
   }
   
   .footer-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .footer-section {
      text-align: center;
   }
   
   .footer-heading {
      font-size: 2rem !important;
      margin-bottom: 1rem;
      text-align: center;
   }
   
   .footer-heading::after {
      left: 50%;
      transform: translateX(-50%);
   }
   
   .footer-links {
      text-align: center;
   }
   
   .footer-links a {
      font-size: 1.8rem !important;
      justify-content: center;
   }
   
   .footer-links a::before {
      left: -1.5rem;
   }
   
   .footer-links a:hover {
      padding-left: 1.5rem;
   }
   
   .contact-info {
      align-items: center;
   }
   
   .contact-item {
      text-align: center;
   }
   
   .contact-link, .contact-text {
      font-size: 1.8rem !important;
   }
   
   .social-links {
      justify-content: center;
   }
   
   .social-link {
      width: 3.5rem;
      height: 3.5rem;
   }
   
   .social-link i {
      font-size: 2rem;
      width: 2rem;
      height: 2rem;
   }
   
   .footer-bottom-content {
      flex-direction: column;
      gap: 1rem;
      text-align: center;
   }
   
   .copyright, .developer {
      flex: none;
      min-width: auto;
      text-align: center;
      font-size: 1.8rem !important;
   }
   
   .legal-links {
      flex-direction: column;
      gap: 0.5rem;
      max-width: none;
      justify-content: center;
   }
   
   .legal-links a {
      font-size: 1.2rem;
   }
   
   .separator {
      display: none;
   }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
    
    /* Ensure video is visible on desktop */
    .hero video,
    .hero-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }
}

/* Hero Heading - Responsive and Large */
.hero-heading {
   font-size: 4rem !important; /* Adjusted to be smaller */
   font-weight: 700;
   color: #ffffff; /* text-golden-sand */
   letter-spacing: 0.2rem; /* tracking-wider equivalent */
   margin-bottom: 4rem; /* Increased space between title and buttons */
   line-height: 1.1; /* leading-tight equivalent */
   text-align: center;
}

.hero-heading span {
   font-size: inherit !important;
   font-weight: inherit !important;
   color: inherit !important;
}

/* Responsive font sizes for hero heading */
@media (min-width: 768px) {
   .hero-heading {
      font-size: 8.4rem !important; /* Adjusted to be smaller */
   }
}

@media (min-width: 1024px) {
   .hero-heading {
      font-size: 3rem !important; /* Reduced for desktop */
   }
}

@media (min-width: 1280px) {
    .hero-heading {
        font-size: 5rem !important; /* Reduced for large desktop */
    }
    
    /* Ensure video is visible on large desktop */
    .hero video,
    .hero-video {
        display: block !important;
        visibility: visible !important;
        opacity: 1 !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        z-index: 1 !important;
    }
}

/* Header.php CSS Classes */

/* Top Bar */
.top-bar {
    display: none;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 0;
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
    }
}

.top-bar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .top-bar-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .top-bar-container {
        padding: 0 3rem;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 1rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.top-bar-text {
    font-size: 1rem;
}

.top-bar-divider {
    width: 1px;
    height: 1.5rem;
    background-color: #f97316;
}

.top-bar-satisfaction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    transition: color 0.3s;
    cursor: pointer;
}

.top-bar-satisfaction:hover {
    color: #22c55e;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 1rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link-top {
    background-color: #374151;
    padding: 0.75rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.social-link-top:hover {
    background-color: #4b5563;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}
.top-bar {
    display: none;
    background-color: #1f2937;
    color: white;
    padding: 0.75rem 0;
}

@media (min-width: 1024px) {
    .top-bar {
        display: block;
    }
}

.top-bar-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .top-bar-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .top-bar-container {
        padding: 0 3rem;
    }
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 1rem;
}

.top-bar-contact {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.top-bar-icon {
    width: 1.5rem;
    height: 1.5rem;
}

.top-bar-text {
    font-size: 1rem;
}

.top-bar-divider {
    width: 1px;
    height: 1.5rem;
    background-color: #f97316;
}

.top-bar-satisfaction {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #4ade80;
    transition: color 0.3s;
    cursor: pointer;
}

.top-bar-satisfaction:hover {
    color: #22c55e;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 3rem;
    font-size: 1rem;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.social-link-top {
    background-color: #374151;
    padding: 0.75rem;
    border-radius: 0.25rem;
    transition: background-color 0.3s;
}

.social-link-top:hover {
    background-color: #4b5563;
}

.social-icon {
    width: 1.5rem;
    height: 1.5rem;
}

/* Main Header */
.main-header {
    background-color: white;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-container {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
}

@media (min-width: 640px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
}

@media (min-width: 1024px) {
    .header-container {
        padding: 1rem 3rem;
    }
}

.logo-container {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.logo-image {
    flex-shrink: 0;
}

.logo-image img {
    height: 3rem;
    width: auto;
}

.mobile-rating {
    display: none;
}

@media (min-width: 768px) {
    .mobile-rating {
        display: block;
    }
}

.rating-stars {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.rating-star {
    width: 1.25rem;
    height: 1.25rem;
    color: #fbbf24;
}

.rating-text {
    font-size: 1.8rem !important;
    font-weight: 700;
    color: #1f2937;
}

.rating-link {
    text-decoration: underline;
}

/* Desktop Navigation */
.desktop-nav {
    display: none;
}

@media (min-width: 1024px) {
    .desktop-nav {
        display: flex;
        gap: 2rem;
    }
}

.desktop-nav a {
    color: #374151;
    font-size: 1.6rem;
    font-weight: 600;
    text-decoration: none;
    transition: color 0.3s;
}

.desktop-nav a:hover {
    color: #f97316;
}

.desktop-nav a.active {
    color: #f97316;
    position: relative;
}

.desktop-nav a.active::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: #f97316;
}

/* Header CTA */
.header-cta {
    display: none;
}

@media (min-width: 1024px) {
    .header-cta {
        display: flex;
        align-items: center;
        gap: 2rem;
    }
}

.cta-button {
    background-color: #ea580c;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 0.25rem;
    border: 1px solid #c2410c;
    transition: background-color 0.3s;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    cursor: pointer;
}

.cta-button:hover {
    background-color: #dc2626;
    color: white;
    text-decoration: none;
}

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

.cta-icon {
    width: 1.25rem;
    height: 1.25rem;
}

/* Mobile Navigation */
.mobile-nav {
    display: block;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: white;
    border-top: 2px solid #f97316;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

@media (min-width: 1024px) {
    .mobile-nav {
        display: none;
    }
}

.mobile-nav-container {
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding: 1.5rem 0;
}

.mobile-nav-link {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #6b7280;
    transition: color 0.3s;
}

.mobile-nav-link:hover {
    color: #f97316;
}

.mobile-nav-icon {
    width: 2rem;
    height: 2rem;
    margin-bottom: 0.5rem;
}

.mobile-nav-text {
    font-size: 1.125rem;
    font-weight: bold;
}

.mobile-menu-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 0.5rem 1rem;
    color: #6b7280;
    transition: color 0.3s;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-btn:hover {
    color: #f97316;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    background-color: #f0fdf4;
    z-index: 50;
    display: none;
}

.mobile-menu.show {
    display: block !important;
}

.mobile-menu.active {
    display: block !important;
}

.mobile-menu-container {
    background-color: white;
    height: 100%;
    width: 100%;
    overflow-y: auto;
}

.mobile-menu-content {
    padding: 1.5rem;
}

.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.mobile-menu-logo {
    display: flex;
    align-items: center;
}

.mobile-menu-logo img {
    height: 13rem;
    width: auto;
}

.close-menu-btn {
    color: #6b7280;
    padding: 1rem;
    background-color: #f3f4f6;
    border-radius: 9999px;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.close-menu-btn:hover {
    color: #374151;
    background-color: #e5e7eb;
}

.close-menu-icon {
    width: 3rem;
    height: 3rem;
}

.mobile-menu-nav {
    margin-bottom: 4rem;
}

.mobile-menu-nav a {
    display: block;
    font-size: 1.875rem;
    font-weight: bold;
    color: #374151;
    padding: 2rem 0;
    border-bottom: 1px solid #e5e7eb;
    transition: color 0.3s;
    text-decoration: none;
}

.mobile-menu-nav a:hover {
    color: #f97316;
}

.mobile-menu-nav a:last-child {
    border-bottom: none;
}

/* WhatsApp Section */
.whatsapp-section {
    text-align: center;
    margin-bottom: 4rem;
}

.whatsapp-button {
    display: inline-flex;
    align-items: center;
    gap: 1.5rem;
    background-color: #22c55e;
    color: white;
    padding: 2rem 3rem;
    border-radius: 0.5rem;
    font-weight: bold;
    transition: background-color 0.3s;
    font-size: 1.5rem;
    text-decoration: none;
}

.whatsapp-button:hover {
    background-color: #16a34a;
}

.whatsapp-icon {
    width: 2.5rem;
    height: 2.5rem;
}

/* Larger WhatsApp icon in mobile menu */
.mobile-menu .whatsapp-icon {
    width: 4rem !important;
    height: 4rem !important;
}

.mobile-menu .whatsapp-button {
    padding: 2.5rem 3.5rem !important;
    font-size: 2.2rem !important;
}

/* Social Section */
.social-section {
    background-color: #f3f4f6;
    border-radius: 0.5rem;
    padding: 1rem;
}

.social-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.social-media-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s;
}

.social-media-link:hover {
    transform: scale(1.1);
}

.social-media-link.instagram {
    background: linear-gradient(to right, #f97316, #ec4899);
}

.social-media-link.facebook {
    background-color: #2563eb;
}

.social-media-link.youtube {
    background-color: #dc2626;
}

.social-media-link.linkedin {
    background-color: #1d4ed8;
}

.social-media-link.twitter {
    background-color: #000000;
}

.social-media-icon {
    width: 1.25rem;
    height: 1.25rem;
    color: white;
}

/* WhatsApp Widget */
.whatsapp-widget {
    display: none;
    position: fixed !important;
    bottom: 1.5rem;
    right: 1.5rem;
    z-index: 9999 !important;
    align-items: center;
    gap: 0.75rem;
}

/* Show WhatsApp widget on mobile with higher position */
@media (max-width: 1023px) {
    .whatsapp-widget {
        display: flex;
        bottom: 10rem; /* Even higher position on mobile */
    }
    
    /* Extra large WhatsApp icon on mobile */
    .whatsapp-icon-fixed {
        width: 7rem !important; /* Extra large on mobile */
        height: 7rem !important; /* Extra large on mobile */
        padding: 1.75rem !important; /* More padding */
        background-color: #22c55e !important;
        color: white !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .whatsapp-icon-large {
        width: 3.5rem !important; /* Extra large icon */
        height: 3.5rem !important; /* Extra large icon */
    }
}

@media (min-width: 1024px) {
    .whatsapp-widget {
        display: flex !important;
        bottom: 6rem !important; /* Moved higher on desktop */
        position: fixed !important;
        align-items: center !important;
        gap: 0.75rem !important;
    }
    
    /* Show bubble text on desktop only */
    .whatsapp-bubble {
        display: block !important;
        background-color: white !important;
        border: 1px solid #e5e7eb !important;
        border-radius: 0.5rem !important;
        padding: 0.75rem 1rem !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
        position: relative !important;
    }
    
    .whatsapp-bubble-text {
        display: block !important;
        color: #374151 !important;
        font-size: 0.875rem !important;
    }
    
    /* Desktop WhatsApp icon */
    .whatsapp-icon-fixed {
        width: 4rem !important; /* Desktop size */
        height: 4rem !important; /* Desktop size */
        padding: 1rem !important;
        background-color: #22c55e !important;
        color: white !important;
        border-radius: 50% !important;
        box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1) !important;
        transition: all 0.3s !important;
        text-decoration: none !important;
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        position: relative !important;
    }
    
    .whatsapp-icon-large {
        width: 2rem !important; /* Desktop icon size */
        height: 2rem !important; /* Desktop icon size */
    }
}

.whatsapp-widget:hover {
    transform: scale(1.05);
}

.whatsapp-bubble {
    background-color: white;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    padding: 0.75rem 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    position: relative;
    display: none; /* Hide by default */
}

.whatsapp-bubble-text {
    color: #374151;
    font-size: 0.875rem;
    display: none; /* Hide by default */
}

.whatsapp-bubble-arrow {
    position: absolute;
    right: -4px;
    top: 50%;
    transform: translateY(-50%);
}

.whatsapp-bubble-arrow::before {
    content: '';
    width: 0;
    height: 0;
    border-left: 6px solid white;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

/* Removed duplicate whatsapp-icon-fixed CSS */

.whatsapp-icon-fixed:hover {
    background-color: #16a34a;
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: scale(1.1);
}

.whatsapp-icon-large {
    width: 2rem; /* Restored original icon size */
    height: 2rem; /* Restored original icon size */
}

/* Footer.php CSS Classes */

/* Modern Footer */
.footer-modern {
    background: linear-gradient(135deg, #1f2937 0%, #374151 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.footer-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="10" cy="60" r="0.5" fill="rgba(255,255,255,0.03)"/><circle cx="90" cy="40" r="0.5" fill="rgba(255,255,255,0.03)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.footer-main {
    position: relative;
    z-index: 1;
    padding: 4rem 0 2rem;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
}

/* Footer Logo Section */
.footer-logo-section {
    text-align: center;
    margin-bottom: 3rem;
}

.footer-logo {
    height: 10rem !important;
    width: auto;
    margin-bottom: 1rem;
}

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

.footer-company-name {
    display: none !important;
}

.footer-tagline {
    font-size: 1.6rem !important;
    color: #d1d5db;
    font-style: italic;
}

/* Footer Grid */
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

@media (min-width: 640px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .footer-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Footer Section */
.footer-section {
    text-align: center;
}

@media (min-width: 1024px) {
    .footer-section {
        text-align: left;
    }
}

.footer-heading {
    font-size: 1.8rem !important;
    font-weight: bold;
    color: #fbbf24;
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* Footer Links */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.6rem !important;
}

.footer-links a:hover {
    color: #fbbf24;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

@media (min-width: 1024px) {
    .contact-item {
        flex-direction: row;
        align-items: center;
        gap: 0.5rem;
    }
}

.contact-label {
    font-weight: bold;
    color: #fbbf24;
    font-size: 1.4rem !important;
}

.contact-link {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
    font-size: 1.6rem !important;
}

.contact-link:hover {
    color: #fbbf24;
}

.contact-text {
    color: #d1d5db;
    font-size: 1.6rem !important;
}

/* Social Links */
.social-links {
    display: flex;
    justify-content: center !important;
    gap: 0.3rem !important;
    background-color: #f3f4f6 !important;
    border-radius: 0.5rem !important;
    padding: 0.5rem !important;
    width: fit-content !important;
    margin: 0 auto !important;
}

@media (min-width: 1024px) {
    .social-links {
        justify-content: flex-start !important;
        gap: 0.3rem !important;
        width: fit-content !important;
        margin: 0 !important;
    }
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem !important;
    height: 2.5rem !important;
    background: linear-gradient(135deg, #f97316, #ec4899);
    color: white;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s;
    font-size: 1.25rem;
}

.social-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(249, 115, 22, 0.3);
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid #374151;
    padding: 2rem 0;
    position: relative;
    z-index: 1;
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom-content {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.copyright {
    color: #9ca3af;
    font-size: 1.6rem !important;
    margin: 0;
}

.legal-links {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.legal-links a {
    color: #d1d5db;
    text-decoration: none;
    transition: color 0.3s;
}

.legal-links a:hover {
    color: #fbbf24;
}

.separator {
    color: #6b7280;
}

.developer {
    color: #9ca3af;
    font-size: 1.6rem !important;
    margin: 0;
}

.developer-name {
    color: #fbbf24;
    font-weight: bold;
}

/* Destinations.php CSS Classes */

/* Hero Section */
.hero {
    position: relative;
    height: 24rem;
}

.hero img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background-color: rgba(0, 0, 0, 0.8);
}

.hero-content {
    position: relative;
    text-align: center;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-content-box {
    background-color: black;
    padding: 1.5rem 1rem;
    border-radius: 0.5rem;
    display: inline-block;
    margin: 0 auto;
}

@media (min-width: 640px) {
    .hero-content-box {
        padding: 2rem 1.5rem;
    }
}

.hero-title {
    font-size: 2.25rem;
    font-weight: bold;
    color: white;
    margin-top: 0.5rem;
    letter-spacing: -0.025em;
}

@media (min-width: 640px) {
    .hero-title {
        font-size: 3rem;
    }
}

@media (min-width: 1024px) {
    .hero-title {
        font-size: 4.5rem;
    }
}

.hero-button-container {
    margin-top: 1rem;
}

@media (min-width: 640px) {
    .hero-button-container {
        margin-top: 1.5rem;
    }
}

.hero-button {
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

@media (min-width: 640px) {
    .hero-button {
        padding: 0.75rem 2rem;
        font-size: 1.125rem;
    }
}

.hero-button:hover {
    background-color: #ca8a04;
}

/* Destinations Section */
.destinations-section {
    padding: 3rem 0;
    background-color: white;
}

@media (min-width: 640px) {
    .destinations-section {
        padding: 4rem 0;
    }
}

@media (min-width: 1024px) {
    .destinations-section {
        padding: 5rem 0;
    }
}

.destinations-container {
    width: 100%;
    padding: 0 1rem;
}

@media (min-width: 640px) {
    .destinations-container {
        padding: 0 1.5rem;
    }
}

@media (min-width: 1024px) {
    .destinations-container {
        padding: 0 2rem;
    }
}

@media (min-width: 1280px) {
    .destinations-container {
        padding: 0 3rem;
    }
}

.destinations-title {
    font-size: 1.875rem;
    font-weight: bold;
    text-align: center;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 640px) {
    .destinations-title {
        font-size: 2.25rem;
        margin-bottom: 3rem;
    }
}

@media (min-width: 1024px) {
    .destinations-title {
        font-size: 3rem;
    }
}

/* Destinations Grid */
.destinations-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
}

@media (min-width: 640px) {
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (min-width: 1024px) {
    .destinations-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
    }
}

@media (min-width: 1280px) {
    .destinations-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

/* Destination Card */
.destination-card {
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.destination-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
}

.destination-image {
    width: 100%;
    height: 16rem;
    object-fit: cover;
}

.destination-content {
    padding: 1.5rem;
}

.destination-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.destination-description {
    color: #6b7280;
    margin-bottom: 1rem;
}

.destination-button {
    display: inline-block;
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.5rem 1.5rem;
    border-radius: 9999px;
    text-decoration: none;
    transition: background-color 0.3s;
}

.destination-button:hover {
    background-color: #ca8a04;
}

/* Book.php CSS Classes */

/* Booking Section */
.booking-section {
    padding: 5rem 0;
    background-color: white;
}

.booking-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.booking-title {
    text-align: center;
    font-size: 2.25rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 2rem;
}

@media (min-width: 768px) {
    .booking-title {
        font-size: 3rem;
    }
}

/* Booking Form */
.booking-form-container {
    max-width: 48rem;
    margin: 0 auto;
    background-color: white;
    border-radius: 0.5rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    padding: 2rem;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-form-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

@media (min-width: 768px) {
    .booking-form-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Form Fields */
.form-field {
    display: flex;
    flex-direction: column;
}

.form-field-wide {
    grid-column: span 2;
}

@media (max-width: 767px) {
    .form-field-wide {
        grid-column: span 1;
    }
}

.form-label {
    display: block;
    color: #374151;
    font-size: 0.875rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.form-input {
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    appearance: none;
    border: 1px solid #d1d5db;
    border-radius: 0.25rem;
    width: 100%;
    padding: 0.75rem 1rem;
    color: #374151;
    line-height: 1.25;
    transition: outline 0.3s, box-shadow 0.3s;
}

.form-input:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.form-textarea {
    resize: vertical;
    min-height: 6rem;
}

/* Submit Button */
.form-submit-container {
    text-align: center;
}

.form-submit-button {
    background-color: #fbbf24;
    color: #1f2937;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    font-size: 1.125rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}

.form-submit-button:hover {
    background-color: #ca8a04;
}

/* ===========================
   Gallery Hero Section
=========================== */

.gallery-hero {
   position: relative;
   background-image: url('../images/Image97.webp');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   background-attachment: fixed;
   min-height: 80vh;
   display: flex;
   align-items: center;
   justify-content: center;
   color: white;
}

.gallery-hero .hero-overlay {
   position: absolute;
   inset: 0;
   background-color: rgba(0, 0, 0, 0.5);
   z-index: 1;
}

.gallery-hero .hero-container {
   position: relative;
   z-index: 2;
   padding: 0 2rem;
   text-align: center;
   max-width: 1200px;
   width: 100%;
}

.gallery-hero .hero-content {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   align-items: center;
}

.hero-title {
   font-size: 3.6rem;
   font-weight: 700;
   line-height: 1.1;
}

.hero-subtitle {
   font-size: 1.8rem;
   font-weight: 400;
   margin-bottom: 2rem;
}

.hero-stats {
   display: flex;
   flex-wrap: wrap;
   gap: 2rem;
   justify-content: center;
}

.stat-card {
   background-color: rgba(255, 255, 255, 0.1);
   padding: 1.5rem 2rem;
   border-radius: 10px;
   text-align: center;
   min-width: 150px;
   backdrop-filter: blur(5px);
}

.stat-number {
   font-size: 2.4rem;
   font-weight: 700;
   color: #fff;
}

.stat-label {
   font-size: 1.2rem;
   color: #f0f0f0;
}


/* ===========================
  Responsive
=========================== */

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

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

   .stat-card {
       min-width: 120px;
       padding: 1rem;
   }

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

   .stat-label {
       font-size: 1rem;
   }
}

.gallery-hero .hero-subtitle {
    font-size: 2rem;
    margin-bottom: 3.2rem;
}

@media (min-width: 768px) {
    .gallery-hero .hero-subtitle {
        font-size: 2.4rem;
    }
}

.gallery-hero .hero-stats {
    display: flex;
    justify-content: center;
    gap: 3.2rem;
    text-align: center;
}

.gallery-hero .stat-card {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 0.8rem;
    padding: 2.4rem;
    backdrop-filter: blur(4px);
}

.gallery-hero .stat-number {
    font-size: 3rem;
    font-weight: 700;
}

.gallery-hero .stat-label {
    font-size: 1.4rem;
}

.gallery-categories {
    padding: 6.4rem 0;
    background: white;
}

.gallery-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.gallery-header {
    text-align: center;
    margin-bottom: 4.8rem;
}

.gallery-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
    .gallery-title {
        font-size: 5.6rem;
    }
}

.gallery-subtitle {
    font-size: 2rem;
    color: #6b7280;
}

.category-tabs-container {
    display: flex;
    justify-content: center;
    margin-bottom: 4.8rem;
}

.category-tabs {
    display: flex;
    gap: 1.6rem;
    background: #f3f4f6;
    border-radius: 0.8rem;
    padding: 0.8rem;
}

.category-tab {
    padding: 1.2rem 2.4rem;
    border-radius: 0.8rem;
    font-weight: 600;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
    background: transparent;
    color: #6b7280;
}

.category-tab:hover {
    background: #fed7aa;
}

.category-tab.active {
    background: #ea580c;
    color: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.2rem;
}

@media (min-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.gallery-card {
    background: white;
    border-radius: 1.2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s;
}

.gallery-card:hover {
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    transform: translateY(-4px);
}

.gallery-image-container {
    position: relative;
    height: 25.6rem;
}

.gallery-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gallery-badge {
    position: absolute;
    top: 1.6rem;
    right: 1.6rem;
    padding: 0.4rem 1.2rem;
    border-radius: 9999px;
    font-size: 1.2rem;
    font-weight: 600;
    color: white;
}

.gallery-badge.success {
    background: #10b981;
}

.gallery-badge.safari {
    background: #3b82f6;
}

.gallery-card-content {
    padding: 2.4rem;
}

.gallery-card-title {
    font-size: 2rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.8rem;
}

.gallery-card-description {
    color: #6b7280;
    margin-bottom: 1.2rem;
    font-style: italic;
}

.gallery-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.gallery-card-category {
    color: #ea580c;
    font-weight: 600;
}

.gallery-card-date {
    font-size: 1.4rem;
    color: #9ca3af;
}

.gallery-category {
    display: none;
}

.gallery-category.active {
    display: block;
}

.hidden {
    display: none;
}

/* Home Page Styles */
.hero-section {
    position: relative;
    height: 100vh;
    overflow: hidden;
}

.hero-video {
    position: absolute !important;
    top: 0 !important;
    left: 0 !important;
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    z-index: 1 !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 2;
}

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

/* Removed duplicate hero-heading - using main one above */

.hero-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.hero-button-primary,
.hero-button-secondary {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.hero-button-primary {
    background: #ea580c;
    color: white;
}

.hero-button-primary:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.hero-button-secondary {
    background: transparent;
    color: #ea580c !important;
    border: 2px solid #ea580c !important;
}

.hero-button-secondary:hover {
    background: #ea580c !important;
    color: white !important;
    transform: translateY(-2px);
}

.hero-icon {
    width: 2.4rem;
    height: 2.4rem;
}

/* Experience Tours Section */
.section-white {
    padding: 8rem 0;
    background: transparent;
}

.section-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.section-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.card-image {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.card-content {
    padding: 2.4rem;
}

.card-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.card-text {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.card-button {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.card-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

.welcome-icon {
    width: 2.4rem;
    height: 2.4rem;
}

.welcome-feature-text {
    font-weight: 600;
}

/* Welcome Section */
.section-gradient {
    padding: 8rem 0;
    background: transparent;
    color: #1a1a1a;
}

.welcome-header {
    text-align: center;
    margin-bottom: 6rem;
}

.welcome-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.welcome-line {
    width: 6rem;
    height: 2px;
    background: #ea580c;
}

.welcome-label {
    font-size: 1.4rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.welcome-title {
    font-size: 5.6rem;
    font-weight: 700;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.welcome-content {
    max-width: 80rem;
    margin: 0 auto;
}

.welcome-subtitle {
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
    line-height: 1.4;
}

.welcome-divider {
    width: 8rem;
    height: 3px;
    background: #ea580c;
    margin: 2rem auto;
}

.welcome-description {
    font-size: 1.8rem;
    line-height: 1.6;
}

.welcome-features {
    display: flex;
    justify-content: center;
    gap: 4rem;
    margin-top: 4rem;
    flex-wrap: wrap;
}

.welcome-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    font-size: 1.6rem;
}

.main-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    margin-top: 6rem;
}

.content-left {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.intro-card {
    background: #f8f9fa;
    padding: 3rem;
    border-radius: 1.5rem;
    border: 1px solid #e9ecef;
}

.intro-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 2rem;
}

.intro-text {
    font-size: 1.6rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.features-grid {
    display: grid;
    gap: 2rem;
}

.feature-card {
    background: #f8f9fa;
    padding: 2.4rem;
    border-radius: 1.5rem;
    border: 1px solid #e9ecef;
    text-decoration: none;
    color: #1a1a1a;
    transition: all 0.3s ease;
}

.feature-card:hover {
    background: #e9ecef;
    transform: translateY(-2px);
}

.feature-content {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.feature-icon-container {
    flex-shrink: 0;
}

.feature-icon {
    width: 3.2rem;
    height: 3.2rem;
    color: #ea580c;
}

.feature-text-content {
    flex: 1;
}

.feature-title {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
}

.feature-description {
    font-size: 1.4rem;
    line-height: 1.5;
    opacity: 0.9;
}

.feature-footer {
    border-top: 1px solid #e9ecef;
    padding-top: 1.5rem;
}

.feature-link {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-weight: 600;
    font-size: 1.4rem;
}

.feature-link-icon {
    width: 2rem;
    height: 2rem;
    color: #ea580c;
}

/* Control arrow icon size in Book Now button */
.feature-link svg {
    width: 1.6rem !important;
    height: 1.6rem !important;
    margin-left: 0.5rem;
}

.right-image-section {
    position: sticky;
    top: 2rem;
}

.sticky-container {
    position: relative;
}

.image-container {
    position: relative;
    border-radius: 1.5rem;
    overflow: hidden;
}

.right-image {
    width: 100%;
    height: 50rem;
    object-fit: cover;
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(234, 88, 12, 0.3), rgba(251, 191, 36, 0.3));
}

.cta-section {
    text-align: center;
    margin-top: 6rem;
    padding: 4rem;
    background: #f8f9fa;
    border-radius: 1.5rem;
    border: 1px solid #e9ecef;
}

.cta-title {
    font-size: 3.2rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-description {
    font-size: 1.8rem;
    margin-bottom: 3rem;
    line-height: 1.5;
}

.cta-buttons {
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-button {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-button-primary {
    background: white;
    color: #ea580c;
}

.cta-button-primary:hover {
    background: #f3f4f6;
    transform: translateY(-2px);
}

.cta-button-secondary {
    background: transparent;
    color: #ea580c !important;
    border: 2px solid #ea580c !important;
}

.cta-button-secondary:hover {
    background: #ea580c !important;
    color: white !important;
    transform: translateY(-2px);
}

.cta-button-icon {
    width: 2.4rem;
    height: 2.4rem;
}

/* Popular Tours Section */
.popular-tours-section {
    padding: 8rem 0;
    background: transparent;
}

.popular-tours-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.tours-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.tour-card {
    background: white;
    border-radius: 1.5rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

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

.tour-image {
    width: 100%;
    height: 25rem;
    object-fit: cover;
}

.tour-content {
    padding: 2.4rem;
}

.tour-title {
    font-size: 2.4rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 1.5rem;
}

.tour-description {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    font-size: 1.4rem;
}

.tour-duration {
    color: #ea580c;
    font-weight: 600;
}

.tour-price {
    color: #666;
    font-weight: 600;
}

.tour-button {
    display: inline-block;
    background: #ea580c;
    color: white;
    padding: 1.2rem 2.4rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
    text-align: center;
}

.tour-button:hover {
    background: #c2410c;
    transform: translateY(-2px);
}

/* Destinations Section */
.destinations-section {
    padding: 8rem 0;
    background: transparent;
}

.destinations-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.destinations-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-bottom: 4rem;
}

.destination-card {
    position: relative;
    overflow: hidden;
    border-radius: 1.5rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    background: #ffffff;
    display: flex;
    flex-direction: column;
}

.destination-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.destination-image {
    width: 100%;
    height: 26rem;
    object-fit: cover;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    height: 50%;
}

.destination-content {
    position: static;
    padding: 2rem;
    color: #374151;
    background: #ffffff;
}

.destination-title {
    font-size: 2.2rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: #111827;
}

.destination-description {
    font-size: 1.6rem;
    line-height: 1.6;
    color: #4b5563;
    margin-bottom: 1.5rem;
}

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

.destinations-button {
    display: inline-block;
    background: #1a1a1a;
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 5rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.destinations-button:hover {
    background: #333;
    transform: translateY(-2px);
}

/* Why Choose Us Section */
.why-choose-us-section {
    padding: 8rem 0;
    background: transparent;
}

.why-choose-us-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.why-choose-us-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.why-choose-us-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
}

.why-choose-us-item {
    text-align: center;
}

.why-choose-us-icon {
    background: #fbbf24;
    padding: 2.4rem;
    border-radius: 50%;
    width: 8rem;
    height: 8rem;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.why-choose-us-icon-svg {
    width: 4rem;
    height: 4rem;
    color: #1a1a1a;
}

.why-choose-us-item-title {
    font-size: 2rem;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 1rem;
}

.why-choose-us-item-description {
    color: #666;
    line-height: 1.6;
}

/* Testimonials Section */
.testimonials-section {
    padding: 8rem 0;
    background: transparent;
}

.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.testimonials-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
}

.testimonial-card {
    background: white;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    padding: 3rem;
    border-radius: 1.5rem;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.15);
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 2.4rem;
    margin-bottom: 1.5rem;
}

.testimonial-text {
    color: #666;
    margin-bottom: 2rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
}

.testimonial-avatar {
    width: 4.8rem;
    height: 4.8rem;
    border-radius: 50%;
    margin-right: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #fbbf24;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Customer avatars with actual photos */
.testimonial-avatar:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?w=150&h=150&fit=crop&crop=face');
}

.testimonial-avatar:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face');
}

.testimonial-avatar:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face');
}

/* Alternative approach - target specific testimonial cards */
.testimonial-card:nth-child(1) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?w=150&h=150&fit=crop&crop=face');
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face');
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face');
}

/* Force override of img src with background images */
.testimonial-avatar[src*="Family.jpeg"] {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?w=150&h=150&fit=crop&crop=face') !important;
}

.testimonial-avatar[alt*="Michael"] {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face') !important;
}

.testimonial-avatar[alt*="Emma"] {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face') !important;
}

.testimonial-author-info {
    flex: 1;
}

.testimonial-author-name {
    font-weight: 600;
    color: #dc2626;
    margin-bottom: 0.5rem;
}

.testimonial-author-location {
    font-size: 1.4rem;
    color: #999;
}

/* Affiliates Section */
.affiliates-section {
    padding: 8rem 0;
    background: transparent;
}

.affiliates-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.affiliates-title {
    text-align: center;
    font-size: 4.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 6rem;
}

.affiliates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
}

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

.affiliate-link {
    display: block;
    text-decoration: none;
}

.affiliate-card {
    background: white;
    padding: 2.4rem;
    border-radius: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid #e5e7eb;
    transition: all 0.3s ease;
}

.affiliate-card:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    transform: scale(1.05);
}

.affiliate-logo {
    height: 8rem;
    margin: 0 auto 1.5rem;
    object-fit: contain;
}

.affiliate-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.affiliate-description {
    font-size: 1.4rem;
    color: #666;
}

.affiliates-info {
    margin-top: 4rem;
    text-align: center;
}

.affiliates-description {
    font-size: 1.8rem;
    color: #666;
    max-width: 96rem;
    margin: 0 auto;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Removed duplicate hero-heading - using main one above */
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .section-title,
    .popular-tours-title,
    .welcome-title,
    .destinations-title,
    .why-choose-us-title,
    .testimonials-title,
    .affiliates-title {
        font-size: 3.6rem;
    }
    
    .welcome-features {
        flex-direction: column;
        gap: 2rem;
    }
    
    .main-content {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
    
    .right-image {
        height: 35rem;
    }
    
    .section-grid,
    .tours-grid,
    .destinations-grid,
    .why-choose-us-grid,
    .testimonials-grid,
    .affiliates-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .destination-name {
        font-size: 2.4rem;
    }
    
    .why-choose-us-icon {
        width: 6rem;
        height: 6rem;
        padding: 1.5rem;
    }
    
    .why-choose-us-icon-svg {
        width: 3rem;
        height: 3rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Show top bar satisfaction on desktop, mobile rating on mobile */
@media (min-width: 1024px) {
    .top-bar-satisfaction {
        display: block !important;
    }
    .mobile-rating {
        display: none !important;
    }
}

@media (max-width: 1023px) {
    .top-bar-satisfaction {
        display: none !important;
    }
    .mobile-rating {
        display: block !important;
    }
}

@media (max-width: 480px) {
    .destinations-title,
    .why-choose-us-title,
    .testimonials-title,
    .affiliates-title {
        font-size: 3rem;
    }
    
    .destination-name {
        font-size: 2rem;
    }
    
    .why-choose-us-icon {
        width: 5rem;
        height: 5rem;
        padding: 1.2rem;
    }
    
    .why-choose-us-icon-svg {
        width: 2.5rem;
        height: 2.5rem;
    }
}

/* Success Statistics Section */
.success-stats {
    padding: 6.4rem 0;
    background: linear-gradient(to right, #ea580c, #c2410c);
    color: rgb(136, 62, 62);
}

.success-stats-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.2rem;
}

.success-stats-header {
    text-align: center;
    margin-bottom: 4.8rem;
}

.success-stats-title {
    font-size: 4.2rem;
    font-weight: 700;
    margin-bottom: 1.6rem;
}

@media (min-width: 768px) {
    .success-stats-title {
        font-size: 5.6rem;
    }
}

.success-stats-subtitle {
    font-size: 2rem;
}

.success-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3.2rem;
}

@media (min-width: 768px) {
    .success-stats-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

.success-stat-item {
    text-align: center;
}

.success-stat-number {
    font-size: 4.8rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

@media (min-width: 768px) {
    .success-stat-number {
        font-size: 5.6rem;
    }
}

.success-stat-label {
    font-size: 1.8rem;
}

/* Gallery CTA Section */
.gallery-cta {
    padding: 6.4rem 0;
    background: white;
}

.gallery-cta-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 3.2rem;
    text-align: center;
}

.gallery-cta-title {
    font-size: 4.2rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 2.4rem;
}

@media (min-width: 768px) {
    .gallery-cta-title {
        font-size: 5.6rem;
    }
}

.gallery-cta-subtitle {
    font-size: 2rem;
    color: #6b7280;
    margin-bottom: 3.2rem;
}

.gallery-cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1.6rem;
    justify-content: center;
}

@media (min-width: 768px) {
    .gallery-cta-buttons {
        flex-direction: row;
        gap: 2.4rem;
    }
}

.gallery-cta-button {
    padding: 1.6rem 3.2rem;
    border-radius: 0.8rem;
    font-size: 1.8rem;
    font-weight: 600;
    transition: all 0.3s;
    text-decoration: none;
    display: inline-block;
}

.gallery-cta-button.primary {
    background: #ea580c;
    color: white;
}

.gallery-cta-button.primary:hover {
    background: #c2410c;
}

.gallery-cta-button.secondary {
    background: #059669;
    color: white;
}

.gallery-cta-button.secondary:hover {
    background: #047857;
}

.gallery-cta-button.outline {
    border: 2px solid #ea580c;
    color: #ea580c;
    background: transparent;
}

.gallery-cta-button.outline:hover {
    background: #ea580c;
    color: white;
}

/* Testimonial Styles */
.testimonial-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5rem;
}

.testimonial-avatar {
    width: 4.8rem;
    height: 4.8rem;
    background: #ea580c;
    border-radius: 50%;
    display: block;
    margin-right: 1.5rem;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 3px solid #fbbf24;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* Customer avatars with actual photos */
.testimonial-avatar:nth-child(1) {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?w=150&h=150&fit=crop&crop=face');
}

.testimonial-avatar:nth-child(2) {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face');
}

.testimonial-avatar:nth-child(3) {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face');
}

/* Alternative approach - target specific testimonial cards */
.testimonial-card:nth-child(1) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1494790108755-2616b612b786?w=150&h=150&fit=crop&crop=face');
}

.testimonial-card:nth-child(2) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1507003211169-0a1dd7228f2d?w=150&h=150&fit=crop&crop=face');
}

.testimonial-card:nth-child(3) .testimonial-avatar {
    background-image: url('https://images.unsplash.com/photo-1438761681033-6461ffad8d80?w=150&h=150&fit=crop&crop=face');
}

.testimonial-info {
    flex: 1;
}

.testimonial-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.5rem;
}

.testimonial-rating {
    color: #fbbf24;
    font-size: 1.4rem;
}

.testimonial-text {
    font-size: 1.6rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-date {
    font-size: 1.2rem;
    color: #999;
}

/* About Page Styles */
.about-section {
   padding: 4rem 0;
}

.about-section-large {
   padding: 6rem 0;
}

.about-hero-section {
   position: relative;
   min-height: 80vh;
   display: flex;
   align-items: center;
   background-image: url('../images/home-big-1.jpg');
   background-size: cover;
   background-position: center;
   background-repeat: no-repeat;
   padding: 6rem 0;
}

.about-hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: rgba(0, 0, 0, 0.4);
   z-index: 1;
}

.about-hero-section .about-container {
   position: relative;
   z-index: 2;
}

.about-section-xl {
   padding: 8rem 0;
}

.about-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

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

.about-hero-title {
   font-size: 5rem;
   font-weight: bold;
   color: #ffffff;
   line-height: 1.1;
   margin-bottom: 2rem;
   text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
   max-width: 22ch; /* force two lines on desktop */
   margin-left: auto;
   margin-right: auto;
   text-wrap: balance;
}

.about-hero-divider {
   width: 100px;
   height: 4px;
   background: linear-gradient(90deg, #f97316, #ea580c);
   margin: 0 auto 2rem;
}

.about-hero-text {
   font-size: 1.5rem;
   color: #ffffff;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto;
   text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}

.about-cta-banner {
   display: flex;
   align-items: center;
   justify-content: space-between;
   background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
   padding: 3rem;
   border-radius: 1rem;
   color: white;
}

.about-cta-content {
   flex: 1;
}

.about-cta-title {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 0.5rem;
   line-height: 1.1;
}

.about-cta-subtitle {
   font-size: 1.25rem;
   opacity: 0.9;
}

.about-cta-icon {
   width: 80px;
   height: 80px;
   color: white;
   opacity: 0.8;
}

.about-section-title {
   font-size: 3rem;
   font-weight: bold;
   color: #1a1a1a;
   text-align: center;
   margin-bottom: 2rem;
}

.about-section-text {
   font-size: 1.8rem !important;
   color: #4b5563;
   line-height: 1.7;
   max-width: 900px;
   margin: 0 auto 1.5rem;
   text-align: center;
}

.about-subtitle {
   font-size: 2rem;
   font-weight: bold;
   color: #1a1a1a;
   text-align: center;
   margin: 3rem 0 1.5rem;
}

.about-cta-button {
   display: inline-block;
   background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
   color: white;
   padding: 1rem 2rem;
   border-radius: 0.5rem;
   text-decoration: none;
   font-weight: 600;
   font-size: 1.125rem;
   transition: all 0.3s ease;
}

.about-cta-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

.about-features-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
   gap: 2rem;
   margin-top: 3rem;
}

.about-feature-card {
   background: white;
   padding: 2rem;
   border-radius: 1rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   text-align: center;
   transition: transform 0.3s ease;
}

.about-feature-card:hover {
   transform: translateY(-5px);
}

.about-feature-title {
   font-size: 1.5rem;
   font-weight: bold;
   color: #1a1a1a;
   margin-bottom: 1rem;
}

.about-feature-text {
   font-size: 1.6rem !important;
   color: #4b5563;
   line-height: 1.6;
}

.about-mission-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 3rem;
   margin-top: 3rem;
}

.about-mission-item {
   background: white;
   padding: 2.5rem;
   border-radius: 1rem;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   text-align: center;
}

.about-mission-title {
   font-size: 1.75rem;
   font-weight: bold;
   color: #1a1a1a;
   margin-bottom: 1rem;
}

.about-mission-text {
   font-size: 1.6rem !important;
   color: #4b5563;
   line-height: 1.6;
}

.about-team-grid {
   display: grid;
   grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
   gap: 3rem;
   margin-top: 3rem;
}

.about-team-card {
   background: white;
   border-radius: 1rem;
   overflow: hidden;
   box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
   transition: transform 0.3s ease;
}

.about-team-card:hover {
   transform: translateY(-5px);
}

.about-team-image {
   width: 100%;
   height: 250px;
   object-fit: cover;
   background: linear-gradient(135deg, #f3f4f6 0%, #e5e7eb 100%);
   display: flex;
   align-items: center;
   justify-content: center;
   color: #6b7280;
   font-size: 1.125rem;
   font-weight: 500;
}

.about-team-title {
   font-size: 1.5rem;
   font-weight: bold;
   color: #1a1a1a;
   margin: 1.5rem 0 0.5rem;
   padding: 0 1.5rem;
}

.about-team-subtitle {
   color: #f97316;
   font-weight: 600;
   margin-bottom: 1rem;
   padding: 0 1.5rem;
}

.about-team-text {
   font-size: 1.6rem !important;
   color: #4b5563;
   line-height: 1.6;
   padding: 0 1.5rem 2rem;
}

.about-team-summary {
   margin-top: 3rem;
   text-align: center;
}

.about-team-summary-text {
   font-size: 1.8rem !important;
   color: #4b5563;
   line-height: 1.7;
   max-width: 800px;
   margin: 0 auto;
}

.about-join-section {
   background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
   color: white;
   text-align: center;
}

.about-join-title {
   font-size: 3rem;
   font-weight: bold;
   margin-bottom: 1.5rem;
}

.about-join-text {
   font-size: 1.25rem;
   line-height: 1.6;
   max-width: 800px;
   margin: 0 auto 2rem;
   opacity: 0.9;
}

.about-join-button {
   display: inline-block;
   background: linear-gradient(135deg, #f97316 0%, #ea580c 100%);
   color: white;
   padding: 1.25rem 2.5rem;
   border-radius: 0.5rem;
   text-decoration: none;
   font-weight: 600;
   font-size: 1.25rem;
   transition: all 0.3s ease;
}

.about-join-button:hover {
   transform: translateY(-2px);
   box-shadow: 0 10px 25px rgba(249, 115, 22, 0.3);
}

/* Additional About Page Classes */
.tripadvisor-header {
   display: flex;
   align-items: center;
   gap: 1rem;
   margin-bottom: 1.5rem;
   justify-content: center;
}

.tripadvisor-icon {
   width: 3rem;
   height: 3rem;
   color: #16a34a;
}

.tripadvisor-title {
   font-size: 2.5rem;
   font-weight: bold;
   color: #1f2937;
}

.tripadvisor-reviews {
   font-size: 1.875rem;
   font-weight: 600;
   color: #1f2937;
   text-decoration: underline;
}

.about-section-text-bold {
   font-weight: 600;
}

.about-cta-center {
   text-align: center;
   margin-top: 3rem;
}

/* Responsive Design for About Page */
@media (max-width: 768px) {
   .about-hero-title {
      font-size: 3.2rem;
      max-width: 18ch; /* still aim for two lines on mobile */
      color: #ffffff;
      text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.7);
   }
   
   .about-hero-section {
      min-height: 60vh;
      padding: 4rem 0;
   }
   
   .about-hero-text {
      color: #ffffff;
      text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
   }
   
   .about-section-title {
      font-size: 2rem;
   }
   
   .about-section-text,
   .about-team-summary-text,
   .about-feature-text,
   .about-mission-text,
   .about-team-text {
      font-size: 1.8rem !important;
   }
   
   .about-cta-banner {
      flex-direction: column;
      text-align: center;
      gap: 2rem;
   }
   
   .about-cta-title {
      font-size: 2rem;
   }
   
   .about-features-grid {
      grid-template-columns: 1fr;
   }
   
   .about-mission-grid {
      grid-template-columns: 1fr;
   }
   
   .about-team-grid {
      grid-template-columns: 1fr;
   }
   
   .about-join-title {
      font-size: 2rem;
   }
}

/* Desktop layout tweaks for About Page */
@media (min-width: 1024px) {
   .about-features-grid {
      display: flex;
      flex-wrap: wrap;
      gap: 2rem;
      justify-content: center; /* centers the last row of two cards */
   }

   .about-feature-card {
      flex: 1 1 360px; /* around three per row */
      max-width: 360px;
   }
}

/* Booking Modal Styles */
.booking-section {
   background: #f5f5f5;
   background-image: 
      linear-gradient(45deg, rgba(0,0,0,0.02) 25%, transparent 25%), 
      linear-gradient(-45deg, rgba(0,0,0,0.02) 25%, transparent 25%), 
      linear-gradient(45deg, transparent 75%, rgba(0,0,0,0.02) 75%), 
      linear-gradient(-45deg, transparent 75%, rgba(0,0,0,0.02) 75%);
   background-size: 20px 20px;
   background-position: 0 0, 0 10px, 10px -10px, -10px 0px;
   min-height: 100vh;
   display: flex;
   align-items: center;
   justify-content: center;
   padding: 2rem;
}

.booking-container {
   width: 100%;
   max-width: 500px;
   margin: 0 auto;
}

.booking-modal {
   background: white;
   border-radius: 16px;
   box-shadow: 0 8px 32px rgba(0,0,0,0.12);
   overflow: hidden;
   position: relative;
   padding: 0;
}

.booking-modal-header {
   text-align: center;
   padding: 2.5rem 2rem 1.5rem;
   background: white;
}

.booking-modal-title {
   font-size: 2.2rem;
   font-weight: 600;
   color: #2c5530;
   margin: 0 0 0.5rem 0;
   line-height: 1.3;
   font-family: 'Inter', sans-serif;
}

.booking-modal-subtitle {
   font-size: 1.1rem;
   color: #888;
   margin: 0;
   font-weight: 400;
   font-family: 'Inter', sans-serif;
}

.booking-form-container {
   padding: 0 2rem 2rem;
}

.booking-form-grid {
   display: flex;
   flex-direction: column;
   gap: 1rem;
   margin-bottom: 1.5rem;
}

.form-row {
   display: flex;
   gap: 1rem;
}

.form-field-half {
   flex: 1;
}

.form-field-full {
   width: 100%;
}

.form-input {
   width: 100%;
   padding: 1.1rem 1.2rem;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   font-size: 1.1rem;
   font-family: 'Inter', sans-serif;
   transition: all 0.2s ease;
   background: #f8f8f8;
   box-sizing: border-box;
   color: #333;
}

.form-input:focus {
   outline: none;
   border-color: #2c5530;
   background: white;
   box-shadow: 0 0 0 2px rgba(44, 85, 48, 0.1);
}

.form-input::placeholder {
   color: #999;
   font-weight: 400;
   font-size: 1.1rem;
}

.form-textarea {
   resize: vertical;
   min-height: 100px;
   font-family: 'Inter', sans-serif;
}

.contact-preference-section {
   margin-bottom: 1.5rem;
}

.contact-preference-label {
   font-size: 1.1rem;
   font-weight: 600;
   color: #2c5530;
   margin: 0 0 0.8rem 0;
   font-family: 'Inter', sans-serif;
}

.contact-preference-options {
   display: flex;
   gap: 0.8rem;
   flex-wrap: wrap;
}

.contact-option {
   position: relative;
   cursor: pointer;
   flex: 1;
   min-width: 100px;
}

.contact-radio {
   display: none;
}

.contact-option-text {
   display: flex;
   align-items: center;
   justify-content: center;
   gap: 0.5rem;
   padding: 0.9rem 1.2rem;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   background: #f8f8f8;
   font-size: 1rem;
   color: #666;
   transition: all 0.2s ease;
   font-family: 'Inter', sans-serif;
   font-weight: 500;
}

.contact-radio:checked + .contact-option-text {
   background: #25D366;
   color: white;
   border-color: #25D366;
}

.contact-radio:checked + .contact-option-text .whatsapp-icon {
   color: white;
}

.contact-radio:checked + .contact-option-text .email-icon,
.contact-radio:checked + .contact-option-text .phone-icon {
   color: white;
}

.contact-option:hover .contact-option-text {
   border-color: #2c5530;
   background: white;
}

.whatsapp-icon {
   color: #25D366;
   font-size: 1.3rem;
}

.email-icon {
   color: #666;
   font-size: 1.3rem;
}

.phone-icon {
   color: #666;
   font-size: 1.3rem;
}

.privacy-agreement {
   margin-bottom: 1.5rem;
   text-align: center;
}

.privacy-text {
   font-size: 1rem;
   color: #666;
   margin: 0;
   line-height: 1.4;
   font-family: 'Inter', sans-serif;
}

.privacy-link {
   color: #8B4513;
   text-decoration: underline;
   font-weight: 500;
}

.privacy-link:hover {
   color: #A0522D;
}

.form-submit-container {
   text-align: center;
}

.form-submit-button {
   background: #2c5530;
   color: white;
   border: none;
   padding: 1.2rem 3rem;
   border-radius: 8px;
   font-size: 1.1rem;
   font-weight: 600;
   font-family: 'Inter', sans-serif;
   cursor: pointer;
   transition: all 0.2s ease;
   display: inline-flex;
   align-items: center;
   gap: 0.6rem;
   min-width: 140px;
   justify-content: center;
}

.form-submit-button:hover {
   background: #1e3d22;
   transform: translateY(-1px);
}

.form-submit-button:active {
   transform: translateY(0);
}

.form-submit-button i {
   font-size: 1.1rem;
}

/* Success/Error Messages */
.alert {
   padding: 1rem 1.5rem;
   border-radius: 10px;
   margin-bottom: 2rem;
   font-weight: 500;
   text-align: center;
}

.alert-success {
   background: #d4edda;
   color: #155724;
   border: 1px solid #c3e6cb;
}

.alert-error {
   background: #f8d7da;
   color: #721c24;
   border: 1px solid #f5c6cb;
}

/* Responsive Design for Booking Modal */
@media (max-width: 768px) {
   .booking-section {
      padding: 1rem;
   }
   
   .booking-container {
      max-width: 100%;
   }
   
   .booking-modal-title {
      font-size: 1.8rem;
   }
   
   .booking-modal-header {
      padding: 2rem 1.5rem 1rem;
   }
   
   .booking-form-container {
      padding: 0 1.5rem 1.5rem;
   }
   
   .form-row {
      flex-direction: column;
      gap: 1rem;
   }
   
   .form-field-half {
      width: 100%;
   }
   
   .contact-preference-options {
      flex-direction: column;
      gap: 0.6rem;
   }
   
   .contact-option {
      min-width: auto;
   }
   
   .form-submit-button {
      width: 100%;
      padding: 1rem 2rem;
   }
}

/* Mobile Logo Link Styles */
.mobile-logo-link {
   display: flex;
   align-items: center;
   text-decoration: none;
   transition: opacity 0.3s ease;
}

.mobile-logo-link:hover {
   opacity: 0.8;
}

/* Safari Package Page Styles */
.safari-hero {
   position: relative;
   height: 70vh;
   overflow: hidden;
}

.safari-hero-image {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center center;
   display: block;
   min-height: 100%;
   min-width: 100%;
   position: absolute;
   top: 0;
   left: 0;
}

.safari-hero-overlay {
   position: absolute;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background: linear-gradient(135deg, rgba(0,0,0,0.7), rgba(0,0,0,0.4));
}

.safari-hero-content {
   position: absolute;
   top: 50%;
   left: 50%;
   transform: translate(-50%, -50%);
   text-align: center;
   color: white;
   z-index: 2;
}


.safari-hero-title {
   font-size: 4rem;
   font-weight: 700;
   margin: 0;
   text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
   color: white;
   background: rgba(0,0,0,0.3);
   padding: 1.5rem 3rem;
   border-radius: 12px;
   backdrop-filter: blur(5px);
   line-height: 1.2;
}

.gallery-button {
   position: absolute;
   top: 2rem;
   right: 2rem;
   background: rgba(255,255,255,0.9);
   padding: 0.8rem 1.5rem;
   border-radius: 8px;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-weight: 500;
   color: #333;
   text-decoration: none;
   transition: all 0.3s ease;
   z-index: 3;
}

.gallery-button:hover {
   background: white;
   transform: translateY(-2px);
}

/* Safari Main Content */
.safari-main-content {
   padding: 3rem 0;
   background: white;
}

.safari-container {
   max-width: 1200px;
   margin: 0 auto;
   padding: 0 2rem;
}

/* Tab Navigation */
.safari-tabs {
   display: flex;
   border-bottom: 2px solid #f0f0f0;
   margin-bottom: 2rem;
   gap: 0;
}

.safari-tab {
   background: none;
   border: none;
   padding: 1rem 2rem;
   display: flex;
   align-items: center;
   gap: 0.5rem;
   font-size: 0.9rem;
   font-weight: 600;
   color: #666;
   cursor: pointer;
   transition: all 0.3s ease;
   border-bottom: 3px solid transparent;
}

.safari-tab:hover {
   color: #ea580c;
}

.safari-tab.active {
   color: #ea580c;
   border-bottom-color: #ea580c;
}

.safari-tab i {
   font-size: 1rem;
}

/* Content Wrapper */
.safari-content-wrapper {
   display: grid;
   grid-template-columns: 2fr 1fr;
   gap: 3rem;
}

/* Main Detail */
.safari-main-detail {
   background: white;
}

.safari-detail-header {
   display: flex;
   justify-content: space-between;
   align-items: center;
   margin-bottom: 2rem;
}

.safari-detail-title {
   font-size: 2rem;
   font-weight: 700;
   color: #333;
   margin: 0;
}

.expand-toggle {
   display: flex;
   align-items: center;
   gap: 1rem;
   font-size: 0.9rem;
   color: #666;
}

.toggle-switch {
   position: relative;
   width: 50px;
   height: 24px;
}

.toggle-switch input {
   opacity: 0;
   width: 0;
   height: 0;
}

.toggle-switch label {
   position: absolute;
   cursor: pointer;
   top: 0;
   left: 0;
   right: 0;
   bottom: 0;
   background-color: #ccc;
   border-radius: 24px;
   transition: 0.3s;
}

.toggle-switch label:before {
   position: absolute;
   content: "";
   height: 18px;
   width: 18px;
   left: 3px;
   bottom: 3px;
   background-color: white;
   border-radius: 50%;
   transition: 0.3s;
}

.toggle-switch input:checked + label {
   background-color: #ea580c;
}

.toggle-switch input:checked + label:before {
   transform: translateX(26px);
}

/* Tab Content */
.safari-tab-content {
   display: none !important;
}

.safari-tab-content.active {
   display: block !important;
}

/* Ensure overview content stays within its tab */
.safari-tab-content#overview {
   position: relative;
   z-index: 1;
}

.safari-tab-content#overview .safari-detail-content {
   position: relative;
   z-index: 1;
}

.safari-detail-content {
   font-size: 1.1rem;
   line-height: 1.6;
   color: #555;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 2rem;
   border-radius: 8px;
   border-left: 4px solid #007bff;
   margin: 1rem 0;
}

/* Safari Inclusions Styling */
.safari-inclusions {
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 2rem;
   border-radius: 8px;
   border-left: 4px solid #28a745;
   margin: 1rem 0;
}

.inclusions-section {
   margin-bottom: 2rem;
}

.inclusions-section:last-child {
   margin-bottom: 0;
}

.inclusions-section h3 {
   color: #333;
   font-size: 1.3rem;
   margin-bottom: 1rem;
   font-weight: 600;
}

.inclusions-section ul {
   list-style: none;
   padding: 0;
}

.inclusions-section li {
   padding: 0.5rem 0;
   padding-left: 1.5rem;
   position: relative;
   color: #555;
   font-size: 1rem;
   line-height: 1.5;
}

.inclusions-section li::before {
   content: '✓';
   position: absolute;
   left: 0;
   color: #28a745;
   font-weight: bold;
   font-size: 1.1rem;
}

/* Responsive styling for overview and inclusions */
@media (max-width: 768px) {
   .safari-detail-content {
      padding: 1.5rem;
      font-size: 1rem;
   }
   
   .safari-inclusions {
      padding: 1.5rem;
   }
   
   .inclusions-section h3 {
      font-size: 1.2rem;
   }
   
   .inclusions-section li {
      font-size: 0.95rem;
   }
}

/* Itinerary Timeline */
.itinerary-timeline {
   position: relative;
   padding-left: 2rem;
}

.itinerary-timeline::before {
   content: '';
   position: absolute;
   left: 1rem;
   top: 0;
   bottom: 0;
   width: 2px;
   background: #e0e0e0;
}

.itinerary-item {
   position: relative;
   margin-bottom: 2rem;
   display: flex;
   align-items: flex-start;
   gap: 1.5rem;
}

.timeline-marker {
   position: absolute;
   left: -2rem;
   top: 0.5rem;
   width: 2rem;
   height: 2rem;
   display: flex;
   align-items: center;
   justify-content: center;
   background: white;
   border: 2px solid #e0e0e0;
   border-radius: 50%;
   z-index: 2;
}

.timeline-marker i {
   color: #ea580c;
   font-size: 0.8rem;
}

.timeline-circle {
   width: 1rem;
   height: 1rem;
   background: #ea580c;
   border-radius: 50%;
}

.itinerary-content {
   flex: 1;
   background: white;
   border: 1px solid #e0e0e0;
   border-radius: 8px;
   overflow: hidden;
}

.itinerary-header {
   padding: 1.5rem;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   display: flex;
   justify-content: space-between;
   align-items: center;
   cursor: pointer;
   transition: background 0.3s ease;
   border-bottom: 1px solid #dee2e6;
}

.itinerary-header:hover {
   background: #e9ecef;
}

.itinerary-header h3 {
   margin: 0;
   font-size: 1.1rem;
   font-weight: 600;
   color: #333;
}

.expand-icon {
   color: #ea580c;
   font-size: 1rem;
   transition: transform 0.3s ease;
}

.itinerary-item.expanded .expand-icon {
   transform: rotate(180deg);
}

.itinerary-details {
   padding: 1.5rem;
   display: none;
   font-size: 0.95rem;
   line-height: 1.6;
   color: #555;
   background: #ffffff;
   border-top: 1px solid #e9ecef;
}

.itinerary-item.expanded .itinerary-details {
   display: block;
}

/* Inclusions Grid */
.inclusions-grid {
   display: grid;
   grid-template-columns: 1fr 1fr;
   gap: 3rem;
   background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
   padding: 2rem;
   border-radius: 8px;
   border-left: 4px solid #28a745;
   margin: 1rem 0;
}

.inclusions-column h3 {
   font-size: 1.3rem;
   font-weight: 600;
   color: #333;
   margin-bottom: 1.5rem;
}

.inclusions-list {
   list-style: none;
   padding: 0;
   margin: 0;
}

.inclusions-list li {
   display: flex;
   align-items: center;
   gap: 1rem;
   padding: 0.8rem 0;
   border-bottom: 1px solid #f0f0f0;
   font-size: 0.95rem;
}

.inclusions-list li:last-child {
   border-bottom: none;
}

.inclusions-list.includes i {
   color: #28a745;
}

.inclusions-list.excludes i {
   color: #dc3545;
}

/* Safari Sidebar */
.safari-sidebar {
   position: sticky;
   top: 2rem;
   height: fit-content;
}

.safari-booking-card {
   background: white;
   border: 1px solid #e0e0e0;
   border-radius: 12px;
   padding: 2rem;
   box-shadow: 0 4px 12px rgba(0,0,0,0.1);
}

.safari-trip-info {
   display: flex;
   justify-content: space-between;
   align-items: flex-start;
   margin-bottom: 2rem;
}

.safari-trip-title {
   font-size: 1.2rem;
   font-weight: 600;
   color: #333;
   margin: 0;
   flex: 1;
}

.safari-duration {
   background: #f8f9fa;
   border-radius: 8px;
   padding: 0.8rem 1rem;
   text-align: center;
   min-width: 80px;
}

.duration-number {
   display: block;
   font-size: 1.5rem;
   font-weight: 700;
   color: #ea580c;
}

.duration-text {
   font-size: 0.8rem;
   color: #666;
}

.safari-price {
   margin-bottom: 2rem;
   text-align: center;
}

.price-label {
   display: block;
   font-size: 0.9rem;
   color: #666;
   margin-bottom: 0.5rem;
}

.price-amount {
   font-size: 2.5rem;
   font-weight: 700;
   color: #333;
}

.price-unit {
   font-size: 1rem;
   color: #666;
}

.safari-check-availability {
   width: 100%;
   background: #333;
   color: white;
   border: none;
   padding: 1rem 2rem;
   border-radius: 8px;
   font-size: 1rem;
   font-weight: 600;
   cursor: pointer;
   transition: all 0.3s ease;
   margin-bottom: 1.5rem;
}

.safari-check-availability:hover {
   background: #555;
   transform: translateY(-2px);
}

.safari-help-text {
   text-align: center;
   font-size: 0.9rem;
   color: #666;
   line-height: 1.4;
}

.chat-link {
   color: #ea580c;
   text-decoration: none;
}

.chat-link:hover {
   text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
   .safari-hero-title {
      font-size: 2rem;
   }
   
   .safari-content-wrapper {
      grid-template-columns: 1fr;
      gap: 2rem;
   }
   
   .safari-tabs {
      flex-wrap: wrap;
   }
   
   .safari-tab {
      padding: 0.8rem 1rem;
      font-size: 0.8rem;
   }
   
   .inclusions-grid {
      grid-template-columns: 1fr;
      gap: 2rem;
      padding: 1.5rem;
   }
   
   .safari-trip-info {
      flex-direction: column;
      gap: 1rem;
   }
   
   .safari-duration {
      align-self: flex-start;
   }
}

/* Safari Hero Responsive Styles */
@media (max-width: 768px) {
   .safari-hero {
      height: 60vh;
   }
   
   .safari-hero-title {
      font-size: 2.5rem;
      padding: 1rem 2rem;
   }
   
   .gallery-button {
      top: 1rem;
      right: 1rem;
      padding: 0.5rem 1rem;
      font-size: 0.8rem;
   }
}

@media (max-width: 480px) {
   .safari-hero-title {
      font-size: 2rem;
      padding: 0.8rem 1.5rem;
   }
}

