/* ===================================================================
   MF DRIVING CENTRE CHAKWAL — RESPONSIVE STYLESHEET
   Fully responsive for: 320px phones → 1400px+ desktops
   Breakpoints: 400 / 576 / 768 / 992 / 1200 / 1400
=================================================================== */

/* ===== CSS CUSTOM PROPERTIES ===== */
:root {
    --midnight: #0a0f1a;
    --deep-navy: #0f172a;
    --electric-orange: #ff6b2c;
    --neon-amber: #ffb400;
    --pure-white: #ffffff;
    --soft-cream: #fef9f3;
    --steel-gray: #64748b;
    --light-slate: #e2e8f0;
    --success-green: #22c55e;
    --glass-white: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.12);

    --gradient-fire: linear-gradient(135deg, #ff6b2c 0%, #ffb400 100%);
    --gradient-night: linear-gradient(180deg, #0a0f1a 0%, #1e293b 100%);

    --font-display: 'Bebas Neue', sans-serif;
    /* --font-heading: 'Syne', sans-serif; */
    --font-body: 'DM Sans', sans-serif;

    /* fluid spacing — shrinks gracefully on every viewport */
    --section-pad: clamp(48px, 8vw, 120px);
    --container-pad: clamp(16px, 4vw, 24px);
    --card-pad: clamp(20px, 3vw, 40px);
    --gap-md: clamp(16px, 2.5vw, 32px);
}

/* ===== RESET & BASE ===== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    /* prevent iOS font‑size inflation */
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    color: var(--deep-navy);
    line-height: 1.7;
    overflow-x: hidden;
    background: var(--soft-cream);
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

/* ===== UTILITY ===== */
.font-display {
    font-family: var(--font-display);
}

.text-orange {
    color: var(--electric-orange) !important;
}

.bg-midnight {
    background: var(--midnight) !important;
}

.bg-cream {
    background: var(--soft-cream) !important;
}

.gradient-fire {
    background: var(--gradient-fire) !important;
}

.gradient-text {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ========================================================
   BUTTONS
======================================================== */
.btn-fire {
    background: var(--gradient-fire);
    color: var(--pure-white);
    font-family: var(--font-heading);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    /* fluid padding: shrinks on phone, comfortable on desktop */
    padding: clamp(11px, 1.8vw, 16px) clamp(22px, 3.5vw, 40px);
    font-size: clamp(12px, 1.4vw, 14px);
    border: none;
    border-radius: 60px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.23, 1, 0.32, 1);
    box-shadow: 0 10px 40px rgba(255, 107, 44, 0.3);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    /* minimum tap target */
    min-height: 44px;
    min-width: 44px;
}

.btn-fire::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s;
}

.btn-fire:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 20px 60px rgba(255, 107, 44, 0.4);
    color: var(--pure-white);
}

.btn-fire:hover::before {
    left: 100%;
}

.btn-fire:active {
    transform: translateY(-1px) scale(0.99);
}

.btn-outline-light-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    padding: clamp(11px, 1.8vw, 16px) clamp(22px, 3.5vw, 40px);
    font-size: clamp(12px, 1.4vw, 14px);
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 60px;
    color: var(--pure-white);
    background: transparent;
    backdrop-filter: blur(10px);
    transition: all 0.4s;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    min-height: 44px;
}

.btn-outline-light-custom:hover {
    background: var(--pure-white);
    color: var(--deep-navy);
    border-color: var(--pure-white);
}

/* ========================================================
   ANNOUNCEMENT TICKER
======================================================== */
.announcement-bar {
    background: var(--gradient-fire);
    color: #fff;
    height: clamp(36px, 5vw, 44px);
    overflow: hidden;
    display: flex;
    align-items: center;
    position: relative;
    z-index: 1100;
}

.ticker-wrapper {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.ticker-wrapper::before,
.ticker-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    width: clamp(40px, 6vw, 80px);
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.ticker-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #ff3c00, transparent);
}

.ticker-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #ff3c00, transparent);
}

.ticker-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: ticker-scroll 40s linear infinite;
    white-space: nowrap;
}

.ticker-track:hover {
    animation-play-state: paused;
}

.ticker-item {
    display: inline-flex;
    align-items: center;
    font-size: clamp(12px, 1.4vw, 15px);
    font-weight: 600;
    padding: 0 clamp(14px, 2.5vw, 32px);
    letter-spacing: 0.3px;
}

.ticker-dot {
    margin-left: clamp(14px, 2.5vw, 32px);
    opacity: 0.5;
    font-size: 10px;
}

@keyframes ticker-scroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@media (prefers-reduced-motion: reduce) {
    .ticker-track {
        animation: none;
        justify-content: center;
    }
}

/* ========================================================
   TOP BAR
======================================================== */
.top-bar {
    background: var(--midnight);
    padding: clamp(8px, 1.2vw, 12px) 0;
    border-bottom: 1px solid var(--glass-border);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    font-size: clamp(12px, 1.2vw, 14px);
    transition: color 0.3s;
    white-space: nowrap;
}

.top-bar a:hover {
    color: var(--electric-orange);
}

.social-icon {
    width: clamp(32px, 3.5vw, 36px);
    height: clamp(32px, 3.5vw, 36px);
    min-width: 36px;
    min-height: 36px;
    /* tap target */
    background: var(--glass-white);
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: 15px;
    transition: all 0.3s;
    text-decoration: none;
    flex-shrink: 0;
}

.social-icon:hover {
    background: var(--electric-orange);
    color: var(--pure-white);
    transform: translateY(-3px);
}



/* ========================================================
   NAVBAR
======================================================== */
.navbar-custom {
    background: var(--pure-white);
    padding: clamp(10px, 1.4vw, 18px) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition:
        background 0.4s ease,
        backdrop-filter 0.4s ease,
        -webkit-backdrop-filter 0.4s ease,
        box-shadow 0.4s ease,
        border-radius 0.4s ease,
        border-bottom 0.4s ease,
        margin 0.4s ease,
        padding 0.4s ease,
        top 0.4s ease,
        width 0.4s ease;
}

