/* Base Reset & Variables */
:root {
    --primary-color: #7b7bec;
    /* Light Purple/Blue */
    --primary-hover: #5a5ac0;
    --secondary-color: #1a1a2e;
    /* Dark Blue Background */
    --text-light: #ffffff;
    --text-muted: #a0a0b0;
    --bg-dark: #0f0f1a;
    --card-bg: #ffffff;
    --font-heading: 'Outfit', sans-serif;
    --font-body: 'Inter', sans-serif;
    --gradient-hero: linear-gradient(180deg, rgba(15, 15, 26, 0.6) 0%, rgba(15, 15, 26, 0.9) 100%);
    --gradient-blue: linear-gradient(135deg, #7b7bec 0%, #a4a4f4 100%);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: #c4c4f0;
    /* Lavender Main BG */
    color: #333;
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(123, 123, 236, 0.4);
}

.btn-primary:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(123, 123, 236, 0.6);
}

.btn-outline {
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.btn-outline:hover {
    border-color: white;
    background: rgba(255, 255, 255, 0.1);
}

/* Navbar */
.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    background: transparent;
}

/* Page Header for Legal Pages */
.page-header {
    background-color: #1a1a2e;
    /* Fallback */
    background-image: url('images/hero-bg.svg');
    background-size: cover;
    background-position: center;
    height: 40vh;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    border-radius: 30px;
    /* Consistent rounded corners */
    margin-bottom: 30px;
    /* Space below header */
    overflow: hidden;
}

.legal-content {
    padding: 80px 0;
    max-width: 800px;
    margin: 30px auto;
    background: #FFF8F8;
    /* Light background card */
    border-radius: 30px;
    overflow: hidden;
}

.legal-content h2 {
    margin-top: 40px;
    margin-bottom: 20px;
    color: #1a1a2e;
}

.legal-content p {
    margin-bottom: 20px;
    line-height: 1.8;
    color: #555;
}

.legal-content ul {
    margin-bottom: 20px;
    padding-left: 20px;
}

.legal-content li {
    margin-bottom: 10px;
    color: #555;
}

