/* ===========================
   RESET
=========================== */

*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    padding:0;
    font-family:"Outfit","Noto Sans JP",sans-serif;
    color:#222;
    background:#fff;
    overflow-x:hidden;
    width: 100%;
}

.container{
    width:90%;
    max-width:1200px;
    margin:0 auto;
}

/* ===========================
   HEADER
=========================== */


header{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height: 95px;

    display:flex;
    justify-content:space-between;
    align-items:center;

    padding:0 60px;

    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);

    box-shadow:0 10px 30px rgba(0,0,0,.08);
    z-index:1000;
    backdrop-filter:blur(10px);
     -webkit-backdrop-filter:blur(10px);
    transition:
      background .35s,
      height .35s,
      box-shadow .35s;
}

/* Logo */

.logo{

    display:flex;
    align-items:center;

}

.logo img{
    height:70px;
    display:block;
    transition:transform .35s ease, filter .35s ease;
}

.logo:hover img{
    transform:scale(1.05);
    filter:drop-shadow(0 8px 18px rgba(0,0,0,.18));
}

.logo img:hover{

    transform:scale(1.05);

}



/* Navigation */

nav a{

    position:relative;

    text-decoration:none;

    color:#222;

    font-size:16px;

    font-weight:700;

    letter-spacing:0.3px;
    white-space:nowrap;
    transition:.3s;
    display:inline-block;
    padding:10px 0;
    transition:all .3s ease;
    padding:10px 0;
    transition:all .3s ease;
}
nav{
    display:flex;
    align-items:center;
    justify-content:center;
    gap:35px;
    flex:1;
    margin:0 40px;
}
nav a:hover::after,
nav a.active::after{

    width:100%;

}

nav a::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:-8px;
    width:0;
    height:3px;
    background:#d4af37;
    border-radius:10px;
    transform:translateX(-50%);
    transition:width .35s ease;
}

nav a:hover::after,
nav a.active::after{
    width:100%;
}

nav a:hover{
    color:#d4af37;
}



/* Right */


/* Right Side */

.header-right{
    display:flex;
    align-items:center;
    gap:15px;
}

.language-btn{
    text-decoration:none;
    color:#222;
    font-weight:600;
}

/* ==========================================
   HEADER PHONE BUTTON
   Premium gold button
   ========================================== */

.phone-btn{
    display:flex;
    align-items:center;
    gap:8px;
    background:linear-gradient(135deg,#d4af37,#b8860b);
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:all .35s ease;
    box-shadow:0 8px 20px rgba(212,175,55,.25);
}

.phone-btn:hover{
    transform:translateY(-3px);
    box-shadow:0 15px 30px rgba(212,175,55,.35);
}

/* ==========================================
   HEADER LINE BUTTON
   ========================================== */

.line-header{
    display:flex;
    align-items:center;
    justify-content:center;
    background:#06C755;
    color:#fff;
    padding:12px 22px;
    border-radius:50px;
    text-decoration:none;
    font-weight:700;
    transition:.35s;
}

.line-header:hover{
    transform:translateY(-3px);
    background:#04b34c;
}

/* Mobile Menu */

.menu-toggle{
    display:none;
    font-size:32px;
    cursor:pointer;
}

/* Mobile Extra */

.mobile-header-right{
    display:none;
}

/* ===========================
   MOBILE
=========================== */

@media(max-width:768px){

    header{
        height:75px;
        padding:0 20px;
    }

   .logo img{

    height:68px;

    transition:.3s;

}

.logo img:hover{

    transform:scale(1.05);

}

    nav{

    display:flex;
    align-items:center;
    gap:30px;

}

    nav.active{
        display:flex;
    }

    .menu-toggle{
        display:block;
    }

    .header-right{
        display:none;
    }

    .mobile-header-right{
        display:flex;
        flex-direction:column;
        gap:15px;
        width:100%;
        margin-top:20px;
        border-top:1px solid #ddd;
        padding-top:20px;
    }

    .mobile-header-right a{
        text-align:center;
    }

}
@media (max-width:991px){

    nav{
        display:none;
        position:absolute;
        top:95px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        align-items:center;
        gap:20px;
        padding:30px 20px;
        box-shadow:0 10px 30px rgba(0,0,0,.12);
    }

    nav.active{
        display:flex;
    }

    .header-right{
        display:none;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
        cursor:pointer;
    }

    .mobile-header-right{
        display:flex;
        flex-direction:column;
        gap:15px;
        width:100%;
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid #ddd;
        align-items:center;
    }

}
/* ===========================
   HERO SECTION
=========================== */

.hero{
    position:relative;
    height:100vh;
    background:url("images/hero.jpg") center center/cover no-repeat;
    display:flex;
    align-items:center;
    padding:0 6%;
    margin-top:90px;
    background-position:center;
    background-size:cover;
    transition:background-position 0.3s ease-out;
}

/* ==========================================
   HERO OVERLAY
   ========================================== */

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.50);
    pointer-events:none;
}

.hero-content{
    position:relative;
    z-index:2;
    max-width:760px;
    color:#fff;
    margin-top:100px;
    animation:heroFade 1.2s ease;
}

.hero-content > .hero-tag{
    color:#d4af37;
    font-size:18px;
    letter-spacing:4px;
    font-weight:700;
}

.hero-content p{
    font-size:20px;
    line-height:1.8;
    margin-bottom:40px;
}

.hero-buttons{
    display:flex;
    gap:20px;
    flex-wrap:wrap;
}



/* ==========================================
   HERO IMAGE ANIMATION
   Smooth zoom effect
   ========================================== */

.hero{
    overflow:hidden;
}

.hero::before{
    animation:heroZoom 12s ease-in-out infinite alternate;
}

@keyframes heroZoom{
    from{
        transform:scale(1);
    }
    to{
        transform:scale(1.08);
    }
}

@keyframes heroZoom{

    from{

        background-size:100%;

    }

    to{

        background-size:108%;

    }

}

.gold-btn,

.white-btn{
    display:inline-block;
    padding:15px 35px;
    border-radius:8px;
    text-decoration:none;
    font-weight:600;
    transition:.3s;
}

.gold-btn{

    background:linear-gradient(135deg,#d4af37,#b88f22);

    color:#fff;

    padding:18px 42px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    letter-spacing:.5px;

    text-decoration:none;

    box-shadow:0 12px 30px rgba(212,175,55,.35);

    transition:.35s;
    position:relative;
    overflow:hidden;

}

.gold-btn:hover{

    transform:translateY(-5px);

    box-shadow:0 18px 40px rgba(212,175,55,.45);

}
.gold-btn::before{

    content:"";

    position:absolute;

    top:0;

    left:-120%;

    width:70%;

    height:100%;

    background:linear-gradient(
        120deg,
        transparent,
        rgba(255,255,255,.45),
        transparent
    );

    transition:.8s;

}

.gold-btn:hover::before{

    left:130%;

}

.white-btn{

    background:rgba(255,255,255,.95);

    color:#222;

    padding:18px 42px;

    border-radius:50px;

    font-size:17px;

    font-weight:700;

    text-decoration:none;

    transition:.35s;

}

.white-btn:hover{
    background:#f2f2f2;
    transform:translateY(-3px);
}

/* Animation */

@keyframes fadeUp{

    from{
        opacity:0;
        transform:translateY(40px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

/* Mobile */

@media(max-width:768px){

    .hero{
        min-height: 100vh;
        height: auto;
        padding:120px 20ox 60px;
        
    }

    .hero-content{
        text-align:center;
        max-width:100%;
    }

    /* ==========================================
   HERO TITLE LAYOUT
   ========================================== */


    .hero-content p{
        font-size:16px;
    }

    .hero-buttons{
        justify-content:center;
        flex-direction:column;
    }

    .gold-btn,
    .white-btn{
        width:100%;
        text-align:center;
    }

}
/* ===========================
   SERVICES
=========================== */

.services{
    padding:100px 6%;
    background:#f8f9fa;
}



.services-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}



/* Mobile */

@media(max-width:768px){

.service-grid{

grid-template-columns:1fr;

}

.services{

padding:70px 20px;

}

.services-title h2{

font-size:34px;

}

}
/* ===========================
   FEATURED VEHICLES
=========================== */

.featured{
    padding:100px 6%;
    background:#fff;
}


.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:35px;
}



/* Mobile */

@media(max-width:768px){

    .vehicle-grid{
        grid-template-columns:1fr;
    }

    .featured{
        padding:70px 20px;
    }

    .featured-title h2{
        font-size:34px;
    }

}
/* ===========================
   WHY CHOOSE US
=========================== */

.why{
    background:#111;
    color:#fff;
    padding:100px 6%;
}

.why-title{
    text-align:center;
    margin-bottom:60px;
}

.why-title span{
    color:#d4af37;
    font-weight:700;
    letter-spacing:3px;
}

.why-title h2{
    font-size:42px;
    margin-top:15px;
}

.why-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
}

.why-card{
    background:#1d1d1d;
    padding:40px 30px;
    border-radius:18px;
    text-align:center;
    transition:.35s;
    border:1px solid rgba(255,255,255,.08);
}

.why-card:hover{
    transform:translateY(-10px);
    background:#262626;
}

.why-card i{
    font-size:48px;
    color:#d4af37;
    margin-bottom:20px;
}

.why-card h3{
    margin-bottom:15px;
    font-size:24px;
}

.why-card p{
    color:#ccc;
    line-height:1.8;
}

/* Mobile */

@media(max-width:768px){

    .why{
        padding:70px 20px;
    }

    .why-grid{
        grid-template-columns:1fr;
    }

    .why-title h2{
        font-size:34px;
    }

}
/* ===========================
   ABOUT CDL JAPAN
=========================== */

.company{
    padding:100px 6%;
    background:#fff;
}

.company-content{
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:70px;
}

.company-image{
    flex:1;
    overflow:hidden;
    border-radius:20px;
}

.company-image img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.5s;
}

.company-image:hover img{
    transform:scale(1.08);
}

.company-text{
    flex:1;
}

.company-text span{
    display:inline-block;
    color:#c59d2f;
    font-weight:700;
    letter-spacing:3px;
    margin-bottom:15px;
}

.company-text h2{
    font-size:42px;
    margin-bottom:25px;
    line-height:1.3;
}

.company-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:35px;
    font-size:17px;
}



/* Mobile */

@media(max-width:768px){

    .company{
        padding:70px 20px;
    }

    .company-content{
        flex-direction:column;
        gap:40px;
    }

    .company-text{
        text-align:center;
    }

    .company-text h2{
        font-size:34px;
    }

}
/* ===========================
   CALL TO ACTION
=========================== */

