/* =========================================================
    MYGAARI — LUXURY BURGUNDY EDITION
   Obsidian Black • Deep Burgundy • Rose Gold • Cream
   ========================================================= */

@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Manrope:wght@600;700;800&display=swap');


/* =========================================================
   ROOT
   ========================================================= */

:root {
    --black: #080607;
    --black-2: #0D090B;
    --black-3: #130B0E;

    --burgundy: #2A0F18;
    --burgundy-light: #421923;
    --burgundy-dark: #19080E;

    --rose: #B88A72;
    --rose-light: #D2AE99;
    --rose-dark: #805A4D;

    --cream: #F4E9DC;
    --cream-soft: #D9C9BC;

    --muted: #9D8D83;
    --muted-dark: #68605B;

    --border: rgba(244, 233, 220, 0.09);
    --rose-border: rgba(184, 138, 114, 0.32);
}


/* =========================================================
   RESET
   ========================================================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

[hidden] {
    display: none !important;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: "DM Sans", sans-serif;
    background: var(--black);
    color: var(--cream);
    line-height: 1.6;
    overflow-x: hidden;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
select {
    font-family: inherit;
}

button {
    cursor: pointer;
}

::selection {
    background: var(--rose);
    color: #090607;
}


/* =========================================================
   SCROLLBAR
   ========================================================= */

::-webkit-scrollbar {
    width: 7px;
}

::-webkit-scrollbar-track {
    background: #080607;
}

::-webkit-scrollbar-thumb {
    background: #40242b;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose);
}


/* =========================================================
   NAVBAR
   ========================================================= */

.navbar {
    position: fixed;
    top: 18px;
    left: 50%;

    transform: translateX(-50%);

    width: calc(100% - 60px);
    max-width: 1420px;
    height: 76px;

    padding: 0 28px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            110deg,
            rgba(13, 7, 9, 0.94),
            rgba(42, 15, 24, 0.78)
        );

    border: 1px solid rgba(244, 233, 220, 0.10);

    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);

    z-index: 1000;

    box-shadow:
        0 25px 70px rgba(0,0,0,0.55),
        inset 0 1px rgba(255,255,255,0.04);
}


/* =========================================================
   LOGO
   ========================================================= */

.logo {
    display: flex;
    align-items: center;
    gap: 4px;

    font-family: "Manrope", sans-serif;

    font-size: 20px;
    font-weight: 800;

    letter-spacing: 3px;
}

.logo span {
    color: #ffffff;
}

.logo b {
    color: var(--rose);
    font-weight: 800;
}


/* =========================================================
   NAV LINKS
   ========================================================= */

.navbar nav {
    display: flex;
    gap: 42px;
}

.navbar nav a {
    position: relative;

    color: #B7AAA3;

    font-size: 13px;
    font-weight: 500;

    transition: 0.3s ease;
}

.navbar nav a::after {
    content: "";

    position: absolute;

    left: 0;
    bottom: -8px;

    width: 0;
    height: 1px;

    background: var(--rose);

    transition: 0.3s ease;
}

.navbar nav a:hover {
    color: var(--cream);
}

.navbar nav a:hover::after {
    width: 100%;
}


/* =========================================================
   NAV BUTTON
   ========================================================= */

.nav-book {
    position: relative;

    display: flex;
    align-items: center;
    gap: 15px;

    padding: 13px 20px;

    color: #0A0708;

    background:
        linear-gradient(
            135deg,
            var(--rose-light),
            var(--rose)
        );

    border: none;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;

    overflow: hidden;

    transition: 0.35s ease;
}

.nav-book::before {
    content: "";

    position: absolute;
    inset: 0;

    background: linear-gradient(
        135deg,
        #E5C5B5,
        var(--rose-light)
    );

    transform: translateX(-100%);

    transition: 0.35s ease;
}

.nav-book:hover::before {
    transform: translateX(0);
}

.nav-book span,
.nav-book i {
    position: relative;
    z-index: 2;
}

.nav-book i {
    font-style: normal;
    font-size: 16px;
}


/* =========================================================
   HERO
   ========================================================= */

.hero {
    position: relative;

    min-height: 100vh;

    display: flex;
    align-items: center;

    padding: 150px 6% 80px;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(184,138,114,0.13),
            transparent 25%
        ),
        radial-gradient(
            circle at 15% 75%,
            rgba(66,25,35,0.38),
            transparent 35%
        ),
        #080607;

    overflow: hidden;
}


/* luxury background lines */

.hero::before {
    content: "";

    position: absolute;
    inset: 0;

    background-image:
        linear-gradient(
            rgba(244,233,220,0.025) 1px,
            transparent 1px
        ),
        linear-gradient(
            90deg,
            rgba(244,233,220,0.025) 1px,
            transparent 1px
        );

    background-size: 90px 90px;

    mask-image:
        linear-gradient(
            to right,
            black,
            transparent 80%
        );

    pointer-events: none;
}


/* =========================================================
   HERO GLOW
   ========================================================= */

.hero-background {
    position: absolute;

    width: 650px;
    height: 650px;

    right: 3%;
    top: 18%;

    background:
        radial-gradient(
            circle,
            rgba(184,138,114,0.12),
            transparent 65%
        );

    filter: blur(35px);

    border-radius: 50%;

    pointer-events: none;
}


/* =========================================================
   HERO CONTENT
   ========================================================= */

.hero-content {
    position: relative;
    z-index: 5;

    width: 48%;

    animation: heroEnter 1s ease forwards;
}

