/* ==========================================
   PAGE-SPECIFIC STYLES
   ========================================== */

/* --- TOUR GALLERY SECTION --- */
.tour-gallery-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.gallery-title-wrapper {
    margin-bottom: 40px;
}

.gallery-title-wrapper h3 {
    font-size: 2.25rem;
    font-weight: 850;
    color: var(--text-main);
    margin-bottom: 12px;
    letter-spacing: -0.8px;
}

.gallery-title-wrapper p {
    color: var(--text-muted);
    font-size: 1.05rem;
}

.tour-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-auto-rows: 250px;
    gap: 24px;
}

.gallery-item {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    cursor: pointer;
    background: #f8f9fa;
    box-shadow: 0 12px 40px rgba(0,0,0,0.03);
    transform: translateZ(0); /* Hardware acceleration */
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 1;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* Premium Hover Caption using data-caption */
.gallery-item::before {
    content: attr(data-caption);
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1),
                transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    z-index: 2;
    pointer-events: none;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.gallery-item:hover::before {
    opacity: 1;
    transform: translateY(0);
}

/* Masonry Layout Spans - Optimized for 3 columns */
.gallery-item.large {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery-item.tall {
    grid-row: span 2;
}

.gallery-item.wide {
    grid-column: span 2;
}

@media (max-width: 991px) {
    .tour-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 210px;
        gap: 16px;
    }
    .gallery-item.large, .gallery-item.wide, .gallery-item.tall {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    /* Make captions and gradients always visible on mobile & tablet */
    .gallery-item::after {
        opacity: 1 !important;
    }
    .gallery-item::before {
        opacity: 1 !important;
        transform: translateY(0) !important;
    }
}

@media (max-width: 576px) {
    .tour-gallery-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 260px;
        gap: 12px;
    }
    .gallery-item.large, .gallery-item.wide, .gallery-item.tall, .gallery-item:nth-child(5) {
        grid-column: span 1 !important;
        grid-row: span 1 !important;
    }
    .gallery-item::before {
        bottom: 16px;
        left: 16px;
        right: 16px;
        font-size: 0.85rem;
    }
}

/* --- TOUR NAVIGATION & BREADCRUMBS --- */
.tour-nav-bar {
    padding: 20px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.breadcrumb-link {
    font-size: 0.9rem;
    color: var(--text-muted);
    text-decoration: none;
    position: relative;
    padding-bottom: 2px;
    transition: color 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1.5px;
    background-color: var(--primary-color);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.breadcrumb-link:hover {
    color: var(--primary-color) !important;
}

.breadcrumb-link:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.breadcrumb-sep {
    color: rgba(0,0,0,0.2);
    font-size: 0.8rem;
}

.breadcrumb-current {
    font-size: 0.9rem;
    color: var(--text-main);
    font-weight: 600;
}

/* --- RELATED TOURS SECTION --- */
.related-tours-section {
    margin-top: 80px;
    padding: 60px 0;
    background: #fcfcfc;
    border-top: 1px solid rgba(0,0,0,0.05);
}



/* --- CAR RENTAL CARDS --- */
.rental-section {
    padding: 80px 0;
    background: #fcfcfc;
}

.rental-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.car-card {
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.05);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(0,0,0,0.08);
}

.car-img-box {
    height: 240px;
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

.car-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    padding: 20px;
    transition: transform 0.6s ease;
}

.car-card:hover .car-img-box img {
    transform: scale(1.05);
}

.car-price-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary);
    color: #fff;
    padding: 10px 20px;
    font-weight: 800;
    font-size: 1.1rem;
    border-top-right-radius: 20px;
}

.car-details {
    padding: 30px;
    flex-grow: 1;
}

.car-details h3 {
    font-size: 1.5rem;
    font-weight: 850;
    color: var(--text-main);
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.car-subtitle {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.car-spec-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    padding: 20px 0;
    border-top: 1px solid rgba(0,0,0,0.05);
    border-bottom: 1px solid rgba(0,0,0,0.05);
    margin-bottom: 25px;
}

.car-spec-item {
    text-align: center;
}

.car-spec-item i, .car-spec-item svg {
    display: block;
    margin: 0 auto 5px;
    color: var(--primary);
    opacity: 0.8;
}

.car-spec-item label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--text-muted);
    font-weight: 700;
    margin-bottom: 2px;
}

.car-spec-item span {
    font-size: 1rem;
    font-weight: 800;
    color: var(--text-main);
}

.book-car-btn {
    width: 100%;
    padding: 15px;
    border-radius: 12px;
    background: var(--text-main);
    color: #fff;
    text-align: center;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s ease;
    display: block;
}

.book-car-btn:hover {
    background: var(--primary);
    transform: scale(1.02);
}

@media (max-width: 768px) {
    .rental-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================
   SERVICES PAGE - UNIFIED DESIGN
   ========================================== */

.services-hero-section {
    padding: 100px 0;
    background: #ffffff;
}

/* Standard Section Spacing */
.section-padding {
    padding: 100px 0;
}

.bg-light {
    background-color: #f8f9fa;
}

.bg-white {
    background-color: #ffffff;
}

/* Ultra-Minimalist Fleet Filter */
.fleet-filter-container {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 6px;
    border-radius: 50px;
    width: max-content;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.filter-btn {
    background: transparent;
    border: none;
    outline: none;
    color: var(--text-muted);
    font-weight: 600;
    font-size: 0.9rem;
    padding: 8px 22px;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.filter-btn:hover {
    color: var(--text-main);
}

.filter-btn.active {
    background: var(--text-main) !important;
    color: #ffffff !important;
    box-shadow: 0 4px 12px rgba(34, 51, 59, 0.15) !important;
}

/* Mobile responsive adjustments */
@media (max-width: 480px) {
    .fleet-filter-container {
        width: 100%;
        max-width: 100%;
        padding: 4px;
        gap: 4px;
        justify-content: space-between;
    }
    
    .filter-btn {
        flex: 1 1 auto;
        padding: 8px 10px;
        font-size: 0.8rem;
        text-align: center;
    }
}

/* Unified Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
    justify-content: center;
    transition: opacity 0.25s cubic-bezier(0.25, 1, 0.5, 1), transform 0.25s cubic-bezier(0.25, 1, 0.5, 1);
}

/* Fleet Card - Matching site-wide .card component */
.fleet-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s cubic-bezier(0.4, 0, 0.2, 1), box-shadow 0.3s ease !important;
    border: 1px solid rgba(0,0,0,0.05);
    height: 100%;
    display: flex;
    flex-direction: column;
    max-width: 380px;
    width: 100%;
    margin: 0 auto;
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.fleet-img-box {
    padding: 30px;
    background: #fdfdfd;
    height: 220px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.fleet-img-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    mix-blend-mode: multiply;
}

.fleet-price-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--primary-color);
    color: #ffffff;
    padding: 6px 14px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
}

.fleet-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.fleet-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-main);
}

.fleet-specs {
    list-style: none;
    padding: 0;
    margin-bottom: 30px;
}

.fleet-specs li {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
    font-size: 0.95rem;
    color: var(--text-muted);
}

.fleet-specs li span {
    font-weight: 700;
    color: var(--text-main);
}



.bg-dark-services {
    background-color: #0d0d12;
    color: #ffffff;
}

.bg-dark-services h2 {
    color: #ffffff !important;
}

.bg-dark-services p {
    color: rgba(255,255,255,0.6) !important;
}

