/* =================================== */
/* BASE STYLES & RESET */
/* =================================== */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: #333;
    background: #fff;
    min-height: 100vh;
}

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

ul {
    list-style: none;
}

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

/* =================================== */
/* MAIN NAVIGATION */
/* =================================== */

.main-nav {
    background: #6d4aff;
    padding: 0.75rem 0;
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
}

.logo {
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

.logo img {
    height: 45px;
    width: auto;
    transition: transform 0.3s ease;
}

.logo img:hover {
    transform: scale(1.05);
}

.logo-text,
.brand-name,
.brand-sub {
    display: none !important;
}

/* HAMBURGER MENU BUTTON */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    width: 50px;
    height: 50px;
    position: relative;
    z-index: 1002;
}

.mobile-menu-toggle span {
    display: block;
    width: 28px;
    height: 3px;
    background: white;
    margin: 6px auto;
    border-radius: 3px;
    transition: all 0.3s ease-in-out;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
}

/* NAVIGATION MENU - HORIZONTAL BY DEFAULT */
.nav-menu {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    margin: 0;
    padding: 0;
    position: static;
    width: auto;
    height: auto;
    background: transparent;
    opacity: 1;
    visibility: visible;
    transform: none;
    z-index: 1;
    overflow: visible;
}

.nav-menu li {
    margin: 0;
}

.nav-menu li a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    padding: 0.5rem 0;
    border-bottom: 2px solid transparent;
    transition: border-color 0.3s;
    display: block;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    border-bottom-color: white;
}

.btn-highlight {
    background: white !important;
    color: #6d4aff !important;
    padding: 0.75rem 1.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
}

.btn-highlight:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

/* Dropdown - Desktop */
.dropdown {
    position: relative;
}

.dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 220px;
    box-shadow: 0 4px 6px rgba(0,0,0,0.1);
    border-radius: 4px;
    overflow: hidden;
    z-index: 1001;
}

.dropdown:hover .dropdown-content {
    display: block;
}

.dropdown-content a {
    display: block;
    padding: 0.75rem 1rem;
    color: #333 !important;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
}

.dropdown-content a:hover {
    background: #f5f5f5;
    border-bottom-color: #ddd;
}

/* =================================== */
/* HERO SECTION */
/* =================================== */

.hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 8rem 2rem;
    text-align: center;
    margin-top: 60px;
}

.hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.tagline {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    opacity: 0.95;
}

.subtitle {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background: white;
    color: #6d4aff;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* =================================== */
/* STATS BAR */
/* =================================== */

.stats-bar {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #f5f5f5;
    margin-top: -2rem;
    position: relative;
    z-index: 10;
}

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

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #6d4aff;
}

.stat-label {
    color: #666;
}

/* =================================== */
/* PAGE CONTENT WRAPPER - FIXES LEFT ALIGN */
/* =================================== */

.page-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

.section-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}

/* =================================== */
/* BREADCRUMB */
/* =================================== */

.breadcrumb {
    max-width: 1200px;
    margin: 1rem auto;
    padding: 0 20px;
}

.breadcrumb ol {
    display: flex;
    list-style: none;
    padding: 0;
    gap: 0.5rem;
}

.breadcrumb li:not(:last-child)::after {
    content: '/';
    margin-left: 0.5rem;
    color: #666;
}

.breadcrumb a {
    color: #6d4aff;
    text-decoration: none;
}

/* =================================== */
/* ABOUT SECTION */
/* =================================== */

.about-brief {
    text-align: center;
    padding: 4rem 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.learn-more {
    color: #6d4aff;
    font-weight: 600;
}

.services-grid {
    max-width: 1200px;
    margin: 4rem auto;
    padding: 0 20px;
}

.services-grid h2,
.partners-section h2,
.value-prop h2 {
    text-align: center;
    margin-bottom: 2rem;
}

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

.card {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    transition: transform 0.3s;
}

.card:hover {
    transform: translateY(-5px);
}

.card h3 {
    color: #6d4aff;
    margin-bottom: 1rem;
}

.card a {
    color: #6d4aff;
    font-weight: 600;
}

/* =================================== */
/* PARTNERS SECTION */
/* =================================== */

.partners-section {
    text-align: center;
    padding: 4rem 2rem;
    background: #f9f9f9;
}

.partner-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin: 2rem 0;
}

