/* ===== CSS Variables ===== */
:root {
    --primary-color: #0d47a1;
    --primary-dark: #002171;
    --secondary-color: #e53935;
    --text-dark: #1f2937;
    --text-light: #6b7280;
    --bg-light: #f3f4f6;
    --white: #ffffff;
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
}

/* ===== Global Mobile Safety ===== */
*, *::before, *::after {
    box-sizing: border-box;
}

html, body {
    overflow-x: hidden;
    max-width: 100%;
}

img, video, iframe {
    max-width: 100%;
    height: auto;
}

table {
    width: 100%;
    border-collapse: collapse;
}

/* Scrollable tables on mobile */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 8px;
}


/* --- Contact Form Styles --- */
.contact-form-wrapper {
    width: 100%;
    max-width: 650px;
    padding: 3rem;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
    text-align: center;
    margin: 0 auto;
}

.form-icon {
    width: 60px;
    height: 60px;
    background: rgba(13, 71, 161, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
}

.form-title {
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    font-weight: 700;
}

.form-subtitle {
    color: var(--text-light);
    margin-bottom: 2.5rem;
    display: block;
    width: 100%;
    font-size: 0.95rem;
}

.form-group-grid {
    display: grid; 
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); 
    gap: 1.25rem;
    margin-bottom: 1.25rem;
}

.form-group {
    margin-bottom: 1.25rem;
}

.form-control {
    border: 2px solid #eef2fa;
    background: #fafbfc;
    border-radius: 12px;
    padding: 15px;
    font-size: 1rem;
    width: 100%;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    background: #fff;
    box-shadow: 0 4px 12px rgba(13, 71, 161, 0.1);
    transform: translateY(-1px);
}

.btn-contact {
    padding: 16px;
    border-radius: 12px;
    font-size: 1.1rem;
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 0.5rem;
    text-transform: uppercase;
    font-weight: 600;
    letter-spacing: 0.5px;
    border: none;
}

@media (max-width: 640px) {
    .contact-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .form-title {
        font-size: 1.5rem;
    }
    
    .form-subtitle {
        font-size: 0.85rem;
    }
}

/* ===== Reset & Base ===== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--text-dark);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ===== Navigation ===== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: var(--white);
    box-shadow: var(--shadow);
    z-index: 1000;
    padding: 1rem 0;
}

.nav-wrapper {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
}

.logo i {
    font-size: 2rem;
}

.logo-img {
    height: 35px;
    width: auto;
    object-fit: contain;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    list-style: none;
}

.nav-menu a {
    font-weight: 500;
    color: var(--text-dark);
    transition: var(--transition);
    position: relative;
}

.nav-menu a:hover {
    color: var(--primary-color);
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary-color);
    transition: var(--transition);
}

.nav-menu a:hover::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
}

.menu-close {
    display: none;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: var(--transition);
}

/* ===== Hero Section ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    background: var(--primary-color) url('image/gloria-banner-fix.webp') center/contain no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--white);
    margin-top: 70px;
}

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

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-description {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.6s both;
}

/* ===== Page Header ===== */
.page-header {
    background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
    padding: 120px 0 60px;
    text-align: center;
    color: var(--white);
}

.page-header h1 {
    font-size: 3rem;
    margin-bottom: 0.5rem;
    line-height: 1.2;
    animation: fadeInUp 1s ease;
}

.page-header p {
    font-size: 1.1rem;
    opacity: 0.9;
    max-width: 700px;
    margin: 0 auto;
    animation: fadeInUp 1s ease 0.2s both;
}

/* ===== Buttons ===== */
.btn {
    display: inline-block;
    padding: 10px 24px;
    border-radius: 8px;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    border: none;
    font-size: 0.95rem;
}

.btn-primary {
    background: var(--primary-color);
    color: var(--white);
    box-shadow: 0 4px 6px -1px rgba(13, 71, 161, 0.2);
}

.btn-primary:hover {
    background: #1565c0;
    transform: translateY(-2px);
    box-shadow: 0 10px 15px -3px rgba(13, 71, 161, 0.3);
}

.btn-full {
    display: block;
    width: 100%;
    margin-top: 1.25rem;
    padding: 12px 20px;
    text-align: center;
}

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

.btn-secondary:hover {
    background: var(--bg-light);
    transform: translateY(-3px);
}