@media (max-width: 768px) {
    .highlights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .highlight-item {
        border-right: none;
    }
}
/* --- HERO SECTION --- */
.hero-section {
  position: relative;
  width: 100%;
  height: 100vh;
  background-color: #000; /* Initial black background */
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

/* SHUTTER OVERLAY */
.shutter-overlay {
  position: absolute;
  inset: 0;
  z-index: 999;
  pointer-events: none;
}

.shutter-panel {
  position: absolute;
  left: 0;
  width: 100%;
  height: 50.5%; /* Slight overlap to avoid line */
  background: #000;
  transition: transform 1.5s cubic-bezier(0.8, 0, 0.2, 1);
}

.panel-top { top: 0; }
.panel-bottom { bottom: 0; }

.is-loaded .panel-top { transform: translateY(-100%); }
.is-loaded .panel-bottom { transform: translateY(100%); }

/* ENTRANCE ANIMATION CONTROLS (Only for index.html) */
.entrance-sequence .glass-navbar {
  transform: translate(-50%, -100px);
  transition: transform 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.5s;
}

.entrance-sequence.is-loaded .glass-navbar {
  transform: translate(-50%, 0);
}

.entrance-sequence .float-img {
  opacity: 0;
  transition: all 1.2s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Floating Images Staggered */
.entrance-sequence .top-left { transform: rotate(-15deg) translate(-100px, -100px); transition-delay: 1s; }
.entrance-sequence .top-right { transform: rotate(15deg) translate(100px, -100px); transition-delay: 1.1s; }
.entrance-sequence .bottom-left { transform: rotate(10deg) translate(-100px, 100px); transition-delay: 1.2s; }
.entrance-sequence .bottom-right { transform: rotate(-10deg) translate(100px, 100px); transition-delay: 1.3s; }

.entrance-sequence.is-loaded .float-img {
  opacity: 1;
  transform: rotate(var(--rot)) translate(0, 0); /* Variables set in main.js or hardcoded below */
}

/* Override rotations to use the ones from below */
.entrance-sequence.is-loaded .top-left { transform: rotate(-15deg) translate(0, 0); }
.entrance-sequence.is-loaded .top-right { transform: rotate(15deg) translate(0, 0); }
.entrance-sequence.is-loaded .bottom-left { transform: rotate(10deg) translate(0, 0); }
.entrance-sequence.is-loaded .bottom-right { transform: rotate(-10deg) translate(0, 0); }

/* Video Entrance */
.entrance-sequence .hero-media {
  opacity: 0;
  transition: opacity 2s ease-out 1.2s;
}

.entrance-sequence.is-loaded .hero-media {
  opacity: 1;
}


/* Reduced height for internal pages */
.hero-section.hero-inner {
  height: 55vh;
  min-height: 400px;
  background-color: #0b0f12;
}

/* Video Background */
.hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

/* God-level Cinematic Gradient Overlay */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  z-index: 2;
  pointer-events: none;
}

/* Deeper gradient overlay on internal sub-pages for static images to guarantee text readability */
.hero-section.hero-inner .hero-bg::after {
  background: linear-gradient(to bottom, rgba(11, 15, 19, 0.65) 0%, rgba(11, 15, 19, 0.45) 50%, rgba(11, 15, 19, 0.75) 100%);
}

.hero-media {
  width: 100%;
  height: 110%;
  /* Extra height for parallax movement */
  top: -5%;
  /* Center it vertically */
  object-fit: cover;
  /* Ensures video/image fills screen without stretching */
  position: absolute;
  z-index: 1;
}

/* Filter removed as requested */

/* Center Content */
.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
}

.hero-category {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.25em;
  color: #ffc107; /* High-contrast golden accent */
  margin-bottom: 12px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.6);
}

.hero-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 4rem);
  /* Reduced from 5.5rem */
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.03em;
  margin-bottom: 20px;
  text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
  transition: transform 0.1s ease-out;
  /* For smooth parallax */
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.95);
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  font-weight: 500;
  margin-bottom: 30px;
  text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.hero-breadcrumbs {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 5px;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.hero-breadcrumbs a {
  color: rgba(255, 255, 255, 0.95);
  transition: color 0.3s ease;
  font-weight: 500;
}

.hero-breadcrumbs a:hover {
  color: #ffc107;
}

.hero-breadcrumbs .sep {
  color: rgba(255, 255, 255, 0.5);
}

.hero-breadcrumbs .current {
  color: rgba(255, 255, 255, 0.75);
  font-weight: 600;
}

.hero-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  margin-top: 10px;
}

.btn-secondary {
    background-color: rgba(255, 255, 255, 0.15) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.4) !important;
    color: #ffffff !important;
}

.btn-secondary:hover {
    background-color: #ffffff !important;
    color: #000000 !important;
}

@media (max-width: 768px) {
  .hero-actions {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }
}

/* Floating Corner Images */
.floating-images {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 5;
  pointer-events: none;
  /* Let clicks pass through to background */
}

.float-img {
  pointer-events: none;
  /* Disabled interaction as requested */
  position: absolute;
  width: 260px;
  height: 160px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.2);
  background-color: var(--bg-ash);
}

/* Specific Positions and Tilts */
.top-left {
  top: 12%;
  left: 5%;
  transform: rotate(-15deg);
}

.top-right {
  top: 10%;
  right: 5%;
  transform: rotate(15deg);
}

.bottom-left {
  bottom: 18%;
  left: 5%;
  transform: rotate(10deg);
}

.bottom-right {
  bottom: 18%;
  right: 5%;
  transform: rotate(-10deg);
}

/* Hover effect removed as requested */

/* Bottom Stats Bar */
.hero-stats {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 40px;
  align-items: center;
  width: max-content;
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.9);
  font-weight: 500;
  font-size: 0.95rem;
}

.stat-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  background: white;
  color: black;
  border-radius: 50%;
  font-weight: 800;
  font-size: 13px;
}

.stat-icon-svg {
  opacity: 0.9;
}

/* Responsive Mobile Adjustments */
@media (max-width: 1024px) {
  .float-img {
    width: 200px;
    height: 120px;
  }
}

@media (max-width: 768px) {
  .glass-navbar {
    width: 95%;
    padding: 10px 15px;
    top: 15px;
  }

  .nav-title {
    display: block;
    font-size: 0.85rem;
    white-space: nowrap;
    letter-spacing: -0.01em;
    margin-left: 0;
  }

  .float-img {
    display: none;
    /* Hide floating images on mobile to prevent clutter */
  }

  .hero-stats {
    flex-direction: column;
    gap: 15px;
    bottom: 20px;
  }
}

/* ==========================================
   ABOUT US SECTION
   ========================================== */
.about-section {
  padding: 80px 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  /* Right side slightly wider */
  gap: 50px;
  align-items: stretch;
}

.about-left {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 30px;
}

.about-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  color: var(--text-muted);
  margin-bottom: 20px;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
}

.badge svg {
  width: 18px;
  height: 18px;
}

.about-title {
  font-size: clamp(1.4rem, 4vw, 2.4rem);
  /* Reduced from 2.8rem */
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.about-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 35px;
  max-width: 95%;
}

.about-img-small {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 24px;
  box-shadow: var(--shadow-sm);
}

.about-right {
  position: relative;
  border-radius: 30px;
  overflow: hidden;
  height: 100%;
  min-height: 500px;
  box-shadow: var(--shadow-md);
}

.about-slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}

.about-slide.active {
  opacity: 1;
}

