﻿/* =============================================
   RESET & BASE
   ============================================= */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Segoe UI', Roboto, system-ui, sans-serif;
    background: #faf8f5;
    color: #1e2a3a;
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}

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

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

/* =============================================
   BUTTONS
   ============================================= */
.btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: center;
}

.btn-primary {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

    .btn-primary:hover {
        background: #cf711d;
        transform: translateY(-3px);
        box-shadow: 0 12px 28px rgba(230, 126, 34, 0.45);
    }

.btn-outline {
    background: transparent;
    color: #fff;
    border: 2px solid #fff;
}

    .btn-outline:hover {
        background: #fff;
        color: #1e2a3a;
    }

.btn-whatsapp {
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
}

    .btn-whatsapp:hover {
        background: #1da851;
        transform: translateY(-3px);
    }

.btn-phone {
    background: #e67e22;
    color: #fff;
    box-shadow: 0 8px 20px rgba(230, 126, 34, 0.35);
}

    .btn-phone:hover {
        background: #cf711d;
        transform: translateY(-3px);
    }

/* =============================================
   HEADER (CLEAN VERSION)
   ============================================= */
header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(30, 42, 58, 0.95);
    backdrop-filter: blur(10px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

    header .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        flex-wrap: nowrap;
        gap: 16px;
    }

/* Logo */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 90px;
    width: auto;
    max-height: 150px;
    display: block;
}

/* Header Right (all elements) */
.header-right {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: nowrap;
}

/* Social Icons */
.header-social {
    display: flex;
    align-items: center;
    gap: 10px;
}

.social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    transition: 0.3s;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

    .social-icon:hover {
        color: #fff;
        background: rgba(230, 126, 34, 0.3);
        border-color: #e67e22;
        transform: translateY(-2px);
    }

    .social-icon svg {
        width: 18px;
        height: 18px;
    }

