/* --- START OF FILE style.css --- */

* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    /* Firefox legacy */
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    /* FIXED: Added robust fallback fonts because Google Fonts might fail on old SSL */
    font-family: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #ffffff;
    color: #00008B;
    line-height: 1.4;
    width: 100%;
    height: 100%;
    overflow-x: hidden;
    /* FIXED: Text rendering fix for old webkit */
    -webkit-font-smoothing: antialiased;
}

a {
    text-decoration: none;
    color: inherit;
}

/* NAVBAR */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: #ffffff;
    border-bottom: 1px solid #eee;
    z-index: 100;
    /* FIXED: Add shadow for visual separation */
    -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.navbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 12px 20px;
    font-size: 18px;
    font-weight: 500;
    position: relative;
    height: 80px;
}

    /* FIXED: Clearfix helper for floated nav elements */
    .navbar-inner:after {
        content: "";
        display: table;
        clear: both;
    }

.nav-left {
    float: left;
    margin-top: 15px;
}

.nav-right {
    float: right;
    margin-top: 15px;
}

.logo {
    font-weight: 800;
    letter-spacing: 0.1em;
    font-size: 14px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -75px;
    margin-top: -25px;
    width: 150px;
    text-align: center;
    z-index: 101;
    /* Ensure logo stays on top */
}

.nav-link {
    cursor: pointer;
    display: inline-block;
    margin-right: 20px;
    vertical-align: middle;
}

.nav-right .nav-link {
    margin-right: 10px;
    margin-left: 0;
}

.btn-primary {
    padding: 8px 18px;
    /* FIXED: Webkit prefix for rounded corners */
    -webkit-border-radius: 999px;
    border-radius: 999px;
    border: none;
    background: #ff2c2c;
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    /* FIXED: Button appearance reset */
    -webkit-appearance: none;
}

/* HERO SECTION */
.hero {
    max-width: 100%;
    margin: 0 auto;
    padding: 100px 20px 60px;
    text-align: center;
    position: relative;
    width: 100%;
    overflow: hidden;
    background: #ffffff;
    min-height: 900px;
}

.hero-title {
    font-size: 72px;
    font-weight: 400;
    line-height: 1.1;
    letter-spacing: -0.02em;
    position: relative;
    z-index: 1;
    margin-bottom: 40px;
    /* FIXED: Font weight fallback */
    font-family: "Inter", Arial, sans-serif;
}

    .hero-title span {
        display: block;
    }

.hero-visual-wrapper {
    position: relative;
    width: 1000px;
    height: 950px;
    z-index: 10;
    margin: -750px auto 0;
}

.hero-container-image {
    -webkit-animation: swing 4s ease-in-out infinite;
    animation: swing 4s ease-in-out infinite;
    -webkit-transform-origin: 50% 0;
    transform-origin: 50% 0;
    z-index: 10;
    width: 100%;
    max-width: 1190px;
  
    display: block;
    margin: inherit inherit;
}

@-webkit-keyframes swing {
    0% {
        -webkit-transform: translateY(0px) rotate(-2deg);
    }

    50% {
        -webkit-transform: translateY(-14px) rotate(2deg);
    }

    100% {
        -webkit-transform: translateY(0px) rotate(-2deg);
    }
}

@keyframes swing {
    0% {
        transform: translateY(0px) rotate(-2deg);
    }

    50% {
        transform: translateY(-14px) rotate(2deg);
    }

    100% {
        transform: translateY(0px) rotate(-2deg);
    }
}

/* SECTION: CALCULATOR */
.section {
    max-width: 1300px;
    margin: 0 auto;
    padding: 60px 20px;
    overflow: hidden;
}

.section-left {
    float: left;
    width: 38%;
    padding-top: 20px;
    margin-right: 2%;
}

.section > div:nth-child(2) {
    float: right;
    width: 58%;
}

.section-title {
    font-size: 32px;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 0;
}

.section-subtext {
    font-size: 14px;
    color: #555;
    max-width: 420px;
    margin-bottom: 20px;
    font-weight: 400;
    line-height: 1.6;
}

.calculator-card {
    padding: 32px;
    /* FIXED: Prefixes */
    -webkit-border-radius: 12px;
    border-radius: 12px;
    border: 1px solid #e5e5e5;
    -webkit-box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
    background: #ffffff;
}

.form-row {
    overflow: hidden;
    margin-bottom: 20px;
}