@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-content {
    align-items: center;
    /* Centered for mobile */
    text-align: center;
    margin-bottom: 30px;
  }

  .about-right {
    min-height: 450px;
  }

  .about-img-small {
    height: 180px;
  }
}


/* ==========================================
   EXPERIENCE SECTION
   ========================================== */
.experience-section {
  padding-bottom: 60px;
}

.section-header {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-bottom: 40px;
}

.section-title {
  font-size: clamp(1.3rem, 4vw, 2rem);
  /* Reduced from 2.2rem */
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* ==========================================
   EXPERIENCE SECTION (REDESIGNED PREMIUM CARDS)
   ========================================== */
.experience-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.experience-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
    text-decoration: none;
    color: inherit;
}

.experience-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(10, 15, 18, 0.08);
    border-color: rgba(0, 0, 0, 0.1);
}

.experience-img-wrapper {
    position: relative;
    width: 100%;
    aspect-ratio: 4/3;
    overflow: hidden;
}

.experience-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.experience-item:hover .experience-img {
    transform: scale(1.05);
}

.experience-content {
    padding: 24px 28px 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    background: #ffffff;
    flex-grow: 1;
}

.experience-header-tags {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
    width: 100%;
    margin-bottom: 6px;
}

.experience-tag {
    font-size: 0.85rem;
    font-weight: 600;
    color: #b89047; /* Elegant warm gold/amber color accent */
}

.experience-duration {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--text-muted);
}

.experience-title {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--text-main);
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.01em;
}

.experience-desc {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
}

.experience-footer {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-top: 40px;
}

.footer-text {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: -0.01em;
    white-space: nowrap;
}

.footer-line {
    flex: 1;
    height: 1px;
    background-color: #d1d1d1;
    margin: 0 10px;
    display: block;
}

@media (max-width: 1024px) {
    .experience-showcase {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .experience-showcase {
        grid-template-columns: 1fr;
    }
    .experience-footer {
        flex-direction: column;
        text-align: center;
    }
    .footer-line {
        display: none;
    }
}


/* ==========================================
   PACKAGES SECTION
   ========================================== */
.packages-section {
    padding-bottom: 100px;
}

.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.package-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 15px;
    display: flex;
    flex-direction: column;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    border: 1px solid rgba(0,0,0,0.04);
}

.package-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 30px 60px rgba(0,0,0,0.08);
}

.package-img-wrapper {
    position: relative;
    width: 100%;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 5 / 5;
}

.package-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 15%;
    transition: transform 0.6s ease;
}

.package-card:hover .package-img {
    transform: scale(1.08);
}

.package-duration {
    position: absolute;
    top: 15px;
    left: 15px;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 700;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.package-info {
    padding: 25px 10px 10px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.package-info h3 {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 10px;
    letter-spacing: -0.5px;
}

.package-price {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 15px;
}

.package-price strong {
    color: var(--text-main);
    font-size: 1.3rem;
    font-weight: 800;
}

.package-info .package-description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 25px;
}

.package-card .btn {
    width: 100%;
    justify-content: space-between;
    margin-top: auto;
}

/* Responsive Mobile Adjustments for Packages */
@media (max-width: 768px) {
    .packages-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 20px;
    }
    .package-img-wrapper {
        height: auto;
        aspect-ratio: 5 / 5;
    }
}

@media (max-width: 576px) {
    .packages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .package-card {
        padding: 12px;
        border-radius: 20px;
    }
    .package-img-wrapper {
        height: auto;
        aspect-ratio: 5 / 5;
        border-radius: 14px;
    }
    .package-info {
        padding: 15px 5px 5px;
    }
    .package-info h3 {
        font-size: 1.3rem;
    }
    .package-info .package-description {
        margin-bottom: 20px;
        font-size: 0.9rem;
    }
}

/* ==========================================
   WHY TRAVEL WITH US SECTION
   ========================================== */
.why-us-section {
  background-image: radial-gradient(at 0% 0%, rgba(58, 80, 107, 0.8) 0px, transparent 50%),
                    radial-gradient(at 50% 0%, rgba(28, 49, 76, 0.9) 0px, transparent 50%),
                    radial-gradient(at 100% 0%, rgba(111, 143, 175, 0.8) 0px, transparent 50%),
                    radial-gradient(at 0% 100%, rgba(28, 49, 76, 0.9) 0px, transparent 50%),
                    radial-gradient(at 100% 100%, rgba(58, 80, 107, 0.8) 0px, transparent 50%);
  background-color: #0d0d12;
  padding: 120px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: white;
  position: relative;
  /* Dark gradient overlay so text is readable over aurora */
  box-shadow: inset 0 0 0 2000px rgba(0, 0, 0, 0.75);
}

.why-us-section .container {
  position: relative;
  z-index: 2;
}

.text-white {
  color: #ffffff !important;
}

.light-badge {
  color: rgba(255, 255, 255, 0.9);
}

.why-us-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: stretch;
}

.why-us-image-wrapper {
  width: 100%;
  height: 100%;
  min-height: 500px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.why-dynamic-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.3s ease, transform 0.6s ease;
}

.why-glass-panel {
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  padding: 10px 0;
}

.why-item {
  position: relative;
  display: flex;
  gap: 25px;
  align-items: flex-start;
  padding: 25px 30px;
  margin: 5px 20px;
  border-radius: 20px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  opacity: 0.6;
  background: transparent;
  border: 1px solid transparent; /* Pre-allocate space */
  backface-visibility: hidden;
  -webkit-font-smoothing: subpixel-antialiased;
}

.why-item:hover,
.why-item.active {
  opacity: 1;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transform: translateX(5px); /* Clean, non-destructive movement */
}

.why-icon {
  flex-shrink: 0;
  color: #ffffff;
  margin-top: 3px;
}

.why-text h3 {
  font-size: 1.4rem;
  font-weight: 700;
  margin-bottom: 4px;
  color: #ffffff;
}

.why-text p {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.65);
  line-height: 1.5;
}

@media (max-width: 992px) {
  .why-us-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .why-us-image-wrapper {
    min-height: 350px;
    margin-bottom: 10px;
  }
}

@media (max-width: 768px) {
  .why-us-section {
    padding: 80px 0 !important;
  }

  .why-us-image-wrapper {
    min-height: 250px;
    border-radius: 16px;
  }

  .why-glass-panel {
    border-radius: 16px;
    padding: 5px 0;
  }

  .why-item {
    padding: 15px;
    margin: 5px 10px;
    gap: 15px;
    border-radius: 12px;
  }

  .why-item:hover,
  .why-item.active {
    transform: none; /* Disable horizontal shift on mobile to save space */
  }

  .why-text h3 {
    font-size: 1.1rem;
  }

  .why-text p {
    font-size: 0.9rem;
  }

  .why-icon svg {
    width: 24px;
    height: 24px;
  }
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
  padding-bottom: 100px;
}

.testimonial-card {
  position: relative;
  width: 100%;
  height: 450px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.testimonial-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 1;
  transition: opacity 0.4s ease;
}

.testimonial-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  /* Dark gradient fading from left to right */
  background: linear-gradient(to right, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 40%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
}