.btn-book {
    background: #25D366;
    color: var(--white);
    display: flex;
    width: fit-content;
    margin: 1.5rem auto 0;
    justify-content: center;
    align-items: center;
    gap: 10px;
    min-width: 160px;
}

.btn-book:hover {
    background: #128C7E;
    transform: translateY(-2px);
}

.btn-outline-close {
    background: var(--bg-light);
    color: var(--text-dark);
    border: 1px solid #e2e8f0;
    font-weight: 500;
}

.btn-outline-close:hover {
    background: #e2e8f0;
}

/* ===== Section Header ===== */
.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: var(--text-dark);
    margin-bottom: 1rem;
}

.divider {
    width: 80px;
    height: 4px;
    background: var(--primary-color);
    margin: 0 auto 1rem;
    border-radius: 2px;
}

/* ===== About Section ===== */
.about {
    padding: 5rem 0;
    background: var(--white);
}

.about-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 4rem;
    align-items: center;
}

.about-text p {
    margin-bottom: 1.2rem;
    color: var(--text-light);
    font-size: 1.05rem;
    line-height: 1.8;
}

.about-features {
    margin-top: 1.5rem;
}

.about-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 0.8rem;
    color: var(--text-dark);
    font-weight: 500;
}

.about-features i {
    color: var(--primary-color);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.stat-card {
    text-align: center;
    padding: 2rem;
    background: var(--bg-light);
    border-radius: 15px;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.stat-card i {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-card h3 {
    font-size: 2rem;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}

.stat-card p {
    color: var(--text-light);
    font-weight: 500;
}

/* ===== Services Section ===== */
.services {
    padding: 5rem 0;
    background: var(--bg-light);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.service-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow);
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
}

.service-icon {
    width: 80px;
    height: 80px;
    background: #f0f4f8;
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    transition: var(--transition);
}

.service-icon i {
    font-size: 2.5rem;
    color: var(--primary-color);
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: var(--primary-color);
    transform: scale(1.1);
}

.service-card:hover .service-icon i {
    color: var(--white);
}

    .service-card h3 {
        font-size: 1.3rem;
        margin-bottom: 1rem;
        color: var(--text-dark);
    }

    .service-card p {
        color: var(--text-light);
        margin-bottom: 1.5rem;
    }

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

    .service-features li {
        display: flex;
        align-items: center;
        gap: 8px;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
        font-size: 0.9rem;
    }

    .service-features i {
        color: var(--secondary-color);
    }

    /* ===== Fleet Section ===== */
    .fleet {
        padding: 5rem 0;
        background: var(--white);
    }

    .fleet>.container>.section-header p {
        color: var(--text-light);
        max-width: 600px;
        margin: 0 auto;
    }

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

    .fleet-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: none;
        border: 1px solid #e5e7eb;
    }



    .fleet-image,
    .tour-image,
    .hotel-image {
        height: 160px;
        background: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-bottom: 1px solid #f3f4f6;
    }

    .fleet-image img,
    .tour-image img,
    .hotel-image img {
        width: 100%;
        height: 100%;
        object-fit: contain;
        transition: transform 0.4s ease;
    }



    .fleet-info {
        padding: 1.25rem;
    }

    .fleet-info h3 {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
        color: var(--text-dark);
        font-weight: 600;
    }

    .fleet-type {
        font-size: 0.85rem;
        color: #94a3b8;
        margin-bottom: 1rem;
        display: block;
    }

    .fleet-price {
        margin-bottom: 0.5rem;
        font-size: 0.9rem;
        color: #64748b;
        display: flex;
        justify-content: space-between;
        align-items: center;
        border-top: 1px dashed #e2e8f0;
        padding-top: 0.5rem;
    }

    .price-value {
        color: var(--primary-color);
        font-weight: 700;
        font-size: 1.15rem;
    }

    .tour-features, .fleet-features {
        margin: 1rem 0;
        font-size: 0.85rem;
        line-height: 1.6;
        color: var(--text-dark);
    }

    .tour-features p, .fleet-features p {
        margin-bottom: 0.75rem;
    }

    .tour-features p:last-child, .fleet-features p:last-child {
        margin-bottom: 0;
    }

    .fleet-card {
        background: var(--white);
        border-radius: 15px;
        overflow: hidden;
        box-shadow: var(--shadow);
        transition: var(--transition);
        border: 1px solid #e5e7eb;
        cursor: pointer;
    }

    .category-title {
        font-size: 1.8rem;
        color: var(--primary-color);
        margin: 3rem 0 1.5rem;
        padding-bottom: 0.5rem;
        border-bottom: 2px solid #e5e7eb;
    }

    /* ===== Modal Styles ===== */
    .modal {
        display: none;
        position: fixed;
        z-index: 2000;
        left: 0;
        top: 0;
        width: 100%;
        height: 100%;
        background-color: rgba(0, 0, 0, 0.6);
        backdrop-filter: blur(5px);
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    .modal.show {
        display: flex;
        align-items: center;
        justify-content: center;
        opacity: 1;
        background-color: rgba(0, 0, 0, 0.7);
    }

    .modal-content {
        background-color: var(--white);
        padding: 0; /* Remove padding for header image */
        border-radius: 24px;
        width: 90%;
        max-width: 480px;
        position: relative;
        transform: translateY(-30px);
        transition: transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
        box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
        overflow: hidden;
    }

    .modal.show .modal-content {
        transform: translateY(0);
    }

    .close-modal {
        position: absolute;
        right: 20px;
        top: 15px;
        color: var(--text-dark);
        background: rgba(255, 255, 255, 0.8);
        width: 36px;
        height: 36px;
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        cursor: pointer;
        transition: var(--transition);
        z-index: 10;
        box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    }

    .close-modal:hover {
        background: var(--white);
        transform: scale(1.1);
        color: #ef4444;
    }

    .modal-image {
        height: 200px;
        background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 100%);
        border-bottom: 1px solid #e2e8f0;
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        overflow: hidden;
    }

    .modal-image img {
        max-width: 85%;
        max-height: 85%;
        object-fit: contain;
        z-index: 1;
        filter: drop-shadow(0 10px 15px rgba(0,0,0,0.1));
    }

    .modal-image i {
        font-size: 5rem;
        color: var(--primary-color);
        opacity: 0.15;
    }

    .modal-body {
        padding: 1.5rem 2rem 2rem;
    }

    #modalTitle {
        font-size: 1.75rem;
        font-weight: 800;
        color: var(--text-dark);
        margin-bottom: 0.25rem;
        letter-spacing: -0.5px;
    }

    #modalCategory {
        display: block;
        font-size: 0.9rem;
        color: var(--text-light);
        margin-bottom: 1.25rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
    }

    .modal-specs {
        margin: 0 0 1.5rem;
        background: #f8fafc;
        padding: 1.25rem;
        border-radius: 16px;
        border: 1px solid #f1f5f9;
    }

    .modal-specs p {
        margin-bottom: 0.75rem;
        display: flex;
        align-items: center;
        gap: 12px;
        font-size: 0.95rem;
        color: #475569;
    }

    .modal-specs p:last-child {
        margin-bottom: 0;
    }

    .modal-specs p i {
        color: var(--primary-color);
        width: 20px;
        text-align: center;
        font-size: 1rem;
    }

    .price-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 1rem;
        margin-top: 1.5rem;
    }

    .price-box {
        padding: 1rem;
        background: #fff;
        border: 1px solid #e2e8f0;
        border-radius: 12px;
        text-align: center;
    }

    .price-box.highlight {
        border-color: rgba(13, 71, 161, 0.2);
        background: rgba(13, 71, 161, 0.02);
    }

    .price-box span:first-child {
        display: block;
        font-size: 0.75rem;
        color: var(--text-light);
        margin-bottom: 4px;
        text-transform: uppercase;
        font-weight: 600;
    }

    .price-box .price-value {
        color: var(--primary-color);
        font-size: 1.1rem;
        font-weight: 700;
    }

    .fleet-type {
        color: var(--text-light);
        font-size: 0.9rem;
        margin-bottom: 1rem;
    }

    .fleet-features {
        display: flex;
        flex-wrap: wrap;
        gap: 0.8rem;
        margin-bottom: 1rem;
    }

    .fleet-features span {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        font-size: 0.85rem;
        color: var(--text-dark);
        background: var(--bg-light);
        padding: 5px 10px;
        border-radius: 20px;
    }

    .fleet-features i {
        color: var(--primary-color);
    }

    .fleet-price {
        background: var(--bg-light);
        padding: 1rem;
        border-radius: 10px;
        text-align: center;
        margin-bottom: 1rem;
    }

    .price-label {
        display: block;
        font-size: 0.85rem;
        color: var(--text-light);
        margin-bottom: 0.3rem;
    }

    .price-value {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--primary-color);
    }

    .price-value span {
        font-size: 0.9rem;
        font-weight: 400;
        color: var(--text-light);
    }

    .fleet-note {
        background: #fef3c7;
        border-left: 4px solid var(--secondary-color);
        padding: 1rem 1.5rem;
        border-radius: 5px;
        margin-top: 2rem;
    }

    .fleet-note p {
        color: #92400e;
        font-size: 0.9rem;
    }

    .fleet-note i {
        color: var(--secondary-color);
        margin-right: 8px;
    }

    /* ===== Why Choose Us ===== */
    .why-choose {
        padding: 5rem 0;
        background: linear-gradient(135deg, var(--primary-color) 0%, #1565c0 100%);
        color: var(--white);
    }

    .why-choose .section-header h2 {
        color: var(--white);
    }

    .why-choose .divider {
        background: var(--white);
    }

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

    .why-card {
        text-align: center;
        padding: 2rem;
        background: rgba(255, 255, 255, 0.1);
        border-radius: 15px;
        backdrop-filter: blur(10px);
        transition: var(--transition);
    }

    .why-card:hover {
        background: rgba(255, 255, 255, 0.2);
        transform: translateY(-5px);
    }

    .why-card i {
        font-size: 3rem;
        margin-bottom: 1rem;
        color: var(--secondary-color);
    }

    .why-card h3 {
        font-size: 1.3rem;
        margin-bottom: 0.8rem;
    }

    .why-card p {
        opacity: 0.9;
        font-size: 0.95rem;
    }

    /* ===== Contact Section ===== */
    .contact {
        padding: 5rem 0;
        background: var(--bg-light);
    }

    .contact-content {
        display: flex;
        justify-content: center;
    }

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

    .contact-item {
        display: flex;
        gap: 1.5rem;
        align-items: flex-start;
    }

    .contact-item i {
        font-size: 2rem;
        color: var(--primary-color);
        width: 50px;
        height: 50px;
        background: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        box-shadow: var(--shadow);
    }

    .contact-item h4 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
        color: var(--text-dark);
    }

    .contact-item p {
        color: var(--text-light);
    }

    .nav-menu li a {
        color: var(--text-dark);
        font-weight: 500;
        transition: var(--transition);
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .nav-menu li a i {
        font-size: 0.9rem;
        color: var(--primary-color);
        opacity: 0.8;
    }

    .contact-item a {
        color: var(--primary-color);
        font-weight: 500;
        transition: var(--transition);
    }

    .contact-item a:hover {
        color: var(--primary-dark);
    }

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

    .social-link {
        width: 50px;
        height: 50px;
        background: var(--primary-color);
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 1.5rem;
        transition: var(--transition);
        box-shadow: var(--shadow);
    }

    .social-link:hover {
        background: var(--primary-dark);
        transform: translateY(-3px);
    }

    .contact-form-wrapper {
        background: var(--white);
        padding: 2rem;
        border-radius: 15px;
        box-shadow: var(--shadow-lg);
    }

    .contact-form h3 {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
        color: var(--text-dark);
        text-align: center;
    }

    .form-group {
        margin-bottom: 1.2rem;
    }

    .form-group input,
    .form-group select,
    .form-group textarea {
        width: 100%;
        padding: 12px 15px;
        border: 2px solid #e5e7eb;
        border-radius: 10px;
        font-family: 'Poppins', sans-serif;
        font-size: 1rem;
        transition: var(--transition);
    }

    .form-group input:focus,
    .form-group select:focus,
    .form-group textarea:focus {
        outline: none;
        border-color: var(--primary-color);
    }

    .form-group textarea {
        resize: vertical;
    }

    /* ===== Footer ===== */
    .footer {
        background: var(--text-dark);
        color: var(--white);
        padding: 3rem 0 1rem;
    }

    .footer-content {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1.5fr 2fr;
        gap: 2rem;
        margin-bottom: 2rem;
    }

    .footer-section h3,
    .footer-section h4 {
        margin-bottom: 1rem;
        color: #ff5252;
    }

    .footer-section p {
        color: #9ca3af;
        line-height: 1.8;
    }

    .social-links {
        display: flex;
        gap: 15px;
        margin-top: 1.5rem;
    }

    .social-links a {
        width: 40px;
        height: 40px;
        background: rgba(255,255,255,0.05);
        display: flex;
        align-items: center;
        justify-content: center;
        border-radius: 50%;
        color: var(--white);
        font-size: 1.2rem;
        transition: var(--transition);
    }

    .social-links a:hover {
        background: #ff5252;
        color: var(--white);
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(255, 82, 82, 0.3);
    }

    .footer-section ul li {
        margin-bottom: 0.8rem;
        color: #9ca3af;
        display: flex;
        align-items: center;
        gap: 8px;
    }

    .footer-section ul li a {
        color: #9ca3af;
        transition: var(--transition);
    }

    .footer-section ul li a i {
        margin-right: 10px;
        color: #ff5252;
        font-size: 0.9rem;
        width: 18px;
        text-align: center;
    }

    .footer-section ul li a:hover {
        color: #ff5252;
    }

    .footer-section ul li i {
        color: var(--primary-color);
    }

    .footer-bottom {
        text-align: center;
        padding-top: 2rem;
        border-top: 1px solid #374151;
        color: #9ca3af;
    }

    .footer-bottom p {
        margin-bottom: 0.5rem;
    }

    .footer-bottom i {
        color: #ff5252;
    }

    /* ===== WhatsApp Float Button ===== */
    .whatsapp-float {
        position: fixed;
        bottom: 30px;
        right: 30px;
        width: 60px;
        height: 60px;
        background: #25D366;
        color: var(--white);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 2rem;
        box-shadow: var(--shadow-lg);
        transition: var(--transition);
        z-index: 999;
    }

    .whatsapp-float:hover {
        background: #128C7E;
        transform: scale(1.1);
    }

    /* ===== Animations ===== */
    @keyframes fadeInUp {
        from {
            opacity: 0;
            transform: translateY(30px);
        }

        to {
            opacity: 1;
            transform: translateY(0);
        }
    }

    /* ===== Responsive Design ===== */
    @media (max-width: 968px) {
        html {
            font-size: 15px;
        }

        .nav-menu {
            position: fixed;
            top: 0;
            left: -80%;
            width: 75%;
            height: 100vh;
            background: var(--primary-color);
            flex-direction: column;
            padding: 100px 0 2rem;
            gap: 0;
            box-shadow: 10px 0 25px rgba(0,0,0,0.15);
            transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
            z-index: 1000;
            overflow-y: auto;
        }

        .nav-menu.active {
            left: 0;
        }

        .navMenu-overlay {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100vh;
            background: rgba(0,0,0,0.5);
            opacity: 0;
            visibility: hidden;
            transition: 0.3s;
            z-index: 999;
        }

        .navMenu-overlay.active {
            opacity: 1;
            visibility: visible;
        }

        .nav-menu li {
            width: 100%;
        }

        .menu-close {
            display: flex;
            align-items: center;
            justify-content: center;
            position: absolute;
            top: 25px;
            right: 25px;
            font-size: 1.8rem;
            color: var(--white);
            cursor: pointer;
            z-index: 1002;
            transition: transform 0.3s ease;
        }

        .menu-close:hover {
            transform: scale(1.1);
        }

        .nav-menu li a {
            font-size: 1.15rem;
            padding: 1.25rem 2.5rem;
            display: flex;
            align-items: center;
            gap: 20px;
            justify-content: flex-start;
            color: var(--white);
            transition: all 0.3s ease;
            font-weight: 500;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }

        .nav-menu li a i {
            width: 25px;
            font-size: 1.3rem;
            color: var(--white);
            opacity: 0.95;
            text-align: center;
        }

        .nav-menu li a:hover {
            background: rgba(255, 255, 255, 0.08);
            padding-left: 2.75rem;
            color: var(--white);
        }

        .nav-menu li a.active {
            color: var(--white);
            background: rgba(255, 255, 255, 0.15);
            border-left: 6px solid var(--white);
            padding-left: 2.2rem;
        }

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

        .hamburger {
            display: flex;
            z-index: 1001;
        }

        .hamburger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 5px);
            background: var(--white);
        }

        .hamburger.active span:nth-child(2) {
            opacity: 0;
        }

        .hamburger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(7px, -6px);
            background: var(--white);
        }

        .hero h1,
        .page-header h1 {
            font-size: 2rem;
            line-height: 1.2;
        }

        .hero-subtitle,
        .page-header p {
            font-size: 1rem;
        }

        .about-content,
        .contact-content {
            grid-template-columns: 1fr;
            gap: 2.5rem;
        }

        .about-stats {
            grid-template-columns: repeat(3, 1fr);
            gap: 1rem;
        }
    }

    @media (max-width: 768px) {
        html {
            font-size: 15.5px;
        }

        section, .services, .fleet {
            padding: 3rem 0;
        }

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

        .stat-card {
            padding: 1.5rem;
        }

        .contact-info {
            padding: 2rem 1.5rem;
        }

        .contact-item h4 {
            font-size: 1.1rem;
        }

        .contact-item p {
            font-size: 0.95rem;
        }

        .footer-content {
            grid-template-columns: 1fr;
            gap: 2rem;
            text-align: left;
        }
        
        .footer-section h3 {
            text-align: left;
        }

        .footer-section ul {
            justify-content: flex-start;
            align-items: flex-start;
        }
        
        .footer-section ul li {
            justify-content: flex-start;
            text-align: left;
        }

        .footer-section h4::after {
            left: 0;
            transform: translateX(0);
        }

        .modal-content {
            width: 95%;
            margin: 0 auto;
            padding: 1.5rem;
        }

        .modal-image {
            height: 120px;
            margin-bottom: 1rem;
        }

        .modal-image i {
            font-size: 3.5rem;
        }

        .services-grid, .fleet-grid {
            gap: 1.5rem;
        }
        
        .fleet-card {
            padding: 0;
            border-radius: 12px;
        }
        
        .fleet-card h3 {
            font-size: 1.2rem;
        }
    }

    @media (max-width: 640px) {
        html {
            font-size: 14.5px;
        }

        .hero {
            background: url('image/gloria-banner-mobile.webp') center top/cover no-repeat;
        }

        .hero-overlay {
            opacity: 0.4;
        }

        .hero-content {
            background: rgba(0, 33, 113, 0.7);
            padding: 30px 20px 25px;
            border-radius: 24px;
            margin: 0 20px;
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 15px 35px rgba(0, 0, 0, 0.25);
        }

        .hero h1, 
        .hero-subtitle, 
        .hero-description {
            display: block;
        }

        .hero h1,
        .page-header h1 {
            font-size: 1.55rem;
            line-height: 1.25;
            margin-bottom: 0.75rem;
            font-weight: 700;
        }

        .hero-subtitle,
        .page-header p {
            font-size: 0.9rem;
            line-height: 1.5;
            padding: 0 15px;
            opacity: 0.85;
        }

        .page-header {
            padding: 110px 0 50px;
        }

        .section-header h2 {
            font-size: 1.6rem;
            margin-bottom: 0.5rem;
        }

        .section-header p {
            font-size: 0.95rem;
            line-height: 1.6;
            color: var(--text-light);
            padding: 0 10px;
        }

        .category-title {
            font-size: 1.25rem !important;
            margin-top: 3rem !important;
            text-align: center;
        }

        .category-description {
            font-size: 0.95rem;
            line-height: 1.6;
            text-align: center;
            margin-bottom: 2rem;
            max-width: 90%;
            margin-left: auto;
            margin-right: auto;
            color: var(--text-light);
        }

        .fleet-info h3 {
            font-size: 1.2rem;
        }

        .price-value {
            font-size: 1.2rem !important;
        }

        .fleet-features, .tour-features, .fleet-price {
            font-size: 0.85rem !important;
        }

        .category-title {
            font-size: 1.2rem;
            text-align: center;
        }

        .hero-buttons {
            flex-direction: row;
            justify-content: center;
            gap: 10px;
        }

        .btn {
            width: fit-content;
            min-width: 160px;
            margin-left: auto;
            margin-right: auto;
            display: flex;
            justify-content: center;
        }

        .btn-full {
            width: 100%;
            display: block;
            margin-top: 1rem;
        }

        .whatsapp-float {
            width: 45px;
            height: 45px;
            font-size: 1.5rem;
            bottom: 15px;
            right: 15px;
        }
    }

