*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

:root {
    /* PRIMARY BRAND (Royal Gold Theme) */
    --gold: #c99827;
    /* main gold */
    --gold2: #a87e1f;
    /* darker gold (hover / depth) */
    --gold-light: #e6b84d;
    /* highlight / shine */
    --gold-dim: rgba(201, 152, 39, 0.15);
    --rgb: 201, 152, 39;

    /* BACKGROUND (Luxury Dark - slightly warm) */
    --bg: #0c0a06;
    /* warm black */
    --bg2: #14110b;
    --bg3: #1b170f;
    --bg4: #221c12;
    --hero_gradi: 12, 10, 6;

    /* CARD */
    --card-bg: #15120c;
    --card-border: rgba(201, 152, 39, 0.25);

    /* TEXT */
    --text-dim: rgba(255, 255, 255, 0.5);
    --text-mid: rgba(255, 255, 255, 0.75);
    --white: #ffffff;
    --booked-red: #ff4d4d;
}

*.bg-primary {
    background-color: var(--gold) !important;
}

*.text-primary {
    color: var(--gold) !important;
}

*.text-muted {
    color: var(--text-mid) !important;
}

body {
    background: var(--bg);
    color: var(--white);
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    overflow-x: hidden;
}

.occ-icon-wrap i {
    padding: 20px !important;
}

/* ─── PRELOADER ─── */
#preloader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    transition: opacity 0.8s ease;
}

#preloader.hide {
    opacity: 0;
    pointer-events: none;
}

.pre-wrap {
    position: relative;
    width: 200px;
    height: 200px;
}

.alert p {
    text-align: center !important;
    margin: 0px !important;
    font-weight: 500 !important;
}

.alert {
    /* --- Positioning & Layout --- */
    position: fixed;
    top: 20px;
    right: -350px;
    /* Shuruat mein screen ke bahar rahega */
    max-width: 300px;
    z-index: 9998;

    /* --- Typography & Design --- */
    text-align: center !important;
    margin: 0px !important;
    font-weight: 500 !important;
    padding: 10px 20px !important;
    font-size: 14px !important;
    border-radius: 12px;
    /* Smooth corners ke liye */
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    /* Premium look ke liye */

    /* --- Animation Logic --- */
    opacity: 0;
    animation:
        slideInRight 0.8s ease forwards 2s,
        /* 2s baad entry */
        slideOutRight 0.8s ease forwards 7s;
    /* 7s baad exit */
}

/* --- Entry Animation: Right se 0 to 100% opacity --- */
@keyframes slideInRight {
    0% {
        right: -350px;
        opacity: 0;
    }

    100% {
        right: 20px;
        opacity: 1;
    }
}

/* --- Exit Animation: Wapas Right ki taraf bahar --- */
@keyframes slideOutRight {
    0% {
        right: 20px;
        opacity: 1;
    }

    100% {
        right: -350px;
        opacity: 0;
    }
}


.pre-svg {
    width: 200px;
    height: 200px;
}

/* rotating arc */
.arc-track {
    fill: none;
    stroke: rgba(var(--rgb), 0.3);
    stroke-width: 1;
}

.arc-fill {
    fill: none;
    stroke: var(--gold);
    stroke-width: 1.5;
    stroke-linecap: round;
    stroke-dasharray: 565;
    stroke-dashoffset: 565;
    transition: stroke-dashoffset 2s ease;
}

.tick-line {
    stroke: var(--gold);
    stroke-width: 1;
}

.tick-dim {
    stroke: rgba(var(--rgb), 0.4);
    stroke-width: 0.8;
}

.pre-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
}

.pre-logo-icon {
    font-size: 1.2rem;
    color: var(--gold);
    display: block;
    margin-bottom: 6px;
}

.pre-logo-text {
    font-family: "Cinzel", serif;
    font-size: 0.75rem;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0;
    animation: fadeIn 0.4s ease 0.3s forwards;
}

.pre-tagline {
    font-size: 0.45rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: rgba(var(--rgb), 0.7);
    margin-top: 4px;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.5s forwards;
}

.pre-percent {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    color: var(--gold);
    margin-top: 10px;
    letter-spacing: 2px;
    opacity: 0;
    animation: fadeIn 0.4s ease 0.6s forwards;
}

/* corner brackets on preloader */
.corner {
    position: absolute;
    width: 22px;
    height: 22px;
    border-color: rgba(var(--rgb), 0.4);
    border-style: solid;
}