.navbar {
    position: absolute;
    top: 20px;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 1000;
    padding: 0 40px;
    background: transparent;
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(90deg, #F0F4FF 0%, #E0E8FF 100%);
    padding: 5px 30px;
    border-radius: 12px;
    width: 100%;
    margin: 0 auto;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.logo img {
    height: 80px;
    background-color: transparent;
}

.nav-links {
    display: flex;
    gap: 40px;
}

.nav-links li a {
    color: #333;
    font-weight: 500;
    font-size: 1rem;
    position: relative;
    opacity: 0.8;
}

.nav-links li a.active,
.nav-links li a:hover {
    color: #111;
    opacity: 1;
    font-weight: 600;
}

.mobile-menu-btn {
    display: none;
    font-size: 1.5rem;
    cursor: pointer;
}


.main-wrapper {
    padding: 20px;
}

/* Hero Section */
.hero-card {
    height: 95vh;
    min-height: 700px;
    background: #0f0f1a;
    /* Fallback background color */
    position: relative;
    border-radius: 30px;
    overflow: hidden;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    visibility: hidden;
    transition: opacity 1s ease-in-out, visibility 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    visibility: visible;
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(15, 15, 26, 0.4);
    /* Dark overlay for readability */
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 900px;
    padding-top: 140px;
    /* Push content down for optical balance */
}

.hero-content h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 30px;
    font-weight: 700;
}

.hero-content p {
    font-size: 1.15rem;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 850px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    color: #e0e0ff;
}

.hero-buttons {
    display: flex;
    gap: 24px;
    /* Increased from 20px */
    justify-content: center;
    margin-bottom: 40px;
}

.btn {
    border-radius: 4px;
    /* More squared as per screenshot */
    text-transform: capitalize;
}

.btn-primary {
    background: #7b7bec;
    border: 1px solid #7b7bec;
}

.btn-outline {
    border: 1px solid rgba(255, 255, 255, 0.6);
    background: rgba(0, 0, 0, 0.2);
}

.btn-outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

.hero-dots {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 0;
    z-index: 10;
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    cursor: pointer;
    transition: background 0.3s;
}

.dot.active {
    background: #7b7bec;
}




section {
    position: relative;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

/* About Section */
.about-section {
    padding: 100px 0;
    background: #FFF8F8;
    /* New background color */
    margin-top: 30px;
    /* Separation from Hero */
    border-radius: 30px;
    /* Rounded corners */
    overflow: hidden;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.section-subtitle {
    display: inline-block;
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: capitalize;
    letter-spacing: 0.5px;
    margin-bottom: 25px;
    border: 1px solid var(--primary-color);
    /* Pill style border */
    padding: 8px 20px;
    border-radius: 30px;
    background: transparent;
}

.about-text h2 {
    font-size: 4.5rem;
    /* Increased size significantly */
    line-height: 0.9;
    color: #111;
    margin-bottom: 30px;
    font-weight: 800;
    letter-spacing: -2px;
    /* Tight tracking */
}

.about-text p {
    color: #333;
    /* Darker text */
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.6;
}

.about-image {
    border-radius: 40px;
    /* Larger radius */
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

.about-image img {
    height: 600px;
    /* Taller image */
    width: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* Services Section */
.services-section {
    padding: 100px 0;
    background: #FFF8F8;
    /* Same as About section */
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.text-center {
    text-align: center;
}

.section-header {
    margin-bottom: 60px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-size: 3.5rem;
    margin: 20px 0;
    color: #111;
    font-weight: 800;
}

.section-desc {
    color: #a0a0b0;
    font-size: 1.1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    /* 2 Columns as per design */
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding-top: 100px;
        /* Reduce top padding on mobile */
    }
}

.service-card {
    background: #fff;
    /* White background */
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.03);
    transition: 0.3s;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
}

/* Accent Line on the left */
.service-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 235px;
    /* Adjusted below image */
    height: 40px;
    width: 4px;
    background: #6B6AD9;
    border-radius: 0 4px 4px 0;
    z-index: 2;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.08);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: #eef1ff;
    /* Light Lavender base */
    color: var(--primary-color);
    font-size: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin-bottom: 25px;
    transition: 0.3s;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.service-card-image {
    height: 200px;
    width: 100%;
    margin-bottom: 30px;
    margin-left: -40px;
    /* Offset padding */
    margin-top: -40px;
    /* Offset padding */
    width: calc(100% + 80px);
    /* Counteract padding */
    position: relative;
    /* Ensure image creates a stacking context if needed */
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
    border-radius: 16px 16px 0 0;
    /* Match card radius */
}

.service-card:hover .service-card-image img {
    transform: scale(1.1);
}

.service-card h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #111;
    font-weight: 700;
}

.service-card p {
    color: #888;
    font-size: 0.95rem;
    margin-bottom: 30px;
    line-height: 1.6;
    flex-grow: 1;
}

.service-link {
    display: block;
    width: 100%;
    padding: 14px;
    background: #7b7bec;
    /* Purple button */
    color: white;
    text-align: center;
    border-radius: 12px;
    font-weight: 500;
    font-size: 0.95rem;
    transition: background 0.3s;
}

.service-link:hover {
    background: #6a6ad4;
    opacity: 1;
}


/* Fleet Section */
.fleet-section {
    padding: 100px 0;
    background: linear-gradient(180deg, #7b7bec 0%, #6a6ad4 100%);
    color: white;
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.tag-pill {
    background: white;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--primary-color);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
}

/* Section Badge (Stroked Pill for Light BG) */
.section-badge,
.section-subtitle {
    display: inline-block;
    padding: 8px 20px;
    border: 1px solid var(--primary-color);
    color: var(--primary-color);
    background: transparent;
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.fleet-section .section-header h2 {
    color: white;
    margin-top: 20px;
}

.fleet-section .section-desc {
    color: rgba(255, 255, 255, 0.8);
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}



.fleet-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    color: #333;
}

.fleet-image {
    height: 250px;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.5s;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.1);
}

.fleet-info {
    padding: 25px;
}

.fleet-info h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.fleet-info p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 20px;
    line-height: 1.5;
}

.fleet-link {
    font-weight: 600;
    color: var(--primary-color);
    font-size: 0.9rem;
}

/* Footer */
.footer {
    background: #0f0f1a;
    color: rgba(255, 255, 255, 0.6);
    padding: 40px 0;
    font-size: 0.9rem;
}

/* Responsive */
@media (max-width: 992px) {
    .hero h1 {
        font-size: 2.8rem;
    }

    .about-grid {
        grid-template-columns: 1fr;
    }

    .about-image img {
        height: 400px;
    }

    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {

    .nav-links,
    .nav-container .btn-primary {
        /* Only hide navbar button, not all buttons */
        display: none;
    }

    .mobile-menu-btn {
        display: block;
    }

    .hero h1 {
        font-size: 2.2rem;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
    }

    /* ... Mobile Menu Active State code kept as is ... */
    .nav-links.active {
        display: flex;
        flex-direction: column;
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        background: white;
        padding: 30px;
        border-radius: 20px;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
        z-index: 1001;
        animation: slideDown 0.3s ease forwards;
    }

    /* ... */
}

/* ... */

@media (max-width: 768px) {
    .newsletter-banner {
        flex-direction: column;
        text-align: center;
        padding: 40px 6px 0;
        /* Minimized padding to maximize form width */
        margin-bottom: 0;
        /* Removed negative margin to prevent overlap */
        align-items: center;
        overflow: hidden;
        box-sizing: border-box;
    }

    .newsletter-image {
        display: block;
        width: 100%;
        max-width: 250px;
        /* Limit size */
        margin: 20px auto 0;
        /* Center the image container */
        right: auto;
        display: flex;
        justify-content: center;
    }

    .newsletter-image img {
        width: 100%;
        height: auto;
        filter: drop-shadow(0 10px 20px rgba(0, 0, 0, 0.1));
        display: block;
        /* Ensure no inline gap */
    }

    .newsletter-content {
        padding: 0;
        max-width: 100%;
        width: 100%;
        /* Ensure full width for centering */
        padding-bottom: 20px;
    }

    .newsletter-content h3 {
        font-size: 2rem;
    }

}

/* Mobile fix for < 680px provided by user */


@media (max-width: 768px) {

    .footer {
        padding-top: 180px;
    }

    .contact-info-bar {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
        padding: 0 20px;
        margin-bottom: 40px;
    }

    .contact-info-item {
        width: 100%;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}



.fleet-cta {
    margin-top: 50px;
    text-align: center;
}

/* FAQ Section */
.faq-section {
    padding: 100px 0;
    background: #FFF8F8;
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    align-items: start;
    max-width: 1000px;
    margin: 0 auto;
}

@media (max-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

.faq-item {
    background: white;
    padding: 30px;
    border-radius: 20px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.03);
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-item:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.06);
}

.faq-header {
    display: flex;
    align-items: center;
    gap: 20px;
}

.faq-icon {
    font-size: 24px;
    color: #111;
    transition: transform 0.3s ease;
    min-width: 24px;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-header h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #111;
    margin: 0;
    user-select: none;
}

.faq-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, margin-top 0.3s ease;
    margin-top: 0;
}

.faq-item.active .faq-body {
    margin-top: 20px;
    max-height: 200px;
    /* Approximate max height for content */
}

.faq-body p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

/* Contact Section */
.contact-section {
    padding: 100px 0 0 0;
    /* Remove bottom padding to allow newsletter overlap */
    background: #FFF8F8;
    position: relative;
    z-index: 2;
    /* Ensure it sits above footer */
    margin-top: 30px;
    /* Separation from previous section */
    border-radius: 30px;
    /* Rounded corners */
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto 60px;
    align-items: stretch;
}

@media (max-width: 768px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

.contact-map {
    border-radius: 30px;
    overflow: hidden;
    min-height: 400px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

.contact-form-container {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 15px;
    background: white;
    font-size: 1rem;
    color: #333;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.02);
    font-family: 'Inter', sans-serif;
}

.contact-form .form-control::placeholder {
    color: #999;
}

.contact-form button {
    width: 100%;
    padding: 15px;
    border-radius: 15px;
    background: #1a1a2e;
    /* Dark button */
    border: none;
    font-size: 1.1rem;
    justify-content: center;
    /* Center text */
}

.contact-form button:hover {
    background: #0f0f1a;
    transform: translateY(-2px);
}

/* Contact Info Bar */
.contact-info-bar {
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 15px;
}

.contact-info-item .contact-icon {
    font-size: 32px;
    color: #111;
}

.contact-details h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: #111;
    margin-bottom: 2px;
}

.contact-details p {
    color: #666;
    font-size: 0.95rem;
}

/* Newsletter Banner */
.newsletter-banner {
    background: #A3A3FF;
    /* Specific periwinkle from image */
    border-radius: 20px;
    padding: 60px 80px 0 80px;
    /* Remove bottom padding */
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    /* Align items to bottom */
    position: relative;
    overflow: visible;
    margin-bottom: -150px;
    /* Overlap footer */
    z-index: 10;
    /* Sit on top */
    box-shadow: 0 10px 30px rgba(163, 163, 255, 0.2);
}

.newsletter-content {
    flex: 1;
    max-width: 600px;
    z-index: 2;
    padding-right: 40px;
    padding-bottom: 60px;
    /* Compensate for removed bottom padding */
}

.newsletter-content h3 {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 400;
    /* Regular weight as per design */
    margin-bottom: 25px;
    color: #1a1a2e;
    letter-spacing: -0.5px;
    line-height: 1.2;
}

.newsletter-text-group {
    margin-bottom: 35px;
}

.newsletter-subtitle {
    font-family: 'Inter', sans-serif;
    font-weight: 700;
    margin-bottom: 8px;
    color: #333;
    /* Dark grey */
    font-size: 1.15rem;
}

.newsletter-desc {
    font-family: 'Inter', sans-serif;
    opacity: 0.8;
    color: #333;
    font-size: 1rem;
    line-height: 1.6;
    max-width: 480px;
}

/* Optimized Mobile Styles for Newsletter Form (Vertical Stack & Spacing) */


.newsletter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    padding: 5px;
    border-radius: 50px;
    max-width: 500px;
    width: 100%;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.newsletter-form input {
    flex: 1;
    padding: 15px 25px;
    border: none;
    background: transparent;
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    outline: none;
    color: #333;
    box-shadow: none;
    border-radius: 50px 0 0 50px;
}

.newsletter-form input::placeholder {
    color: #888;
}

.newsletter-form button {
    background: #FFD700;
    /* Yellow/Gold from reference */
    background: #1a1a2e;
    /* Keeping site dark blue as per user request "maintain my site color scheme" */
    color: white;
    border: none;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: 0.3s;
    font-family: 'Inter', sans-serif;
    white-space: nowrap;
}

.newsletter-form button:hover {
    background: #0f0f1a;
    transform: none;
}



.newsletter-image {
    flex: 1;
    display: flex;
    justify-content: flex-end;
    align-items: flex-end;
    /* Align bottom */
    position: relative;
    right: -20px;
    /* Slight offset for visual balance */
}

.newsletter-image img {
    max-width: 400px;
    /* Larger image */
    height: auto;
    filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.15));
    margin-bottom: 0;
    /* Remove negative margin, sit flush */
    display: block;
    /* Ensure no inline-block spacing issues */
}