@keyframes heroEnter {

    from {
        opacity: 0;
        transform: translateY(35px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }

}


/* =========================================================
   AVAILABILITY
   ========================================================= */

.availability {
    display: inline-flex;
    align-items: center;
    gap: 10px;

    margin-bottom: 32px;

    color: #A59A94;

    font-size: 10px;

    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.status-dot {
    width: 7px;
    height: 7px;

    border-radius: 50%;

    background: var(--rose);

    box-shadow:
        0 0 0 5px rgba(184,138,114,0.08),
        0 0 20px rgba(184,138,114,0.45);
}


/* =========================================================
   EYEBROW
   ========================================================= */

.eyebrow {
    margin-bottom: 18px;

    color: var(--rose);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 3.5px;
    text-transform: uppercase;
}


/* =========================================================
   HERO TITLE
   ========================================================= */

.hero h1 {
    margin-bottom: 27px;

    font-family: "Manrope", sans-serif;

    font-size: clamp(55px, 7vw, 105px);

    line-height: 0.93;

    letter-spacing: -5px;

    font-weight: 800;
}

.hero h1 em {
    color: var(--rose-light);

    font-style: normal;

    background:
        linear-gradient(
            100deg,
            #B88A72,
            #E0C0AF
        );

    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}


/* =========================================================
   HERO COPY
   ========================================================= */

.hero-copy {
    max-width: 510px;

    margin-bottom: 38px;

    color: #9D928C;

    font-size: 14px;

    line-height: 1.85;
}


/* =========================================================
   HERO BUTTONS
   ========================================================= */

.hero-buttons {
    display: flex;
    gap: 12px;

    margin-bottom: 55px;
}

.btn-primary,
.btn-outline {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 28px;

    min-width: 175px;

    padding: 17px 22px;

    font-size: 11px;
    font-weight: 700;

    letter-spacing: 0.5px;

    overflow: hidden;

    transition: 0.35s ease;
}

.btn-primary {
    color: #0B0809;

    background:
        linear-gradient(
            135deg,
            #D6AF9C,
            #A87964
        );

    border: 1px solid #C09680;

    box-shadow:
        0 12px 35px rgba(184,138,114,0.15);
}

.btn-outline {
    color: var(--cream);

    background:
        rgba(42,15,24,0.25);

    border: 1px solid rgba(184,138,114,0.38);
}

.btn-primary::before,
.btn-outline::before {
    content: "";

    position: absolute;
    inset: 0;

    transform: translateX(-110%);

    transition: 0.45s ease;
}

.btn-primary::before {
    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,0.28),
            transparent
        );
}

.btn-outline::before {
    background:
        linear-gradient(
            135deg,
            rgba(184,138,114,0.15),
            transparent
        );
}

.btn-primary:hover::before,
.btn-outline:hover::before {
    transform: translateX(110%);
}

.btn-primary span,
.btn-primary i,
.btn-outline span,
.btn-outline i {
    position: relative;
    z-index: 2;
}

.btn-primary i,
.btn-outline i {
    font-style: normal;

    font-size: 16px;

    transition: 0.3s ease;
}

.btn-primary:hover i,
.btn-outline:hover i {
    transform: translate(4px,-4px);
}


/* =========================================================
   HERO META
   ========================================================= */

.hero-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}

.meta-item {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.meta-item strong {
    color: var(--rose);

    font-size: 9px;
    letter-spacing: 1px;
}

.meta-item span {
    color: #706963;

    font-size: 9px;

    letter-spacing: 1px;
    text-transform: uppercase;
}

.meta-line {
    width: 1px;
    height: 28px;

    background: rgba(244,233,220,0.10);
}


/* =========================================================
   HERO IMAGE
   ========================================================= */

.hero-media {
    position: absolute;

    right: 0;
    top: 0;

    width: 57%;
    height: 100%;

    overflow: hidden;
}

.hero-media img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.57)
        contrast(1.12)
        saturate(0.72);

    transform: scale(1.04);

    animation: luxuryZoom 14s ease-in-out infinite alternate;
}

@keyframes luxuryZoom {

    from {
        transform: scale(1.04);
    }

    to {
        transform: scale(1.10);
    }

}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.media-gradient {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            90deg,
            #080607 0%,
            rgba(8,6,7,0.92) 13%,
            rgba(8,6,7,0.42) 48%,
            rgba(8,6,7,0.05) 80%
        ),
        linear-gradient(
            0deg,
            rgba(0,0,0,0.72),
            transparent 45%
        );
}


/* =========================================================
   HERO IMAGE LABEL
   ========================================================= */

.hero-label {
    position: absolute;

    right: 40px;
    bottom: 40px;

    width: 270px;

    padding: 21px;

    display: flex;
    align-items: center;
    justify-content: space-between;

    background:
        linear-gradient(
            135deg,
            rgba(42,15,24,0.72),
            rgba(8,6,7,0.70)
        );

    border: 1px solid rgba(244,233,220,0.12);

    backdrop-filter: blur(18px);
}

.hero-label div {
    display: flex;
    flex-direction: column;
}

.hero-label small {
    color: var(--rose);

    font-size: 8px;
    letter-spacing: 2.5px;
}

.hero-label strong {
    margin-top: 4px;

    color: var(--cream);

    font-size: 12px;
    font-weight: 500;
}

.hero-label > span {
    color: var(--rose-light);

    font-size: 18px;
}


/* =========================================================
   VERTICAL LABEL
   ========================================================= */

.vertical-label {
    position: absolute;

    right: 15px;
    top: 50%;

    transform: rotate(90deg) translateX(50%);

    transform-origin: right;

    color: rgba(244,233,220,0.35);

    font-size: 8px;

    letter-spacing: 4px;
}


/* =========================================================
   SERVICES
   ========================================================= */

.services {
    position: relative;

    padding: 150px 6%;

    background:
        radial-gradient(
            circle at 10% 50%,
            rgba(66,25,35,0.20),
            transparent 30%
        ),
        #0D090B;
}

.services::before {
    content: "";

    position: absolute;

    top: 0;
    left: 6%;

    width: 88%;
    height: 1px;

    background:
        linear-gradient(
            90deg,
            transparent,
            var(--rose-border),
            transparent
        );
}


/* =========================================================
   SECTION HEADING
   ========================================================= */

.section-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 80px;
}

.section-heading h2,
.statement h2,
.feature-intro h2,
.booking h2 {
    font-family: "Manrope", sans-serif;

    font-size: clamp(45px, 5vw, 76px);

    line-height: 0.95;

    letter-spacing: -3px;
}

.section-heading h2 span,
.statement h2 span,
.feature-intro h2 span,
.booking h2 span {
    color: var(--rose-light);
}

.section-heading > p {
    max-width: 330px;

    color: #827771;

    font-size: 13px;

    line-height: 1.85;
}


/* =========================================================
   SERVICE LIST
   ========================================================= */

.service-list {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 20px;
}


/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
    position: relative;

    background:
        linear-gradient(
            145deg,
            #1A0E12,
            #10090B
        );

    border: 1px solid rgba(244,233,220,0.08);

    overflow: hidden;

    transition:
        transform 0.5s ease,
        border-color 0.5s ease,
        box-shadow 0.5s ease;
}

.service-card:hover {
    transform: translateY(-8px);

    border-color: var(--rose-border);

    box-shadow:
        0 30px 70px rgba(0,0,0,0.45),
        0 0 50px rgba(66,25,35,0.15);
}


/* =========================================================
   CARD NUMBER
   ========================================================= */

.card-number {
    position: absolute;

    z-index: 5;

    top: 22px;
    left: 22px;

    color: var(--rose-light);

    font-size: 9px;

    letter-spacing: 2px;
}


/* =========================================================
   CARD IMAGE
   ========================================================= */

.card-image {
    position: relative;

    height: 470px;

    overflow: hidden;
}