/* ===================== TOUR MODAL ===================== */
.tour-modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.65);
    z-index: 9999;
    align-items: flex-end;
    justify-content: center;
    backdrop-filter: blur(4px);
}

.tour-modal-overlay.active {
    display: flex;
}

.tour-modal-box {
    background: #fff;
    width: 100%;
    max-width: 520px;
    max-height: 90vh;
    border-radius: 20px 20px 0 0;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
}

@keyframes slideUp {
    from { transform: translateY(100%); opacity: 0; }
    to   { transform: translateY(0);   opacity: 1; }
}

.tour-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    background: rgba(0,0,0,0.45);
    border: none;
    color: #fff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 1rem;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
}

.tour-modal-img {
    width: 100%;
    display: block;
    object-fit: contain;
    background: #f0f4f8;
}

.tour-modal-body {
    padding: 1.25rem 1.5rem 2rem;
}

.tour-modal-body h2 {
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--dark);
    line-height: 1.4;
}

.tour-modal-body .info-row {
    display: flex;
    gap: 0.5rem;
    align-items: flex-start;
    margin-bottom: 0.6rem;
    font-size: 0.92rem;
    color: #444;
    line-height: 1.5;
}

.tour-modal-body .info-row i {
    color: var(--primary-color);
    margin-top: 2px;
    min-width: 16px;
}