.c-tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.c-tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.c-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.c-br {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

/* ─── PAGE CORNER BRACKETS ─── */
.page-corners {
    position: fixed;
    inset: 12px;
    pointer-events: none;
    z-index: 500;
}

.page-corner {
    position: absolute;
    width: 28px;
    height: 28px;
    border-color: rgba(var(--rgb), 0.5);
    border-style: solid;
}

.pc-tl {
    top: 0;
    left: 0;
    border-width: 1px 0 0 1px;
}

.pc-tr {
    top: 0;
    right: 0;
    border-width: 1px 1px 0 0;
}

.pc-bl {
    bottom: 0;
    left: 0;
    border-width: 0 0 1px 1px;
}

.pc-br {
    bottom: 0;
    right: 0;
    border-width: 0 1px 1px 0;
}

/* ─── NAVBAR ─── */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 18px 0;
    transition: background 0.3s, padding 0.3s, backdrop-filter 0.3s;
}

.navbar.scrolled {
    backdrop-filter: blur(14px);
    padding: 12px 0;
    border-bottom: 1px solid rgba(var(--rgb), 0.2);
}

.nav-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.nav-brand-icon {
    color: var(--gold);
    font-size: 1.3rem;
}

.nav-brand-text {
    font-family: "Cinzel", serif;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: 5px;
}

.nav-link {

    font-family: 'Montserrat', sans-serif;
    color: #fff !important;
    font-size: 10px;
    letter-spacing: 3px;
    text-transform: uppercase;
    font-weight: 600;
    padding: 8px 14px !important;
    transition: color 0.3s;
}

.nav-link:hover {
    color: var(--gold) !important;
}

.nav-link .active {
    color: var(--gold) !important;
}

.nav-call-link {
    font-size: 0.6rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.5) !important;
    display: flex;
    align-items: center;
    gap: 5px;
}

.btn-booknow {
    background: var(--gold);
    color: #061004 !important;
    /* dark green-black instead of brown */
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 15px !important;
    transition: all 0.3s ease;
    border: none;
}

.btn-booknow:hover {
    color: #061004 !important;
    background: var(--gold2);
    transform: translateY(-2px);
}

.navbar-toggler {
    border: 1px solid rgba(var(--rgb), 0.3);
    padding: 5px 9px;
}

.navbar-toggler-icon {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(252,204,51,1)' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

/* ─── HERO ─── */
#home {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.hero-car-bg {
    position: absolute;
    inset: 0;
    /* background: url('https://images.unsplash.com/photo-1544636331-e26879cd4d9b?w=1800&q=80') right center/cover no-repeat; */
    opacity: 0.22;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to right,
            rgba(var(--hero_gradi), 1) 30%,
            rgba(var(--hero_gradi), 0.7) 65%,
            rgba(var(--hero_gradi), 0.4) 100%),
        linear-gradient(to bottom,
            rgba(var(--hero_gradi), 0.6) 0%,
            transparent 30%,
            transparent 70%,
            rgba(var(--hero_gradi), 0.9) 100%),
        radial-gradient(circle at 70% 40%,
            rgba(var(--rgb), 0.15),
            transparent 60%);
}

/* subtle golden glow behind car */
.hero-glow {
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(var(--rgb), 0.07) 0%, transparent 70%);
}

.hero-inner {
    position: relative;
    z-index: 2;
    padding-top: 135px;
    text-align: center;
}

.hero-label {

    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    opacity: 0.7 !important;
    animation: up 0.9s ease 2.8s forwards;
}

.hero-title {
    font-family: "Cinzel", serif;
    font-size: clamp(4.5rem, 11vw, 9rem);
    font-weight: 800;
    line-height: 0.88;
    text-transform: uppercase;
    letter-spacing: 6px;
    opacity: 0;
    animation: up 0.9s ease 3s forwards;
}

.hero-title .t-white {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 35px;
    font-size: 87px;
    font-family: "Cinzel", serif;
    /* font-optical-sizing: auto; */
}

.hero-title .t-gold {
    color: var(--gold);
    font-weight: 500;
    letter-spacing: 35px;
    font-size: 142px;
}

.hero-sub {
    font-size: 15px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.9;
    letter-spacing: 1px;
    max-width: 565px;
    margin: 30px auto 30px;
    opacity: 0;
    animation: up 0.9s ease 3.2s forwards;
}

.hero-btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: up 0.9s ease 3.4s forwards;
}