/* Footer */
.footer {
    background: #151525;
    color: white;
    padding: 220px 0 30px;
    /* Increased top padding for overlap */
    font-size: 0.95rem;
    position: relative;
    z-index: 1;
    margin-top: 30px;
    /* Separation */
    border-radius: 30px 30px 0 0;
    /* Rounded corners top only */
    margin-bottom: 0;
    overflow: hidden;
    /* Ensure content respects radius */
}

.footer-content {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 60px;
}

@media (max-width: 992px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
    }
}

.footer-logo img {
    height: 40px;
    margin-bottom: 20px;
}

.footer-desc {
    color: #aaa;
    line-height: 1.6;
    margin-bottom: 25px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    color: white;
    font-size: 20px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: #6B6AD9;
    transform: translateY(-3px);
}

.footer-column h3 {
    font-size: 1.2rem;
    margin-bottom: 25px;
    font-weight: 600;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #aaa;
    text-decoration: none;
    transition: 0.3s;
    display: inline-block;
}

.footer-links a:hover {
    color: #6B6AD9;
    transform: translateX(5px);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #777;
    font-size: 0.9rem;
}

/* --- About Us Page Styles --- */

/* Page Hero (for sub-pages) */
.page-hero {
    /* background-image: url('images/hero-img-najm.png'); */
    background-image: url('images/aircraft3.png');
    /* Fallback or specific bg */
    background-size: cover;
    background-position: center;
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    color: white;
    text-align: center;
}

