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


/* === NEXUS LOGO ENHANCEMENT === */
.logo-text {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}

.brand-name {
    font-weight: 900;
}

.brand-sub {
    font-weight: 300;
    font-size: 0.85rem;
    opacity: 0.9;
    margin-left: 0.5rem;
}



* {
    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: 1rem 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 {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

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

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

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

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

.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* Dropdown */
.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);
    z-index: 1001;
    border-radius: 4px;
    overflow: hidden;
}

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

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

.dropdown-content a:hover {
    background: #f5f5f5;
}

/* =================================== */
/* HERO SECTIONS */
/* =================================== */

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

.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;
}

.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;
}

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

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

.stat-label {
    color: #666;
}

/* =================================== */
/* PAGE CONTENT WRAPPER */
/* =================================== */

.page-content {
    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;
}

/* =================================== */
/* SERVICES 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;
}

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

.about-hero {
    background: #f9f9f9;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 2rem;
}

.story,
.mission-vision,
.team,
.capabilities,
.certifications,
.location {
    max-width: 1000px;
    margin: 0 auto 3rem;
    padding: 0 20px;
}

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

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

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

.team-member {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.info-table {
    width: 100%;
    border-collapse: collapse;
    margin: 2rem 0;
}

.info-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

.cert-list {
    margin: 1rem 0;
}

.cert-list li {
    margin: 0.5rem 0;
}

.cta-box {
    background: #6d4aff;
    color: white;
    padding: 3rem;
    text-align: center;
    border-radius: 8px;
    margin: 3rem 0;
}

.cta-box a {
    color: white;
}

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

.services-hero {
    background: #6d4aff;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.services-hero h1 {
    font-size: 2.5rem;
}

.intro {
    max-width: 600px;
    margin: 1rem auto 0;
}

.service-detail {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 2rem;
    border: 1px solid #eee;
    border-radius: 8px;
}

.service-detail h2 {
    color: #6d4aff;
    margin-bottom: 1.5rem;
}

.capability-list {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

.metrics {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    margin: 2rem 0;
}

.metric {
    text-align: center;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
    flex: 1;
    min-width: 150px;
}

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

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

.category {
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.hse-overview {
    background: #e6f4ea;
    padding: 3rem;
    text-align: center;
    margin: 3rem 0;
    border-radius: 8px;
}

.related-resources {
    text-align: center;
    margin: 3rem 0;
}

.related-resources a {
    color: #6d4aff;
    font-weight: 600;
    margin: 0 1rem;
}

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

.partnerships-hero {
    background: #6d4aff;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

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

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

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

.model-card ul {
    margin: 1rem 0;
    padding-left: 1.5rem;
    list-style: disc;
}

.active-partners {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
}

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

.join-partners {
    background: #6d4aff;
    color: white;
    padding: 3rem 2rem;
    text-align: center;
    border-radius: 8px;
    margin: 3rem auto;
    max-width: 1000px;
}

.partner-benefits {
    padding-left: 2rem;
    margin: 1.5rem 0;
    list-style: disc;
}

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

.projects-hero {
    background: #6d4aff;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.project-case {
    background: white;
    padding: 2rem;
    margin: 2rem auto;
    max-width: 1000px;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.project-case header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid #eee;
    padding-bottom: 1rem;
    margin-bottom: 1.5rem;
}

.project-details {
    margin: 1.5rem 0;
}

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

.result-item {
    text-align: center;
    background: #f9f9f9;
    padding: 1.5rem;
    border-radius: 8px;
}

.result-item .metric {
    display: block;
    font-size: 2rem;
    font-weight: bold;
    color: #6d4aff;
}

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

.careers-hero {
    background: #6d4aff;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

.why-join {
    padding: 3rem 2rem;
    background: #f9f9f9;
}

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

.benefit-box {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
}

.open-positions {
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
}

.job-listing {
    background: white;
    padding: 2rem;
    margin: 1.5rem 0;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.job-listing header h3 {
    color: #6d4aff;
}

.submit-application {
    max-width: 600px;
    margin: 3rem auto;
    padding: 2rem;
    background: white;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

/* =================================== */
/* DOWNLOADS PAGE STYLES */
/* =================================== */

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

.quick-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
    padding: 2rem;
    background: #f5f5f5;
    margin-bottom: 2rem;
}

.download-category {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

.download-table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.download-table th {
    background: #6d4aff;
    color: white;
    padding: 1rem;
    text-align: left;
    font-weight: 600;
}

.download-table td {
    padding: 1rem;
    border-bottom: 1px solid #eee;
}

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

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

.help-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.help-option {
    background: rgba(255, 255, 255, 0.1);
    padding: 2rem;
    border-radius: 8px;
}

.quick-access-all-pages {
    max-width: 1200px;
    margin: 3rem auto;
    padding: 2rem;
    background: #fafafa;
    border-radius: 8px;
    text-align: center;
}

.page-links-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 2rem;
}

.page-link-item {
    background: white;
    padding: 1rem;
    border-radius: 4px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.page-link-item a {
    color: #6d4aff;
    font-weight: 600;
}

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

.contact-layout {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 3rem;
    max-width: 1200px;
    margin: 3rem auto;
    padding: 0 20px;
}

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

.contact-method {
    margin: 2rem 0;
}

.contact-form {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

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

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

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

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #6d4aff;
    box-shadow: 0 0 0 3px rgba(109, 74, 255, 0.1);
}

.team-contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 3rem auto;
    padding: 0 20px;
}

.tc-item {
    background: white;
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    text-align: center;
}

.faq-contact details {
    background: #f9f9f9;
    padding: 1rem;
    margin: 0.5rem 0;
    border-radius: 4px;
}

.faq-contact summary {
    font-weight: 600;
    cursor: pointer;
}

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

.main-footer {
    background: #1a1a2e;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

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

.footer-column h4 {
    color: #6d4aff;
    margin-bottom: 1rem;
}

.footer-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-column ul li {
    margin-bottom: 0.5rem;
}

.footer-column a {
    color: white;
    opacity: 0.8;
    transition: opacity 0.3s;
}

.footer-column a:hover {
    opacity: 1;
}

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

/* =================================== */
/* PRIVACY & TERMS PAGES */
/* =================================== */

.privacy-hero {
    background: #6d4aff;
    color: white;
    padding: 4rem 2rem;
    text-align: center;
}

main.page-content section {
    max-width: 1000px;
    margin: 2rem auto;
    padding: 0 20px;
}

main.page-content ul {
    list-style: disc;
    padding-left: 2rem;
    margin: 1rem 0;
}

/* =================================== */
/* MOBILE RESPONSIVE */
/* =================================== */

@media (max-width: 768px) {
    .nav-menu {
        display: none;
        flex-direction: column;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #6d4aff;
        padding: 1rem;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .mobile-menu-toggle {
        display: block;
    }
    
    .dropdown-content {
        position: static;
        box-shadow: none;
        background: #5a44db;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .benefits,
    .model-cards,
    .page-links-grid {
        grid-template-columns: 1fr;
    }
}

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

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

/* === TEAM CREDIBILITY BADGE === */
.team-bio {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid #6d4aff;
    margin: 2rem 0;
    font-style: italic;
}

.team-bio p {
    margin: 0;
    line-height: 1.8;
}