/* Phone number (button style) */
.header-phone {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    background: #e67e22;
    color: #fff;
    box-shadow: 0 4px 15px rgba(230, 126, 34, 0.3);
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

    .header-phone:hover {
        background: #cf711d;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(230, 126, 34, 0.4);
    }

    .header-phone .phone-icon {
        font-size: 1.2rem;
    }

/* Chat Now button */
.header-chat {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 22px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    background: #25d366;
    color: #fff;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    transition: 0.3s;
    text-decoration: none;
    white-space: nowrap;
}

    .header-chat:hover {
        background: #1da851;
        transform: translateY(-2px);
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
    }

/* =============================================
   HEADER RESPONSIVE
   ============================================= */

/* Tablets & small desktops */
@media (max-width: 1024px) {
    .header-phone .phone-number {
        display: none;
    }

    .header-phone .phone-icon {
        font-size: 1.3rem;
    }

    .header-right {
        gap: 12px;
    }

    .header-chat {
        padding: 6px 16px;
        font-size: 0.85rem;
    }
}

/* Mobile */
@media (max-width: 768px) {
    header .container {
        flex-wrap: wrap;
        gap: 10px;
        padding: 0 16px;
    }

    .logo-img {
        height: 48px;
    }

    .header-right {
        gap: 10px;
        flex-wrap: wrap;
        justify-content: flex-end;
    }

    .header-social {
        gap: 6px;
    }

    .social-icon {
        width: 30px;
        height: 30px;
    }

        .social-icon svg {
            width: 15px;
            height: 15px;
        }

    .header-phone {
        padding: 6px 14px;
        font-size: 0.8rem;
    }

        .header-phone .phone-number {
            display: none;
        }

        .header-phone .phone-icon {
            font-size: 1.2rem;
        }

    .header-chat {
        padding: 5px 14px;
        font-size: 0.8rem;
    }
}

/* Very small phones */
@media (max-width: 480px) {
    header .container {
        flex-wrap: wrap;
        gap: 6px;
    }

    .logo-img {
        height: 44px; /* Larger and clearer */
    }

    .header-right {
        gap: 6px;
    }

    .header-social {
        gap: 4px;
    }

    .social-icon {
        width: 28px;
        height: 28px;
    }

        .social-icon svg {
            width: 14px;
            height: 14px;
        }

    .header-phone {
        padding: 4px 12px;
        font-size: 0.75rem;
    }

        .header-phone .phone-icon {
            font-size: 1rem;
        }

    .header-chat {
        padding: 4px 10px;
        font-size: 0.7rem;
        gap: 4px;
    }
}

/* =============================================
   PAGE HERO (each page can override)
   ============================================= */
.page-hero {
    padding: 80px 0 60px;
    background: linear-gradient(135deg, #0f1a2b, #1e2a3a);
    color: #fff;
    text-align: center;
}

    .page-hero h1 {
        font-size: 2.8rem;
        font-weight: 800;
    }

        .page-hero h1 span {
            color: #e67e22;
        }

    .page-hero p {
        max-width: 640px;
        margin: 12px auto 0;
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.2rem;
    }

/* =============================================
   SECTION COMMON
   ============================================= */
section {
    padding: 70px 0;
}

.section-title {
    font-size: 2.4rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
}

    .section-title span {
        color: #e67e22;
    }

.section-sub {
    text-align: center;
    color: #1e2c3e;
    max-width: 640px;
    margin: 0 auto 48px;
    font-size: 1.1rem;
}

/* =============================================
   SERVICES, PACKAGES, DESTINATIONS (cards)
   ============================================= */
.grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    padding: 32px 24px;
    border-radius: 20px;
    text-align: center;
    transition: 0.3s;
    border: 1px solid #eee;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

    .card:hover {
        transform: translateY(-6px);
        border-color: #e67e22;
    }

    .card .icon {
        font-size: 2.8rem;
        margin-bottom: 14px;
    }

    .card h3 {
        font-size: 1.3rem;
        margin-bottom: 10px;
    }

    .card p {
        color: #5a6a7a;
        font-size: 0.95rem;
    }

/* =============================================
   DESTINATIONS (small pills)
   ============================================= */
.dest-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 18px;
}

.dest-item {
    background: #fff;
    padding: 16px 12px;
    border-radius: 14px;
    text-align: center;
    font-weight: 600;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .dest-item:hover {
        border-color: #e67e22;
        transform: scale(1.02);
    }

/* =============================================
   ABOUT / CONTACT (dark bg)
   ============================================= */
.dark-section {
    background: #1e2a3a;
    color: #fff;
}

    .dark-section .section-title span {
        color: #e67e22;
    }

    .dark-section .section-sub {
        color: rgba(255, 255, 255, 0.7);
    }

.contact-details {
    list-style: none;
    margin-top: 20px;
}

    .contact-details li {
        margin-bottom: 14px;
        display: flex;
        align-items: center;
        gap: 16px;
        color: rgba(255, 255, 255, 0.85);
    }

        .contact-details li strong {
            color: #fff;
            min-width: 70px;
        }

    .contact-details a {
        color: #e67e22;
    }

/* =============================================
   FOOTER
   ============================================= */
footer {
    background: #0f1a2b;
    padding: 30px 0;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

    footer a {
        color: #e67e22;
    }

/* =============================================
   RESPONSIVE - GLOBAL
   ============================================= */
@media (max-width: 768px) {
    .page-hero h1 {
        font-size: 2rem;
    }

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

    section {
        padding: 50px 0;
    }

    .contact-details li {
        flex-wrap: wrap;
    }
}

@media (max-width: 480px) {
    .btn {
        padding: 12px 24px;
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 60px 0 40px;
    }
}

/* =============================================
   SECTION 1: TRUST BADGES & STATS
   ============================================= */
.trust-badges {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px 50px;
    padding: 20px 0 10px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #5a6a7a;
    font-weight: 500;
}

    .trust-badge .icon {
        font-size: 1.8rem;
    }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 20px;
    text-align: center;
    margin-top: 20px;
}

.stat-item {
    background: #fff;
    padding: 30px 16px;
    border-radius: 20px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0eeeb;
}

.stat-number {
    font-size: 2.8rem;
    font-weight: 800;
    color: #e67e22;
    line-height: 1.2;
}

.stat-label {
    color: #5a6a7a;
    font-weight: 500;
    margin-top: 6px;
}

/* =============================================
   SECTION 2: INSTANT QUOTE FORM
   ============================================= */
.quote-form {
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    padding: 40px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

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

    .quote-form .form-group {
        margin-bottom: 18px;
    }

    .quote-form label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: #1e2a3a;
    }

    .quote-form input,
    .quote-form select,
    .quote-form textarea {
        width: 100%;
        padding: 12px 16px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-size: 1rem;
        transition: 0.3s;
        background: #fafafa;
    }

        .quote-form input:focus,
        .quote-form select:focus,
        .quote-form textarea:focus {
            outline: none;
            border-color: #e67e22;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.15);
        }

    .quote-form textarea {
        resize: vertical;
        min-height: 80px;
    }

    .quote-form .btn {
        width: 100%;
    }

/* =============================================
   SECTION 3: BLOG / CONTENT
   ============================================= */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s;
}

    .blog-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 12px 30px rgba(0, 0, 0, 0.07);
    }

    .blog-card .blog-img {
        height: 200px;
        background: #d1d5db;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #6b7280;
        font-size: 3rem;
    }

    .blog-card .blog-content {
        padding: 22px 24px 28px;
    }

    .blog-card .blog-tag {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        font-size: 0.7rem;
        font-weight: 700;
        padding: 4px 12px;
        border-radius: 50px;
        text-transform: uppercase;
        margin-bottom: 10px;
    }

    .blog-card h3 {
        font-size: 1.2rem;
        margin-bottom: 8px;
    }

    .blog-card p {
        color: #5a6a7a;
        font-size: 0.95rem;
    }

    .blog-card a {
        color: #e67e22;
        font-weight: 600;
    }