.page-hero .hero-content {
    padding-top: 0;
    position: relative;
    z-index: 3;
}

.page-hero .hero-overlay {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.4) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.page-hero h1 {
    font-size: 3.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.page-hero p {
    font-size: 1.2rem;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    opacity: 0.9;
}

/* About Story Section */
.about-story-section {
    padding: 100px 0;
    background: white;
    margin-top: 30px;
    /* Separation from Hero */
    border-radius: 30px;
    /* Rounded corners */
    overflow: hidden;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: stretch;
    /* Enforce equal height */
}

.story-image {
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    height: 100%;
    /* Fill the grid cell */
    display: flex;
}

.story-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    /* Maintain aspect ratio */
}

.story-content h2 {
    font-size: 2.5rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 25px;
    color: #1a1a2e;
}

.story-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Mission & Vision */
.mission-vision-section {
    padding: 80px 0;
    background: #FFF8F8;
    /* Consistent light bg */
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.mv-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.mv-card {
    background: white;
    padding: 50px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: 0.3s;
}

.mv-card:hover {
    transform: translateY(-5px);
}

.mv-card .icon-box {
    width: 60px;
    height: 60px;
    background: rgba(107, 106, 217, 0.1);
    color: #6B6AD9;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 28px;
    margin-bottom: 25px;
}

.mv-card h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #1a1a2e;
}

