/* -----------------------------------------------------------
   VARIABLES & RESET (White & Green Theme)
----------------------------------------------------------- */
:root {
    --primary-green: #0f3d2e;      /* Deep British Racing Green */
    --accent-green: #2ecc71;       /* Vibrant Emerald */
    --light-bg: #f8f9fa;           /* Very light grey for sections */
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-grey: #666666;
    --shadow-soft: 0 10px 40px rgba(0,0,0,0.08);
    --shadow-hover: 0 20px 50px rgba(15, 61, 46, 0.15);
    --font-main: 'Outfit', sans-serif;
    --font-heading: 'Playfair Display', serif; /* Luxury Feel */
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    font-family: var(--font-main);
    background-color: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 { font-family: var(--font-heading); color: #25d366; font-weight: 700; }
a { text-decoration: none; transition: 0.3s; color: inherit; }
.section-padding { padding: 100px 0; }
.bg-light-gray { background-color: var(--light-bg); }
.container { width: 90%; max-width: 1200px; margin: 0 auto; }

/* -----------------------------------------------------------
   NAVBAR (Clean White)
----------------------------------------------------------- */
.navbar {
    position: fixed; width: 100%; top: 0; z-index: 1000;
    padding: 1.5rem 0; background: transparent; transition: 0.4s;
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    padding: 1rem 0;
}
.nav-container { display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 1.5rem; font-weight: 800; color: var(--primary-green); display: flex; align-items: center; gap: 10px; }
.logo i { color: var(--accent-green); }

.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a { color: var(--primary-green); font-weight: 600; font-size: 0.95rem; text-transform: uppercase; letter-spacing: 0.5px; }
.nav-links a:hover { color: var(--accent-green); }
.nav-btn {
    background: var(--primary-green); color: white !important;
    padding: 10px 25px; border-radius: 30px; transition: 0.3s;
}
.nav-btn:hover { background: var(--accent-green); transform: translateY(-2px); }
.hamburger { display: none; font-size: 1.5rem; color: var(--primary-green); cursor: pointer; }

/* -----------------------------------------------------------
   HERO SECTION (Parallax & Moving)
----------------------------------------------------------- */
.hero-section {
    height: 115vh; position: relative; display: flex; align-items: center; justify-content: center;
    overflow: hidden;
}
.hero-bg-parallax {
    position: absolute; top: 0; left: 0; width: 100%; height: 120%;
    background: url('/images/main-welcome.png') center/cover;
    transform: translateY(0); z-index: -2;
}
/* White Overlay for Light Theme */
.hero-overlay-white {
    position: absolute; inset: 0; background: linear-gradient(to right, rgb(15 61 46 / 31%) 0%, rgb(15 61 46 / 15%) 50%, #0f3d2e3b 100%);
    z-index: -1;
}
.hero-content { text-align: left; width: 90%; max-width: 1200px; padding-top: 60px; }
.pill-badge {
    background: #e6f7ef; color: var(--primary-green); padding: 8px 16px; border-radius: 20px;
    font-weight: 600; font-size: 0.9rem; display: inline-block; margin-bottom: 20px;
}
.hero-content h1 { font-size: 4.5rem; line-height: 1.1; margin-bottom: 20px; }
.text-gradient {
    background: linear-gradient(45deg, var(--primary-green), var(--accent-green));
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
}
.hero-content p { font-size: 1.3rem; color: var(--text-grey); max-width: 600px; margin-bottom: 40px; }

/* Floating Search Bar */
.search-box-floating {
    background: white; padding: 20px; border-radius: 15px; box-shadow: var(--shadow-soft);
    display: inline-block; width: 100%; max-width: 900px;
}
.search-flex { display: flex; align-items: center; flex-wrap: wrap; }
.search-item { flex: 1; padding: 0 20px; display: flex; flex-direction: column; }
.border-left { border-left: 1px solid #eee; }
.search-item label { font-size: 0.8rem; font-weight: 700; color: var(--primary-green); margin-bottom: 5px; }
.search-item select { border: none; font-size: 1.1rem; color: var(--text-dark); background: transparent; outline: none; width: 100%; cursor: pointer; }
.search-btn-main {
    background: var(--primary-green); color: white; border: none; padding: 18px 40px;
    border-radius: 10px; font-weight: 700; font-size: 1rem; cursor: pointer; transition: 0.3s; margin-left: 20px;
}
.search-btn-main:hover { background: var(--accent-green); }

/* Scroll Mouse Animation */
.scroll-indicator { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); }
.mouse { width: 30px; height: 50px; border: 2px solid var(--primary-green); border-radius: 20px; position: relative; }
.wheel { width: 4px; height: 8px; background: var(--primary-green); border-radius: 2px; position: absolute; top: 10px; left: 50%; transform: translateX(-50%); animation: scroll 1.5s infinite; }
@keyframes scroll { 0% { opacity: 1; top: 10px; } 100% { opacity: 0; top: 30px; } }

/* -----------------------------------------------------------
   NEW: STATS SECTION
----------------------------------------------------------- */
.stats-section { padding: 60px 0; background: var(--primary-green); color: white; margin-top: -50px; border-radius: 0 50px 0 0; position: relative; z-index: 2; }
.stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 30px; text-align: center; }
.stat-item h2 { color: var(--accent-green); font-size: 3rem; margin-bottom: 5px; font-family: var(--font-main); }
.stat-item p { color: #ccc; font-size: 1rem; font-weight: 500; }

/* -----------------------------------------------------------
   3D CARDS (Light Mode)
----------------------------------------------------------- */
.section-header.center { text-align: center; margin-bottom: 60px; }
.sub-title { color: var(--accent-green); font-weight: 700; text-transform: uppercase; font-size: 0.9rem; letter-spacing: 1px; }
.section-header h2 { font-size: 2.8rem; margin-top: 10px; }
.underline-animated { height: 4px; width: 80px; background: var(--accent-green); margin: 20px auto 0; transition: width 0.3s; }

.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.feature-card {
    background: white; padding: 40px 30px; border-radius: 20px; box-shadow: var(--shadow-soft);
    text-align: left; transition: transform 0.1s, box-shadow 0.3s; border: 1px solid #f0f0f0;
}
.feature-card:hover { box-shadow: var(--shadow-hover); border-color: var(--accent-green); }
.icon-bubble { width: 70px; height: 70px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; margin-bottom: 25px; }
.icon-bubble.green { background: #e6f7ef; color: var(--primary-green); }
.icon-bubble.dark { background: var(--primary-green); color: var(--accent-green); }
.feature-card p { color: var(--text-grey); }

/* -----------------------------------------------------------
   NEW: PROCESS SECTION (Moving Arrows)
----------------------------------------------------------- */
.process-section { overflow: hidden; }
.section-header.left { text-align: left; margin-bottom: 50px; }
.process-steps { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 20px; }
.step-card {
    background: white; padding: 30px; border-radius: 15px; width: 220px; text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05); position: relative; border-bottom: 3px solid transparent; transition: 0.3s;
}
.step-card:hover { transform: translateY(-10px); border-bottom: 3px solid var(--accent-green); }
.step-number {
    position: absolute; top: -15px; left: 50%; transform: translateX(-50%); background: var(--primary-green);
    color: white; width: 35px; height: 35px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700;
}
.step-card i { font-size: 2.5rem; color: var(--primary-green); margin: 20px 0; }
.step-arrow { color: #ccc; font-size: 1.5rem; }
.moving-arrow { animation: moveArrow 1s ease-in-out infinite alternate; }
@keyframes moveArrow { from { transform: translateX(0); } to { transform: translateX(10px); } }

/* -----------------------------------------------------------
   NEW: STOCK GRID (Clean White)
----------------------------------------------------------- */
.flex-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 50px; }
.view-all-link { color: var(--primary-green); font-weight: 700; border-bottom: 2px solid var(--accent-green); }
.car-grid-clean { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 30px; }
.clean-car-card { background: white; border-radius: 15px; overflow: hidden; box-shadow: var(--shadow-soft); transition: 0.3s; }
.clean-car-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-hover); }

.car-image-box { height: 250px; position: relative; overflow: hidden; }
.img-bg { width: 100%; height: 100%; background-size: cover; background-position: center; transition: 0.5s; }
.clean-car-card:hover .img-bg { transform: scale(1.1); }
.bg-car-1 { background-image: url('/images/2018.png'); }
.bg-car-2 { background-image: url('/images/2019.png'); }
.bg-car-3 { background-image: url('/images/2020.png'); }

.overlay-hover {
    position: absolute; inset: 0; background: rgba(15, 61, 46, 0.7); display: flex; align-items: center; justify-content: center;
    opacity: 0; transition: 0.3s;
}
.clean-car-card:hover .overlay-hover { opacity: 1; }
.btn-white { background: white; color: var(--primary-green); padding: 12px 30px; border-radius: 30px; font-weight: 700; }
.tag-featured { position: absolute; top: 15px; left: 15px; background: var(--accent-green); color: white; padding: 5px 12px; font-size: 0.75rem; font-weight: 700; border-radius: 4px; z-index: 2; }

.car-details-clean { padding: 25px; }
.car-details-clean h3 { font-size: 1.3rem; margin-bottom: 5px; color: var(--text-dark); }
.price { font-size: 1.4rem; color: var(--primary-green); font-weight: 700; margin-bottom: 15px; }
.finance-opt { font-size: 0.9rem; color: #888; font-weight: 400; }
.specs-clean { display: flex; gap: 15px; list-style: none; font-size: 0.9rem; color: #666; border-top: 1px solid #eee; padding-top: 15px; }
.specs-clean i { color: var(--accent-green); margin-right: 5px; }

/* -----------------------------------------------------------
   NEW: SELL PARALLAX
----------------------------------------------------------- */
.sell-parallax {
    height: 500px; background: url('/images/eco-friendly.png') fixed center/cover;
    position: relative; display: flex; align-items: center;
}
.parallax-overlay-green { position: absolute; inset: 0; background: rgba(15, 61, 46, 0.85); }
.parallax-content { position: relative; z-index: 2; width: 100%; }
.content-box-right { width: 50%; margin-left: auto; color: white; }
.content-box-right h2 { color: white; font-size: 3rem; margin-bottom: 20px; }
.btn-group { display: flex; gap: 15px; margin-top: 30px; }
.btn-white-solid { background: white; color: var(--primary-green); padding: 15px 30px; border-radius: 30px; font-weight: 700; }
.btn-transparent { border: 2px solid white; color: white; padding: 15px 30px; border-radius: 30px; font-weight: 700; }
.btn-transparent:hover { background: white; color: var(--primary-green); }

/* -----------------------------------------------------------
   NEW: REVIEWS (Modern)
----------------------------------------------------------- */
.google-badge { display: flex; align-items: center; gap: 10px; justify-content: center; background: white; box-shadow: 0 5px 15px rgba(0,0,0,0.1); padding: 10px 20px; border-radius: 50px; display: inline-flex; margin-top: 15px; }
.review-scroller-wrapper { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; }
.review-card-modern {
    background: #fff; padding: 40px; border-radius: 15px; box-shadow: var(--shadow-soft); border: 1px solid #f5f5f5;
}
.quote-icon { font-size: 2rem; color: #eee; margin-bottom: 20px; }
.review-text { font-size: 1.1rem; color: #555; font-style: italic; margin-bottom: 30px; }
.reviewer-info { display: flex; align-items: center; gap: 15px; }
.avatar { width: 50px; height: 50px; background: var(--primary-green); color: white; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1.2rem; }
.avatar.green { background: var(--accent-green); }
.verified { font-size: 0.8rem; color: var(--accent-green); text-transform: uppercase; letter-spacing: 1px; font-weight: 700; }

/* -----------------------------------------------------------
   NEW: FAQ & FOOTER
----------------------------------------------------------- */
.faq-container { display: flex; flex-wrap: wrap; gap: 50px; }
.faq-header { flex: 1; min-width: 300px; }
.faq-list { flex: 2; min-width: 300px; }
.faq-item { border-bottom: 1px solid #ddd; padding: 20px 0; }
.faq-item summary { font-size: 1.2rem; font-weight: 700; color: var(--primary-green); cursor: pointer; list-style: none; display: flex; justify-content: space-between; }
.faq-item summary::after { content: '+'; font-size: 1.5rem; color: var(--accent-green); }
.faq-item[open] summary::after { content: '-'; }
.faq-content { padding-top: 15px; color: #666; }

.footer-clean { background: #111; color: white; padding-top: 80px; }
.footer-content { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; padding-bottom: 60px; border-bottom: 1px solid #222; }
.f-brand h3 { color: white; margin-bottom: 15px; }
.f-links ul { list-style: none; }
.f-links li { margin-bottom: 10px; }
.f-links a { color: #888; }
.f-links a:hover { color: var(--accent-green); }
.highlight-text { font-size: 1.5rem; color: var(--accent-green); font-weight: 700; margin: 10px 0; }
.footer-bottom { padding: 20px 0; text-align: center; font-size: 0.8rem; color: #555; }
.social-links i { margin-right: 15px; font-size: 1.2rem; cursor: pointer; transition: 0.3s; }
.social-links i:hover { color: var(--accent-green); }

/* Floating WA */
.float-wa { position: fixed; bottom: 30px; right: 30px; background: #25D366; width: 60px; height: 60px; border-radius: 50%; display: flex; align-items: center; justify-content: center; color: white; font-size: 2rem; box-shadow: 0 10px 20px rgba(37, 211, 102, 0.4); z-index: 999; }
.float-wa:hover { transform: scale(1.1); }

/* Animation Utility Classes */
.fade-in { opacity: 0; animation: fadeIn 1s forwards; }
.slide-up { opacity: 0; transform: translateY(50px); animation: slideUp 0.8s forwards; }
.slide-left { opacity: 0; transform: translateX(50px); animation: slideLeft 0.8s forwards; }
.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

@keyframes fadeIn { to { opacity: 1; } }
@keyframes slideUp { to { opacity: 1; transform: translateY(0); } }
@keyframes slideLeft { to { opacity: 1; transform: translateX(0); } }

/* Responsive */
@media (max-width: 768px) {
    .hero-content h1 { font-size: 2.5rem; }
    .search-flex { flex-direction: column; gap: 15px; }
    .search-item { width: 100%; border-left: none; padding: 10px 0; border-bottom: 1px solid #eee; }
    .search-btn-main { width: 100%; margin-left: 0; margin-top: 10px; }
    .nav-links { position: absolute; top: 80px; left: 0; width: 100%; background: white; flex-direction: column; padding: 20px; box-shadow: 0 10px 20px rgba(0,0,0,0.05); display: none; }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
    .process-steps { justify-content: center; }
    .step-arrow { display: none; }
    .content-box-right { width: 100%; text-align: center; }
    .btn-group { justify-content: center; }
}




/* -----------------------------------------------------------
   ABOUT US SECTION (Premium White/Green)
----------------------------------------------------------- */
.about-section {
    background: var(--white);
    overflow: hidden;
}

.about-flex {
    display: flex;
    align-items: center;
    gap: 80px;
}

.about-image-side {
    flex: 1;
    position: relative;
}

.image-stack {
    position: relative;
    padding: 20px;
}

.main-img {
    width: 100%;
    height: 500px;
    border-radius: 20px;
    background: url('/images/experience.png') center/cover;
    box-shadow: var(--shadow-hover);
    position: relative;
    z-index: 1;
}

.accent-box {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--primary-green);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    z-index: 2;
    box-shadow: 0 15px 30px rgba(15, 61, 46, 0.3);
}

.years-num {
    display: block;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-green);
    line-height: 1;
}

.years-text {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.floating-leaf {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 80px;
    height: 80px;
    background: var(--accent-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 2rem;
    animation: float 4s ease-in-out infinite;
    z-index: 0;
}

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-20px) rotate(15deg); }
}

.about-content-side {
    flex: 1.2;
}

.lead-text {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin: 20px 0;
}

.story-body p {
    color: var(--text-grey);
    margin-bottom: 25px;
}

.mission-points {
    margin-top: 40px;
}

.m-point {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.m-point i {
    font-size: 1.2rem;
    color: var(--accent-green);
    margin-top: 5px;
}

.m-point h5 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.founder-signoff {
    margin-top: 50px;
    border-top: 1px solid #eee;
    padding-top: 30px;
}

.signature {
    font-family: 'Playfair Display', serif;
    font-size: 1.8rem;
    color: var(--primary-green);
    font-style: italic;
}

/* Responsive Fix */
@media (max-width: 992px) {
    .about-flex { flex-direction: column; gap: 60px; }
    .about-image-side { width: 80%; margin: 0 auto; }
    .accent-box { right: 0; bottom: -20px; padding: 20px; }
}










/*//////////////              about             ////////////////*/

 :root {
            --primary-green: #0f3d2e;
            --accent-green: #38b449;
            --soft-white: #f8fcf9;
            --transition: all 0.3s ease;
        }

        * { box-sizing: border-box; margin: 0; padding: 0; }
        body { font-family: 'Outfit', sans-serif; line-height: 1.6; color: #333; overflow-x: hidden; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

        /* RESPONSIVE NAVBAR */
        .navbar { background: white; padding: 15px 0; position: sticky; top: 0; z-index: 1000; box-shadow: 0 2px 10px rgba(0,0,0,0.1); }
        .nav-container { display: flex; justify-content: space-between; align-items: center; }
        
        .nav-links { display: flex; list-style: none; gap: 25px; align-items: center; }
        .nav-links a { text-decoration: none; color: var(--primary-green); font-weight: 600; transition: var(--transition); }
        .nav-links a:hover { color: var(--accent-green); }
        
        .nav-btn { background: var(--accent-green); color: white !important; padding: 10px 20px; border-radius: 50px; }

        .hamburger { display: none; font-size: 1.5rem; cursor: pointer; color: var(--primary-green); }

        /* HERO & PARALLAX */
        .about-hero-parallax {
            height: 60vh;
            background: linear-gradient(rgb(0 0 0 / 70%), rgb(0 0 0 / 70%)), url('/images/eco-friendly.png');
            background-attachment: fixed;
            background-position: center;
            background-size: cover;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            color: white;
            clip-path: polygon(0 0, 100% 0, 100% 90%, 0% 100%);
        }

        /* GRID SYSTEM */
        .grid-layout { 
            display: grid; 
            grid-template-columns: 1fr 1fr; 
            gap: 40px; 
            align-items: center; 
            padding: 80px 0;
        }

        .content-block {
            padding: 30px;
            background: white;
            border-radius: 20px;
            box-shadow: 0 10px 30px rgba(0,0,0,0.05);
            border-left: 6px solid var(--accent-green);
        }

        .text-gradient {
            background: linear-gradient(135deg, var(--primary-green), var(--accent-green));
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            font-weight: 800;
        }

        /* 3D EFFECTS - Scaled for performance */
        .prius-3d-frame { position: relative; transition: transform 0.5s ease; }
        .prius-3d-frame img { width: 100%; border-radius: 25px; box-shadow: 0 20px 50px rgba(0,0,0,0.15); }
        .floating-leaf { position: absolute; font-size: 3rem; color: var(--accent-green); opacity: 0.3; animation: leafFloat 5s ease-in-out infinite; z-index: 1; }

        @keyframes leafFloat { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-20px); } }

        /* FOOTER */
        .footer-dark { background: #0a1411; color: white; padding: 60px 0 30px; margin-top: 50px; }
        .footer-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 40px; }

        /* MOBILE RESPONSIVE MEDIA QUERIES */
        @media (max-width: 992px) {
            .about-hero-parallax h1 { font-size: 3.5rem !important; }
            .grid-layout { grid-template-columns: 1fr; gap: 50px; text-align: center; }
            .content-block { border-left: 0; border-top: 6px solid var(--accent-green); }
            .reverse-mobile { order: -1; } /* Keeps image above text on mobile */
        }

        @media (max-width: 768px) {
            .about-hero-parallax { background-attachment: scroll; height: 50vh; }
            .hamburger { display: block; }
            .nav-links {
                position: fixed;
                top: 70px;
                left: -100%;
                flex-direction: column;
                background: white;
                width: 100%;
                padding: 40px;
                transition: 0.4s;
                box-shadow: 0 10px 10px rgba(0,0,0,0.1);
            }
            .nav-links.active { left: 0; }
            .footer-grid { text-align: center; }
        }