/* ==================== NAVBAR SCROLL EFFECT ==================== */

/* Transparent navbar on page load */
.site-header,
.mobile-header {
    position: fixed !important;
    background: transparent !important;
    box-shadow: none !important;
    transition: background 0.4s ease, box-shadow 0.4s ease, padding 0.4s ease !important;
    top: 0 !important;
    width: 100% !important;
    z-index: 1000 !important;
}

/* White background when scrolled */
.site-header.scrolled,
.mobile-header.scrolled {
    background: rgba(255, 255, 255, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1) !important;
    backdrop-filter: blur(10px);
}

/* Navigation links - white by default */
.site-header .nav-link {
    color: rgba(255, 255, 255, 0.95) !important;
    transition: color 0.3s ease;
}

/* Navigation links - dark when scrolled */
.site-header.scrolled .nav-link {
    color: #333 !important;
}

.site-header.scrolled .nav-link:hover,
.site-header.scrolled .nav-link.active {
    color: #0066CC !important;
}

/* CTA button - white outline by default */
.site-header .btn-primary {
    border-color: rgba(255, 255, 255, 0.85) !important;
    color: #ffffff !important;
    background: transparent !important;
}

/* CTA button - blue when scrolled */
.site-header.scrolled .btn-primary {
    border-color: #0066CC !important;
    color: #0066CC !important;
}

.site-header.scrolled .btn-primary:hover {
    background: #0066CC !important;
    color: #ffffff !important;
}

/* Logo - always visible */
.site-header .site-logo {
    transition: filter 0.3s ease;
}

/* Mobile menu toggle */
.site-header .mobile-menu-toggle .hamburger,
.site-header .mobile-menu-toggle .hamburger::before,
.site-header .mobile-menu-toggle .hamburger::after {
    background: #ffffff !important;
    transition: background 0.3s ease;
}

.site-header.scrolled .mobile-menu-toggle .hamburger,
.site-header.scrolled .mobile-menu-toggle .hamburger::before,
.site-header.scrolled .mobile-menu-toggle .hamburger::after {
    background: #333 !important;
}

/* ==================== HERO SECTION - WITH SLIDER ==================== */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

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

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    pointer-events: none;
}

.hero-slide.active {
    opacity: 1;
    pointer-events: auto;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 1;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 2;
}

.hero-content-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    z-index: 3;
    padding-left: 100px;
    max-width: 1400px;
    margin: 0 auto;
}


.hero-container {
    position: relative;
    z-index: 5;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    pointer-events: none;
}

.hero-container .hero-right {
    pointer-events: auto;
    width: 480px;
}

.hero-left {
    max-width: 700px;
}

.hero-subtitle {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
}

.hero-heading {
    display: block;
    margin-bottom: 40px;
}

.hero-heading-solid {
    display: block;
    font-size: 5.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: white;
    font-family: 'Poppins', sans-serif;
    line-height: 0.9;
    margin-bottom: 8px;
}

.hero-heading-outline {
    display: block;
    font-size: 4.5rem;
    font-weight: 800;
    text-transform: uppercase;
    color: transparent;
    font-family: 'Poppins', sans-serif;
    line-height: 0.9;
    -webkit-text-stroke: 2px rgba(255, 255, 255, 0.9);
}

.hero-btn {
    display: inline-block;
    padding: 16px 40px;
    background: #113A75;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.hero-btn:hover {
    transform: translateY(-2px);
    background: #0d2d5e;
    box-shadow: 0 8px 25px rgba(17, 58, 117, 0.4);
}

/* ==================== BOOKING FORM - MODERN MINIMAL ==================== */

.hero-right {
    width: 100%;
}

.booking-card {
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 12px;
    padding: 32px 28px;
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.booking-title {
    font-size: 1.375rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    text-align: center;
    letter-spacing: -0.02em;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.form-field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-field label {
    font-size: 0.813rem;
    font-weight: 500;
    color: #64748b;
    font-family: 'Barlow', sans-serif;
    letter-spacing: 0;
}

.form-field label .required {
    color: #e53e3e;
    margin-left: 2px;
}

.form-field input,
.form-field select,
.form-field textarea {
    padding: 12px 14px;
    border: 1px solid #e2e8f0;
    border-radius: 6px;
    font-size: 0.875rem;
    font-family: 'Barlow', sans-serif;
    color: #1e293b;
    background: #ffffff;
    transition: all 0.2s ease;
}

.form-field textarea {
    resize: vertical;
    min-height: 70px;
    font-family: 'Barlow', sans-serif;
}

.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
    border-color: #cbd5e1;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.08);
    background: #ffffff;
}

.form-field input::placeholder {
    color: #94a3b8;
    font-weight: 400;
}

.form-field select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' viewBox='0 0 12 8' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%2364748b' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.form-submit {
    margin-top: 8px;
    width: 100%;
    padding: 14px;
    background: #113A75;
    color: white;
    border: none;
    border-radius: 6px;
    font-weight: 600;
    font-size: 0.938rem;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.01em;
    box-shadow: 0 2px 8px rgba(17, 58, 117, 0.2);
}

.form-submit:hover {
    background: #0d2d5e;
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(17, 58, 117, 0.3);
}

.form-submit:active {
    transform: translateY(0);
}

/* ==================== TRAVELERS RECOMMENDED TOURS SECTION ==================== */

.travelers-tours {
    padding: 80px 0;
    background: #f8f9fa;
}

.tours-header {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 60px;
}

.tours-tagline {
    display: block;
    font-size: 0.875rem;
    color: #0ea5e9;
    text-transform: lowercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
    font-family: 'Poppins', sans-serif;
}

.tours-main-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 600;
    color: #1e3a8a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.3;
}

.tours-description {
    font-size: 1rem;
    color: #64748b;
    line-height: 1.7;
    font-family: 'Barlow', sans-serif;
}

.tour-cards-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
}

.tour-card-modern {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.tour-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.12);
}

.tour-card-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
}

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

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

.tour-card-body {
    padding: 24px;
}

.tour-category {
    display: inline-block;
    font-size: 0.75rem;
    color: #64748b;
    margin-bottom: 12px;
    font-family: 'Barlow', sans-serif;
}

.tour-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Space Grotesk', sans-serif;
    text-transform: capitalize;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.tour-desc {
    font-size: 0.875rem;
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 16px;
    font-family: 'Barlow', sans-serif;
}

.tour-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid #e2e8f0;
}

.tour-duration {
    font-size: 0.813rem;
    color: #475569;
    font-family: 'Barlow', sans-serif;
}

.tour-rating span {
    font-size: 0.813rem;
    color: #f59e0b;
    font-family: 'Barlow', sans-serif;
}

.tour-actions {
    display: flex;
    gap: 12px;
    align-items: center;
}

.tour-btn-secondary {
    flex: 1;
    padding: 12px 16px;
    background: transparent;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e293b;
    font-family: 'Poppins', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tour-btn-secondary:hover {
    background: #f1f5f9;
    border-color: #cbd5e1;
}

.tour-note {
    font-size: 0.75rem;
    color: #94a3b8;
    font-weight: 400;
}

.tour-btn-primary {
    padding: 12px 20px;
    background: transparent;
    border: none;
    color: #1e3a8a;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-btn-primary:hover {
    color: #1d4ed8;
}

/* ==================== COMPANY INTRO SECTION ==================== */

.company-intro-section {
    padding: 150px 0;
    background: #ffffff;
    text-align: center;
    will-change: transform;
}

.company-intro-section .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 40px;
}

.company-intro-title {
    font-size: clamp(3rem, 6vw, 4.5rem);
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
    position: relative;
    display: inline-block;
    background: linear-gradient(90deg, #1e293b 0%, #1e293b 40%, #475569 50%, #1e293b 60%, #1e293b 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shine 5s ease-in-out infinite;
}

@keyframes shine {
    0% {
        background-position: 0% center;
    }
    100% {
        background-position: 200% center;
    }
}

.company-intro-description {
    font-size: clamp(1.188rem, 2.5vw, 1.5rem);
    color: #475569;
    line-height: 1.9;
    font-family: 'Philosopher', 'Georgia', serif;
    font-weight: 400;
    font-style: italic;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    padding: 0 60px;
}

.company-intro-description::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 5rem;
    color: #cbd5e1;
    font-family: Georgia, serif;
    line-height: 1;
}

.company-intro-description::after {
    content: '"';
    position: absolute;
    right: 0;
    bottom: -60px;
    font-size: 5rem;
    color: #cbd5e1;
    font-family: Georgia, serif;
    line-height: 1;
}

/* ==================== TOUR CATEGORIES SECTION ==================== */

.tour-categories-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8fafc 100%);
}

.tour-categories-section .container {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
}

.categories-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 64px;
}

.categories-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 20px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.categories-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.7;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(420px, 1fr));
    gap: 48px;
    max-width: 1400px;
}

.category-card {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    height: 780px;
    cursor: pointer;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.category-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

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

.category-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.2) 0%,
        rgba(0, 0, 0, 0.5) 50%,
        rgba(0, 0, 0, 0.75) 100%
    );
    transition: background 0.4s ease;
}

