/* =========================================================
   1. GLOBAL RESET
   ========================================================= */

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


/* =========================================================
   2. COLOR VARIABLES
   ========================================================= */

:root {

    /* ---------- PURPLE COLORS ---------- */

    --purple-950: #190d2b;
    --purple-900: #26103f;
    --purple-800: #3b1768;
    --purple-700: #5b21b6; /* --purple-- */
    --purple-600: #7c3aed; /* --medium purple-- */
    --purple-400: #a78bfa; /* --light purple-- */
    --purple-100: #f3e8ff; /* --lavender-- */
    --purple-dark: #24103d;
    --purple-deep: #35145f;


    /* ---------- ORANGE COLORS ---------- */

    --orange-900: #9a3412;
    --orange-700: #c2410c; /* --dark orange-- */
    --orange-600: #ea580c; 
    --orange-500: #f97316; /* --orange-- */
    --orange-300: #fdba74;
    --orange-bright: #fb923c;
    --orange-light: #fed7aa;

    /* ---------- GENERAL COLORS ---------- */

    --cream: #fffaf5;
    --ink: #281b35;
    --muted: #6b6174;
    --white: #ffffff;
    --dark: #24103d;
    --dark2: #35145f;
    --light: #faf7ff;
    --text: #30233f;
}


/* =========================================================
   3. GLOBAL / BODY STYLES
   ========================================================= */

html {
    scroll-behavior: smooth;
}

body {
    font-family: Inter, Arial, Helvetica,sans-serif;
    color: var(--ink);
    background: var(--cream);
    line-height: 1.6;
}

a {
    text-decoration: none;
    color: inherit;
}


/* =========================================================
   4. HEADER / NAVIGATION
   ========================================================= */

.site-header {

    height: 76px;

    padding: 0 6%;

    display: flex;
    align-items: center;

    gap: 32px;

    justify-content: space-between;

    background:
        linear-gradient(
            100deg,
            var(--purple-950),
            var(--purple-800)
        );

    color: var(--white);

    position: sticky;
    top: 0;

    z-index: 20;

    box-shadow:
        0 8px 25px #190d2b22;

}


/* ---------- LOGO ---------- */

.brand {

    font-size: 26px;

    font-weight: 900;

    letter-spacing: -1px;
}

.brand span {
    color: var(--orange-500);
}


/* ---------- NAVIGATION ---------- */

nav {

    display: flex;

    gap: 28px;

    font-weight: 700;
}

nav a {
    transition: 0.2s ease;
}

nav a:hover {
    color: var(--orange-300);
}


/* ---------- HEADER CTA ---------- */

.header-cta {

    background: var(--orange-500);

    padding: 10px 18px;

    border-radius: 999px;

    font-weight: 800;

    transition: 0.2s ease;
}

.header-cta:hover {
    background: var(--orange-600);
    transform: translateY(-1px);
}


/* =========================================================
   5. HERO SECTION
   ========================================================= */

.hero {

    min-height: 650px;

    padding: 90px 8%;

    display: grid;

    grid-template-columns:
        1.25fr
        0.75fr;

    gap: 60px;

    align-items: center;

    background:
        radial-gradient(
            circle at 85% 20%,
            #f9731630,
            transparent 28%
        ),
        linear-gradient(
            135deg,
            rgba(36, 16, 61, .95),
            rgba(91, 33, 182, .70),
            rgba(249, 115, 50, .35)
        ),
        url("images/car1.jpg");


    color: var(--white);
}


/* ---------- HERO EYEBROW ---------- */

.eyebrow {

    font-size: 13px;

    letter-spacing: 2.5px;

    font-weight: 900;

    color: var(--orange-500);

    margin-bottom: 10px;
}


/* ---------- HERO HEADING ---------- */

.hero h1 {

    font-size:
        clamp(
            48px,
            7vw,
            82px
        );

    line-height: 0.98;

    letter-spacing: -3px;

    margin: 12px 0 24px;
}

.hero h1 span {
    color: var(--orange-500);
}


/* ---------- HERO DESCRIPTION ---------- */

.hero-copy > p {

    max-width: 650px;

    font-size: 19px;

    color: #eee1fa;
}


/* ---------- HERO BUTTON AREA ---------- */