/* Scrolled state — glassmorphism */
.navbar-custom.scrolled {
    background: rgb(110 107 107 / 55%);
    backdrop-filter: blur(28px) saturate(175%);
    -webkit-backdrop-filter: blur(28px) saturate(175%);
    box-shadow: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    border-radius: 20px;
    top: 18px;
    margin: 0 15px;
    width: calc(100% - 30px);
    padding: clamp(6px, 1vw, 12px) 0;
}

/* --------------------------------------------------------
   BRAND / LOGO
-------------------------------------------------------- */
.navbar-brand-custom {
    display: flex;
    align-items: center;
    gap: clamp(8px, 1.2vw, 14px);
    text-decoration: none;
    flex-shrink: 0;
    /* Limit logo width so it never crowds the toggler */
    max-width: clamp(140px, 40vw, 260px);
}

.navbar-brand-custom img {
    height: clamp(36px, 5vw, 52px);
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-mark {
    width: clamp(36px, 5vw, 65px);
    height: clamp(36px, 5vw, 65px);
    background: var(--gradient-night);
    border-radius: clamp(8px, 1.4vw, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 30px rgba(10, 15, 26, 0.3);
    flex-shrink: 0;
}

.logo-mark span {
    font-family: var(--font-display);
    font-size: clamp(14px, 2.2vw, 28px);
    color: var(--pure-white);
    letter-spacing: 2px;
}

.logo-text h1 {
    font-family: var(--font-heading);
    font-size: clamp(12px, 1.6vw, 22px);
    font-weight: 800;
    color: var(--deep-navy);
    line-height: 1.2;
    margin: 0;
    white-space: nowrap;
    transition: color 0.4s ease;
}

.logo-text span {
    font-size: clamp(7px, 0.9vw, 12px);
    color: var(--electric-orange);
    font-weight: 700;
    letter-spacing: clamp(1px, 0.4vw, 4px);
    text-transform: uppercase;
    white-space: nowrap;
}

/* --------------------------------------------------------
   NAV LINKS — default
-------------------------------------------------------- */
.nav-link-custom {
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: clamp(13px, 1.1vw, 15px);
    color: var(--steel-gray) !important;
    padding: 10px clamp(8px, 1.2vw, 20px) !important;
    position: relative;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    transition: color 0.4s ease;
    white-space: nowrap;
}

.nav-link-custom::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: clamp(8px, 1.2vw, 20px);
    right: clamp(8px, 1.2vw, 20px);
    height: 3px;
    background: var(--gradient-fire);
    border-radius: 3px;
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nav-link-custom:hover {
    color: var(--deep-navy) !important;
}

.nav-link-custom:hover::after {
    transform: scaleX(1);
}

/* NAV LINKS — scrolled */
.navbar-custom.scrolled .nav-link-custom {
    color: #ffffff !important;
}

.navbar-custom.scrolled .nav-link-custom:hover {
    color: var(--electric-orange) !important;
}

/* Logo text — white when scrolled */
.navbar-custom.scrolled .logo-text h1 {
    color: #ffffff;
}

/* --------------------------------------------------------
   TOGGLER
-------------------------------------------------------- */
.navbar-toggler {
    border: none;
    padding: 8px 10px;
    flex-shrink: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
    outline: 2px solid var(--electric-orange);
    outline-offset: 2px;
}

/* Toggler icon — white when scrolled */
.navbar-custom.scrolled .navbar-toggler-icon {
    filter: invert(1);
}

/* --------------------------------------------------------
   MOBILE COLLAPSE PANEL
-------------------------------------------------------- */
.navbar-collapse {
    transition: all 0.3s ease;
}

/* Default mobile panel */
@media (max-width: 991.98px) {

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: var(--pure-white);
        border-radius: 0 0 16px 16px;
        padding: 8px 0 16px;
        margin-top: 4px;
        box-shadow: 0 8px 20px rgba(0, 0, 0, 0.08);
    }

    /* Mobile nav links — full width, left aligned */
    .nav-link-custom {
        width: 100%;
        padding: 12px 20px !important;
        font-size: 15px;
        border-radius: 8px;
    }

    .nav-link-custom::after {
        display: none;
        /* hide underline animation on mobile */
    }

    .nav-link-custom:hover {
        background: rgba(0, 0, 0, 0.04);
    }

    /* Book Now btn — full width on mobile */
    .navbar-nav .btn-fire {
        width: calc(100% - 32px);
        margin: 8px 16px 4px;
        justify-content: center;
    }
}

/* Scrolled mobile panel — glass */
.navbar-custom.scrolled .navbar-collapse.show,
.navbar-custom.scrolled .navbar-collapse.collapsing {
    background: rgb(60 60 60 / 90%);
    backdrop-filter: blur(28px) saturate(160%);
    -webkit-backdrop-filter: blur(28px) saturate(160%);
    border-radius: 0 0 16px 16px;
    padding: 8px 0 12px;
    margin-top: 4px;
    box-shadow: none;
}

/* ========================================================
   RESPONSIVE BREAKPOINTS
======================================================== */

/* ── Large desktops: 1400px+ ── */
@media (min-width: 1400px) {
    .navbar-custom.scrolled {
        top: 18px;
        margin: 0 20px;
        width: calc(100% - 40px);
        border-radius: 22px;
    }
}

/* ── Desktop: 992px–1399px ── */
@media (min-width: 992px) and (max-width: 1399px) {
    .navbar-custom.scrolled {
        top: 15px;
        margin: 0 15px;
        width: calc(100% - 30px);
        border-radius: 20px;
    }

    .nav-link-custom {
        padding: 10px clamp(6px, 1vw, 14px) !important;
        font-size: clamp(12px, 1vw, 14px);
    }
}

/* ── Tablet landscape: 768px–991px ── */
@media (max-width: 991.98px) {
    .navbar-custom {
        padding: 10px 0;
    }

    .navbar-custom.scrolled {
        top: 10px;
        margin: 0 10px;
        width: calc(100% - 20px);
        border-radius: 16px;
    }
}

/* ── Tablet portrait: 576px–767px ── */
@media (max-width: 767.98px) {
    .navbar-custom.scrolled {
        top: 8px;
        margin: 0 8px;
        width: calc(100% - 16px);
        border-radius: 14px;
    }

    .navbar-brand-custom {
        max-width: clamp(130px, 55vw, 200px);
    }
}

/* ── Mobile: 375px–575px ── */
@media (max-width: 575.98px) {
    .navbar-custom {
        padding: 8px 0;
    }

    .navbar-custom.scrolled {
        top: 6px;
        margin: 0 6px;
        width: calc(100% - 12px);
        border-radius: 12px;
        padding: 6px 0;
    }

    .navbar-brand-custom {
        max-width: clamp(110px, 58vw, 180px);
    }

    .navbar-brand-custom img {
        height: clamp(30px, 8vw, 40px);
    }
}

/* ── Small mobile: below 375px ── */
@media (max-width: 374px) {
    .navbar-custom.scrolled {
        top: 4px;
        margin: 0 4px;
        width: calc(100% - 8px);
        border-radius: 10px;
    }

    .navbar-brand-custom {
        max-width: 55vw;
    }

    .navbar-brand-custom img {
        height: 28px;
    }
}



/* ========================================================
   HERO
======================================================== */
.hero-section {
    background: var(--gradient-night);
    min-height: clamp(500px, 100svh, 100svh);
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: clamp(28px, 4vw, 45px) 0 clamp(20px, 3vw, 40px);
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(255, 107, 44, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 180, 0, 0.10) 0%, transparent 40%);
    pointer-events: none;
}

