/* 
 * RightCabs Clone Styles
 * Colors: Green (#0E8A00), Yellow (#FFBF00), Text (#171717), Bg (#FAFAFA)
 * Font: Satoshi
 */

:root {
    --color-primary-green: #0E8A00;
    --color-primary-yellow: #FFBF00;
    --color-text-main: #171717;
    --color-text-light: #555555;
    --color-bg-light: #FFFFFF;
    /* Changed from #FAFAFA to Match Original */
    --color-bg-white: #FFFFFF;
    --color-footer-bg: #111111;
    --font-primary: 'Satoshi', sans-serif;
    --container-width: 1200px;
    --header-height: 111px;
    /* Updated to Match Original */
    --transition-speed: 0.3s;
}

.mobile-only {
    display: none;
}

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-primary);
    background-color: var(--color-bg-light);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

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

ul {
    list-style: none;
}

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

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

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

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

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 32px;
    /* Broader padding */
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
    cursor: pointer;
    transition: all var(--transition-speed);
    gap: 10px;
    border: none;
}

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

.btn-primary:hover {
    background-color: #0c7000;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(14, 138, 0, 0.3);
}

.btn-yellow {
    background-color: var(--color-primary-yellow);
    color: black;
}

.btn-yellow:hover {
    background-color: #e6ac00;
    transform: translateY(-2px);
}

/* Header */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background-color: transparent;
    /* Start transparent or slight tint */
    transition: background-color 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
    z-index: 1000;
    box-shadow: none;
    /* Original has no shadow initially */
    display: flex;
    align-items: center;
}

.header.scrolled {
    background-color: rgba(255, 255, 255, 0.95);
    /* Higher opacity for better visibility */
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
}


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

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

.logo img {
    height: 38px;
    /* Original logo height approx */
}

/* Adjust Nav to match spacing */
.nav-menu {
    display: flex;
    flex: 1;
    justify-content: center;
    /* Center the nav like original */
}

.nav-list {
    display: flex;
    gap: 16px;
    /* Matched 16px spacing */
}

.nav-link {
    font-weight: 500;
    font-size: 1rem;
    /* Revert to 16px as per analysis */
    color: #000000;
    /* Pure black match */
    position: relative;
    padding: 8px 12px;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary-yellow);
}

/* Mobile Toggle */
.mobile-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 21px;
    background: transparent;
    border: none;
    cursor: pointer;
}

.mobile-toggle .bar {
    width: 100%;
    height: 3px;
    background-color: var(--color-text-main);
    border-radius: 3px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    padding-top: calc(var(--header-height) + 40px);
    /* Adjusted padding */
    padding-bottom: 60px;
    min-height: auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    overflow: hidden;
    text-align: center;
}

.hero-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
    max-width: 1000px;
}

/* Centered Text Layout */
.hero-content {
    margin-bottom: 80px;
    text-align: center;
}

.hero-title {
    font-size: 3.5rem;
    /* ~56px */
    font-weight: 700;
    /* Match 700 weight */
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #171717;
}

.hero-title br {
    display: block;
}

.hero-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto 32px;
}

/* Video Hero Section */
.hero-video {
    position: relative;
    width: 100%;
    height: 100vh;
    /* Full viewport height */
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.back-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Ensures video covers container without distortion */
    object-position: center;
    transform: scale(1.35);
    /* Increased zoom to aggressively crop letterboxing */
    z-index: -1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    /* Slightly lighter overlay */
    z-index: 0;
}

.hero-content-video {
    position: relative;
    z-index: 1;
    /* On top of overlay */
    text-align: center;
    color: white;
    /* Text needs to be white on dark overlay */
}

.hero-title-video {
    font-size: 4rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
    color: #ffffff;
}

.hero-subtitle-video {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto;
}

.hero-image-wrapper {
    display: none;
    /* Hide static image wrapper if present */
}

.hero-image {
    width: 100%;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.1));
    animation: none;
    /* Remove float animation if original doesn't have it */
}

/* Home Page Specific Header Overrides */
/* Initial transparent state: White Text */
body.home-page .header:not(.scrolled) .nav-link {
    color: #FFFFFF;
}

body.home-page .header:not(.scrolled) .nav-link:hover,
body.home-page .header:not(.scrolled) .nav-link.active {
    color: var(--color-primary-yellow);
}