.field {
    width: 100%;
    margin-bottom: 20px;
}

.form-row .field {
    float: left;
    width: 48%;
    margin-right: 4%;
    margin-bottom: 0;
}

    .form-row .field:last-child {
        margin-right: 0;
    }

label {
    display: block;
    font-size: 13px;
    margin-bottom: 8px;
    color: #666;
    font-weight: 400;
}

select,
input {
    width: 100%;
    padding: 12px 16px;
    /* FIXED: Prefixes */
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    outline: none;
    font-weight: 400;
    background: #ffffff;
    /* FIXED: Remove default gloss in Safari */
    -webkit-appearance: none;
}

    select:focus,
    input:focus {
        border-color: #ff2c2c;
        -webkit-box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
        box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
    }

.calculator-card .btn-primary {
    width: 100%;
    margin-top: 8px;
    padding: 12px 18px;
    font-size: 14px;
}

/* DELIVERY METHODS SECTION */
.delivery-methods {
    max-width: 1300px;
    margin: 60px auto;
    padding: 0 20px;
}

.delivery-grid {
    overflow: hidden;
    /* Remove negative margin for old Safari safety */
    /* margin-right: -24px; */
    width: 100%;
}

.delivery-card {
    float: left;
    /* FIXED: Reduced width from 31.33% to 31% to prevent sub-pixel rounding drops in Safari 5 */
    width: 31%;
    margin-right: 3.5%;
    /* Adjusted margin to balance */
    margin-bottom: 24px;
    background: #f8f8f8;
    -webkit-border-radius: 8px;
    border-radius: 8px;
    overflow: hidden;
    /* FIXED: Webkit Transition */
    -webkit-transition: -webkit-transform 0.45s ease, -webkit-box-shadow 0.45s ease;
    transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), box-shadow 0.45s cubic-bezier(0.2, 0.9, 0.2, 1);
    -webkit-transform-origin: center;
    transform-origin: center;
    -webkit-box-shadow: 0 6px 18px rgba(15, 15, 15, 0.04);
    box-shadow: 0 6px 18px rgba(15, 15, 15, 0.04);
    position: relative;
}

    .delivery-card:nth-child(3n) {
        margin-right: 0;
    }

    .delivery-card:hover {
        -webkit-transform: translateY(-10px) scale(1.02) rotateX(1.2deg);
        transform: translateY(-10px) scale(1.02) rotateX(1.2deg);
        -webkit-box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
        box-shadow: 0 20px 40px rgba(15, 15, 15, 0.12);
    }

    .delivery-card .delivery-image img {
        -webkit-transition: -webkit-transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
        transition: transform 0.6s cubic-bezier(0.2, 0.9, 0.2, 1);
        -webkit-transform-origin: center;
        transform-origin: center;
        width: 100%;
        height: 100%;
        /* Fallback for object-fit */
        min-height: 100%;
    }

    .delivery-card:hover .delivery-image img {
        -webkit-transform: scale(1.06) translateY(-6px);
        transform: scale(1.06) translateY(-6px);
    }

    .delivery-card .delivery-content {
        -webkit-transition: -webkit-transform 0.45s, opacity 0.45s;
        transition: transform 0.45s cubic-bezier(0.2, 0.9, 0.2, 1), opacity 0.45s;
        padding: 24px;
        background: #ffffff;
    }

    .delivery-card:hover .delivery-content {
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

.delivery-image {
    width: 100%;
    height: 240px;
    overflow: hidden;
    background: #e5e5e5;
}

.delivery-number {
    font-size: 14px;
    font-weight: 600;
    color: #999;
    margin-bottom: 8px;
}

.delivery-title {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 12px;
    color: #111;
}

.delivery-desc {
    font-size: 14px;
    color: #666;
    line-height: 1.6;
}

/* CAR SHIPPING SECTION */
.car-shipping {
    max-width: 100%;
    margin: 80px 0;
    background: #111;
    color: #ffffff;
    position: relative;
    overflow: hidden;
}

.car-shipping-content {
    max-width: 1300px;
    margin: 0 auto;
    position: relative;
    min-height: 600px;
    display: table;
    width: 100%;
}

.car-image-wrapper {
    position: absolute;
    right: 0;
    top: 0;
    width: 60%;
    height: 100%;
}

.car-image {
    width: 100%;
    height: 100%;
    opacity: 0.7;
}

.car-text-overlay {
    position: relative;
    z-index: 2;
    padding: 80px 40px;
    max-width: 550px;
    display: table-cell;
    vertical-align: middle;
}

.car-title {
    font-size: 36px;
    font-weight: 400;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.car-description {
    font-size: 15px;
    line-height: 1.7;
    color: #cccccc;
    margin-bottom: 28px;
    max-width: 480px;
}

.learn-more-link {
    display: inline-block;
    font-size: 15px;
    font-weight: 500;
    color: #ffffff;
    text-decoration: underline;
    -webkit-transition: color 0.3s ease;
    transition: color 0.3s ease;
}

    .learn-more-link:hover {
        color: #ff2c2c;
    }

/* TEXT LIST SECTION */
.top-section {
    margin-bottom: 60px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    overflow: hidden;
}

.header-col {
    float: left;
    width: 45%;
    min-width: 300px;
    margin-right: 5%;
}

    .header-col h1 {
        font-size: 3.5rem;
        line-height: 1.1;
        font-weight: 600;
        letter-spacing: -1.5px;
        color: #222;
    }

.list-col {
    float: right;
    width: 50%;
    min-width: 300px;
}

.list-item {
    padding: 20px 0;
    border-bottom: 1px solid #eeeeee;
    overflow: hidden;
}

    .list-item:first-child {
        border-top: 1px solid #eeeeee;
    }

    .list-item .num {
        float: left;
        font-size: 0.85rem;
        color: #888;
        width: 60px;
        padding-top: 3px;
        font-weight: 500;
    }

    .list-item p {
        margin-left: 60px;
        font-size: 0.95rem;
        line-height: 1.5;
        color: #444;
        margin-top: 0;
        margin-bottom: 0;
    }

/* MAP SECTION */
.map-container {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 30px auto;
    z-index: 1;
    padding: 0 20px;
}

.world-map-img {
    width: 100%;
    height: auto;
    display: block;
    opacity: 0.1;
    filter: grayscale(100%);
    pointer-events: none;
}

.map-marker {
    position: absolute;
    width: 12px;
    height: 12px;
    background-color: #d32f2f;
    -webkit-border-radius: 50%;
    border-radius: 50%;
    margin-left: -6px;
    margin-top: -6px;
    cursor: pointer;
    z-index: 10;
}

    .map-marker::after {
        content: '';
        position: absolute;
        top: 50%;
        left: 50%;
        margin-left: -50%;
        margin-top: -50%;
        width: 100%;
        height: 100%;
        background-color: rgba(211, 47, 47, 0.6);
        -webkit-border-radius: 50%;
        border-radius: 50%;
        -webkit-animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
        animation: pulse-ring 2s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
    }

@-webkit-keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 350%;
        height: 350%;
        opacity: 0;
    }
}