.category-card:hover .category-overlay {
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0.3) 0%,
        rgba(0, 0, 0, 0.6) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
}

.category-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 50px 40px;
    z-index: 3;
    transform: translateY(0);
    transition: transform 0.4s ease;
    text-align: center;
}

.category-name {
    font-size: 1.75rem;
    font-weight: 700;
    color: white;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.2;
}

.category-desc {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 28px;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.category-btn {
    display: inline-block;
    padding: 12px 28px;
    background: rgba(255, 255, 255, 0.95);
    color: #1e293b;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.938rem;
    font-family: 'Poppins', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    letter-spacing: 0.01em;
}

.category-btn:hover {
    background: white;
    transform: translateY(-2px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.3);
}

/* ==================== VIEW ALL TOURS BUTTON ==================== */

.tour-categories-section .section-cta {
    margin-top: 60px;
    text-align: center;
}

.tour-categories-section .btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: #113A75;
    color: white;
    border-radius: 6px;
    font-weight: 600;
    font-size: 1rem;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    text-decoration: none;
    border: none;
    transition: all 0.3s ease;
}

.tour-categories-section .btn-primary:hover {
    background: #0d2d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(17, 58, 117, 0.4);
}

.tour-categories-section .btn-icon {
    transition: transform 0.3s ease;
}

.tour-categories-section .btn-primary:hover .btn-icon {
    transform: translateX(4px);
}

/* Mobile */
@media (max-width: 1024px) {
    html, body {
        overflow-x: hidden;
        max-width: 100vw;
        margin: 0;
        padding: 0;
    }

    body {
        padding-top: 0 !important;
    }

    .hero {
        min-height: auto;
        height: auto;
        display: block;
        position: relative;
        margin: 0;
        padding: 0;
    }

    .hero-slider {
        position: relative;
        width: 100%;
        height: 100vh;
        min-height: 100vh;
        margin: 0;
        padding: 0;
    }

    .hero-slide {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
    }

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

    .hero-overlay {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: transparent;
    }

    .hero-content-wrapper {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        padding: 20px;
        padding-top: 120px;
        display: flex;
        align-items: center;
        justify-content: center;
        text-align: center;
    }

    .hero-left {
        max-width: 100%;
        width: 100%;
    }

    .hero-heading {
        margin-bottom: 28px;
    }

    .hero-heading-solid {
        font-size: 2.25rem;
        line-height: 1.15;
        margin-bottom: 10px;
    }

    .hero-heading-outline {
        font-size: 1.875rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        text-align: center;
        font-size: 0.75rem;
        margin-bottom: 28px;
        letter-spacing: 0.25em;
    }

    .hero-btn {
        display: inline-block;
        margin: 0 auto;
        padding: 14px 32px;
        font-size: 0.938rem;
    }

    .hero-container {
        position: relative;
        padding: 60px 40px 60px;
        background: #ffffff;
        z-index: 10;
        width: 100%;
        margin-top: 0;
    }

    .hero-container .hero-right {
        width: 100%;
        max-width: 100%;
    }

    .booking-card {
        padding: 32px 28px;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-radius: 16px;
        border: 1px solid #f0f0f0;
    }

    .booking-title {
        font-size: 1.5rem;
        margin-bottom: 28px;
        text-align: left;
        color: #1a1a1a;
        font-weight: 600;
        position: relative;
        padding-bottom: 36px;
        padding-left: 52px;
    }

    .booking-title::before {
        content: '📋';
        font-size: 1.875rem;
        position: absolute;
        left: 0;
        top: -4px;
    }

    .booking-title::after {
        content: 'Make your choices for getting the best package';
        display: block;
        font-size: 1rem;
        font-weight: 400;
        color: #666;
        margin-top: 10px;
        font-family: 'Barlow', sans-serif;
        line-height: 1.6;
    }

    .booking-form {
        gap: 16px;
    }

    .form-field {
        gap: 6px;
    }

    .form-field label {
        font-size: 0.9375rem;
        color: #333;
        font-weight: 500;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 13px 14px;
        font-size: 1rem;
        background: #f8f9fa;
        border: 1px solid #e2e8f0;
    }

    .form-field textarea {
        min-height: 80px;
    }

    .form-submit {
        padding: 15px;
        font-size: 1.0625rem;
        margin-top: 8px;
    }

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

    .company-intro-section .container {
        padding: 0 24px;
    }

    .company-intro-title {
        font-size: 2.5rem;
        margin-bottom: 32px;
    }

    .company-intro-description {
        font-size: 1.125rem;
        line-height: 1.8;
        padding: 0 40px;
    }

    .company-intro-description::before,
    .company-intro-description::after {
        font-size: 3.5rem;
    }

    .company-intro-description::before {
        top: -10px;
        left: 0;
    }

    .company-intro-description::after {
        bottom: -40px;
        right: 0;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .tour-actions {
        flex-direction: column;
    }

    .tour-btn-secondary {
        width: 100%;
    }

    .tour-categories-section {
        padding: 60px 0;
    }

    .tour-categories-section .container {
        padding: 0 24px;
    }

    .categories-header {
        margin-bottom: 40px;
    }

    .categories-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .category-card {
        height: 600px;
    }

    .category-content {
        padding: 36px 32px;
    }

    .category-name {
        font-size: 1.5rem;
    }

    .category-desc {
        font-size: 0.938rem;
        margin-bottom: 24px;
    }

    .category-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}

@media (max-width: 640px) {
    .hero {
        height: auto;
    }

    .hero-slider {
        height: 100vh;
        min-height: 100vh;
    }

    .hero-slide {
        height: 100vh;
    }

    .hero-content-wrapper {
        padding: 16px;
        padding-top: 90px;
        padding-bottom: 50px;
    }

    .hero-heading {
        margin-bottom: 20px;
    }

    .hero-heading-solid {
        font-size: 1.75rem;
        margin-bottom: 8px;
        line-height: 1.15;
    }

    .hero-heading-outline {
        font-size: 1.5rem;
        line-height: 1.15;
    }

    .hero-subtitle {
        font-size: 0.688rem;
        letter-spacing: 0.2em;
        margin-bottom: 24px;
    }

    .hero-btn {
        padding: 13px 28px;
        font-size: 0.875rem;
    }

    .hero-container {
        padding: 48px 12px 56px;
    }

    .hero-container .hero-right {
        max-width: 100%;
    }

    .booking-card {
        padding: 28px 24px;
        background: #ffffff;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
        border-radius: 14px;
        border: 1px solid #f0f0f0;
    }

    .booking-title {
        font-size: 1.375rem;
        margin-bottom: 20px;
        padding-bottom: 28px;
        padding-left: 44px;
    }

    .booking-title::before {
        font-size: 1.625rem;
        top: -2px;
    }

    .booking-title::after {
        font-size: 0.9375rem;
        margin-top: 6px;
    }

    .booking-form {
        gap: 14px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .form-field label {
        font-size: 0.9375rem;
    }

    .form-field input,
    .form-field select,
    .form-field textarea {
        padding: 13px 14px;
        font-size: 1rem;
    }

    .form-field textarea {
        min-height: 75px;
    }

    .form-submit {
        margin-top: 6px;
        padding: 15px;
        font-size: 1.0625rem;
    }

    .company-intro-section {
        padding: 60px 0;
    }

    .company-intro-section .container {
        padding: 0 20px;
    }

    .company-intro-title {
        font-size: 2rem;
        margin-bottom: 24px;
    }

    .company-intro-description {
        font-size: 0.938rem;
        line-height: 1.7;
        padding: 0 28px;
    }

    .company-intro-description::before,
    .company-intro-description::after {
        font-size: 2.5rem;
    }

    .company-intro-description::before {
        top: -8px;
        left: 0;
    }

    .company-intro-description::after {
        bottom: -30px;
        right: 0;
    }
}

/* ==================== MOST POPULAR DESTINATIONS ==================== */

.popular-destinations-section {
    padding: 100px 0;
    background: #ffffff;
}

.popular-destinations-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.destinations-tag {
    text-align: center;
    font-size: 0.938rem;
    color: #0ea5e9;
    font-family: 'Philosopher', 'Georgia', serif;
    font-style: italic;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.destinations-title {
    text-align: center;
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 60px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 240px;
    gap: 24px;
}

.destination-card {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1), background-size 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

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

.destination-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.destination-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 24px;
    background: linear-gradient(
        180deg,
        rgba(0, 0, 0, 0) 0%,
        rgba(0, 0, 0, 0.4) 100%
    );
    z-index: 2;
}

.destination-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: white;
    margin-bottom: 4px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
}

.destination-count {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
}

/* Card Size Variations - Creating Masonry Effect */
.card-tall {
    grid-row: span 2;
}

.card-wide {
    grid-column: span 2;
}

.card-square {
    grid-row: span 1;
    grid-column: span 1;
}

.card-medium {
    grid-row: span 1;
    grid-column: span 2;
}

/* ==================== TRAVELERS RECOMMENDED TOUR PACKAGES ==================== */

.recommended-tours-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #f7fbff 0%, #ecf7fe 100%);
}