body.home-page .header:not(.scrolled) .mobile-toggle .bar {
    background-color: #FFFFFF;
}

/* Scrolled state: Black Text (Revert to default via specific overrides if needed, or rely on lack of :not(.scrolled)) */
body.home-page .header.scrolled .nav-link {
    color: #000000;
}

body.home-page .header.scrolled .nav-link:hover,
body.home-page .header.scrolled .nav-link.active {
    color: var(--color-primary-yellow);
}

body.home-page .header.scrolled .mobile-toggle .bar {
    background-color: #000000;
}

@keyframes float {
    0% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }

    100% {
        transform: translateY(0);
    }
}

/* Sections General */
.section {
    padding: 80px 0;
    background-color: #FAFAFA;
    /* Keep slight contrast for sections */
}

/* Fix for alternating sections if needed, or keep white as primary */
.vehicles-section {
    background-color: #FFFFFF;
}

/* Section Header Redesign */
.section-header-flex {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 40px;
    text-align: left;
}

.section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    color: var(--color-text-light);
    margin-bottom: 8px;
    font-weight: 500;
}

.section-el {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2.5rem !important;
    font-weight: 500;
}

.section-label::before {
    content: '';
    display: block;
    width: 12px;
    height: 12px;
    background-color: var(--color-primary-yellow);
    border-radius: 2px;
}

.section-title.large {
    font-size: 3rem;
    font-weight: 500;
    color: #171717;
    margin: 0;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

/* Vehicles Redesign */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.vehicle-card-v2 {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.vehicle-image-container {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    aspect-ratio: 16/10;
}

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

.vehicle-card-v2:hover .vehicle-image-container img {
    transform: scale(1.05);
}

.vehicle-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tag {
    background-color: var(--color-primary-yellow);
    color: #171717;
    padding: 6px 16px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
}

.vehicle-desc-large {
    font-size: 1.5rem;
    line-height: 1.3;
    font-weight: 500;
    color: #171717;
    letter-spacing: -0.01em;
}

/* Responsive adjustments */
@media (max-width: 968px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .section-header-flex {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
}

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

/* Vehicles Grid */
.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
}

.vehicle-card {
    background: var(--color-bg-white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.vehicle-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.card-image {
    padding: 20px;
    background: #f8f8f8;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 240px;
}

.card-image img {
    max-height: 100%;
    object-fit: contain;
}

.card-content {
    padding: 24px;
    text-align: center;
}

.card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.card-text {
    color: var(--color-text-light);
    margin-bottom: 20px;
}

.card-btn {
    width: 100%;
}

/* Packages Grid */
.packages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}

.package-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 300px;
    cursor: pointer;
}

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

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

.package-info {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 24px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: white;
}

/* Testimonials */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 32px;
}

.testimonial-card {
    background: white;
    padding: 32px;
    border-radius: 16px;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: #444;
    margin-bottom: 24px;
}

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

.author-avatar {
    width: 48px;
    height: 48px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
}

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

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

.footer-logo {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: block;
}

.footer-col h3 {
    font-size: 1.25rem;
    margin-bottom: 24px;
}

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

.footer-col ul li a {
    color: #aaa;
}

.footer-col ul li a:hover {
    color: white;
}

.social-links {
    display: flex;
    gap: 16px;
    margin-top: 24px;
}

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

.social-links a:hover {
    background: var(--color-primary-green);
}

.footer-bottom {
    text-align: center;
    color: #666;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Tours Section Redesign */
.section-header-tours {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

/* Marquee Animation */
.marquee-container {
    width: 100%;
    overflow: hidden;
    margin-bottom: 60px;
}

.marquee-track {
    display: flex;
    gap: 24px;
    width: max-content;
    animation: scroll 30s linear infinite;
}

.tour-top-img {
    height: 300px;
    /* Fixed height for consistency */
    width: auto;
    object-fit: cover;
    /* border-radius: 16px; */
    flex-shrink: 0;
}

@keyframes scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-33.33%);
        /* Move 1/3 of the width (1 set out of 3) */
    }
}

.subsection-title {
    font-size: 3rem;
    font-weight: 500;
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
    line-height: 1.2;
    color: #171717;
    letter-spacing: -0.02em;
}

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

.tour-category-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    text-align: left;
    /* Fix: Left align text as requested */
}

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