@keyframes pulse-ring {
    0% {
        width: 100%;
        height: 100%;
        opacity: 1;
    }

    100% {
        width: 350%;
        height: 350%;
        opacity: 0;
    }
}

.map-marker.featured::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    margin-left: -20px;
    margin-top: -20px;
    width: 40px;
    height: 40px;
    background-color: rgba(211, 47, 47, 0.08);
    -webkit-border-radius: 50%;
    border-radius: 50%;
    z-index: -1;
}

.marker-label {
    position: absolute;
    bottom: 22px;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    background-color: #d32f2f;
    color: white;
    padding: 8px 14px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    font-size: 0.8rem;
    white-space: nowrap;
    font-weight: 500;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    pointer-events: none;
}

.map-marker:hover .marker-label,
.map-marker.featured .marker-label {
    opacity: 1;
}

/* BOTTOM STATS SECTION */
.section-container {
    width: 100%;
    min-height: 100vh;
    margin-bottom: 180px;
    overflow: hidden;
}

.image-side {
    float: left;
    width: 50%;
    min-width: 350px;
    position: relative;
    background-color: #f0f0f0;
    height: 100vh;
}

    .image-side img {
        width: 100%;
        height: 100%;
        display: block;
    }

.content-side {
    float: right;
    width: 50%;
    min-width: 350px;
    padding: 5rem 4rem;
    box-sizing: border-box;
}

    .content-side h1 {
        font-size: 3.5rem;
        font-weight: 500;
        line-height: 1.1;
        margin-bottom: 4rem;
        color: #1c1c1c;
        letter-spacing: -0.02em;
    }