.btn-hero-gold {

    font-family: "Montserrat", sans-serif;
    background: var(--gold);
    color: #0c0a06;
    font-size: 14px;
    border-radius: 5px !important;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px 34px;
    border: none;
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-gold:hover {
    background: var(--gold2);
    color: #0c0a06;
    transform: translateY(-2px);
}

.btn-hero-outline {
    background: transparent;
    color: var(--gold);
    font-size: 14px;

    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 5px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 15px 34px;
    border: 2px solid rgba(var(--rgb), 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-hero-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.out-hero {
    margin-top: 45px;
    border-top: 1px solid rgba(var(--rgb), 0.1);
    padding-top: 28px;
    opacity: 0;
    animation: up 0.9s ease 3.6s forwards;
}

.hero-stats {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0;
    max-width: 525px;
    margin: auto;
}

.stat-item {
    width: 100%;
    text-align: center;
}


.stat-discover {
    font-size: 10px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 2px;
}

.stat-val {
    font-family: "Cinzel", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.stat-val span {
    font-size: 1rem;
}

.stat-label {

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 4px;
}

@keyframes up {
    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

/* ─── FLEET SECTION ─── */
#fleet {
    background: var(--bg2);
    padding: 0;
}

/* Fleet hero banner: "THE URUS" big text */
.fleet-intro {
    padding: 80px 0 0;
    text-align: center;
    position: relative;
}

.fleet-avail {

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 14px;
}

.fleet-big-title {

    font-family: "Cinzel", serif;
    font-size: 80px;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    color: var(--white);
}

.fleet-big-title .t-gold {
    font-weight: 600;
    color: var(--gold);
}

.fleet-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    margin: 30px auto;
}

/* car nav pills */
.fleet-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid rgba(var(--rgb), 0.12);
    margin-bottom: 0;
    padding: 0 20px;
}

.fleet-pill {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.35);
    font-size: 0.58rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 14px 28px;
    border-bottom: 2px solid transparent;
    cursor: pointer;
    transition: all 0.3s;
}

.fleet-pill.active,
.fleet-pill:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* car panels */
.fleet-panels {
    padding: 70px 0 80px;
}

.car-panel {
    display: none;
}

.car-panel.active {
    display: block;
}

/* left: car image */
.car-img-col {
    position: relative;
}

.car-img-wrap {
    position: relative;
    background: radial-gradient(circle at 50% 60%, rgba(var(--rgb), 0.06) 0%, transparent 70%),
        #0a1203;
    overflow: hidden;
}

.car-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9 !important;
    display: block;
    filter: drop-shadow(0 20px 60px rgba(0, 0, 0, 0.8));
    transition: transform 0.6s ease;
}

.car-img-wrap:hover img {
    transform: scale(1.03);
}

.car-suv-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(0, 0, 0, 0.4);
    border: 1px solid #fff;
    color: #fff;
    border-radius: 30px;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 20px;
}

/* slider arrows */
.car-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 36px;
    height: 36px;
    border: 1px solid rgba(var(--rgb), 0.25);
    background: rgba(10, 18, 3, 0.6);
    color: var(--gold);
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 5;
    transition: all 0.3s;
}

.car-arrow:hover {
    background: var(--gold);
    color: #0c0a06;
}

.arrow-prev {
    left: -6px;
}

.arrow-next {
    right: -6px;
}

/* right: car details */
.car-detail-brand {
    font-size: 40px;
    font-family: "Cinzel", serif;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 6px;
    font-weight: 400;
}

.car-detail-name {
    font-family: "Cinzel", serif;
    font-size: 40px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    line-height: 1;
    margin-bottom: 18px;
    color: var(--gold);
}

.car-detail-desc {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 26px;
    font-weight: 300;
}

/* spec boxes */
.spec-grid {
    background: rgba(var(--rgb), 0.1);
    border: 1px solid rgba(var(--rgb), 0.2);
}

/* .spec-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 6px;
    margin-bottom: 24px;
} */

.spec-box {
    background: rgba(var(--rgb), 0.1);
    border: 1px solid rgba(var(--rgb), 0.2);
    padding: 14px 10px;
    border-radius: 10px !important;
    text-align: center;
    transition: border-color 0.3s;
}

.spec-box:hover {
    border-color: rgba(var(--rgb), 0.35);
}

.spec-box-icon {
    color: var(--gold);
    font-size: 22px;
    margin-bottom: 8px;
}

.spec-box-val {
    font-family: "Cinzel", serif;
    font-size: 30px;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.spec-box-unit {
    font-size: 11px;
    letter-spacing: 2px;
    font-family: "Montserrat", sans-serif;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-top: 3px;
}

/* features list */
.car-feats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-bottom: 26px;
}

.car-feat {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.45);
    display: flex;
    align-items: center;
    gap: 8px;
}

.car-feat i {
    color: var(--gold);
    font-size: 16px;
}