/* ===================== MOBILE CLOSE PAGE ===================== */
.mobile-close-page {
    position: fixed;
    top: 90px;
    left: 20px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 8px 16px;
    border-radius: 30px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    color: var(--text-dark);
    font-size: 0.93rem;
    font-weight: 600;
    z-index: 999;
    border: 1px solid #eef2fa;
    text-decoration: none;
    letter-spacing: 0.3px;
}

.mobile-close-page i {
    color: var(--primary-color);
    font-size: 0.9rem;
}

@media (min-width: 769px) {
    .mobile-close-page {
        display: none;
    }
}
/* ===================== GALLERY MASONRY ===================== */
.gallery-grid {
    column-count: 3;
    column-gap: 1.5rem;
    padding: 2rem 0;
}

@media (max-width: 968px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-item {
    break-inside: avoid;
    display: inline-block;
    width: 100%;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    cursor: pointer;
    background-color: #fff;
    transition: transform 0.3s ease;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.85));
    padding: 2rem 1.25rem 1.25rem;
    color: white;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h3 {
    margin: 0;
    font-size: 1rem;
    font-weight: 600;
}

.gallery-overlay p {
    margin: 5px 0 0;
    font-size: 0.85rem;
    opacity: 0.9;
}

/* ===================== DROPDOWN MENU ===================== */
.nav-menu .dropdown {
    position: relative;
}