.mv-card p {
    color: #666;
    line-height: 1.6;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #fff;
    /* Ensure white bg for contrast */
    margin-top: 30px;
    border-radius: 30px;
    overflow: hidden;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    /* 3 Columns */
    gap: 30px;
    margin-top: 60px;
}

.value-item {
    background: #F8F9FA;
    /* Light gray sleek background */
    border-radius: 16px;
    padding: 40px 30px;
    position: relative;
    transition: all 0.3s ease;
    text-align: left;
    /* Left align text */
    overflow: hidden;
    border: none;
    /* Remove old border */
}

/* Accent Line on the left */
.value-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25px;
    /* Slight offset from top */
    height: 40px;
    /* Short accent line */
    width: 4px;
    background: #6B6AD9;
    /* Brand color */
    border-radius: 0 4px 4px 0;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
    /* Sleek shadow */
}

.value-icon {
    width: 50px;
    height: 50px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    /* Soft icon shadow */
}

.value-item i {
    font-size: 24px;
    color: #6B6AD9;
    margin-bottom: 0;
    /* Reset */
    display: block;
}

.value-item h4 {
    font-size: 1.25rem;
    margin-bottom: 15px;
    color: #1a1a2e;
    font-weight: 600;
}

.value-item p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.6;
    margin-bottom: 0;
}

/* CTA Section */
.cta-section {
    padding: 100px 0 180px;
    /* Extra bottom padding for overlap space */
    background: #1a1a2e;
    color: white;
    text-align: center;
    position: relative;
    border-radius: 30px;
    margin-top: 30px;
    overflow: hidden;
}

.cta-section h2 {
    font-size: 3rem;
    font-family: 'Outfit', sans-serif;
    margin-bottom: 20px;
}

.cta-section p {
    font-size: 1.2rem;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* New Page Footer Wrapper Fix */
.footer-wrapper {
    position: relative;
    margin-top: -100px;
    /* Pull up to allow newsletter overlap over CTA section */
}

/* Responsive for new pages */
@media (max-width: 992px) {

    .story-grid,
    .mv-grid,
    .values-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .values-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 992px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        /* Intermediate step */
    }
}