.partner-logos span {
    padding: 1rem 2rem;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.view-all-partners {
    display: inline-block;
    color: #6d4aff;
    font-weight: 600;
    margin-top: 1rem;
}

/* =================================== */
/* VALUE PROPOSITION */
/* =================================== */

.value-prop {
    padding: 4rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

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

.benefit {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
}

.benefit .icon {
    color: #6d4aff;
    font-size: 1.5rem;
}

.benefit h4 {
    color: #6d4aff;
    margin: 0.5rem 0;
}

/* =================================== */
/* CTA SECTION */
/* =================================== */

.cta-section {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
}

.cta-section h2 {
    margin-bottom: 1rem;
}

.cta-section p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #666;
}

/* =================================== */
/* FOOTER */
/* =================================== */

footer {
    background-color: #1a1a2e;
    color: #ffffff;
    padding: 3rem 2rem 1.5rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-section h3 {
    color: #6d4aff;
    font-size: 1.1rem;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-section p {
    margin: 0.5rem 0;
    color: #cccccc;
}

.footer-section a {
    color: #cccccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #6d4aff;
    text-decoration: underline;
}

.footer-bottom {
    text-align: center;
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #333333;
    color: #888888;
}

footer a[href^="mailto:"] {
    color: #6d4aff;
    text-decoration: none;
    transition: color 0.3s ease;
}

footer a[href^="mailto:"]:hover {
    color: #fff;
    text-decoration: underline;
}

.contact-email {
    font-size: 1.1rem;
    font-weight: 500;
    color: #6d4aff;
}

.contact-email:hover {
    color: #5a3fd0;
}

/* =================================== */
/* MOBILE RESPONSIVE (< 769px) */
/* =================================== */

@media (max-width: 768px) {
    /* Show hamburger on mobile */
    .mobile-menu-toggle {
        display: block;
    }
    
    /* Full-screen menu overlay */
    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: #6d4aff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 0;
        padding: 2rem;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-20%);
        transition: all 0.4s ease-in-out;
        z-index: 1001;
        overflow-y: auto;
    }
    
    .nav-menu.active {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
        margin: 0.5rem 0;
    }
    
    .nav-menu li a {
        font-size: 1.3rem;
        padding: 1.2rem 1.5rem;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        width: 100%;
    }
    
    .btn-highlight {
        padding: 1rem 2.5rem !important;
        margin-top: 1rem !important;
    }
    
    /* Dropdown (Mobile) */
    .dropdown-content {
        position: static;
        background: rgba(0, 0, 0, 0.2);
        margin-top: 0.5rem;
        box-shadow: none;
    }
    
    .dropdown.active .dropdown-content {
        display: block;
    }
    
    .dropdown-content a {
        padding: 1rem 2rem;
        color: rgba(255, 255, 255, 0.9) !important;
    }
    
    /* Layout adjustments */
    .hero {
        padding: 6rem 2rem;
        margin-top: 50px;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits,
    .model-cards,
    .page-links-grid,
    .help-options,
    .stats-bar,
    .service-cards,
    .mission-vision,
    .team-grid,
    .results-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn {
        text-align: center;
    }
    
    .logo img {
        height: 40px;
    }
    
    /* Center content on mobile */
    .hero-content,
    .about-brief,
    .page-content,
    .section-wrapper,
    .services-grid,
    .value-prop,
    .partners-section,
    footer {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* =================================== */
/* PRINT STYLES */
/* =================================== */

@media print {
    .main-nav,
    .mobile-menu-toggle {
        display: none;
    }
    
    .download-table {
        font-size: 10pt;
    }
    
    .btn {
        background: none !important;
        color: #000 !important;
        border: 1px solid #000 !important;
    }
    
    footer {
        background: none;
        color: #000;
        border-top: 1px solid #333;
    }
}

/* =================================== */
/* PARTNERSHIPS PAGE STYLES */
/* =================================== */

.partnerships-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.models-section {
    padding: 5rem 2rem;
    background: #f9f9f9;
}

.model-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.model-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    transition: all 0.3s;
    position: relative;
    border-top: 4px solid #6d4aff;
}

.model-card.featured {
    border-top-color: #ff6b00;
    transform: scale(1.02);
    box-shadow: 0 8px 20px rgba(0,0,0,0.12);
}

.badge {
    position: absolute;
    top: -12px;
    right: 20px;
    background: #ff6b00;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.model-icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.model-card h3 {
    color: #6d4aff;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.model-desc {
    color: #666;
    margin-bottom: 1.5rem;
}

.model-features {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.model-features li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #444;
}

.model-features li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: #6d4aff;
    font-weight: bold;
}

.btn-model {
    display: block;
    background: #6d4aff;
    color: white;
    text-align: center;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-weight: 600;
    margin-top: 2rem;
    transition: all 0.3s;
}

.btn-model:hover {
    background: #5a3fd0;
    transform: translateY(-2px);
}

/* Active Partners Cards */
.active-partners {
    padding: 5rem 2rem;
    background: white;
}

.partner-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.partner-card {
    background: white;
    border: 1px solid #eee;
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.3s;
    position: relative;
}

.partner-card:hover {
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.15);
    border-color: #6d4aff;
}

.partner-status {
    position: absolute;
    top: 1rem;
    right: 1rem;
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.partner-status.active {
    background: #e6f4ea;
    color: #1a7f37;
}

.partner-status.pilot {
    background: #fef3c7;
    color: #92400e;
}

.partner-status.planning {
    background: #dbeafe;
    color: #1d4ed8;
}

.partner-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.partner-header h3 {
    color: #333;
    font-size: 1.3rem;
}

.flag {
    font-size: 1.5rem;
}

.partner-focus,
.partner-status-details {
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 4px;
    margin: 0.5rem 0;
    color: #555;
    font-size: 0.9rem;
}

.partner-link {
    display: inline-block;
    color: #6d4aff;
    font-weight: 600;
    margin-top: 1rem;
    text-decoration: none;
}

.partner-link:hover {
    text-decoration: underline;
}

.add-partner-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-secondary-outline {
    background: transparent;
    color: #6d4aff;
    border: 2px solid #6d4aff;
    padding: 0.75rem 2rem;
    border-radius: 4px;
    font-weight: 600;
}

.btn-secondary-outline:hover {
    background: #6d4aff;
    color: white;
}

/* Join Partners Section */
.join-partners {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.join-partners h2 {
    margin-bottom: 1rem;
}

.join-partners > .section-wrapper > p {
    max-width: 700px;
    margin: 0 auto 3rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

.partner-benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.benefit-box {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.benefit-icon {
    font-size: 2rem;
    display: block;
    margin-bottom: 0.5rem;
}

.benefit-box h4 {
    margin-bottom: 0.5rem;
}

.benefit-box p {
    margin: 0;
    font-size: 0.9rem;
    opacity: 0.9;
}

.btn-white {
    background: white;
    color: #6d4aff !important;
    padding: 1rem 2.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

.btn-white:hover {
    background: #f0f0f0 !important;
    transform: translateY(-2px);
}

.btn-outline-white {
    background: transparent !important;
    color: white !important;
    border: 2px solid white !important;
    padding: 1rem 2.5rem !important;
    border-radius: 4px !important;
    font-weight: 600 !important;
    display: inline-block !important;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1) !important;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 3rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .model-cards,
    .partner-cards,
    .partner-benefits-grid,
    .cta-buttons {
        grid-template-columns: 1fr;
        flex-direction: column;
    }
    
    .btn-model,
    .btn-white,
    .btn-outline-white {
        width: 100%;
    }
    
    .partnerships-hero {
        padding: 4rem 2rem;
    }
}

/* =================================== */
/* SERVICES PAGE STYLES */
/* =================================== */

.services-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.service-section {
    padding: 5rem 2rem;
    background: white;
}

.service-section.alternate {
    background: #f9f9f9;
}

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

.service-header {
    text-align: center;
    margin-bottom: 3rem;
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-header h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1rem;
}

.service-intro {
    max-width: 800px;
    margin: 0 auto;
    color: #666;
    font-size: 1.1rem;
}

/* Capabilities Grid */
.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.capability-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: all 0.3s;
    border-top: 4px solid #6d4aff;
}

.capability-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.15);
}

.cap-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.capability-card h3 {
    color: #6d4aff;
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

/* Metrics Box */
.metrics-box {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.metrics-box h3 {
    font-size: 2rem;
    margin-bottom: 2rem;
}

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

.metric-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
    backdrop-filter: blur(10px);
}

.metric-value {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.metric-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

/* Fleet Categories */
.fleet-categories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.fleet-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid #6d4aff;
}

.fleet-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.fleet-card h3 {
    color: #6d4aff;
    margin-bottom: 1.5rem;
}

.fleet-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.fleet-list li {
    padding: 0.75rem 0;
    padding-left: 2rem;
    position: relative;
    color: #555;
}

.fleet-list li::before {
    content: "•";
    color: #6d4aff;
    font-weight: bold;
    position: absolute;
    left: 0.5rem;
    font-size: 1.5rem;
}

/* Solutions Grid */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.solution-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6d4aff;
}

.sol-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.solution-card h3 {
    color: #6d4aff;
    margin-bottom: 0.5rem;
}

.solution-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Service CTA */
.service-cta {
    text-align: center;
    margin-top: 3rem;
}

.btn-primary {
    background: #6d4aff;
    color: white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-primary:hover {
    background: #5a3fd0;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(109, 74, 255, 0.3);
}

.btn-white {
    background: white;
    color: #6d4aff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline-white {
    background: transparent;
    color: white;
    border: 2px solid white;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline-white:hover {
    background: rgba(255, 255, 255, 0.1);
}

/* HSE Section */
.hse-section {
    background: #e6f4ea;
    padding: 5rem 2rem;
    text-align: center;
}

.hse-content {
    max-width: 800px;
    margin: 0 auto;
}

.hse-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.hse-content h2 {
    font-size: 2.5rem;
    color: #1a7f37;
    margin-bottom: 1rem;
}

.hse-content p {
    font-size: 1.1rem;
    color: #333;
    margin-bottom: 2rem;
}

/* Resources CTA */
.resources-cta {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.resources-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.resource-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .capabilities-grid,
    .fleet-categories,
    .solutions-grid,
    .metrics-grid,
    .resource-links {
        grid-template-columns: 1fr;
    }
    
    .service-header h2,
    .hse-content h2,
    .resources-cta h2 {
        font-size: 2rem;
    }
    
    .btn-primary,
    .btn-white,
    .btn-outline-white {
        width: 100%;
        text-align: center;
    }
}

/* =================================== */
/* PROJECTS PAGE STYLES */
/* =================================== */

.projects-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

.case-study-section {
    padding: 5rem 2rem;
    background: white;
}

.case-study-section.alternate {
    background: #f9f9f9;
}

.case-card {
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.1);
    padding: 3rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    border-top: 5px solid #6d4aff;
}

.case-card.featured {
    border-top-color: #ff6b00;
}

.case-badge {
    position: absolute;
    top: -12px;
    right: 30px;
    background: #ff6b00;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.case-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.case-icon {
    font-size: 2.5rem;
}

.case-meta {
    display: flex;
    gap: 1rem;
    align-items: center;
}

.client-name {
    font-weight: 600;
    color: #333;
}

.project-year {
    color: #666;
    font-size: 0.9rem;
}

.case-title {
    font-size: 2rem;
    color: #333;
    margin-bottom: 2rem;
}

.case-details {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin: 2rem 0;
}

.case-challenge,
.case-solution {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #6d4aff;
}

.case-challenge h3,
.case-solution h3 {
    color: #6d4aff;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
}

.case-challenge p,
.case-solution p {
    color: #666;
    line-height: 1.6;
}

.results-box {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 2.5rem;
    border-radius: 8px;
    margin: 2rem 0;
}

.results-box.gray {
    background: #e9ecef;
    color: #333;
}

.results-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
}

.results-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
}

.result-item {
    background: rgba(255, 255, 255, 0.1);
    padding: 1.5rem;
    border-radius: 6px;
    text-align: center;
}

.results-box.gray .result-item {
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.result-value {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.results-box.gray .result-value {
    color: #6d4aff;
}

.result-label {
    font-size: 0.9rem;
    opacity: 0.9;
}

.case-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Documentation Section */
.documentation-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
    text-align: center;
}

.documentation-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.doc-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-outline-purple {
    background: transparent;
    color: #6d4aff;
    border: 2px solid #6d4aff;
    padding: 1rem 2.5rem;
    border-radius: 4px;
    font-weight: 600;
    display: inline-block;
}

.btn-outline-purple:hover {
    background: #6d4aff;
    color: white;
}

/* Consultation CTA */
.consultation-cta {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 5rem 2rem;
    text-align: center;
}

.consultation-cta h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.consultation-cta > p {
    max-width: 600px;
    margin: 0 auto 2rem;
    opacity: 0.9;
    font-size: 1.1rem;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .case-details,
    .results-grid,
    .doc-links {
        grid-template-columns: 1fr;
    }
    
    .case-card {
        padding: 2rem;
    }
    
    .case-title {
        font-size: 1.75rem;
    }
    
    .btn-primary,
    .btn-outline-purple,
    .btn-white {
        width: 100%;
        text-align: center;
    }
    
    .projects-hero {
        padding: 4rem 2rem;
    }
}


/* =================================== */
/* ABOUT PAGE STYLES */
/* =================================== */

.about-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

/* Our Story */
.story-section {
    padding: 5rem 2rem;
    background: white;
}

.story-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 3rem;
    align-items: center;
}

.story-content h2 {
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
}

.story-content p {
    color: #666;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.story-stat-box {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
}

.story-year {
    display: block;
    font-size: 4rem;
    font-weight: bold;
}

.story-label {
    font-size: 1.1rem;
    opacity: 0.9;
}

/* Mission & Vision */
.mv-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

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

.mv-card {
    background: white;
    padding: 3rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid #6d4aff;
}

.mv-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.mv-card h3 {
    color: #6d4aff;
    margin-bottom: 1rem;
    font-size: 1.8rem;
}

.mv-card p {
    color: #666;
    line-height: 1.7;
}

/* Values */
.values-section {
    padding: 5rem 2rem;
    background: white;
}

.values-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.value-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    transition: transform 0.3s;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.1);
}