.recommended-tours-section .container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    overflow: hidden;
}

.section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 50px;
}

.section-tag {
    font-size: 0.875rem;
    color: #0ea5e9;
    font-family: 'Philosopher', 'Georgia', serif;
    font-style: italic;
    margin-bottom: 12px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(1.75rem, 4vw, 2.25rem);
    font-weight: 700;
    color: #0f172a;
    margin-bottom: 14px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.section-subtitle {
    font-size: 1.125rem;
    color: #64748b;
    font-family: 'Barlow', sans-serif;
    font-weight: 400;
    line-height: 1.6;
}

.tour-packages-grid {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    overflow-y: visible;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding-bottom: 10px;
    scroll-padding: 0;
}

.tour-packages-grid::-webkit-scrollbar {
    display: none;
}

/* Smooth scroll animation */
@media (prefers-reduced-motion: no-preference) {
    .tour-packages-grid {
        scroll-behavior: smooth;
    }
}

.tour-package-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    scroll-snap-align: start;
    flex: 0 0 calc((100% - 48px) / 3);
    min-width: 360px;
    max-width: 420px;
}

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

.package-image {
    position: relative;
    height: 210px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.package-content {
    padding: 16px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.package-location {
    display: flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 8px;
}

.package-location svg {
    color: #0ea5e9;
    flex-shrink: 0;
}

.package-location span {
    font-size: 0.875rem;
    color: #0ea5e9;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
}

.package-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 8px;
    font-family: 'Poppins', sans-serif;
    letter-spacing: -0.01em;
    line-height: 1.3;
}

.package-description {
    font-size: 0.813rem;
    color: #64748b;
    line-height: 1.5;
    margin-bottom: auto;
    font-family: 'Barlow', sans-serif;
}

.package-footer {
    margin-top: 12px;
    padding: 12px;
    background: #f8f9fa;
    border-radius: 10px;
}

.package-info {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid #e2e8f0;
    flex-direction: row;
}

.package-rating {
    display: flex;
    align-items: center;
    gap: 6px;
    order: 1;
}

.rating-star {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-value {
    font-size: 0.938rem;
    color: #0f172a;
    font-family: 'Barlow', sans-serif;
    font-weight: 600;
}

.package-duration {
    font-size: 0.938rem;
    color: #64748b;
    font-family: 'Barlow', sans-serif;
    font-weight: 500;
    order: 2;
}

.package-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
}

.package-contact {
    display: flex;
    flex-direction: column;
    gap: 2px;
    order: 1;
}

.contact-label {
    font-size: 0.875rem;
    font-weight: 600;
    color: #0f172a;
    font-family: 'Poppins', sans-serif;
}

.contact-sublabel {
    font-size: 0.75rem;
    color: #64748b;
    font-family: 'Barlow', sans-serif;
}

.package-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    color: #0ea5e9;
    font-size: 0.875rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    white-space: nowrap;
    order: 2;
}

.package-btn:hover {
    color: #0284c7;
    transform: translateX(4px);
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .recommended-tours-section {
        padding: 60px 0;
    }

    .recommended-tours-section .container {
        padding: 0 24px;
    }

    .section-header {
        margin-bottom: 40px;
    }

    .tour-packages-grid {
        gap: 20px;
    }

    .tour-package-card {
        flex: 0 0 calc((100% - 20px) / 2);
        min-width: 300px;
    }

    .package-image {
        height: 190px;
    }

    .package-content {
        padding: 14px;
    }

    .package-title {
        font-size: 1rem;
    }

    .package-footer {
        padding: 12px;
    }
}

@media (max-width: 640px) {
    .tour-packages-grid {
        gap: 16px;
    }

    .tour-package-card {
        flex: 0 0 calc(100% - 40px);
        min-width: 280px;
    }

    .package-image {
        height: 180px;
    }

    .package-content {
        padding: 12px;
    }

    .package-title {
        font-size: 0.938rem;
        margin-bottom: 6px;
    }

    .package-description {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .package-footer {
        margin-top: 10px;
        padding: 10px;
    }

    .package-info {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 6px;
        margin-bottom: 8px;
        padding-bottom: 8px;
    }

    .package-actions {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 10px;
    }

    .package-btn {
        font-size: 0.813rem;
    }
}

/* ==================== TRIPADVISOR AWARDS SECTION ==================== */

.tripadvisor-awards-section {
    position: relative;
    padding: 100px 0;
    overflow: hidden;
}

.awards-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

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

.awards-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        rgba(0, 0, 0, 0.85) 0%,
        rgba(0, 0, 0, 0.75) 50%,
        rgba(0, 0, 0, 0.7) 100%
    );
    z-index: 2;
}

.tripadvisor-awards-section .container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.awards-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

/* Left Side - Company Info */
.awards-left {
    color: white;
}

.awards-main-title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: white;
    margin-bottom: 24px;
    font-family: 'Poppins', sans-serif;
    line-height: 1.2;
}

.awards-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
    margin-bottom: 32px;
    font-family: 'Barlow', sans-serif;
}

.awards-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 32px;
}

.awards-feature-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: all 0.3s ease;
}

.awards-feature-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

.feature-icon-box {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
}

.feature-icon-box svg {
    color: white;
}

.feature-text h3 {
    font-size: 0.938rem;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    font-family: 'Poppins', sans-serif;
    line-height: 1.4;
}

.awards-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 32px;
    background: #ff6b35;
    color: white;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Manrope', sans-serif;
    text-decoration: none;
    transition: all 0.3s ease;
    border: none;
}

.awards-btn:hover {
    background: #e55a2b;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    color: white;
}

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

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

/* Right Side - Awards */
.awards-right {
    text-align: center;
}

.awards-title {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    font-weight: 700;
    color: white;
    margin-bottom: 40px;
    font-family: 'Poppins', sans-serif;
}

.awards-badges {
    display: flex;
    gap: 24px;
    max-width: 500px;
    margin: 0 auto;
    justify-content: center;
    flex-wrap: wrap;
}

.award-badge {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 auto;
}

.award-badge:hover {
    transform: translateY(-8px) scale(1.05);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
}

.award-badge img {
    width: 100%;
    height: auto;
    display: block;
}

/* TripAdvisor Widget Specific Styling */
.tripadvisor-widget {
    padding: 12px;
}

.tripadvisor-widget .TA_certificateOfExcellence {
    width: 100%;
    display: block;
}

.tripadvisor-widget ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tripadvisor-widget li {
    display: block;
}

.tripadvisor-widget img.widCOEImg {
    width: 100%;
    height: auto;
    max-width: 200px;
    display: block;
    margin: 0 auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .tripadvisor-awards-section {
        padding: 80px 0;
    }

    .tripadvisor-awards-section .container {
        padding: 0 24px;
    }

    .awards-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

    .awards-features {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .awards-badges {
        gap: 20px;
        max-width: 450px;
    }

    .tripadvisor-widget img.widCOEImg {
        max-width: 180px;
    }

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

    .awards-btn {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .awards-badges {
        flex-direction: column;
        gap: 12px;
        max-width: 100%;
        padding: 0 20px;
    }

    .award-badge {
        padding: 10px 12px;
        width: 100%;
        max-width: 240px;
        margin: 0 auto;
    }

    .tripadvisor-widget {
        padding: 6px 8px;
    }

    .tripadvisor-widget img.widCOEImg {
        max-width: 160px !important;
        height: auto !important;
    }

    /* Override TripAdvisor widget inline styles on mobile */
    .tripadvisor-widget div {
        max-width: 160px !important;
        margin: 0 auto !important;
    }

    .awards-features {
        gap: 12px;
    }

    .awards-feature-item {
        padding: 16px;
    }

    .feature-icon-box {
        width: 50px;
        height: 50px;
    }

    .feature-icon-box svg {
        width: 24px;
        height: 24px;
    }

    .feature-text h3 {
        font-size: 0.875rem;
    }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
    .popular-destinations-section {
        padding: 60px 0;
    }

    .popular-destinations-section .container {
        padding: 0 24px;
    }

    .destinations-title {
        margin-bottom: 40px;
    }

    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
        grid-auto-rows: 200px;
        gap: 16px;
    }

    .card-wide,
    .card-medium {
        grid-column: span 2;
    }

    .card-tall {
        grid-row: span 2;
    }

    .destination-name {
        font-size: 1.25rem;
    }

    .destination-count {
        font-size: 0.813rem;
    }
}

@media (max-width: 640px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        grid-auto-rows: 280px;
    }

    .card-wide,
    .card-medium,
    .card-tall,
    .card-square {
        grid-column: span 1;
        grid-row: span 1;
    }

    .destination-overlay {
        padding: 20px;
    }
}

/* ==================== TRIPADVISOR REVIEWS SECTION ==================== */
.tripadvisor-reviews-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.tripadvisor-reviews-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, #e0e0e0 50%, transparent);
}

/* Reviews Header */
.reviews-header {
    margin-bottom: 60px;
    text-align: center;
}