.tour-card-title {
    font-size: 1.5rem;
    font-weight: 500;
    color: #171717;
    margin: 0;
}

.tour-arrow-icon {
    width: 24px;
    height: 24px;
    background-color: var(--color-primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    color: #171717;
}

.tour-card-image {
    width: 100%;
    aspect-ratio: 16/10;
    object-fit: cover;
    border-radius: 24px;
}

/* Responsive adjustments for Tours */
@media (max-width: 968px) {

    .tours-top-row,
    .kodaikanal-grid {
        grid-template-columns: 1fr;
    }

    .subsection-title {
        font-size: 2rem;
    }
}

/* Accommodation Section Redesign */
.section-header-accommodation {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 60px;
}

.header-left-acc {
    max-width: 600px;
}

.acc-title {
    font-size: 3rem;
    font-weight: 500;
    line-height: 1.2;
    color: #171717;
    margin-top: 16px;
    letter-spacing: -0.02em;
}

.label-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.yellow-square {
    width: 12px;
    height: 12px;
    background-color: var(--color-primary-yellow);
}

.section-label-sm {
    font-size: 1rem;
    color: #666;
    font-weight: 500;
}

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

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

.acc-image {
    width: 100%;
    aspect-ratio: 4/3;
    object-fit: cover;
    border-radius: 24px;
    margin-bottom: 16px;
    transition: transform 0.3s ease;
}

.acc-card:hover .acc-image {
    transform: translateY(-4px);
}

.acc-name {
    font-size: 1.5rem;
    font-weight: 500;
    color: #171717;
}

@media (max-width: 968px) {
    .accommodation-grid {
        grid-template-columns: 1fr;
    }

    .section-header-accommodation {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .acc-title {
        font-size: 2rem;
    }
}

/* Why Choose Us Section */
.wcu-header-wrapper {
    margin-bottom: 40px;
}

.wcu-main-banner {
    position: relative;
    width: 100%;
    min-height: 600px;
    background-image: url('https://framerusercontent.com/images/IuqZWf6IOC0qGGJQaIRzFcoDo.jpg');
    background-size: cover;
    background-position: center;
    border-radius: 32px;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    /* Align card to the right */
    padding: 60px;
    overflow: hidden;
    /* Ensure rounded corners clip content */
}

.wcu-card {
    background-color: white;
    padding: 48px;
    border-radius: 24px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.wcu-item {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    margin-bottom: 32px;
}

.wcu-item:last-child {
    margin-bottom: 0;
}

.check-icon {
    min-width: 20px;
    color: var(--color-primary-yellow);
    font-size: 1.2rem;
    margin-top: 4px;
    /* Align with first line of text */
}

.wcu-content h4 {
    font-size: 1.25rem;
    font-weight: 600;
    color: #171717;
    margin-bottom: 8px;
}

.wcu-content p {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

@media (max-width: 968px) {
    .wcu-main-banner {
        justify-content: center;
        padding: 24px;
        min-height: auto;
        aspect-ratio: auto;
        background-image: none;
        /* Stack on mobile usually better, but sticking to design */
    }

    /* Mobile-specific for banner: maybe keep image but stack card below? 
       For now, let's keep it inside but adjust padding */
    .wcu-main-banner {
        background-image: url('https://framerusercontent.com/images/IuqZWf6IOC0qGGJQaIRzFcoDo.jpg');
        flex-direction: column;
        align-items: center;
        padding: 40px 20px;
    }

    .wcu-card {
        max-width: 100%;
    }
}

/* Testimonials Section Redesign */
.testimonial-section {
    background-color: #fff;
    /* Revert to white/transparent */
    padding: 60px 0;
}

.testimonial-header-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

.testimonial-title {
    font-size: 3.5rem;
    font-weight: 500;
    color: #171717;
    margin-top: 16px;
    text-align: center;
    letter-spacing: -0.02em;
}

.testimonial-container {
    background-color: #FFF9E5;
    /* Light Beige background moves here */
    border-radius: 40px;
    /* Rounded corners for the container */
    padding: 80px 60px;
    max-width: 1200px;
    /* Limit width */
    margin: 0 auto;
    position: relative;
    width: 90%;
    /* Responsive width */
}

.testimonial-card-yellow {
    background-color: var(--color-primary-yellow);
    border-radius: 32px;
    padding: 60px;
    position: relative;
    display: flex;
    flex-direction: column;
    /* Flex layout for image and text */
    align-items: center;
    gap: 40px;
    min-height: 350px;
    max-width: 900px;
    margin: 0 auto;
    margin: 0 auto;
    /* Center the yellow card inside the beige container */
    overflow: hidden;
    /* Hide overflow for carousel */
}

/* Carousel Track */
.testimonial-track {
    display: flex;
    transition: transform 0.5s ease-in-out;
    width: 100%;
}

/* Individual Slide */
.testimonial-card-slide {
    min-width: 100%;
    /* Default to full width per slide, adjusted via JS or flex-basis if we want specific peek */
    padding: 0 40px;
    /* Padding inside the slide to separate content */
    box-sizing: border-box;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, transform 0.5s ease;
    opacity: 0.4;
    /* Inactive slides are semi-transparent */
    transform: scale(0.9);
    /* Inactive slides are smaller */
}

.testimonial-card-slide.active {
    opacity: 1;
    transform: scale(1);
}

.testimonial-slide-content {
    display: flex;
    align-items: center;
    gap: 40px;
    max-width: 900px;
    width: 100%;
    margin: 0 auto;
}


.testimonial-image-wrapper {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid rgba(255, 255, 255, 0.3);
}

.testimonial-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-content-wrapper {
    flex: 1;
    color: #171717;
}

.testimonial-quote {
    font-size: 1.5rem;
    line-height: 1.5;
    font-weight: 500;
    margin-bottom: 32px;
}

.author-name {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 4px;
}

.author-location {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Navigation Buttons */
.nav-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    background-color: #E6F2FF;
    /* Light blueish white */
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    border: none;
    font-size: 1.2rem;
    color: #171717;
    transition: background-color 0.2s;
    z-index: 10;
}

.nav-btn:hover {
    background-color: #d0e7ff;
}

.nav-prev {
    left: 20px;
    /* Adjust pos */
}

.nav-next {
    right: 20px;
    /* Adjust pos */
}

/* Pagination Dots */
.pagination-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 40px;
}

.dot {
    width: 8px;
    height: 8px;
    background-color: #D1D5DB;
    border-radius: 50%;
    cursor: pointer;
    transition: background-color 0.2s;
}

.dot.active {
    background-color: #9CA3AF;
}

/* Footer Section */
.footer-section {
    background-color: #fff;
    padding-bottom: 0;
}

.footer-main-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    width: 90%;
    /* Responsive width */
}

.map-container {
    width: 100%;
    height: 350px;
    margin-bottom: 60px;
}

.map-frame {
    width: 100%;
    height: 100%;
    border: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
    padding: 0 20px;
}

.footer-brand h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-slogan {
    font-size: 1.5rem;
    font-weight: 500;
    color: #171717;
    line-height: 1.3;
    margin-bottom: 8px;
}

.footer-sub-slogan {
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--color-primary-yellow);
    margin-bottom: 24px;
}

.social-icons {
    display: flex;
    gap: 16px;
}

.social-icon {
    width: 40px;
    height: 40px;
    background-color: var(--color-primary-yellow);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #171717;
    font-size: 1.2rem;
    text-decoration: none;
    transition: transform 0.2s;
}

.social-icon:hover {
    transform: translateY(-2px);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #171717;
}

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

.footer-links li {
    margin-bottom: 16px;
}

.footer-links a {
    text-decoration: none;
    color: #666;
    font-size: 1rem;
    transition: color 0.2s;
}

.footer-links a:hover {
    color: #171717;
    text-decoration: underline;
}

.footer-contact li {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    margin-bottom: 16px;
}

.contact-icon {
    color: #4CAF50;
    /* Green phone/mail icon */
    font-size: 1.1rem;
}

.email-icon {
    color: #EA4335;
    /* Red style for email */
}

.copyright-bar {
    border-top: 1px solid #eee;
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: #666;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .testimonial-card-yellow {
        padding: 40px 0;
        /* Remove horizontal padding on container */
    }

    .testimonial-slide-content {
        flex-direction: column;
        text-align: center;
        padding: 0 20px;
    }

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

    .testimonial-container {
        padding: 40px 20px;
        width: 95%;
    }

    .nav-btn {
        display: none;
        /* Hide arrows on mobile, rely on swipe or just dots */
    }

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

    .copyright-bar {
        flex-direction: column;
        gap: 12px;
        text-align: center;
    }
}