.testimonial-content {
  position: relative;
  z-index: 3;
  padding: 60px;
  max-width: 650px;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.stars {
  display: flex;
  gap: 4px;
  margin-bottom: 25px;
}

.testimonial-quote {
  font-size: 1.8rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1.4;
  margin-bottom: 20px;
  font-family: var(--font-main);
  letter-spacing: -0.01em;
  transition: opacity 0.4s ease;
}

.testimonial-author {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  font-weight: 500;
  margin-bottom: auto;
  /* Pushes the avatars to the bottom */
  transition: opacity 0.4s ease;
}

.testimonial-avatars {
  display: flex;
  align-items: center;
  margin-top: 40px;
}

.avatar {
  width: 55px;
  height: 55px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(255, 255, 255, 0.5);
  margin-left: -15px;
  transition: transform 0.3s ease, border-color 0.3s ease;
  cursor: pointer;
}

.avatar.active {
  border-color: #ffffff;
  z-index: 20 !important;
}

.avatar:first-child {
  margin-left: 0;
}

.avatar:hover {
  transform: translateY(-5px);
  z-index: 10 !important;
  border-color: #ffffff;
}

@media (max-width: 768px) {
  .testimonial-content {
    padding: 40px 30px;
  }

  .testimonial-quote {
    font-size: 1.5rem;
  }

  .testimonial-overlay {
    background: linear-gradient(to right, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0.6) 100%);
  }
}

/* ==========================================
   SERVICES SECTION (Cinematic Feature Links)
   ========================================== */
.services-feature-links {
  display: flex;
  flex-direction: column;
  gap: 80px;
  padding: 40px 0;
}

.service-feature-row {
  display: flex;
  align-items: center;
  gap: 60px;
}

.service-feature-row.reverse {
  flex-direction: row-reverse;
}

.feature-image-side {
  flex: 1.1;
  height: 450px;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.feature-image-side.map-contain {
  height: auto;
  background: transparent;
  border: none;
  box-shadow: none;
  overflow: visible;
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-image-side.map-contain .feature-img {
  width: 90%;
  height: auto;
  max-height: 450px;
  object-fit: contain;
  border-radius: 20px;
  box-shadow: var(--shadow-md);
}

.feature-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s ease;
}

.service-feature-row:hover .feature-img {
  transform: scale(1.05);
}

.feature-content-side {
  flex: 0.9;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.feature-label {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 15px;
}

.feature-title {
  font-size: clamp(2rem, 3.5vw, 2.5rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.1;
  margin-bottom: 25px;
  letter-spacing: -0.02em;
}

.feature-desc {
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--text-muted);
  margin-bottom: 30px;
  max-width: 500px;
}

.feature-meta {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 40px;
}

.meta-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--text-main);
  font-size: 0.95rem;
}

.meta-icon {
  width: 20px;
  height: 20px;
  background: var(--bg-ash);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  color: var(--text-main);
}

@media (max-width: 1024px) {

  .service-feature-row,
  .service-feature-row.reverse {
    flex-direction: column;
    gap: 30px;
    text-align: center;
    align-items: center;
  }

  .feature-image-side {
    width: 100%;
    height: auto;
    aspect-ratio: 1.5;
    max-height: auto;
  }

  .feature-content-side {
    width: 100%;
    align-items: center;
    /* Center content on mobile */
  }

  .feature-meta {
    align-items: center;
  }
}

/* ==========================================
   CONTACT HUB REDESIGN (Immersive)
   ========================================== */
.contact-hub-section {
  position: relative;
  padding: 120px 0;
  background-color: #f8f9fa;
  background-image: radial-gradient(circle at 0% 0%, rgba(44, 73, 85, 0.05) 0%, transparent 50%),
    radial-gradient(circle at 100% 100%, rgba(123, 186, 189, 0.08) 0%, transparent 50%);
}

.contact-hub-card {
  background: #ffffff;
  border-radius: 40px;
  box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.hub-info-panel {
  background-color: var(--primary-color);
  color: #ffffff;
  padding: 60px 50px;
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.hub-info-header h2 {
  font-size: 2.5rem;
  font-weight: 800;
  margin-bottom: 15px;
  line-height: 1.1;
}

.hub-info-header p {
  color: rgba(255, 255, 255, 0.7);
  font-size: 1.05rem;
}

.hub-contact-list {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hub-contact-item {
  display: flex;
  gap: 20px;
  align-items: flex-start;
}

.hub-icon-box {
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hub-text-box h4 {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--secondary-color);
  margin-bottom: 5px;
}

.hub-text-box p {
  font-size: 1.05rem;
  color: #ffffff;
  line-height: 1.4;
}

/* Compact Map Widget */
.hub-map-widget {
  width: 100%;
  height: 180px;
  border-radius: 20px;
  overflow: hidden;
  margin-top: auto;
  border: 1px solid rgba(255, 255, 255, 0.1);
  opacity: 0.8;
  transition: opacity 0.3s ease;
}

.hub-map-widget:hover {
  opacity: 1;
}

.hub-form-panel {
  padding: 60px 50px;
  background-color: #ffffff;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

@media (max-width: 1024px) {
  .contact-hub-card {
    grid-template-columns: 1fr;
  }

  .hub-info-panel {
    padding: 40px;
  }

  .hub-form-panel {
    padding: 40px;
  }
}

/* ==========================================
   CONTACT MASTERPIECE (Compact & Polished)
   ========================================== */
.contact-masterpiece-section {
  padding: 60px 0 100px;
  background-color: var(--bg-light); /* Light ash background to make the white canvas card pop */
}

.contact-canvas {
  background: #ffffff;
  border-radius: 35px;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.08);
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  /* Slightly wider form */
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.03);
  max-width: 1100px;
  /* Constrain width to look more compact */
  margin: 0 auto;
}

/* Left Side: Dense & Modern */
.canvas-media-side {
  position: relative;
  background: var(--primary-color);
  padding: 45px;
  /* Reduced from 60px */
  display: flex;
  flex-direction: column;
  justify-content: center;
  /* Center content vertically to remove gaps */
  gap: 30px;
  color: #ffffff;
}

.canvas-media-side::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, rgba(44, 73, 85, 0.95), rgba(44, 73, 85, 0.8)),
    url('../images/about/milestone-bg.avif') center/cover;
  opacity: 1;
  z-index: 0;
}

.canvas-header,
.canvas-info-grid,
.hub-social-list {
  position: relative;
  z-index: 1;
}

.canvas-header h2 {
  font-size: 2.4rem;
  /* Slightly smaller to fit better */
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 15px;
}

.canvas-info-grid {
  display: flex;
  flex-direction: column;
  gap: 15px;
  /* Tightened from 25px */
}

.canvas-info-item {
  display: flex;
  align-items: center;
  gap: 15px;
  background: rgba(255, 255, 255, 0.08);
  padding: 15px 20px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.canvas-icon {
  width: 42px;
  height: 42px;
  background: var(--secondary-color);
  color: var(--primary-color);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.canvas-text h4 {
  font-size: 0.8rem;
  color: var(--secondary-color);
  margin-bottom: 2px;
}

.canvas-text p {
  font-size: 0.95rem;
  font-weight: 500;
}

/* Right Side: Form */
.canvas-form-side {
  padding: 45px 50px;
  /* Reduced from 60px */
  background: #ffffff;
}

.canvas-form-header {
  margin-bottom: 30px;
}

.canvas-form-header h3 {
  font-size: 1.6rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 5px;
}

.form-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 15px;
}

.canvas-field {
  margin-bottom: 18px;
  /* Tightened from 25px */
}

.canvas-field label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--primary-color); /* Premium brand color for labels */
  margin-bottom: 8px;
  transition: color 0.3s ease;
}

.canvas-input {
  width: 100%;
  padding: 14px 18px;
  background: #fcfcfc;
  border: 1.5px solid #e5e7eb;
  border-radius: 12px;
  font-family: inherit;
  font-size: 0.95rem;
  transition: all 0.3s ease;
  color: var(--text-main);
}