.hero-grid-overlay {
    position: absolute;
    inset: 0;
    background-image: url('../../assets/img/main-bg.jpg');
    opacity: 0.55;
    background-size: cover;
    background-position: center;
    pointer-events: none;
}

.road-lines {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    overflow: hidden;
    opacity: 0.1;
    pointer-events: none;
}

.road-line {
    position: absolute;
    width: 4px;
    height: 60px;
    background: var(--pure-white);
    animation: roadMove 2s linear infinite;
}

@keyframes roadMove {
    0% {
        transform: translateY(-100px);
    }

    100% {
        transform: translateY(300px);
    }
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 107, 44, 0.15);
    border: 1px solid rgba(255, 107, 44, 0.3);
    padding: clamp(8px, 1.3vw, 12px) clamp(14px, 2.2vw, 24px);
    border-radius: 50px;
    font-size: clamp(12px, 1.3vw, 14px);
    font-weight: 600;
    color: var(--electric-orange);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(40px, 8vw, 80px);
    line-height: 0.95;
    color: var(--pure-white);
    letter-spacing: clamp(2px, 0.5vw, 4px);
}

.hero-title .highlight {
    background: var(--gradient-fire);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: clamp(14px, 1.6vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    max-width: 500px;
    line-height: 1.8;
}

.hero-stats {
    border-top: 1px solid var(--glass-border);
    padding-top: clamp(20px, 3.5vw, 40px);
    margin-top: clamp(24px, 4vw, 50px);
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 56px);
    color: var(--electric-orange);
    line-height: 1;
    letter-spacing: 2px;
}

.stat-label {
    font-size: clamp(10px, 1.1vw, 13px);
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: clamp(1px, 0.2vw, 2px);
    margin-top: 6px;
}

.hero-image-wrapper {
    position: relative;
}

.hero-image-container {
    border-radius: clamp(14px, 2.5vw, 30px);
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.5);
    position: relative;
}

.hero-image-container img {
    width: 100%;
    height: clamp(240px, 42vw, 550px);
    object-fit: cover;
}

.hero-image-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 26, 0.9) 100%);
}

.floating-card {
    position: absolute;
    background: var(--pure-white);
    border-radius: clamp(14px, 2vw, 20px);
    padding: clamp(14px, 1.8vw, 24px);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
    animation: floatCard 4s ease-in-out infinite;
}

.floating-card.discount {
    top: -20px;
    right: -20px;
    background: var(--gradient-fire);
    color: var(--pure-white);
    text-align: center;
}

.floating-card.vehicles {
    bottom: 60px;
    left: -40px;
}

@keyframes floatCard {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-15px);
    }
}

/* ========================================================
   SECTION COMMON
======================================================== */
.section-tag {
    display: inline-block;
    background: var(--soft-cream);
    color: var(--electric-orange);
    padding: 8px 20px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: clamp(11px, 1.1vw, 13px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 3px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 72px);
    color: var(--deep-navy);
    letter-spacing: clamp(1px, 0.3vw, 2px);
    line-height: 1;
}

/* ========================================================
   SERVICES
======================================================== */
.services-section {
    padding: var(--section-pad) 0;
    background: var(--pure-white);
}

.service-card {
    background: var(--soft-cream);
    border-radius: clamp(14px, 2.2vw, 28px);
    padding: clamp(24px, 3.5vw, 45px) clamp(18px, 2.5vw, 35px);
    text-align: center;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-fire);
    transform: scaleX(0);
    transition: transform 0.4s;
}

.service-card:hover {
    transform: translateY(-12px);
    background: var(--pure-white);
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.12);
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-icon {
    width: clamp(64px, 7.5vw, 100px);
    height: clamp(64px, 7.5vw, 100px);
    background: var(--gradient-fire);
    border-radius: clamp(14px, 1.8vw, 28px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto clamp(16px, 2.2vw, 28px);
    font-size: clamp(28px, 3.8vw, 48px);
    box-shadow: 0 15px 40px rgba(255, 107, 44, 0.3);
    transition: transform 0.4s;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: clamp(15px, 1.7vw, 22px);
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 10px;
}

.service-card p {
    color: var(--steel-gray);
    font-size: clamp(13px, 1.3vw, 15px);
    margin: 0;
}

/* ========================================================
   LADIES
======================================================== */
.ladies-section {
    padding: var(--section-pad) 0;
    background: linear-gradient(135deg, #fdf4ff 0%, #fce7f3 50%, #fff1f2 100%);
    position: relative;
    overflow: hidden;
}

.ladies-section::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: clamp(260px, 45vw, 600px);
    height: clamp(260px, 45vw, 600px);
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.ladies-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 64px);
    color: var(--deep-navy);
    letter-spacing: 2px;
    line-height: 1.05;
}