.cta{
    padding:100px 6%;
    background:linear-gradient(135deg,#b88a1b,#d4af37);
    color:#fff;
    text-align:center;
}

.cta h2{
    font-size:46px;
    margin-bottom:20px;
}

.cta p{
    font-size:18px;
    line-height:1.8;
    max-width:700px;
    margin:0 auto 40px;
}

.cta-buttons{
    display:flex;
    justify-content:center;
    gap:20px;
    flex-wrap:wrap;
}

.cta .gold-btn{
    background:#d4af37;
    color:#fff;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.cta .gold-btn:hover{
    background:#333;
    transform:translateY(-3px);
}

.cta .white-btn{
    background:#fff;
    color:#111;
    padding:16px 35px;
    border-radius:8px;
    text-decoration:none;
    transition:.3s;
}

.cta .white-btn:hover{
    background:#f2f2f2;
    transform:translateY(-3px);
}

@media(max-width:768px){

    .cta{
        padding:70px 20px;
    }

    .cta h2{
        font-size:34px;
    }

    .cta-buttons{
        flex-direction:column;
    }

    .cta .gold-btn,
    .cta .white-btn{
        width:100%;
    }

}
/* ===========================
   FOOTER
=========================== */

/*======================
        FOOTER
=======================*/

.footer{

    background:#111;
    color:#ddd;
    padding:80px 8% 25px;
    

}

.footer-container{

    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:60px;

}

.footer-col h3{

    color:#d4af37;
    font-size:24px;
    margin-bottom:25px;

}

.footer-col p{

    color:#bbb;
    line-height:1.9;
    margin-bottom:15px;

}

.footer-col strong{

    color:#fff;

}

.footer-col ul{

    list-style:none;
    padding:0;
    margin:0;

}

.footer-col ul li{

    margin-bottom:15px;

}

.footer-col ul li a{

    color:#bbb;
    text-decoration:none;
    transition:.3s;

}

.footer-col ul li a:hover{

    color:#d4af37;
    padding-left:5px;

}

.social-links{

    display:flex;
    flex-direction:column;
    gap:15px;

}

.social-links a{

    color:#bbb;
    text-decoration:none;
    transition:.3s;

}

.social-links a:hover{

    color:#d4af37;
    padding-left:5px;

}

.footer-bottom{

    margin-top:60px;
    padding-top:25px;
    border-top:1px solid #333;

    text-align:center;
    margin-bottom:0;
    color:#888;
    font-size:15px;

}
@media(max-width:992px){

    .footer-container{

        grid-template-columns:1fr 1fr;

    }

}

@media(max-width:768px){

    .footer{

        text-align:center;
        padding:60px 20px 20px;

    }

    .footer-container{

        grid-template-columns:1fr;
        gap:40px;

    }

    .social-links{

        align-items:center;

    }

}

/* ===========================
   FLOATING LINE
=========================== */

.line-floating{

    position:fixed;

    bottom:95px;

    right:30px;

    width:60px;

    height:60px;

    border-radius:50%;

    background:#06C755;

    display:flex;

    justify-content:center;

    align-items:center;

    color:white;

    text-decoration:none;

    font-weight:bold;

    box-shadow:0 10px 25px rgba(0,0,0,.25);

    transition:.3s;

    z-index:999;

}

.line-floating:hover{

    transform:scale(1.1);

}
/* ===========================
   VEHICLES PAGE
=========================== */

.vehicles-page{
    padding:150px 6% 100px;
    background:#f8f9fa;
}

.vehicles-page h1{
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
}

.vehicles-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

.search-box{
    width:100%;
    max-width:450px;
    margin:0 auto 40px;
    display:block;
    padding:15px 20px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
    outline:none;
    transition:.3s;
}

.search-box:focus{
    border-color:#c59d2f;
    box-shadow:0 0 10px rgba(197,157,47,.2);
}

.filter-buttons{
    display:flex;
    justify-content:center;
    flex-wrap:wrap;
    gap:15px;
    margin-bottom:50px;
}

.filter-btn{
    padding:12px 28px;
    border:none;
    border-radius:30px;
    background:#eee;
    cursor:pointer;
    font-weight:600;
    transition:.3s;
}

.filter-btn:hover,
.filter-btn.active{
    background:#c59d2f;
    color:#fff;
}

.vehicle-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

.vehicle-card{

    background:#fff;
    border-radius:18px;
    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:
        transform .45s ease,
        box-shadow .45s ease;

    position:relative;
}

.vehicle-card:hover{

    transform:translateY(-12px);

    box-shadow:
        0 20px 50px rgba(0,0,0,.18);

}


/* Mobile */

@media(max-width:768px){

    .vehicles-page{
        padding:120px 20px 70px;
    }

    .vehicles-page h1{
        font-size:36px;
    }

    .search-box{
        width:100%;
    }

    .vehicle-grid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   VEHICLE DETAILS PAGE
=========================== */

.vehicle-details-page{
    padding:150px 6% 100px;
    background:#fff;
}

.vehicle-details-page h1{
    text-align:center;
    font-size:46px;
    margin-bottom:60px;
}

.vehicle-details{
    display:grid;
    grid-template-columns:1.2fr 1fr;
    gap:70px;
    align-items:center;
}

.details-image{
    overflow:hidden;
    border-radius:20px;
}

.details-image img{
    width:100%;
    display:block;
    border-radius:20px;
    transition:.4s;
}

.details-image:hover img{
    transform:scale(1.05);
}

.details-info h1{
    font-size:42px;
    margin-bottom:20px;
    line-height:1.3;
}

.details-info h2{
    color:#c59d2f;
    font-size:34px;
    margin-bottom:30px;
}

.details-info p{
    font-size:18px;
    color:#555;
    margin-bottom:15px;
    line-height:1.8;
}

.details-info strong{
    color:#222;
}

.contact-btn{
    display:inline-block;
    margin-top:30px;
    padding:16px 35px;
    background:#c59d2f;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    font-weight:600;
    transition:.3s;
}

.contact-btn:hover{
    background:#a88422;
    transform:translateY(-3px);
}

/* ===========================
   RELATED VEHICLES
=========================== */

.related-section{
    padding:100px 6%;
    background:#f8f9fa;
}

.related-section h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.related-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(280px,1fr));
    gap:35px;
}

/* Mobile */

@media(max-width:768px){

    .vehicle-details-page{
        padding:120px 20px 70px;
    }

    .vehicle-details{
        grid-template-columns:1fr;
        gap:40px;
    }

    .details-info{
        text-align:center;
    }

    .details-info h1{
        font-size:34px;
    }

    .details-info h2{
        font-size:28px;
    }

    .related-section{
        padding:70px 20px;
    }

    .related-section h2{
        font-size:34px;
    }

}
/* ===========================
   PURCHASE PAGE
=========================== */

.purchase-hero{
    min-height: 75vh;

    padding: 95px 20px 40px;

    background: url("images/purchase-desktop.jpg") center 35% / cover no-repeat;

    position: relative;

    display: flex;
    justify-content: center;
    align-items: center;
}

.purchase-hero::before{
    content: "";
    position: absolute;
    inset: 0;

    background: linear-gradient(
        rgba(0,0,0,.55),
        rgba(0,0,0,.45)
    );
}

.purchase-overlay{
    position: relative;
    z-index: 10;

    width: 100%;
    max-width: 650px;

    margin: 0 auto;
    padding: 20px;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;

    animation: heroFloat 5s ease-in-out infinite;
}

.purchase-overlay h1{
    display:block;

width:100%;

text-align:center;
    font-size: 75px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 2px;
    margin-bottom: 20px;
    

    color: #fff;

    text-shadow:
        0 4px 15px rgba(0,0,0,.45);
}

.purchase-overlay h1::after{

content:"";
display:block;

width:90px;
height:4px;

background:#d4af37;

margin:18px auto 0;

border-radius:30px;

}
/* ===== Purchase Hero Mobile ===== */

@media(max-width:768px){

.purchase-overlay{

width:100%;
max-width:100%;

margin:0 auto;
padding:0 25px;

left:auto;
top:auto;

transform:none;

text-align:center;
align-items:center;

}

}

.purchase-overlay p{
    font-size: 28px;
    font-weight: 500;
    line-height: 1.8;

    color: rgba(255,255,255,.95);

    text-shadow:
        0 2px 10px rgba(0,0,0,.55);

    margin: 25px 0 35px;
}

.hero-btn{
    display: inline-block;

    padding: 18px 55px;

    background: #d4af37;
    color: #fff;

    font-size: 20px;
    font-weight: 700;

    border-radius: 50px;

    text-decoration: none;

    transition: all .35s ease;

    box-shadow: 0 10px 25px rgba(212,175,55,.35);
}
/* ===== Hero Floating Animation ===== */

@keyframes heroFloat{

    0%{
        transform:translateY(0);
    }

    50%{
        transform:translateY(-8px);
    }

    100%{
        transform:translateY(0);
    }

}



.hero-btn:hover{
    background: #b89024;
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(212,175,55,.45);
}
@media (max-width:768px){

    .hero-btn{
        width:100%;
        max-width:320px;

        text-align:center;

        padding:16px 30px;

        font-size:18px;
    }

}

/* Purchase Results */

.purchase-results{
    padding:100px 6%;
    background:#fff;
}

.purchase-results h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.purchase-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}



.purchase-card:hover{
    transform:translateY(-10px);
}

.purchase-card img{
    width:100%;
    height:220px;
    object-fit:cover;
}

.purchase-card h3{
    margin:20px;
}

.purchase-card p{
    margin:0 20px 25px;
    color:#666;
}

/* Purchase Flow */

.purchase-flow{
    padding:100px 6%;
    background:#f8f9fa;
}

.purchase-flow h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}
/* =========================================
  Purchase  Title Gold Underline
========================================= */
.purchase-flow h2::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg,#c59d2f);
    border-radius: 50px;

}




.flow-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.flow-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.flow-card:hover{
    transform:translateY(-8px);
}

.step-number{
    width:70px;
    height:70px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#c59d2f;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:28px;
    font-weight:bold;
}

/* Purchase Form */

.purchase-contact{
    padding:100px 6%;
    background:#fff;
}

.purchase-contact h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.purchase-form{
    max-width:800px;
    margin:auto;
    display:flex;
    flex-direction:column;
    gap:20px;
}