.canvas-input:focus {
  outline: none;
  background: #ffffff;
  border-color: var(--primary-color);
  box-shadow: 0 0 0 4px rgba(52, 94, 111, 0.12);
}

/* Redesigned Button (Liquid/Glow) */
.canvas-submit-btn {
  width: 100%;
  padding: 16px;
  background: linear-gradient(135deg, var(--primary-color), #3a606f);
  color: #ffffff;
  border: none;
  border-radius: 12px;
  font-size: 1rem;
  font-weight: 700;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 10px 25px rgba(44, 73, 85, 0.25);
  margin-top: 10px;
  position: relative;
  overflow: hidden;
}

.canvas-submit-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 15px 35px rgba(44, 73, 85, 0.35);
  filter: brightness(1.1);
}

.canvas-submit-btn:active {
  transform: translateY(1px);
}

.btn-circle {
  width: 28px;
  height: 28px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media (max-width: 1024px) {
  .contact-canvas {
    grid-template-columns: 1fr;
  }

  .canvas-media-side,
  .canvas-form-side {
    padding: 40px;
  }
}

.form-group {
  margin-bottom: 25px;
}

.form-group label {
  display: block;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text-main);
  font-size: 0.9rem;
}

.form-control {
  width: 100%;
  padding: 16px 20px;
  border: 1.5px solid #f0f0f0;
  border-radius: 15px;
  font-family: var(--font-main);
  font-size: 1rem;
  transition: all 0.3s ease;
  background: #fdfdfd;
}

.form-control:focus {
  outline: none;
  border-color: var(--secondary-color);
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(123, 186, 189, 0.1);
}

textarea.form-control {
  min-height: 140px;
}

/* Hub Social Buttons */
.hub-social-list {
  display: flex;
  gap: 12px;
  margin-top: 10px;
}

.hub-social-btn {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px;
  border-radius: 12px;
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.3s ease;
  color: #ffffff;
}

.hub-social-btn:hover {
  transform: translateY(-3px);
  filter: brightness(1.1);
}

.hub-social-btn.whatsapp {
  background: #25D366;
}

.hub-social-btn.instagram {
  background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
}

/* Redesigned Submit Button */
.hub-submit-btn {
  width: 100%;
  padding: 18px;
  border: none;
  border-radius: 15px;
  background: var(--primary-color);
  color: #ffffff;
  font-size: 1.1rem;
  font-weight: 800;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
  box-shadow: 0 10px 20px rgba(44, 73, 85, 0.2);
}

.hub-submit-btn:hover {
  background: var(--text-main);
  transform: scale(1.02);
  box-shadow: 0 15px 30px rgba(0, 0, 0, 0.15);
}

.hub-submit-btn .btn-icon-arrow {
  width: 24px;
  height: 24px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==========================================
   MILESTONES SECTION
   ========================================== */
.milestones-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  color: #ffffff;
  overflow: hidden;
}

.milestones-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  /* Dark overlay */
  z-index: 1;
}

.milestones-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

.milestones-title {
  text-align: center;
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 60px;
  color: #ffffff;
}

.milestones-grid {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.milestones-column {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 60px;
}

.milestone-center {
  flex: 1.2;
  display: flex;
  justify-content: center;
}

.milestone-img {
  width: 100%;
  max-width: 400px;
  border-radius: 30px;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.milestone-item {
  display: flex;
  align-items: center;
  gap: 15px;
  position: relative;
}

.milestone-item.right {
  flex-direction: row-reverse;
  text-align: right;
}

.milestone-bubble {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 8px 18px;
  border-radius: 50px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  font-weight: 700;
  font-size: 1.1rem;
  color: #ffffff;
  white-space: nowrap;
}

.milestone-text {
  font-size: 0.95rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  white-space: nowrap;
}

/* Connecting Lines */
.milestone-line {
  height: 1px;
  background: rgba(255, 255, 255, 0.3);
  flex-grow: 1;
  min-width: 40px;
}

@media (max-width: 1024px) {
  .milestones-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    gap: 40px 20px;
  }

  .milestones-column {
    width: calc(50% - 10px);
    flex: unset;
    display: flex;
    flex-direction: column;
    gap: 40px;
    order: 1;
  }

  .milestone-center {
    width: 100%;
    flex: unset;
    display: flex;
    justify-content: center;
    order: 2;
    margin-top: 20px;
  }

  .milestone-img {
    max-width: 100%;
    width: 320px;
  }

  .milestone-item,
  .milestone-item.right {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 10px;
  }

  .milestone-line {
    display: none;
  }
}

@media (max-width: 768px) {
  .milestones-section {
    padding: 60px 0;
  }

  .milestones-title {
    font-size: 2.2rem;
    margin-bottom: 40px;
  }

  .milestones-grid {
    gap: 30px 10px;
  }

  .milestones-column {
    gap: 30px;
  }

  .milestone-bubble {
    padding: 6px 14px;
    font-size: 1rem;
  }

  .milestone-text {
    font-size: 0.85rem;
  }
}

/* ==========================================
   JOURNEY SECTION
   ========================================== */
.journey-section {
  padding: 80px 0;
  background-color: #ffffff;
}

.journey-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  margin-top: 40px;
}

.journey-image {
  width: 100%;
  border-radius: 30px;
  box-shadow: var(--shadow-md);
  object-fit: cover;
  height: 400px;
}

.journey-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.journey-block h3 {
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.journey-block p {
  color: var(--text-muted);
  line-height: 1.6;
  font-size: 1.05rem;
}

@media (max-width: 992px) {
  .journey-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .journey-image {
    height: 300px;
  }
}

/* ==========================================
   TOUR DETAIL PAGE STYLES (PREMIUM SPLIT)
   ========================================== */
.tour-detail-header {
  background: #0a1520;
  background-image: 
    radial-gradient(circle at 10% 20%, rgba(var(--primary-color-rgb), 0.1) 0%, transparent 40%),
    radial-gradient(circle at 90% 80%, rgba(var(--primary-color-rgb), 0.05) 0%, transparent 40%),
    linear-gradient(135deg, #0a1520 0%, #1a2a3a 100%);
  padding: 160px 0 100px;
  position: relative;
  overflow: hidden;
}

.tour-header-flex {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

.tour-header-content {
  position: relative;
  z-index: 2;
}

.tour-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 20px;
  background: rgba(var(--primary-color-rgb), 0.15);
  backdrop-filter: blur(10px);
  border-radius: 100px;
  color: var(--primary-color);
  font-size: 0.9rem;
  font-weight: 700;
  margin-bottom: 30px;
  border: 1px solid rgba(var(--primary-color-rgb), 0.2);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.tour-title-main {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 25px;
  line-height: 1.05;
  letter-spacing: -0.02em;
}

.tour-title-main br {
  display: none;
}

.tour-subtitle-main {
  color: rgba(255,255,255,0.8);
  font-size: 1.25rem;
  line-height: 1.7;
  margin-bottom: 50px;
  max-width: 540px;
}

/* Floating Image Card */
.tour-header-visual {
  position: relative;
  z-index: 2;
}

.visual-image-wrapper {
  position: relative;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 50px 100px rgba(0,0,0,0.4);
  transform: perspective(1000px) rotateY(-5deg);
  border: 8px solid rgba(255,255,255,0.05);
}

.visual-image-wrapper img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.visual-image-wrapper::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.4), transparent);
}