.ladies-title span {
    background: linear-gradient(135deg, #ec4899, #be185d);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.ladies-feature {
    display: flex;
    align-items: center;
    gap: clamp(10px, 1.8vw, 18px);
    padding: clamp(14px, 1.8vw, 24px);
    background: var(--pure-white);
    border-radius: clamp(12px, 1.8vw, 20px);
    box-shadow: 0 4px 25px rgba(0, 0, 0, 0.05);
    transition: all 0.4s;
    margin-bottom: clamp(10px, 1.4vw, 16px);
}

.ladies-feature:hover {
    transform: translateX(8px);
    box-shadow: 0 10px 40px rgba(236, 72, 153, 0.15);
}

.ladies-feature-icon {
    width: clamp(40px, 4.5vw, 56px);
    height: clamp(40px, 4.5vw, 56px);
    background: linear-gradient(135deg, #ec4899, #be185d);
    border-radius: clamp(8px, 1.3vw, 16px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.2vw, 28px);
    flex-shrink: 0;
}

.ladies-feature h3 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: clamp(14px, 1.5vw, 17px);
    color: var(--deep-navy);
    margin-bottom: 2px;
}

.ladies-feature p {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--steel-gray);
    margin: 0;
}

.ladies-cta-card {
    background: url('../../assets/img/mfdrivingcenter-gallery-1.jpg') center/cover;
    border-radius: clamp(14px, 2.2vw, 30px);
    padding: clamp(28px, 4.5vw, 60px) clamp(20px, 3.5vw, 60px);
    position: relative;
    overflow: hidden;
    text-align: center;
}

.ladies-cta-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(236 72 153/63%), rgb(190 24 93/48%));
}

.ladies-cta-card>* {
    position: relative;
    z-index: 2;
}

.ladies-cta-card h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.5vw, 42px);
    color: var(--pure-white);
    letter-spacing: 2px;
    margin-bottom: 12px;
    line-height: 1.1;
}

.ladies-cta-card p {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.6vw, 18px);
    margin-bottom: 24px;
}

/* ========================================================
   PACKAGES
======================================================== */
.packages-section {
    padding: var(--section-pad) 0;
    background: var(--soft-cream);
}

.package-card {
    background: var(--pure-white);
    border-radius: clamp(14px, 2.2vw, 28px);
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.06);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.package-card:hover {
    transform: translateY(-14px);
    box-shadow: 0 35px 80px rgba(0, 0, 0, 0.15);
}

.package-card.featured {
    border: 3px solid var(--electric-orange);
    position: relative;
}

/* badge — works with or without .featured */
.package-card .package-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--electric-orange);
    color: var(--pure-white);
    padding: 5px 14px;
    border-radius: 30px;
    font-family: var(--font-heading);
    font-size: clamp(10px, 1vw, 11px);
    font-weight: 700;
    z-index: 10;
    white-space: nowrap;
}

/* ── car image area ── */
.package-image {
    height: clamp(140px, 18vw, 210px);
    background: linear-gradient(180deg, #87898f 0%, #ffffff 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding: clamp(12px, 2vw, 28px);
}

.package-image img {
    max-height: 100%;
    width: auto;
    max-width: 100%;
    object-fit: contain;
    display: block;
    margin: auto;
}

/* emoji fallback when local image is missing */
.package-image .pkg-emoji {
    font-size: clamp(52px, 9vw, 88px);
    line-height: 1;
}

/* ── content area ── */
.package-content {
    padding: var(--card-pad);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.package-content h3 {
    font-family: var(--font-heading);
    font-size: clamp(16px, 1.8vw, 23px);
    font-weight: 800;
    color: var(--deep-navy);
    margin-bottom: 4px;
}

.package-type {
    color: var(--steel-gray);
    font-size: clamp(12px, 1.2vw, 14px);
    margin-bottom: clamp(12px, 1.8vw, 20px);
}

/* ── inner feature/price box ── */
.package-inner-box {
    border-radius: clamp(10px, 1.3vw, 16px);
    padding: clamp(14px, 1.8vw, 20px);
    margin-bottom: clamp(12px, 1.8vw, 20px);
    flex: 1;
    display: flex;
    flex-direction: column;
}

/* label row above features (PER DAY / SPECIAL 1 HOUR) */
.package-label-row {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: clamp(8px, 1.2vw, 12px);
}

.package-label-badge {
    display: inline-block;
    border-radius: 8px;
    padding: 4px 12px;
    font-family: var(--font-heading);
    font-size: clamp(10px, 1vw, 11px);
    font-weight: 700;
    letter-spacing: 1px;
    color: #fff;
    white-space: nowrap;
}

.package-label-text {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: clamp(12px, 1.4vw, 15px);
    color: var(--deep-navy);
}

.package-features {
    list-style: none;
    padding: 0;
    margin: 0 0 0 0;
    flex: 1;
}

.package-features li {
    padding: clamp(7px, 1.1vw, 12px) 0;
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--steel-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-slate);
}

.package-features li:last-child {
    border-bottom: none;
}

.package-features li i {
    color: var(--success-green);
    font-size: clamp(14px, 1.6vw, 18px);
    flex-shrink: 0;
}

.package-price {
    display: flex;
    align-items: baseline;
    gap: 4px;
    margin-top: auto;
    padding-top: clamp(10px, 1.4vw, 16px);
}

.package-price .currency {
    font-size: clamp(14px, 1.6vw, 18px);
    color: var(--steel-gray);
}

.package-price .amount {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.8vw, 52px);
    color: var(--electric-orange);
    letter-spacing: 2px;
}