/* Responsive Media Queries */
@media (max-width: 968px) {
    .container {
        padding: 0 16px;
    }

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

    .hero-subtitle {
        font-size: 1rem;
        margin: 0 auto 24px;
    }

    /* Fix header overlap */
    .hero {
        padding-top: 100px;
        /* Increase to clear fixed header */
        padding-bottom: 40px;
        min-height: auto;
        /* Allow content to dictate height on mobile */
    }

    .nav-menu {
        display: none;
        position: fixed;
        /* Fixed to cover screen or sit below header */
        top: var(--header-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--header-height));
        background: white;
        flex-direction: column;
        padding: 40px 20px;
        box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
        overflow-y: auto;
    }

    .nav-menu.active {
        display: flex;
    }

    .nav-list {
        flex-direction: column;
        gap: 24px;
        text-align: center;
        width: 100%;
    }

    .nav-link {
        font-size: 1.25rem;
        display: block;
        padding: 10px;
    }

    .mobile-toggle {
        display: flex;
        z-index: 1001;
    }

    .call-btn {
        display: none;
        /* Keep hidden in header, will add to menu via HTML modification or leave as is if user wants strict clone */
    }

    /* Show a call button in the nav list if we add one, or handle it here */
    .nav-menu .call-btn-mobile {
        display: inline-flex;
        margin-top: 20px;
    }

    .mobile-only {
        display: block;
    }

    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 30px;
    }
}

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

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

    .section {
        padding: 60px 0;
    }
}