.card-image img {
    width: 100%;
    height: 100%;

    object-fit: cover;

    filter:
        brightness(0.62)
        contrast(1.08)
        saturate(0.70);

    transition:
        transform 0.8s ease,
        filter 0.8s ease;
}

.service-card:hover .card-image img {
    transform: scale(1.07);

    filter:
        brightness(0.73)
        contrast(1.08)
        saturate(0.82);
}


/* =========================================================
   IMAGE OVERLAY
   ========================================================= */

.image-overlay {
    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            180deg,
            rgba(0,0,0,0.25),
            transparent 40%,
            rgba(16,5,9,0.92)
        );
}


/* =========================================================
   CATEGORY
   ========================================================= */

.card-category {
    position: absolute;

    top: 22px;
    right: 22px;

    padding: 7px 11px;

    color: #D8C8BF;

    background: rgba(8,6,7,0.38);

    border: 1px solid rgba(244,233,220,0.15);

    backdrop-filter: blur(10px);

    font-size: 8px;

    letter-spacing: 2px;
}


/* =========================================================
   CARD INFO
   ========================================================= */

.card-info {
    min-height: 190px;

    padding: 30px;

    display: flex;
    align-items: flex-end;
    justify-content: space-between;
}

.card-info h3 {
    margin-bottom: 10px;

    font-family: "Manrope", sans-serif;

    font-size: 27px;
    font-weight: 700;
}

.card-info p {
    max-width: 300px;

    color: #837670;

    font-size: 12px;

    line-height: 1.75;
}

.card-info button {
    display: flex;
    align-items: center;
    gap: 12px;

    padding: 0;

    color: var(--rose-light);

    background: none;

    border: none;

    font-size: 11px;
    font-weight: 700;
}

.card-info button span {
    font-size: 17px;

    transition: 0.3s ease;
}

.card-info button:hover span {
    transform: translate(4px,-4px);
}


/* =========================================================
   STATEMENT
   ========================================================= */

.statement {
    position: relative;

    display: grid;

    grid-template-columns: 120px 1fr;

    gap: 60px;

    padding: 170px 12%;

    background:
        radial-gradient(
            circle at 80% 40%,
            rgba(184,138,114,0.10),
            transparent 28%
        ),
        radial-gradient(
            circle at 20% 80%,
            rgba(66,25,35,0.25),
            transparent 30%
        ),
        #080607;
}

.statement-number {
    color: var(--rose);

    font-size: 10px;

    letter-spacing: 2px;
}

.statement-content {
    max-width: 850px;
}

.statement h2 {
    margin-bottom: 35px;
}

.statement-content > p {
    max-width: 570px;

    color: #837771;

    font-size: 15px;

    line-height: 1.9;
}


/* =========================================================
   FEATURES
   ========================================================= */

.features {
    display: grid;

    grid-template-columns: 0.8fr 1.2fr;

    gap: 100px;

    padding: 150px 8%;

    background:
        linear-gradient(
            120deg,
            #12090C,
            #0C080A
        );
}

.feature-list {
    border-top: 1px solid var(--border);
}

.feature-row {
    display: grid;

    grid-template-columns: 45px 1fr 30px;

    gap: 20px;

    align-items: start;

    padding: 35px 0;

    border-bottom: 1px solid var(--border);

    transition: 0.35s ease;
}

.feature-row:hover {
    padding-left: 10px;

    border-bottom-color: var(--rose-border);
}

.feature-row > span {
    color: var(--rose);

    font-size: 9px;

    letter-spacing: 2px;
}

.feature-row h3 {
    margin-bottom: 7px;

    font-family: "Manrope", sans-serif;

    font-size: 17px;
}

.feature-row p {
    max-width: 450px;

    color: #786D68;

    font-size: 12px;
}

.feature-row b {
    color: var(--rose-light);

    font-size: 18px;

    font-weight: 400;
}


/* =========================================================
   BOOKING
   ========================================================= */

.booking {
    padding: 150px 8%;

    background:
        radial-gradient(
            circle at 90% 20%,
            rgba(66,25,35,0.24),
            transparent 30%
        ),
        #080607;
}

.booking-header {
    display: flex;

    align-items: flex-end;
    justify-content: space-between;

    margin-bottom: 90px;
}

.booking-header > p {
    max-width: 330px;

    color: #81746E;

    font-size: 13px;

    line-height: 1.85;
}

.booking-layout {
    display: grid;

    grid-template-columns: 0.35fr 1fr;

    gap: 80px;
}


/* =========================================================
   BOOKING SIDE
   ========================================================= */

.booking-side {
    padding-top: 10px;
}

.booking-line {
    width: 55px;
    height: 1px;

    margin-bottom: 25px;

    background:
        linear-gradient(
            90deg,
            var(--rose),
            transparent
        );
}

.booking-side p {
    margin-bottom: 5px;

    color: var(--rose);

    font-size: 10px;

    letter-spacing: 3px;
}

.booking-side span {
    color: #655B56;

    font-size: 11px;
}


/* =========================================================
   FORM
   ========================================================= */

.form-container {
    padding: 50px;

    background:
        linear-gradient(
            145deg,
            #1A0D11,
            #10090B
        );

    border: 1px solid rgba(184,138,114,0.18);

    box-shadow:
        0 35px 90px rgba(0,0,0,0.45);
}

form {
    display: flex;
    flex-direction: column;

    gap: 28px;
}

.input-row {
    display: grid;

    grid-template-columns: 1fr 1fr;

    gap: 25px;
}

.field {
    display: flex;
    flex-direction: column;

    gap: 10px;
}

.field label {
    color: var(--rose);

    font-size: 9px;
    font-weight: 600;

    letter-spacing: 2px;
}

.field input,
.field select {
    width: 100%;

    padding: 16px 0;

    color: var(--cream);

    background: transparent;

    border: none;

    border-bottom: 1px solid #382A2D;

    outline: none;

    font-size: 13px;

    transition: 0.3s ease;
}

.field input::placeholder {
    color: #5E5551;
}

.field input:focus,
.field select:focus {
    border-bottom-color: var(--rose);
}

.field select {
    color: #D9C9BC;
}

.field select option {
    background: #160C0F;

    color: #F4E9DC;
}


/* =========================================================
   CONFIRM BUTTON
   ========================================================= */

.confirm-btn {
    position: relative;

    display: flex;
    align-items: center;
    justify-content: space-between;

    width: 100%;

    margin-top: 15px;

    padding: 20px 24px;

    color: #0A0708;

    background:
        linear-gradient(
            135deg,
            #D6AF9C,
            #A87964
        );

    border: 1px solid #C09680;

    font-size: 11px;
    font-weight: 700;

    overflow: hidden;

    transition: 0.35s ease;
}