.package-price .per-unit {
    font-size: clamp(12px, 1.2vw, 14px);
    color: var(--steel-gray);
    margin-left: 4px;
    align-self: flex-end;
    padding-bottom: 5px;
}

/* ========================================================
   ABOUT
======================================================== */
.about-section {
    padding: var(--section-pad) 0;
    background: var(--gradient-night);
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: clamp(220px, 38vw, 500px);
    height: clamp(220px, 38vw, 500px);
    background: radial-gradient(circle, rgba(255, 107, 44, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.about-title {
    font-family: var(--font-display);
    font-size: clamp(32px, 5.5vw, 72px);
    color: var(--pure-white);
    letter-spacing: 2px;
    line-height: 1.05;
}

.about-title span {
    color: var(--electric-orange);
}

.about-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: clamp(10px, 1.4vw, 18px) clamp(12px, 1.8vw, 22px);
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    color: var(--pure-white);
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
}

.about-feature-item i {
    width: 26px;
    height: 26px;
    background: var(--electric-orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    flex-shrink: 0;
}

.about-stat-card {
    background: var(--pure-white);
    border-radius: clamp(14px, 1.8vw, 24px);
    padding: clamp(20px, 3.2vw, 40px);
    text-align: center;
    height: 100%;
}

.about-stat-number {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    color: var(--electric-orange);
    letter-spacing: 2px;
    line-height: 1;
}

.about-stat-label {
    font-size: clamp(11px, 1.1vw, 13px);
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-top: 10px;
}

/* ========================================================
   TESTIMONIALS
======================================================== */
.testimonials-section {
    padding: var(--section-pad) 0;
    background: var(--midnight);
    position: relative;
    overflow: hidden;
}

.testimonials-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 60% 50% at 15% 20%, rgba(255, 107, 44, 0.07) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 85% 80%, rgba(255, 107, 44, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.testi-deco-quote {
    position: absolute;
    top: 40px;
    right: 6%;
    font-family: 'Playfair Display', serif;
    font-size: clamp(120px, 18vw, 280px);
    color: rgba(255, 107, 44, 0.04);
    line-height: 1;
    user-select: none;
    pointer-events: none;
    font-weight: 900;
}

.testi-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(11px, 1.1vw, 12px);
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--electric-orange);
    margin-bottom: 16px;
}

.testi-eyebrow::before,
.testi-eyebrow::after {
    content: '';
    display: block;
    width: 28px;
    height: 1.5px;
    background: var(--electric-orange);
}

.testi-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 4.5vw, 64px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 14px;
}

.testi-title span {
    color: var(--electric-orange);
    position: relative;
    display: inline-block;
}

.testi-title span::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--electric-orange), transparent);
}

.testi-sub {
    font-size: clamp(13px, 1.5vw, 17px);
    color: rgba(255, 255, 255, 0.5);
    max-width: 480px;
    line-height: 1.7;
    margin-bottom: clamp(32px, 5vw, 60px);
}

.testi-stats-strip {
    display: flex;
    gap: clamp(20px, 4vw, 40px);
    flex-wrap: wrap;
    margin-bottom: clamp(40px, 6vw, 70px);
    padding: clamp(18px, 2.5vw, 30px) clamp(20px, 3vw, 36px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 44, 0.18);
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.testi-stats-strip::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: var(--gradient-fire);
    border-radius: 4px 0 0 4px;
}

.testi-stat-item {
    flex: 1;
    min-width: 100px;
}

.testi-stat-number {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.8vw, 48px);
    font-weight: 900;
    color: var(--electric-orange);
    line-height: 1;
    margin-bottom: 5px;
}

.testi-stat-label {
    font-size: clamp(11px, 1.2vw, 13px);
    color: rgba(255, 255, 255, 0.5);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

/* carousel track */
.testi-cards-track-outer {
    overflow: hidden;
    border-radius: 20px;
}

.testi-cards-track {
    display: flex;
    gap: clamp(14px, 2vw, 24px);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
}

.testi-card {
    /* 3‑up on desktop, 2‑up on tablet, 1‑up on phone — handled in media queries */
    flex: 0 0 calc(33.333% - 16px);
    min-width: 0;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 44, 0.18);
    border-radius: 20px;
    padding: clamp(20px, 2.8vw, 36px);
    position: relative;
    transition: transform 0.3s, border-color 0.3s, box-shadow 0.3s;
    overflow: hidden;
}

.testi-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--gradient-fire);
    opacity: 0;
    transition: opacity 0.3s;
}

.testi-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 44, 0.4);
    box-shadow: 0 20px 50px rgba(255, 107, 44, 0.12);
}

.testi-card:hover::before {
    opacity: 1;
}

.testi-card::after {
    content: '';
    position: absolute;
    top: -60px;
    right: -60px;
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(255, 107, 44, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.testi-card.featured {
    background: linear-gradient(145deg, #1E1010, rgba(255, 255, 255, 0.05));
    border-color: rgba(255, 107, 44, 0.3);
}

.testi-card.featured::before {
    opacity: 1;
}

.testi-quote-icon {
    font-family: 'Playfair Display', serif;
    font-size: clamp(48px, 6vw, 64px);
    font-weight: 900;
    color: var(--electric-orange);
    line-height: 0.7;
    margin-bottom: 18px;
    display: block;
    opacity: 0.7;
}

.testi-text {
    font-size: clamp(13px, 1.4vw, 16px);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 24px;
    font-style: italic;
    font-weight: 300;
}

.testi-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 18px;
}

.testi-star {
    color: var(--neon-amber);
    font-size: 14px;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.testi-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--gradient-fire);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
    position: relative;
}

.testi-avatar::after {
    content: '';
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 2px solid rgba(255, 107, 44, 0.3);
}

.testi-author-name {
    font-size: clamp(13px, 1.3vw, 15px);
    font-weight: 500;
    color: #fff;
    margin-bottom: 2px;
}

.testi-author-meta {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.5);
    display: flex;
    align-items: center;
    gap: 6px;
}