.hero-actions {

    display: flex;

    gap: 14px;

    margin-top: 30px;
}


/* =========================================================
   6. BUTTONS
   ========================================================= */

.btn {

    display: inline-flex;

    align-items: center;

    justify-content: center;

    border: 0;

    border-radius: 10px;

    padding: 14px 22px;

    font-weight: 900;

    cursor: pointer;

    font-size: 15px;

    transition: 0.2s ease;
}


/* ---------- ORANGE BUTTON ---------- */

.orange {
    border: 2px solid var(--purple-400);
    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--orange-bright),
            var(--orange-700)
        );

    box-shadow:
        0 10px 24px #f9731633;
}

.orange:hover {
    filter: brightness(1.25);
    transform: translateY(-1px);
}


/* ---------- PURPLE OUTLINE BUTTON ---------- */

.purple-outline {

    border: 2px solid var(--orange-500);

    color: var(--white);
    background:
        linear-gradient(
            135deg,
            var(--purple-600),
            var(--purple-900)
        );
		    box-shadow:
        0 10px 24px #f9731633;
}

.purple-outline:hover {
    background: #ffffff20;
	filter: brightness(1.25);
    transform: translateY(-1px);
}


/* =========================================================
   7. HERO INFORMATION CARD
   ========================================================= */

.hero-card {

    background: #ffffff10;
    border: 1px solid #ffffff22;
    border-radius: 24px;
    padding: 28px;
    backdrop-filter: blur(12px);
    box-shadow:
        0 20px 50px #0003;
}


/* ---------- HERO CARD TITLE ---------- */

.hero-card-top {

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;

    color: var(--purple-800);

    margin-bottom: 18px;
}


/* ---------- SERVICE MINI CARD ---------- */

.service-mini {

    padding: 18px 0;

    border-top: 1px solid #ffffff20;

    display: flex;

    flex-direction: column;
}

.service-mini b {
    color: var(--orange-300);
    font-size: 20px;
}

.service-mini span {

    color: var(--purple-dark);

    font-size: 14px;
}


/* ---------- HERO BADGE ---------- */

.hero-badge {

    margin-top: 20px;

    padding: 12px;

    border-radius: 10px;

    background: var(--orange-500);

    color: var(--white);

    font-weight: 800;

    text-align: center;
}


/* =========================================================
   8. GENERAL SECTION
   ========================================================= */

.section {

    padding: 90px 8%;
}


/* ---------- SECTION HEADING ---------- */

.section-heading {

    max-width: 760px;

    margin-bottom: 35px;
}


/* ---------- SECTION TITLE ---------- */

.section h2 {

    font-size:
        clamp(
            32px,
            5vw,
            52px
        );

    line-height: 1.05;

    color: var(--purple-950);
}


/* =========================================================
   9. SERVICE CARDS
   ========================================================= */

.service-grid {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 24px;
}


/* ---------- SERVICE CARD ---------- */

.service-card {

    padding: 35px;

    border-radius: 24px;

    background: var(--white);

    border: 1px solid #eadcf7;

    box-shadow:
        0 15px 40px #3b17680d;

    transition: 0.2s ease;
}


/* ---------- SERVICE CARD HOVER ---------- */

.service-card:hover {

    transform: translateY(-6px);
    box-shadow:
        0 25px 55px #3b17661a;

}


/* ---------- SERVICE ICON ---------- */

.service-card .icon {

    font-size: 45px;

    margin-bottom: 12px;
}


/* ---------- CARD LABEL ---------- */

.card-label {

    font-size: 12px;

    font-weight: 900;

    letter-spacing: 2px;
}


/* ---------- RENTAL CARD ---------- */

.rental-card .card-label,
.rental-card .card-link {

    color: var(--orange-600);
}


/* ---------- SALES CARD ---------- */

.sales-card .card-label,
.sales-card .card-link {

    color: var(--purple-700);
}


/* ---------- SERVICE CARD TITLE ---------- */

.service-card h3 {

    font-size: 30px;

    margin: 5px 0 10px;
}


/* ---------- SERVICE CARD DESCRIPTION ---------- */

.service-card p {

    color: var(--muted);

    max-width: 550px;
}


/* ---------- SERVICE CARD LINK ---------- */

.card-link {

    display: inline-block;

    margin-top: 22px;

    font-weight: 900;
}