.reviews-title-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.reviews-main-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0;
    letter-spacing: -0.5px;
}

.tripadvisor-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.tripadvisor-logo {
    height: 32px;
    width: auto;
}

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

.rating-score {
    font-family: 'Poppins', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #113A75;
}

.rating-stars {
    display: flex;
    gap: 4px;
}

.rating-stars .star {
    font-size: 1.5rem;
    color: #113A75;
}

.rating-count {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    color: #666;
    margin-left: 8px;
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 50px;
}

.review-card {
    background: white;
    border-radius: 12px;
    padding: 20px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.review-card:hover {
    transform: translateX(4px);
    box-shadow: 0 4px 20px rgba(17, 58, 117, 0.12);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}

.review-rating .stars {
    font-size: 0.938rem;
    color: #113A75;
    letter-spacing: 1px;
}

.review-logo {
    width: 24px;
    height: 24px;
    opacity: 0.7;
}

.review-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0;
    line-height: 1.3;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-text {
    font-family: 'Barlow', sans-serif;
    font-size: 0.875rem;
    line-height: 1.6;
    color: #666;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.review-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    padding-top: 10px;
    border-top: 1px solid #f5f5f5;
}

.review-author {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.author-name {
    font-family: 'Barlow', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    color: #1a1a1a;
}

.author-location {
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    color: #999;
}

.author-location::before {
    content: '📍 ';
    margin-right: 2px;
}

.review-meta {
    display: flex;
    align-items: center;
    gap: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.75rem;
    color: #888;
    white-space: nowrap;
}

.review-meta .separator {
    color: #ddd;
    font-size: 0.625rem;
}

.trip-type {
    background: #e8eef5;
    color: #113A75;
    padding: 3px 8px;
    border-radius: 4px;
    font-weight: 500;
    font-size: 0.75rem;
}

/* Reviews CTA */
.reviews-cta {
    text-align: center;
}

.view-all-reviews-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: #113A75;
    color: white;
    text-decoration: none;
    border-radius: 12px;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(17, 58, 117, 0.25);
}

.view-all-reviews-btn:hover {
    background: #0d2d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 58, 117, 0.35);
}

.view-all-reviews-btn svg {
    transition: transform 0.3s ease;
}

.view-all-reviews-btn:hover svg {
    transform: translateX(4px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .tripadvisor-reviews-section {
        padding: 60px 0;
    }

    .reviews-main-title {
        font-size: 2rem;
    }

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

    .review-card {
        padding: 18px;
    }
}

@media (max-width: 640px) {
    .tripadvisor-reviews-section {
        padding: 50px 0;
    }

    .reviews-header {
        margin-bottom: 40px;
    }

    .reviews-main-title {
        font-size: 1.75rem;
    }

    .tripadvisor-logo {
        height: 24px;
    }

    .rating-display {
        flex-direction: column;
        gap: 8px;
    }

    .rating-score {
        font-size: 1.5rem;
    }

    .rating-stars .star {
        font-size: 1.25rem;
    }

    .reviews-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .review-card {
        padding: 16px;
    }

    .review-title {
        font-size: 0.938rem;
    }

    .review-text {
        font-size: 0.813rem;
        -webkit-line-clamp: 2;
    }

    .review-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .view-all-reviews-btn {
        width: 100%;
        justify-content: center;
        padding: 14px 24px;
        font-size: 0.938rem;
    }
}

/* ==================== NEWS AND ARTICLES SECTION ==================== */
.news-articles-section {
    padding: 80px 0;
    background: #ffffff;
}

.news-articles-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

.news-articles-section .section-subtitle {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #113A75;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    display: block;
    margin-bottom: 12px;
}

.news-articles-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.news-articles-section .section-description {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
}

.articles-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

.article-card {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #f0f0f0;
}

.article-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.article-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.article-category {
    position: absolute;
    top: 16px;
    left: 16px;
    background: rgba(17, 58, 117, 0.95);
    color: white;
    padding: 6px 14px;
    border-radius: 6px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.article-content {
    padding: 24px;
}

.article-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 16px;
    font-family: 'Barlow', sans-serif;
    font-size: 0.813rem;
    color: #888;
}

.article-date, .article-read-time {
    display: flex;
    align-items: center;
    gap: 4px;
}

.article-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 12px;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-excerpt {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    line-height: 1.6;
    color: #666;
    margin: 0 0 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.article-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #113A75;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.article-link:hover {
    gap: 12px;
}

.article-link svg {
    transition: transform 0.3s ease;
}

.article-link:hover svg {
    transform: translateX(2px);
}

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

.btn-view-all {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 36px;
    background: transparent;
    color: #113A75;
    text-decoration: none;
    border: 2px solid #113A75;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-view-all:hover {
    background: #113A75;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 58, 117, 0.25);
}

.btn-view-all svg {
    transition: transform 0.3s ease;
}

.btn-view-all:hover svg {
    transform: translateX(4px);
}

/* ==================== CONTACT SECTION ==================== */
.contact-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    position: sticky;
    top: 100px;
}

.contact-title {
    font-family: 'Poppins', sans-serif;
    font-size: 2.25rem;
    font-weight: 700;
    color: #1a1a1a;
    margin: 0 0 16px;
    letter-spacing: -0.5px;
}

.contact-description {
    font-family: 'Barlow', sans-serif;
    font-size: 1.125rem;
    line-height: 1.7;
    color: #666;
    margin: 0 0 40px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-item {
    display: flex;
    gap: 20px;
}

.contact-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(17, 58, 117, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #113A75;
}

.contact-text h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    color: #1a1a1a;
    margin: 0 0 6px;
}

.contact-text p {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    color: #666;
    margin: 0;
    line-height: 1.6;
}

.contact-text a {
    color: #113A75;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-text a:hover {
    color: #0d2d5e;
}

.contact-form-wrapper {
    background: white;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0f0f0;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    font-weight: 600;
    color: #1a1a1a;
}

.form-group input,
.form-group select,
.form-group textarea {
    font-family: 'Barlow', sans-serif;
    font-size: 0.938rem;
    padding: 14px 16px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: #fafafa;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #113A75;
    background: white;
    box-shadow: 0 0 0 3px rgba(17, 58, 117, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 36px;
    background: #113A75;
    color: white;
    border: none;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 16px rgba(17, 58, 117, 0.25);
}

.btn-submit:hover {
    background: #0d2d5e;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(17, 58, 117, 0.35);
}

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

.btn-submit:hover svg {
    transform: translateX(2px);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .news-articles-section {
        padding: 60px 0;
    }

    .news-articles-section .section-title {
        font-size: 2rem;
    }

    .articles-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .contact-section {
        padding: 60px 0;
    }

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

    .contact-info {
        position: static;
    }

    .contact-form-wrapper {
        padding: 32px;
    }
}

@media (max-width: 640px) {
    .news-articles-section {
        padding: 50px 0;
    }

    .news-articles-section .section-header {
        margin-bottom: 40px;
    }

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

    .articles-grid {
        gap: 20px;
    }

    .article-image {
        height: 180px;
    }

    .article-content {
        padding: 20px;
    }

    .contact-section {
        padding: 50px 0;
    }

    .contact-title {
        font-size: 1.875rem;
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .btn-view-all {
        padding: 12px 24px;
        font-size: 0.875rem;
        width: auto;
        display: inline-flex;
    }

    .btn-submit {
        width: 100%;
    }
}

/* ==================== PAGE HERO SECTION ==================== */
.page-hero {
    position: relative;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url('../img/Sigiriya.jpg');
    background-size: cover;
    background-position: center;
    opacity: 1;
}

/* Specific Hero Backgrounds for Different Pages */
.honeymoon-hero::before {
    background-image: url('../img/bentota.jpg');
}

.highland-hero::before {
    background-image: url('../img/tea-plantion.jpg');
}

.wildlife-hero::before {
    background-image: url('../img/udawalawe.jpg');
}

.culture-hero::before {
    background-image: url('../img/dambulla-cave-temple.jpg');
}

.drivers-hero::before {
    background-image: url('../img/colombo-city.jpg');
}

.tailor-hero::before {
    background-image: url('../img/horton-plains.jpg');
}

.about-hero::before {
    background-image: url('../img/ella-nine-arch.jpg');
}

.contact-hero::before {
    background-image: url('../img/galle-fort.jpg');
}

.highlight-hero::before {
    background-image: url('../img/Sigiriya.jpg');
}

.tours-hero::before {
    background-image: url('../img/tea-plantion.jpg');
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: #ffffff;
    padding: 140px 20px 0;
}

.hero-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.hero-subtitle {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    font-weight: 400;
    opacity: 0.95;
}

/* ==================== MAP SECTION ==================== */
.map-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-section .section-title {
    text-align: center;
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 40px;
}

.map-wrapper {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.map-wrapper iframe {
    display: block;
}

/* Responsive adjustments for page hero */
@media (max-width: 768px) {
    .page-hero {
        height: 350px;
    }

    .hero-content {
        padding: 80px 20px 0;
    }

    .hero-title {
        font-size: 2.5rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        letter-spacing: 0.05em;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Drivers Page Hero Mobile Optimization */
    .drivers-hero .hero-title {
        font-size: 2.125rem;
        margin-bottom: 10px;
    }

    .drivers-hero .hero-subtitle {
        font-size: 0.9375rem;
        max-width: 85%;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 320px;
    }

    .page-hero::before {
        background-position: center center;
    }

    .hero-content {
        padding: 70px 16px 0;
    }

    .hero-title {
        font-size: 2.25rem;
        margin-bottom: 12px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        padding: 0 10px;
        max-width: 90%;
        margin: 0 auto;
    }

    /* Drivers Page Hero - Small Mobile Optimization */
    .drivers-hero .hero-title {
        font-size: 1.875rem;
        margin-bottom: 8px;
        line-height: 1.15;
    }

    .drivers-hero .hero-subtitle {
        font-size: 0.875rem;
        max-width: 80%;
        line-height: 1.4;
        letter-spacing: 0.03em;
    }
}

    .map-section {
        padding: 60px 0;
    }

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

    .map-wrapper iframe {
        height: 300px !important;
    }
}

@media (max-width: 480px) {
    .page-hero {
        height: 250px;
    }

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

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

/* ==================== ABOUT US PAGE ==================== */

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.about-text .section-subtitle {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}

.about-text .section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 28px;
    line-height: 1.2;
}

.about-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.about-image {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.about-image:hover {
    transform: scale(1.02);
}

.about-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(30, 58, 138, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* Why Choose Section */
.why-choose-section {
    padding: 100px 0;
    background: #ffffff;
}

.why-choose-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.why-choose-section .section-subtitle {
    display: inline-block;
    background: rgba(30, 58, 138, 0.1);
    color: #1e3a8a;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.why-choose-section .section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 16px;
}

.why-choose-section .section-description {
    font-size: 1.125rem;
    color: #64748b;
    line-height: 1.6;
}

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

.feature-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    padding: 48px 36px;
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.12);
    border-color: #1e3a8a;
}

.feature-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 28px;
    color: #ffffff;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.3);
}

.feature-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
}

.feature-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.mission-card {
    text-align: center;
    padding: 64px 48px;
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 48px rgba(30, 58, 138, 0.12);
    border-color: #FF8C00;
}

.mv-icon {
    width: 96px;
    height: 96px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF9E1A 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 28px;
    color: #ffffff;
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.25);
    transition: all 0.3s ease;
}

.mission-card:hover .mv-icon {
    transform: scale(1.1);
    box-shadow: 0 12px 32px rgba(255, 140, 0, 0.35);
}

.mv-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.875rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.mv-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #64748b;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #ffffff;
}