.value-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.value-card h4 {
    color: #6d4aff;
    margin-bottom: 0.5rem;
}

.value-card p {
    color: #666;
    font-size: 0.95rem;
}

/* Leadership */
.leadership-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.leadership-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.leader-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    border-top: 4px solid #6d4aff;
}

.leader-avatar {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.leader-card h3 {
    color: #333;
    margin-bottom: 0.5rem;
}

.leader-role {
    display: block;
    color: #6d4aff;
    font-weight: 600;
    margin-bottom: 1rem;
}

.leader-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.leader-contact {
    color: #6d4aff;
    font-weight: 600;
    text-decoration: none;
}

.leader-contact:hover {
    text-decoration: underline;
}

/* Fleet & Facilities */
.fleet-section {
    background: white;
    padding: 5rem 2rem;
}

.fleet-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.fleet-stat {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    text-align: center;
    border-bottom: 4px solid #6d4aff;
}

.fleet-stat-value {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    color: #6d4aff;
}

.fleet-stat-label {
    color: #666;
    font-size: 0.9rem;
    margin-top: 0.5rem;
}

.fleet-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Certifications */
.certifications-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.certifications-section h2 {
    text-align: center;
    font-size: 2.5rem;
   , error: Un



/* =================================== */
/* CAREERS PAGE STYLES */
/* =================================== */

.careers-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

/* Why Join Section */
.why-join-section {
    padding: 5rem 2rem;
    background: white;
}

.why-join-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.benefit-card {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    transition: transform 0.3s;
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(109, 74, 255, 0.1);
}

.benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.benefit-card h4 {
    color: #6d4aff;
    margin-bottom: 0.5rem;
}

.training-cta {
    text-align: center;
    margin-top: 3rem;
}

/* Open Positions */
.positions-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.positions-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.position-card {
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    margin-bottom: 2rem;
    border-top: 4px solid #6d4aff;
}

.position-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.position-header h3 {
    color: #333;
    margin: 0;
}

.position-badge {
    background: #6d4aff;
    color: white;
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.position-description {
    color: #666;
    margin-bottom: 1.5rem;
}

.requirements-box {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.requirements-box h4 {
    color: #6d4aff;
    margin-bottom: 1rem;
}

.requirements-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.requirements-box li {
    padding: 0.5rem 0;
    padding-left: 1.5rem;
    position: relative;
    color: #555;
}

.requirements-box li::before {
    content: "✓";
    color: #6d4aff;
    position: absolute;
    left: 0;
    font-weight: bold;
}

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

/* Documents Section */
.documents-section {
    background: white;
    padding: 5rem 2rem;
    text-align: center;
}

.documents-section h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.doc-links {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Application Form */
.application-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.application-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

.job-application-form,
.general-contact-form {
    max-width: 600px;
    margin: 0 auto;
}

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

.form-group label {
    display: block;
    color: #333;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6d4aff;
}

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

.form-group.half {
    margin-bottom: 1.5rem;
}

.submit-btn {
    width: 100%;
    margin-top: 1rem;
}

/* =================================== */
/* CONTACT PAGE STYLES */
/* =================================== */

.contact-hero {
    background: linear-gradient(135deg, #6d4aff 0%, #4a34cc 100%);
    color: white;
    padding: 6rem 2rem;
    text-align: center;
}

/* Contact Info */
.contact-info-section {
    background: white;
    padding: 5rem 2rem;
}

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

.contact-info-card {
    background: #f9f9f9;
    padding: 2.5rem;
    border-radius: 12px;
    text-align: center;
    border-top: 4px solid #6d4aff;
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-info-card h3 {
    color: #6d4aff;
    margin-bottom: 1rem;
}

.contact-info-card p {
    color: #666;
    margin-bottom: 0.5rem;
}

.contact-info-card a {
    color: #6d4aff;
}

.btn-sm {
    padding: 0.75rem 1.5rem;
    font-size: 0.9rem;
}

/* Inquiry Types */
.inquiry-section {
    background: #f9f9f9;
    padding: 5rem 2rem;
}

.inquiry-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

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

.inquiry-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
    text-align: center;
    transition: transform 0.3s;
}

.inquiry-card:hover {
    transform: translateY(-5px);
}

.inquiry-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.inquiry-card h4 {
    color: #6d4aff;
    margin-bottom: 0.5rem;
}

.inquiry-card p {
    color: #666;
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.inquiry-link {
    color: #6d4aff;
    font-weight: 600;
    text-decoration: none;
}

.inquiry-link:hover {
    text-decoration: underline;
}

/* Contact Form */
.contact-form-section {
    background: white;
    padding: 5rem 2rem;
}

.contact-form-section h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 3rem;
}

/* Response Section */
.response-section {
    background: #e6f4ea;
    padding: 5rem 2rem;
}

.response-card {
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.response-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.response-card h3 {
    color: #1a7f37;
    margin-bottom: 1rem;
}

.response-card p {
    color: #333;
    margin-bottom: 1rem;
}

.emergency-note {
    color: #d32f2f !important;
}

/* Mobile Adjustments */
@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits-grid,
    .contact-info-grid,
    .inquiry-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-links {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-outline-purple {
        width: 100%;
        text-align: center;
    }
    
    .position-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }
}