/* pricing row */
.car-price-row {
    background: rgba(var(--rgb), 0.1);
    border: 1px solid rgba(var(--rgb), 0.2);
    padding: 14px 20px;
    border-radius: 10px !important;
    display: flex;
    align-items: flex-end;
    margin-bottom: 20px;
}

.price-lbl {
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
}

.price-big {
    font-family: "Cinzel", serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.price-big sub {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.4);
    font-family: 'Montserrat', sans-serif;
    font-weight: 500;
}

/* includes tags */
.inc-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 26px;
}

.inc-label {
    font-size: 11px;
    letter-spacing: 3px;
    font-weight: 500;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    color: rgba(255, 255, 255, 0.25);
    margin-right: 4px;
}

.inc-tag {
    font-family: 'Montserrat', sans-serif;
    background: rgba(var(--rgb), 0.08);
    border: 1px solid rgba(var(--rgb), 0.2);
    color: rgba(255, 255, 255, 0.55);
    font-size: 13px;
    letter-spacing: 1px;
    padding: 5px 12px;
    border-radius: 20px;
}

/* cta buttons */
.car-ctas {
    display: flex;
    gap: 12px;
}

.btn-car-book {
    flex: 1;
    background: var(--gold);
    color: #0c0a06;
    font-size: 12px;
    font-weight: 700;
    border-radius: 10px;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 15px;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: all 0.3s;
    text-decoration: none;
}

.btn-car-book:hover {
    background: var(--gold2);
    color: #0c0a06;
}

.btn-car-outline {
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 5px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 15px;
    border: 2px solid rgba(var(--rgb), 0.2);
    cursor: pointer;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-car-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.car-chauffeur {
    font-size: 13px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 12px;
    font-style: italic;
}

/* ─── EXPERIENCE ─── */
#experience {
    position: relative;
    overflow: hidden;
    padding: 0;
}

.exp-car-bg {
    position: absolute;
    inset: 0;
    background: url('../images/car.png') center/cover no-repeat;
    opacity: 0.08;
}

/* .exp-overlay {
  position:absolute; inset:0;
  background: linear-gradient(to bottom,
    rgba(12,10,6,0.9) 0%,
    rgba(12,10,6,0.4) 40%,
    rgba(12,10,6,0.4) 60%,
    rgba(12,10,6,0.9) 100%);
} */
.exp-inner {
    position: relative;
    z-index: 2;
    padding: 90px 0;
    text-align: center;
}

.exp-label {

    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    margin-bottom: 16px;
}

.exp-title {
    font-family: "Cinzel", serif;
    font-size: 60px;
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 4px;
    line-height: 1;
}

.exp-title .t-gold {
    color: var(--gold);
    font-weight: 600;
}

.exp-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.85;
    max-width: 750px;
    margin: 18px auto 56px;
}

/* occasion cards — 3 col grid */
.occ-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    /* background: rgba(201, 162, 39, 0.08); */
}

@media(max-width:768px) {
    .occ-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(max-width:500px) {
    .occ-grid {
        grid-template-columns: 1fr;
    }
}

.occ-card {
    background: rgba(var(--rgb), 0.1);
    padding: 20px;
    transition: all 0.35s;
    cursor: pointer;
    border-radius: 10px !important;
    text-align: left;
    display: flex;
    gap: 16px;
}


.occ-icon-wrap {
    width: 40px;
    height: 40px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    display: flex;
    align-items: center;
    border: 1px solid var(--gold);
    justify-content: center;
    color: var(--gold);
    font-size: 0.95rem;
    margin-bottom: 18px;
    transition: background 0.3s;
}


.occ-name {
    font-family: "Cinzel", serif;
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    margin-bottom: 10px;
    text-transform: capitalize;
}

.occ-desc {
    font-family: "Montserrat", sans-serif;
    font-size: 13px;
    color: #aaa;
    font-weight: 400;
    line-height: 1.8;
}

/* ─── PRICING ─── */
#pricing {
    background: var(--bg);
    padding: 90px 0;
}

.sec-label {
    font-family: "Montserrat", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 7px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 14px;
}

.sec-title {
    font-family: "Cinzel", serif;
    font-size: 60px !important;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.sec-title .t-gold {
    font-weight: 600;
    color: var(--gold);
}

.sec-sub {

    font-size: 18px !important;
    color: rgba(255, 255, 255, 0.32);
    margin-top: 10px;
    font-weight: 400;
}

/* hourly bar */
.hourly-bar {
    background: rgba(var(--rgb), 0.1);
    /* dark green tone */
    border-radius: 10px;
    border: 1px solid rgba(var(--rgb), 0.12);
    padding: 28px 32px;
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 24px;
    margin-bottom: 10px;
    box-shadow: 0 4px 40px rgba(0, 0, 0, 0.5);
}

.hourly-icon-wrap {
    color: var(--gold);
    font-size: 1.4rem;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    background: #1a1408;
    box-shadow: 0px 0px 5px 5px #1a1408;
}

.hourly-lbl {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.3);
    margin-bottom: 2px;
    font-weight: 400;
}