.values-section .section-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 70px;
}

.values-section .section-subtitle {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 16px;
}

.values-section .section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
}

.value-item {
    text-align: center;
    padding: 40px 32px;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    border-radius: 20px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.value-item:hover {
    background: #ffffff;
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

.value-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 12px;
}

.value-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    line-height: 1.7;
    color: #64748b;
}

/* About CTA Section */
.about-cta-section {
    padding: 120px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.cta-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 3rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 20px;
    line-height: 1.2;
}

.cta-description {
    font-family: 'Poppins', sans-serif;
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 48px;
    line-height: 1.6;
}

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

.btn-primary,
.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 18px 48px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1.0625rem;
    font-weight: 600;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-primary {
    background: #ffffff;
    color: #1e3a8a;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

.btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.btn-secondary {
    background: transparent;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.4);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Responsive styles for About Us page */
@media (max-width: 1024px) {
    .about-grid {
        gap: 60px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .about-story-section,
    .why-choose-section,
    .mission-vision-section,
    .values-section,
    .about-cta-section {
        padding: 60px 0;
    }

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

    .about-text .section-title,
    .why-choose-section .section-title,
    .values-section .section-title,
    .cta-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .about-story-section,
    .why-choose-section,
    .mission-vision-section,
    .values-section,
    .about-cta-section {
        padding: 50px 0;
    }

    .about-text .section-title,
    .why-choose-section .section-title,
    .values-section .section-title,
    .cta-title {
        font-size: 1.75rem;
    }

    .feature-card {
        padding: 32px 24px;
    }

    .mission-card {
        padding: 40px 24px;
    }
}

/* ==================== TOURS PAGE ==================== */

/* Tours Page Section */
.tours-page-section {
    padding: 80px 0 100px;
    background: #ffffff;
}

/* Minimal Intro Section */
.tours-intro-minimal {
    text-align: center;
    margin-bottom: 64px;
}

.section-tag {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #FF6B35;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
}

.section-title-clean {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.5rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0;
    letter-spacing: -0.02em;
}

/* Filter Tabs */
.tours-filter {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 56px;
    flex-wrap: wrap;
    padding: 0 16px;
}

.filter-btn {
    padding: 14px 32px;
    background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.938rem;
    font-weight: 500;
    color: #475569;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    letter-spacing: 0.01em;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

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

.filter-btn:hover {
    border-color: #113A75;
    color: #113A75;
    background: #f8fafc;
    box-shadow: 0 4px 12px rgba(17, 58, 117, 0.12);
    transform: translateY(-2px);
}

.filter-btn.active {
    background: linear-gradient(135deg, #113A75 0%, #0d2d5e 100%);
    border-color: #113A75;
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(17, 58, 117, 0.3);
    transform: translateY(-1px);
}

/* Tours Grid */
.tours-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

/* Tour Card */
.tour-card {
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    opacity: 1;
    transform: translateY(0);
}

.tour-card.show {
    opacity: 1;
    transform: translateY(0);
}

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

/* Tour Image */
.tour-image {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.tour-badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    color: #1a1a1a;
}

.tour-tag {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #db2777 0%, #e91e63 100%);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tour-tag-best {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #FF6B35 0%, #F7931E 100%);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.3);
}

.tour-tag-budget {
    position: absolute;
    top: 16px;
    left: 16px;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    padding: 6px 14px;
    border-radius: 50px;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 8px rgba(59, 130, 246, 0.3);
}

/* Tour Content */
.tour-content {
    padding: 24px;
}

.tour-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 12px;
}

.tour-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.3;
    flex: 1;
    padding-right: 12px;
    letter-spacing: -0.01em;
    text-transform: capitalize;
}

.tour-rating {
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
}

.tour-rating .star {
    color: #fbbf24;
    font-size: 1rem;
}

.rating-text {
    font-family: 'Poppins', sans-serif;
    font-size: 0.813rem;
    font-weight: 600;
    color: #4a5568;
}

.tour-description {
    font-family: 'Poppins', sans-serif;
    font-size: 0.875rem;
    line-height: 1.7;
    color: #64748b;
    margin-bottom: 16px;
}

/* Tour Highlights */
.tour-highlights {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.highlight-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: #f8f9fa;
    border-radius: 50px;
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    color: #475569;
}

.highlight-item svg {
    color: #113A75;
}

/* Tour Footer */
.tour-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid #e2e8f0;
}

.tour-price {
    display: flex;
    flex-direction: column;
    gap: 0px;
    justify-content: center;
    align-items: flex-start;
}

.price-label {
    font-family: 'Poppins', sans-serif;
    font-size: 0.75rem;
    color: #94a3b8;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-value {
    font-family: 'Satoshi', sans-serif;
    font-size: 0.875rem;
    font-weight: 700;
    color: #113A75;
}

.tour-btn {
    padding: 10px 24px;
    background: #113A75;
    color: #ffffff;
    border-radius: 8px;
    font-family: 'Satoshi', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tour-btn:hover {
    background: #0d2d5e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(17, 58, 117, 0.3);
}

/* Tours CTA Section */
.tours-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.tours-cta-section .cta-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 60px 40px;
    background: #ffffff !important;
    border-radius: 16px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.tours-cta-section .cta-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: #1a1a1a !important;
    margin-bottom: 16px;
    line-height: 1.2;
}

.tours-cta-section .cta-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    color: #4a5568 !important;
    margin-bottom: 32px;
    line-height: 1.6;
}