.testi-author-meta .testi-dot {
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: var(--electric-orange);
    display: inline-block;
}

.testi-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: clamp(24px, 3vw, 40px);
    flex-wrap: wrap;
    gap: 16px;
}

.testi-dots {
    display: flex;
    gap: 8px;
}

.testi-dot-btn {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.15);
    cursor: pointer;
    transition: all 0.3s;
    padding: 0;
}

.testi-dot-btn.active {
    background: var(--electric-orange);
    width: 24px;
    border-radius: 4px;
    border-color: var(--electric-orange);
}

.testi-nav-btns {
    display: flex;
    gap: 12px;
}

.testi-nav-btn {
    width: 46px;
    height: 46px;
    min-width: 44px;
    min-height: 44px;
    /* tap target */
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.testi-nav-btn:hover {
    background: var(--electric-orange);
    border-color: var(--electric-orange);
    color: #fff;
    transform: scale(1.08);
}

.testi-trust-band {
    margin-top: clamp(40px, 6vw, 70px);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: clamp(18px, 4vw, 60px);
    flex-wrap: wrap;
    padding: clamp(18px, 2.5vw, 28px) clamp(20px, 3vw, 36px);
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 107, 44, 0.18);
    border-radius: 16px;
}

.testi-trust-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: clamp(12px, 1.3vw, 14px);
    color: rgba(255, 255, 255, 0.5);
}

.testi-trust-icon {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: rgba(255, 107, 44, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
}

.testi-trust-item strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
    display: block;
    font-size: clamp(12px, 1.3vw, 14px);
}

/* ========================================================
   GALLERY
======================================================== */
.gallery-section {
    padding: var(--section-pad) 0;
    background: var(--pure-white);
}

.gallery-item {
    border-radius: clamp(12px, 1.8vw, 24px);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    aspect-ratio: 1;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
}

.gallery-item:hover img {
    transform: scale(1.12);
}

.gallery-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(10, 15, 26, 0.9) 100%);
    opacity: 0;
    transition: opacity 0.4s;
}

.gallery-item:hover::after {
    opacity: 1;
}

/* ========================================================
   LICENSE
======================================================== */
.license-section {
    padding: var(--section-pad) 0;
    background: var(--soft-cream);
}

.license-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 4.5vw, 64px);
    color: var(--deep-navy);
    letter-spacing: 2px;
}

/* ========================================================
   CONTACT
======================================================== */
.contact-section {
    padding: var(--section-pad) 0;
    background: var(--pure-white);
}

.contact-title {
    font-family: var(--font-display);
    font-size: clamp(30px, 5.5vw, 72px);
    color: var(--deep-navy);
    letter-spacing: 2px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: clamp(12px, 1.8vw, 20px);
    padding: clamp(16px, 2.2vw, 28px) 0;
    border-bottom: 1px solid var(--light-slate);
}

.contact-item-icon {
    width: clamp(44px, 5.5vw, 65px);
    height: clamp(44px, 5.5vw, 65px);
    background: var(--gradient-fire);
    border-radius: clamp(10px, 1.4vw, 18px);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.2vw, 28px);
    flex-shrink: 0;
    box-shadow: 0 10px 35px rgba(255, 107, 44, 0.3);
    color: var(--pure-white);
}

.contact-item h4 {
    font-size: clamp(10px, 1vw, 12px);
    color: var(--steel-gray);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.contact-item p,
.contact-item a {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.5vw, 18px);
    font-weight: 600;
    color: var(--deep-navy);
    margin: 0;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-item a:hover {
    color: var(--electric-orange);
}

.contact-social a {
    width: clamp(44px, 5vw, 60px);
    height: clamp(44px, 5vw, 60px);
    background: var(--soft-cream);
    border-radius: clamp(10px, 1.4vw, 18px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: clamp(18px, 2.2vw, 26px);
    text-decoration: none;
    transition: all 0.4s;
    color: var(--deep-navy);
}

.contact-social a:hover {
    background: var(--gradient-fire);
    color: var(--pure-white);
    transform: translateY(-5px);
}

.contact-form-card {
    background: var(--soft-cream);
    border-radius: clamp(14px, 2.2vw, 30px);
    padding: var(--card-pad);
}

.contact-form-card h3 {
    font-family: var(--font-display);
    font-size: clamp(24px, 3.2vw, 36px);
    color: var(--deep-navy);
    letter-spacing: 2px;
    margin-bottom: clamp(18px, 2.8vw, 30px);
}

.form-control-custom,
.form-select-custom {
    width: 100%;
    padding: clamp(11px, 1.6vw, 18px) clamp(14px, 2.2vw, 24px);
    background: var(--pure-white);
    border: 2px solid transparent;
    border-radius: clamp(10px, 1.3vw, 16px);
    font-family: var(--font-body);
    font-size: clamp(13px, 1.3vw, 15px);
    color: var(--deep-navy);
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
    min-height: 44px;
    /* tap target */
}

.form-control-custom:focus,
.form-select-custom:focus {
    outline: none;
    border-color: var(--electric-orange);
    box-shadow: 0 0 0 4px rgba(255, 107, 44, 0.15);
}

.form-label-custom {
    font-family: var(--font-heading);
    font-size: clamp(12px, 1.2vw, 14px);
    font-weight: 600;
    color: var(--steel-gray);
    margin-bottom: 8px;
    display: block;
}

/* ========================================================
   CTA
======================================================== */
.cta-section {
    padding: clamp(48px, 7vw, 100px) 0;
    background: var(--gradient-fire);
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='%23ffffff' fill-opacity='0.1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(28px, 5.5vw, 72px);
    color: var(--pure-white);
    letter-spacing: clamp(1px, 0.4vw, 3px);
    line-height: 1.05;
}

.cta-section .btn-fire {
    background: var(--pure-white);
    color: var(--electric-orange);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
}

.cta-section .btn-fire:hover {
    background: var(--deep-navy);
    color: var(--pure-white);
}

/* ========================================================
   FOOTER
======================================================== */
.footer-section {
    background: var(--midnight);
    color: var(--pure-white);
    padding: clamp(48px, 7vw, 100px) 0 clamp(20px, 2.5vw, 40px);
}

.footer-brand h3 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.8vw, 32px);
    letter-spacing: 2px;
    margin-bottom: clamp(10px, 1.8vw, 20px);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.6);
    font-size: clamp(13px, 1.3vw, 15px);
    line-height: 1.9;
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-size: clamp(14px, 1.6vw, 18px);
    font-weight: 700;
    margin-bottom: clamp(14px, 1.8vw, 24px);
}