.hourly-price {
    font-family: "Cinzel", serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
}

.hourly-price sub {
    font-family: "Montserrat", sans-serif;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.35);
    font-weight: 400;
}

.hourly-desc {
    flex: 1;
    max-width: 500px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.35);
    line-height: 1.7;
}

.btn-hourly {
    background: var(--gold);
    color: #0c0a06;
    font-size: 13px;
    border-radius: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 10px 20px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
    text-decoration: none;
    display: inline-block;
}

.btn-hourly:hover {
    background: var(--gold2);
    color: #0c0a06;
}

/* extended rentals */
.ext-divider {
    text-align: center;
    margin: 50px 0 28px;
    position: relative;
}

.ext-divider::before {
    display: none;
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: rgba(var(--rgb), 0.15);
}

.ext-divider span {
    position: relative;
    background: var(--bg);
    padding: 0 20px;
    color: var(--gold);
    font-weight: 500;
    font-size: 12px;
    letter-spacing: 5px;
    text-transform: uppercase;
}

.pkg-card {
    background: #100e09;
    border: 1px solid rgba(var(--rgb), 0.18);
    padding: 36px 24px;
    border-radius: 10px;
    text-align: center;
    transition: all 0.35s;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

.pkg-card:hover {
    /* border-color: rgba(201, 162, 39, 0.3); */
    transform: translateY(-4px);
    box-shadow: 0 12px 18px rgba(var(--rgb), 0.2),
        0 0 20px rgba(var(--rgb), 0.08);
}

.pkg-days {
    font-family: "Cinzel", serif;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.pkg-off {
    background: rgba(var(--rgb), 0.15);
    border: 1px solid rgba(var(--rgb), 0.3);
    color: var(--gold);
    font-size: 12px;
    font-weight: 600;
    border-radius: 16px;
    font-family: "Montserrat", sans-serif;
    letter-spacing: 2px;
    padding: 4px 12px;
    display: inline-block;
    margin-bottom: 20px;
}

.pkg-orig {
    font-size: 12px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.2);
    text-decoration: line-through;
    margin-bottom: 6px;
}

.pkg-price {
    font-family: "Cinzel", serif;
    font-size: 40px;
    font-weight: 600;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 4px;
}

.pkg-per {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.25);
    margin-bottom: 6px;
}

.pkg-save {
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 500;
    color: rgba(var(--rgb), 0.7);
    margin-bottom: 28px;
}

.btn-pkg-select {
    background: transparent;
    color: var(--gold);
    font-size: 12px;
    font-family: "Montserrat", sans-serif;
    font-weight: 600;
    border-radius: 5px !important;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 10px 15px;
    border: 2px solid rgba(var(--rgb), 0.1);
    cursor: pointer;
    text-decoration: none;
    justify-content: center;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-pkg-select:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #0c0a06;
}

.chauffeur-note {
    font-size: 14px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 40px;
}

.chauffeur-note a {
    color: var(--gold);
    text-decoration: none;
}

.chauffeur-note strong {
    color: rgba(255, 255, 255, 0.4);
}

/* ─── CONTACT ─── */
#contact {
    background: var(--bg2);
    padding: 90px 0;
}

.contact-info-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    margin-bottom: 30px;
}

.ci-icon {
    width: 42px;
    height: 42px;
    flex-shrink: 0;
    border: 1px solid rgba(var(--rgb), 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    font-size: 0.9rem;
}

.ci-lbl {
    font-size: 0.5rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.25);
}

.ci-val {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.65);
    margin-top: 4px;
}

.form-wrap {
    background: #0f1806;
    /* dark green tone */
    border: 1px solid rgba(var(--rgb), 0.12);
    padding: 40px;
    box-shadow: 0 8px 50px rgba(0, 0, 0, 0.5);
}

.form-lbl {
    font-size: 0.52rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    /* slightly improved readability */
    display: block;
    margin-bottom: 8px;
}

.form-inp {
    width: 100%;
    background: #0a1203;
    /* deeper green-black */
    border: 1px solid rgba(var(--rgb), 0.12);
    color: var(--white);
    padding: 13px 16px;
    font-size: 0.78rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 300;
    outline: none;
    transition: all 0.3s ease;
}

