/* ======================================================
ROMAN AUTOS UGANDA
PREMIUM LUXURY GREEN EDITION
PART 1
====================================================== */

/* ===== GOOGLE FONT RESET ===== */

html,
body{
    margin:0;
    padding:0;
    width:100%;
    overflow-x:hidden;
}
*{
    box-sizing:border-box;
}
*{
    margin:0;
    padding:0;
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    font-family:'Poppins',sans-serif;
    background:#081c15;
    color:#ffffff;
    overflow-x:hidden;
    line-height:1.7;
}

/* ===== ROOT VARIABLES ===== */

:root{

    --primary:#013220;
    --secondary:#0b2b20;
    --dark:#081c15;
    --gold:#f4c542;
    --white:#ffffff;
    --gray:#d7d7d7;

    --glass:rgba(255,255,255,0.05);

    --shadow:
    0 20px 60px rgba(0,0,0,.35);

    --radius:20px;

}

/* ===== SCROLLBAR ===== */

::-webkit-scrollbar{
    width:10px;
}

::-webkit-scrollbar-track{
    background:#06140f;
}

::-webkit-scrollbar-thumb{
    background:var(--gold);
    border-radius:50px;
}

/* ===== CONTAINER ===== */

.container{
    width:100%;
    max-width:1300px;
    margin:auto;
    padding:0 20px;
}

/* ===== PAGE LOADER ===== */

.page-loader{

    position:fixed;
    inset:0;

    background:#081c15;

    display:flex;
    justify-content:center;
    align-items:center;

    z-index:99999;

    transition:.7s;
}

.page-loader.hidden{
    opacity:0;
    visibility:hidden;
}

.loader-logo img{

    width:140px;

    animation:
    pulseLogo 2s infinite;
}

@keyframes pulseLogo{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.08);
    }

    100%{
        transform:scale(1);
    }
}

/* ===== HEADER ===== */

header{

    position:fixed;

    top:0;
    left:0;

    width:100%;

    z-index:1000;

    transition:.4s ease;

    background:
    rgba(1,50,32,.85);

    backdrop-filter:
    blur(14px);
}

header.scrolled{

    background:
    rgba(1,50,32,.98);

    box-shadow:
    0 10px 40px rgba(0,0,0,.25);
}

.header-container{

    display:flex;

    justify-content:space-between;

    align-items:center;

    min-height:90px;
}

.logo img{

    height:45px;

    transition:.3s;
}

.logo img:hover{

    transform:scale(1.05);
}

/* ===== NAVIGATION ===== */

nav{

    display:flex;
    align-items:center;
    gap:30px;
}

nav a{

    text-decoration:none;

    color:white;

    font-weight:700;

    text-transform:uppercase;

    padding:12px 18px;

    border:1px solid rgba(244,197,66,.2);

    border-radius:10px;

    background:
    rgba(255,255,255,.03);

    transition:.3s;
}

nav a:hover{

    color:black;

    background:var(--gold);

    transform:translateY(-3px);

    box-shadow:
    0 10px 30px rgba(244,197,66,.25);
}

nav a::after{

    content:'';

    position:absolute;

    left:0;
    bottom:-8px;

    width:0;
    height:2px;

    background:var(--gold);

    transition:.3s;
}

nav a:hover::after{

    width:100%;
}

/* ===== MOBILE MENU ===== */

.menu-toggle{

    display:none;

    flex-direction:column;

    gap:5px;

    cursor:pointer;
}

.menu-toggle span{

    width:28px;
    height:3px;

    background:white;

    border-radius:10px;

    transition:.3s;
}

/* ===== HERO ===== */

.hero{

    position:relative;

    min-height:100vh;

    display:flex;

    align-items:center;

    justify-content:center;

    overflow:hidden;
}

.hero video{

    position:absolute;

    width:100%;
    height:100%;

    object-fit:cover;

    top:0;
    left:0;
}

.hero-overlay{

    position:absolute;

    inset:0;

    background:
    linear-gradient(
    rgba(0,0,0,.35),
    rgba(0,0,0,.45)
    );
}

.car-outline{

    position:absolute;

    width:1100px;

    opacity:.18;

    right:-150px;

    top:50%;

    transform:translateY(-50%);

    animation:
    floatCar 7s ease-in-out infinite;
}