.confirm-btn::before {
    content: "";

    position: absolute;
    inset: 0;

    background:
        linear-gradient(
            100deg,
            transparent,
            rgba(255,255,255,0.30),
            transparent
        );

    transform: translateX(-110%);

    transition: 0.5s ease;
}

.confirm-btn:hover::before {
    transform: translateX(110%);
}

.confirm-btn span,
.confirm-btn i {
    position: relative;

    z-index: 2;
}

.confirm-btn i {
    font-style: normal;

    font-size: 18px;
}


/* =========================================================
   MESSAGE
   ========================================================= */

#message {
    margin-top: 22px;

    color: var(--rose-light);

    font-size: 12px;
}


/* =========================================================
   FOOTER
   ========================================================= */

footer {
    padding: 70px 6% 25px;

    background: #050405;

    border-top: 1px solid rgba(244,233,220,0.07);
}

.footer-top {
    display: flex;

    justify-content: space-between;

    padding-bottom: 70px;
}

.footer-top p {
    margin-top: 15px;

    color: #615752;

    font-size: 11px;
}

.footer-nav {
    display: flex;

    gap: 35px;
}

.footer-nav a {
    color: #837771;

    font-size: 11px;

    transition: 0.3s ease;
}

.footer-nav a:hover {
    color: var(--rose-light);
}

.footer-bottom {
    display: flex;

    justify-content: space-between;

    padding-top: 20px;

    border-top: 1px solid rgba(244,233,220,0.07);

    color: #4F4844;

    font-size: 9px;

    letter-spacing: 1px;

    text-transform: uppercase;
}


/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1000px) {

    .navbar {
        width: calc(100% - 30px);
    }

    .navbar nav {
        gap: 20px;
    }

    .hero-content {
        width: 58%;
    }

    .hero-media {
        width: 55%;
    }

    .hero h1 {
        font-size: 65px;
    }

    .features {
        gap: 50px;
    }

}


/* =========================================================
   MOBILE / TABLET
   ========================================================= */

@media (max-width: 760px) {

    .navbar {
        height: 68px;

        padding: 0 18px;
    }

    .navbar nav {
        display: none;
    }

    .nav-book {
        padding: 11px 14px;
    }


    /* HERO */

    .hero {
        display: block;

        padding: 140px 25px 60px;
    }

    .hero-content {
        width: 100%;
    }

    .hero h1 {
        font-size: clamp(52px, 14vw, 78px);

        letter-spacing: -4px;
    }

    .hero-copy {
        font-size: 13px;
    }

    .hero-media {
        position: relative;

        right: auto;
        top: auto;

        width: 100%;
        height: 430px;

        margin-top: 50px;
    }

    .media-gradient {
        background:
            linear-gradient(
                180deg,
                rgba(8,6,7,0.10),
                transparent 40%,
                rgba(8,6,7,0.80)
            );
    }

    .vertical-label {
        display: none;
    }

    .hero-label {
        right: 20px;
        bottom: 20px;
    }


    /* SERVICES */

    .services {
        padding: 100px 25px;
    }

    .section-heading {
        display: block;

        margin-bottom: 50px;
    }

    .section-heading > p {
        margin-top: 30px;
    }

    .service-list {
        grid-template-columns: 1fr;
    }

    .card-image {
        height: 390px;
    }


    /* STATEMENT */

    .statement {
        grid-template-columns: 1fr;

        gap: 25px;

        padding: 110px 25px;
    }


    /* FEATURES */

    .features {
        grid-template-columns: 1fr;

        gap: 60px;

        padding: 100px 25px;
    }


    /* BOOKING */

    .booking {
        padding: 100px 25px;
    }

    .booking-header {
        display: block;

        margin-bottom: 55px;
    }

    .booking-header > p {
        margin-top: 30px;
    }

    .booking-layout {
        grid-template-columns: 1fr;

        gap: 40px;
    }

    .form-container {
        padding: 28px 20px;
    }

    .input-row {
        grid-template-columns: 1fr;
    }


    /* FOOTER */

    footer {
        padding: 60px 25px 20px;
    }

    .footer-top {
        display: block;

        padding-bottom: 45px;
    }

    .footer-nav {
        margin-top: 35px;

        flex-wrap: wrap;

        gap: 20px;
    }

}


/* =========================================================
   SMALL MOBILE
   ========================================================= */

@media (max-width: 480px) {

    .logo {
        font-size: 17px;

        letter-spacing: 2px;
    }

    .nav-book span {
        font-size: 10px;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn-primary,
    .btn-outline {
        width: 100%;
    }

    .hero-meta {
        flex-wrap: wrap;
    }

    .meta-line {
        display: none;
    }

    .hero-media {
        height: 330px;
    }

    .hero-label {
        width: calc(100% - 40px);
    }

    .section-heading h2,
    .statement h2,
    .feature-intro h2,
    .booking h2 {
        font-size: 48px;

        letter-spacing: -2px;
    }

    .card-image {
        height: 300px;
    }

    .card-info {
        display: block;

        min-height: auto;

        padding: 25px;
    }

    .card-info button {
        margin-top: 25px;
    }

    .feature-row {
        grid-template-columns: 30px 1fr 20px;
    }

    .footer-bottom {
        gap: 15px;
    }

}


/* =========================================================
   PREMIUM DETAILS
   ========================================================= */

.service-card,
.form-container,
.hero-label,
.navbar {
    will-change: transform;
}


/* luxury line animation */

.services::before {
    animation: luxuryLine 5s ease-in-out infinite alternate;
}

@keyframes luxuryLine {

    from {
        opacity: 0.25;
    }

    to {
        opacity: 1;
    }

}

/* =========================================================
   LUXURY REFINEMENT
   ========================================================= */

:root {
    --black: #090908;
    --black-2: #11110f;
    --black-3: #181713;
    --burgundy: #33231c;
    --burgundy-light: #51382a;
    --burgundy-dark: #1c1510;
    --rose: #c6a26a;
    --rose-light: #e6c992;
    --rose-dark: #876b42;
    --cream: #f5f0e7;
    --cream-soft: #d2c6b5;
    --muted: #9c9285;
    --muted-dark: #6f685e;
    --border: rgba(245, 240, 231, 0.12);
    --rose-border: rgba(198, 162, 106, 0.42);
}

body {
    background: var(--black);
    color: var(--cream);
    font-size: 15px;
}

.navbar {
    top: 22px;
    height: 72px;
    border-radius: 2px;
    background: rgba(16, 15, 12, 0.78);
    border-color: rgba(230, 201, 146, 0.18);
    box-shadow: 0 20px 80px rgba(0, 0, 0, 0.48), inset 0 1px rgba(255, 255, 255, 0.06);
}

.logo {
    letter-spacing: 4px;
}

.logo b,
.eyebrow,
.meta-item strong,
.card-number,
.booking-side p {
    color: var(--rose);
}

.nav-book,
.btn-primary,
.confirm-btn {
    background: linear-gradient(135deg, #e7ca91, #b58b52);
    border-color: #d5b87c;
}

.hero {
    min-height: 860px;
    padding-top: 170px;
    background:
        radial-gradient(circle at 12% 70%, rgba(108, 75, 37, 0.22), transparent 32%),
        radial-gradient(circle at 80% 28%, rgba(198, 162, 106, 0.1), transparent 28%),
        var(--black);
}

.hero::before {
    background-image: linear-gradient(rgba(245, 240, 231, 0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(245, 240, 231, 0.035) 1px, transparent 1px);
    background-size: 110px 110px;
}

.hero h1,
.section-heading h2,
.statement h2,
.feature-intro h2,
.booking h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
    letter-spacing: -2px;
}

.hero h1 {
    font-size: clamp(62px, 7.4vw, 112px);
    line-height: 0.91;
}

.hero h1 em,
.section-heading h2 span,
.statement h2 span,
.feature-intro h2 span,
.booking h2 span {
    color: var(--rose-light);
    background: none;
    -webkit-text-fill-color: initial;
}

.hero-copy,
.section-heading > p,
.statement-content > p,
.booking-header > p {
    color: var(--muted);
}

.hero-media {
    width: 55%;
}

.hero-media img {
    filter: brightness(0.62) contrast(1.08) saturate(0.78);
}

.media-gradient {
    background: linear-gradient(90deg, var(--black) 0%, rgba(9, 9, 8, 0.9) 12%, rgba(9, 9, 8, 0.34) 54%, rgba(9, 9, 8, 0.03) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.75), transparent 52%);
}

.hero-label,
.service-card,
.form-container {
    background: linear-gradient(145deg, rgba(39, 33, 25, 0.9), rgba(15, 15, 12, 0.94));
    border-color: rgba(230, 201, 146, 0.2);
}

.hero-label {
    border-radius: 1px;
}

.services,
.statement,
.booking {
    background-color: var(--black-2);
}

.services::before {
    background: linear-gradient(90deg, transparent, var(--rose-border), transparent);
}

.service-card:hover {
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.48), 0 0 50px rgba(198, 162, 106, 0.1);
}

