@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Poppins:wght@500;600;700&display=swap');
/* One KC Express - Main Stylesheet */

:root {
    --primary-blue: #0B2A4A;        /* navy (primary brand) */
    --accent-amber: #F2A900;       /* amber accent */
    --navy-soft: #13395f;
    --hero-blue: #F3F6FA;
    --text-dark: #1A2332;
    --text-muted: #5A6472;
    --shadow-light: rgba(0,0,0,0.05);
    --shadow-medium: rgba(0,0,0,0.1);
    --shadow-dark: rgba(0,0,0,0.15);
}

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

/* Remove all default borders and lines */
*, *::before, *::after {
    border: none !important;
}

/* Specifically target any remaining lines */
.container::before, .container::after,
.row::before, .row::after,
.col::before, .col::after,
[class*="col-"]::before, [class*="col-"]::after,
section::before, section::after,
header::before, header::after,
footer::before, footer::after {
    display: none !important;
}

body {
    font-family: 'Georgia', serif;
    line-height: 1.6;
    color: var(--text-dark);
}

/* Header Styles */
.header_section {
    background: linear-gradient(135deg, #0B2A4A 0%, #13395f 100%);
    border-bottom: 3px solid var(--accent-amber);
    box-shadow: 0 4px 20px var(--shadow-medium);
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 10px 0;
}

.navbar-brand {
    font-size: 28px;
    font-weight: bold;
    color: white !important;
    text-decoration: none;
    letter-spacing: 1px;
}


.navbar-brand img {
    height: 46px;
    width: auto;
    margin-right: 10px;
}

.navbar-nav .nav-link {
    color: white !important;
    font-weight: 500;
    margin: 0 10px;
    transition: all 0.3s ease;
    position: relative;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-item.active .nav-link {
    color: #F2A900 !important;
    transform: translateY(-2px);
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    width: 0;
    height: 2px;
    background: #F2A900;
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-item.active .nav-link::after {
    width: 100%;
}

.navbar-toggler {
    border: none;
    outline: none;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255, 255, 255, 1%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='m4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* Hero Section Styles */
.hero-blue {
    background: linear-gradient(135deg, var(--hero-blue) 0%, #f0f8ff 100%);
    padding: 80px 20px;
    position: relative;
    overflow: hidden;
}

.hero-blue::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23e2e8f0" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-around;
    flex-wrap: wrap;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-title {
    font-size: 3rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px var(--shadow-light);
}

.hero-text {
    font-family: 'Georgia', serif;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    text-align: justify;
    margin-bottom: 20px;
    font-weight: 400;
    text-shadow: 0 1px 2px var(--shadow-light);
}

.hero-image {
    flex: 1 1 300px;
    text-align: center;
}

.hero-image img {
    max-width: 35%;
    height: auto;
    filter: drop-shadow(0 8px 16px var(--shadow-dark));
}

/* Content Sections */
.layout_padding {
    padding: 80px 0;
}

.section-title {
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-blue);
    margin-bottom: 30px;
    text-align: center;
    position: relative;
}

.content-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.content-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Image alignment fixes for equal height layout */
.img-container {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
    width: 100%;
    position: relative;
}

/* About section layout - make both columns equal height */
.about-section .row {
    align-items: stretch;
    min-height: 500px;
}

.about-section .col-lg-5,
.about-section .col-md-6:first-child {
    display: flex;
    align-items: stretch;
}

.about-section .col-lg-7,
.about-section .col-md-6:last-child {
    display: flex;
    align-items: stretch;
    justify-content: center;
}

.about-section .content-box {
    height: 100%;
    margin: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

/* Image sizing without box styling */
.about-section .img-container {
    height: 100%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.about-section .img-container img {
    width: 85%;
    height: auto;
    object-fit: contain;
    max-width: 450px;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
}

.about-section .img-container img:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #13395f);
    border: none;
    padding: 12px 30px;
    font-weight: 600;
    border-radius: 25px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px var(--shadow-medium);
    text-decoration: none;
    color: white;
    display: inline-block;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-medium);
    background: linear-gradient(135deg, #13395f, var(--primary-blue));
    color: white;
    text-decoration: none;
}

/* Feature Lists */
.feature-list {
    list-style: none;
    padding: 0;
}

.feature-list li {
    position: relative;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}

.feature-list li:last-child {
    border-bottom: none;
}

.feature-list li:hover {
    background: var(--hero-blue);
    padding-left: 50px;
}

.feature-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Special styling for features-list class */
.features-list {
    border: 2px solid var(--primary-blue);
    border-radius: 8px;
    padding: 25px;
    margin-top: 20px;
    background-color: #f8f9fa;
    list-style: none;
}

.features-list li {
    position: relative;
    padding: 15px 0 15px 40px;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
    margin-bottom: 0;
}

.features-list li:last-child {
    border-bottom: none;
}

.features-list li:hover {
    background: var(--hero-blue);
    padding-left: 50px;
}

.features-list li:before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    top: 15px;
    color: var(--primary-blue);
    font-size: 1.2rem;
}

/* Service Boxes */
.service-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    margin-bottom: 30px;
    height: 100%;
}

.service-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.service-box i {
    font-size: 3rem;
    color: var(--primary-blue);
    margin-bottom: 20px;
}

.service-box h5 {
    color: var(--primary-blue);
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 15px;
}

/* Testimonial Styles */
.testimonial-box {
    background: white;
    border-radius: 15px;
    padding: 30px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    height: 100%;
}

.testimonial-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.client_id {
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.client_id .img-box {
    margin-right: 15px;
}

.client_id img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.client_info h6 {
    margin-bottom: 5px;
    color: var(--primary-blue);
    font-weight: bold;
}

.client_info i {
    color: #F2A900;
    font-size: 0.9rem;
}

/* Image Styling */
.img-fluid {
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    max-width: 100%;
    height: auto;
    width: auto;
}

.img-fluid:hover {
    transform: scale(1.02);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

/* Form Styles */
.form-control {
    border: 2px solid #e2e8f0 !important;
    border-radius: 10px;
    padding: 15px;
    font-size: 1rem;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: white;
    position: relative;
    z-index: 10;
    pointer-events: auto;
}

.form-control:focus {
    border-color: var(--primary-blue) !important;
    box-shadow: 0 0 0 0.2rem rgba(16, 38, 229, 0.25) !important;
    outline: 0 !important;
    background: white !important;
}

.form-control:hover {
    border-color: #c3d4f0 !important;
}

.form-group {
    margin-bottom: 20px;
    position: relative;
    z-index: 10;
}

.form-row {
    display: flex;
    flex-wrap: wrap;
    margin: 0 -10px;
}

.form-row .form-group {
    padding: 0 10px;
    position: relative;
    z-index: 10;
}

.contact-form-box {
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 10px 30px var(--shadow-medium);
    margin-bottom: 30px;
    transition: all 0.3s ease;
    position: relative;
    overflow: visible;
    height: 100%;
    z-index: 5;
}

.contact-form-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px var(--shadow-medium);
}

.contact-form-box form {
    position: relative;
    z-index: 10;
}

.contact-form-box img {
    max-width: 120px;
    height: auto;
    margin-bottom: 20px;
}

.map_container {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px var(--shadow-medium);
    transition: all 0.3s ease;
    height: 100%;
    position: relative;
    z-index: 1;
}

.map_container:hover {
    box-shadow: 0 15px 40px var(--shadow-medium);
    transform: translateY(-2px);
}

/* Info Section */
.info_section {
    background: linear-gradient(135deg, #0B2A4A 0%, #13395f 100%);
    color: white;
    padding: 60px 0 40px;
}

.info_section h4 {
    color: #F2A900;
    font-size: 2rem;
    margin-bottom: 40px;
    text-align: center;
}

.info_items .item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    margin-bottom: 30px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    text-decoration: none;
    color: white;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 180px;
}

.info_items .row {
    margin: 0 -15px;
}

.info_items .row .col-md-4 {
    padding: 0 15px;
    margin-bottom: 20px;
}

.info_items .item:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-5px);
    color: white;
    text-decoration: none;
}

.info_items a {
    color: white;
    text-decoration: none;
    height: 100%;
    display: block;
    width: 100%;
}

.info_items a:hover {
    color: white;
    text-decoration: none;
}

.info_items .img-box {
    text-align: center;
    margin-bottom: 15px;
    width: 100%;
}

.info_items .img-box i {
    font-size: 2.5rem;
    color: #F2A900;
    display: inline-block;
}

.info_items .hero-text {
    color: white;
    font-weight: 500;
    font-size: 1rem;
    line-height: 1.4;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.3);
    text-align: center;
    margin: 0;
    width: 100%;
    display: block;
}

.social-box {
    text-align: center;
    margin-top: 40px;
}

.social-box h4 {
    color: #F2A900;
    margin-bottom: 20px;
}

.social-box .box a {
    display: inline-block;
    width: 50px;
    height: 50px;
    line-height: 50px;
    margin: 0 10px;
    background: rgba(255, 255, 255, 0.1);
    color: #F2A900;
    border-radius: 50%;
    transition: all 0.3s ease;
    font-size: 1.5rem;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.social-box .box a:hover {
    background: #F2A900;
    color: var(--primary-blue);
    transform: translateY(-3px);
    text-decoration: none;
}

/* Footer */
.footer_section{
    background: linear-gradient(135deg, #13395f 0%, #0B2A4A 100%);
    color:#c6d2e0; padding:54px 0 0; text-align:left;
}
.footer_section .footer-grid{display:flex;flex-wrap:wrap;gap:40px;justify-content:space-between;}
.footer_section .footer-col{flex:1 1 220px;min-width:200px;}
.footer_section .footer-col h4{font-family:'Poppins',sans-serif;color:#fff;font-size:1.05rem;margin:0 0 16px;font-weight:600;}
.footer_section .footer-col a{display:block;color:#c6d2e0;font-size:.95rem;margin:0 0 11px;text-decoration:none;font-weight:400;}
.footer_section .footer-col a:hover{color:#F2A900;text-decoration:none;}
.footer_section .social{display:flex;gap:12px;}
.footer_section .social a{width:40px;height:40px;border-radius:9px;background:rgba(255,255,255,.08);display:grid;place-items:center;color:#fff;font-size:1rem;margin:0;}
.footer_section .social a:hover{background:#F2A900;color:#0B2A4A;}
.footer_section .footer-bottom{border-top:1px solid rgba(255,255,255,.12);margin-top:38px;padding:18px 0;text-align:center;}
.footer_section .footer-bottom p{margin:0;color:#90a0b3;font-size:.9rem;}
.footer_section .footer-bottom a{color:#F2A900;font-weight:600;}

.footer_section a:hover {
    color: white;
    text-decoration: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-text {
        font-size: 1rem;
        text-align: left;
    }
    
    .hero-image img {
        max-width: 50%;
    }
    
    .hero-content {
        flex-direction: column;
        text-align: center;
        padding: 0 15px;
    }
    
    .content-box {
        padding: 25px;
    }
    
    .section-title {
        font-size: 2rem;
    }

    .form-row {
        margin: 0;
        flex-direction: column;
    }

    .form-row .form-group {
        padding: 0;
        width: 100%;
        margin-bottom: 15px;
    }
    
    .navbar-brand {
        font-size: 24px;
    }
    
    .navbar-brand img {
        height: 28px;
    }
    
    .service-box {
        margin-bottom: 20px;
    }
    
    .testimonial-box {
        margin-bottom: 20px;
    }
    
    .client_id {
        flex-direction: column;
        text-align: center;
    }
    
    .client_id .img-box {
        margin-right: 0;
        margin-bottom: 10px;
    }
    
    .client_id img {
        width: 45px;
        height: 45px;
    }
    
    .info_items .item {
        min-height: 150px;
        padding: 20px 15px;
    }
    
    .info_items .img-box i {
        font-size: 2rem;
    }
    
    .social-box .box a {
        width: 45px;
        height: 45px;
        line-height: 45px;
        font-size: 1.3rem;
        margin: 0 8px;
    }
    
    .map_container {
        height: 300px !important;
        margin-top: 20px;
    }
    
    .contact-form-box {
        margin-bottom: 20px;
    }

    .contact-form-box img {
        max-width: 100px;
    }

    .about-section .row {
        min-height: auto;
        flex-direction: column;
    }

    .about-section .col-lg-5,
    .about-section .col-lg-7,
    .about-section .col-md-6 {
        display: block;
        margin-bottom: 20px;
    }

    .about-section .img-container {
        padding: 15px;
        margin-bottom: 20px;
    }

    .about-section .img-container img {
        width: 75%;
        max-width: 350px;
    }
}

@media (max-width: 576px) {
    .hero-blue {
        padding: 50px 15px;
    }
    
    .layout_padding {
        padding: 50px 0;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-title {
        font-size: 1.6rem;
    }
    
    .content-box {
        padding: 20px;
    }
    
    .info_items .item {
        min-height: 130px;
        padding: 15px 10px;
    }
    
    .info_items .hero-text {
        font-size: 0.9rem;
    }
    
    .navbar-brand {
        font-size: 20px;
    }
    
    .navbar-brand img {
        height: 24px;
    }
    
    .btn-primary {
        padding: 10px 25px;
        font-size: 0.9rem;
    }
    
    .form-control {
        padding: 12px;
        font-size: 0.9rem;
    }
    
    .map_container {
        height: 250px !important;
    }

    .hero-image img {
        max-width: 60%;
    }

    .about-section .img-container img {
        width: 80%;
        max-width: 300px;
    }

    .contact-form-box img {
        max-width: 80px;
    }
}

/* Fix for very small screens */
@media (max-width: 320px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 1.4rem;
    }
    
    .navbar-brand {
        font-size: 18px;
    }
    
    .navbar-brand img {
        height: 20px;
    }
    
    .info_items .item {
        min-height: 120px;
    }
    
    .info_items .hero-text {
        font-size: 0.8rem;
        line-height: 1.3;
    }

    .about-section .img-container img {
        width: 85%;
        max-width: 250px;
    }
}

/* Image Optimization */
img {
    max-width: 100%;
    height: auto;
}

/* Performance optimization classes */
.img-optimized {
    image-rendering: auto;
    image-rendering: crisp-edges;
    image-rendering: -webkit-optimize-contrast;
}

/* Policy links in footer */
.footer_section .footer-links{margin-bottom:6px;font-size:0.95rem;}
.footer_section .footer-links .footer-sep{margin:0 10px;opacity:.6;}


/* ===== Navy/Amber theme typography ===== */
body{font-family:'Inter',system-ui,-apple-system,'Segoe UI',Roboto,sans-serif !important;}
h1,h2,h3,h4,h5,h6,.hero-title,.section-title,.navbar-brand,.footer_section a{
  font-family:'Poppins',sans-serif !important;}
.navbar-nav .nav-link{font-family:'Inter',sans-serif !important;}
/* Amber primary button accent */
.btn-primary,.btn-main{background:var(--accent-amber) !important;border-color:var(--accent-amber) !important;color:#1A2332 !important;font-weight:600 !important;}
.btn-primary:hover,.btn-main:hover{background:#d99700 !important;border-color:#d99700 !important;color:#1A2332 !important;}


/* ===== Legal page navy banner (matches policy reference) ===== */
.legal-hero{background:linear-gradient(180deg,#0B2A4A 0%,#13395f 100%);color:#fff;padding:56px 0 92px;}
.legal-hero .container{max-width:860px;}
.legal-hero .eyebrow{display:inline-block;font-family:'Inter',sans-serif;font-size:12px;font-weight:700;letter-spacing:1.7px;text-transform:uppercase;color:#F2A900;margin-bottom:14px;}
.legal-hero .legal-title{font-family:'Poppins',sans-serif;font-weight:700;font-size:2.6rem;line-height:1.12;letter-spacing:-.5px;color:#fff;margin:0 0 14px;}
.legal-hero .legal-meta{color:#b9c6d6;font-size:.95rem;margin:0;}
.legal-hero .route-rule{height:3px;width:64px;background:#F2A900;border-radius:3px;margin:20px 0 0;}
.legal-body{padding-top:0 !important;}
.legal-body .doc{margin:-60px auto 0;max-width:860px;position:relative;z-index:2;}
@media (max-width:680px){.legal-hero .legal-title{font-size:1.9rem;}}
/* Updated logos */
.navbar-brand img{height:50px;width:auto;}
.contact-logo{display:block;margin:0 auto 18px;max-height:150px;width:auto;}
@media (max-width:768px){.contact-logo{max-height:120px;}}

/* Header logo: white-outlined emblem floats directly on navy (no chip) */

/* Animated brand video in navbar + contact hero */
.brand-vid{height:62px;width:62px;object-fit:cover;display:block;border-radius:0;
  box-shadow:none;background:transparent;margin-right:14px;}
.brand-vid-lg{width:min(230px,56vw);aspect-ratio:1;object-fit:cover;border-radius:26px;
  box-shadow:0 24px 60px -20px rgba(0,0,0,.65);border:1px solid rgba(255,255,255,.12);}



/* ================================================================
   DRIVER PAGES — premium / futuristic styling
   matches the home-page design language (midnight navy + amber glow)
   ================================================================ */
:root{
  --dp-navy:#0B2A4A; --dp-midnight:#061A30; --dp-navy-2:#12406b;
  --dp-amber:#F2A900; --dp-amber-2:#FFC93C;
  --dp-ink:#1A2332; --dp-muted:#5A6472;
  --dp-line:#dbe6f2; --dp-surface:#fff; --dp-tint:#F3F6FA;
  /* aliases for legacy rules */
  --border:#dbe6f2; --navy:#0B2A4A;
}

/* ---------- HERO ---------- */
.driver-hero{
  position:relative; isolation:isolate; overflow:hidden;
  padding:118px 0 104px; color:#fff;
  background:
    radial-gradient(1100px 520px at 78% -10%, rgba(242,169,0,.20), transparent 60%),
    radial-gradient(900px 620px at 8% 110%, rgba(23,105,170,.42), transparent 62%),
    linear-gradient(150deg,var(--dp-midnight) 0%, var(--dp-navy) 52%, #10375c 100%);
}
.driver-hero::before{
  content:""; position:absolute; inset:0; z-index:-1; opacity:.5;
  background-image:linear-gradient(rgba(255,255,255,.05) 1px,transparent 1px),
                   linear-gradient(90deg,rgba(255,255,255,.05) 1px,transparent 1px);
  background-size:64px 64px;
  mask-image:radial-gradient(ellipse 85% 68% at 50% 38%,#000 55%,transparent 100%);
  -webkit-mask-image:radial-gradient(ellipse 85% 68% at 50% 38%,#000 55%,transparent 100%);
}
.driver-hero::after{
  content:""; position:absolute; left:0; right:0; bottom:-1px; height:120px; z-index:-1;
  background:linear-gradient(to bottom,transparent,rgba(255,255,255,.06));
}
.driver-hero .container{position:relative;z-index:1}
.driver-kicker{
  display:inline-flex; align-items:center; gap:9px;
  font:700 .72rem/1 Inter,Arial,sans-serif; letter-spacing:2.4px; text-transform:uppercase;
  color:var(--dp-amber-2); background:rgba(242,169,0,.12);
  border:1px solid rgba(242,169,0,.34); border-radius:999px;
  padding:9px 17px; margin-bottom:22px;
  box-shadow:0 0 26px rgba(242,169,0,.20);
}
.driver-kicker::before{
  content:""; width:7px;height:7px;border-radius:50%;background:var(--dp-amber-2);
  box-shadow:0 0 11px 2px rgba(255,201,60,.85); animation:dp-pulse 2.1s ease-in-out infinite;
}
@keyframes dp-pulse{0%,100%{opacity:1;transform:scale(1)}50%{opacity:.45;transform:scale(.72)}}
.driver-hero .ph-title,.driver-hero h1{
  font:800 clamp(2.05rem,4.6vw,3.5rem)/1.08 Poppins,Inter,sans-serif;
  color:#fff; max-width:19ch; margin:0 0 20px; letter-spacing:-.5px;
}
.driver-hero .ph-title .glow,.driver-hero h1 .glow{
  color:var(--dp-amber-2); text-shadow:0 0 34px rgba(242,169,0,.55);
}
.driver-hero .ph-sub{
  color:#c3d6e8; font-size:1.07rem; line-height:1.75; max-width:60ch; margin:0;
}

/* ---------- HERO BUTTONS ---------- */
.driver-actions{display:flex;flex-wrap:wrap;gap:14px;margin-top:34px}
.driver-actions a{
  display:inline-flex;align-items:center;gap:10px;
  padding:15px 27px;border-radius:12px;text-decoration:none;
  font:700 .96rem/1 Inter,Arial,sans-serif; letter-spacing:.2px;
  transition:transform .22s cubic-bezier(.2,.8,.2,1),box-shadow .22s,background .22s,border-color .22s;
}
.driver-actions .primary{
  background:linear-gradient(135deg,var(--dp-amber-2),var(--dp-amber));
  color:var(--dp-navy); box-shadow:0 10px 30px -8px rgba(242,169,0,.62);
}
.driver-actions .primary:hover{transform:translateY(-2px);box-shadow:0 16px 40px -10px rgba(242,169,0,.78)}
.driver-actions .secondary{
  border:1px solid rgba(255,255,255,.4); color:#fff;
  background:rgba(255,255,255,.06); backdrop-filter:blur(6px);
}
.driver-actions .secondary:hover{background:rgba(255,255,255,.14);border-color:rgba(255,255,255,.72);color:#fff;transform:translateY(-2px)}

/* ---------- SECTIONS ---------- */
.driver-intro{font-size:1.06rem;line-height:1.8;max-width:74ch;color:var(--dp-muted)}
.sec.tint{background:var(--dp-tint)}

/* ---------- CARDS ---------- */
.driver-grid,.resource-list{
  display:grid; grid-template-columns:repeat(auto-fit,minmax(290px,1fr)); gap:24px; margin-top:8px;
}
.driver-card{
  position:relative; overflow:hidden; height:100%;
  background:var(--dp-surface); border:1px solid var(--dp-line); border-radius:18px;
  padding:30px 26px 28px;
  box-shadow:0 4px 18px -6px rgba(11,42,74,.10);
  transition:transform .28s cubic-bezier(.2,.8,.2,1),box-shadow .28s,border-color .28s;
}
.driver-card::before{
  content:""; position:absolute; inset:0 0 auto 0; height:3px;
  background:linear-gradient(90deg,var(--dp-amber),var(--dp-amber-2));
  transform:scaleX(0); transform-origin:left; transition:transform .34s cubic-bezier(.2,.8,.2,1);
}
.driver-card:hover{transform:translateY(-6px);box-shadow:0 24px 52px -18px rgba(11,42,74,.34);border-color:#c4d8ec}
.driver-card:hover::before{transform:scaleX(1)}
.driver-card h3{font:700 1.14rem/1.35 Poppins,Inter,sans-serif;color:var(--dp-navy);margin:16px 0 10px}
.driver-card p{margin:0;color:var(--dp-muted);font-size:.97rem;line-height:1.72}
.driver-icon{
  width:52px;height:52px;border-radius:15px;display:grid;place-items:center;font-size:1.28rem;
  background:linear-gradient(135deg,var(--dp-navy),var(--dp-navy-2)); color:var(--dp-amber-2);
  box-shadow:0 8px 22px -8px rgba(11,42,74,.6), inset 0 1px 0 rgba(255,255,255,.14);
}
/* cards on dark sections */
.sec.navy .driver-card{background:rgba(255,255,255,.055);border-color:rgba(255,255,255,.16);backdrop-filter:blur(8px)}
.sec.navy .driver-card h3{color:#fff}
.sec.navy .driver-card p{color:#a8bacd}
.sec.navy .driver-icon{background:rgba(242,169,0,.16);border:1px solid rgba(242,169,0,.4)}

/* ---------- FAQ ACCORDION ---------- */
.faq-list{display:grid;gap:14px;max-width:920px;margin-top:8px}
.faq-item{
  background:var(--dp-surface);border:1px solid var(--dp-line);border-radius:15px;
  padding:0 24px; box-shadow:0 3px 14px -6px rgba(11,42,74,.12);
  transition:border-color .25s,box-shadow .25s,background .25s;
}
.faq-item:hover{border-color:#b9d2ea;box-shadow:0 10px 30px -14px rgba(11,42,74,.3)}
.faq-item[open]{border-color:var(--dp-amber);box-shadow:0 14px 38px -18px rgba(11,42,74,.4)}
.faq-item summary{
  cursor:pointer;list-style:none;padding:22px 44px 22px 0;position:relative;
  font:600 1.03rem/1.45 Poppins,Inter,sans-serif;color:var(--dp-navy);
}
.faq-item summary::-webkit-details-marker{display:none}
.faq-item summary::after{
  content:"";position:absolute;right:2px;top:50%;width:26px;height:26px;margin-top:-13px;
  border-radius:50%;background:var(--dp-tint);border:1px solid var(--dp-line);
  transition:background .25s,border-color .25s,transform .3s;
}
.faq-item summary::before{
  content:"";position:absolute;right:9px;top:50%;width:12px;height:12px;margin-top:-6px;z-index:1;
  background:
    linear-gradient(var(--dp-navy),var(--dp-navy)) center/12px 2px no-repeat,
    linear-gradient(var(--dp-navy),var(--dp-navy)) center/2px 12px no-repeat;
  transition:transform .3s cubic-bezier(.2,.8,.2,1),background .25s;
}
.faq-item[open] summary::after{background:var(--dp-amber);border-color:var(--dp-amber)}
.faq-item[open] summary::before{transform:rotate(90deg);
  background:linear-gradient(var(--dp-navy),var(--dp-navy)) center/12px 2px no-repeat}
.faq-answer{padding:0 0 22px;color:var(--dp-muted);font-size:.99rem;line-height:1.8;max-width:80ch}
.faq-answer ul{margin:10px 0 0;padding-left:20px}
.faq-answer li{margin-bottom:8px}

/* ---------- NUMBERED STEPS ---------- */
.step-list{display:grid;gap:20px;margin-top:10px;counter-reset:dp}
.step{
  position:relative;display:grid;grid-template-columns:auto 1fr;gap:22px;align-items:start;
  background:var(--dp-surface);border:1px solid var(--dp-line);border-radius:16px;padding:26px 26px 24px;
  box-shadow:0 3px 16px -8px rgba(11,42,74,.14);
  transition:transform .26s cubic-bezier(.2,.8,.2,1),box-shadow .26s,border-color .26s;
}
.step:hover{transform:translateX(5px);border-color:#c4d8ec;box-shadow:0 18px 40px -20px rgba(11,42,74,.36)}
.step-number{
  width:50px;height:50px;flex:0 0 50px;border-radius:14px;display:grid;place-items:center;
  font:800 1.24rem/1 Poppins,Inter,sans-serif;color:var(--dp-amber-2);
  background:linear-gradient(135deg,var(--dp-navy),var(--dp-navy-2));
  box-shadow:0 8px 22px -8px rgba(11,42,74,.62), inset 0 1px 0 rgba(255,255,255,.14);
}
.step h3{font:700 1.1rem/1.35 Poppins,Inter,sans-serif;color:var(--dp-navy);margin:6px 0 8px}
.step p{margin:0;color:var(--dp-muted);line-height:1.75;font-size:.98rem}

/* ---------- NOTICE / CALLOUT ---------- */
.notice{
  position:relative;border-radius:14px;padding:20px 24px 20px 26px;margin:0 0 30px;
  background:linear-gradient(100deg,rgba(242,169,0,.10),rgba(242,169,0,.03));
  border:1px solid rgba(242,169,0,.35);
  color:var(--dp-ink);font-size:.99rem;line-height:1.75;
}
.notice::before{content:"";position:absolute;left:0;top:0;bottom:0;width:4px;border-radius:14px 0 0 14px;
  background:linear-gradient(var(--dp-amber-2),var(--dp-amber))}
.notice strong{color:var(--dp-navy)}
.notice a{color:var(--dp-navy);font-weight:600;text-decoration:underline;text-underline-offset:3px}

/* ---------- RESPONSIVE ---------- */
@media (max-width:991px){
  .driver-hero{padding:88px 0 76px}
  .driver-grid,.resource-list{grid-template-columns:1fr}
}
@media (max-width:575px){
  .driver-hero{padding:70px 0 60px}
  .driver-actions a{width:100%;justify-content:center}
  .step{grid-template-columns:1fr;gap:14px}
  .faq-item summary{font-size:.98rem;padding-right:38px}
}
@media (prefers-reduced-motion:reduce){
  .driver-card,.step,.driver-actions a,.faq-item summary::before{transition:none}
  .driver-kicker::before{animation:none}
}

/* ================================================================
   HERO ARTWORK — contact motion logo + driver-page orb
   ================================================================ */

/* ================================================================
   HERO ARTWORK  (contact logo + per-page driver visuals)
   ================================================================ */

/* ---- contact hero logo: blended, frameless ---- */
.ph-brand{display:flex;justify-content:center;margin-bottom:24px}
.ph-brand .brand-vid-lg{
  width:min(168px,40vw);aspect-ratio:1;object-fit:cover;display:block;border-radius:0;
  mix-blend-mode:screen;filter:saturate(1.05) contrast(1.04);
  -webkit-mask-image:radial-gradient(circle at 50% 50%,#000 54%,transparent 74%);
          mask-image:radial-gradient(circle at 50% 50%,#000 54%,transparent 74%);
  box-shadow:none;
}

/* ---- driver hero: two-column ---- */
.driver-hero .container{display:grid;grid-template-columns:minmax(0,1.02fr) minmax(0,.98fr);gap:54px;align-items:center}
.dp-hero-copy{min-width:0}
.dp-hero-art{position:relative;display:grid;place-items:center;min-height:340px}
.dp-hero-art i{line-height:1}

/* ===== start-driving : journey rail ===== */
.dp-journey{position:relative;display:grid;gap:20px;width:min(360px,100%);padding-left:8px}
.dp-jline{position:absolute;left:32px;top:16px;bottom:16px;width:2px;
  background:linear-gradient(180deg,rgba(242,169,0,.65),rgba(255,255,255,.14))}
.dp-jstep{position:relative;display:grid;grid-template-columns:auto 1fr;gap:16px;align-items:center;
  grid-template-areas:"dot title" "dot sub"}
.dp-jdot{
  grid-area:dot;width:48px;height:48px;border-radius:14px;display:grid;place-items:center;z-index:2;
  background:rgba(9,32,56,.9);border:1px solid rgba(255,255,255,.2);color:#cfe0f0;font-size:1.02rem;
  box-shadow:0 12px 30px -14px rgba(0,0,0,.85)
}
.dp-jstep b{grid-area:title;font:700 1rem/1.2 Poppins,Inter,sans-serif;color:#fff}
.dp-jstep small{grid-area:sub;font:400 .8rem/1.3 Inter,Arial,sans-serif;color:#9fb6cc}
.dp-jstep.is-live .dp-jdot{
  background:linear-gradient(135deg,var(--dp-amber-2),var(--dp-amber));color:var(--dp-navy);
  border-color:transparent;box-shadow:0 0 0 5px rgba(242,169,0,.15),0 14px 34px -12px rgba(242,169,0,.7);
  animation:dp-glow 2.6s ease-in-out infinite
}
@keyframes dp-glow{0%,100%{box-shadow:0 0 0 5px rgba(242,169,0,.15),0 14px 34px -12px rgba(242,169,0,.7)}
  50%{box-shadow:0 0 0 12px rgba(242,169,0,0),0 14px 34px -12px rgba(242,169,0,.5)}}
.dp-jstep.is-live b{color:var(--dp-amber-2)}

/* ===== onboarding-resources : checklist ===== */
.dp-check{
  width:min(384px,100%);border-radius:18px;padding:22px 22px 20px;
  background:rgba(9,32,56,.76);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(10px);
  box-shadow:0 26px 60px -26px rgba(0,0,0,.88)
}
.dp-check-top{display:flex;align-items:center;gap:11px;padding-bottom:15px;margin-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.12);
  font:700 .95rem/1 Poppins,Inter,sans-serif;color:#fff}
.dp-check-top i{color:var(--dp-amber-2);font-size:1.02rem}
.dp-check-top em{margin-left:auto;font:600 .78rem/1 Inter,Arial,sans-serif;font-style:normal;
  color:var(--dp-amber-2);background:rgba(242,169,0,.14);border:1px solid rgba(242,169,0,.34);
  border-radius:999px;padding:5px 11px}
.dp-check ul{list-style:none;margin:0;padding:0;display:grid;gap:11px}
.dp-check li{display:flex;align-items:center;gap:11px;font:500 .88rem/1.4 Inter,Arial,sans-serif;color:#9fb6cc}
.dp-check li i{font-size:1rem;color:rgba(255,255,255,.3);width:18px;text-align:center}
.dp-check li.done{color:#e7f1fb}
.dp-check li.done i{color:var(--dp-amber-2)}
.dp-check-bar{margin-top:18px;height:6px;border-radius:99px;background:rgba(255,255,255,.12);overflow:hidden}
.dp-check-bar span{display:block;height:100%;width:50%;border-radius:99px;
  background:linear-gradient(90deg,var(--dp-amber),var(--dp-amber-2));
  box-shadow:0 0 18px rgba(242,169,0,.7)}

/* ---- responsive ---- */
@media (max-width:991px){
  .driver-hero .container{grid-template-columns:1fr;gap:40px}
  .dp-hero-art{min-height:auto;order:2}
  
}
@media (max-width:575px){
  
  .dp-qcard,.dp-check{width:100%}
  .dp-qcard:nth-child(1),.dp-qcard:nth-child(3){transform:none}
  .dp-jline{left:26px}
  .dp-jdot{width:40px;height:40px}
}
@media (prefers-reduced-motion:reduce){
  .dp-jstep.is-live .dp-jdot{animation:none}
}

/* ===== driver-faqs : topic panel (shares the onboarding panel language) ===== */
.dp-panel{
  width:min(392px,100%);border-radius:18px;padding:22px 22px 20px;
  background:rgba(9,32,56,.76);border:1px solid rgba(255,255,255,.16);backdrop-filter:blur(10px);
  box-shadow:0 26px 60px -26px rgba(0,0,0,.88);
}
.dp-panel-top{
  display:flex;align-items:center;gap:11px;padding-bottom:15px;margin-bottom:14px;
  border-bottom:1px solid rgba(255,255,255,.12);
  font:700 .95rem/1 Poppins,Inter,sans-serif;color:#fff;
}
.dp-panel-top i{color:var(--dp-amber-2);font-size:1.05rem}
.dp-panel-top em{
  margin-left:auto;font:600 .76rem/1 Inter,Arial,sans-serif;font-style:normal;color:var(--dp-amber-2);
  background:rgba(242,169,0,.14);border:1px solid rgba(242,169,0,.34);border-radius:999px;padding:5px 11px;
}
.dp-topics{list-style:none;margin:0;padding:0;display:grid;gap:9px}
.dp-topics li{
  display:flex;align-items:center;gap:12px;padding:11px 13px;border-radius:11px;
  font:500 .89rem/1.35 Inter,Arial,sans-serif;color:#cfe0f0;
  background:rgba(255,255,255,.04);border:1px solid transparent;transition:background .22s,border-color .22s;
}
.dp-topics li i{color:#8fb0cd;font-size:.96rem;width:19px;text-align:center}
.dp-topics li.is-hl{
  background:linear-gradient(120deg,rgba(242,169,0,.16),rgba(255,255,255,.03));
  border-color:rgba(242,169,0,.42);color:#fff;
}
.dp-topics li.is-hl i{color:var(--dp-amber-2)}

/* ===== guide card (replaces the plain notice at the top of driver pages) ===== */
.guide-card{
  display:grid;grid-template-columns:auto 1fr;gap:20px;align-items:start;
  padding:26px 28px;border-radius:18px;margin-bottom:26px;
  background:linear-gradient(125deg,#fff 0%,#f7fbff 100%);
  border:1px solid var(--dp-line);
  box-shadow:0 14px 40px -22px rgba(11,42,74,.34);
  position:relative;overflow:hidden;
}
.guide-card::before{
  content:"";position:absolute;left:0;top:0;bottom:0;width:5px;
  background:linear-gradient(180deg,var(--dp-amber-2),var(--dp-amber));
}
.guide-ic{
  width:52px;height:52px;border-radius:15px;display:grid;place-items:center;font-size:1.3rem;
  background:linear-gradient(135deg,var(--dp-navy),var(--dp-navy-2));color:var(--dp-amber-2);
  box-shadow:0 10px 26px -10px rgba(11,42,74,.66), inset 0 1px 0 rgba(255,255,255,.14);
}
.guide-body h3{font:700 1.08rem/1.3 Poppins,Inter,sans-serif;color:var(--dp-navy);margin:4px 0 8px}
.guide-body p{margin:0;color:var(--dp-muted);font-size:.97rem;line-height:1.78}
.guide-body a{color:var(--dp-navy);font-weight:600;text-decoration:underline;text-underline-offset:3px;
  text-decoration-color:rgba(242,169,0,.6);transition:text-decoration-color .2s}
.guide-body a:hover{text-decoration-color:var(--dp-amber)}

/* lead paragraph under the guide card */
.driver-intro.lead-intro{
  font-size:1.1rem;line-height:1.8;color:#42566b;max-width:76ch;
  padding-left:20px;border-left:3px solid rgba(242,169,0,.4);margin:0 0 6px;
}

@media (max-width:575px){
  .guide-card{grid-template-columns:1fr;gap:14px;padding:22px 20px}
  .driver-intro.lead-intro{font-size:1.02rem;padding-left:15px}
}