/* =============================================
   SECTION 4: VISUAL / GALLERY & VIDEO
   ============================================= */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
}

.gallery-item {
    aspect-ratio: 1 / 1;
    background: #d1d5db;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #6b7280;
    transition: 0.3s;
    cursor: pointer;
    overflow: hidden;
}

    .gallery-item:hover {
        transform: scale(1.03);
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    }

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

/* =============================================
   SECTION 5: SPECIAL OFFERS
   ============================================= */
.offer-banner {
    background: linear-gradient(135deg, #e67e22, #d35400);
    color: #fff;
    padding: 40px 30px;
    border-radius: 24px;
    text-align: center;
    margin: 20px 0;
    box-shadow: 0 10px 30px rgba(230, 126, 34, 0.3);
}

    .offer-banner h3 {
        font-size: 2rem;
        font-weight: 800;
        margin-bottom: 6px;
    }

    .offer-banner p {
        font-size: 1.1rem;
        opacity: 0.95;
        margin-bottom: 16px;
    }

    .offer-banner .btn {
        background: #fff;
        color: #d35400;
        box-shadow: none;
    }

        .offer-banner .btn:hover {
            background: #f0f0f0;
            transform: scale(1.02);
        }

/* =============================================
   SECTION 6: UPGRADED FOOTER
   ============================================= */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    text-align: left;
    padding: 20px 0 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    margin-bottom: 20px;
}

    .footer-grid h4 {
        color: #fff;
        font-size: 1.1rem;
        margin-bottom: 16px;
    }

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

        .footer-grid ul li {
            margin-bottom: 10px;
        }

            .footer-grid ul li a {
                color: rgba(255, 255, 255, 0.7);
                transition: 0.3s;
            }

                .footer-grid ul li a:hover {
                    color: #e67e22;
                }

    .footer-grid .social-links {
        display: flex;
        gap: 12px;
        margin-top: 12px;
    }

        .footer-grid .social-links a {
            background: rgba(255, 255, 255, 0.1);
            width: 40px;
            height: 40px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
            color: #fff;
            transition: 0.3s;
        }

            .footer-grid .social-links a:hover {
                background: #e67e22;
            }