.info-grid {
    margin-bottom: 4rem;
    overflow: hidden;
}

.info-text {
    float: left;
    width: 46%;
    margin-right: 4%;
    font-size: 0.95rem;
    color: #4a4a4a;
    font-weight: 400;
    line-height: 1.6;
}

    .info-text:last-child {
        margin-right: 0;
    }

.stats-container {
    padding-top: 2rem;
    border-top: 1px solid transparent;
    overflow: hidden;
}

.stat-item {
    float: left;
    width: 46%;
    margin-right: 4%;
}

    .stat-item:last-child {
        margin-right: 0;
    }

.stat-number {
    display: block;
    font-size: 4.5rem;
    font-weight: 300;
    color: #1c1c1c;
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 1.1rem;
    color: #333;
    font-weight: 400;
}

/* TRUSTED BRANDS SECTION */
.trusted-brands {
    max-width: 1100px;
    margin: 80px auto;
    padding: 60px 20px;
    border-top: 1px solid #e5e5e5;
}

.brands-container {
    text-align: center;
    max-width: 1100px;
    margin: 0 auto;
}

.brand-logo {
    width: 140px;
    height: 90px;
    display: inline-block;
    vertical-align: middle;
    margin: 10px 15px;
    opacity: 0.6;
    -webkit-transition: opacity 0.3s ease, -webkit-transform 0.18s ease;
    transition: opacity 0.3s ease, transform 0.18s ease;
    background: transparent;
    line-height: 90px;
}

    .brand-logo:hover {
        opacity: 1;
        -webkit-transform: translateY(-6px);
        transform: translateY(-6px);
    }

    .brand-logo img {
        max-width: 100%;
        max-height: 100%;
        vertical-align: middle;
        display: inline-block;
    }

/* CONTACT SECTION */
.contact-section {
    max-width: 1300px;
    margin: 80px auto;
    padding: 0 20px;
    overflow: hidden;
}

.contact-info {
    float: left;
    width: 40%;
    padding-top: 20px;
    margin-right: 5%;
}

.contact-details {
    margin-top: 40px;
}

.contact-item {
    margin-bottom: 24px;
}

    .contact-item strong {
        display: block;
        font-size: 13px;
        color: #666;
        margin-bottom: 6px;
        font-weight: 500;
    }

    .contact-item p {
        font-size: 15px;
        color: #111;
    }

.contact-form-wrapper {
    float: right;
    width: 55%;
    background: #f8f8f8;
    padding: 40px;
    /* FIXED: Prefixes */
    -webkit-border-radius: 12px;
    border-radius: 12px;
}

.contact-form textarea {
    width: 100%;
    padding: 12px 16px;
    -webkit-border-radius: 6px;
    border-radius: 6px;
    border: 1px solid #ddd;
    font-size: 14px;
    font-family: inherit;
    outline: none;
    resize: vertical;
    background: #ffffff;
}

    .contact-form textarea:focus {
        border-color: #ff2c2c;
        -webkit-box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
        box-shadow: 0 0 0 3px rgba(255, 44, 44, 0.1);
    }

/* FOOTER */
.footer {
    background: #111111;
    color: #ffffff;
    padding: 60px 20px 30px;
    margin-top: 80px;
}

.footer-container {
    max-width: 1100px;
    margin: 0 auto;
    overflow: hidden;
    margin-bottom: 40px;
}

.footer-section {
    float: left;
    width: 22%;
    margin-right: 4%;
}

    .footer-section:last-child {
        margin-right: 0;
    }

.footer-heading {
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-links {
    list-style: none;
}

    .footer-links li {
        margin-bottom: 10px;
    }

    .footer-links a {
        font-size: 14px;
        color: #aaaaaa;
        -webkit-transition: color 0.3s ease;
        transition: color 0.3s ease;
    }

        .footer-links a:hover {
            color: #ffffff;
        }

.footer-tagline {
    font-size: 13px;
    color: #888;
    margin-top: 12px;
    line-height: 1.5;
}

.footer-bottom {
    max-width: 1100px;
    margin: 0 auto;
    padding-top: 30px;
    border-top: 1px solid #333;
    text-align: center;
}

    .footer-bottom p {
        font-size: 13px;
        color: #888;
    }

/* ANIMATION CLASSES */
.reveal {
    opacity: 0;
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    -webkit-transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
    transition: all 0.8s cubic-bezier(0.5, 0, 0, 1);
}

    .reveal.active {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

.delay-100 {
    -webkit-transition-delay: 0.1s;
    transition-delay: 0.1s;
}

.delay-200 {
    -webkit-transition-delay: 0.2s;
    transition-delay: 0.2s;
}

.delay-300 {
    -webkit-transition-delay: 0.3s;
    transition-delay: 0.3s;
}

.delay-400 {
    -webkit-transition-delay: 0.4s;
    transition-delay: 0.4s;
}

/* RESPONSIVE */
@media (max-width: 768px) {
    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }
}
    .section-title {
        font-size: 48px;
    }

    .car-title {
        font-size: 56px;
    }
}