.visual-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -30px;
  background: #ffffff;
  padding: 20px 30px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0,0,0,0.2);
  display: flex;
  align-items: center;
  gap: 15px;
  z-index: 3;
}

.visual-floating-badge .icon {
  width: 50px;
  height: 50px;
  background: var(--primary-color);
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
}

.visual-floating-badge .text span {
  display: block;
  font-size: 0.8rem;
  color: var(--text-muted);
}

.visual-floating-badge .text strong {
  display: block;
  font-size: 1.2rem;
  color: var(--text-main);
  font-weight: 800;
}

.tour-data-bar-modern {
  display: flex;
  justify-content: space-around;
  align-items: center;
  background: rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 100px;
  padding: 12px 24px;
  max-width: 600px;
  width: 100%;
}

.tour-data-item {
  background: transparent;
  padding: 0;
  border-radius: 0;
  border: none;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 8px;
}

.tour-data-item:hover {
  background: transparent;
  transform: translateY(-2px);
}

.tour-data-icon {
  width: auto;
  height: auto;
  background: transparent;
  border: none;
  border-radius: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #b89047; /* Elegant warm gold accent */
}

.tour-data-icon svg {
  width: 18px;
  height: 18px;
}

.tour-data-text span {
  display: block;
  font-size: 0.65rem;
  color: rgba(255, 255, 255, 0.4);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-weight: 600;
  line-height: 1;
  margin-bottom: 2px;
}

.tour-data-text strong {
  font-size: 0.9rem;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.15;
}

.tour-detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 60px;
  padding: 80px 0;
}

/* Itinerary Timeline */
.itinerary-section h3 {
  font-size: 2rem;
  font-weight: 800;
  margin-bottom: 40px;
}

.itinerary-timeline {
  position: relative;
  padding-left: 40px;
}

.itinerary-timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 2px;
  height: 100%;
  background: #f0f0f0;
}

.itinerary-day {
  position: relative;
  margin-bottom: 40px;
}

.itinerary-day::before {
  content: '';
  position: absolute;
  left: -44px;
  top: 0;
  width: 10px;
  height: 10px;
  background: var(--primary-color);
  border-radius: 50%;
  border: 4px solid #ffffff;
  box-shadow: 0 0 0 4px #f0f0f0;
}

.itinerary-day h4 {
  font-size: 1.2rem;
  font-weight: 800;
  margin-bottom: 10px;
  color: var(--primary-color);
}

.itinerary-day p {
  color: var(--text-muted);
  line-height: 1.6;
}

/* Inclusion/Exclusion */
.highlights-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  margin-top: 60px;
}

.highlight-card {
  padding: 30px;
  border-radius: 20px;
  background: #f8f9fa;
}

.highlight-card h4 {
  margin-bottom: 20px;
  font-size: 1.1rem;
}

.highlight-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.highlight-list li svg {
  flex-shrink: 0;
}

/* Sidebar Booking */
.tour-sidebar-card {
  background: #ffffff;
  padding: 40px;
  border-radius: 30px;
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.06);
  border: 1px solid #f0f0f0;
  position: sticky;
  top: 100px;
}

.sidebar-price-tag {
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.sidebar-price-tag span {
  font-size: 0.9rem;
  color: var(--text-muted);
}

.sidebar-price-tag h2 {
  font-size: 2.2rem;
  color: var(--primary-color);
  font-weight: 800;
}

@media (max-width: 992px) {
  .tour-header-flex {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .tour-subtitle-main {
    margin-left: auto;
    margin-right: auto;
  }

  .tour-data-bar-modern {
    display: flex;
    margin: 0 auto;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    justify-content: center;
  }

  .tour-detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .visual-image-wrapper img {
    height: 350px;
  }

  .visual-floating-badge {
    left: 20px;
  }
}

@media (max-width: 768px) {
  .tour-header-visual {
    display: none;
  }

  .tour-detail-header {
    padding: 120px 0 40px;
  }

  .tour-title-main {
    font-size: 2.2rem;
  }

  .tour-data-bar-modern {
    display: flex;
    justify-content: space-around;
    padding: 10px 16px;
    gap: 15px;
    margin-top: 15px;
  }

  .tour-data-item {
    flex-direction: row;
    padding: 0;
    border-radius: 0;
    gap: 8px;
  }

  .highlights-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 40px;
  }

  .highlight-card {
    padding: 20px;
  }

  .tour-sidebar-card {
    padding: 25px;
    border-radius: 24px;
  }
}

@media (max-width: 576px) {
  .canvas-media-side,
  .canvas-form-side {
    padding: 30px 20px;
  }

  .canvas-info-item {
    padding: 12px 15px;
    gap: 12px;
  }

  .canvas-text p {
    font-size: 0.8rem;
  }

  .tour-title-main {
    font-size: 1.8rem;
  }

  .tour-subtitle-main {
    font-size: 1rem;
    margin-bottom: 30px;
  }

  .tour-data-bar-modern {
    padding: 8px 12px;
    gap: 8px;
  }

  .tour-data-item {
    gap: 6px;
  }

  .tour-data-icon svg {
    width: 15px;
    height: 15px;
  }

  .tour-data-text span {
    font-size: 0.55rem;
  }

  .tour-data-text strong {
    font-size: 0.75rem;
  }

  .visual-image-wrapper {
    border-radius: 24px;
    transform: none;
  }

  .visual-image-wrapper img {
    height: 250px;
  }

  .visual-floating-badge {
    padding: 10px 15px;
    border-radius: 12px;
    bottom: 15px;
    left: 15px;
  }

  .visual-floating-badge .icon {
    width: 35px;
    height: 35px;
    border-radius: 8px;
  }

  .visual-floating-badge .text strong {
    font-size: 1rem;
  }
}

/* ==========================================
   TESTIMONIAL SLIDER (Homepage)
   ========================================== */
.testimonial-section {
    background: #ffffff;
    overflow: hidden;
    position: relative;
}

.testi-wrapper {
    position: relative;
    max-width: 950px;
    margin: 80px auto 0;
}

.testi-nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: white;
    border: 1px solid #eee;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0,0,0,0.05);
    z-index: 10;
    transition: all 0.3s;
}

.testi-nav-btn:hover {
    background: var(--primary-color);
    color: white;
}

.testi-nav-btn--prev { left: -60px; }
.testi-nav-btn--next { right: -60px; }

@media (max-width: 1200px) {
    .testi-nav-btn--prev { left: -10px; }
    .testi-nav-btn--next { right: -10px; }
}

@media (max-width: 992px) {
    .testi-nav-btn {
        top: 50%;
        bottom: auto;
        transform: translateY(-50%);
    }
}

.testi-slide {
    display: none;
    text-align: center;
    padding: 0 60px;
}

@media (max-width: 768px) {
    .testi-slide { padding: 0 45px; }
}

.testi-slide.active {
    display: block;
    animation: testiFadeIn 0.8s ease forwards;
}

@keyframes testiFadeIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.testi-quote-link {
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.testi-quote {
    font-size: 1.3rem;
    font-weight: 500;
    line-height: 1.7;
    color: var(--text-main);
    font-family: var(--font-main);
    font-style: italic;
    max-width: 850px;
    margin: 0 auto;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .testi-quote {
        -webkit-line-clamp: 5;
        line-clamp: 5;
        font-size: 1.15rem;
    }
}

.testi-quote-link:hover .testi-quote {
    color: var(--primary-color);
}

.testi-meta {
    margin-top: 35px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.testi-author {
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary-color);
}

.testi-link {
    font-size: 0.75rem;
    font-weight: 700;
    color: #4285F4;
    text-decoration: none;
    padding: 8px 20px;
    border-radius: 50px;
    background: #ffffff;
    border: 1px solid rgba(66, 133, 244, 0.3);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.05);
    margin-top: 5px;
}