.card-category {
    color: var(--cream-soft);
    border-color: rgba(230, 201, 146, 0.28);
}

.card-info h3,
.feature-row h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
}

.card-info button,
.feature-row b,
.hero-label > span {
    color: var(--rose-light);
}

.features {
    background: linear-gradient(120deg, #1a1711, #0e0e0b);
}

.form-container {
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5), inset 0 1px rgba(255, 255, 255, 0.04);
}

.field input:focus,
.field select:focus {
    border-bottom-color: var(--rose);
}

#message {
    display: none;
    padding: 14px 16px;
    border: 1px solid var(--rose-border);
    background: rgba(198, 162, 106, 0.08);
    line-height: 1.6;
}

#message.is-visible {
    display: block;
}

footer {
    background: #070706;
}

@media (max-width: 760px) {
    .hero {
        min-height: auto;
        padding-top: 135px;
    }

    .hero h1 {
        font-size: clamp(54px, 15vw, 82px);
    }

    .hero-media {
        width: 100%;
    }
}

/* =========================================================
   MIDNIGHT ATELIER THEME
   ========================================================= */

:root {
    --black: #061211;
    --black-2: #0b1c1b;
    --black-3: #102625;
    --burgundy: #173735;
    --burgundy-light: #24514b;
    --burgundy-dark: #0b211f;
    --rose: #d1a765;
    --rose-light: #f0cf91;
    --rose-dark: #8d6b3b;
    --cream: #f5f1e8;
    --cream-soft: #d8d2c4;
    --muted: #9ca9a2;
    --muted-dark: #687a73;
    --border: rgba(217, 232, 223, 0.13);
    --rose-border: rgba(209, 167, 101, 0.46);
}

body {
    background: var(--black);
    color: var(--cream);
}

::selection {
    background: var(--rose);
    color: var(--black);
}

::-webkit-scrollbar-track {
    background: var(--black);
}

::-webkit-scrollbar-thumb {
    background: #244c47;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--rose);
}

.navbar {
    background: rgba(6, 18, 17, 0.82);
    border-color: rgba(209, 167, 101, 0.25);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.5), inset 0 1px rgba(245, 241, 232, 0.08);
}

.logo b,
.eyebrow,
.meta-item strong,
.card-number,
.booking-side p {
    color: var(--rose);
}

.navbar nav a:hover,
.footer-nav a:hover {
    color: var(--rose-light);
}

.nav-book,
.btn-primary,
.confirm-btn {
    color: #10201d;
    background: linear-gradient(135deg, #f0cf91 0%, #c2914c 100%);
    border-color: #f0cf91;
    box-shadow: 0 12px 30px rgba(209, 167, 101, 0.14);
}

.nav-book::before,
.btn-primary::before,
.confirm-btn::before {
    background: linear-gradient(105deg, transparent 20%, rgba(255, 255, 255, 0.56) 48%, transparent 76%);
}

.btn-outline {
    color: var(--cream);
    background: rgba(23, 55, 53, 0.38);
    border-color: rgba(209, 167, 101, 0.5);
}

.btn-outline::before {
    background: linear-gradient(135deg, rgba(209, 167, 101, 0.18), rgba(23, 55, 53, 0.12));
}

.nav-book,
.btn-primary,
.btn-outline,
.confirm-btn {
    isolation: isolate;
    border-radius: 3px;
    transition: transform 280ms ease, box-shadow 280ms ease, border-color 280ms ease;
}

.nav-book:hover,
.btn-primary:hover,
.btn-outline:hover,
.confirm-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 38px rgba(209, 167, 101, 0.2);
}

.nav-book:active,
.btn-primary:active,
.btn-outline:active,
.confirm-btn:active {
    transform: translateY(-1px) scale(0.99);
}

.nav-book i,
.btn-primary i,
.btn-outline i,
.confirm-btn i {
    display: grid;
    width: 25px;
    height: 25px;
    place-items: center;
    border: 1px solid currentColor;
    border-radius: 50%;
    font-size: 13px;
    transition: transform 280ms ease, background 280ms ease;
}

.nav-book:hover i,
.btn-primary:hover i,
.btn-outline:hover i,
.confirm-btn:hover i {
    transform: rotate(45deg);
    background: rgba(255, 255, 255, 0.16);
}

.hero {
    background:
        radial-gradient(circle at 16% 70%, rgba(36, 81, 75, 0.4), transparent 30%),
        radial-gradient(circle at 78% 25%, rgba(209, 167, 101, 0.13), transparent 27%),
        var(--black);
}

