:root {
    --navy: #002e5b;
    --navy-light: #004a8c;
    --navy-dark: #001e3d;
    --gold: #e5b326;
    --beige: #f9f7f2;
    --text-dark: #121212;
    --text-gray: #4a4a4a;
    --text-light: #888888;
    --white: #ffffff;
    --transition-smooth: all 0.5s cubic-bezier(0.19, 1, 0.22, 1);
    --shadow-sm: 0 4px 10px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 10px 30px rgba(0, 0, 0, 0.08);
    --shadow-lg: 0 20px 50px rgba(0, 0, 0, 0.12);
    --container: 1200px;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 30px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Outfit', sans-serif;
    color: var(--text-dark);
    line-height: 1.7;
    background: var(--white);
    overflow-x: hidden;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--navy-light);
    border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--navy);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 60px 0;
}

.text-center {
    text-align: center;
}

/* Typography Enhancements */
.section-heading {
    font-size: 2.2rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: var(--text-dark);
    text-align: left;
}

.section-subheading {
    font-size: 1.1rem;
    color: var(--text-gray);
    margin-top: -40px;
    margin-bottom: 50px;
    text-align: left;
}

/* Buttons: Premium Pill Shapes */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    gap: 12px;
    border: none;
    font-size: 1rem;
    transition: var(--transition-smooth);
    letter-spacing: 0.5px;
    white-space: nowrap;
}

.btn-navy-pill {
    background: var(--navy);
    color: var(--white);
    box-shadow: var(--shadow-sm);
}

.btn-navy-pill:hover {
    background: var(--navy-light);
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 20px rgba(0, 46, 91, 0.2);
}

.btn-navy-solid {
    background: var(--navy);
    color: var(--white);
}

.btn-navy-solid:hover {
    background: var(--navy-light);
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.btn-navy-wide {
    background: var(--navy);
    color: var(--white);
    width: 100%;
    margin-top: 20px;
    padding: 18px;
}

/* Header: Glassmorphism effect */
.header {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 20px 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: var(--transition-smooth);
}

.header-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--text-dark);
    display: flex;
    align-items: center;
}

.logo-img {
    height: 70px;
    width: auto;
    object-fit: contain;
}

@media (max-width: 768px) {
    .logo-img {
        height: 55px;
    }
}

.desktop-nav {
    display: flex;
}

.desktop-nav .nav-list {
    display: flex;
    gap: 40px;
    list-style: none;
}

.desktop-nav .nav-list li a {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition-smooth);
}

.desktop-nav .nav-list li a:hover,
.desktop-nav .nav-list li a.active {
    color: var(--navy);
}

.desktop-nav .nav-list li a.active {
    font-weight: 700;
}

.mobile-drawer {
    display: none;
}

.mobile-nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    color: var(--text-dark);
}

/* Hero Section */
.hero {
    height: 100vh;
    min-height: 700px;
    position: relative;
    display: flex;
    align-items: center;
    color: var(--white);
    overflow: hidden;
}

.hero-image-wrapper {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.hero-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
}

.hero-title {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 24px;
    font-weight: 700;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 10px;
}

.hero-call-text {
    font-size: 1.1rem;
}

.hero-call-text a {
    font-weight: 700;
    text-decoration: underline;
    margin-left: 8px;
}

.scroll-down-wrapper {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s infinite;
}

@keyframes bounce {

    0%,
    20%,
    50%,
    80%,
    100% {
        transform: translateY(0) translateX(-50%);
    }

    60% {
        transform: translateY(-10px) translateX(-50%);
    }
}

/* Partner Grid */
.partner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}

.main-feature-img {
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transition: var(--transition-smooth);
}

.main-feature-img:hover {
    transform: scale(1.02);
}

.feature-tile {
    display: flex;
    gap: 20px;
    margin-bottom: 8px;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.feature-tile:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.05);
    transform: translateX(10px);
}

.feature-tile-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.feature-tile-content h3 {
    margin-bottom: 4px;
    font-size: 1.25rem;
}

.feature-tile-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Fleet Grid */
.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.fleet-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.fleet-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.fleet-img {
    position: relative;
    height: 220px;
}

.fleet-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.fleet-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--navy);
    color: var(--white);
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.fleet-details {
    padding: 25px;
}

.fleet-details h3 {
    margin-bottom: 15px;
    color: var(--navy);
}

.fleet-amenities {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid #f0f0f0;
}

.fleet-amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: var(--text-gray);
}

.fleet-amenities li i {
    width: 16px;
    color: var(--navy);
}

/* Packages Grid */
.packages-container {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 60px;
}

