/* =================================================
   JASRAJ AUTO — ULTRA PREMIUM HEADER
   ================================================= */

/* ---------- HEADER BASE ---------- */
/* ---------- HEADER BASE ---------- */
.cta {
        display: none !important;
    }
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 9999;

    padding: 22px 0;

    /* transparent luxury gradient */
    background: linear-gradient(
        to bottom,
        rgba(0,0,0,0.75),
        rgba(0,0,0,0.35),
        rgba(0,0,0,0)
    );

    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);

    transition:
        padding 0.35s ease,
        background 0.45s ease,
        backdrop-filter 0.45s ease,
        box-shadow 0.35s ease;
}

/* Liquid glass when scrolled */
.site-header.scrolled {
    padding: 12px 0;
    background: rgba(10, 10, 10, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 215, 0, 0.18);
    box-shadow: 0 10px 40px rgba(0,0,0,0.45);
}

/* Gold accent mode */
.site-header.gold-mode {
    background: linear-gradient(
        135deg,
        rgba(181,133,0,0.95),
        rgba(255,215,0,0.85),
        rgba(184,134,11,0.95)
    );
}

/* Bottom luxury curve */
/* ---------- GOLD UNDERGLOW ---------- */
/* ========================================
   LUXURY GOLD SEPARATOR + GLOW
======================================== */

.site-header::before {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 1px;

    /* crisp gold line */
    background: linear-gradient(
        90deg,
        rgba(255,215,0,0),
        rgba(255,215,0,0.65),
        rgba(255,215,0,0)
    );

    opacity: 0;
    transition: opacity 0.35s ease;
}

/* soft luxury glow below line */
.site-header::after {
    content: "";
    position: absolute;
    left: 50%;
    bottom: -14px;
    transform: translateX(-50%);

    width: 95%;
    height: 26px;

    background: radial-gradient(
        ellipse at center,
        rgba(255,215,0,0.45),
        rgba(255,215,0,0.18),
        transparent 70%
    );

    filter: blur(12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

/* 🔥 activate only on scroll */
.site-header.scrolled::before,
.site-header.scrolled::after {
    opacity: 1;
}




/* ---------- INNER LAYOUT ---------- */
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* ---------- BRAND ---------- */
.brand {
    display: flex;
    align-items: center;
    gap: 14px;
}
.brand-link {
    display: flex;
    align-items: center;
    gap: 14px;
}


/* LOGO — controlled size */
.brand img.logo {
    height: 48px;
    width: auto;
    max-height: 48px;
    object-fit: contain;
    display: block;
}

/* shrink on scroll */
.site-header.scrolled .brand img.logo {
    height: 42px;
}

/* ---------- GOLD SHINE BRAND NAME ---------- */
/* BRAND NAME */
.brand-name {
    font-family: "Playfair Display", serif;
    font-weight: 600;
    font-size: 22px;
    letter-spacing: 0.6px;
    line-height: 1;
    position: relative;

    background: linear-gradient(
        120deg,
        #b58500,
        #ffd700,
        #fff3b0,
        #ffd700,
        #b58500
    );
    background-size: 250% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    animation: goldShine 5s linear infinite;
}

@keyframes goldShine {
    to {
        background-position: 300% center;
    }
}

/* ---------- NAV ---------- */
.main-nav ul {
    display: flex;
    gap: 34px;
    list-style: none;
}

.main-nav a {
    position: relative;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.25s ease;
}

/* 🧲 MAGNETIC HOVER */
.main-nav a:hover {
    color: #ffd700;
    text-shadow:
        0 0 6px rgba(255,215,0,0.7),
        0 0 14px rgba(255,215,0,0.35);
    transform: translateY(-2px) scale(1.05);
}

/* ---------- CTA BUTTON ---------- */
.btn-primary {
    padding: 12px 26px;
    font-weight: 600;
    border-radius: 12px;
    background: linear-gradient(135deg, #b58500, #ffd700, #fff1b8, #b8860b);
    color: #000;
    box-shadow: 0 10px 30px rgba(0,0,0,0.35);
    transition: all 0.25s ease;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.04);
    box-shadow: 0 18px 45px rgba(0,0,0,0.55);
}

/* ---------- MOBILE MENU ---------- */
.nav-toggle {
    display: none;
    font-size: 28px;
    background: none;
    border: none;
    color: #ffd700;
    cursor: pointer;
}

/* Elite mobile panel */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 78%;
    height: 100vh;
    background: rgba(10,10,10,0.96);
    backdrop-filter: blur(18px);
    padding: 120px 40px;
    transition: right 0.35s ease;
    z-index: 9998;
}

.mobile-menu.active {
    right: 0;
}

.mobile-menu ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 26px;
}

.mobile-menu a {
    font-size: 20px;
    color: #fff;
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 900px) {

    .main-nav {
        display: none;
    }

    .nav-toggle {
        display: block;
    }

    .brand-name {
        font-size: 18px;
    }
}

/* smoother nav hover */

.main-nav a {
    position: relative;
    font-weight: 500;
    opacity: 0.9;
    transition: all 0.25s ease;
}

.main-nav a:hover {
    color: #ffd700;
    text-shadow:
        0 0 6px rgba(255,215,0,0.7),
        0 0 18px rgba(255,215,0,0.35);
}
/* ========================================
   MOBILE HEADER POLISH
======================================== */

@media (max-width: 768px) {

    .site-header {
        padding: 16px 0;
    }

    .site-header.scrolled {
        padding: 10px 0;
    }

    .brand-name {
        font-size: 18px;
    }

    .brand img.logo {
        height: 42px;
        max-height: 42px;
    }

    .site-header.scrolled .brand img.logo {
        height: 38px;
    }
}
/* ========================================
   MOBILE — HIDE ENQUIRE BUTTON
======================================== */

@media (max-width: 768px) {
    .cta {
        display: none !important;
    }
}