.newsletter-form {
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

    .newsletter-form input {
        flex: 1;
        padding: 12px 16px;
        border-radius: 50px;
        border: none;
        outline: none;
        font-size: 0.95rem;
    }

    .newsletter-form .btn {
        padding: 12px 24px;
        background: #e67e22;
        color: #fff;
        border: none;
        border-radius: 50px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.3s;
    }

        .newsletter-form .btn:hover {
            background: #cf711d;
        }

/* =============================================
   FLEET / VEHICLE SHOWCASE
   ============================================= */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 30px;
}

.fleet-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.04);
}

    .fleet-card:hover {
        transform: translateY(-8px);
        border-color: #e67e22;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

    .fleet-card .fleet-image {
        height: 200px;
        padding: 10px;
        background: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 4rem;
        color: #6b7280;
        border-bottom: 1px solid #eee;
    }

        .fleet-card .fleet-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

    .fleet-card .fleet-body {
        padding: 24px 24px 28px;
    }

        .fleet-card .fleet-body h3 {
            font-size: 1.4rem;
            font-weight: 700;
            margin-bottom: 4px;
            color: #1e2a3a;
        }

        .fleet-card .fleet-body .fleet-subtitle {
            color: #e67e22;
            font-weight: 600;
            font-size: 0.9rem;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
        }

        .fleet-card .fleet-body .fleet-details {
            list-style: none;
            margin: 12px 0 18px;
        }

            .fleet-card .fleet-body .fleet-details li {
                display: flex;
                align-items: center;
                gap: 10px;
                padding: 4px 0;
                color: #5a6a7a;
                font-size: 0.95rem;
            }

                .fleet-card .fleet-body .fleet-details li .icon {
                    font-size: 1.2rem;
                    width: 24px;
                    text-align: center;
                }

        .fleet-card .fleet-body .btn {
            text-align: center;
            padding: 10px;
            font-size: 0.85rem;
        }

    .fleet-card .price-badge {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        font-weight: 700;
        padding: 4px 16px;
        border-radius: 50px;
        font-size: 0.85rem;
        margin-top: 6px;
    }

/* =============================================
   FLEET PAGE – EXTRA STYLES
   ============================================= */
.fleet-specs {
    list-style: none;
    margin: 12px 0 18px;
}

    .fleet-specs li {
        display: flex;
        align-items: center;
        gap: 10px;
        padding: 5px 0;
        color: #2a3a4a;
        font-size: 0.95rem;
        border-bottom: 1px solid #f3f1ee;
    }

        .fleet-specs li:last-child {
            border-bottom: none;
        }

        .fleet-specs li .spec-icon {
            font-size: 1.2rem;
            width: 28px;
            text-align: center;
        }

        .fleet-specs li .spec-label {
            font-weight: 500;
            color: #1e2a3a;
            min-width: 90px;
        }

        .fleet-specs li .spec-value {
            color: #5a6a7a;
        }

.fleet-comparison {
    overflow-x: auto;
    margin: 30px 0 10px;
}

    .fleet-comparison table {
        width: 100%;
        border-collapse: collapse;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    }

    .fleet-comparison th {
        background: #1e2a3a;
        color: #fff;
        font-weight: 600;
        padding: 16px 20px;
        text-align: left;
    }

    .fleet-comparison td {
        padding: 14px 20px;
        border-bottom: 1px solid #f0eeeb;
        color: #2a3a4a;
    }

    .fleet-comparison tr:last-child td {
        border-bottom: none;
    }

    .fleet-comparison tr:hover td {
        background: #faf8f5;
    }

    .fleet-comparison .highlight {
        color: #e67e22;
        font-weight: 600;
    }

.fleet-cta-banner {
    background: linear-gradient(135deg, #0f1a2b, #1e2a3a);
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    color: #fff;
    margin-top: 20px;
}

    .fleet-cta-banner h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .fleet-cta-banner p {
        color: rgba(255, 255, 255, 0.8);
        font-size: 1.1rem;
        max-width: 600px;
        margin: 0 auto 24px;
    }

/* =============================================
   VEHICLE BOOKING ENQUIRY FORM
   ============================================= */
.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: #fff;
    padding: 45px 50px;
    border-radius: 24px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid #eee;
}

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

    .booking-form-wrapper .form-group {
        margin-bottom: 18px;
    }

    .booking-form-wrapper label {
        display: block;
        font-weight: 600;
        margin-bottom: 6px;
        font-size: 0.9rem;
        color: #1e2a3a;
    }

        .booking-form-wrapper label .required {
            color: #e74c3c;
            margin-left: 2px;
        }

    .booking-form-wrapper input,
    .booking-form-wrapper select,
    .booking-form-wrapper textarea {
        width: 100%;
        padding: 13px 16px;
        border-radius: 12px;
        border: 1.5px solid #e5e7eb;
        font-size: 1rem;
        transition: 0.3s;
        background: #fafafa;
        font-family: inherit;
    }

        .booking-form-wrapper input:focus,
        .booking-form-wrapper select:focus,
        .booking-form-wrapper textarea:focus {
            outline: none;
            border-color: #e67e22;
            background: #fff;
            box-shadow: 0 0 0 3px rgba(230, 126, 34, 0.12);
        }

    .booking-form-wrapper textarea {
        resize: vertical;
        min-height: 90px;
    }

    .booking-form-wrapper .btn-submit {
        width: 100%;
        padding: 16px;
        font-size: 1.1rem;
        font-weight: 700;
        border: none;
        border-radius: 50px;
        background: #25d366;
        color: #fff;
        cursor: pointer;
        transition: 0.3s;
        box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35);
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
    }

        .booking-form-wrapper .btn-submit:hover {
            background: #1da851;
            transform: translateY(-3px);
            box-shadow: 0 12px 30px rgba(37, 211, 102, 0.45);
        }

        .booking-form-wrapper .btn-submit:disabled {
            opacity: 0.6;
            cursor: not-allowed;
            transform: none;
        }

    .booking-form-wrapper .form-note {
        text-align: center;
        font-size: 0.85rem;
        color: #5a6a7a;
        margin-top: 16px;
    }

        .booking-form-wrapper .form-note a {
            color: #e67e22;
            font-weight: 600;
        }