.pkg-card {
    background: var(--white);
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition-smooth);
    text-align: left;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.pkg-card:hover {
    transform: translateY(-15px);
    box-shadow: var(--shadow-lg);
}

.pkg-card-img img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.pkg-card-body {
    padding: 30px;
}

.pkg-card-body h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
    color: var(--navy);
}

.pkg-card-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
}

.pkg-cta {
    text-align: center;
    margin-top: 40px;
}

/* Airport Section: Unique Beige/Grid layout */
.airport-section {
    background: var(--beige);
}

.airport-intro-box {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 80px;
    align-items: center;
}

.airport-intro-text p {
    margin-bottom: 24px;
    font-size: 1.15rem;
    color: var(--text-gray);
}

.airport-features-list {
    margin-bottom: 40px;
}

.airport-features-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-weight: 500;
    color: var(--text-dark);
}

.airport-features-list li i {
    color: var(--navy);
    width: 20px;
}

.airport-cta {
    display: flex;
    align-items: center;
    gap: 30px;
}

.btn-text-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--navy);
    font-size: 1rem;
}

.btn-text-link:hover {
    text-decoration: underline;
}

.airport-intro-img {
    position: relative;
}

.airport-intro-img img {
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-main);
    width: 100%;
}

.airport-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--white);
    padding: 24px;
    border-radius: 20px;
    box-shadow: var(--shadow-main);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 2;
}

.badge-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
}

.badge-text {
    font-weight: 700;
    color: var(--navy);
    font-size: 0.9rem;
    white-space: nowrap;
}

/* Testimonials */
.testimonials-bg {
    background: var(--beige);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.testimonial-card {
    background: var(--white);
    padding: 30px;
    border-radius: var(--radius-md);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
}

.stars {
    color: #ffc107;
    margin-bottom: 20px;
    display: flex;
    gap: 4px;
}

.stars svg {
    fill: #ffc107 !important;
    width: 20px;
    height: 20px;
}

.testimonial-card p {
    font-style: italic;
    color: var(--text-gray);
    margin-bottom: 25px;
    line-height: 1.8;
}

.testimonial-user {
    margin-top: auto;
}

.testimonial-user strong {
    display: block;
    color: var(--navy);
    font-size: 1.1rem;
}

.testimonial-user span {
    font-size: 0.85rem;
    color: var(--text-gray);
    opacity: 0.8;
}

/* FAQ - Clean & Elegant */
.faq-section {
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.03);
}

.faq-container {
    max-width: 1100px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
}

@media (max-width: 992px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: var(--white);
    border: 1px solid #f0f0f0;
    padding: 30px;
    border-radius: var(--radius-md);
    margin-bottom: 20px;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: var(--navy-light);
    box-shadow: var(--shadow-md);
}

.faq-item h3 {
    font-size: 1.1rem;
    margin-bottom: 12px;
    color: var(--navy);
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Quote Form Section - Warm & Trusting */
.contact-bg {
    background: var(--beige);
    /* Matches Airport/Testimonials professional feel */
    position: relative;
    overflow: hidden;
}

.contact-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('assets/pattern.png');
    /* If you have a subtle texture/pattern */
    opacity: 0.05;
    pointer-events: none;
}

.contact-bg .section-heading {
    color: var(--text-dark);
}