.tours-cta-section .cta-button {
    display: inline-block;
    padding: 16px 40px;
    background: #113A75 !important;
    color: #ffffff !important;
    border-radius: 12px;
    font-family: 'Satoshi', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.tours-cta-section .cta-button:hover {
    background: #0d2d5e !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(17, 58, 117, 0.25);
}

/* Responsive styles for Tours page */
@media (max-width: 1024px) {
    .tours-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
    }
}

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

    .tours-filter {
        gap: 10px;
        margin-bottom: 40px;
        padding: 0 12px;
    }

    .filter-btn {
        padding: 12px 24px;
        font-size: 0.875rem;
        border-radius: 10px;
    }

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

    .tour-image {
        height: 220px;
    }

    .tour-content {
        padding: 20px;
    }

    .tour-title {
        font-size: 1.0625rem;
    }

    .tour-footer {
        flex-direction: column;
        gap: 16px;
        align-items: stretch;
    }

    .tour-btn {
        width: 100%;
        text-align: center;
    }

    .tours-cta-section {
        padding: 60px 0;
    }

    .tours-cta-section .cta-box {
        padding: 40px 24px;
    }

    .tours-cta-section .cta-title {
        font-size: 1.75rem;
        color: #1a1a1a !important;
    }

    .tours-cta-section .cta-text {
        font-size: 1rem;
        color: #4a5568 !important;
    }

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

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

    .tours-intro-minimal {
        margin-bottom: 48px;
    }

    .section-tag {
        font-size: 0.75rem;
        padding: 5px 14px;
    }

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

    .tours-filter {
        flex-direction: column;
        align-items: stretch;
        gap: 8px;
        padding: 0;
    }

    .filter-btn {
        width: 100%;
        text-align: center;
        padding: 14px 20px;
        border-radius: 12px;
        font-size: 0.938rem;
    }

    .tour-image {
        height: 200px;
    }

    .tours-cta-section .cta-box {
        padding: 32px 20px;
    }

    .tours-cta-section .cta-title {
        font-size: 1.5rem;
        color: #1a1a1a !important;
    }

    .tours-cta-section .cta-text {
        color: #4a5568 !important;
    }
}

/* ================================
   CUSTOM TOUR / TAILOR-MADE TOURS PAGE
   ================================ */

.custom-tour-section {
    padding: 80px 0 100px;
    background: #f8f9fa;
}

.custom-tour-intro {
    text-align: center;
    max-width: 900px;
    margin: 0 auto 64px;
}

.custom-tour-intro .section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.custom-tour-intro .section-description {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #64748b;
    margin-top: 16px;
}

.custom-tour-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.custom-tour-form {
    background: #ffffff;
    border-radius: 20px;
    padding: 56px 64px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    margin-bottom: 48px;
    border: 1px solid #e8e8e8;
}

.form-section {
    margin-bottom: 56px;
    padding-bottom: 56px;
    border-bottom: 1px solid #f0f0f0;
}

.form-section:last-of-type {
    border-bottom: none;
    margin-bottom: 32px;
    padding-bottom: 0;
}

.form-section-title {
    font-family: 'Satoshi', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 32px;
    letter-spacing: -0.01em;
}

.form-helper-text {
    color: #666;
    font-size: 0.9375rem;
    margin-bottom: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 28px;
}

.form-row:last-child {
    margin-bottom: 0;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    font-family: 'Satoshi', sans-serif;
    font-weight: 500;
    color: #334155;
    margin-bottom: 10px;
    font-size: 0.9375rem;
}

.required {
    color: #ef4444;
}

.form-group input[type="text"],
.form-group input[type="email"],
.form-group input[type="tel"],
.form-group input[type="date"],
.form-group input[type="number"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.9375rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: #f8fafc;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #1e3a8a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.08);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.travelers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 20px;
}

.total-travelers {
    margin-top: 20px;
    padding: 16px;
    background: #f0f7ff;
    border-radius: 8px;
    text-align: center;
    font-size: 1.125rem;
    color: #1a1a1a;
}

.interests-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
    gap: 16px;
}

.checkbox-group {
    position: relative;
}

.checkbox-group input[type="checkbox"] {
    position: absolute;
    opacity: 0;
    width: 1px;
    height: 1px;
    pointer-events: none;
}

.checkbox-group label {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px;
    border: 2px solid #e5e5e5;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    background: #fff;
    pointer-events: auto;
}

.checkbox-group label:hover {
    border-color: #FF6B35;
    background: #fff8f6;
}

.checkbox-group input[type="checkbox"]:checked + label {
    border-color: #FF6B35;
    background: #fff8f6;
    box-shadow: 0 2px 8px rgba(255, 107, 53, 0.15);
}

.checkbox-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.checkbox-label {
    font-weight: 500;
    color: #333;
    font-size: 0.9375rem;
}

.form-actions {
    text-align: center;
    margin-top: 48px;
}

.submit-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    border: none;
    padding: 18px 56px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Satoshi', sans-serif;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.35);
    background: linear-gradient(135deg, #172554 0%, #1e3a8a 100%);
}

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

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

.form-disclaimer {
    margin-top: 16px;
    color: #666;
    font-size: 0.875rem;
}

/* Custom Tour Benefits */
.custom-tour-benefits {
    background: #ffffff;
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.custom-tour-benefits h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: #1a1a1a;
    text-align: center;
    margin-bottom: 32px;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 32px;
}

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

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 16px;
}

.benefit-item h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.benefit-item p {
    color: #666;
    font-size: 0.9375rem;
    line-height: 1.6;
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .custom-tour-container {
        max-width: 100%;
        padding: 0 32px;
    }

    .custom-tour-form {
        padding: 48px 40px;
    }

    .interests-grid {
        grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    }
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .custom-tour-section {
        padding: 60px 0 80px;
    }

    .custom-tour-container {
        padding: 0 12px;
    }

    .custom-tour-intro {
        margin-bottom: 48px;
    }

    .custom-tour-intro .section-title {
        font-size: 1.875rem;
    }

    .custom-tour-intro .section-description {
        font-size: 1rem;
    }

    .custom-tour-form {
        padding: 40px 20px;
        border-radius: 16px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .form-section {
        margin-bottom: 40px;
        padding-bottom: 40px;
    }

    .form-section-title {
        font-size: 1.25rem;
        margin-bottom: 24px;
    }

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

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

    .submit-btn {
        width: 100%;
        justify-content: center;
        padding: 16px 32px;
    }

    .custom-tour-benefits {
        padding: 32px 24px;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
}

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

    .custom-tour-container {
        padding: 0 8px;
    }

    .custom-tour-form {
        padding: 24px 16px;
    }

    .form-section-title {
        font-size: 1.125rem;
    }

    .submit-btn {
        font-size: 1rem;
        padding: 14px 28px;
    }

    .custom-tour-benefits h3 {
        font-size: 1.5rem;
    }
}

/* ================================
   TOUR DETAIL PAGES
   ================================ */

/* Tour Hero */
.tour-detail-hero {
    position: relative;
    height: 500px;
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-detail-hero .hero-overlay {
    background: rgba(0, 0, 0, 0.35);
}

.tour-hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    color: #ffffff;
    padding: 120px 20px 40px;
}

.tour-badge-group {
    display: flex;
    gap: 12px;
    justify-content: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.tour-category-badge,
.tour-duration-badge {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(255, 107, 53, 0.9);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.tour-hero-title {
    font-family: 'Poppins', sans-serif;
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 16px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
    color: #ffffff;
}

.tour-hero-subtitle {
    font-size: 1.25rem;
    font-weight: 400;
    margin-bottom: 24px;
    opacity: 1;
    color: rgba(255, 255, 255, 0.95);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.tour-hero-rating {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.tour-hero-rating .stars {
    color: #FFD700;
    font-size: 1.25rem;
}

.tour-hero-rating .rating-count {
    display: none;
}

/* Tour Overview Section */
.tour-overview-section {
    padding: 80px 0;
    background: #ffffff;
}

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

.tour-overview-content {
    background: transparent;
}

.tour-description-section {
    margin-bottom: 40px;
}

.tour-description-section h2 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 20px;
}

.tour-overview-text {
    font-size: 1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 0;
}

.tour-highlights-box {
    display: none;
}

/* Tour Gallery Slider */
.tour-gallery-section {
    margin-bottom: 48px;
}

.gallery-slider {
    position: relative;
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    background: #f8f9fa;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.gallery-slides {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
}

.gallery-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

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

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

.gallery-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.95);
    border: none;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.15);
}

.gallery-nav:hover {
    background: #ffffff;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
    transform: translateY(-50%) scale(1.05);
}

.gallery-prev {
    left: 16px;
}

.gallery-next {
    right: 16px;
}

.gallery-nav svg {
    width: 24px;
    height: 24px;
    color: #1e293b;
}

.gallery-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 10;
}

.gallery-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    padding: 0;
}

.gallery-dot:hover {
    background: rgba(255, 255, 255, 0.8);
    transform: scale(1.2);
}

.gallery-dot.active {
    background: #ffffff;
    width: 32px;
    border-radius: 6px;
}

@media (max-width: 768px) {
    .gallery-nav {
        width: 40px;
        height: 40px;
    }

    .gallery-nav svg {
        width: 20px;
        height: 20px;
    }

    .gallery-prev {
        left: 12px;
    }

    .gallery-next {
        right: 12px;
    }

    .gallery-dots {
        bottom: 12px;
    }

    .gallery-dot {
        width: 8px;
        height: 8px;
    }

    .gallery-dot.active {
        width: 24px;
    }
}

/* Tour Booking Card */
.tour-info-card {
    background: #ffffff;
    border-radius: 12px;
    padding: 32px;
    position: sticky;
    top: 20px;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
    border: 1px solid #f0f0f0;
}

.tour-info-card h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.625rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
    text-align: center;
}

.tour-info-subtitle {
    text-align: center;
    font-size: 0.9375rem;
    color: #666;
    margin-bottom: 24px;
    font-weight: 400;
}

.tour-booking-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.tour-booking-form .form-group {
    position: relative;
}