.nav-menu .dropdown-menu {
    list-style: none;
    display: block;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-radius: 8px;
    padding: 10px 0;
    min-width: 220px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.nav-menu .dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-menu .dropdown-menu li {
    margin: 0;
    display: block;
}

.nav-menu .dropdown-menu li a {
    color: var(--text-color) !important;
    padding: 10px 20px;
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    font-weight: 500;
    text-transform: none;
    border-bottom: 1px solid #f0f0f0;
}

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

.nav-menu .dropdown-menu li a:hover {
    color: var(--primary-color) !important;
    background: #f8f9fa;
    padding-left: 25px; /* Indent effect */
}

.nav-menu .dropdown-menu li a i {
    color: var(--primary-color);
}

/* Mobile Adjustments for Dropdown */
@media (max-width: 768px) {
    .nav-menu .dropdown-menu {
        position: static;
        box-shadow: none;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 0;
        padding: 0;
        opacity: 1;
        visibility: visible;
        transform: none;
        display: none;
        min-width: 100%;
    }
    
    .nav-menu .dropdown.active .dropdown-menu {
        display: block;
    }

    .nav-menu .dropdown-menu li a {
        color: var(--white) !important;
        border-bottom: 1px solid rgba(255,255,255,0.08);
        padding-left: 3rem;
    }
    
    .nav-menu .dropdown-menu li a:hover {
        background: rgba(255, 255, 255, 0.08);
        color: var(--white) !important;
    }
    
    .nav-menu .dropdown-menu li a i {
        color: var(--white) !important;
    }
}

/* Lightbox Specific */
.tour-modal-img-container {
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}