/* Dynamic Destination Hero Image */
.dest-hero-img {
    height: 500px;
    width: auto;
    object-fit: cover;
    border-radius: 16px;
    flex-shrink: 0;
}

/* Floating Catalogue Button */
.catalogue-float-wrapper {
    display: flex;
    justify-content: center;
    margin-top: -100px;
    /* Increased overlap */
    position: relative;
    z-index: 10;
    width: 100%;
    padding: 0 20px;
}

.catalogue-btn {
    background: white;
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 24px 48px;
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    max-width: 800px;
    /* Much wider */
    justify-content: space-between;
}

/* --- Floating Weather Widget --- */
.weather-widget {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 10px 16px;
    border-radius: 50px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 9999;
    font-family: 'Satoshi', sans-serif;
    border: 1px solid rgba(255, 255, 255, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    cursor: default;
    /* Initial state hidden until loaded */
    opacity: 0;
    visibility: hidden;
    animation: fadeInWidget 0.5s forwards;
    animation-delay: 1s;
}

.weather-widget.loaded {
    opacity: 1;
    visibility: visible;
}

@keyframes fadeInWidget {
    to {
        opacity: 1;
        visibility: visible;
    }
}

.weather-widget:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.15);
}

.weather-icon {
    font-size: 1.5rem;
    color: #FFC107;
    /* Yellow sun color */
    display: flex;
    align-items: center;
    justify-content: center;
}

.weather-info {
    display: flex;
    flex-direction: column;
    line-height: 1.2;
}

.weather-temp {
    font-weight: 700;
    font-size: 1.1rem;
    color: #171717;
}

.weather-location {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

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

.catalogue-icon {
    font-size: 48px;
    /* Larger icon */
    color: #25D366;
}

.catalogue-text-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    flex: 1;
    /* Take up available space */
    margin-left: 16px;
}

.catalogue-label {
    font-size: 1.1rem;
    color: #171717;
    font-weight: 500;
    margin-bottom: 4px;
}

.catalogue-platform {
    font-size: 1.8rem;
    /* Larger text */
    color: #25D366;
    font-weight: 700;
    line-height: 1;
}

.catalogue-arrow {
    color: #25D366;
    font-size: 2rem;
    /* Larger arrow */
}

/* Responsive adjustment for the button */
@media (max-width: 768px) {
    .catalogue-btn {
        padding: 16px 24px;
        flex-direction: row;
        gap: 16px;
    }

    .catalogue-icon {
        font-size: 32px;
    }

    .catalogue-label {
        font-size: 0.9rem;
    }

    .catalogue-platform {
        font-size: 1.4rem;
    }

    .catalogue-arrow {
        font-size: 1.5rem;
    }
}