@media (max-width: 768px) {
    .values-grid {
        grid-template-columns: 1fr;
        /* Stack earlier */
    }

    .page-hero h1 {
        font-size: 2.5rem;
    }
}

@media (max-width: 576px) {
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
        /* Center align for mobile footer */
    }

    .footer-content .brand-column {
        align-items: center;
        display: flex;
        flex-direction: column;
    }

    .footer-socials {
        justify-content: center;
    }

    .footer-links a:hover {
        padding-left: 0;
        transform: translateY(-2px);
        /* Vertical hover effect since centered */
    }
}

.footer-column h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 25px;
    color: white;
}

.brand-column .footer-logo img {
    height: 50px;
    margin-bottom: 25px;
    filter: brightness(0) invert(1);
    /* Make logo white */
    background: transparent;
}

.brand-column .footer-desc {
    color: #a0a0b0;
    line-height: 1.6;
    margin-bottom: 30px;
    max-width: 300px;
}

.footer-socials {
    display: flex;
    gap: 15px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: white;
    font-size: 18px;
    transition: 0.3s;
}

.footer-socials a:hover {
    background: var(--primary-color);
    transform: translateY(-3px);
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #a0a0b0;
    transition: 0.3s;
}

.footer-links a:hover {
    color: white;
    padding-left: 5px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
    color: #707080;
    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .fleet-grid {
        grid-template-columns: 1fr;
    }
}

/* Toast Notification */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10000;
}

.toast {
    background: white;
    color: #333;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideInRight 0.3s ease forwards;
    border-left: 4px solid #6B6AD9;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
}

.toast.success {
    border-left-color: #2ecc71;
}

.toast.error {
    border-left-color: #e74c3c;
}

.toast i {
    font-size: 20px;
}

.toast.success i {
    color: #2ecc71;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeOut {
    to {
        opacity: 0;
        transform: translateY(-10px);
    }
}

/* Form Styles Enhancement */
/* Form Styles Enhancement */
.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0px;
    /* form-group handles bottom margin */
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 768px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form .form-group {
    margin-bottom: 20px;
}

.contact-form .form-control {
    height: 55px;
    border-radius: 12px;
    border: 1px solid #eee;
    padding: 0 20px;
    font-size: 1rem;
    color: #1a1a2e;
    transition: 0.3s;
    width: 100%;
    font-family: 'Inter', sans-serif;
}

.contact-form textarea.form-control {
    height: auto;
    padding-top: 20px;
}

.contact-form .form-control:focus {
    border-color: #6B6AD9;
    box-shadow: 0 0 0 4px rgba(107, 106, 217, 0.1);
    outline: none;
}

.contact-form .btn-primary {
    width: 100%;
    height: 55px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
}

.contact-form .form-control {
    border: 1px solid #eee;
    background: #f8f9fa;
    color: #1a1a2e;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.form-row {
    display: flex;
    gap: 15px;
}

.form-row .form-group {
    flex: 1;
}

@media (max-width: 576px) {
    .form-row {
        flex-direction: column;
        gap: 0;
    }
}

.contact-form .form-control:focus {
    background: white;
    border-color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(107, 106, 217, 0.1);
}

.contact-form select.form-control {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6AD9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 1.2rem center;
    background-size: 1.2em;
    padding-right: 3rem;
    cursor: pointer;
}

.contact-form input[type="date"].form-control {
    appearance: none;
    position: relative;
    padding-right: 3rem;
    color: #1a1a2e;
    /* Ensure text is visible */
}

/* Custom Calendar Icon for Date Input */
.contact-form input[type="date"].form-control::-webkit-calendar-picker-indicator {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2em;
    height: 1.2em;
    padding: 0;
    margin: 0;
    cursor: pointer;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%236B6AD9' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3crect x='3' y='4' width='18' height='18' rx='2' ry='2'%3e%3c/rect%3e%3cline x1='16' y1='2' x2='16' y2='6'%3e%3c/line%3e%3cline x1='8' y1='2' x2='8' y2='6'%3e%3c/line%3e%3cline x1='3' y1='10' x2='21' y2='10'%3e%3c/line%3e%3c/svg%3e");
    background-size: cover;
    opacity: 1;
    /* Force visibility */
}