.hero::before {
    background-image: linear-gradient(rgba(216, 232, 223, 0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(216, 232, 223, 0.04) 1px, transparent 1px);
}

.hero-background {
    background: radial-gradient(circle, rgba(36, 81, 75, 0.28), transparent 66%);
}

.hero-media img {
    filter: brightness(0.58) contrast(1.12) saturate(0.7);
}

.media-gradient {
    background: linear-gradient(90deg, var(--black) 0%, rgba(6, 18, 17, 0.91) 13%, rgba(6, 18, 17, 0.35) 55%, rgba(6, 18, 17, 0.03) 100%), linear-gradient(0deg, rgba(0, 0, 0, 0.76), transparent 53%);
}

.hero-label,
.service-card,
.form-container {
    background: linear-gradient(145deg, rgba(23, 55, 53, 0.82), rgba(8, 24, 23, 0.95));
    border-color: rgba(209, 167, 101, 0.24);
}

.hero-label {
    box-shadow: 0 18px 55px rgba(0, 0, 0, 0.32), inset 0 1px rgba(245, 241, 232, 0.08);
}

.services,
.statement,
.booking {
    background:
        radial-gradient(circle at 90% 15%, rgba(36, 81, 75, 0.24), transparent 27%),
        var(--black-2);
}

.services::before {
    background: linear-gradient(90deg, transparent, var(--rose-border), rgba(36, 81, 75, 0.4), transparent);
}

.service-card:hover {
    border-color: var(--rose-border);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.5), 0 0 48px rgba(36, 81, 75, 0.22);
}

.card-category {
    color: var(--cream-soft);
    background: rgba(6, 18, 17, 0.5);
    border-color: rgba(209, 167, 101, 0.28);
}

.card-info button,
.feature-row b,
.hero-label > span {
    color: var(--rose-light);
}

.features {
    background: linear-gradient(120deg, #102725, #071615);
}

.feature-row:hover {
    border-bottom-color: var(--rose-border);
}

.form-container {
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.5), inset 0 1px rgba(245, 241, 232, 0.06);
}

.field input:focus,
.field select:focus {
    border-bottom-color: var(--rose);
    box-shadow: 0 8px 18px -16px var(--rose);
}

#message {
    background: rgba(209, 167, 101, 0.08);
}

footer {
    background: #04100f;
}