.booking-success {
    display: none;
    text-align: center;
    padding: 40px 30px;
    background: #f0fdf4;
    border-radius: 16px;
    border: 2px solid #86efac;
}

    .booking-success .icon {
        font-size: 3.5rem;
        margin-bottom: 12px;
    }

    .booking-success h3 {
        color: #166534;
        font-size: 1.6rem;
    }

    .booking-success p {
        color: #14532d;
        margin-top: 6px;
    }

/* =============================================
   HERO SLIDER
   ============================================= */
.hero-slider {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 940px;
    overflow: hidden;
    background: #1e2a3a;
    padding-top: 0 !important;
}

.slider-wrapper {
    display: flex;
    width: 100%;
    height: 100%;
    transition: transform 0.7s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.slide {
    flex: 0 0 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

    .slide::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 26, 43, 0.55);
        z-index: 1;
    }

.slide-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 20px 30px;
    text-align: center;
    color: #fff;
}

    .slide-content h1 {
        font-size: 3.2rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 16px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

        .slide-content h1 span {
            color: #e67e22;
        }

    .slide-content p {
        font-size: 1.25rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 28px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .slide-content .btn-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(8px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.8rem;
    cursor: pointer;
    transition: 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    user-select: none;
}

    .slider-btn:hover {
        background: #e67e22;
        border-color: #e67e22;
        transform: translateY(-50%) scale(1.05);
    }

    .slider-btn.prev {
        left: 20px;
    }

    .slider-btn.next {
        right: 20px;
    }

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

    .slider-dots .dot {
        width: 14px;
        height: 14px;
        border-radius: 50%;
        background: rgba(255, 255, 255, 0.4);
        cursor: pointer;
        transition: 0.3s;
        border: 2px solid transparent;
    }

        .slider-dots .dot.active {
            background: #e67e22;
            border-color: #fff;
            transform: scale(1.2);
        }

        .slider-dots .dot:hover {
            background: rgba(255, 255, 255, 0.8);
        }

/* =============================================
   TOUR PACKAGES SHOWCASE
   ============================================= */
.packages-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
    gap: 30px;
}

.package-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid #eee;
    transition: 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
}

    .package-card:hover {
        transform: translateY(-8px);
        border-color: #e67e22;
        box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
    }

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

    .package-image .badge {
        position: absolute;
        top: 16px;
        right: 16px;
        background: #e67e22;
        color: #fff;
        font-size: 0.75rem;
        font-weight: 700;
        padding: 4px 14px;
        border-radius: 50px;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }

.package-content {
    padding: 22px 24px 28px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

    .package-content h3 {
        font-size: 1.3rem;
        font-weight: 700;
        margin-bottom: 6px;
        color: #1e2a3a;
    }

    .package-content .package-dest {
        color: #e67e22;
        font-weight: 600;
        font-size: 0.9rem;
        margin-bottom: 10px;
        display: flex;
        align-items: center;
        gap: 6px;
    }

    .package-content .package-desc {
        color: #5a6a7a;
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 18px;
        flex: 1;
    }

.package-actions {
    display: flex;
    gap: 12px;
    margin-top: 4px;
}

    .package-actions .btn {
        flex: 1;
        text-align: center;
        padding: 12px 10px;
        font-size: 0.9rem;
        font-weight: 600;
        border-radius: 50px;
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        transition: 0.3s;
    }

    .package-actions .btn-chat {
        background: #25d366;
        color: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    }

        .package-actions .btn-chat:hover {
            background: #1da851;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(37, 211, 102, 0.4);
        }

    .package-actions .btn-call {
        background: #1e2a3a;
        color: #fff;
        border: none;
        box-shadow: 0 4px 15px rgba(30, 42, 58, 0.2);
    }

        .package-actions .btn-call:hover {
            background: #0f1a2b;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(30, 42, 58, 0.3);
        }

/* =============================================
   PROMOTION / ADVERTISEMENT BANNER
   ============================================= */
.promo-banner {
    position: relative;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding: 90px 20px;
    text-align: center;
    overflow: hidden;
    min-height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

    .promo-banner::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(15, 26, 43, 0.7);
        z-index: 1;
    }

    .promo-banner.gradient-overlay::before {
        background: linear-gradient(135deg, rgba(15, 26, 43, 0.85), rgba(230, 126, 34, 0.6));
    }

.promo-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
    color: #fff;
}

    .promo-content .promo-tag {
        display: inline-block;
        background: #e67e22;
        color: #fff;
        font-weight: 700;
        font-size: 0.8rem;
        text-transform: uppercase;
        letter-spacing: 1.5px;
        padding: 6px 20px;
        border-radius: 50px;
        margin-bottom: 16px;
    }

    .promo-content h2 {
        font-size: 2.8rem;
        font-weight: 800;
        line-height: 1.2;
        margin-bottom: 12px;
        text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
    }

        .promo-content h2 span {
            color: #e67e22;
        }

    .promo-content p {
        font-size: 1.2rem;
        color: rgba(255, 255, 255, 0.9);
        max-width: 600px;
        margin: 0 auto 28px;
        text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
    }

    .promo-content .btn-group {
        display: flex;
        gap: 16px;
        justify-content: center;
        flex-wrap: wrap;
    }

    .promo-content .btn-promo {
        padding: 16px 48px;
        font-size: 1.1rem;
        font-weight: 700;
        border-radius: 50px;
        border: none;
        cursor: pointer;
        transition: 0.3s;
        display: inline-block;
        text-decoration: none;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    }

    .promo-content .btn-promo-primary {
        background: #e67e22;
        color: #fff;
    }

        .promo-content .btn-promo-primary:hover {
            background: #cf711d;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(230, 126, 34, 0.5);
        }

    .promo-content .btn-promo-outline {
        background: transparent;
        color: #fff;
        border: 2px solid #fff;
    }

        .promo-content .btn-promo-outline:hover {
            background: #fff;
            color: #1e2a3a;
            transform: translateY(-3px);
        }

    .promo-content .btn-promo-whatsapp {
        background: #25d366;
        color: #fff;
    }

        .promo-content .btn-promo-whatsapp:hover {
            background: #1da851;
            transform: translateY(-3px);
            box-shadow: 0 12px 35px rgba(37, 211, 102, 0.5);
        }

    .promo-content .promo-icon {
        font-size: 3.5rem;
        margin-bottom: 10px;
        display: block;
    }