.form-inp:focus {
    border-color: #6bd400;
    box-shadow: 0 0 8px rgba(var(--rgb), 0.25);
    /* subtle glow */
}

.form-inp::placeholder {
    color: rgba(255, 255, 255, 0.25);
}


.form-inp option {
    background: #0c0a06;
}

.btn-submit {
    width: 100%;
    background: var(--gold);
    color: #0c0a06;
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 3px;
    text-transform: uppercase;
    padding: 16px;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    background: var(--gold2);
}

/* ─── FOOTER ─── */
footer {
    background: #080604;
    border-top: 1px solid rgba(var(--rgb), 0.1);
    padding: 60px 0 28px;
}

.foot-brand {
    font-family: "Cinzel", serif;
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: 5px;
    color: var(--white);
}

.foot-tagline {
    font-size: 0.52rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.2);
    margin-top: 6px;
}

.foot-desc {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.22);
    line-height: 1.8;
    margin-top: 14px;
    font-weight: 500;
    font-family: "Montserrat", sans-serif;
    max-width: 260px;
}

.foot-head {
    font-size: 12px;
    letter-spacing: 4px;
    font-family: "Cinzel", serif;
    text-transform: uppercase;
    color: #fff;
    margin-bottom: 18px;
    font-weight: 600;
}

.foot-link {
    display: block;
    font-size: 11px;
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.3);
    text-decoration: none;
    margin-bottom: 10px;
    font-weight: 500;
    transition: color 0.3s;
}

.foot-link:hover {
    color: var(--gold);
}

.socials {
    display: flex;
    gap: 10px;
    margin-top: 18px;
}

.social-btn {
    width: 34px;
    height: 34px;
    /* border: 1px solid rgba(255, 255, 255, 0.1); */
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.3);
    font-size: 20px;
    text-decoration: none;
    transition: all 0.3s;
}

.social-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* Contact Section Styling */
.foot-head {
    color: #fff;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-family: 'Cinzel', serif;
    /* Agar luxury font use kar rahe hain */
}

.contact-icon {
    width: 35px;
    height: 35px;
    /* border: 1px solid rgba(212, 175, 55, 0.4); */
    /* Golden border */
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    /* Golden Icon Color */
    font-size: 16px;
}

.contact-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.3);
    /* Muted label */
    letter-spacing: 1.5px;
    margin-bottom: 2px;
}

.contact-link,
.contact-text {
    color: #fff !important;
    text-decoration: none;
    font-size: 12px;
    font-family: 'Cinzel', serif;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: var(--gold) !important;
    /* Hover par golden */
}

/* Icon setup agar library override ho rahi ho */
.contact-icon i {
    line-height: 0;
}

.foot-copy {
    font-size: 10px;
    font-weight: 500;
    color: rgba(var(--rgb), 0.6);
    /* soft green text */

    border-top: 1px solid rgba(var(--rgb), 0.12);
    /* subtle green border */

    padding-top: 22px;
    margin-top: 40px;

    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
}

.foot-copy a {
    color: rgba(var(--rgb), 0.7);
    /* soft green */
    text-decoration: none;
}

.foot-copy a:hover {
    color: var(--gold);
    /* bright highlight green */
}

/* newsletter input */
.news-wrap {
    display: flex;
}

.news-inp {
    flex: 1;
    background: #0f1806;
    /* match card-bg */
    border: 1px solid rgba(var(--rgb), 0.15);
    border-right: none;
    color: var(--white);
    padding: 12px 14px;
    font-size: 0.72rem;
    outline: none;
}

.news-inp:focus {
    border-color: var(--gold);
    box-shadow: 0 0 8px rgba(var(--rgb), 0.3);
}

.news-inp::placeholder {
    color: rgba(255, 255, 255, 0.18);
}

.news-btn {
    background: var(--gold);
    border: none;
    color: #0c0a06;
    font-size: 0.55rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 12px 18px;
    cursor: pointer;
    transition: all 0.3s;
    white-space: nowrap;
}

.news-btn:hover {
    background: var(--gold2);
}