@keyframes floatCar{

    0%{
        transform:
        translateY(-50%)
        translateX(0);
    }

    50%{
        transform:
        translateY(-55%)
        translateX(-20px);
    }

    100%{
        transform:
        translateY(-50%)
        translateX(0);
    }
}

.hero-content{

    position:relative;

    z-index:5;

    text-align:center;

    max-width:900px;

    padding-top:120px;
}

.hero-tag{

    display:inline-block;

    background:
    rgba(244,197,66,.12);

    border:
    1px solid rgba(244,197,66,.35);

    color:var(--gold);

    padding:10px 18px;

    border-radius:50px;

    margin-bottom:25px;

    letter-spacing:1px;

    font-size:14px;

    font-weight:600;
}

.hero h1{

    font-family:'Montserrat',sans-serif;

    font-size:6rem;

    line-height:1;

    font-weight:900;

    margin-bottom:25px;

    text-transform:uppercase;

    letter-spacing:-2px;
}

.hero p{

    max-width:760px;

    margin:auto;

    color:#e5e5e5;

    font-size:1.15rem;

    margin-bottom:35px;
}

/* ===== BUTTONS ===== */

.hero-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

.btn-primary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    background:var(--gold);

    color:#000;

    font-weight:700;

    padding:16px 32px;

    border-radius:12px;

    transition:.35s;
}

.btn-primary:hover{

    transform:
    translateY(-5px);

    box-shadow:
    0 20px 40px rgba(244,197,66,.25);
}

.btn-secondary{

    display:inline-flex;

    align-items:center;

    justify-content:center;

    text-decoration:none;

    color:white;

    border:2px solid var(--gold);

    padding:16px 32px;

    border-radius:12px;

    transition:.35s;
}

.btn-secondary:hover{

    background:var(--gold);

    color:black;
}

/* ======================================================
PART 2
STATS • ABOUT • SERVICES • IMPORT OPTIONS
====================================================== */

/* ===== HERO TRUST ===== */

.hero-trust{

    margin-top:60px;

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:20px;
}

.hero-trust div{

    background:
    rgba(255,255,255,.05);

    border:
    1px solid rgba(255,255,255,.08);

    backdrop-filter:
    blur(10px);

    padding:20px;

    border-radius:18px;

    transition:.35s;
}

.hero-trust div:hover{

    transform:
    translateY(-8px);

    border-color:
    rgba(244,197,66,.4);
}

.hero-trust strong{

    display:block;

    font-size:1.5rem;

    color:var(--gold);

    margin-bottom:5px;
}

.hero-trust span{

    color:#d7d7d7;

    font-size:.9rem;
}

/* ===== STATS ===== */

.stats-section{

    padding:100px 0;

    background:
    linear-gradient(
    180deg,
    #081c15,
    #0b2b20
    );
}

.stats-grid{

    display:grid;

    grid-template-columns:
    repeat(4,1fr);

    gap:25px;
}

.stat-card{

    text-align:center;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    border-radius:20px;

    padding:40px 20px;

    transition:.35s;
}

.stat-card:hover{

    transform:
    translateY(-10px);

    border-color:var(--gold);

    box-shadow:
    var(--shadow);
}

.stat-card h3{

    font-size:3rem;

    color:var(--gold);

    margin-bottom:10px;
}

.stat-card p{

    color:#d7d7d7;
}

/* ===== SECTION HEADERS ===== */

.section-header{

    text-align:center;

    max-width:850px;

    margin:auto;

    margin-bottom:70px;
}

.section-tag{

    display:inline-block;

    color:var(--gold);

    font-weight:700;

    letter-spacing:2px;

    font-size:13px;

    margin-bottom:15px;
}

.section-header h2{

    font-size:3rem;

    margin-bottom:20px;

    line-height:1.2;
}

.section-header p{

    color:#d7d7d7;

    font-size:1.05rem;
}

/* ===== ABOUT ===== */

.about-section{

    padding:120px 0;
}

.about-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;
}

.about-image img{

    width:100%;

    border-radius:24px;

    box-shadow:
    var(--shadow);

    transition:.4s;
}

.about-image img:hover{

    transform:
    translateY(-10px)
    scale(1.02);
}

.about-content h2{

    font-size:3rem;

    margin-bottom:25px;

    line-height:1.2;
}

.about-content p{

    color:#d7d7d7;

    margin-bottom:20px;
}