@media (max-width: 1024px) {
    .content-side h1 {
        font-size: 2.5rem;
    }

    .content-side {
        padding: 3rem;
    }

    .stat-number {
        font-size: 3.5rem;
    }

    .hero-title {
        font-size: 80px;
    }

    .hero-visual-wrapper {
        width: 100%;
        margin-top: -10px;
        height: auto;
    }

    .hero-container-image {
        max-width: 80%;
    }

    .hero {
        min-height: auto;
        padding-bottom: 100px;
    }
}

@media (max-width: 768px) {
    .navbar-inner {
        height: auto;
        text-align: center;
    }

        /* Clearfix for mobile */
        .navbar-inner:after {
            display: none;
        }

    .nav-left,
    .nav-right {
        float: none;
        display: block;
        margin: 10px 0;
    }

    .logo {
        position: static;
        margin: 0 auto;
        display: block;
    }

    .hero {
        padding-top: 140px;
        min-height: auto;
        padding-bottom: 60px;
    }

    .hero-title {
        font-size: 10px;
        margin-bottom: 10px;
    }

    .hero-visual-wrapper {
        margin-top: 0;
        height: auto;
        width: 100%;
    }

    .hero-container-image {
        max-width: 90%;
        -webkit-animation: none;
        animation: none;
     
    }

    .section-left,
    .section > div:nth-child(2) {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .form-row .field {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .delivery-card {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 24px;
    }

    .car-shipping-content {
        display: block;
    }

    .car-image-wrapper {
        position: relative;
        width: 100%;
        height: 300px;
        opacity: 1;
    }

    .car-text-overlay {
        display: block;
        padding: 40px 20px;
        max-width: 100%;
        background: #111;
    }

    .car-title {
        font-size: 32px;
    }

    .header-col,
    .list-col {
        float: none;
        width: 100%;
    }

    .image-side,
    .content-side {
        float: none;
        width: 100%;
        height: auto;
    }

    .image-side {
        height: 300px;
    }

    .content-side {
        padding: 40px 20px;
    }

    .info-text,
    .stat-item {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 20px;
    }

    .footer-section {
        float: none;
        width: 100%;
        margin-right: 0;
        margin-bottom: 30px;
        text-align: center;
    }

    .footer-container {
        margin-bottom: 20px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 36px;
    }

    .section-title {
        font-size: 28px;
    }

    .contact-info,
    .contact-form-wrapper {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    .contact-form-wrapper {
        margin-top: 30px;
        padding: 24px;
    }
}
/* =========================
   GLOBAL RESET
========================= */
 
body {
    font-family: Arial, Helvetica, sans-serif;
    padding-bottom: 80px; /* space for bottom slider */
}

/* =========================
   NAVBAR
========================= */
.navbar {
    background: rgba(250,250,250,0.70);
    width: 100%;
}

.nav-inner {
    max-width: 1200px;
    margin: auto;
    text-align: center;
    position: relative;
}

/* Menu groups */
.nav-left,
.nav-right {
    list-style: none;
    display: inline-block;
    vertical-align: middle;
}

    .nav-left li,
    .nav-right li {
        display: inline-block;
    }

    .nav-left a,
    .nav-right a {
        color: #000080;
        text-decoration: none;
        padding: 18px 15px;
        display: inline-block;
        position: relative;
    }

/* Logo */
.nav-logo {
    display: inline-block;
    vertical-align: middle;
    margin: 0 30px;
}

    .nav-logo a {
        color: #000080;
        font-size: 22px;
        font-weight: bold;
        text-decoration: none;
    }

/* Hover & Active */
.nav-left a:hover,
.nav-right a:hover {
    background: #ffcc00;
}

.nav-left a.active,
.nav-right a.active {
    background: #ffcc00;
    color: #000;
}

/* Animated underline */
.nav-left a::after,
.nav-right a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 5px;
    width: 100%;
    height: 3px;
    background: #000080;
    -webkit-transform: scaleX(0);
    transform: scaleX(0);
    -webkit-transform-origin: left;
    transform-origin: left;
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
}

.nav-left a.active::after,
.nav-right a.active::after,
.nav-left a:hover::after,
.nav-right a:hover::after {
    -webkit-transform: scaleX(1);
    transform: scaleX(1);
}

/* =========================
   INTRO SECTION
========================= */
.intro-text {
    background: #f5f7fb;
    padding: 60px 20px;
    text-align: center;
}

.intro-line {
    font-size: 28px;
    color: #000080;
    margin-bottom: 20px;
    font-weight: 600;
}

.intro-text p {
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    margin-bottom: 10px;
}

.intro-btn {
    display: inline-block;
    margin-top: 25px;
    padding: 12px 32px;
    background: #ffcc00;
    color: #000;
    text-decoration: none;
    font-weight: bold;
}

    .intro-btn:hover {
        background: #e6b800;
    }

/* =========================
   SCROLL ANIMATION
========================= */
.scroll-animate {
    opacity: 0;
    -webkit-transform: translateY(40px);
    transform: translateY(40px);
    -webkit-transition: opacity 0.8s ease, -webkit-transform 0.8s ease;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

    .scroll-animate.active {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

/* =========================
   BOTTOM IMAGE SLIDER
========================= */
.image-slider {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    background: rgba(250,250,250,0.95);
    padding: 10px 0;
    border-top: 1px solid #ddd;
    z-index: 999;
}

.slider-track {
    white-space: nowrap;
    display: inline-block;
    -webkit-animation: scroll-left 25s linear infinite;
    animation: scroll-left 25s linear infinite;
}

    .slider-track img {
        height: 70px;
        margin: 0 30px;
        vertical-align: middle;
    }

    /* Pause on hover (desktop only) */
    .slider-track:hover {
        -webkit-animation-play-state: paused;
        animation-play-state: paused;
    }

/* Animation */
@-webkit-keyframes scroll-left {
    0% {
        -webkit-transform: translate3d(0,0,0);
    }

    100% {
        -webkit-transform: translate3d(-50%,0,0);
    }
}

@keyframes scroll-left {
    0% {
        transform: translate3d(0,0,0);
    }

    100% {
        transform: translate3d(-50%,0,0);
    }
}

/* =========================
   MOBILE FIX (CRITICAL)
========================= */
@media (max-width: 768px) {

    body {
        overflow-x: hidden;
    }

    /* NAVBAR */
    .navbar {
        position: relative;
    }

    .navbar-inner {
        display: flex;
        flex-direction: column;
        align-items: center;
        height: auto;
        padding: 12px;
    }

    .nav-left,
    .nav-right {
        float: none;
        display: flex;
        flex-direction: column;
        width: 100%;
        text-align: center;
    }

    .nav-link {
        margin: 0;
        padding: 12px 0;
    }

    .logo {
        position: static;
        margin: 10px auto;
    }

    /* HERO */
    .hero {
        padding: 120px 16px 60px;
        min-height: auto;
    }

    .hero-title {
        font-size: 34px; /* FIXED */
        line-height: 1.2;
        margin-bottom: 20px;
    }

    .hero-visual-wrapper {
        width: 100%;
        height: auto;
        margin: 0 auto;
    }

    .hero-container-image {
        max-width: 100%;
        height: auto;
        animation: none;
    }

    /* SECTIONS */
    .section,
    .top-section,
    .contact-section,
    .footer-container {
        display: block;
    }

        .section-left,
        .section > div:nth-child(2),
        .header-col,
        .list-col,
        .contact-info,
        .contact-form-wrapper {
            float: none;
            width: 100%;
            margin: 0;
        }

    /* CAR SECTION */
    .car-image-wrapper {
        position: relative;
        width: 100%;
        height: 250px;
    }

    .car-text-overlay {
        padding: 30px 20px;
    }

    /* DELIVERY CARDS */
    .delivery-card {
        float: none;
        width: 100%;
        margin-right: 0;
    }

    /* FOOTER */
    .footer-section {
        float: none;
        width: 100%;
        text-align: center;
        margin-bottom: 24px;
    }
}