/* =========================================================
   10. DARK / CRM SECTION
   ========================================================= */

.dark-section {

    background:
        linear-gradient(
            135deg,
            var(--purple-900),
            var(--purple-700)
        );

    color: var(--white);
}


/* ---------- DARK SECTION HEADING ---------- */

.dark-section h2 {
    color: var(--white);
}


/* =========================================================
   11. FEATURE GRID
   ========================================================= */

.feature-grid {

    display: grid;

    grid-template-columns:
        repeat(4, 1fr);

    gap: 18px;
}


/* ---------- FEATURE CARD ---------- */

.feature-grid > div {

    padding: 24px;

    border:
        1px solid #ffffff18;

    border-radius: 16px;

    background: #ffffff08;
}


/* ---------- FEATURE TITLE ---------- */

.feature-grid b {

    font-size: 18px;

    color: var(--orange-500);
}


/* ---------- FEATURE DESCRIPTION ---------- */

.feature-grid p {

    color: #e5d9ed;

    margin-top: 8px;
}


/* =========================================================
   12. CONTACT / LEAD GENERATION SECTION
   ========================================================= */

.contact-section {

    display: grid;

    grid-template-columns:
        1fr
        1fr;

    gap: 50px;

    align-items: start;
}


/* ---------- CONTACT HEADING ---------- */

.contact-section h2 {
    margin-bottom: 12px;
}


/* ---------- CONTACT DESCRIPTION ---------- */

.contact-section p {
    color: var(--muted);
}


/* =========================================================
   13. LEAD FORM
   ========================================================= */

.lead-form {

    display: grid;

    gap: 12px;

    background: var(--white);

    padding: 28px;

    border-radius: 20px;

    border-top:
        5px solid
        var(--orange-500);

    box-shadow:
        0 15px 40px #3b176612;
}


/* ---------- FORM INPUTS ---------- */

.lead-form input,
.lead-form textarea {

    width: 100%;

    padding: 14px;

    border:
        1px solid
        #dfd5e8;

    border-radius: 10px;

    font: inherit;

    outline: none;
}


/* ---------- FORM FOCUS ---------- */

.lead-form input:focus,
.lead-form textarea:focus {

    border-color:
        var(--purple-600);

    box-shadow:
        0 0 0 3px
        #7c3aed18;
}


/* ---------- FORM STATUS ---------- */

.form-status {

    min-height: 20px;

    font-size: 14px;

    font-weight: 700;
}


/* =========================================================
   14. FOOTER
   ========================================================= */

footer {

    padding: 28px 8%;

    background: #12091f;

    color: #cdbfe0;

    text-align: center;
}


/* =========================================================
   15. TABLET / MOBILE RESPONSIVE
   ========================================================= */

@media (max-width: 800px) {


    /* ---------- NAVIGATION ---------- */

    nav {
        display: none;
    }


    /* ---------- HEADER BUTTON ---------- */

    .header-cta {
        display: none;
    }


    /* ---------- HERO ---------- */

    .hero {

        grid-template-columns: 1fr;

        padding: 70px 6%;
    }


    /* ---------- HERO CARD ---------- */

    .hero-card {
        display: none;
    }


    /* ---------- GENERAL SECTIONS ---------- */

    .section {
        padding: 65px 6%;
    }


    /* ---------- SERVICE GRID ---------- */

    .service-grid {

        grid-template-columns: 1fr;
    }


    /* ---------- CONTACT ---------- */

    .contact-section {

        grid-template-columns: 1fr;
    }


    /* ---------- FEATURES ---------- */

    .feature-grid {

        grid-template-columns:
            1fr 1fr;
    }
}


/* =========================================================
   16. SMALL MOBILE DEVICES
   ========================================================= */

@media (max-width: 500px) {


    /* ---------- FEATURES ---------- */

    .feature-grid {

        grid-template-columns: 1fr;
    }


    /* ---------- HERO HEADING ---------- */

    .hero h1 {

        font-size: 50px;
    }


    /* ---------- HERO BUTTONS ---------- */

    .hero-actions {

        flex-direction: column;
    }


    /* ---------- FULL WIDTH BUTTONS ---------- */

    .hero-actions .btn {

        width: 100%;
    }
}