.purchase-form input,
.purchase-form textarea{
    padding:16px;
    border:1px solid #ddd;
    border-radius:10px;
    font-size:16px;
}

.purchase-form input:focus,
.purchase-form textarea:focus{
    border-color:#c59d2f;
    outline:none;
}

.purchase-form button{
    padding:18px;
    border:none;
    background:#c59d2f;
    color:#fff;
    border-radius:10px;
    cursor:pointer;
    font-size:18px;
    transition:.3s;
}

.purchase-form button:hover{
    background:#a88422;
}

/* Mobile */

@media(max-width:768px){

    .purchase-overlay h1{
        font-size:38px;
    }

    .purchase-overlay p{
        font-size:16px;
    }

    .purchase-results,
    .purchase-flow,
    .purchase-contact{
        padding:70px 20px;
    }

    .purchase-results h2,
    .purchase-flow h2,
    .purchase-contact h2{
        font-size:34px;
    }

}
/* =========================================
 Title Gold Underline
========================================= */
.purchase-results h2::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg,#c59d2f);
    border-radius: 50px;

}

/* ===========================
   TRUCKS PAGE
=========================== */

.trucks-page{
    padding:150px 6% 100px;
    background:#f8f9fa;
}

.trucks-page h1{
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
}

.trucks-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

#truckGrid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(320px,1fr));
    gap:35px;
}

#truckGrid .vehicle-card{
    background:#fff;
    border-radius:18px;
    overflow:hidden;
    box-shadow:0 12px 35px rgba(0,0,0,.08);
    transition:.35s;
}

#truckGrid .vehicle-card:hover{
    transform:translateY(-10px);
    box-shadow:0 20px 45px rgba(0,0,0,.15);
}

#truckGrid img{
    width:100%;
    height:230px;
    object-fit:cover;
    transition:.4s;
}

#truckGrid .vehicle-card:hover img{
    transform:scale(1.08);
}

#truckGrid h3{
    font-size:24px;
    margin:20px;
}

#truckGrid p{
    margin:0 20px 15px;
    color:#666;
}

#truckGrid a{
    display:inline-block;
    margin:15px 20px 25px;
    padding:12px 25px;
    background:#c59d2f;
    color:#fff;
    text-decoration:none;
    border-radius:8px;
    transition:.3s;
}

#truckGrid a:hover{
    background:#a88422;
}

/* Mobile */

@media(max-width:768px){

    .trucks-page{
        padding:120px 20px 70px;
    }

    .trucks-page h1{
        font-size:36px;
    }

    #truckGrid{
        grid-template-columns:1fr;
    }

}
/* ===========================
   EXPORT PAGE
=========================== */

.export-hero{
    position:relative;
    height:550px;
    width: 100%;
    height: 700px; 
    background:url("images/export-banner.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
    background-position: center;
    
}

.export-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.export-overlay{
    position: relative;
    z-index: 2;

    max-width: 900px;

    padding: 50px 60px;

    background: rgba(0,0,0,0.35);

    backdrop-filter: blur(6px);

    border-radius: 20px;

    color: #fff;
}

/* ===== Export Hero Title ===== */

.export-overlay h1{
    font-size: 78px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;

    color: #ffffff;

    text-shadow:
        0 3px 10px rgba(0,0,0,.6),
        0 8px 25px rgba(0,0,0,.5);
}

/* ===== Export Hero Subtitle ===== */

.export-overlay p{
    font-size: 30px;
    font-weight: 500;
    line-height: 1.8;

    color: rgba(255,255,255,.95);

    text-shadow:
        0 2px 8px rgba(0,0,0,.6);

    margin: 0;
}

.export-process{
    padding: 100px 6%;
    background: #fff;
    text-align: center;
}

.export-process h2{
    position: relative;
    display: inline-block;
    font-size: 42px;
    font-weight: 700;
    color: #0d2d62;
    margin-bottom: 60px;
    padding-bottom: 15px;
}

.export-process h2::after{
    content: "";
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);

    width: 80px;
    height: 4px;

    background: #d4af37;
    border-radius: 10px;
}
/* ===== Export Hero Title Underline ===== */

.export-overlay h1::after{
    content: "";
    display: block;

    width: 100px;
    height: 5px;

    margin: 20px auto 0;

    background: #d4af37;
    border-radius: 10px;
}

/* ===== Hero Text Animation ===== */

.export-overlay{
    animation: heroFade 1.2s ease;
}

@keyframes heroFade{

    from{
        opacity:0;
        transform:translateY(30px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }

}

.process-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(250px,1fr));
    gap:30px;
}

.process-card{
    background:#fff;
    padding:35px;
    border-radius:18px;
    text-align:center;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
    transition:.3s;
}

.process-card:hover{
    transform:translateY(-10px);
}

.process-number{
    width:65px;
    height:65px;
    margin:0 auto 20px;
    border-radius:50%;
    background:#c59d2f;
    color:#fff;
    display:flex;
    justify-content:center;
    align-items:center;
    font-size:24px;
    font-weight:bold;
}

.export-countries{
    padding:100px 6%;
    background:#f8f9fa;
}

.export-countries h2{
    text-align:center;
    font-size:42px;
    margin-bottom:60px;
}

.country-grid{
    display:grid;
    grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
    gap:25px;
}

.country-card{
    background:#fff;
    padding:30px;
    border-radius:15px;
    text-align:center;
    font-weight:600;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.3s;
}

.country-card:hover{
    background:#c59d2f;
    color:#fff;
    transform:translateY(-8px);
}

@media(max-width:768px){

    .export-overlay h1{
        font-size:38px;
    }

    .export-overlay p{
        font-size:16px;
    }

    .export-process,
    .export-countries{
        padding:70px 20px;
    }

    .export-process h2,
    .export-countries h2{
        font-size:34px;
    }

}
/* ===========================
   ABOUT PAGE
=========================== */

.about-hero{
    position:relative;
    height:580px;
    background:url("images/about-hero.jpg") center center/cover no-repeat;
    display:flex;
    justify-content:center;
    align-items:center;
    text-align:center;
}

.about-hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,0,0,.55);
}

.about-overlay{
    position:relative;
    z-index:2;
    color:#fff;
    max-width:750px;
    padding:20px;
}

.hero-subtitle{
    display:inline-block;
    color:#d4af37;
    font-size:18px;
    letter-spacing:4px;
    margin-bottom:15px;
    font-weight:700;
}

.about-overlay h1{
    font-size:58px;
    margin-bottom:20px;
}

.about-overlay p{
    font-size:20px;
    line-height:1.8;
}

/* Company */

.about-company{
    padding:100px 6%;
    background:#fff;
}

.about-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:70px;
    align-items:center;
}

.about-image img{
    width:100%;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

.section-tag{
    color:#c59d2f;
    font-weight:700;
    letter-spacing:3px;
}

.about-text h2{
    font-size:42px;
    margin:20px 0;
}

.about-text p{
    color:#666;
    line-height:1.9;
    margin-bottom:20px;
}

.about-features{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:15px;
    margin-top:30px;
}

.about-features div{
    background:#f8f9fa;
    padding:15px;
    border-left:4px solid #c59d2f;
    border-radius:8px;
    font-weight:600;
}

/* Company Profile */

.company-profile{
    padding:100px 6%;
    background:#f8f9fa;
}

.company-profile h2{
    text-align:center;
    font-size:42px;
    margin-bottom:50px;
}

.profile-table{
    width:100%;
    max-width:900px;
    margin:auto;
    border-collapse:collapse;
    background:#fff;
    border-radius:15px;
    overflow:hidden;
    box-shadow:0 10px 30px rgba(0,0,0,.08);
}

.profile-table th{
    width:220px;
    background:#c59d2f;
    color:#fff;
}

.profile-table th,
.profile-table td{
    padding:18px;
    border:1px solid #eee;
}

/* Google Map */

.company-map{
    padding:100px 6%;
}

.company-map h2{
    text-align:center;
    font-size:42px;
    margin-bottom:20px;
}

.map-text{
    text-align:center;
    color:#666;
    margin-bottom:40px;
}

.map-container{
    overflow:hidden;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.12);
}

/* Mobile */

@media(max-width:768px){

    .about-hero{
        height:320px;
    }

    .about-overlay h1{
        font-size:38px;
    }

    .about-overlay p{
        font-size:16px;
    }

    .about-grid{
        grid-template-columns:1fr;
    }

    .about-company,
    .company-profile,
    .company-map{
        padding:70px 20px;
    }

    .about-text{
        text-align:center;
    }

    .about-features{
        grid-template-columns:1fr;
    }

    .profile-table{
        font-size:14px;
    }

    .profile-table th,
    .profile-table td{
        padding:12px;
    }

}
/* ===========================
   CONTACT PAGE
=========================== */

.contact-section{
    padding:150px 6% 100px;
    background:#f8f9fa;
}

.contact-section h1{
    text-align:center;
    font-size:48px;
    margin-bottom:20px;
}
/* =========================================
 Title Gold Underline
========================================= */
.contact-section h1::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg,#c59d2f);
    border-radius: 50px;

}


.contact-subtitle{
    text-align:center;
    color:#666;
    margin-bottom:60px;
}

.contact-wrapper{

    display:grid;
    grid-template-columns:1fr 1fr;
    gap:60px;
    align-items:start;

}

.contact-info{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-info h2{

    margin-bottom:25px;
    color:#c59d2f;

}

.contact-info p{

    margin:18px 0;
    line-height:1.8;
    color:#555;

}

.contact-form{

    background:#fff;
    padding:40px;
    border-radius:20px;
    box-shadow:0 15px 40px rgba(0,0,0,.08);

}

.contact-form input,
.contact-form textarea,
.contact-form select{

    width:100%;
    padding:16px;
    margin-bottom:20px;

    border:1px solid #ddd;
    border-radius:10px;

    font-size:16px;

    transition:.3s;

}

.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus{

    border-color:#c59d2f;

    outline:none;

    box-shadow:0 0 12px rgba(197,157,47,.15);

}

.contact-form textarea{

    min-height:180px;
    resize:vertical;

}

.contact-form button{

    width:100%;

    padding:18px;

    background:#c59d2f;

    color:#fff;

    border:none;

    border-radius:10px;

    font-size:18px;

    cursor:pointer;

    transition:.3s;

}

.contact-form button:hover{

    background:#a88422;

    transform:translateY(-2px);

}

@media(max-width:768px){

.contact-section{

padding:120px 20px 70px;

}

.contact-wrapper{

grid-template-columns:1fr;

}

.contact-section h1{

font-size:36px;

}

}
/* ===========================
   PREMIUM VEHICLE CARDS
=========================== */

.vehicle-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.vehicle-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.18);

}