.footer-links ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: clamp(9px, 1.1vw, 14px);
}

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: clamp(13px, 1.3vw, 15px);
    transition: all 0.3s;
}

.footer-links a:hover {
    color: var(--electric-orange);
    padding-left: 6px;
}

.footer-social a {
    width: clamp(38px, 4vw, 50px);
    height: clamp(38px, 4vw, 50px);
    min-width: 44px;
    min-height: 44px;
    background: var(--glass-white);
    border-radius: clamp(10px, 1.1vw, 14px);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: clamp(15px, 1.8vw, 20px);
    transition: all 0.3s;
    text-decoration: none;
}

.footer-social a:hover {
    background: var(--electric-orange);
    transform: translateY(-4px);
}

.footer-location {
    background: var(--glass-white);
    border: 1px solid var(--glass-border);
    border-radius: clamp(10px, 1.6vw, 18px);
    padding: clamp(16px, 2.2vw, 26px);
}

.footer-location h5 {
    color: var(--electric-orange);
    font-family: var(--font-heading);
    font-size: clamp(13px, 1.4vw, 15px);
    font-weight: 700;
    margin-bottom: 8px;
}

.footer-location p {
    color: rgba(255, 255, 255, 0.7);
    font-size: clamp(12px, 1.2vw, 14px);
    margin: 0;
}

.footer-bottom {
    padding-top: clamp(20px, 2.8vw, 40px);
    border-top: 1px solid var(--glass-border);
    margin-top: clamp(32px, 4.5vw, 60px);
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.4);
    font-size: clamp(12px, 1.2vw, 14px);
    margin: 0;
}

/* ========================================================
   WHATSAPP FLOAT
======================================================== */
.whatsapp-btn {
    position: fixed;
    bottom: clamp(14px, 2.5vw, 24px);
    right: clamp(14px, 2.5vw, 24px);
    z-index: 999;
    width: clamp(48px, 5.5vw, 60px);
    height: clamp(48px, 5.5vw, 60px);
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pure-white);
    font-size: clamp(22px, 2.8vw, 32px);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.4);
    transition: all 0.3s;
    text-decoration: none;
}

.whatsapp-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 10px 40px rgba(37, 211, 102, 0.5);
    color: var(--pure-white);
}

/* ========================================================
   SCROLLBAR
======================================================== */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--soft-cream);
}

::-webkit-scrollbar-thumb {
    background: var(--gradient-fire);
    border-radius: 5px;
}

/* ================================================================
   RESPONSIVE BREAKPOINTS
   Order: largest → smallest (desktop-first overrides)
================================================================ */

/* ── 1400px+ (XXL) ── */
@media (min-width: 1400px) {
    .hero-image-container img {
        height: 580px;
    }

    .testi-card {
        flex: 0 0 calc(33.333% - 16px);
    }
}

/* ── 1200px–1399px (XL) ── */
@media (min-width: 1200px) and (max-width: 1399.98px) {
    .hero-image-container img {
        height: 520px;
    }
}

/* ── 992px–1199px (LG) ── */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .floating-card.discount {
        top: -10px;
        right: -10px;
    }

    .floating-card.vehicles {
        left: -20px;
    }

    .testi-card {
        flex: 0 0 calc(33.333% - 16px);
    }

    .hero-image-container img {
        height: 460px;
    }
}

/* ── ≤991px — tablets & mobile ── */
@media (max-width: 991.98px) {

    /* hero */
    .floating-card {
        display: none;
    }

    .hero-section {
        min-height: unset;
        padding: 52px 0 36px;
    }

    .hero-title {
        text-align: center;
    }

    .hero-subtitle {
        max-width: 100%;
        text-align: center;
        margin: 0 auto;
    }

    .hero-badge {
        margin: 0 auto 16px;
        display: inline-flex;
    }

    .hero-stats {
        margin-top: 28px;
        padding-top: 24px;
    }

    .hero-image-container img {
        height: clamp(220px, 42vw, 400px);
    }

    /* centre hero buttons */
    .hero-section .d-flex.flex-wrap {
        justify-content: center;
    }

    /* ladies CTA spacing */
    .ladies-cta-card {
        margin-top: 20px;
    }

    /* about — centre heading & feature grid */
    .about-title {
        text-align: center;
        justify-content: center;
    }

    .about-section .btn-fire {
        display: inline-flex;
    }

    /* testimonials — 2-up */
    .testi-card {
        flex: 0 0 calc(50% - 12px);
    }
}

/* ── 768px–991px (tablets only) ── */
@media (min-width: 768px) and (max-width: 991.98px) {

    /* hero image above text on tablet */
    .hero-col-image {
        order: -1;
    }

    /* 2-col service/package grids look fine with Bootstrap col-sm-6 */
}