.about-features{

    margin-top:30px;

    display:grid;

    gap:15px;
}

.about-features div{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    padding:18px;

    border-radius:14px;

    transition:.3s;
}

.about-features div:hover{

    transform:
    translateX(10px);

    border-color:var(--gold);
}

/* ===== SERVICES ===== */

.services-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #0b2b20,
    #081c15
    );
}

.services-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:30px;
}

.service-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    border-radius:24px;

    padding:35px;

    transition:.4s;

    position:relative;

    overflow:hidden;
}

.service-card::before{

    content:'';

    position:absolute;

    top:0;
    left:0;

    width:100%;
    height:4px;

    background:var(--gold);

    transform:scaleX(0);

    transition:.4s;
}

.service-card:hover::before{

    transform:scaleX(1);
}

.service-card:hover{

    transform:
    translateY(-12px);

    box-shadow:
    var(--shadow);

    border-color:var(--gold);
}

.service-icon{

    width:70px;
    height:70px;

    border-radius:18px;

    background:
    rgba(244,197,66,.1);

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:30px;

    margin-bottom:25px;
}

.service-card h3{

    font-size:1.4rem;

    margin-bottom:15px;
}

.service-card p{

    color:#d7d7d7;
}

/* ===== IMPORT OPTIONS ===== */

.import-options{

    padding:120px 0;
}

.options-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(280px,1fr));

    gap:25px;
}

.option-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    border-radius:24px;

    padding:35px;

    transition:.35s;
}

.option-card:hover{

    transform:
    translateY(-10px);

    border-color:var(--gold);
}

.option-card span{

    font-size:3rem;

    font-weight:800;

    color:var(--gold);

    opacity:.8;

    display:block;

    margin-bottom:15px;
}

.option-card h3{

    margin-bottom:15px;

    font-size:1.3rem;
}

.option-card p{

    color:#d7d7d7;
}

/* ======================================================
PART 3
PROCESS • STOCK • TRUST • CTA • CONTACT
FOOTER • ANIMATIONS • MOBILE
====================================================== */

/* ===== PROCESS SECTION ===== */

.process-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #081c15,
    #0b2b20
    );
}

.timeline{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(220px,1fr));

    gap:25px;
}

.timeline-item{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    padding:35px;

    border-radius:24px;

    text-align:center;

    transition:.35s;
}

.timeline-item:hover{

    transform:
    translateY(-10px);

    border-color:var(--gold);
}

.timeline-number{

    width:80px;
    height:80px;

    margin:auto;

    margin-bottom:20px;

    border-radius:50%;

    background:var(--gold);

    color:black;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.5rem;

    font-weight:800;
}

.timeline-item h3{

    margin-bottom:15px;
}

.timeline-item p{

    color:#d7d7d7;
}

/* ===== STOCK ===== */

.featured-stock{

    padding:120px 0;
}

.stock-grid{

    display:grid;

    grid-template-columns:
    repeat(auto-fit,minmax(300px,1fr));

    gap:30px;
}

.stock-card{

    overflow:hidden;

    border-radius:24px;

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    transition:.4s;
}

.stock-card:hover{

    transform:
    translateY(-12px);

    box-shadow:var(--shadow);

    border-color:var(--gold);
}

.stock-card img{

    width:100%;

    height:260px;

    object-fit:cover;
}

.stock-content{

    padding:30px;
}

.stock-type{

    display:inline-block;

    background:var(--gold);

    color:black;

    padding:8px 15px;

    border-radius:50px;

    font-size:12px;

    font-weight:700;

    margin-bottom:15px;
}

.stock-content h3{

    margin-bottom:10px;
}

.stock-content p{

    color:#d7d7d7;

    margin-bottom:20px;
}

.stock-content a{

    text-decoration:none;

    color:var(--gold);

    font-weight:600;
}

/* ===== TRUSTED SECTION ===== */

.trusted-section{

    padding:120px 0;

    background:
    linear-gradient(
    180deg,
    #0b2b20,
    #081c15
    );
}

.trusted-container{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:70px;

    align-items:center;
}

.trusted-image img{

    width:100%;

    max-width:450px;

    border-radius:24px;

    display:block;

    margin:auto;
}

.trusted-content h2{

    font-size:3rem;

    margin-bottom:20px;
}

.trusted-content p{

    color:#d7d7d7;

    margin-bottom:30px;
}