/* Fix for placeholder color in date inputs if supported/needed */
.contact-form input[type="date"].form-control:invalid {
    color: #666;
}

/* Back to Top Button */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 24px;
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(107, 106, 217, 0.4);
    cursor: pointer;
}

.back-to-top.active {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--primary-hover);
    transform: translateY(-5px);
    color: white;
}

.contact-form input[type="date"].form-control {
    font-family: 'Inter', sans-serif;
}

/* Optimized Mobile Styles for Newsletter Form (Vertical Stack & Spacing) */
@media (max-width: 680px) {

    /* Banner Adjustments */
    .newsletter-banner {
        padding: 30px 20px 0 20px;
        text-align: left;
        flex-direction: column;
        align-items: flex-start;
        margin-bottom: -50px;
    }

    .newsletter-content {
        padding-right: 0;
        padding-bottom: 20px;
        width: 100%;
        max-width: 100%;
    }

    .newsletter-content h3 {
        font-size: 2rem;
        margin-bottom: 10px;
    }

    .newsletter-text-group {
        margin-bottom: 20px;
    }

    .newsletter-desc {
        font-size: 0.95rem;
    }

    /* Form Adjustments - Vertical Stack */
    .newsletter-form {
        flex-direction: column;
        padding: 0;
        background: transparent;
        box-shadow: none;
        border-radius: 0;
        gap: 15px;
    }

    .newsletter-form input {
        width: 100%;
        background: white;
        border-radius: 12px;
        padding: 15px 20px;
        height: 50px;
        box-shadow: 0 4px 10px rgba(0, 0, 0, 0.05);
        font-size: 1rem;
        border: 1px solid rgba(0, 0, 0, 0.05);
    }

    .newsletter-form button {
        width: 100%;
        border-radius: 12px;
        height: 50px;
        margin-left: 0;
        padding: 0;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-top: 0;
        background: #1a1a2e;
        color: white;
        font-size: 1rem;
        font-weight: 600;
        border: none;
    }

    /* Image Adjustments */
    .newsletter-image {
        width: 100%;
        justify-content: center;
        margin-top: 20px;
        right: 0;
    }

    .newsletter-image img {
        max-width: 200px;
    }
}


/* Optimized Logo Size for Mobile */
@media (max-width: 768px) {
    .logo img {
        height: 60px;
    }
}

@media (max-width: 480px) {
    .logo img {
        height: 45px;
    }
}

/* --- Mobile Typography Optimizations --- */
@media (max-width: 768px) {

    /* Global Headings */
    h1 {
        font-size: 2.5rem;
    }

    h2 {
        font-size: 2rem;
    }

    h3 {
        font-size: 1.5rem;
    }

    /* Hero Section */
    .hero-content h1 {
        font-size: 2.2rem;
        /* Reduced from 4rem */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-content p {
        font-size: 1rem;
        margin-bottom: 30px;
    }

    /* About Section */
    .about-text h2 {
        font-size: 2.2rem;
        /* Reduced from 4.5rem */
        line-height: 1.2;
    }

    .about-text p {
        font-size: 0.95rem;
        /* Reduced from 1.1rem */
    }

    /* Section Headers */
    .section-header h2 {
        font-size: 2rem;
        /* Reduced from 3.5rem */
        line-height: 1.2;
    }

    .section-desc {
        font-size: 1rem;
    }

    /* Page Hero (Sub-pages) */
    .page-hero h1 {
        font-size: 2.2rem;
    }

    .page-hero p {
        font-size: 1rem;
    }

    /* Newsletter */
    .newsletter-content h3 {
        font-size: 1.8rem;
    }

    .newsletter-subtitle {
        font-size: 1rem;
    }

    /* Service Cards */
    .service-card h3 {
        font-size: 1.3rem;
    }

    .service-card p {
        font-size: 0.9rem;
    }

    /* Fleet Section */
    .fleet-info h3 {
        font-size: 1.2rem;
    }
}