.testi-link:hover {
    background: #4285F4;
    color: #ffffff;
    border-color: #4285F4;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(66, 133, 244, 0.25);
}

.testi-link::before {
    content: 'G';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 16px;
    height: 16px;
    background: #4285F4;
    color: white;
    font-size: 10px;
    border-radius: 50%;
}

.testi-link:hover::before {
    background: white;
    color: #4285F4;
}

.testi-dots {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 60px;
}

.testi-dot {
    width: 10px;
    height: 6px;
    border-radius: 10px;
    background: #e0e0e0;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.testi-dot.active {
    width: 40px;
    background: #e0e0e0;
}

.testi-dot.active::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--primary-color);
    animation: testiProgress 6s linear forwards;
}

@keyframes testiProgress {
    from { width: 0; }
    to { width: 100%; }
}

/* Trust Ratings Bar */
.trust-ratings {
    display: flex;
    justify-content: center;
    gap: 40px;
    margin-top: 30px;
}

.trust-rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.trust-rating-score {
    font-weight: 900;
    font-size: 1.2rem;
}

.trust-rating-score--google { color: #4285F4; }
.trust-rating-score--tripadvisor { color: #00af87; }

.trust-rating-stars {
    font-size: 0.7rem;
}

.trust-rating-stars--google { color: #ffc107; }
.trust-rating-stars--tripadvisor { color: #00af87; }

.trust-rating-label {
    font-size: 0.6rem;
    font-weight: 700;
    color: var(--text-muted);
    text-transform: uppercase;
}

.trust-divider {
    width: 1px;
    height: 20px;
    background: #eee;
}

/* Package Card Category Label */
.package-category {
    color: var(--primary-color);
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.7rem;
    letter-spacing: 2px;
}

.package-card-title {
    margin: 10px 0;
}

@media (max-width: 768px) {
    .testi-nav-btn--prev { left: -10px; }
    .testi-nav-btn--next { right: -10px; }
    .testi-quote { font-size: 1.3rem; }
    .trust-ratings { flex-direction: column; gap: 15px; align-items: center; }
}

/* Policy & Legal Pages Styles */
.policy-section {
  padding: 140px 0 80px;
}

.policy-header {
  text-align: center;
  margin-bottom: 60px;
}

.policy-header h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 800;
  color: var(--text-main);
  margin-bottom: 12px;
}

.policy-header p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.policy-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.06);
  max-width: 860px;
  margin: 0 auto;
}

.policy-card h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text-main);
  margin: 32px 0 12px;
}

.policy-card h2:first-child {
  margin-top: 0;
}

.policy-card p,
.policy-card li {
  color: #444444;
  line-height: 1.8;
  font-size: 0.97rem;
  margin-bottom: 12px;
}

.policy-card ul {
  padding-left: 20px;
  margin-bottom: 16px;
}

.policy-card a {
  color: var(--primary-color);
  text-decoration: underline;
}

.back-link {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  margin-bottom: 32px;
  font-size: 0.9rem;
}

.highlight-box {
  background: #f8f9fa;
  border-left: 4px solid var(--primary-color);
  padding: 16px 20px;
  border-radius: 0 8px 8px 0;
  margin: 20px 0;
}


/* 404 Error Page Styles */
.error-section {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 20px;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.error-inner {
  max-width: 600px;
  margin: 0 auto;
}

.error-code {
  font-size: clamp(6rem, 20vw, 10rem);
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, var(--primary-color), #16213e);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
  margin-bottom: 16px;
}

.error-title {
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 700;
  color: var(--text-main);
  margin-bottom: 16px;
}

.error-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  margin-bottom: 40px;
  line-height: 1.7;
}

.error-links {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.error-logo {
  width: 64px;
  height: 64px;
  object-fit: contain;
  margin-bottom: 32px;
  border-radius: 12px;
}

/* ==========================================
   ABOUT US PAGE ADDITIONS & PREMIUM STYLING
   ========================================== */

/* Our Story Premium Styles & Founder Image */
.about-section .about-grid {
  align-items: center; /* Center elements vertically for a balanced look */
}

.about-section .about-left {
  justify-content: flex-start !important;
  gap: 20px !important;
}

.about-founder-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 30%; /* Shifted position vertically to center founder's face */
  transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: block;
}

.about-right:hover .about-founder-img {
  transform: scale(1.025);
}

.founder-caption-wave-container {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  z-index: 2;
  display: flex;
  flex-direction: column;
  pointer-events: none; /* Allows hover zoom on image behind it */
}

.founder-caption-wave {
  width: 102%; /* Stretch slightly to avoid subpixel gaps on edges */
  margin-left: -1%;
  height: 45px;
  display: block;
  margin-bottom: -2px; /* Pull down slightly to cover hairline gaps */
}

.founder-img-caption {
  position: relative;
  width: 100%;
  padding: 10px 28px 24px;
  background: #22333b; /* Solid slate primary brand color background */
  color: #ffffff;
  display: flex;
  flex-direction: column;
}

.caption-name {
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--secondary-color);
  letter-spacing: -0.01em;
}

.caption-title {
  font-size: 0.8rem;
  font-weight: 700;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-top: 4px;
}

.founder-quote-block {
  margin-top: 25px;
  padding: 26px 30px;
  background: #f2f6f7; /* High-contrast soft background */
  border-left: 4px solid var(--secondary-color);
  border-radius: 0 16px 16px 0;
  position: relative;
  box-shadow: 0 5px 20px rgba(34, 51, 59, 0.03);
}

.founder-quote-text {
  font-style: italic;
  font-size: 1.02rem;
  color: var(--text-main);
  line-height: 1.65;
  margin-bottom: 12px;
}

.founder-signature {
  display: block;
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--primary-color);
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .about-section .about-grid {
    align-items: stretch;
  }
}

/* Mission & Vision Section (Asymmetric Layout) */
.mission-vision-section {
  padding: 100px 20px;
  background-color: #ffffff;
}

.mv-asymmetric-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 60px;
  max-width: 1200px;
  margin: 0 auto;
  align-items: center;
}