.tour-booking-form label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: #1e3a8a;
    margin-bottom: 6px;
}

.tour-booking-form label svg {
    width: 18px !important;
    height: 18px !important;
    min-width: 18px;
    max-width: 18px;
    min-height: 18px;
    max-height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    display: block;
}

.tour-booking-form input,
.tour-booking-form select {
    width: 100%;
    padding: 11px 14px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 0.9375rem;
    transition: all 0.3s ease;
    background: #fafafa;
    font-family: inherit;
    color: #333;
}

.tour-booking-form input:hover {
    border-color: #c0c0c0;
    background: #ffffff;
}

.tour-booking-form input::placeholder {
    color: #999;
}

.tour-booking-form input:focus,
.tour-booking-form select:focus {
    outline: none;
    border-color: #1e3a8a;
    background: #ffffff;
    box-shadow: 0 0 0 3px rgba(30, 58, 138, 0.2);
}

.tour-booking-form .submit-btn {
    width: 100%;
    padding: 16px 24px;
    background: #1e3a8a;
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 8px;
    text-align: center;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-booking-form .submit-btn:hover {
    background: #172554;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(30, 58, 138, 0.5);
}

/* Itinerary Section - Tour Plan */
.itinerary-section {
    padding: 0;
    background: transparent;
}

.itinerary-section .section-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 24px;
}

.itinerary-day {
    background: #ffffff;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #e5e7eb;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.itinerary-day:hover:not(.active) {
    border-color: #cbd5e1;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.itinerary-day.active {
    border-color: #1e3a8a;
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.12);
}

.day-header {
    background: #ffffff;
    color: #1a1a1a;
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
}

.itinerary-day.active .day-header {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
}

.day-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    color: #ffffff;
    border-radius: 14px;
    font-size: 1.25rem;
    font-weight: 700;
    flex-shrink: 0;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
}

.itinerary-day.active .day-number {
    background: #ffffff;
    color: #1e3a8a;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.day-title-wrapper {
    flex: 1;
}

.day-title {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0 0 6px 0;
    letter-spacing: -0.01em;
}

.day-subtitle {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0;
    transition: color 0.3s ease;
    font-weight: 500;
}

.itinerary-day.active .day-subtitle {
    color: rgba(255, 255, 255, 0.85);
}

.day-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    background: #f3f4f6;
    transition: all 0.3s ease;
    flex-shrink: 0;
}

.itinerary-day.active .day-toggle {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
}

.day-toggle::after {
    content: "▼";
    font-size: 0.75rem;
    color: #1e3a8a;
    transition: all 0.3s ease;
}

.itinerary-day.active .day-toggle::after {
    content: "▲";
    color: #ffffff;
    transform: rotate(180deg);
}

.day-meta {
    display: none;
}

.day-content {
    padding: 0;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.4, 0, 0.2, 1), padding 0.35s cubic-bezier(0.4, 0, 0.2, 1), opacity 0.3s ease;
    background: #ffffff;
    opacity: 0;
}

.itinerary-day.active .day-content {
    max-height: 2000px;
    padding: 24px;
    opacity: 1;
}

.day-content p {
    font-size: 0.9375rem;
    line-height: 1.75;
    color: #475569;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 0.01em;
}

.day-activities {
    display: none;
}

.day-info-boxes {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 24px;
    padding-top: 20px;
    border-top: 1px solid #e2e8f0;
}

.day-info-box {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 18px;
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    border-radius: 12px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
}

.day-info-box:hover {
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-color: #cbd5e1;
    transform: translateX(4px);
}

.day-info-box .info-box-icon {
    font-size: 1.375rem;
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
    border-radius: 10px;
    box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.day-info-box .info-box-content {
    flex: 1;
}

.day-info-box .info-box-label {
    font-size: 0.8125rem;
    font-weight: 600;
    color: #64748b;
    margin: 0 0 3px 0;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.day-info-box .info-box-value {
    font-size: 0.9375rem;
    color: #1e293b;
    margin: 0;
    font-weight: 600;
}

.day-accommodation {
    display: none;
}

/* Inclusions Section */
.inclusions-section {
    padding: 80px 0;
    background: #f8f9fa;
}

.inclusions-section .section-title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem;
    font-weight: 600;
    color: #0f172a;
    margin-bottom: 48px;
    text-align: center;
    letter-spacing: -0.01em;
}

.inclusions-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
    margin-bottom: 56px;
    justify-content: center;
}

.inclusions-grid > * {
    width: 100%;
    max-width: 350px;
    min-width: 280px;
    flex: 1 1 280px;
}

.inclusion-item {
    background: #ffffff;
    padding: 40px 28px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid #e5e7eb;
}

.inclusion-item:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.15);
    border-color: #113A75;
}

.inclusion-item svg {
    color: #FF6B35;
    margin-bottom: 20px;
    width: 48px;
    height: 48px;
    padding: 12px;
    background: rgba(74, 144, 226, 0.08);
    border-radius: 12px;
}

.inclusion-item h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.125rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #1e293b;
}

.inclusion-item p {
    font-size: 0.9375rem;
    color: #666;
    line-height: 1.6;
}

.value-added-section {
    background: #f8fafb;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #e8eef3;
    max-width: 800px;
    margin: 0 auto;
}

.value-added-section h3 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.375rem;
    font-weight: 600;
    margin-bottom: 24px;
    color: #1e293b;
    text-align: center;
}

.value-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 12px;
}

.value-list li {
    padding: 14px 20px 14px 48px;
    position: relative;
    color: #555;
    font-size: 0.9375rem;
    background: #ffffff;
    border-radius: 8px;
    border: 1px solid #e8eef3;
    transition: all 0.2s ease;
}

.value-list li:hover {
    border-color: #d0dce8;
    background: #ffffff;
}

.value-list li::before {
    content: "";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 20px;
    height: 20px;
    background: #1e3a8a;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.value-list li::after {
    content: "✓";
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.75rem;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Tour Inquiry Section - Hidden */
.tour-inquiry-section {
    display: none;
}

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

    .tour-info-card {
        position: static;
    }
}

@media (max-width: 768px) {
    .tour-detail-hero {
        height: 450px;
        min-height: 450px;
    }

    .tour-hero-content {
        padding: 110px 20px 40px;
    }

    .tour-badge-group {
        margin-bottom: 16px;
    }

    .tour-hero-title {
        font-size: 2.25rem;
        margin-bottom: 14px;
        line-height: 1.2;
    }

    .tour-hero-subtitle {
        font-size: 1.0625rem;
        line-height: 1.5;
    }

    .tour-overview-section {
        padding: 60px 0;
    }

    .itinerary-day.active .day-content {
        padding: 20px;
    }

    .day-header {
        padding: 18px 20px;
        gap: 16px;
    }

    .day-number {
        width: 48px;
        height: 48px;
        font-size: 1.0625rem;
        border-radius: 12px;
    }

    .day-title {
        font-size: 1.0625rem;
    }

    .day-subtitle {
        font-size: 0.8125rem;
    }

    .day-toggle {
        width: 32px;
        height: 32px;
    }

    .day-info-box {
        padding: 14px 16px;
    }

    .day-info-box .info-box-icon {
        width: 36px;
        height: 36px;
        font-size: 1.25rem;
    }

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

@media (max-width: 480px) {
    .tour-detail-hero {
        height: 450px;
        min-height: 450px;
    }

    .tour-hero-content {
        padding: 100px 15px 40px;
    }

    .tour-badge-group {
        margin-bottom: 20px;
        gap: 8px;
    }

    .tour-hero-title {
        font-size: 1.75rem;
        margin-bottom: 12px;
        line-height: 1.2;
    }

    .tour-hero-subtitle {
        font-size: 0.9375rem;
        margin-bottom: 0;
        line-height: 1.5;
    }

    .tour-category-badge,
    .tour-duration-badge {
        padding: 8px 14px;
        font-size: 0.75rem;
    }

    .tour-overview-section,
    .inclusions-section {
        padding: 50px 0;
    }

    .day-header {
        padding: 16px 20px;
    }

    .day-number {
        width: 32px;
        height: 32px;
        font-size: 0.875rem;
    }

    .day-title {
        font-size: 0.9375rem;
    }

    .tour-info-card {
        padding: 24px;
    }

    .tour-booking-form input,
    .tour-booking-form select {
        padding: 10px 14px 10px 44px;
    }
}

/* ========================================
   SRI LANKA PRIVATE DRIVERS PAGE STYLES
   ======================================== */

/* Drivers Hero Section */
.drivers-hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)),
                      url('../img/driver-hero.jpg');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-attachment: scroll;
}

/* Drivers Introduction Section */
.drivers-intro-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.drivers-intro-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 140, 0, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.intro-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.intro-content-left {
    padding-right: 20px;
}

.intro-badge {
    display: inline-block;
    background: rgba(255, 140, 0, 0.1);
    color: #FF8C00;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.intro-title {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    margin-bottom: 28px;
    line-height: 1.2;
    font-family: 'Satoshi', sans-serif;
}