.form-wrapper {
    max-width: 850px;
    margin: 0 auto;
    background: var(--white);
    padding: 60px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.form-brand-title {
    text-align: center;
    margin-bottom: 40px;
    font-size: 1.8rem;
    color: var(--navy);
}

.form-row {
    display: flex;
    gap: 24px;
    margin-bottom: 24px;
}

.input-group {
    flex: 1;
    position: relative;
}

.input-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.input-group label span.required {
    color: #ff3b30;
    margin-left: 2px;
}

.error-message {
    color: #ff3b30;
    font-size: 0.8rem;
    margin-top: 5px;
    display: none;
    font-weight: 500;
}

.input-group.error input,
.input-group.error textarea {
    border-color: #ff3b30;
    background: #fffcfc;
}

.input-group.error .error-message {
    display: block;
}

.input-group input,
.input-group textarea {
    width: 100%;
    padding: 14px 20px;
    border: 1px solid #e1e1e1;
    border-radius: 8px;
    font-family: inherit;
    font-size: 1rem;
    background: #fcfcfc;
    transition: var(--transition);
}

.input-group input:focus,
.input-group textarea:focus {
    outline: none;
    border-color: var(--navy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(0, 74, 140, 0.05);
}

/* Footer Refined */
.footer-refined {
    background: var(--navy);
    color: var(--white);
    padding: 80px 0 30px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: var(--white);
}

.footer-col h3 {
    margin-bottom: 30px;
    font-size: 1.2rem;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background: var(--navy-light);
}

.about-col p {
    opacity: 0.8;
    margin-bottom: 30px;
    font-size: 0.95rem;
}

.footer-social-box span {
    display: block;
    margin-bottom: 15px;
    font-size: 0.9rem;
    font-weight: 600;
}

.footer-social-icons {
    display: flex;
    gap: 15px;
}

.footer-social-icons a {
    width: 44px;
    height: 44px;
    background: rgba(255, 255, 255, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.footer-social-icons a:hover {
    background: var(--navy-light);
    transform: translateY(-5px);
}

.links-col ul li {
    margin-bottom: 12px;
}

.links-col ul li a {
    opacity: 0.8;
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.links-col ul li a:hover {
    opacity: 1;
    padding-left: 10px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-links>a,
.footer-address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    opacity: 0.8;
    font-size: 0.95rem;
    color: var(--white);
}

.contact-links i,
.contact-links svg {
    color: var(--white);
    width: 22px !important;
    height: 22px !important;
    flex-shrink: 0;
    stroke-width: 2px;
    margin-top: 3px;
    /* Aligns icon perfectly with the first line of text */
}

.footer-bottom {
    padding-top: 30px;
}

.footer-bottom-flex {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
    opacity: 0.6;
}

.designer-link {
    font-weight: 600;
    color: var(--white);
    opacity: 1;
    transition: var(--transition-smooth);
}

.designer-link:hover {
    color: var(--navy-light);
    text-decoration: underline;
}

/* Floating WhatsApp */
.floating-whatsapp {
    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: 24px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
    z-index: 1000;
}

/* Reveal Classes */
.reveal-up,
.reveal-left,
.reveal-right {
    opacity: 0;
}

.revealed {
    opacity: 1 !important;
    transform: none !important;
    transition: opacity 1s ease, transform 1s ease;
}

.reveal-up {
    transform: translateY(40px);
}

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

/* Trust Bar */
.trust-bar {
    background: var(--white);
    padding: 20px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.trust-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 20px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.trust-item i {
    color: var(--navy-light);
    width: 24px;
    height: 24px;
}

.trust-item span {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text-dark);
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }

    .partner-grid,
    .airport-intro-box {
        gap: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .section-padding {
        padding: 40px 0;
    }

    .section-heading {
        font-size: 1.8rem;
        margin-bottom: 25px;
    }

    .desktop-nav {
        display: none;
    }

    .mobile-drawer {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        width: 100%;
        height: 100dvh;
        min-height: -webkit-fill-available;
        transform: translateX(100%);
        background: var(--navy);
        display: flex;
        flex-direction: column;
        transition: transform 0.6s cubic-bezier(0.85, 0, 0.15, 1);
        z-index: 30000;
        /* Truly above everything */
        overflow-y: auto;
        padding: 0;
        margin: 0;
    }

    .mobile-drawer.active {
        transform: translateX(0);
        display: flex;
    }

    /* Header in Drawer */
    .mobile-nav-header {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 30px 24px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    }

    .mobile-nav-header .logo-img {
        background: var(--white);
        padding: 5px 10px;
        border-radius: 8px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
    }

    .mobile-logo-text {
        font-size: 1.5rem;
        font-weight: 700;
        color: var(--white);
        letter-spacing: -0.5px;
    }

    .mobile-close-btn {
        background: rgba(255, 255, 255, 0.1);
        border: none;
        width: 44px;
        height: 44px;
        border-radius: 50%;
        color: var(--white);
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
    }

    /* Main Drawer Links */
    .mobile-nav-list {
        display: flex;
        flex-direction: column;
        padding: 40px 24px;
        gap: 0;
    }

    .mobile-nav-list li {
        margin-bottom: 40px;
        width: 100%;
    }

    .mobile-nav-list li a {
        display: flex;
        align-items: flex-start;
        gap: 20px;
        text-decoration: none;
        color: var(--white);
    }

    .nav-num {
        display: none;
    }

    .nav-label-box {
        display: flex;
        flex-direction: column;
        gap: 4px;
    }

    .nav-label {
        font-size: 1.8rem;
        font-weight: 700;
        color: var(--white);
        line-height: 1.1;
    }

    .nav-desc {
        display: block;
        font-size: 0.95rem;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 400;
    }

    /* Footer in Drawer */
    .mobile-nav-footer {
        display: flex;
        justify-content: center;
        margin-top: auto;
        padding: 40px 24px;
        background: rgba(255, 255, 255, 0.02);
    }

    .mobile-call-action {
        display: inline-flex;
        align-items: center;
        gap: 12px;
        background: var(--white);
        padding: 14px 28px;
        border-radius: 50px;
        color: var(--navy);
        font-weight: 700;
        text-decoration: none;
        margin-bottom: 30px;
        justify-content: center;
        font-size: 1.05rem;
    }

    .mobile-social-wrap {
        display: none;
    }

    .mobile-social-wrap a {
        width: 48px;
        height: 48px;
        background: rgba(255, 255, 255, 0.05);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: var(--transition-smooth);
    }

    .mobile-social-wrap a:hover {
        background: var(--navy-light);
        color: var(--white);
    }

    .mobile-nav-toggle {
        display: block;
        z-index: 1000;
        color: var(--text-dark);
        border: none;
        background: none;
        cursor: pointer;
    }

    /* Hero Responsive */
    .hero {
        min-height: 100vh;
        min-height: 100svh;
        /* Support for modern mobile browsers with dynamic navigation bars */
        height: 100vh;
        padding-top: 80px;
    }

    .hero-title {
        font-size: 1.8rem;
        line-height: 1.25;
        margin-bottom: 20px;
    }

    .hero-subtitle {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    .hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 15px;
    }

    .hero-call-text {
        font-size: 0.95rem;
        text-align: center;
    }

    .scroll-down-wrapper {
        display: none;
    }

    /* Grid Resets */
    .partner-grid,
    .fleet-grid,
    .packages-container,
    .airport-intro-box,
    .testimonials-grid,
    .footer-grid {
        grid-template-columns: 1fr !important;
        gap: 40px;
    }

    .fleet-card,
    .pkg-card {
        max-width: 100%;
    }

    /* Feature Tiles */
    .feature-tile {
        gap: 15px;
        padding: 15px;
    }

    /* Header Mobile Adjustments */
    .header-cta {
        display: none;
    }

    .logo a {
        font-size: 1.4rem;
    }

    /* Footer Bottom */
    .footer-bottom-flex {
        flex-direction: column;
        gap: 15px;
        text-align: center;
    }

    .form-row {
        flex-direction: column;
    }

    .form-wrapper {
        padding: 24px;
    }

    /* Trust Bar Mobile - Hidden as requested */
    .trust-bar {
        display: none;
    }

    /* Airport Badge Mobile Fix */
    .airport-badge {
        position: relative;
        bottom: 0;
        right: 0;
        margin-top: -40px;
        margin-left: auto;
        margin-right: 20px;
        width: fit-content;
        padding: 15px 20px;
    }

}

/* End of 768px media query */

html.nav-open,
body.nav-open {
    overflow: hidden;
    height: 100vh;
    height: 100svh;
}

@media (max-width: 480px) {
    .trust-container {
        grid-template-columns: 1fr;
    }

    .hero-title {
        font-size: 1.6rem;
    }

    .section-padding {
        padding: 40px 0;
    }
}





/* Migrated Page-Specific Styles */
.philosophy-section {
    background: var(--navy);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
}

.philosophy-quote {
    font-size: 2.2rem;
    font-weight: 600;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.4;
    color: var(--white);
}

.motto-label {
    display: block;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.85rem;
    color: var(--white);
    font-weight: 700;
    margin-bottom: 20px;
    opacity: 0.8;
}

.standards-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.standard-item {
    display: flex;
    gap: 25px;
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: left;
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.standard-item:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.05);
}

.standard-icon {
    width: 60px;
    height: 60px;
    background: var(--beige);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.standard-content h4 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 1.25rem;
    font-weight: 600;
}

.standard-content p {
    color: var(--text-gray);
    font-size: 0.95rem;
    line-height: 1.6;
}

.service-feature-list {
    margin-top: 15px;
    list-style: none;
    padding: 0;
}

.service-feature-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    color: var(--text-dark);
    font-weight: 500;
}

.service-feature-list li i {
    color: var(--gold);
    width: 14px;
}

@media (max-width: 768px) {
    .standards-grid {
        grid-template-columns: 1fr;
    }

    .philosophy-quote {
        font-size: 1.6rem;
    }
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 60px;
}

.contact-card {
    background: var(--white);
    padding: 30px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    text-align: center;
    transition: var(--transition-smooth);
    border: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: var(--navy-light);
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--beige);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 5px;
}

.contact-card h3 {
    font-size: 1.1rem;
    color: var(--navy);
    font-weight: 700;
}

.contact-card p,
.contact-card .contact-link {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.4;
}

.contact-card .contact-link:hover {
    color: var(--navy);
    font-weight: 600;
}

.map-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: stretch;
}

.form-container {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.map-container {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 450px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .map-section {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}