.trust-points{

    display:grid;

    gap:15px;
}

.trust-points div{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    padding:18px;

    border-radius:14px;

    transition:.3s;
}

.trust-points div:hover{

    transform:
    translateX(10px);

    border-color:var(--gold);
}

/* ===== CTA BANNER ===== */

.cta-banner{

    position:relative;

    min-height:500px;

    overflow:hidden;
}

.cta-background{

    position:absolute;

    inset:0;
}

.cta-background img{

    width:100%;
    height:100%;

    object-fit:cover;
}

.cta-overlay{

    position:absolute;

    inset:0;

    background:
    rgba(0,0,0,.72);
}

.cta-content{

    position:relative;

    z-index:2;

    text-align:center;

    padding:120px 20px;
}

.cta-content h2{

    font-size:4rem;

    margin-bottom:20px;
}

.cta-content p{

    color:#d7d7d7;

    margin-bottom:40px;

    font-size:1.1rem;
}

.cta-buttons{

    display:flex;

    justify-content:center;

    gap:20px;

    flex-wrap:wrap;
}

/* ===== CONTACT ===== */

.contact-section{

    padding:120px 0;
}

.contact-grid{

    display:grid;

    grid-template-columns:
    1fr 1fr;

    gap:40px;
}

.contact-card{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    padding:25px;

    border-radius:18px;

    margin-bottom:20px;
}

.contact-card h3{

    color:var(--gold);

    margin-bottom:10px;
}

.contact-form{

    background:
    rgba(255,255,255,.04);

    border:
    1px solid rgba(244,197,66,.15);

    border-radius:24px;

    padding:35px;
}

.form-group{

    margin-bottom:20px;
}

.form-group input,
.form-group textarea,
.form-group select{

    width:100%;

    padding:16px;

    border:none;

    outline:none;

    border-radius:12px;

    background:
    rgba(255,255,255,.08);

    color:white;
}

.form-group select option{

    color:black;
}

.full-width{

    width:100%;
}

/* ===== WHATSAPP ===== */

.whatsapp-float{

    position:fixed;

    right:25px;

    bottom:25px;

    z-index:999;

    background:#25d366;

    color:white;

    text-decoration:none;

    padding:16px 24px;

    border-radius:50px;

    font-weight:700;

    box-shadow:
    0 10px 30px rgba(37,211,102,.4);

    animation:
    pulseWhatsapp 2s infinite;
}

@keyframes pulseWhatsapp{

    0%{
        transform:scale(1);
    }

    50%{
        transform:scale(1.05);
    }

    100%{
        transform:scale(1);
    }
}

/* ===== FOOTER ===== */

.footer{

    background:#05110d;

    padding:90px 0 20px;

    border-top:
    2px solid rgba(244,197,66,.2);
}

.footer-container{

    display:grid;

    grid-template-columns:
    2fr 1fr 1fr 1.5fr;

    gap:40px;
}

.footer-logo{

    height:90px;

    margin-bottom:15px;
}

.footer-tagline{

    color:var(--gold);

    margin-bottom:15px;

    font-weight:600;
}

.footer-column h3{

    margin-bottom:20px;

    color:var(--gold);
}

.footer-column a{

    display:block;

    color:#d7d7d7;

    text-decoration:none;

    margin-bottom:12px;

    transition:.3s;
}

.footer-column a:hover{

    color:var(--gold);

    padding-left:5px;
}

.footer-column p{

    color:#d7d7d7;

    margin-bottom:10px;
}

.social-links{

    text-align:center;

    margin-top:50px;
}

.social-links a{

    margin:0 15px;

    color:white;

    text-decoration:none;
}

.footer-bottom{

    margin-top:30px;

    text-align:center;

    color:#9a9a9a;

    border-top:
    1px solid rgba(255,255,255,.08);

    padding-top:20px;
}

/* ===== REVEAL ANIMATION ===== */

.reveal{

    opacity:0;

    transform:
    translateY(50px);

    transition:
    all .8s ease;
}

.reveal.active{

    opacity:1;

    transform:
    translateY(0);
}

/* ===== MOBILE ===== */

@media(max-width:991px){

    .hero h1{
        font-size:3.5rem;
    }

    .about-grid,
    .trusted-container,
    .contact-grid{

        grid-template-columns:1fr;
    }

    .stats-grid{

        grid-template-columns:
        repeat(2,1fr);
    }

    .footer-container{

        grid-template-columns:1fr;
    }

    .hero-trust{

        grid-template-columns:
        repeat(2,1fr);
    }

    .cta-content h2{

        font-size:2.5rem;
    }
}