/* Deliberate motion: calm entrance, tactile cards, and no noisy looping effects. */
.hero-content {
    animation: atelierRise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.hero-media {
    animation: atelierReveal 1100ms cubic-bezier(0.22, 1, 0.36, 1) 120ms both;
}

.service-card,
.feature-row,
.form-container {
    animation: atelierFade 800ms ease both;
}

.service-card:nth-child(2) {
    animation-delay: 120ms;
}

.feature-row:nth-child(2) {
    animation-delay: 100ms;
}

.feature-row:nth-child(3) {
    animation-delay: 180ms;
}

@keyframes atelierRise {
    from { opacity: 0; transform: translateY(28px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes atelierReveal {
    from { opacity: 0; clip-path: inset(0 0 0 14%); }
    to { opacity: 1; clip-path: inset(0 0 0 0); }
}

@keyframes atelierFade {
    from { opacity: 0; transform: translateY(16px); }
    to { opacity: 1; transform: translateY(0); }
}

@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.01ms !important;
    }
}

/* =========================================================
   MOBILE NAVIGATION
   ========================================================= */

.mobile-menu {
    display: none;
    width: 42px;
    height: 42px;
    padding: 0;
    place-items: center;
    gap: 5px;
    color: var(--cream);
    background: transparent;
    border: 1px solid rgba(209, 167, 101, 0.34);
    border-radius: 3px;
}

.mobile-menu span {
    display: block;
    width: 15px;
    height: 1px;
    background: currentColor;
    transition: transform 240ms ease;
}

.mobile-menu[aria-expanded="true"] span:first-child {
    transform: translateY(3px) rotate(45deg);
}

.mobile-menu[aria-expanded="true"] span:last-child {
    transform: translateY(-3px) rotate(-45deg);
}

@media (max-width: 760px) {
    .navbar {
        width: calc(100% - 24px);
        padding: 0 12px 0 16px;
        gap: 10px;
    }

    .mobile-menu {
        display: grid;
        margin-left: auto;
    }

    .navbar nav {
        position: absolute;
        top: calc(100% + 9px);
        left: 0;
        right: 0;
        display: grid;
        gap: 0;
        padding: 8px;
        background: rgba(6, 18, 17, 0.97);
        border: 1px solid rgba(209, 167, 101, 0.24);
        box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
        opacity: 0;
        pointer-events: none;
        transform: translateY(-8px);
        transition: opacity 220ms ease, transform 220ms ease;
    }

    .navbar.menu-open nav {
        opacity: 1;
        pointer-events: auto;
        transform: translateY(0);
    }

    .navbar nav a {
        padding: 13px 14px;
        border-bottom: 1px solid rgba(216, 232, 223, 0.08);
    }

    .navbar nav a:last-child {
        border-bottom: 0;
    }

    .navbar nav a::after {
        display: none;
    }

    .nav-book {
        padding: 9px 11px;
    }

    .nav-book i {
        display: none;
    }

    .hero,
    .services,
    .statement,
    .features,
    .booking,
    footer {
        padding-left: max(20px, env(safe-area-inset-left));
        padding-right: max(20px, env(safe-area-inset-right));
    }

    input,
    select,
    button {
        font-size: 16px;
    }

    .field input,
    .field select {
        min-height: 50px;
    }
}

/* =========================================================
   BUS TICKETS + CITY AVAILABILITY
   ========================================================= */

.service-list {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card-coming .card-image img {
    filter: brightness(0.48) contrast(1.08) saturate(0.45);
}

.service-card-coming:hover .card-image img {
    filter: brightness(0.58) contrast(1.08) saturate(0.58);
}

.service-card-coming .card-category {
    color: var(--rose-light);
    border-color: var(--rose-border);
}

.coming-soon-label {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    color: var(--rose-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    white-space: nowrap;
}

.coming-soon-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border: 1px solid var(--rose);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(209, 167, 101, 0.09);
}

.cities {
    padding: 140px 8%;
    background:
        radial-gradient(circle at 15% 20%, rgba(209, 167, 101, 0.1), transparent 24%),
        linear-gradient(135deg, #102725, #071615);
    border-top: 1px solid rgba(209, 167, 101, 0.16);
}

.cities-heading {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 50px;
    margin-bottom: 70px;
}

.cities-heading h2 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(45px, 5vw, 76px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -3px;
}

.cities-heading h2 span {
    color: var(--rose-light);
}

.cities-heading > p {
    max-width: 330px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.85;
}

.city-list {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.city-card {
    min-height: 170px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(6, 18, 17, 0.58);
    border: 1px solid rgba(216, 232, 223, 0.1);
    transition: transform 260ms ease, border-color 260ms ease, background 260ms ease;
}

.city-card:hover {
    transform: translateY(-5px);
    background: rgba(23, 55, 53, 0.72);
    border-color: var(--rose-border);
}

.city-card-active {
    background: linear-gradient(145deg, rgba(209, 167, 101, 0.2), rgba(6, 18, 17, 0.72));
    border-color: var(--rose-border);
}

.city-status {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.8px;
    text-transform: uppercase;
}

.city-card-active .city-status {
    color: var(--rose-light);
}

.city-status i {
    display: inline-block;
    width: 6px;
    height: 6px;
    margin-right: 6px;
    background: var(--rose);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(209, 167, 101, 0.1);
}

.city-card strong {
    color: var(--cream);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 28px;
    font-weight: 500;
}

.city-card small {
    color: var(--muted-dark);
    font-size: 10px;
    letter-spacing: 0.6px;
}

@media (max-width: 1000px) {
    .service-list,
    .city-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 760px) {
    .service-list,
    .city-list {
        grid-template-columns: 1fr;
    }

    .cities {
        padding-top: 100px;
        padding-bottom: 100px;
    }

    .cities-heading {
        display: block;
        margin-bottom: 50px;
    }

    .cities-heading > p {
        margin-top: 30px;
    }

    .city-card {
        min-height: 140px;
    }
}

/* =========================================================
   ADMIN PANEL
   ========================================================= */

.admin-panel {
    min-height: 100vh;
    padding: 150px 6% 100px;
    color: var(--cream);
    background:
        radial-gradient(circle at 85% 10%, rgba(36, 81, 75, 0.25), transparent 28%),
        var(--black);
}

.admin-shell {
    width: min(1380px, 100%);
    margin: 0 auto;
}

.admin-topbar,
.admin-dashboard-head,
.admin-card-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.admin-topbar {
    margin-bottom: 55px;
    padding-bottom: 26px;
    border-bottom: 1px solid var(--border);
}

.admin-topbar h1 {
    font-family: "Playfair Display", Georgia, serif;
    font-size: clamp(45px, 5vw, 74px);
    font-weight: 500;
    line-height: 0.95;
}

.admin-exit,
.admin-logout,
.admin-add,
.fleet-row button {
    color: var(--rose-light);
    background: transparent;
    border: 1px solid var(--rose-border);
    border-radius: 3px;
    transition: 220ms ease;
}

.admin-exit,
.admin-logout,
.admin-add {
    padding: 11px 15px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.admin-exit:hover,
.admin-logout:hover,
.admin-add:hover,
.fleet-row button:hover {
    color: var(--black);
    background: var(--rose-light);
}

.admin-login {
    display: grid;
    grid-template-columns: 1fr minmax(320px, 430px);
    align-items: center;
    gap: 100px;
    max-width: 1050px;
    margin: 0 auto;
    padding: 65px;
    background: linear-gradient(145deg, rgba(23, 55, 53, 0.7), rgba(8, 24, 23, 0.94));
    border: 1px solid var(--border);
}

.admin-mark {
    display: grid;
    width: 58px;
    height: 58px;
    margin-bottom: 30px;
    place-items: center;
    color: var(--black);
    background: var(--rose-light);
    border-radius: 50%;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1px;
}

.admin-login h2,
.admin-dashboard-head h2,
.admin-card h3 {
    font-family: "Playfair Display", Georgia, serif;
    font-weight: 500;
}

.admin-login h2 {
    margin-bottom: 15px;
    font-size: clamp(40px, 5vw, 70px);
    line-height: 0.95;
}

.admin-login-copy p,
.admin-demo-note {
    max-width: 360px;
    color: var(--muted);
    font-size: 13px;
    line-height: 1.8;
}

.admin-login-form {
    display: grid;
    gap: 10px;
}

.admin-login-form label,
.car-form input,
.car-form select {
    color: var(--rose-light);
    font-size: 10px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}

.admin-login-form input,
.car-form input,
.car-form select {
    width: 100%;
    margin-bottom: 15px;
    padding: 14px 0;
    color: var(--cream);
    background: transparent;
    border: 0;
    border-bottom: 1px solid var(--border);
    outline: 0;
    font-size: 13px;
}

.admin-login-form input:focus,
.car-form input:focus,
.car-form select:focus {
    border-bottom-color: var(--rose);
}

.admin-login-form .confirm-btn {
    margin-top: 15px;
}

.admin-demo-note {
    margin-top: 10px;
    color: var(--muted-dark);
    font-size: 11px;
}

.admin-dashboard-head {
    margin-bottom: 35px;
}

.admin-dashboard-head h2 {
    font-size: clamp(32px, 4vw, 55px);
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 45px;
}

.admin-stats > div,
.admin-card {
    background: rgba(16, 38, 37, 0.64);
    border: 1px solid var(--border);
}

.admin-stats > div {
    min-height: 145px;
    padding: 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.admin-stats span,
.admin-stats small,
.admin-kicker {
    color: var(--muted-dark);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 1.6px;
    text-transform: uppercase;
}

.admin-stats strong {
    color: var(--cream);
    font-family: "Playfair Display", Georgia, serif;
    font-size: 38px;
    font-weight: 500;
}

.admin-stats .stat-live {
    color: var(--rose-light);
}

.admin-content-grid {
    display: grid;
    grid-template-columns: 1.35fr 1fr;
    gap: 16px;
}

.admin-card {
    padding: 28px;
}

.admin-card h3 {
    margin-top: 5px;
    font-size: 28px;
}

.fleet-filters {
    display: flex;
    align-items: center;
    gap: 8px;
    margin: 28px 0 8px;
    padding: 6px;
    border-bottom: 1px solid var(--border);
}

.fleet-filters button {
    min-width: 92px;
    padding: 10px 14px;
    color: #dbe7df;
    background: #173b37;
    border: 1px solid #376c62;
    border-radius: 999px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    cursor: pointer;
    transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.fleet-filters button:first-child {
    color: #f5f1e8;
    background: #245a51;
    border-color: #6fae99;
}

.fleet-filters button:nth-child(2) {
    color: #caffd4;
    background: rgba(66, 164, 98, 0.24);
    border-color: rgba(126, 232, 151, 0.7);
}

.fleet-filters button:nth-child(3) {
    color: #ffe1ac;
    background: rgba(201, 143, 47, 0.24);
    border-color: rgba(240, 191, 104, 0.72);
}

.fleet-filters button:hover {
    transform: translateY(-2px);
    filter: brightness(1.18);
}

.fleet-filters button.filter-active,
.fleet-filters button:nth-child(2).filter-active,
.fleet-filters button:nth-child(3).filter-active {
    color: #061211 !important;
    background: #f0cf91 !important;
    border-color: #f0cf91 !important;
    box-shadow: 0 0 0 3px rgba(240, 207, 145, 0.16), 0 8px 18px rgba(209, 167, 101, 0.2);
}

.fleet-row,
.booking-row {
    display: grid;
    grid-template-columns: 42px 1fr auto auto auto;
    align-items: center;
    gap: 12px;
    padding: 15px 0;
    border-bottom: 1px solid rgba(216, 232, 223, 0.08);
}

.fleet-avatar,
.booking-row > span {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    color: var(--rose-light);
    background: rgba(209, 167, 101, 0.12);
    border: 1px solid var(--rose-border);
    border-radius: 50%;
    font-size: 9px;
    font-weight: 700;
}

.fleet-avatar {
    overflow: hidden;
}

.fleet-avatar img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.fleet-row strong,
.booking-row strong {
    display: block;
    color: var(--cream);
    font-size: 12px;
}

.fleet-row small,
.booking-row small {
    display: block;
    margin-top: 3px;
    color: var(--muted-dark);
    font-size: 10px;
}

.fleet-row em,
.booking-row em {
    font-size: 9px;
    font-style: normal;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.status-available,
.booking-done {
    color: #b9f0c7;
}

.status-rented {
    color: #ffd6a0;
}

.fleet-row em.status-available,
.fleet-row em.status-rented {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 78px;
    padding: 6px 9px;
    border-radius: 999px;
    font-size: 8px;
    letter-spacing: 1px;
}

.fleet-row em.status-available {
    background: rgba(92, 190, 125, 0.18);
    border: 1px solid rgba(132, 224, 158, 0.5);
    box-shadow: 0 0 16px rgba(92, 190, 125, 0.12);
}

.fleet-row em.status-rented {
    background: rgba(209, 167, 101, 0.18);
    border: 1px solid rgba(240, 207, 145, 0.52);
    box-shadow: 0 0 16px rgba(209, 167, 101, 0.12);
}

.fleet-row button {
    padding: 6px 9px;
    font-size: 9px;
}

.fleet-row button:last-child {
    padding: 3px 8px;
    border-color: transparent;
    font-size: 16px;
}

.booking-count {
    color: var(--rose-light);
    font-size: 10px;
    text-transform: uppercase;
}

.booking-row {
    grid-template-columns: 42px 1fr auto;
}

.booking-row em {
    color: var(--rose-light);
}

.car-form {
    display: grid;
    gap: 8px;
    margin-top: 22px;
    padding: 20px;
    background: rgba(6, 18, 17, 0.6);
    border: 1px solid var(--rose-border);
}

.car-form .admin-add {
    justify-self: start;
}

.status-picker {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 4px 0 8px;
}

.status-picker-label {
    grid-column: 1 / -1;
    color: var(--rose-light);
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
}

.status-choice {
    min-height: 48px;
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 0 13px;
    color: var(--cream-soft);
    background: rgba(6, 18, 17, 0.58);
    border: 1px solid var(--border);
    border-radius: 3px;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
    cursor: pointer;
    transition: background 200ms ease, border-color 200ms ease, color 200ms ease, transform 200ms ease;
}

.status-choice i {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: currentColor;
}

.status-choice:hover {
    transform: translateY(-2px);
}

.status-choice-available {
    color: #b9f0c7;
}

.status-choice-rented {
    color: #ffd6a0;
}

.status-choice-available.is-selected {
    color: #d4ffdc;
    background: rgba(66, 164, 98, 0.28);
    border-color: rgba(126, 232, 151, 0.75);
    box-shadow: 0 0 18px rgba(92, 190, 125, 0.14);
}

.status-choice-rented.is-selected {
    color: #ffe5b8;
    background: rgba(201, 143, 47, 0.3);
    border-color: rgba(240, 191, 104, 0.8);
    box-shadow: 0 0 18px rgba(209, 167, 101, 0.14);
}

.image-upload {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 5px;
    padding: 14px;
    color: var(--cream-soft);
    border: 1px dashed var(--rose-border);
    cursor: pointer;
    transition: background 220ms ease, border-color 220ms ease;
}

.image-upload:hover {
    background: rgba(209, 167, 101, 0.08);
    border-color: var(--rose-light);
}

.image-upload-icon {
    display: grid;
    width: 30px;
    height: 30px;
    place-items: center;
    color: var(--black);
    background: var(--rose-light);
    border-radius: 50%;
    font-size: 20px;
    font-weight: 400;
}

.image-upload span:nth-child(2) {
    display: flex;
    flex-direction: column;
    gap: 3px;
}

.image-upload strong {
    color: var(--cream);
    font-size: 11px;
}

.image-upload small {
    color: var(--muted-dark);
    font-size: 9px;
}

.image-upload input {
    position: absolute;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.car-image-preview {
    position: relative;
    min-height: 55px;
    display: grid;
    place-items: center;
    color: var(--muted-dark);
    background: rgba(6, 18, 17, 0.54);
    border: 1px solid var(--border);
    font-size: 10px;
}

.car-image-preview.has-image {
    display: block;
    height: 150px;
    overflow: hidden;
}

.car-image-preview img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.car-image-preview button {
    position: absolute;
    top: 8px;
    right: 8px;
    width: 26px;
    height: 26px;
    color: var(--cream);
    background: rgba(6, 18, 17, 0.85);
    border: 1px solid var(--border);
    border-radius: 50%;
    cursor: pointer;
}

@media (max-width: 900px) {
    .admin-login {
        grid-template-columns: 1fr;
        gap: 45px;
        padding: 38px;
    }

    .admin-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .admin-content-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .admin-panel {
        padding-top: 125px;
    }

    .admin-topbar,
    .admin-dashboard-head {
        align-items: flex-start;
        flex-direction: column;
    }

    .admin-login {
        padding: 25px 20px;
    }

    .admin-stats {
        gap: 8px;
    }

    .admin-stats > div {
        min-height: 120px;
        padding: 15px;
    }

    .admin-stats strong {
        font-size: 30px;
    }

    .admin-card {
        padding: 20px 15px;
    }

    .fleet-row {
        grid-template-columns: 34px 1fr auto;
    }

    .fleet-row button,
    .fleet-row em {
        grid-row: 2;
    }

    .fleet-row button:first-of-type {
        grid-column: 2;
        justify-self: start;
    }

    .fleet-row button:last-child {
        grid-column: 3;
    }

    .fleet-row em {
        grid-column: 3;
    }

    .booking-row {
        grid-template-columns: 34px 1fr;
    }

    .booking-row em {
        grid-column: 2;
    }
}