/* ── ≤767px (mobile landscape + portrait) ── */
@media (max-width: 767.98px) {

    /* top bar: hide address row, centre socials */
    .top-bar .top-contact {
        display: none !important;
    }

    .top-bar .d-flex.gap-4 {
        display: none !important;
    }

    .top-bar .d-flex.justify-content-end {
        justify-content: center !important;
    }

    .top-bar {
        text-align: center;
    }

    /* section titles */
    .section-title,
    .about-title,
    .contact-title,
    .license-title,
    .cta-title {
        text-align: center;
    }

    /* CTA buttons wrap nicely */
    .cta-section .d-flex {
        flex-wrap: wrap;
        justify-content: center;
    }

    /* packages inner padding */
    .package-content {
        padding: 18px;
    }

    /* contact form */
    .contact-form-card {
        padding: 22px 18px;
    }

    /* about stat cards */
    .about-stat-card {
        padding: 20px;
    }

    /* gallery corners */
    .gallery-item {
        border-radius: 12px;
    }

    /* footer columns spacing */
    .footer-section .col-lg-2,
    .footer-section .col-lg-3 {
        margin-bottom: 14px;
    }

    /* testimonials sub text */
    .testi-sub {
        margin-bottom: 32px;
    }

    /* trust band */
    .testi-trust-band {
        gap: 18px;
        padding: 18px;
    }
}

/* ── ≤575px (phones) ── */
@media (max-width: 575.98px) {

    /* navbar logo */
    .logo-mark {
        width: 42px;
        height: 42px;
        border-radius: 10px;
    }

    .logo-mark span {
        font-size: 17px;
    }

    .logo-text h1 {
        font-size: 15px;
    }

    .logo-text span {
        font-size: 8px;
        letter-spacing: 2px;
    }

    /* hero */
    .hero-title {
        font-size: clamp(36px, 11vw, 52px);
    }

    .stat-number {
        font-size: clamp(28px, 8.5vw, 42px);
    }

    .stat-label {
        font-size: 10px;
        letter-spacing: 1px;
    }

    .hero-stats .row {
        gap: 0;
    }

    /* buttons */
    .btn-fire,
    .btn-outline-light-custom {
        font-size: 12px;
        padding: 11px 18px;
    }

    .d-flex.flex-wrap.gap-3 {
        gap: 10px !important;
    }

    /* service icons */
    .service-icon {
        width: 64px;
        height: 64px;
        font-size: 28px;
    }

    .service-card {
        padding: 22px 16px;
    }

    /* ladies */
    .ladies-feature {
        padding: 12px;
        gap: 10px;
    }

    .ladies-cta-card {
        padding: 26px 18px;
    }

    .ladies-cta-card h3 {
        font-size: 24px;
    }

    /* packages */
    .package-price .amount {
        font-size: clamp(28px, 8vw, 38px);
    }

    .package-content h3 {
        font-size: 16px;
    }

    .package-content {
        padding: 16px;
    }

    /* testimonials — full width */
    .testi-card {
        flex: 0 0 100%;
    }

    .testi-stats-strip {
        gap: 16px;
        padding: 16px;
    }

    .testi-stat-item {
        min-width: 80px;
    }

    /* contact */
    .contact-social {
        flex-wrap: wrap;
    }

    .contact-form-card {
        padding: 18px 14px;
    }

    .contact-form-card h3 {
        font-size: 24px;
    }

    /* about stat */
    .about-stat-number {
        font-size: 36px;
    }

    /* license inner dark card */
    .license-section [class*="col"]>div[style] {
        padding: 24px 16px !important;
    }

    /* CTA */
    .cta-title {
        font-size: 28px;
    }

    .cta-section p {
        font-size: 14px;
    }

    .cta-section .d-flex {
        flex-direction: column;
        align-items: center;
    }

    .cta-section .btn-fire {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* footer */
    .footer-brand h3 {
        font-size: 20px;
    }

    .footer-links h4 {
        font-size: 14px;
    }
}

/* ── ≤400px (small / portrait phones) ── */
@media (max-width: 399.98px) {
    .hero-title {
        font-size: 34px;
    }

    .section-title {
        font-size: 30px;
    }

    .logo-text h1 {
        font-size: 13px;
    }

    /* stack stat numbers 2×2 */
    .hero-stats .col-4 {
        flex: 0 0 50%;
        max-width: 50%;
    }

    /* testimonial controls stack */
    .testi-controls {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ================================================================
   NAVBAR MOBILE COLLAPSE PANEL
================================================================ */
@media (max-width: 991.98px) {

    .navbar-collapse.show,
    .navbar-collapse.collapsing {
        background: var(--pure-white);
        padding: 14px 18px;
        border-radius: 14px;
        margin-top: 10px;
        box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
    }

    .nav-link-custom {
        padding: 12px 14px !important;
    }

    .nav-link-custom::after {
        left: 14px;
        right: 14px;
    }

    .navbar-nav .btn-fire {
        margin: 8px 14px;
        display: flex;
        justify-content: center;
    }
}

/* ================================================================
   TOUCH DEVICE IMPROVEMENTS
================================================================ */
@media (hover: none) and (pointer: coarse) {

    /* disable hover lift on touch — prevents stuck-transform bug */
    .service-card:hover,
    .package-card:hover,
    .ladies-feature:hover,
    .testi-card:hover,
    .gallery-item:hover img {
        transform: none;
    }

    .btn-fire:hover {
        transform: none;
    }

    /* minimum tap sizes */
    .nav-link-custom {
        padding: 14px 14px !important;
    }

    .social-icon,
    .footer-social a,
    .contact-social a,
    .testi-nav-btn {
        min-width: 44px;
        min-height: 44px;
    }
}

/* ================================================================
   PRINT
================================================================ */
@media print {

    .announcement-bar,
    .top-bar,
    .whatsapp-btn,
    .cta-section,
    .testi-cards-track-outer {
        display: none;
    }

    .hero-section {
        min-height: unset;
        padding: 20px 0;
        background: white !important;
    }

    .hero-title,
    .hero-subtitle {
        color: #000 !important;
    }

    .hero-title .highlight {
        -webkit-text-fill-color: var(--electric-orange);
    }

    body {
        background: white;
        color: #000;
    }
}

/* ================================================================
   ACCESSIBILITY
================================================================ */
@media (prefers-reduced-motion: reduce) {

    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    .floating-card {
        animation: none;
    }

    .road-line {
        animation: none;
    }

    .ticker-track {
        animation: none;
    }
}

/* keyboard focus ring */
:focus-visible {
    outline: 2px solid var(--electric-orange);
    outline-offset: 3px;
    border-radius: 4px;
}