.intro-description {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: #64748b;
    margin-bottom: 20px;
}

.intro-description:last-of-type {
    margin-bottom: 40px;
}

/* Book Now Button */
.book-now-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, #FF8C00 0%, #FF9E1A 100%);
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1.125rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(255, 140, 0, 0.25);
    font-family: 'Satoshi', sans-serif;
}

.book-now-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 140, 0, 0.35);
}

.book-now-btn svg {
    width: 20px;
    height: 20px;
}

/* Stats Wrapper */
.intro-content-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.stats-wrapper {
    display: flex;
    flex-direction: column;
    gap: 20px;
    width: 100%;
}

/* Stat Card */
.stat-card {
    background: #ffffff;
    border-radius: 20px;
    padding: 32px;
    display: flex;
    align-items: center;
    gap: 24px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.stat-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
    border-color: #FF8C00;
}

.stat-card-highlight {
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border: none;
}

.stat-card-highlight .stat-icon {
    background: rgba(255, 255, 255, 0.2);
}

.stat-card-highlight .stat-icon svg {
    color: #ffffff;
}

.stat-card-highlight .stat-number {
    color: #ffffff;
}

.stat-card-highlight .stat-label {
    color: rgba(255, 255, 255, 0.9);
}

.stat-icon {
    width: 72px;
    height: 72px;
    background: linear-gradient(135deg, rgba(255, 140, 0, 0.1) 0%, rgba(255, 140, 0, 0.05) 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

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

.stat-icon svg {
    width: 32px;
    height: 32px;
    color: #FF8C00;
}

.stat-content {
    flex: 1;
}

.stat-number {
    font-size: 2.75rem;
    font-weight: 700;
    color: #1e293b;
    line-height: 1;
    margin-bottom: 8px;
    font-family: 'Satoshi', sans-serif;
}

.stat-label {
    font-size: 0.9375rem;
    color: #64748b;
    font-weight: 500;
    line-height: 1.4;
}

/* Drivers Team Section */
.drivers-team-section {
    padding: 80px 0;
    background: #f8fafc;
}

.drivers-team-section .section-title {
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    text-align: center;
    font-size: 1.0625rem;
    color: #64748b;
    margin-bottom: 56px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Drivers Grid */
.drivers-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Driver Card */
.driver-card {
    background: #ffffff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    border: 1px solid #e8e8e8;
}

.driver-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 32px rgba(30, 58, 138, 0.15);
}

/* Driver Image */
.driver-image {
    position: relative;
    width: 100%;
    height: 300px;
    overflow: hidden;
    background: linear-gradient(135deg, #e0e7ff 0%, #f1f5f9 100%);
}

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

.driver-card:hover .driver-image img {
    transform: scale(1.05);
}

/* Driver Badge */
.driver-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    color: #ffffff;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(30, 58, 138, 0.3);
}

/* Driver Info */
.driver-info {
    padding: 32px;
}

.driver-name {
    font-size: 1.5rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 8px;
    font-family: 'Satoshi', sans-serif;
}

.driver-title {
    font-size: 1rem;
    color: #1e3a8a;
    font-weight: 500;
    margin-bottom: 24px;
}

/* Driver Details */
.driver-details {
    display: flex;
    gap: 24px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #64748b;
}

.detail-item svg {
    width: 18px;
    height: 18px;
    color: #1e3a8a;
    flex-shrink: 0;
}

/* Driver Description */
.driver-description {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: #64748b;
    margin: 0;
}

/* Why Choose Our Drivers Section */
.why-drivers-section {
    padding: 80px 0;
    background: #ffffff;
}

.why-drivers-section .section-title {
    text-align: center;
    margin-bottom: 48px;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Feature Card */
.feature-card {
    background: #f8fafc;
    padding: 40px 32px;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid #e2e8f0;
}

.feature-card:hover {
    background: #ffffff;
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(30, 58, 138, 0.1);
    border-color: #1e3a8a;
}

/* Feature Icon */
.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 8px 20px rgba(30, 58, 138, 0.25);
}

.feature-icon svg {
    width: 32px;
    height: 32px;
    color: #ffffff;
}

.feature-card h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #1e293b;
    margin-bottom: 12px;
    font-family: 'Satoshi', sans-serif;
}

.feature-card p {
    font-size: 0.9375rem;
    line-height: 1.6;
    color: #64748b;
    margin: 0;
}

/* Drivers CTA Section */
.drivers-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #1e3a8a 0%, #1e40af 100%);
}

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

.cta-title {
    font-size: 2.5rem;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 20px;
    font-family: 'Satoshi', sans-serif;
}

.cta-text {
    font-size: 1.125rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 40px;
}

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

.cta-buttons .btn-primary {
    background: #ffffff;
    color: #1e3a8a;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    font-family: 'Satoshi', sans-serif;
}

.cta-buttons .btn-primary:hover {
    background: #f8fafc;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
}

.cta-buttons .btn-primary svg {
    width: 20px;
    height: 20px;
}

.cta-buttons .btn-secondary {
    background: transparent;
    color: #ffffff;
    padding: 18px 48px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    font-family: 'Satoshi', sans-serif;
}

.cta-buttons .btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #ffffff;
    transform: translateY(-2px);
}

/* Tablet Responsive */
@media (max-width: 1024px) {
    .intro-wrapper {
        gap: 60px;
        padding: 0 30px;
    }

    .intro-title {
        font-size: 2.25rem;
    }

    .intro-description {
        font-size: 1rem;
    }

    .stat-card {
        padding: 28px;
    }

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

    .drivers-grid {
        gap: 32px;
        padding: 0 20px;
    }

    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px;
        padding: 0 20px;
    }

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

/* Mobile Responsive */
@media (max-width: 768px) {
    .drivers-intro-section {
        padding: 70px 0;
    }

    .drivers-team-section,
    .why-drivers-section,
    .drivers-cta-section {
        padding: 60px 0;
    }

    .intro-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
        padding: 0 20px;
    }

    .intro-content-left {
        padding-right: 0;
    }

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

    .intro-description {
        font-size: 0.9375rem;
    }

    .book-now-btn {
        width: 100%;
        justify-content: center;
    }

    .stat-card {
        padding: 24px;
    }

    .stat-icon {
        width: 64px;
        height: 64px;
    }

    .stat-icon svg {
        width: 28px;
        height: 28px;
    }

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

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

    .drivers-grid {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 0 12px;
    }

    .driver-image {
        height: 280px;
    }

    .driver-info {
        padding: 28px;
    }

    .driver-name {
        font-size: 1.375rem;
    }

    .driver-details {
        flex-direction: column;
        gap: 12px;
    }

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

    .feature-card {
        padding: 32px 24px;
    }

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

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

    .cta-buttons {
        flex-direction: column;
        gap: 16px;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }
}

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

    .drivers-team-section,
    .why-drivers-section,
    .drivers-cta-section {
        padding: 50px 0;
    }

    .intro-wrapper {
        gap: 40px;
    }

    .intro-badge {
        font-size: 0.75rem;
        padding: 6px 16px;
    }

    .intro-title {
        font-size: 1.75rem;
        margin-bottom: 20px;
    }

    .intro-description {
        font-size: 0.875rem;
        margin-bottom: 16px;
    }

    .intro-description:last-of-type {
        margin-bottom: 32px;
    }

    .book-now-btn {
        padding: 16px 32px;
        font-size: 1rem;
    }

    .stats-wrapper {
        gap: 16px;
    }

    .stat-card {
        padding: 20px;
        gap: 16px;
    }

    .stat-icon {
        width: 56px;
        height: 56px;
    }

    .stat-icon svg {
        width: 24px;
        height: 24px;
    }

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

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

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

    .section-subtitle {
        font-size: 0.9375rem;
    }

    .driver-image {
        height: 240px;
    }

    .driver-info {
        padding: 24px;
    }

    .driver-name {
        font-size: 1.25rem;
    }

    .driver-title {
        font-size: 0.9375rem;
    }

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

    .feature-icon svg {
        width: 28px;
        height: 28px;
    }

    .feature-card h3 {
        font-size: 1rem;
    }

    .feature-card p {
        font-size: 0.875rem;
    }

    .cta-title {
        font-size: 1.5rem;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        padding: 16px 32px;
        font-size: 0.9375rem;
    }
}

/* ==================== FOOTER TEXT VISIBILITY FIX ==================== */
.site-footer {
    background: #f5f7fa !important;
}

.site-footer .footer-heading {
    color: #2d3748 !important;
    font-weight: 600 !important;
}

.site-footer .footer-text,
.site-footer .footer-links a,
.site-footer .footer-contact a,
.site-footer .footer-contact span {
    color: #4a5568 !important;
}

.site-footer .footer-links a:hover,
.site-footer .footer-contact a:hover {
    color: #2d3748 !important;
}

.site-footer .footer-brand-name {
    color: #113A75 !important;
}

.site-footer .copyright {
    color: #718096 !important;
}

.site-footer .footer-legal a {
    color: #4a5568 !important;
}

.site-footer .footer-legal a:hover {
    color: #2d3748 !important;
}