.mv-left-panel {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.mv-section-title {
  font-size: clamp(1.8rem, 4vw, 2.6rem);
  font-weight: 800;
  color: var(--text-main);
  line-height: 1.25;
  margin-bottom: 20px;
  letter-spacing: -0.02em;
}

.mv-section-desc {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.mv-right-cards {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.mv-asymmetric-card {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px;
  border-radius: 24px;
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.5s ease;
}

.mv-card-header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.mv-asymmetric-card.dark-theme {
  background: var(--primary-color); /* Dark slate `#22333b` */
  color: #ffffff;
  box-shadow: 0 10px 40px rgba(34, 51, 59, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.mv-asymmetric-card.light-theme {
  background: #ffffff;
  color: var(--text-main);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.02);
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.mv-asymmetric-card:hover {
  transform: translateY(-8px);
}

.mv-asymmetric-card.dark-theme:hover {
  box-shadow: 0 20px 50px rgba(34, 51, 59, 0.25);
}

.mv-asymmetric-card.light-theme:hover {
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.06);
  border-color: var(--secondary-color);
}

.mv-asymmetric-card .mv-card-icon {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mv-asymmetric-card.dark-theme .mv-card-icon {
  background: rgba(123, 186, 189, 0.15);
  color: var(--secondary-color);
}

.mv-asymmetric-card.light-theme .mv-card-icon {
  background: rgba(123, 186, 189, 0.1);
  color: var(--primary-color);
}

.mv-asymmetric-card .mv-card-icon svg {
  width: 26px;
  height: 26px;
}

.mv-asymmetric-card .mv-card-content {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.mv-asymmetric-card.dark-theme .mv-card-title {
  color: #ffffff;
  font-size: 1.4rem;
  font-weight: 800;
}

.mv-asymmetric-card.light-theme .mv-card-title {
  color: var(--text-main);
  font-size: 1.4rem;
  font-weight: 800;
}

.mv-asymmetric-card.dark-theme .mv-card-text {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.98rem;
  line-height: 1.6;
}

.mv-asymmetric-card.light-theme .mv-card-text {
  color: var(--text-muted);
  font-size: 0.98rem;
  line-height: 1.6;
}

/* Why Choose Us Section (Sticky Stacking Cards Layout) */
.why-choose-us-section {
  padding: 120px 20px;
  background-color: var(--bg-light);
  overflow: visible; /* Required for sticky positioning of children */
}

.why-choose-us-header {
  max-width: 800px;
  margin: 0 auto 60px;
}

.why-choose-us-header .badge {
  background: transparent;
  border: none;
  padding: 0;
  color: var(--primary-color);
}

.advantage-stack-container {
  position: relative;
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 30px;
  padding-bottom: 0;
}

.advantage-stack-card {
  position: sticky;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
}

/* Inner card wrapper that carries the scroll-reveal transform and hover scaling */
.stack-card-inner {
  display: flex;
  align-items: center;
  gap: 45px;
  padding: 45px 55px;
  width: 100%;
  height: 100%;
}

/* Alternate light/dark card aesthetics */
.advantage-stack-card:nth-child(odd) {
  background: #ffffff;
  border: none;
}

.advantage-stack-card:nth-child(even) {
  background: #22333b; /* Premium slate color */
  color: #ffffff;
  border: none;
}

/* Sticky top offsets + incremental z-index for proper layering */
.advantage-stack-card:nth-child(1) { top: 120px; z-index: 1; }
.advantage-stack-card:nth-child(2) { top: 120px; z-index: 2; }
.advantage-stack-card:nth-child(3) { top: 120px; z-index: 3; }
.advantage-stack-card:nth-child(4) { top: 120px; z-index: 4; }
.advantage-stack-card:nth-child(5) { top: 120px; z-index: 5; }
.advantage-stack-card:nth-child(6) { top: 120px; z-index: 6; }

/* Left number card element */
.stack-card-left {
  flex-shrink: 0;
}

.advantage-stack-num {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-primary);
  letter-spacing: -0.03em;
}

.advantage-stack-card:nth-child(odd) .advantage-stack-num {
  color: var(--primary-color);
  opacity: 0.18;
}

.advantage-stack-card:nth-child(even) .advantage-stack-num {
  color: var(--secondary-color);
  opacity: 0.85;
}

/* Right content element */
.stack-card-right {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.advantage-stack-title {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -0.01em;
}

.advantage-stack-card:nth-child(odd) .advantage-stack-title {
  color: var(--primary-color);
}

.advantage-stack-card:nth-child(even) .advantage-stack-title {
  color: #ffffff;
}

.advantage-stack-desc {
  font-size: 1.02rem;
  line-height: 1.65;
}

.advantage-stack-card:nth-child(odd) .advantage-stack-desc {
  color: var(--text-muted);
}

.advantage-stack-card:nth-child(even) .advantage-stack-desc {
  color: rgba(255, 255, 255, 0.82);
}



/* Media Queries for Stacking layouts */
@media (max-width: 992px) {
  .mv-asymmetric-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .stack-card-inner {
    padding: 35px 40px;
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .advantage-stack-card {
    position: sticky;
    top: 110px !important; /* Force sticky stacking at the same position on mobile viewports */
    margin-bottom: 20px;
  }

  .stack-card-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 15px;
    padding: 35px 30px;
  }

  .advantage-stack-num {
    font-size: 2.8rem;
  }

  .advantage-stack-container {
    gap: 20px;
  }
}

@media (max-width: 576px) {
  .mv-asymmetric-card {
    padding: 25px 20px;
    gap: 15px;
  }
}

/* Combined Achievements & CTA Section */
.combined-achievements-cta-section {
  position: relative;
  width: 100%;
  padding: 100px 0;
  overflow: hidden;
  color: #ffffff;
  clip-path: inset(0 0 0 0); /* Clips the fixed ::before background to this section's viewport bounds */
}

/* Bulletproof Mobile & Desktop Parallax Background */
.combined-achievements-cta-section::before {
  content: '';
  position: fixed; /* Fixed relative to viewport */
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-image: inherit; /* Inherits style background-image */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  will-change: transform;
}

.combined-overlay {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(34, 51, 59, 0.78) 0%, rgba(20, 35, 40, 0.72) 100%);
  z-index: 1;
}

.combined-container {
  position: relative;
  z-index: 2;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 60px; /* Spacing between achievements grid and CTA content */
}

.achievements-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  overflow: hidden;
}

.stat-card {
  background: transparent;
  border: none;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 0;
  padding: 45px 20px;
  text-align: center;
  transition: background-color 0.3s ease;
}

/* Desktop (3-columns) borders layout */
.stat-card:nth-child(3n) {
  border-right: none;
}

.stat-card:nth-child(4),
.stat-card:nth-child(5),
.stat-card:nth-child(6) {
  border-bottom: none;
}

.stat-card:hover {
  background-color: rgba(255, 255, 255, 0.05);
}

.stat-number {
  display: block;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--secondary-color);
  margin-bottom: 6px;
  line-height: 1.1;
  font-feature-settings: "tnum";
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

@media (max-width: 992px) {
  .achievements-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .stat-card {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  /* Reset nth-child(3n) right border for 2-column layout */
  .stat-card:nth-child(3n) {
    border-right: 1px solid rgba(255, 255, 255, 0.12);
  }
  /* Remove right border for every second element in 2-column layout */
  .stat-card:nth-child(2n) {
    border-right: none;
  }
  /* Reset bottom borders for elements that need it */
  .stat-card:nth-child(4) {
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }
  /* Remove bottom borders for the last row (5 and 6) in 2-column layout */
  .stat-card:nth-child(5),
  .stat-card:nth-child(6) {
    border-bottom: none;
  }
}

@media (max-width: 768px) {
  .combined-achievements-cta-section {
    padding: 80px 0;
  }
  .stat-number {
    font-size: 1.9rem;
  }
}

@media (max-width: 576px) {
  .achievements-grid {
    grid-template-columns: 1fr;
  }
  .stat-card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    padding: 30px 15px;
  }
  .stat-card:last-child {
    border-bottom: none;
  }
}

/* Call To Action Content inside Combined Section */
.cta-banner-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  width: 100%;
  margin: 0 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

.cta-banner-title {
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  font-weight: 800;
  color: #ffffff;
  margin-bottom: 18px;
  line-height: 1.15;
  letter-spacing: -0.02em;
  text-align: center;
}

.cta-banner-text {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  line-height: 1.6;
  text-align: center;
}

.cta-banner-actions {
  display: flex;
  gap: 20px;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  width: 100%;
}

@media (max-width: 768px) {
  .cta-banner-content {
    padding: 20px 0;
  }
}