@media(max-width:768px){

    nav{

        position:fixed;

        top:90px;
        left:-100%;

        width:100%;

        background:#013220;

        flex-direction:column;

        padding:30px;

        transition:.4s;
    }

    nav.active{

        left:0;
    }

    .menu-toggle{

        display:flex;
    }

    .hero h1{

        font-size:2.8rem;
    }

    .hero-trust{

        grid-template-columns:1fr;
    }

    .stats-grid{

        grid-template-columns:1fr;
    }

    .section-header h2{

        font-size:2.2rem;
    }

    .about-content h2,
    .trusted-content h2{

        font-size:2.2rem;
    }

    .cta-content h2{

        font-size:2rem;
    }

    .whatsapp-float{

        right:15px;
        bottom:15px;

        padding:14px 18px;
    }
}


.hero-brand{

    display:flex;

    justify-content:center;

    align-items:center;

    gap:60px;

    flex-wrap:nowrap;

    margin-bottom:40px;

    width:100%;
}

.brand-left{

    flex:0 0 auto;
}

.brand-right{

    flex:0 0 auto;

    text-align:left;
}

.hero-divider{

    width:2px;

    height:160px;

    background:#f4c542;
}

.company-name{

    font-family:'Montserrat',sans-serif;

    font-size:6rem;

    font-weight:900;

    color:white;

    margin:0;

    text-transform:none;
}

.hero-divider{

    width:2px;

    height:150px;

    background:
    linear-gradient(
    transparent,
    var(--gold),
    transparent
    );
}

.hero-slogan h2{

    font-family:'Montserrat',sans-serif;

    font-size:3rem;

    font-weight:800;

    line-height:1.1;

    margin-bottom:15px;

    text-align:left;
}

.hero-slogan p{

    color:var(--gold);

    font-size:1rem;

    margin:0;

    text-align:left;
}


/* DESKTOP HERO */

.hero-brand{

    display:flex;

    flex-direction:row;

    align-items:center;

    justify-content:center;

    gap:60px;

    margin-bottom:40px;
}

.brand-left{

    text-align:right;
}

.brand-right{

    text-align:left;
}

.hero-divider{

    width:2px;

    height:180px;

    background:var(--gold);
}

.brand-right h2{

    font-family:'Montserrat',sans-serif;

    font-size:3rem;

    font-weight:800;

    line-height:1.15;

    margin-bottom:15px;
}

.brand-right p{

    color:var(--gold);

    font-size:1rem;

    font-weight:600;
}

/* =====================================
MOBILE FIXES
===================================== */

@media screen and (max-width:768px){

    .hero-content{
        padding-top:80px;
    }

    .hero-brand{
        display:flex;
        flex-direction:column !important;
        gap:20px;
    }

    .brand-left,
    .brand-right{
        text-align:center !important;
    }

    .hero-divider{
        width:120px !important;
        height:2px !important;
    }

   .company-name{
    font-size:2.1rem !important;
    letter-spacing:-1px;
}

  .brand-right h2{
    font-size:1.25rem !important;
    line-height:1.2;
}

    .brand-right p{
        font-size:0.9rem;
        padding:0 15px;
    }

    .hero-buttons{
        flex-direction:column;
        width:100%;
    }

    .btn-primary,
    .btn-secondary{
        width:100%;
        max-width:320px;
        margin:auto;
    }

    .hero-trust{
        grid-template-columns:1fr !important;
    }

    .stats-grid{
        grid-template-columns:1fr !important;
    }

    .services-grid{
        grid-template-columns:1fr !important;
    }

    .stock-grid{
        grid-template-columns:1fr !important;
    }

    .timeline{
        grid-template-columns:1fr !important;
    }

    .contact-grid{
        grid-template-columns:1fr !important;
    }

    .footer-container{
        grid-template-columns:1fr !important;
        text-align:center;
    }

    .logo img{
        height:45px !important;
    }

    .header-container{
        min-height:70px;
    }
}
.container,
.hero-content,
.about-grid,
.services-grid,
.stock-grid,
.contact-grid,
.footer-container{

    width:100%;
    max-width:100%;
}