/* ─── SCROLL ANIM ─── */
.reveal {
    opacity: 0;
    transform: translateY(36px);
    transition: opacity 0.75s ease, transform 0.75s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

/* scrollbar */
::-webkit-scrollbar {
    width: 3px;
}

::-webkit-scrollbar-track {
    background: var(--bg);
}

::-webkit-scrollbar-thumb {
    background: var(--gold-dim);
}

.contact .hero-title .t-white {
    color: var(--white);
    font-weight: 400;
    letter-spacing: 10px;
    font-size: 50px;
    font-family: "Cinzel", serif;
    /* font-optical-sizing: auto; */
}

.contact .hero-title .t-gold {
    color: var(--gold);
    font-weight: 600;
    letter-spacing: 10px;
    font-size: 50px;
}

.contact .hourly-icon-wrap {
    color: var(--gold);
    font-size: 1.4rem;
    align-items: center;
    display: flex;
    justify-content: center;
    width: 50px;
    border-radius: 50%;
    height: 50px;
    background: unset !important;
    box-shadow: 0px 0px 10px 10px rgba(var(--rgb), 0.4);
}

.stats-container {
    padding: 40px 0;
    max-width: 400px;
    margin: auto;
    background: transparent;
    /* Ya jo bhi aapka dark background hai */
}

/* Number Styling */
.stat-number {
    font-size: 35px;
    font-weight: 700;
    color: var(--gold);
    font-family: "Cinzel", serif;
    /* Luxury Gradient Effect */
    background: linear-gradient(135deg, var(--gold2) 0%, var(--gold) 50%, var(--gold-light) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-bottom: 0;
    line-height: 1;
    text-shadow: 0 0 10px rgba(var(--rgb), 0.4);
}

/* Plus sign and Star specific color */
.stat-number span,
.stat-star {
    color: var(--gold);
    background: none;
    -webkit-text-fill-color: var(--gold);
}

.stat-star {
    font-size: 28px;
    vertical-align: middle;
}

/* Subtext Styling */
.stat-text {
    font-family: "Montserrat", sans-serif;
    color: rgba(255, 255, 255, 0.45);
    /* Muted text color jaisa image mein hai */
    font-size: 12px;
    letter-spacing: 2px;
    font-weight: 500;
    text-transform: uppercase;
    margin-top: 5px;
}

/* Responsive */
@media (max-width: 576px) {
    .stats-container {
        gap: 30px !important;
    }

    .stat-number {
        font-size: 32px;
    }
}

@media screen and (max-width:1200px) {

    .price-lbl {
        font-size: 10px !important;
        letter-spacing: 0px !important;
        text-transform: capitalize !important;
    }

    .price-big {
        font-size: 14px !important;
    }

    .price-big sub {
        font-size: 10px !important;
    }
}

@media screen and (max-width:991px) {


    .navbar {
        background-color: #000 !important;
        padding: 18px 10px !important;
    }

    .nav-link {
        text-align: center !important;
    }

    .lux-user-nav {
        justify-content: center !important;
        margin-top: 30px !important;
        margin-bottom: 30px !important;
    }

    .hero-label {
        font-size: 16px !important;
        letter-spacing: 6px !important;
    }

    .hero-title .t-white {
        letter-spacing: 27px !important;
        font-size: 60px !important;
    }

    .hero-title .t-gold {
        letter-spacing: 29px !important;
        font-size: 100px !important;
    }

    .hero-sub {
        font-size: 15px !important;
    }

    .btn-hero-gold,
    .btn-hero-outline {
        font-size: 14px !important;
        letter-spacing: 3px !important;
        padding: 16px 32px !important;
    }

    .stat-val {
        font-size: 32px !important;
    }

    .stat-label,
    .stat-discover {
        font-size: 13px !important;
    }

    .contact .hero-title .t-gold,
    .contact .hero-title .t-white {
        font-size: 40px !important;
        letter-spacing: 9px !important;
    }

    .sec-title {
        font-size: 45px !important;
    }

    .exp-title {
        font-size: 45px !important
    }
}




@media screen and (max-width:767px) {

    #home {
        min-height: 80vh !important;
    }

    .hero-label {
        font-size: 14px !important;
        letter-spacing: 5px !important;
    }

    .hero-title .t-white {
        letter-spacing: 17px !important;
        font-size: 50px !important;
    }

    .hero-title .t-gold {
        letter-spacing: 19px !important;
        font-size: 80px !important;
    }

    .hero-sub {
        font-size: 14px !important;
    }

    .btn-hero-gold,
    .btn-hero-outline {
        font-size: 12px !important;
        letter-spacing: 3px !important;
        padding: 15px 30px !important;
    }

    .stat-val {
        font-size: 24px !important;
    }

    .stat-label,
    .stat-discover {
        font-size: 11px !important;
    }

    .contact .hero-title .t-gold,
    .contact .hero-title .t-white {
        font-size: 25px !important;
        letter-spacing: 5px !important;
    }

    .exp-title {
        font-size: 35px !important
    }

    .sec-title {
        font-size: 30px !important;
    }


}


@media screen and (max-width:576px) {


    #home {
        min-height: auto !important;
    }

    .hero-label {
        font-size: 8px !important;
        letter-spacing: 5px !important;
    }

    .hero-title .t-white {
        letter-spacing: 17px !important;
        font-size: 25px !important;
    }

    .hero-title .t-gold {
        letter-spacing: 17px !important;
        font-size: 45px !important;
    }

    .hero-sub {
        font-size: 10px !important;
    }

    .btn-hero-gold,
    .btn-hero-outline {
        font-size: 10px !important;
        letter-spacing: 3px !important;
        padding: 12px 26px !important;
    }

    .stat-val {
        font-size: 16px !important;
    }

    .stat-label,
    .stat-discover {
        font-size: 9px !important;
    }

    .fleet-avail {
        font-size: 9px !important;
    }

    .fleet-big-title {
        font-size: 45px !important;
    }

    .car-img-wrap {
        height: 300px !important;
    }

    .car-detail-brand {
        font-size: 25px !important;
    }

    .car-detail-name {
        font-size: 25px !important;
    }

    .car-detail-desc {
        font-size: 10px !important;
    }

    .spec-box-icon {
        font-size: 15px !important;
    }

    .spec-box-val {
        font-size: 23px !important;
    }

    .spec-box-unit {
        font-size: 10px !important;
    }

    .spec-box {
        padding: 10px !important;
    }

    .car-feat i {
        font-size: 10px !important;
    }

    .car-feat {
        font-size: 10px !important;
    }

    .price-big sub,
    .price-lbl {
        font-size: 8px !important;
        text-transform: capitalize;
        letter-spacing: 0px;
    }


    .price-big {
        font-size: 11px !important;
    }

    .inc-label {
        font-size: 8px !important;
        letter-spacing: 1px !important;
    }

    .inc-tag {
        font-size: 11px !important;
        padding: 3px 6px !important;
    }

    .btn-car-outline,
    .btn-car-book {
        font-size: 9px !important;
        padding: 10px !important;
    }

    .car-chauffeur {
        font-size: 11px !important;
    }

    .car-suv-badge {
        font-size: 10px !important;
        padding: 7px 15px !important;
    }

    .hourly-bar {
        display: block !important;
        text-align: center !important;
    }

    .hourly-top {
        justify-content: center !important;
    }

    .hourly-desc,
    .btn-hourly {
        margin-top: 30px !important;
    }

    .contact .hero-title .t-gold,
    .contact .hero-title .t-white {
        font-size: 15px !important;
        letter-spacing: 5px !important;
    }

    .contact .hero-label {
        font-size: 9px !important;
        letter-spacing: 3px !important;
    }

    .contact .hero-sub {
        font-size: 13px !important;
        font-weight: 300 !important;
    }

    .contact .stat-number {
        font-size: 25px !important;
    }

    .contact .hero-inner {
        padding-top: 0px !important;
    }

    .stat-star {
        font-size: 20px !important;
    }

    .sec-label {
        font-size: 11px !important;
        letter-spacing: 4px !important;
    }

    .sec-title {
        font-size: 17px !important;
    }

    .sec-sub {
        max-width: 300px;
        margin: auto;
        font-size: 15px !important;
    }

    footer .foot-desc {
        margin: auto !important;
        text-align: center !important;
    }

    footer .logo-box,
    .socials,
    .contact-item {
        justify-self: center !important;
    }

    .foot-head,
    .foot-link {
        text-align: center !important;
    }

    .ext-divider span {
        padding: 0px !important;
    }

    .pkg-days {
        font-size: 1.1rem !important;
    }

    .pkg-off {
        font-size: 10px !important;
    }

    .pkg-price {
        font-size: 25px !important;
    }

    .exp-label {
        font-size: 10px !important;
        letter-spacing: 3px !important;
    }

    .exp-title {
        font-size: 19px !important;
    }

    .exp-desc {
        font-size: 14px !important;
    }

    .auth-header .exp-title-small {
        font-size: 25px !important;
    }

    .auth-switch {
        font-size: 10px !important;
    }

    .alert p {
        font-size: 12px !important;
    }

    .withdrawal-card {
        padding: 20px !important;
    }

    .contact-list {
        display: block !important;
    }




}





select option {
    background-color: var(--bg) !important;
    /* Apne theme ke hisaab se dark color dein */
    color: #ffffff !important;
    border: 1px solid rgba(var(--rgb), 0.2);
}

select option:hover {
    background: var(--gold) !important;
    color: #000 !important;
}