/* =============================================
   FLOATING ACTION BUTTONS (WhatsApp + Call)
   ============================================= */
.floating-buttons {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.floating-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.25);
    position: relative;
    font-size: 2rem;
    color: #fff;
    border: none;
    cursor: pointer;
}

    .floating-btn .tooltip {
        position: absolute;
        right: 74px;
        background: rgba(30, 42, 58, 0.92);
        backdrop-filter: blur(8px);
        color: #fff;
        padding: 6px 16px;
        border-radius: 8px;
        font-size: 0.85rem;
        font-weight: 600;
        white-space: nowrap;
        opacity: 0;
        pointer-events: none;
        transition: 0.3s;
        box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    }

        .floating-btn .tooltip::after {
            content: '';
            position: absolute;
            right: -8px;
            top: 50%;
            transform: translateY(-50%);
            border-left: 8px solid rgba(30, 42, 58, 0.92);
            border-top: 6px solid transparent;
            border-bottom: 6px solid transparent;
        }

    .floating-btn:hover .tooltip {
        opacity: 1;
        right: 80px;
    }

.floating-btn-whatsapp {
    background: #25d366;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.4);
}

    .floating-btn-whatsapp:hover {
        transform: scale(1.1) translateY(-4px);
        box-shadow: 0 10px 35px rgba(37, 211, 102, 0.5);
    }

    .floating-btn-whatsapp::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        border: 2px solid #25d366;
        animation: pulse-whatsapp 2s infinite;
    }

.floating-btn-call {
    background: #1e2a3a;
    box-shadow: 0 6px 25px rgba(30, 42, 58, 0.4);
}

    .floating-btn-call:hover {
        transform: scale(1.1) translateY(-4px);
        box-shadow: 0 10px 35px rgba(30, 42, 58, 0.5);
    }

    .floating-btn-call::before {
        content: '';
        position: absolute;
        top: -4px;
        left: -4px;
        right: -4px;
        bottom: -4px;
        border-radius: 50%;
        border: 2px solid #e67e22;
        animation: pulse-call 2.5s infinite;
    }

@keyframes pulse-whatsapp {
    0% {
        transform: scale(1);
        opacity: 0.6;
    }

    70% {
        transform: scale(1.15);
        opacity: 0;
    }

    100% {
        transform: scale(1.15);
        opacity: 0;
    }
}

@keyframes pulse-call {
    0% {
        transform: scale(1);
        opacity: 0.5;
    }

    70% {
        transform: scale(1.2);
        opacity: 0;
    }

    100% {
        transform: scale(1.2);
        opacity: 0;
    }
}

/* =============================================
   RESPONSIVE - NEW SECTIONS
   ============================================= */
@media (max-width: 768px) {
    .quote-form {
        padding: 25px 20px;
    }

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

    .offer-banner h3 {
        font-size: 1.6rem;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        text-align: center;
    }

        .footer-grid .social-links {
            justify-content: center;
        }

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

    .fleet-comparison th,
    .fleet-comparison td {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .fleet-cta-banner {
        padding: 30px 20px;
    }

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

    .fleet-specs li .spec-label {
        min-width: 70px;
    }

    .hero-slider {
        height: 90vh;
        min-height: 450px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1.4rem;
    }

        .slider-btn.prev {
            left: 10px;
        }

        .slider-btn.next {
            right: 10px;
        }

    .slider-dots .dot {
        width: 12px;
        height: 12px;
    }

    .promo-banner {
        padding: 60px 20px;
        min-height: 300px;
    }

    .promo-content h2 {
        font-size: 2rem;
    }

    .promo-content p {
        font-size: 1rem;
    }

    .promo-content .btn-promo {
        padding: 14px 30px;
        font-size: 0.95rem;
    }

    .booking-form-wrapper {
        padding: 25px 20px;
    }

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

    .floating-buttons {
        bottom: 20px;
        right: 20px;
        gap: 12px;
    }

    .floating-btn {
        width: 54px;
        height: 54px;
        font-size: 1.6rem;
    }

        .floating-btn .tooltip {
            display: none;
        }
}

@media (max-width: 640px) {
    .package-actions {
        flex-direction: column;
    }

        .package-actions .btn {
            padding: 14px;
        }
}

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

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

    .slide-content h1 {
        font-size: 1.6rem;
    }

    .slide-content .btn-group .btn {
        padding: 10px 20px;
        font-size: 0.85rem;
    }

    .promo-banner {
        padding: 40px 16px;
        min-height: 250px;
    }

    .promo-content h2 {
        font-size: 1.6rem;
    }

    .promo-content .btn-group {
        flex-direction: column;
        align-items: center;
    }

    .promo-content .btn-promo {
        width: 100%;
        max-width: 280px;
    }

    .floating-buttons {
        bottom: 16px;
        right: 16px;
        gap: 10px;
    }

    .floating-btn {
        width: 48px;
        height: 48px;
        font-size: 1.4rem;
    }
}