.vehicle-image{

    position:relative;

    overflow:hidden;

}

.vehicle-image img{

    width:100%;
    height:240px;

    object-fit:cover;

    transition:
        transform .6s ease,
        filter .6s ease;

}

.vehicle-card:hover .vehicle-image img{

    transform:scale(1.08);

    filter:brightness(1.08);

}
.vehicle-badge{

    position:absolute;

    top:15px;

    left:15px;

    background:#d4af37;

    color:#fff;

    padding:8px 16px;

    border-radius:30px;

    font-size:13px;

    font-weight:700;

}

.vehicle-content{

    padding:25px;

}

.vehicle-content h3{

    font-size:24px;

    margin-bottom:20px;

    color:#222;

}

.vehicle-info{

    display:flex;

    justify-content:space-between;

    margin-bottom:25px;

    color:#666;

    font-size:15px;

}

.details-btn{

    display:block;

    width:100%;

    text-align:center;

    background:#c59d2f;

    color:#fff;

    text-decoration:none;

    padding:14px;

    border-radius:8px;

    font-weight:600;

    
    transition:all .35s ease;

}

.details-btn:hover{

    background:#a88422;
    transform:translateY(-3px);

}
/* ===========================
   SERVICES
=========================== */

.service-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

    text-decoration:none;

    display:block;

}
.service-card img{

    width:100%;

height:300px;
object-fit:cover;
object-position:center;

    display:block;

    transition:.4s;

}
.service-card:hover img{

    transform:scale(1.08);

}
.service-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}
.service-text{

    padding:25px;

}

.service-text h3{

    font-size:24px;

    color:#222;

    margin-bottom:15px;

}

.service-text p{

    color:#666;

    line-height:1.8;

    font-size:16px;

}
/* ===========================
   SERVICES SECTION
=========================== */

.services-section{

    padding:100px 6%;

    background:#f8f9fa;

}

.section-title{

    text-align:center;

    margin-bottom:60px;

}

.section-title span{

    color:#c59d2f;

    font-weight:700;

    letter-spacing:3px;

}

.section-title h2{

    font-size:42px;

    margin-top:15px;

}
.services-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    align-items:stretch;

}

.service-card{

    display:flex;

    flex-direction:column;

    height:100%;

}

.service-text{

    flex:1;

    display:flex;

    flex-direction:column;

    justify-content:space-between;

}
/* ===========================
   PURCHASE FLOW
=========================== */

.flow-section{

    padding:100px 6%;

    background:#ffffff;

}

.flow-grid{

    display:grid;

    grid-template-columns:repeat(4,1fr);

    gap:30px;

    margin-top:60px;

}

.flow-card{

    background:#fff;

    border-radius:18px;

    padding:40px 30px;

    text-align:center;

    box-shadow:0 12px 30px rgba(0,0,0,.08);

    transition:.35s;

}
.flow-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.flow-number{

    width:70px;

    height:70px;

    margin:0 auto 25px;

    background:#c59d2f;

    color:#fff;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:24px;

    font-weight:700;

}

.flow-card h3{

    font-size:24px;

    margin-bottom:15px;

    color:#222;

}

.flow-card p{

    color:#666;

    line-height:1.8;

}
/* ===========================
   PURCHASE CATEGORY
=========================== */

.purchase-category{

    padding:100px 6%;

    background:#fff;

}

.purchase-category .section-title{

    text-align:center;

    margin-bottom:60px;

}

.purchase-category .section-title p{

    margin-top:20px;

    color:#666;

    font-size:17px;

    line-height:1.8;

}

.purchase-grid{

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:35px;

    margin-top:60px;

}

.purchase-card{

    background:#fff;

    border-radius:18px;

    overflow:hidden;

    box-shadow:0 10px 30px rgba(0,0,0,.08);

    transition:.35s;

}

.purchase-card:hover{

    transform:translateY(-10px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.purchase-card img{

    width:100%;

    height:230px;

    object-fit:cover;

}

.purchase-card h3{

    padding:20px;

    text-align:center;

}

@media(max-width:768px){

    .purchase-grid{

        grid-template-columns:1fr;

    }

}
/* ================= WHY CHOOSE US ================= */

.why-section{

    padding:100px 8%;
    background:#f8f8f8;

}

.why-grid{

    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:30px;
    margin-top:60px;

}

.why-card{

    background:#1d1d1d;
    color:#fff;
    border-radius:20px;
    padding:40px 30px;
    text-align:center;
    transition:.35s;
    border-top:5px solid #d4af37;
    box-shadow:0 10px 25px rgba(0,0,0,.15);

}

.why-card:hover{

    transform:translateY(-10px);
    box-shadow:0 18px 40px rgba(0,0,0,.25);

}

.why-icon{

    font-size:50px;
    margin-bottom:20px;

}

.why-card h3{

    font-size:24px;
    margin-bottom:15px;
    color:#fff;

}

.why-card p{

    font-size:16px;
    color:#d8d8d8;
    line-height:1.8;

}

@media(max-width:992px){

    .why-grid{

        grid-template-columns:repeat(2,1fr);

    }

}

@media(max-width:768px){

    .why-grid{

        grid-template-columns:1fr;

    }

}
/*================ REVIEWS ================*/

.review-section{

    padding:100px 8%;
    background:#fff;

}

.review-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:30px;
}
@media(max-width:992px){

.review-grid{

grid-template-columns:repeat(2,1fr);

}

}

@media(max-width:768px){

.review-grid{

grid-template-columns:1fr;

}

}

.review-card{

    background:#f8f8f8;
    border-radius:20px;
    padding:40px;
    box-shadow:0 10px 25px rgba(0,0,0,.08);
    transition:.35s;

}

.review-card:hover{

    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.15);

}

.stars{

    color:#d4af37;
    font-size:26px;
    margin-bottom:20px;

}

.review-card p{

    color:#555;
    line-height:1.9;
    font-size:17px;
    margin-bottom:25px;

}

.review-card h4{

    color:#222;
    font-size:18px;

}

@media(max-width:768px){

.review-grid{

grid-template-columns:1fr;

}

}
/*================ ABOUT =================*/

.about-section{

    padding:100px 8%;

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:70px;

    background:#fff;

}

.about-image{

    flex:1;

}

.about-image img{

    width:100%;

    border-radius:20px;

    display:block;

    box-shadow:0 15px 35px rgba(0,0,0,.12);

}

.about-content{

    flex:1;

}

.about-content span{

    color:#d4af37;

    font-weight:700;

    letter-spacing:2px;

}

.about-content h2{

    font-size:42px;

    margin:20px 0;

    color:#222;

}

.about-content p{

    color:#666;

    line-height:1.9;

    margin-bottom:20px;

}

.about-list{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:15px;

    margin:35px 0;

}

.about-list div{

    font-weight:600;

    color:#222;

}

.about-btn{

    display:inline-block;

    background:#d4af37;

    color:#fff;

    text-decoration:none;

    padding:15px 35px;

    border-radius:50px;

    transition:.3s;

}

.about-btn:hover{

    background:#b88f22;

}

@media(max-width:992px){

.about-section{

flex-direction:column;

}

.about-list{

grid-template-columns:1fr;

}

}
/* CTA vehicle page*/

.cta{

    background:
    linear-gradient(rgba(0,0,0,.65),rgba(0,0,0,.65)),
    url("images/cta-bg.jpg");

    background-size:cover;
    background-position:center 20%;
    background-repeat:no-repeat;

    min-height:750px;

    padding:0 8%;

    display:flex;
    align-items:center;

}

.cta-content{
    width: 100%;
    max-width:900px;
    margin-left: 40px;

}

.cta h2{
    max-width: 900px;

    color:#fff;
    font-size:60px;
    line-height:1.1;
    font-weight: 800;
    margin-bottom:30px;
    
    white-space:normal;
    line-height: 1.2;
}

.cta p{
    
    
    
    color:#fff;
    font-size:30px;
    font-weight: 500;
    line-height:1.7;
    margin: 0 auto 45px;
    margin-bottom:40px;
    text-align:center;
    padding-left: 40px;
   

}

.cta-btn{

    display:inline-block;
    padding:20px 50px;

    background:#d4af37;
    color:#f8f3f3;

    text-decoration:none;
    border-radius:50px;

    font-weight:bold;
    transition:.3s;

}

.cta-btn:hover{

    background:#b88f22;
    transform:translateY(-3px);

}
@media(max-width:768px){

    .cta{

        min-height:500px;
        padding:40px 20px;
        text-align:center;

    }

    .cta-content{

        max-width:100%;
        margin-left:0;

    }

    .cta h2{

        font-size:36px;

    }

    .cta p{

        font-size:16px;

    }

}
/* Back To Top */

#backToTop{

    position:fixed;

    bottom:30px;
    right:30px;

    width:50px;
    height:50px;

    border:none;
    border-radius:50%;

    background:#d4af37;
    color:#fff;

    font-size:22px;
    cursor:pointer;

    display:none;

    transition:.3s;

    z-index:999;

}

#backToTop:hover{

    background:#b88f22;
    transform:translateY(-5px);

}

/* ================= HERO TEXT ================= */

.hero-tag{
    display:inline-block;
    padding:10px 20px;
    background:rgba(212,175,55,.15);
    border:1px solid rgba(212,175,55,.5);
    color:#d4af37;
    font-size:14px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
    border-radius:30px;
    margin-bottom:25px;
    backdrop-filter:blur(8px);
}

.hero h1{
    font-size:72px;
    font-weight:900;
    line-height:1.1;
    letter-spacing:2px;
    color:#fff;
    margin-bottom:25px;
    text-shadow:0 5px 20px rgba(0,0,0,.45);
}
@media (max-width:768px){
    .hero h1{
        font-size:60px;
        line-height:1.05;
    }
}

.hero p{
    font-size:18px;
    line-height:1.8;
    color:#f5f5f5;
    max-width:600px;
    margin-bottom:35px;
}
.section-title h2{

    position:relative;

    display:inline-block;

}

.section-title h2::after{

    content:"";

    position:absolute;

    left:50%;

    transform:translateX(-50%);

    bottom:-12px;

    width:80px;

    height:4px;

    border-radius:10px;

    background:#d4af37;

}
/* ===== Section Title Fix ===== */

.section-title{
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
}

.section-title span{
    display:block;
    width:100%;
    margin-bottom:12px;
    color:#c59d2f;
    font-size:15px;
    font-weight:700;
    letter-spacing:3px;
    text-transform:uppercase;
}

.section-title h2{
    display:block;
    width:100%;
    margin:0;
    margin-top:8px;
    font-size:42px;
    font-weight:700;
}

/* ==========================================
   LOGO PAGE LOAD ANIMATION
   Logo එක page එක open වෙනකොට
   smooth fade + slide animation එකක්.
   ========================================== */

@keyframes logoFade{
    from{
        opacity:0;
        transform:translateY(-20px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

/* Logo animation apply කිරීම */
.logo img{
    animation:logoFade .8s ease-out;
}

/* ==========================================
   MENU LOAD ANIMATION
   Menu links appear one by one
   ========================================== */

@keyframes menuFade{
    from{
        opacity:0;
        transform:translateY(-15px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

nav a{
    opacity:0;
    animation:menuFade .5s ease forwards;
}

nav a:nth-child(1){ animation-delay:.15s; }
nav a:nth-child(2){ animation-delay:.25s; }
nav a:nth-child(3){ animation-delay:.35s; }
nav a:nth-child(4){ animation-delay:.45s; }
nav a:nth-child(5){ animation-delay:.55s; }
nav a:nth-child(6){ animation-delay:.65s; }
nav a:nth-child(7){ animation-delay:.75s; }

/* ==========================================
   HERO TEXT ANIMATION
   TXT GARAGE Style
   ========================================== */

@keyframes heroTextUp{
    from{
        opacity:0;
        transform:translateY(40px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content span{
    opacity:0;
    animation:heroTextUp .8s ease forwards;
    animation-delay:.2s;
}

.hero-content h1{
    opacity:0;
    animation:heroTextUp .8s ease forwards;
    animation-delay:.5s;
}

.hero-content p{
    opacity:0;
    animation:heroTextUp .8s ease forwards;
    animation-delay:.8s;
}

.hero-buttons{
    opacity:0;
    animation:heroTextUp .8s ease forwards;
    animation-delay:1.1s;
}
/* ==========================================
   HERO TITLE ANIMATION
   
   ========================================== */

@keyframes heroTitleReveal{
    from{
        opacity:0;
        transform:translateY(45px);
    }
    to{
        opacity:1;
        transform:translateY(0);
    }
}

.hero-content h1{
    opacity:0;
    animation:heroTitleReveal .9s ease-out forwards;
    animation-delay:.4s;
}
/* ==========================================
   HERO TITLE LINE ANIMATION
   ========================================== */

.hero-content h1{
    display:flex;
    flex-direction:column;
}

.hero-line1,
.hero-line2{
    display:block;
    font-size:inherit;
    font-weight:inherit;
    line-height:inherit;
    opacity:0;
}

.hero-line1{
    animation:heroTitleReveal .8s ease-out forwards;
    animation-delay:.3s;
}

.hero-line2{
    animation:heroTitleReveal .8s ease-out forwards;
    animation-delay:.7s;
}
.hero-content{
    animation:fadeUp 1s ease, floatHero 5s ease-in-out infinite;
}

@keyframes floatHero{
    0%{
        transform:translateY(0);
    }
    50%{
        transform:translateY(-10px);
    }
    100%{
        transform:translateY(0);
    }
}
@keyframes heroFade{

    0%{
        opacity:0;
        transform:translateY(60px);
    }

    100%{
        opacity:1;
        transform:translateY(0);
    }

}


/* ===========================
   SPRING SAKURA ANIMATION
=========================== */

.sakura-container{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:1;
}

.petal{
    position:absolute;
    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;
    opacity:.9;
    animation:fall linear infinite;
    will-change: transform;
}



@keyframes fall{

    0%{
        transform:
            translate3d(0,-120px,0)
            rotate(0deg)
            scale(.9);
        opacity:0;
    }

    5%{
        opacity:.95;
    }

    15%{
        transform:
            translate3d(35px,15vh,0)
            rotate(45deg)
            scale(1);
    }

    30%{
        transform:
            translate3d(-45px,35vh,0)
            rotate(120deg);
    }

    45%{
        transform:
            translate3d(60px,55vh,0)
            rotate(190deg)
            scale(.95);
    }

    60%{
        transform:
            translate3d(-35px,75vh,0)
            rotate(260deg);
    }

    80%{
        transform:
            translate3d(55px,95vh,0)
            rotate(330deg)
            scale(1.05);
    }

    100%{
        transform:
            translate3d(-20px,120vh,0)
            rotate(420deg)
            scale(.9);
        opacity:0;
    }
}

/* =========================
   SUMMER THEME
========================= */

.summer-container{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:1;

    display:none; /* Danata hide */
}

.summer-particle{
    position:absolute;
    width:8px;
    height:8px;
    border-radius:50%;

    background:rgba(255,255,220,0.8);

    box-shadow:
        0 0 10px rgba(255,255,180,.8),
        0 0 20px rgba(255,255,180,.6);

    animation:summerFloat linear infinite;
}

@keyframes summerFloat{

    0%{
        transform:translateY(-20vh) translateX(0) scale(.6);
        opacity:0;
    }

    20%{
        opacity:1;
    }

    100%{
        transform:translateY(120vh) translateX(80px) scale(1.2);
        opacity:0;
    }

}
/* =========================
   SUMMER SUN RAYS
========================= */

.sun-rays{
    position:absolute;
    top:-250px;
    right:-250px;

    width:700px;
    height:700px;

    pointer-events:none;
    z-index:0;

    background:
        radial-gradient(circle,
        rgba(255,245,180,.35) 0%,
        rgba(255,240,170,.18) 30%,
        rgba(255,255,255,0) 70%);

    filter:blur(25px);

    animation:sunGlow 6s ease-in-out infinite alternate;
}

@keyframes sunGlow{

    from{
        transform:scale(1);
        opacity:.6;
    }

    to{
        transform:scale(1.15);
        opacity:1;
    }

}
/* =========================
   LENS FLARE
========================= */

.lens-flare{

    position:absolute;

    top:8%;
    right:10%;

    width:160px;
    height:160px;

    border-radius:50%;

    background:
        radial-gradient(circle,
        rgba(255,255,255,.9) 0%,
        rgba(255,240,180,.45) 35%,
        rgba(255,255,255,0) 70%);

    filter:blur(8px);

    pointer-events:none;

    opacity:.55;

    animation:lensFlare 8s ease-in-out infinite alternate;

}

@keyframes lensFlare{

    from{

        transform:
            scale(1);

        opacity:.45;

    }

    to{

        transform:
            scale(1.2);

        opacity:.75;

    }

}
/* =========================
   SUMMER ORBS
========================= */

.summer-orb{

    position:absolute;

    width:70px;
    height:70px;

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    pointer-events:none;

    opacity:.65;

    animation:summerOrb linear infinite;

    will-change:transform;

}

@keyframes summerOrb{

    0%{

        transform:
        translateY(-15vh)
        translateX(0)
        rotate(0deg)
        scale(.6);

        opacity:0;

    }

    15%{

        opacity:.6;

    }

    100%{

        transform:
        translateY(115vh)
        translateX(120px)
        rotate(360deg)
        scale(1);

        opacity:0;

    }

}
/* =========================
   AUTUMN THEME
========================= */

.autumn-container{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:1;
    display:block;
}

.autumn-leaf{

    position:absolute;

    width:42px;
    height:42px;

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    opacity:.9;

    animation:autumnFall linear infinite;

    will-change:transform;

}

@keyframes autumnFall{

    0%{

        transform:
        translateY(-15vh)
        translateX(0)
        rotate(0deg);

        opacity:0;

    }

    10%{

        opacity:1;

    }

    100%{

        transform:
        translateY(120vh)
        translateX(180px)
        rotate(540deg);

        opacity:0;

    }

}


/* =========================
   WINTER THEME
========================= */

.winter-container{
    position:absolute;
    inset:0;
    overflow:hidden;
    pointer-events:none;
    z-index:1;
    display:none;
}

.snowflake{

    position:absolute;

    width:18px;
    height:18px;

    background-size:contain;
    background-repeat:no-repeat;
    background-position:center;

    opacity:.9;

    animation:snowFall linear infinite;

    

    mix-blend-mode: screen;

}

@keyframes snowFall{

    0%{

        transform:
        translateY(-15vh)
        translateX(0)
        rotate(0deg);

        opacity:0;

    }

    10%{

        opacity:1;

    }

    100%{

        transform:
        translateY(120vh)
        translateX(80px)
        rotate(360deg);

        opacity:0;

    }

}

.success-message{

    display:none;

    margin-top:30px;

    background:#ecfdf5;

    border:2px solid #22c55e;

    border-radius:16px;

    padding:30px;

    text-align:center;

    animation:fadeIn .4s ease;

}

/* =========================
   Success message
========================= */

.success-icon{

    font-size:50px;

    margin-bottom:15px;

}

.success-message h3{

    color:#15803d;

    margin-bottom:10px;

}

.success-message p{

    color:#444;

    line-height:1.8;

}

@keyframes fadeIn{

    from{

        opacity:0;
        transform:translateY(20px);

    }

    to{

        opacity:1;
        transform:translateY(0);

    }

}
.contact-form button:disabled {
    opacity: 0.7;
    cursor: not-allowed;
}

/* ===========================================
   ACCESS SECTION
   Company location information + Google Map
=========================================== */

.access-section{
    /* Top & Bottom spacing */
    padding:80px 0;
}

/* Information + Map layout */
.access-grid{

    display:grid;

    /* Left = Information | Right = Map */
    grid-template-columns:1fr 1.3fr;

    gap:50px;

    align-items:start;
}

/* Main title (アクセス) */
.access-info h2{

    font-size:42px;

    margin-bottom:30px;
}

/* Company name */
.access-info h3{

    font-size:32px;

    margin-bottom:20px;

    color:#b8860b;
}

/* Address, Phone, Email, Access text */
.access-info p{

    font-size:18px;

    line-height:1.9;

    color:#333;

    margin-bottom:15px;
}

/* Bold labels
   Example:
   住所
   電話番号
   メール
*/
.access-info strong{

    font-size:19px;

    color:#000;
}

/* Google Map */
.access-map iframe{

    width:100%;

    height:450px;

    border:none;

    border-radius:12px;
}

/* ===========================================
   Mobile Responsive
=========================================== */

@media(max-width:768px){

    /* Stack information and map vertically */
    .access-grid{

        grid-template-columns:1fr;

    }

    /* Smaller title */
    .access-info h2{

        font-size:34px;

    }

    /* Smaller company name */
    .access-info h3{

        font-size:26px;

    }

    /* Smaller paragraph text */
    .access-info p{

        font-size:16px;

    }

    /* Smaller map height */
    .access-map iframe{

        height:350px;

    }

}

/* ===========================================
   MISSION & VISION
=========================================== */

.mission-section{

    padding:100px 6%;

    background:#ffffff;

}

.mission-section .section-tag{

    display:block;

    text-align:center;

    color:#c59d2f;

    font-weight:700;

    letter-spacing:3px;

    margin-bottom:15px;

}

.mission-section h2{

    text-align:center;

    font-size:42px;

    margin-bottom:60px;

    color:#222;

}

.mission-grid{

    display:grid;

    grid-template-columns:repeat(2,1fr);

    gap:40px;

}

.mission-card{

    background:#fff;

    padding:45px;

    border-radius:20px;

    text-align:center;

    box-shadow:0 12px 35px rgba(0,0,0,.08);

    transition:.35s;

}

.mission-card:hover{

    transform:translateY(-8px);

    box-shadow:0 20px 45px rgba(0,0,0,.15);

}

.mission-icon{

    font-size:60px;

    margin-bottom:25px;

}

.mission-card h3{

    font-size:30px;

    margin-bottom:20px;

    color:#222;

}

.mission-card p{

    color:#666;

    font-size:17px;

    line-height:1.9;

}

/* ===========================================
   MOBILE
=========================================== */

@media(max-width:768px){

    .mission-section{

        padding:70px 20px;

    }

    .mission-grid{

        grid-template-columns:1fr;

    }

    .mission-section h2{

        font-size:34px;

    }

    .mission-card{

        padding:35px 25px;

    }

}

/* =========================================
   CTA Section Title
   「お車の売却をご検討中ですか？」
   Main heading style
========================================= */

.cta-title{
    font-size: 48px;
    font-weight: 800;
    color: #222;
    text-align: center;
    margin-bottom: 20px;
    position: relative;
}
/* =========================================
   CTA Title Gold Underline
   Premium decorative line
========================================= */

.cta-title::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 15px auto 0;
    background: linear-gradient(90deg, #c59d2f, #f5d76e);
    border-radius: 10px;
}

/* =========================================
   CTA Section Description
   Supporting text below the title
========================================= */

.cta-description{
    font-size: 20px;
    line-height: 1.9;
    color: #666;
    text-align: center;
    max-width: 700px;
    margin: 0 auto 35px;
}

/* =========================================
   CTA Button
   Premium Gold Button
========================================= */

.cta-btn{
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 16px 38px;

    background: linear-gradient(135deg, #c59d2f, #e6c45a);

    color: #fff;
    font-size: 18px;
    font-weight: 700;
    text-decoration: none;
    letter-spacing: .5px;

    border-radius: 50px;

    transition: all .35s ease;
    margin-top: 30px;
    margin-bottom: 80px;
    display: flex;
     margin-left: auto;
     margin-right: auto;

    box-shadow: 0 8px 25px rgba(197,157,47,.25);
}
/* =========================================
   CTA Button Hover
========================================= */

.cta-btn:hover{
    transform: translateY(-3px);

    background: linear-gradient(135deg,#b38b22,#dcb648);

    box-shadow: 0 15px 35px rgba(197,157,47,.4);
}

/* =========================================
   CTA Section Card
   Premium White Card
========================================= */

.purchase-contact{

    max-width: 1100px;
    margin: 100px auto;

    padding: 70px 50px;

    background: #fff;

    border-radius: 20px;

    box-shadow: 0 20px 60px rgba(0,0,0,.08);

    text-align: center;

}

/* =========================================
   CTA Card Top Border
========================================= */

.purchase-contact{

    border-top: 6px solid #c59d2f;

}
/* =========================================
   CTA Button Arrow
========================================= */

.cta-btn span{
    margin-left: 12px;
    transition: transform .3s ease;
}

/* =========================================
   CTA Button Arrow Hover
========================================= */

.cta-btn:hover span{
    transform: translateX(6px);
}

/* =========================================
   CDL JAPAN Reasons Section Title
========================================= */

.reason-title{
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #06C755;
    letter-spacing: 1px;

    margin-bottom: 1px;
    position: relative;
    writing-mode: horizontal-tb;
}
.reason-title{
    text-align: center;
    font-size: 42px;
    font-weight: 800;
    color: #101010;
    letter-spacing: 1px;

    margin-bottom: 1px;
    position: relative;
    writing-mode: horizontal-tb;
}
/* =========================================
  Reason Title Gold Underline
========================================= */
.reason-title::after{
    content: "";
    display: block;
    width: 90px;
    height: 4px;
    margin: 18px auto 0;
    background: linear-gradient(90deg,#c59d2f);
    border-radius: 50px;

}

/* =========================================
  Active Language
========================================= */

.language-btn.active{
    color:#c59d2f ;
    font-weight: 700;

}




/* =========================================
  Active Language
========================================= */

.language-btn.active{
    color:#c59d2f ;
    font-weight: 700;

}


/* ===========================
SOLD OUT BADGE
=========================== */

.sold-out{

position:absolute;

top:15px;
right:15px;

background:#d60000;
color:#fff;

padding:8px 18px;

font-size:14px;
font-weight:700;

border-radius:30px;

letter-spacing:1px;

text-transform:uppercase;

box-shadow:0 8px 20px rgba(0,0,0,.25);

}
/* ===========================
SOLD OUT RIBBON
=========================== */

.sold-out{

position:absolute;

top:18px;
right:-45px;

width:170px;

background:#d60000;
color:#fff;

text-align:center;

font-size:13px;
font-weight:700;

letter-spacing:1px;

padding:8px 0;

transform:rotate(45deg);

box-shadow:0 5px 15px rgba(0,0,0,.3);

text-transform:uppercase;

z-index:5;

}
/* ===========================
   SUCCESS MESSAGE
=========================== */

.success-message{

    display:none;

    margin-top:20px;

    padding:15px;

    background:#e8f7e8;

    color:#1b5e20;

    border:1px solid #81c784;

    border-radius:8px;

    text-align:center;

    font-weight:600;

}
/* =========================
   Success message
========================= */

.success-icon{

    font-size:50px;

    margin-bottom:15px;

}

.success-message h3{

    color:#15803d;

    margin-bottom:10px;

}

.success-message p{

    color:#444;

    line-height:1.8;

}
/* ===========================
   SOLD OUT BUTTON
=========================== */

.sold-btn{

    background:#d60000 !important;

    color:#fff !important;

    border:none;

    cursor:not-allowed;

    opacity:0.9;

    pointer-events:none;

}

/* ===== Shipping Section ===== */

.shipping-section{
    padding: 80px 0;
    background: #f8f9fb;
}

/* ===== Shipping Grid ===== */

.shipping-grid{
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 50px;

    background: #fff;
    border-radius: 20px;
    padding: 40px;

    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}
/* ===== Shipping Image ===== */

.shipping-image{
    flex: 1;
}

.shipping-image img{
    width: 100%;
    border-radius: 18px;
    object-fit: cover;

    box-shadow: 0 10px 25px rgba(0,0,0,0.12);

    transition: 0.4s ease;
}

.shipping-image img:hover{
    transform: scale(1.03);
}

/* ===== Shipping Text ===== */

.shipping-text{
    flex: 1;
}

.shipping-text h2{
    font-size: 34px;
    color: #0d2d62;
    margin-bottom: 20px;
    font-weight: 700;
    position: relative;
}

.shipping-text h2::after{
    content: "";
    display: block;
    width: 70px;
    height: 4px;
    background: #d4af37;
    border-radius: 10px;
    margin-top: 10px;
}
/* ===== Shipping Description ===== */

.shipping-text p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    margin-bottom: 18px;
}

/* Shipping List */

.shipping-text ul{
    list-style: none;
    padding: 0;
    margin-top: 25px;
}

.shipping-text li{
    background: #f8f9fb;
    border-left: 5px solid #d4af37;

    padding: 14px 18px;
    margin-bottom: 12px;

    border-radius: 10px;

    font-weight: 600;
    color: #333;

    transition: .3s;
}

.shipping-text li:hover{
    background: #eef3f8;
    transform: translateX(8px);
}

/* ===== FAQ Section ===== */

.export-faq{
    padding: 80px 0;
    background: #f8f9fb;
}
/* ===== FAQ Heading ===== */

.export-faq h2{
    text-align: center;
    font-size: 36px;
    color: #0d2d62;
    margin-bottom: 50px;
    font-weight: 700;
    position: relative;
}

.export-faq h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
    border-radius: 10px;
}

/* ===== FAQ Cards ===== */

.faq-item{
    background: #fff;
    padding: 25px 30px;
    margin-bottom: 20px;

    border-radius: 15px;
    border-left: 5px solid #d4af37;

    box-shadow: 0 8px 20px rgba(0,0,0,0.08);

    transition: all .3s ease;
}

.faq-item:hover{
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.12);
}
/* ===== FAQ Text ===== */

.faq-item h3{
    font-size: 22px;
    color: #0d2d62;
    margin-bottom: 12px;
    font-weight: 700;
}

.faq-item p{
    font-size: 16px;
    color: #555;
    line-height: 1.8;
    margin: 0;
}

/* ===== Export Route ===== */

.export-route{
    padding: 80px 0;
    background: #f8f9fb;
    text-align: center;
}

.export-route h2{
    display: inline-block;
    position: relative;
    font-size: 42px;
    font-weight: 700;
    color: #0d2d62;
    margin-bottom: 15px;
}

.export-route h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
    border-radius: 10px;
}

.route-subtitle{
    font-size: 17px;
    color: #666;
    margin-top: 20px;
    margin-bottom: 50px;
    line-height: 1.8;
}
/* ===== Route Flow ===== */

.route-flow{
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

/* ===== Country Cards ===== */

.country-box{
    width: 220px;
    background: #fff;
    padding: 35px 20px;

    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);

    transition: .3s ease;
}

.country-box:hover{
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.country-box{
    font-size: 60px;
}

.country-box h3{
    margin-top: 15px;
    font-size: 22px;
    color: #0d2d62;
    font-weight: 700;
}
/* ===== Route Arrow ===== */

.route-arrow{
    font-size: 48px;
    color: #d4af37;
    animation: shipMove 2s ease-in-out infinite;
}

@keyframes shipMove{

    0%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(12px);
    }

    100%{
        transform: translateX(0);
    }

}
/* ===== Premium Route Arrow ===== */

.route-arrow{
    display: flex;
    align-items: center;
    gap: 15px;
}

.arrow-line{
    font-size: 36px;
    color: #d4af37;
    font-weight: bold;
}

.ship-icon{
    font-size: 50px;
    animation: shipMove 2.5s ease-in-out infinite;
}

@keyframes shipMove{

    0%{
        transform: translateX(0);
    }

    50%{
        transform: translateX(12px);
    }

    100%{
        transform: translateX(0);
    }

}

/* ===== Future Export ===== */

.future-export{
    padding: 80px 20px;
    background: linear-gradient(135deg, #0d2d62, #1d4d8f);
    text-align: center;
    color: #fff;
}

.future-export h2{
    font-size: 36px;
    margin-bottom: 20px;
    font-weight: 700;
    color: #fff;
}

.future-export h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
    border-radius: 10px;
}

.future-export p{
    max-width: 850px;
    margin: 30px auto 0;
    font-size: 17px;
    line-height: 2;
    color: rgba(255,255,255,0.9);
}
/* ===== Future Region Cards ===== */

.future-regions{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
    margin-top: 50px;
}

.region-card{
    width: 220px;
    padding: 30px 20px;
    background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    transition: all .3s ease;
}

.region-card:hover{
    transform: translateY(-8px);
    background: rgba(255,255,255,0.18);
}

/* ===== Region Card Content ===== */

.region-card{
    font-size: 55px;
}

.region-card h3{
    margin-top: 18px;
    font-size: 24px;
    font-weight: 700;
    color: #ffffff;
}

.region-card p{
    margin-top: 12px;
    font-size: 15px;
    color: rgba(255,255,255,0.85);
    line-height: 1.7;
}

.world-map{
    padding:100px 20px;
    background:#ffffff;
    text-align:center;
}

.world-map h2{
    font-size:38px;
    color:#0d2d62;
    margin-bottom:20px;
}

.world-map p{
    max-width:850px;
    margin:auto;
    line-height:2;
    color:#666;
}

.map-area{
    margin-top:60px;
}

.map-area img{
    width:100%;
    max-width:1000px;
    animation: floating 6s ease-in-out infinite;
}

@keyframes floating{

    0%{transform:translateY(0);}
    50%{transform:translateY(-10px);}
    100%{transform:translateY(0);}

}

/* =========================================
   Customer Reviews
========================================= */

.customer-reviews{
    padding: 90px 20px;
    background: #f8f9fb;
    text-align: center;
}

.customer-reviews h2{
    font-size: 40px;
    color: #0d2d62;
    margin-bottom: 15px;
    font-weight: 700;
}

.customer-reviews h2::after{
    content: "";
    display: block;
    width: 80px;
    height: 4px;
    background: #d4af37;
    margin: 15px auto 0;
    border-radius: 10px;
}

.review-subtitle{
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
}

/* =========================================
   Review Cards
========================================= */

.review-grid{
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.review-card{
    width: 330px;
    background: #fff;
    padding: 35px 30px;
    border-radius: 20px;

    box-shadow: 0 10px 30px rgba(0,0,0,.08);

    transition: all .3s ease;
}

.review-card:hover{
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0,0,0,.15);
}
/* =========================================
   Review Card Content
========================================= */

.stars{
    color: #d4af37;
    font-size: 26px;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.review-card p{
    font-size: 16px;
    line-height: 1.9;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.review-card h4{
    color: #0d2d62;
    font-size: 17px;
    font-weight: 700;
    margin: 0;
}

/* =========================================
   Export Mobile
========================================= */

@media (max-width:768px){

.export-hero{
    height: 500px;
}

.export-overlay{
    padding: 30px 20px;
    width: 90%;
}

.export-overlay h1{
    font-size: 42px;
}

.export-overlay p{
    font-size: 18px;
    line-height: 1.7;
}
.process-grid{
    grid-template-columns: 1fr;
    gap: 20px;
}

.process-card{
    padding: 30px 20px;
}

.export-process h2{
    font-size: 30px;
    margin-bottom: 40px;


}

/* =========================================
   Future Vision Mobile
========================================= */

.future-export{
    padding: 60px 20px;
}

.future-export h2{
    font-size: 30px;
}

.future-export p{
    font-size: 16px;
    line-height: 1.8;
}

.future-regions{
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.region-card{
    width: 100%;
    max-width: 300px;
}
/* =========================================
   Export Route Mobile
========================================= */

.route-flow{
    flex-direction: column;
    gap: 25px;
}

.country-box{
    width: 100%;
    max-width: 280px;
    margin: 0 auto;
}

.route-arrow{
    transform: rotate(90deg);
}

.ship-icon{
    font-size: 42px;
}
/* =========================================
   Shipping Mobile
========================================= */

.shipping-grid{
    flex-direction: column;
    gap: 30px;
}

.shipping-image img{
    width: 100%;
}

.shipping-text{
    text-align: center;
}

.shipping-text h2{
    font-size: 28px;
}

.shipping-text p{
    font-size: 16px;
}

.shipping-text li{
    text-align: left;
}
/* =========================================
   FAQ Mobile
========================================= */

.export-faq h2{
    font-size: 30px;
}

.faq-item{
    padding: 20px;
}

.faq-item h3{
    font-size: 20px;
}

.faq-item p{
    font-size: 15px;
}
/* =========================================
   Reviews Mobile
========================================= */

.review-grid{
    flex-direction: column;
    align-items: center;
}

.review-card{
    width: 100%;
    max-width: 340px;
}

.customer-reviews h2{
    font-size: 30px;
}

.review-subtitle{
    font-size: 16px;
}
}

/* ===========================
   MOBILE NAV FIX
=========================== */

@media (max-width:991px){

    nav{
        display:none;
        position:absolute;
        top:75px;
        left:0;
        width:100%;
        background:#fff;
        flex-direction:column;
        padding:30px 20px;
        box-shadow:0 10px 25px rgba(0,0,0,.12);
        gap:20px;
        z-index:999;
    }

    nav.active{
        display:flex;
    }

    .mobile-header-right{
        display:flex;
        flex-direction:column;
        gap:15px;
        width:100%;
        margin-top:20px;
        padding-top:20px;
        border-top:1px solid #ddd;
    }

    .header-right{
        display:none;
    }

    .menu-toggle{
        display:block;
        font-size:32px;
        cursor:pointer;
    }
}

/* ===== Purchase Flow Mobile Fix ===== */

@media (max-width:768px){

    .flow-grid{
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 20px !important;
    }

    .flow-card{
        width: 100% !important;
        max-width: 100% !important;
        padding: 30px 20px !important;
        box-sizing: border-box;
    }

    .step-number{
        margin: 0 auto 20px;
    }

    .flow-card h3{
        font-size: 24px;
    }

    .flow-card p{
        font-size: 15px;
        line-height: 1.8;
    }


}



/* ==========================
   PURCHASE HERO MOBILE
========================== */

@media screen and (max-width:768px){

    .purchase-hero{
        min-height:85vh;
        padding:90px 20px 40px;
        justify-content:center;
        align-items:center;
        background-position:center center;
    }

    .purchase-overlay{
        position:relative;

        width:100%;
        max-width:320px;

        margin:0 auto;

        left:0;
        top:0;
        transform:none;

        text-align:center;
        align-items:center;
    }

}

/* ===========================
   MOBILE LANGUAGE SWITCH
=========================== */

.mobile-language{
    display:none;
}

@media (max-width:991px){

    .mobile-language{
        display:flex;
        justify-content:center;
        align-items:center;
        gap:12px;

        width:100%;

        margin-top:20px;
        padding-top:20px;

        border-top:1px solid #ddd;
    }

    .mobile-language a{
        text-decoration:none;
        color:#222;
        font-weight:700;
        font-size:18px;
    }

    .mobile-language a.active{
        color:#d4af37;
    }

    .mobile-language span{
        color:#999;
    }

}

/* ================================
HOME SERVICE CARDS - MOBILE
================================ */

@media (max-width:768px){

.services-grid{
display:grid;
grid-template-columns:1fr;
gap:20px;
}

.service-card{
width:100%;
max-width:340px;
margin:0 auto;
}

.service-card img{
width:100%;
height:220px;
object-fit:cover;
}

.service-card h3{
font-size:28px;
}

.service-card p{
font-size:16px;
line-height:1.7;
}

}
html,
body{
    width:100%;
    overflow-x:hidden;
}

*{
    box-sizing:border-box;
}

img{
    max-width:100%;
    height:auto;
}

section,
header,
footer,
div{
    max-width:100%;
}


/* ===========================
   BREADCRUMB
=========================== */

.breadcrumb{

    margin-top:95px;

    background:#f8f8f8;

    border-bottom:1px solid #e5e5e5;

    padding:14px 0;

}

.breadcrumb .container{

    display:flex;
    align-items:center;
    gap:10px;

    font-size:15px;

}

.breadcrumb a{

    color:#555;
    text-decoration:none;
    transition:.3s;

}

.breadcrumb a:hover{

    color:#d4af37;

}

.breadcrumb .separator{

    color:#999;

}

.breadcrumb span:last-child{

    color:#111;
    font-weight:600;

}

/* ===========================
   BREADCRUMB MOBILE
=========================== */

@media (max-width:768px){

    .breadcrumb{

        margin-top:75px;

        padding:10px 0;

    }

    .breadcrumb .container{

        font-size:13px;

        gap:6px;

        flex-wrap:wrap;

    }

}

/* ======================================
   NEW YEAR POPUP
====================================== */

.newyear-popup{

    position:fixed;

    inset:0;

    background:rgba(0,0,0,.75);

    display:none;

    justify-content:center;

    align-items:center;

    z-index:99999;

    backdrop-filter:blur(8px);

}

.newyear-box{

    width:90%;
    max-width:500px;

    background:#fff;

    border-radius:25px;

    padding:50px 35px;

    text-align:center;

    box-shadow:0 20px 60px rgba(0,0,0,.35);

    animation:popupShow .6s ease;

}

.newyear-box h1{

    font-size:38px;

    color:#d4af37;

    margin-bottom:10px;

}

.newyear-box h2{

    font-size:58px;

    color:#111;

    margin-bottom:25px;

}

.newyear-box p{

    font-size:18px;

    line-height:1.8;

    color:#555;

    margin-bottom:35px;

}

#enterWebsite{

    background:#d4af37;

    color:#fff;

    border:none;

    padding:16px 45px;

    font-size:18px;

    border-radius:50px;

    cursor:pointer;

    transition:.3s;

}

#enterWebsite:hover{

    background:#b99220;

    transform:translateY(-3px);

}

@keyframes popupShow{

    from{

        opacity:0;

        transform:scale(.8);

    }

    to{

        opacity:1;

        transform:scale(1);

    }

}

/* ======================================
   FIREWORKS
====================================== */

.fireworks{

    position:absolute;

    inset:0;

    overflow:hidden;

    border-radius:25px;

    pointer-events:none;

}

.fireworks::before,
.fireworks::after{

    content:"";

    position:absolute;

    width:10px;
    height:10px;

    border-radius:50%;

    background:#d4af37;

    box-shadow:
        0 0 0 6px rgba(212,175,55,.15),
        0 0 25px #d4af37;

    animation:firework 2.8s infinite;

}

.fireworks::before{

    top:25%;
    left:22%;

}

.fireworks::after{

    top:35%;
    right:22%;

    animation-delay:1.4s;

}

@keyframes firework{

    0%{

        transform:scale(0);

        opacity:1;

    }

    60%{

        transform:scale(8);

        opacity:.5;

    }

    100%{

        transform:scale(12);

        opacity:0;

    }

}

/* ======================================
   COUNTDOWN
====================================== */

.countdown-box{

    display:flex;

    justify-content:center;

    gap:15px;

    margin:25px 0 35px;

    flex-wrap:wrap;

}

.count-item{

    width:85px;

    background:linear-gradient(180deg,#fff,#f8f8f8);

    border:2px solid rgba(212,175,55,.25);

    border-radius:18px;

    padding:18px 10px;

    box-shadow:0 10px 25px rgba(0,0,0,.08);

}

.count-item span{

    display:block;

    font-size:34px;

    font-weight:700;

    color:#d4af37;

    line-height:1;

}

.count-item small{

    display:block;

    margin-top:10px;

    font-size:12px;

    letter-spacing:1px;

    color:#666;

}

/* =====================================
   FINAL COUNTDOWN
===================================== */

#finalCountdown{

    display:none;

    text-align:center;

    margin-top:30px;

    animation:zoomIn .5s ease;

}

#countNumber{

    font-size:110px;

    color:#FFD700;

    margin:0;

    text-shadow:
        0 0 20px rgba(255,215,0,.6),
        0 0 50px rgba(255,215,0,.4);

    animation:pulse 1s infinite;

}

#finalCountdown p{

    font-size:20px;

    color:#666;

}

@keyframes pulse{

    0%{transform:scale(1);}
    50%{transform:scale(1.15);}
    100%{transform:scale(1);}

}

@keyframes zoomIn{

    from{

        opacity:0;
        transform:scale(.5);

    }

    to{

        opacity:1;
        transform:scale(1);

    }

}

/* ===========================
   VEHICLE PHOTO UPLOAD
=========================== */

.photo-upload {
    margin-top: 35px;
    margin-bottom: 45px;
    padding: 28px 25px;
    border: 2px dashed #d4af37;
    border-radius: 16px;
    background: #fffdf5;
    text-align: center;
    clear: both;
}

.photo-upload label {
    display: block;
    font-size: 18px;
    font-weight: 600;
    color: #222;
    margin-bottom: 10px;
}

.photo-help {
    font-size: 14px;
    color: #777;
    line-height: 1.7;
    margin-bottom: 20px;
}

/* File input */

.photo-upload input[type="file"] {
    width: 100%;
    max-width: 500px;
    padding: 12px;
    border: 1px solid #ddd;
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    font-size: 14px;
    box-sizing: border-box;
}

/* Photo preview area */

#photoPreview {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 15px;
    margin-top: 25px;
    width: 100%;
}

/* Uploaded photos */
#photoPreview img {
    width: 100%;
    height: 150px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
}
/* Upload status */

#uploadStatus {
    margin-top: 15px;
    font-size: 14px;
    color: #555;
    line-height: 1.6;
}


/* ===========================
   MOBILE
=========================== */

@media (max-width: 600px) {

    .photo-upload {
        margin-top: 25px;
        margin-bottom: 35px;
        padding: 20px 14px;
        border-radius: 14px;
    }

    .photo-upload label {
        font-size: 15px;
        margin-bottom: 8px;
    }

    .photo-help {
        font-size: 11px;
        line-height: 1.6;
        margin-bottom: 14px;
    }

    .photo-upload input[type="file"] {
        font-size: 9px;
        padding: 9px;
        max-width: 100%;
    }

    #photoPreview {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 10px;
        margin-top: 18px;
    }

    #photoPreview img {
        width: 100%;
        height: 130px;
        object-fit: cover;
        border-radius: 10px;
    }

    #uploadStatus {
        font-size: 12px;
        margin-top: 10px;
    }

}


/* =========================================
   VEHICLE DETAILS - FOOTER FIX
========================================= */

.footer {
    width: 100%;
    background: #111;
    color: #ddd;
    padding: 80px 8% 25px;
    box-sizing: border-box;
}

.footer-container {
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;

    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 60px;
    box-sizing: border-box;
}

.footer-col {
    min-width: 0;
}

.footer-col h3 {
    color: #d4af37;
    font-size: 24px;
    margin: 0 0 25px;
}

.footer-col p {
    color: #bbb;
    line-height: 1.9;
    margin: 0 0 15px;
}

.footer-col strong {
    color: #fff;
}

.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-col ul li {
    margin-bottom: 15px;
}

.footer-col ul li a {
    color: #bbb;
    text-decoration: none;
}

.footer-col ul li a:hover {
    color: #d4af37;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.social-links a {
    color: #bbb;
    text-decoration: none;
}

.social-links a:hover {
    color: #d4af37;
}

.footer-bottom {
    width: 100%;
    max-width: 1400px;
    margin: 60px auto 0;
    padding-top: 25px;
    border-top: 1px solid #333;

    text-align: center;
    color: #888;
    font-size: 15px;
}


/* =========================================
   MOBILE FOOTER
========================================= */

@media (max-width: 768px) {

    .footer {
        padding: 60px 20px 20px;
        text-align: center;
    }

    .footer-container {
        width: 100%;
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col {
        width: 100%;
    }

    .footer-col h3 {
        font-size: 22px;
    }

    .footer-col p {
        font-size: 15px;
        line-height: 1.8;
    }

    .footer-col ul {
        text-align: center;
    }

    .social-links {
        align-items: center;
    }

    .footer-bottom {
        margin-top: 40px;
        font-size: 13px;
    }

}

/* =========================================
   VEHICLE DETAILS CTA - SP FIX
========================================= */

@media (max-width: 768px) {

    .cta {
        min-height: auto !important;
        height: auto !important;
        padding: 70px 20px !important;

        display: block !important;
        text-align: center !important;

        box-sizing: border-box;
    }

    .cta-content {
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        padding: 0 !important;
    }

    .cta h2 {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 32px !important;
        line-height: 1.5 !important;

        margin: 0 auto 25px !important;
        padding: 0 !important;

        text-align: center !important;

        white-space: normal !important;
        word-break: normal !important;
        overflow-wrap: break-word !important;
    }

    .cta p {
        width: 100% !important;
        max-width: 100% !important;

        font-size: 17px !important;
        line-height: 1.8 !important;

        margin: 0 auto 30px !important;
        padding: 0 !important;

        text-align: center !important;

        white-space: normal !important;
        word-break: normal !important;
    }

    .cta-buttons {
        width: 100% !important;

        display: flex !important;
        justify-content: center !important;
        align-items: center !important;

        margin: 0 auto !important;
        padding: 0 !important;
    }

    .cta .gold-btn,
    .cta .white-btn,
    .cta-btn {
        display: inline-flex !important;

        width: auto !important;
        max-width: 90% !important;

        padding: 16px 35px !important;

        justify-content: center;
        align-items: center;

        font-size: 16px !important;

        white-space: nowrap;
    }

}

/* =========================
   COMING SOON POPUP
========================= */

.coming-soon-popup {
    position: fixed;
    inset: 0;
    z-index: 99999;

    display: none;
    align-items: center;
    justify-content: center;

    padding: 20px;

    background: rgba(0, 0, 0, 0.75);

    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}


.coming-soon-popup.active {
    display: flex;
}


.coming-soon-box {
    position: relative;

    width: min(420px, 100%);

    padding: 40px 30px 30px;

    text-align: center;

    background: #111;

    border: 1px solid rgba(212, 175, 55, 0.5);

    border-radius: 20px;

    box-shadow:
        0 20px 60px rgba(0, 0, 0, 0.6),
        0 0 30px rgba(212, 175, 55, 0.15);

    animation: comingSoonPopupIn 0.35s ease-out;
}


@keyframes comingSoonPopupIn {

    from {
        opacity: 0;
        transform: scale(0.85) translateY(20px);
    }

    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }

}


.coming-soon-icon {
    font-size: 50px;
    margin-bottom: 15px;
}


.coming-soon-box h2 {
    margin: 0 0 12px;

    font-size: 28px;
    letter-spacing: 3px;

    color: #d4af37;
}


.coming-soon-box p {
    margin: 0 0 10px;

    font-size: 19px;

    color: #ffffff;
}


.coming-soon-box span {
    display: block;

    margin-bottom: 25px;

    font-size: 14px;
    line-height: 1.6;

    color: rgba(255, 255, 255, 0.7);
}


.coming-soon-close {
    position: absolute;

    top: 12px;
    right: 15px;

    width: 35px;
    height: 35px;

    border: none;
    background: transparent;

    font-size: 30px;
    line-height: 1;

    color: #ffffff;

    cursor: pointer;
}


.coming-soon-close:hover {
    color: #d4af37;
}


.coming-soon-ok {
    min-width: 120px;

    padding: 12px 25px;

    border: 1px solid #d4af37;
    border-radius: 30px;

    background: transparent;

    color: #d4af37;

    font-size: 14px;
    font-weight: 600;

    cursor: pointer;

    transition: 0.3s ease;
}


.coming-soon-ok:hover {
    background: #d4af37;
    color: #111;
}


/* =========================
   MOBILE
========================= */

@media (max-width: 600px) {

    .coming-soon-box {
        padding: 35px 22px 25px;
    }

    .coming-soon-box h2 {
        font-size: 23px;
    }

    .coming-soon-box p {
        font-size: 17px;
    }

    .coming-soon-icon {
        font-size: 42px;
    }

}