/* =============================================
   PACKAGES PAGE – RESPONSIVE FIXES
   ============================================= */

.booking-faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

/* Responsive: Stack on tablets and phones */
@media (max-width: 992px) {
    .booking-faq-grid {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
    }

        .booking-faq-grid > div {
            width: 100% !important;
        }
}

/* Mobile: Form fields stack, padding reduced */
@media (max-width: 768px) {
    /* Form fields - stack vertically */
    .booking-faq-grid form > div[style*="grid-template-columns"] {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
    }

    .booking-faq-grid form > div > div {
        margin-bottom: 10px !important;
        width: 100% !important;
    }

    /* Reduce padding on cards */
    .booking-faq-grid > div {
        padding: 20px 16px !important;
    }

    /* FAQ details compact */
    .booking-faq-grid details {
        padding: 10px 14px !important;
    }

        .booking-faq-grid details summary {
            font-size: 0.85rem !important;
        }

    /* Section titles */
    .section-title {
        font-size: 1.6rem !important;
    }

    .section-sub {
        font-size: 0.95rem !important;
        padding: 0 10px;
    }

    /* Package cards - stack vertically */
    .packages-showcase {
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .package-card {
        max-width: 100% !important;
    }

    .package-image {
        height: 180px !important;
    }

    .package-content {
        padding: 16px 18px 20px !important;
    }

        .package-content h3 {
            font-size: 1.1rem !important;
        }

    .package-desc {
        font-size: 0.85rem !important;
    }

    .package-actions {
        flex-direction: column !important;
        gap: 10px !important;
    }

        .package-actions .btn {
            padding: 12px !important;
            font-size: 0.85rem !important;
            width: 100% !important;
            text-align: center !important;
        }

    /* Hero section */
    .page-hero h1 {
        font-size: 2rem !important;
    }

    .page-hero p {
        font-size: 1rem !important;
        padding: 0 10px;
    }

    /* Standalone FAQ (if kept) */
    .faq-container details {
        padding: 14px 16px !important;
    }

        .faq-container details summary {
            font-size: 0.9rem !important;
        }
}

/* Very small phones */
@media (max-width: 480px) {
    .booking-faq-grid > div {
        padding: 14px 12px !important;
    }

    .booking-faq-grid h3 {
        font-size: 1rem !important;
    }

    .booking-faq-grid input,
    .booking-faq-grid select,
    .booking-faq-grid textarea {
        font-size: 0.85rem !important;
        padding: 10px 12px !important;
    }

    .booking-faq-grid label {
        font-size: 0.8rem !important;
    }

    .booking-faq-grid .btn {
        font-size: 0.85rem !important;
        padding: 12px !important;
    }

    .package-image {
        height: 150px !important;
    }

    .package-duration {
        font-size: 0.7rem !important;
        padding: 2px 10px !important;
    }

    .package-dest {
        font-size: 0.8rem !important;
    }

    .package-details-link {
        font-size: 0.8rem !important;
    }

    .page-hero h1 {
        font-size: 1.6rem !important;
    }

    .page-hero p {
        font-size: 0.9rem !important;
    }

    .section-title {
        font-size: 1.4rem !important;
    }

    .section-sub {
        font-size: 0.9rem !important;
    }
}