/* DESIGN SYSTEM VARIABLES - LUXURY LIGHT THEME */
:root {
    /* Colors */
    --color-bg: #FFFFFF;
    --color-bg-secondary: #F8F9FA;
    --color-card-bg: rgba(255, 255, 255, 0.8);
    --color-card-bg-hover: rgba(255, 255, 255, 0.95);
    --color-card-inner: #F1F3F5;
    --color-gold: #D4AF37;
    --color-gold-hover: #C59F28;
    --color-gold-dark: #AA7C11;
    --color-text-main: #0B0B0B;
    --color-text-muted: #555555;
    --color-border: rgba(0, 0, 0, 0.08);
    --color-border-gold: rgba(212, 175, 55, 0.3);
    --color-border-gold-hover: rgba(212, 175, 55, 0.7);
    
    /* Gradients */
    --gradient-gold: linear-gradient(135deg, #F3E5AB 0%, #D4AF37 50%, #AA7C11 100%);
    --gradient-gold-hover: linear-gradient(135deg, #FFFFFF 0%, #F3E5AB 50%, #D4AF37 100%);
    --gradient-light-radial: radial-gradient(circle at 80% 20%, rgba(212, 175, 55, 0.06) 0%, rgba(255, 255, 255, 0) 60%),
                             radial-gradient(circle at 10% 80%, rgba(212, 175, 55, 0.04) 0%, rgba(255, 255, 255, 0) 50%);
    
    /* Shadows */
    --shadow-premium: 0 20px 40px rgba(0, 0, 0, 0.05);
    --shadow-gold: 0 10px 30px rgba(212, 175, 55, 0.08);
    --shadow-gold-hover: 0 15px 35px rgba(212, 175, 55, 0.15);
    --shadow-glass: 0 8px 32px 0 rgba(0, 0, 0, 0.04);

    /* Fonts */
    --font-heading: 'Poppins', sans-serif;
    --font-body: 'Inter', sans-serif;

    /* Spacing & Borders */
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --radius-full: 9999px;
    --transition-smooth: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --transition-bounce: all 0.6s cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* RESET & BASE RULES */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--color-bg);
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg);
    color: var(--color-text-main);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg);
}
::-webkit-scrollbar-thumb {
    background: #E9ECEF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-gold);
}

/* TYPOGRAPHY */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: var(--color-text-main);
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    color: var(--color-text-muted);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 40px;
}

/* REUSABLE CLASSES */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-tag {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    color: var(--color-gold-hover);
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 15px;
}

.section-title {
    font-size: 2.8rem;
    margin-bottom: 20px;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
}

.gold-gradient-text {
    background: var(--gradient-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

/* Glassmorphism Panel base */
.glass-panel {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-glass);
    border-radius: var(--radius-lg);
    transition: var(--transition-smooth);
}

.glass-panel-inner {
    background: rgba(248, 249, 250, 0.9);
    border: 1px solid rgba(0, 0, 0, 0.04);
    border-radius: var(--radius-md);
}

/* BUTTON SYSTEM */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 56px;
    padding: 0 38px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 18px; /* pill shape with soft corners */
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.4s ease, border-color 0.4s ease, background 0.4s ease;
}

.btn span {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    gap: 8px;
}

/* Primary Button - Metallic Gold Gradient */
.btn-gold {
    background: linear-gradient(135deg, #D4AF37 0%, #F4D76A 50%, #D4AF37 100%);
    color: #000000 !important;
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: goldBorderGlow 3s infinite ease-in-out;
}

.btn-gold:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.6);
}

.btn-gold:active {
    transform: translateY(-1px) scale(1.02);
}

/* Secondary Button - Dark Glass with Gold Border */
.btn-outline, .btn-gold-outline {
    background: rgba(18, 18, 18, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.btn-outline:hover, .btn-gold-outline:hover {
    transform: translateY(-4px) scale(1.05);
    border-color: #F4D76A;
    background: rgba(18, 18, 18, 0.95);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.4);
}

.btn-outline:active, .btn-gold-outline:active {
    transform: translateY(-1px) scale(1.02);
}

/* Small Button Variant */
.btn-small {
    height: 46px;
    padding: 0 24px;
    font-size: 0.8rem;
    border-radius: 14px;
}

/* WhatsApp Brand Variant */
.btn-whatsapp {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: #FFFFFF !important;
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.btn-whatsapp:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
}

.btn-whatsapp:active {
    transform: translateY(-1px) scale(1.02);
}

/* Icons alignments */
.icon-left {
    margin-right: 8px;
    width: 18px;
    height: 18px;
}

.icon-right {
    margin-left: 8px;
    width: 18px;
    height: 18px;
}

/* GLOSSY SHEEN SHIMMER EFFECT */
.sheen-effect::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 50%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.4) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    z-index: 3;
    animation: infiniteSheen 5s infinite ease-in-out;
}

/* Pulse Glow Keyframes */
@keyframes goldBorderGlow {
    0% { box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 0 0 0px rgba(212, 175, 55, 0.2); }
    50% { box-shadow: 0 10px 25px rgba(212, 175, 55, 0.5), 0 0 0 6px rgba(212, 175, 55, 0); }
    100% { box-shadow: 0 6px 20px rgba(212, 175, 55, 0.3), 0 0 0 0px rgba(212, 175, 55, 0.2); }
}

@keyframes infiniteSheen {
    0% { left: -150%; }
    25% { left: 150%; }
    100% { left: 150%; }
}



/* PRELOADER SCREEN */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: var(--color-bg);
    z-index: 99999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 1;
    transition: opacity 0.8s ease;
}

.preloader.fade-out {
    opacity: 0;
    pointer-events: none;
}

.preloader-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.preloader-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 30px;
}

.preloader-logo-img {
    height: 150px;
    width: auto;
    object-fit: contain;
    margin-bottom: 30px;
    animation: logoPulse 1.5s ease-in-out infinite alternate;
}

@keyframes logoPulse {
    from { opacity: 0.7; transform: scale(0.97); }
    to   { opacity: 1;   transform: scale(1.03); }
}

.loader-track {
    width: 200px;
    height: 2px;
    background: #E9ECEF;
    border-radius: var(--radius-full);
    overflow: hidden;
}

.loader-bar {
    width: 0%;
    height: 100%;
    background: var(--gradient-gold);
    animation: loaderProgress 1.5s ease-in-out forwards;
}

@keyframes loaderProgress {
    0% { width: 0%; }
    100% { width: 100%; }
}

/* STICKY HEADER */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100px;
    z-index: 1000;
    transition: var(--transition-smooth);
    /* Dark gradient so text is readable over hero video */
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.0) 100%
    );
}

.header.scrolled {
    height: 82px;
    background: rgba(255, 255, 255, 0.96) !important;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    box-shadow: 0 4px 30px rgba(0,0,0,0.06);
}

.header-container {
    max-width: 1500px;
    height: 100%;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

/* Header logo images */
.logo-img {
    height: 90px;
    width: auto;
    display: block;
    object-fit: contain;
    transition: height 0.3s ease, opacity 0.3s ease;
}

/* Scrolled logo height adjust to fit in the shrunken header */
.header.scrolled .logo-img {
    height: 70px;
}

/* On transparent header — show white logo, hide black */
.logo-white-img { display: block; }
.logo-black-img  { display: none; }

/* When header scrolls (white bg) — swap to black logo */
.header.scrolled .logo-white-img { display: none; }
.header.scrolled .logo-black-img  { display: block; }

.nav-menu {
    display: flex;
    gap: 22px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.88);
    letter-spacing: 0.03em;
    position: relative;
    padding: 8px 0;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
    color: #FFFFFF;
}

/* When header is scrolled — switch to dark nav text */
.header.scrolled .nav-link {
    color: var(--color-text-muted);
}

.header.scrolled .nav-link:hover,
.header.scrolled .nav-link.active {
    color: var(--color-text-main);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0%;
    height: 2px;
    background: var(--gradient-gold);
    transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.phone-btn {
    display: flex;
    align-items: center;
    gap: 6px;
    font-weight: 600;
    font-size: 0.80rem;
    color: rgba(255, 255, 255, 0.9);
    transition: color 0.3s ease;
    white-space: nowrap;
}

.phone-btn:hover {
    color: var(--color-gold);
}

.header.scrolled .phone-btn {
    color: var(--color-text-main);
}

.header.scrolled .phone-btn:hover {
    color: var(--color-gold-hover);
}

.icon-small {
    width: 16px;
    height: 16px;
}

/* Header context — slightly compact btn */
.header .btn {
    height: 42px;
    padding: 0 20px;
    font-size: 0.77rem;
    border-radius: 12px;
    white-space: nowrap;
}

/* Full-width button utility */
.w-full {
    width: 100%;
}

/* RIPPLE EFFECT */
.ripple {
    position: absolute;
    border-radius: 50%;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.45);
    transform: scale(0);
    animation: rippleAnim 0.6s linear;
    pointer-events: none;
    z-index: 5;
}

@keyframes rippleAnim {
    to {
        transform: scale(60);
        opacity: 0;
    }
}

/* HAMBURGER TOGGLE */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1100;
}

.menu-toggle .bar {
    width: 25px;
    height: 2px;
    background: var(--color-text-main);
    transition: var(--transition-smooth);
}

/* MOBILE NAV OVERLAY */
.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    background: #ffffff;
    z-index: 999;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
    padding: 95px 20px 40px;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    transform: translateY(-100%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 10px 40px rgba(0,0,0,0.12);
}

.mobile-nav.active {
    transform: translateY(0);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    margin-bottom: 24px;
    width: 100%;
}

.mobile-link {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #1f2937;
    letter-spacing: 0.05em;
    padding: 6px 12px;
    transition: color 0.2s ease;
    text-align: center;
}

.mobile-link:hover,
.mobile-link.active {
    color: var(--color-gold);
}

.mobile-nav-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    width: 100%;
    max-width: 340px;
}

.mobile-phone-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-weight: 600;
    font-size: 0.92rem;
    color: #1f2937;
    width: 100%;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    transition: all 0.2s ease;
}

/* HERO SECTION */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 680px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

/* FULL-BLEED VIDEO BACKGROUND */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 35%;
    z-index: 0;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.dark-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.20) 100%
    );
    z-index: 1;
}

.ambient-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0) 70%);
    bottom: -10%;
    left: 30%;
    filter: blur(60px);
    z-index: 2;
}

.hero-container {
    position: relative;
    z-index: 3;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    padding-top: 100px; /* account for sticky header */
    display: flex;
    flex-direction: column;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.hero-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    max-width: 640px;
}

.hero-tag {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.45em;
    color: var(--color-gold);
    margin-bottom: 28px;
    text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.hero-title {
    font-size: 3.5rem;
    line-height: 1.15;
    margin-bottom: 28px;
    color: #FFFFFF;
    text-shadow: 0 4px 20px rgba(0,0,0,0.4);
}

.hero-subtitle {
    font-size: 1.15rem;
    font-weight: 300;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 560px;
    color: rgba(255, 255, 255, 0.85);
}

.hero-bullets {
    display: grid;
    grid-template-columns: repeat(3, auto);
    gap: 28px;
    margin-bottom: 48px;
    max-width: 600px;
    width: 100%;
}

.bullet-item {
    display: flex;
    align-items: center;
    gap: 8px;
}

.bullet-icon {
    width: 20px;
    height: 20px;
    border-radius: var(--radius-full);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold);
}

.bullet-icon i {
    width: 10px;
    height: 10px;
}

.bullet-text {
    font-size: 0.9rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.85);
}

.hero-actions {
    display: flex;
    gap: 16px;
}



/* HERO BADGES SIDEBAR */
.hero-badges-sidebar {
    position: absolute;
    right: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: flex-end;
    z-index: 4;
}

/* FLOATING GLASS BADGES */
.floating-badge {
    position: relative;
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-md);
    padding: 12px 20px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
    z-index: 4;
    display: flex;
    align-items: center;
    gap: 10px;
    transition: var(--transition-bounce);
    color: #FFFFFF;
}

.floating-badge:hover {
    transform: translateY(-3px);
    border-color: var(--color-gold);
    background: rgba(255, 255, 255, 0.12);
}

.badge-price {
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
    border-left: 2px solid var(--color-gold);
    min-width: 150px;
}

.badge-glow {
    position: absolute;
    width: 40px;
    height: 40px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.15) 0%, rgba(0,0,0,0) 70%);
    top: -10px;
    right: -10px;
    pointer-events: none;
}

.badge-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255,255,255,0.6);
}

.badge-val {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: #FFFFFF;
    line-height: 1;
}

.badge-val small {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--color-gold);
}

.badge-insurance {
    color: #FFFFFF;
    min-width: 180px;
}

.badge-insurance span, .badge-terms span {
    font-size: 0.8rem;
    font-weight: 500;
}

.badge-insurance i {
    color: var(--color-gold);
    width: 16px;
    height: 16px;
}

.badge-terms {
    color: #FFFFFF;
    min-width: 190px;
}

.badge-terms i {
    color: var(--color-gold);
    width: 16px;
    height: 16px;
}

/* TRUST SECTION */
.trust-section {
    padding: 100px 0;
    position: relative;
    background: var(--color-bg-secondary);
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.trust-card {
    padding: 40px 30px;
    text-align: left;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold-hover);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
}

.trust-icon-box {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: rgba(212, 175, 55, 0.05);
    border: 1px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-dark);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.trust-card:hover .trust-icon-box {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
    transform: scale(1.05);
}

.trust-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.trust-card-desc {
    font-size: 0.9rem;
    line-height: 1.5;
}

/* RENTAL PACKAGES SECTION */
.packages-section {
    padding: 120px 0;
    background: #f4f4f6;
}

/* Ensure inner content sits above any stacking contexts */
.packages-section > .container {
    position: relative;
    z-index: 1;
}


.packages-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    max-width: 1100px;
    margin-left: auto;
    margin-right: auto;
}

.package-card {
    padding: 50px 40px;
    display: flex;
    flex-direction: column;
    position: relative;
    border: 1px solid var(--color-border);
}

.package-card.featured {
    border-color: var(--color-border-gold-hover);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.05);
}

.package-tag {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--gradient-gold);
    color: #000000;
    padding: 6px 16px;
    font-family: var(--font-heading);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    border-radius: var(--radius-full);
}

.package-header {
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.package-name {
    font-size: 1.8rem;
    margin-bottom: 10px;
    letter-spacing: 0.05em;
}

.badge-deposit {
    display: inline-block;
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    background: rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    font-size: 0.75rem;
    color: var(--color-gold-dark);
    font-weight: 600;
}

.package-price-row {
    margin-top: 24px;
    display: flex;
    align-items: baseline;
    gap: 8px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 800;
    color: var(--color-text-main);
    line-height: 1;
}

.price-unit {
    font-size: 0.95rem;
    color: var(--color-text-muted);
}

/* RATE CALCULATOR SELECTOR CARDS */
.package-rates {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.rate-item {
    padding: 16px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: rgba(0,0,0,0.01);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.rate-item:hover, .rate-item.active {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.03);
}

.rate-item.active {
    border-width: 2px;
    padding: 15px 19px; /* adjust for border expansion */
}

.rate-label-box {
    display: flex;
    flex-direction: column;
}

.rate-duration {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
}

.rate-note {
    font-size: 0.7rem;
    color: var(--color-gold-hover);
    font-weight: 600;
    text-transform: uppercase;
}

.rate-price-box {
    text-align: right;
    display: flex;
    flex-direction: column;
}

.rate-w-price {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.rate-w-price small {
    font-size: 0.75rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.rate-t-price {
    font-size: 0.75rem;
    color: var(--color-text-muted);
}

.package-features {
    list-style: none;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.package-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9rem;
}

.package-features li i {
    width: 18px;
    height: 18px;
    color: var(--color-gold-hover);
}

.text-muted {
    color: var(--color-text-muted);
}

.italic {
    font-style: italic;
}

.w-full {
    width: 100%;
}

/* FEATURED FLEET (CAR GRID) */
.cars-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    border-bottom: 2px solid #000000;
}

/* CARS CAROUSEL */
.cars-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    padding: 0 60px; /* space for absolute floating arrows */
}

/* This inner div clips the sliding track */
.cars-track-outer {
    width: 100%;
    overflow: hidden;
    border-radius: 0;
}

.cars-track {
    display: flex;
    gap: 28px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.car-card {
    flex: 0 0 calc((100% - 56px) / 3); /* exactly 3 visible */
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border: 1px solid var(--color-border);
}

.car-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.07);
}

.car-image-container {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: #ffffff;
}

.car-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.car-card:hover .car-img {
    transform: scale(1.07);
}

/* Carousel Arrow Buttons */
.carousel-arrow {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #FFFFFF;
    border: 1.5px solid rgba(212, 175, 55, 0.5);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.12);
    transition: all 0.3s ease;
}

.carousel-arrow i {
    width: 22px;
    height: 22px;
}

.carousel-arrow:hover {
    background: var(--color-gold);
    border-color: var(--color-gold);
    color: #000000;
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.4);
}

.cars-carousel-wrapper .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.cars-carousel-wrapper .carousel-prev {
    left: 0;
}

.cars-carousel-wrapper .carousel-next {
    right: 0;
}

/* Dot Indicators */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 36px;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--color-border);
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    width: 28px;
    border-radius: 4px;
    background: var(--color-gold);
}

.car-year {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    backdrop-filter: blur(10px);
    padding: 4px 12px;
    border-radius: var(--radius-sm);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold-hover);
}

.car-details {
    padding: 30px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.car-name {
    font-size: 1.4rem;
    margin-bottom: 15px;
    text-transform: uppercase;
}

.car-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 24px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--color-border);
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.meta-item i {
    width: 16px;
    height: 16px;
}

.car-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.car-price-box {
    display: flex;
    flex-direction: column;
}

.price-lbl {
    font-size: 0.7rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.car-price-box .price-val {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.car-price-box .price-val small {
    font-size: 0.75rem;
    color: var(--color-gold-hover);
}

/* WHY CHOOSE US */
.why-us-section {
    padding: 120px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.why-us-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

.why-us-col {
    display: flex;
    flex-direction: column;
}

.why-us-col-left {
    text-align: right;
    align-items: flex-end;
}

.why-us-col-right {
    text-align: left;
    align-items: flex-start;
}

.why-us-col-center {
    align-items: center;
    justify-content: center;
}

/* Feature Item Styling */
.why-feature-item {
    position: relative;
    padding-bottom: 35px;
    margin-bottom: 35px;
    width: 100%;
}

.why-us-col-left .why-feature-item:first-child,
.why-us-col-right .why-feature-item:first-child {
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.why-feature-header {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 14px;
}

.why-us-col-left .why-feature-header {
    flex-direction: row-reverse;
}

.why-feature-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1.5px solid rgba(212, 175, 55, 0.4);
    color: var(--color-text-main); /* Dark charcoal/black icon */
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--transition-smooth);
}

.why-feature-item:hover .why-feature-icon {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.why-feature-icon i {
    width: 18px;
    height: 18px;
}

.why-feature-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0;
}

.why-feature-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
    margin: 0;
    max-width: 320px;
}

/* 3D Capsule / Popout Image styling */
.why-3d-wrapper {
    position: relative;
    width: 100%;
    max-width: 340px;
    display: flex;
    justify-content: center;
    align-items: flex-end;
    padding-bottom: 30px; /* space for overlapping car at bottom */
}

.why-oval-bg {
    width: 290px;
    height: 450px; /* Made capsule taller */
    border-radius: 145px; /* Capsule shape */
    overflow: hidden;
    position: relative;
    border: 5px solid #FFFFFF;
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.08);
    background: #F4F4F4;
    transition: transform 0.5s ease;
}

.why-3d-wrapper:hover .why-oval-bg {
    transform: translateY(-5px);
}

.why-oval-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.why-car-overlay {
    position: absolute;
    width: 125%; /* overlay breaks the boundaries of the oval */
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    pointer-events: none;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

.why-3d-wrapper:hover .why-car-overlay {
    transform: translateX(-50%) translateY(-10px) scale(1.04);
}

.why-car-img-overlay {
    width: 100%;
    height: auto;
    filter: drop-shadow(0 15px 25px rgba(0, 0, 0, 0.22));
}

/* HOW IT WORKS TIMELINE */
.how-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.timeline-container {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    position: relative;
}

.timeline-progress {
    position: absolute;
    top: 40px;
    left: 10%;
    width: 80%;
    height: 2px;
    background: var(--color-border);
    z-index: 1;
}

.timeline-step {
    text-align: center;
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.step-num-box {
    width: 80px;
    height: 80px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 2px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.step-num {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-muted);
}

.step-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2) 0%, rgba(0,0,0,0) 70%);
    opacity: 0;
    transition: var(--transition-smooth);
}

.timeline-step:hover .step-num-box {
    border-color: var(--color-gold);
    transform: scale(1.05);
}

.timeline-step:hover .step-num {
    color: var(--color-gold-hover);
}

.timeline-step:hover .step-glow {
    opacity: 1;
}

.step-title {
    font-size: 1.2rem;
    margin-bottom: 12px;
    text-transform: uppercase;
}

.step-desc {
    font-size: 0.85rem;
    line-height: 1.5;
    max-width: 220px;
}

/* REQUIRED DOCUMENTS */
.documents-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.docs-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 24px;
    margin-top: 60px;
}

.doc-card {
    padding: 30px 20px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
    width: 220px;
    flex-shrink: 0;
}

.doc-icon {
    width: 54px;
    height: 54px;
    border-radius: var(--radius-full);
    background: rgba(0,0,0,0.01);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-hover);
    margin-bottom: 20px;
}

.doc-card:hover {
    border-color: var(--color-border-gold);
    background: rgba(212, 175, 55, 0.01);
}

.doc-title {
    font-size: 1.05rem;
    margin-bottom: 10px;
    text-transform: uppercase;
}

.doc-desc {
    font-size: 0.8rem;
    line-height: 1.4;
}

.badge-optional {
    display: inline-block;
    padding: 2px 8px;
    background: rgba(0,0,0,0.03);
    border: 1px solid var(--color-border);
    font-size: 0.65rem;
    color: var(--color-text-main);
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    font-weight: 500;
}

/* TRUST CAR BUYING EXPERIENCE SECTION */
.trust-experience-section {
    padding: 100px 0;
    background: var(--color-bg);
    position: relative;
    overflow: hidden;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 60px;
    align-items: center;
}

.trust-image-col {
    position: relative;
}

.trust-image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-premium), 0 30px 60px rgba(0, 0, 0, 0.1);
}

.trust-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 4 / 3;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.trust-image-wrapper:hover img {
    transform: scale(1.04);
}

.trust-deco-bg {
    position: absolute;
    z-index: -1;
    top: 20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--color-gold);
    border-radius: var(--radius-lg);
    opacity: 0.25;
    pointer-events: none;
    transition: transform 0.5s ease;
}

.trust-image-col:hover .trust-deco-bg {
    transform: translate(8px, -8px);
}

.trust-content-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.trust-tag {
    color: var(--color-gold);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 16px;
}

.trust-heading {
    color: var(--color-text-main);
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
    font-family: var(--font-heading);
}

.trust-description {
    color: var(--color-text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
    margin-bottom: 36px;
    font-family: var(--font-body);
}

.trust-features-list {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px 32px;
    margin-bottom: 44px;
    width: 100%;
}

.trust-feature-item {
    display: flex;
    align-items: center;
    gap: 14px;
}

.trust-feature-icon {
    color: var(--color-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.08);
    width: 38px;
    height: 38px;
    border-radius: 50%;
    transition: background 0.3s, color 0.3s, transform 0.3s;
}

.trust-feature-item:hover .trust-feature-icon {
    background: var(--color-gold);
    color: #FFFFFF;
    transform: scale(1.1);
}

.trust-feature-text {
    font-weight: 600;
    color: var(--color-text-main);
    font-size: 0.95rem;
    font-family: var(--font-body);
}

.trust-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.trust-actions .btn {
    padding: 15px 32px;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
}

@media (max-width: 1024px) {
    .trust-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    .trust-experience-section {
        padding: 80px 0;
    }
    .trust-heading {
        font-size: 2.2rem;
    }
}

@media (max-width: 640px) {
    .trust-features-list {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .trust-experience-section {
        padding: 60px 0;
    }
    .trust-heading {
        font-size: 1.8rem;
    }
    .trust-actions {
        width: 100%;
        flex-direction: column;
    }
    .trust-actions .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
}
/* ──────────────────────────────────────────────────────── */

/* ONLINE APPLICATION SECTION & WIZARD FORM */

.application-section {
    padding: 120px 0;
    position: relative;
    background-image: url('assets/Usa Road.jpeg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    isolation: isolate;
}

#inquiry-section {
    background-image: url('assets/Used%20Cars%20images/Car%20Sale%20apply%20bg.jfif');
}

/* White overlay for the application section */
.application-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255, 255, 255, 0.75);
    z-index: 0;
}

.application-section > .container {
    position: relative;
    z-index: 1;
}

.form-wrapper {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border: 1px solid var(--color-border);
}

.form-intro {
    text-align: center;
    margin-bottom: 48px;
}

.form-headline {
    font-size: 2.2rem;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.form-subheadline {
    font-size: 1rem;
    color: var(--color-text-muted);
}

/* Wizard step headers */
.form-steps-nav {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 48px;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 24px;
}

.step-nav-btn {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    cursor: pointer;
    opacity: 0.4;
    transition: var(--transition-smooth);
}

.step-nav-btn.active {
    opacity: 1;
}

.step-nav-num {
    width: 32px;
    height: 32px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--color-text-main);
}

.step-nav-btn.active .step-nav-num {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
}

.step-nav-text {
    font-family: var(--font-heading);
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
}

/* Step contents */
.form-step-content {
    display: none;
}

.form-step-content.active {
    display: block;
    animation: stepFadeIn 0.5s ease forwards;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateY(15px); }
    to { opacity: 1; transform: translateY(0); }
}

.step-error-alert {
    background-color: #FEF2F2;
    border: 2px solid #FCA5A5;
    color: #991B1B;
    border-radius: var(--radius-sm);
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 0.88rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: alertShake 0.4s ease;
}

@keyframes alertShake {
    0%, 100% { transform: translateX(0); }
    20%, 60% { transform: translateX(-6px); }
    40%, 80% { transform: translateX(6px); }
}

.step-heading {
    font-size: 1.4rem;
    text-transform: uppercase;
    margin-bottom: 24px;
    border-left: 3px solid var(--color-gold);
    padding-left: 12px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
    grid-column: span 3; /* default 50% width */
}

.form-group.full-width {
    grid-column: span 6;
}

.form-group.col-half {
    grid-column: span 3;
}

.form-group.col-third {
    grid-column: span 2;
}

.form-group label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-main);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group textarea,
.form-group select {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    padding: 14px 18px;
    color: var(--color-text-main);
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition-smooth);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--color-gold);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.1);
}

/* RADIO BUTTONS GROUP */
.radio-group-vertical {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 8px;
}

.radio-label {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    cursor: pointer;
    position: relative;
    padding: 16px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.radio-label:hover {
    border-color: rgba(212,175,55,0.4);
}

.radio-label input[type="radio"] {
    display: none;
}

.custom-radio {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-full);
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.radio-label input[type="radio"]:checked + .custom-radio {
    border-color: var(--color-gold);
}

.radio-label input[type="radio"]:checked + .custom-radio::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--gradient-gold);
    border-radius: var(--radius-full);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.radio-label input[type="radio"]:checked ~ div strong {
    color: var(--color-gold-hover);
}

.radio-sub {
    font-size: 0.8rem;
    margin-top: 4px;
}

/* LIVE ESTIMATED CONFIGURATOR CARD */
.live-calc-card {
    grid-column: span 2;
    margin-top: 32px;
    padding: 30px;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.calc-title {
    font-size: 1.1rem;
    text-transform: uppercase;
    border-bottom: 1px solid var(--color-border);
    padding-bottom: 12px;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.calc-detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    color: var(--color-text-muted);
}

.gold-text {
    color: var(--color-gold-hover);
    font-weight: 600;
}

.total-row {
    border-top: 1px solid var(--color-border);
    padding-top: 16px;
    margin-top: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--color-text-main);
}

.form-actions-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-top: 40px;
    flex-wrap: wrap;
}

.form-actions-row .btn {
    white-space: nowrap;
}

.form-actions-row div:empty {
    display: none;
}

/* UPLOADS STAGE */
.step-intro-txt {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.upload-slots-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 40px;
}

.upload-zone {
    border: 2px dashed var(--color-border);
    border-radius: var(--radius-md);
    height: 160px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    position: relative;
    background: #FFFFFF;
    transition: var(--transition-smooth);
    padding: 16px;
    text-align: center;
    overflow: hidden;
    user-select: none;
    -webkit-user-select: none;
    -webkit-touch-callout: none;
}

.upload-zone:hover {
    border-color: var(--color-gold);
    background: rgba(212, 175, 55, 0.02);
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    opacity: 0;
    pointer-events: none;
    -webkit-tap-highlight-color: transparent;
}

.upload-zone-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    pointer-events: none;
}

.upload-icon {
    width: 36px;
    height: 36px;
    color: var(--color-text-muted);
    margin-bottom: 12px;
}

.upload-lbl {
    font-weight: 600;
    font-size: 0.9rem;
}

.upload-hint {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 4px;
}

/* UPLOAD PREVIEW WRAPPER */
.upload-preview {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    border-radius: var(--radius-md);
    background: #FFFFFF;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 12px 16px;
    border: 2px solid var(--color-gold);
    z-index: 15;
}

.upload-preview.hidden {
    display: none !important;
}

.preview-img-thumb {
    width: 48px;
    height: 48px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--color-border);
    flex-shrink: 0;
}

.preview-img-thumb.hidden {
    display: none !important;
}

.preview-filename {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold-hover);
    text-overflow: ellipsis;
    white-space: nowrap;
    overflow: hidden;
    max-width: 65%;
}

.remove-file-btn {
    width: 28px;
    height: 28px;
    border-radius: var(--radius-full);
    background: #FFFFFF;
    color: var(--color-text-main);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.remove-file-btn:hover {
    background: #FF3333;
    color: #FFFFFF;
}

.agreement-submission-box {
    padding: 24px;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    margin-bottom: 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.checkbox-container {
    flex-basis: 60%;
    flex-grow: 1;
}

.custom-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--color-border);
    border-radius: 4px;
    display: inline-block;
    position: relative;
    flex-shrink: 0;
    margin-top: 2px;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    border-color: var(--color-gold);
    background: var(--gradient-gold);
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    position: absolute;
    width: 4px;
    height: 8px;
    border: solid #000000;
    border-width: 0 2px 2px 0;
    top: 40%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
}

.checkbox-text {
    font-size: 0.85rem;
}

/* SUCCESS VISUAL WRAPPER */
.form-success-wrapper {
    text-align: center;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.form-success-wrapper.hidden {
    display: none;
}

.success-icon-box {
    width: 90px;
    height: 90px;
    border-radius: var(--radius-full);
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid #25D366;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #25D366;
    margin-bottom: 30px;
    position: relative;
}

.success-icon-box i {
    width: 48px;
    height: 48px;
}

.success-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: var(--radius-full);
    background: radial-gradient(circle, rgba(37,211,102,0.2) 0%, rgba(0,0,0,0) 70%);
}

.success-title {
    font-size: 2rem;
    margin-bottom: 15px;
}

.success-message {
    font-size: 1rem;
    max-width: 550px;
    margin-bottom: 30px;
}

.success-reference {
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    margin-bottom: 40px;
    font-size: 0.95rem;
}

.success-reference strong {
    color: var(--color-gold-hover);
    margin-left: 8px;
    letter-spacing: 0.05em;
}

/* MODAL WINDOW SYSTEM */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(5px);
    top: 0;
    left: 0;
}

.modal-content {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 750px;
    max-height: 80vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: #FFFFFF;
    border: 1px solid var(--color-border);
    animation: modalSlideUp 0.5s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px) scale(0.95); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.modal-header {
    padding: 30px;
    border-bottom: 1px solid var(--color-border);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.modal-title {
    font-size: 1.25rem;
    text-transform: uppercase;
}

.modal-close-btn {
    background: transparent;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
}

.modal-close-btn:hover {
    color: var(--color-text-main);
}

.scrollable-content {
    padding: 30px;
    overflow-y: auto;
    flex-grow: 1;
}

.modal-update-txt {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 4px;
}

.modal-divider {
    border: 0;
    height: 1px;
    background: var(--color-border);
    margin: 20px 0;
}

.modal-body h4 {
    color: var(--color-gold-hover);
    font-size: 1rem;
    margin-top: 24px;
    margin-bottom: 8px;
    text-transform: uppercase;
}

.modal-body p {
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 16px;
}

.modal-footer {
    padding: 24px 30px;
    border-top: 1px solid var(--color-border);
    display: flex;
    justify-content: flex-end;
}

/* CUSTOMER REVIEWS */
.reviews-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.reviews-carousel-wrapper {
    position: relative;
    margin-top: 60px;
    display: flex;
    align-items: center;
    gap: 0;
    width: 100%;
}

.reviews-track-outer {
    flex: 1;
    overflow: hidden;
    max-width: 1120px;
    margin: 0 auto;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.review-card {
    flex: 0 0 calc((100% - 60px) / 3); /* 3 cards side by side on desktop */
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--color-border);
    border-radius: 20px;
    padding: 32px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    display: flex;
    flex-direction: column;
    transition: all 0.3s ease;
    min-height: 240px;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 15px 35px rgba(212, 175, 55, 0.05);
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 18px;
    width: 100%;
}

.review-user-block {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #FFFFFF;
    font-weight: 700;
    font-size: 1.1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
}

.review-user-meta {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.review-username {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-text-main);
    margin: 0;
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-muted);
    margin-top: 1px;
}

.google-badge {
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(0, 0, 0, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.05);
    padding: 4px 10px;
    border-radius: 12px;
}

.google-icon {
    flex-shrink: 0;
}

.google-text {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 16px;
}

.review-stars i, .review-stars svg {
    width: 16px;
    height: 16px;
}

.review-stars i.fill-gold, .review-stars svg.fill-gold, .fill-gold {
    color: #FFC107 !important; /* Premium gold rating yellow outline */
    fill: #FFC107 !important;  /* Premium gold rating yellow fill */
}

/* GOOGLE REVIEW MODAL */
.review-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    padding: 20px;
}

.review-modal.active {
    opacity: 1;
    pointer-events: auto;
}

.review-modal-content {
    background: rgba(255, 255, 255, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 24px;
    width: 100%;
    max-width: 520px;
    padding: 40px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    transform: translateY(20px);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.review-modal.active .review-modal-content {
    transform: translateY(0);
}

.review-modal-close {
    position: absolute;
    top: 20px;
    right: 24px;
    font-size: 2.2rem;
    line-height: 1;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.3s ease;
}

.review-modal-close:hover {
    color: var(--color-text-main);
}

.review-body-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-main);
    margin: 0;
    text-align: left;
}

.read-more-link {
    color: #4285F4;
    text-decoration: none;
    font-weight: 600;
    margin-left: 4px;
}

.read-more-link:hover {
    text-decoration: underline;
}

.slider-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 40px;
}

.slider-btn {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-full);
    border: 1px solid var(--color-border);
    background: transparent;
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    border-color: var(--color-gold);
    color: var(--color-gold-hover);
    background: rgba(212,175,55,0.05);
}

/* FAQ ACCORDION */
.faq-section {
    padding: 120px 0;
    background: var(--color-bg);
}

.faq-accordion-container {
    max-width: 800px;
    margin: 60px auto 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item {
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    background: #FFFFFF;
    overflow: hidden;
    transition: var(--transition-smooth);
}

.faq-item:hover {
    border-color: rgba(212,175,55,0.3);
}

.faq-trigger {
    width: 100%;
    padding: 24px 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--color-text-main);
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
}

.faq-arrow {
    width: 20px;
    height: 20px;
    color: var(--color-gold-hover);
    transition: transform 0.4s ease;
}

.faq-item.active {
    border-color: var(--color-border-gold);
}

.faq-item.active .faq-arrow {
    transform: rotate(180deg);
}

.faq-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-panel-content {
    padding: 0 30px 30px 30px;
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* CONTACT & GOOGLE MAP OVERLAY */
.contact-section {
    padding: 120px 0;
    background: var(--color-bg-secondary);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.map-container {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    height: 480px;
    border: 1px solid var(--color-border);
}

.map-glow {
    position: absolute;
    width: 100%;
    height: 100%;
    box-shadow: inset 0 0 40px rgba(0, 0, 0, 0.02);
    z-index: 2;
    pointer-events: none;
}

.map-inner {
    width: 100%;
    height: 100%;
    position: relative;
}

.vector-map-svg {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* GPS animations */
.gps-dot {
    animation: gpsDotPulse 2s ease-in-out infinite;
}

.gps-pulse {
    transform-origin: 400px 220px;
    animation: gpsRingPulse 2s ease-out infinite;
}

.gps-pulse-large {
    transform-origin: 400px 220px;
    animation: gpsRingPulseLarge 3s ease-out infinite;
}

@keyframes gpsDotPulse {
    0% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.2); opacity: 0.8; }
    100% { transform: scale(1); opacity: 1; }
}

@keyframes gpsRingPulse {
    0% { transform: scale(0.3); opacity: 1; }
    100% { transform: scale(1); opacity: 0; }
}

@keyframes gpsRingPulseLarge {
    0% { transform: scale(0.2); opacity: 0.6; }
    100% { transform: scale(1); opacity: 0; }
}

.map-label-card {
    position: absolute;
    bottom: 30px;
    left: 30px;
    right: 30px;
    padding: 24px;
    z-index: 3;
}

.card-map-title {
    font-size: 1rem;
    text-transform: uppercase;
    color: var(--color-gold-hover);
    margin-bottom: 6px;
}

.card-map-txt {
    font-size: 0.85rem;
    color: var(--color-text-main);
}

.contact-details-box {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-top: 40px;
    margin-bottom: 40px;
    width: 100%;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
}

.c-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: rgba(0,0,0,0.01);
    border: 1px solid var(--color-border);
    color: var(--color-gold-hover);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.c-info {
    display: flex;
    flex-direction: column;
}

.c-lbl {
    font-size: 0.75rem;
    text-transform: uppercase;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    margin-bottom: 4px;
}

.c-val {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 500;
}

.c-val-link {
    font-size: 0.95rem;
    color: var(--color-text-main);
    font-weight: 600;
}

.c-val-link:hover {
    color: var(--color-gold-hover);
}

.contact-ctas {
    display: flex;
    gap: 20px;
}

/* ============================================================
   FOOTER — Dark rounded card matching reference layout
   ============================================================ */
.footer {
    padding: 60px 16px 16px;
    background: transparent;
}

/* The actual dark card */
.footer-inner {
    position: relative;
    background: #111213;
    border-radius: 20px;
    padding: 70px 60px 0;
    max-width: 100%;
    margin: 0 auto;
    overflow: hidden;
    color: #FFFFFF;
}

/* ---- Sparkle decoration ---- */
.ftr-sparkle {
    position: absolute;
    color: rgba(255,255,255,0.12);
    font-size: 1.4rem;
    pointer-events: none;
    user-select: none;
}
.ftr-sp1 { top: 30px;  left:  5%; }
.ftr-sp2 { top: 60px;  left: 30%; }
.ftr-sp3 { top: 20px;  right: 10%; }
.ftr-sp4 { bottom: 80px; left: 55%; }
.ftr-sp5 { bottom: 60px; right: 5%; }

/* ---- Top 4-column grid ---- */
.footer-top {
    display: grid;
    grid-template-columns: 1.6fr 0.9fr 1fr 1.3fr;
    gap: 50px;
    padding-bottom: 50px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* ---- Col 1: Brand ---- */
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
}

.footer-logo-img {
    height: 130px;
    width: auto;
    object-fit: contain;
    display: block;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
}

.ftr-brand-name {
    font-family: var(--font-heading, 'Poppins', sans-serif);
    font-size: 1.35rem;
    font-weight: 800;
    color: #FFFFFF;
    letter-spacing: 0.05em;
    line-height: 1.1;
}

.ftr-brand-tag {
    font-size: 0.7rem;
    color: #D4AF37;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.footer-desc {
    font-size: 0.83rem;
    color: #A0A0A0;
    line-height: 1.65;
    max-width: 300px;
}

.footer-contact-row {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-top: 4px;
}

.ftr-contact-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: #FFFFFF;
    text-decoration: none;
    transition: color 0.2s;
    font-weight: 700;
}

.ftr-contact-link:hover {
    color: #D4AF37;
}

.ftr-contact-icon {
    width: 14px;
    height: 14px;
    flex-shrink: 0;
}

/* ---- Cols 2 & 3: Links ---- */
.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-heading {
    font-size: 0.9rem;
    font-weight: 700;
    color: #FFFFFF;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.footer-links a {
    font-size: 0.83rem;
    color: #A0A0A0;
    text-decoration: none;
    transition: color 0.2s, padding-left 0.2s;
}

.footer-links a:hover {
    color: #FFFFFF;
    padding-left: 5px;
}

/* Highlighted service link (gold/orange like reference) */
.ftr-highlight {
    color: #D4AF37 !important;
    font-weight: 600;
}

.ftr-highlight:hover {
    color: #F4D76A !important;
}

/* ---- Col 4: Newsletter + Payments ---- */
.ftr-newsletter {
    display: flex;
    align-items: stretch;
    gap: 0;
    margin-bottom: 28px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
}

.ftr-email-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    padding: 12px 16px;
    font-size: 0.83rem;
    color: #FFFFFF;
}

.ftr-email-input::placeholder {
    color: rgba(255,255,255,0.4);
}

.ftr-email-btn {
    background: #D4AF37;
    border: none;
    padding: 12px 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s;
    color: #0E0E0E;
    border-radius: 0;
}

.ftr-email-btn svg {
    width: 16px;
    height: 16px;
}

.ftr-email-btn:hover {
    background: #F4D76A;
}

/* Payment section */
.ftr-payments {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 10px;
    padding: 14px 16px;
}

.ftr-payments-label {
    font-size: 0.75rem;
    color: #FFFFFF;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 0 12px 0;
}

.ftr-payment-icons {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.pay-icon {
    width: 46px;
    height: auto;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.4);
}

/* ---- Bottom bar ---- */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0 28px;
    gap: 20px;
}

.ftr-copy {
    font-size: 0.78rem;
    color: #777;
    margin: 0;
}

.ftr-socials {
    display: flex;
    gap: 10px;
    align-items: center;
}

.ftr-social-link {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1.5px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #A0A0A0;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
}

.ftr-social-link:hover {
    border-color: #D4AF37;
    color: #D4AF37;
    background: rgba(212,175,55,0.08);
}


/* APP SHELL STICKY NAVIGATION BAR (Mobile only) */
.mobile-sticky-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 68px;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid var(--color-border);
    z-index: 998;
    display: none;
    grid-template-columns: 1fr 1.8fr 1fr;
    padding: 8px 12px;
    gap: 8px;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.06);
    align-items: center;
}

.m-sticky-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    color: var(--color-text-main);
    border-radius: var(--radius-md);
    transition: var(--transition-smooth);
}

.m-sticky-btn i {
    width: 20px;
    height: 20px;
}

.m-sticky-btn span {
    font-size: 0.65rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.font-call {
    background: rgba(0,0,0,0.02);
    border: 1px solid var(--color-border);
}

.font-apply {
    color: #000000;
    flex-direction: row;
    gap: 6px;
    white-space: nowrap;
    padding: 0 10px;
    justify-content: center;
}

.font-apply span {
    font-size: 0.6rem;
    white-space: nowrap;
}

.font-apply i {
    width: 15px;
    height: 15px;
    flex-shrink: 0;
}

.font-whatsapp {
    background: rgba(37, 211, 102, 0.1);
    border: 1px solid rgba(37, 211, 102, 0.2);
    color: #25D366;
}

/* INTERSECTION OBSERVER ANIMATION CLASSES */
.scroll-reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.scroll-reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* RESPONSIVE MEDIA QUERIES */

/* For wide screens */
@media (min-width: 1400px) {
    .container {
        max-width: 1360px;
    }
}

/* Tablet Layouts */
@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .section-title { font-size: 2.2rem; }
    .container { padding: 0 30px; }
    
    /* Hero stays left-aligned on tablets with tighter padding */
    .hero-container {
        padding: 0 20px;
        padding-top: 40px;
    }
    
    .hero-badges-sidebar {
        display: none;
    }
    
    .trust-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .packages-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
    }
    
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cars-carousel-wrapper {
        padding: 0 48px;
    }

    .car-card {
        flex: 0 0 calc((100% - 28px) / 2);
    }

    .car-details {
        padding: 20px;
    }
    
    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .why-us-col-left,
    .why-us-col-right {
        text-align: center;
        align-items: center;
    }

    .why-us-col-left .why-feature-header {
        flex-direction: row; /* reset row-reverse on mobile */
    }

    .why-us-col-center {
        order: -1; /* place 3D image at top on mobile */
    }

    .why-feature-desc {
        max-width: 500px;
    }
    
    .timeline-container {
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    
    .timeline-progress {
        display: none;
    }
    
    .docs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Footer responsive: tablet 2 columns */
    .footer-inner {
        padding: 50px 30px 0;
    }
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

    /* Testimonials Tablet Overrides: 2 columns */
    .review-card {
        flex: 0 0 calc((100% - 30px) / 2);
    }
}

/* Mobile-first specific style adjustments */
@media (max-width: 768px) {
    /* Sticky Header shrink */
    .header {
        height: 80px;
    }
    
    .header-container {
        padding: 0 20px;
    }
    
    .nav-menu, .header-actions {
        display: none;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    /* Menu active animation states */
    .menu-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }
    
    .menu-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }
    
    .menu-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }
    
    /* Hero section on mobile */
    .hero-title {
        font-size: 2.4rem;
    }
    
    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 12px;
        align-items: flex-start;
        max-width: 320px;
    }
    
    /* Hide floating badges on very small screens to avoid overlap */
    .hero-badges-sidebar {
        display: none;
    }
    
    /* Grid overrides */
    .trust-grid {
        grid-template-columns: 1fr;
    }
    
    .cars-grid {
        grid-template-columns: 1fr;
    }

    .cars-carousel-wrapper {
        padding: 0;
    }

    .carousel-arrow {
        display: flex !important;
        width: 36px;
        height: 36px;
        font-size: 0.9rem;
    }

    .cars-carousel-wrapper .carousel-prev { left: -10px; }
    .cars-carousel-wrapper .carousel-next { right: -10px; }

    .car-card {
        flex: 0 0 100%;
    }

    .car-details {
        padding: 16px;
    }

    .car-image-container {
        height: 180px;
    }

    .car-name {
        font-size: 1.15rem;
    }

    .car-footer {
        flex-wrap: wrap;
        gap: 10px;
    }
    
    .docs-grid {
        grid-template-columns: 1fr;
    }
    
    .doc-card.optional {
        grid-column: span 1;
    }
    
    /* Form wrapper */
    .form-wrapper {
        padding: 30px 20px;
    }
    
    .form-steps-nav {
        gap: 6px;
    }
    
    .step-nav-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 6px;
        padding: 6px 0;
    }
    
    .step-nav-text {
        font-size: 0.65rem;
    }
    
    .form-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px 12px;
    }
    
    .form-group {
        grid-column: span 6;
    }

    .form-group.col-half {
        grid-column: span 3;
    }

    .form-group.col-third {
        grid-column: span 2;
    }

    .form-group.full-width {
        grid-column: span 6;
    }
    
    .live-calc-card {
        grid-column: span 6;
        padding: 20px;
    }
    
    .upload-slots-grid {
        grid-template-columns: 1fr;
    }
    
    .agreement-submission-box {
        flex-direction: column;
        align-items: stretch;
    }
    
    .checkbox-container {
        flex-basis: 100%;
    }
    
    /* Reviews Carousel Mobile Overrides */
    .reviews-carousel-wrapper {
        padding: 0;
    }

    .review-card {
        flex: 0 0 100%; /* Show single card on mobile */
        padding: 20px 16px;
    }
    
    /* Footer mobile: single column */
    .footer-inner {
        padding: 40px 20px 0;
        border-radius: 16px 16px 10px 10px;
    }
    .footer-top {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 14px;
    }
    
    /* Show mobile bottom sticky navigator */
    .mobile-sticky-bar {
        display: grid;
    }

    /* Timeline 2 columns on mobile (50% 50%) */
    .timeline-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 16px;
    }

    /* FAQ padding optimization for small devices */
    .faq-trigger {
        padding: 20px;
        font-size: 0.95rem;
    }
    .faq-panel-content {
        padding: 0 20px 20px 20px;
    }

    /* Modal adjustments on mobile */
    .review-modal-content {
        padding: 24px 20px;
    }
    .modal-content {
        max-height: 90vh;
    }
    .modal-header, .scrollable-content, .modal-footer {
        padding: 20px;
    }
}

/* ============================================================
   TESTIMONIALS / REVIEWS SECTION — Complete Styles
   ============================================================ */

.reviews-section {
    padding: 100px 0;
    background: #f9f9f9;
}

.reviews-section .section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* Overall Google rating banner */
.reviews-rating-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.reviews-score-block {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews-score {
    font-size: 3rem;
    font-weight: 800;
    color: #111;
    line-height: 1;
}

.reviews-total {
    font-size: 0.85rem;
    color: #666;
}

.reviews-stars-row {
    display: flex;
    gap: 4px;
}

.reviews-stars-row svg {
    width: 22px;
    height: 22px;
    fill: #FFC107;
}

.google-logo-wrap {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1rem;
    font-weight: 600;
    color: #333;
}

/* Carousel wrapper */
.reviews-carousel-wrapper {
    position: relative;
    padding: 0 50px;
}

.reviews-track-outer {
    overflow: hidden;
    border-radius: 16px;
}

.reviews-track {
    display: flex;
    gap: 30px;
    transition: transform 0.55s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

/* Single review card */
.review-card {
    flex: 0 0 calc((100% - 60px) / 3);
    background: #fff;
    border-radius: 16px;
    padding: 32px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.07);
    border: 1px solid #eee;
    display: flex;
    flex-direction: column;
    gap: 16px;
    transition: box-shadow 0.3s ease, transform 0.3s ease;
    cursor: default;
}

.review-card:hover {
    box-shadow: 0 8px 36px rgba(0,0,0,0.13);
    transform: translateY(-4px);
}

/* Card header row */
.review-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 12px;
}

.review-user-block {
    display: flex;
    align-items: center;
    gap: 14px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.review-user-meta {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.review-username {
    font-size: 0.95rem;
    font-weight: 700;
    color: #111;
    margin: 0;
}

.review-date {
    font-size: 0.78rem;
    color: #888;
}

/* Google badge */
.google-badge {
    display: flex;
    align-items: center;
    gap: 5px;
    flex-shrink: 0;
}

.google-text {
    font-size: 0.75rem;
    color: #666;
    font-weight: 500;
}

/* Star ratings */
.review-stars {
    display: flex;
    gap: 3px;
}

/* Solid yellow stars using SVG fill on .fill-gold elements */
.review-stars svg,
.review-stars svg.fill-gold {
    fill: #FFC107 !important;
    color: #FFC107 !important;
    width: 18px;
    height: 18px;
}

/* Review text */
.review-body-text {
    font-size: 0.9rem;
    color: #444;
    line-height: 1.7;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Read more link */
.read-more-link {
    color: #4285F4;
    font-size: 0.85rem;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    margin-top: 4px;
    transition: opacity 0.2s;
    cursor: pointer;
}

.read-more-link:hover {
    opacity: 0.75;
    text-decoration: underline;
}

/* Carousel navigation arrows */
.reviews-carousel-wrapper .carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 5;
    background: #fff;
    border: 1.5px solid #ddd;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: 0 2px 12px rgba(0,0,0,0.12);
    transition: background 0.2s, box-shadow 0.2s;
}

.reviews-carousel-wrapper .carousel-arrow:hover {
    background: #f5f5f5;
    box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}

.reviews-carousel-wrapper .carousel-prev {
    left: 0;
}

.reviews-carousel-wrapper .carousel-next {
    right: 0;
}

/* Dots */
.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.reviews-dots .carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #ccc;
    cursor: pointer;
    transition: background 0.3s, transform 0.3s;
    border: none;
}

.reviews-dots .carousel-dot.active {
    background: #D4AF37;
    transform: scale(1.3);
}

/* scroll lock on body when modal open */
body.overflow-hidden {
    overflow: hidden;
}

/* ============================================================
   REVIEW DETAIL MODAL
   ============================================================ */

.review-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    align-items: center;
    justify-content: center;
    padding: 20px;
}

.review-modal.active {
    display: flex;
}

.review-modal-content {
    background: #fff;
    border-radius: 20px;
    padding: 40px;
    max-width: 560px;
    width: 100%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0,0,0,0.25);
    animation: modalSlideIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}

@keyframes modalSlideIn {
    from { opacity: 0; transform: scale(0.9) translateY(20px); }
    to   { opacity: 1; transform: scale(1)   translateY(0);    }
}

.review-modal-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 1.8rem;
    cursor: pointer;
    color: #666;
    line-height: 1;
    padding: 4px 8px;
    border-radius: 6px;
    transition: background 0.2s, color 0.2s;
}

.review-modal-close:hover {
    background: #f0f0f0;
    color: #111;
}

/* Extra small devices scaling */
@media (max-width: 480px) {
    .why-3d-wrapper {
        transform: scale(0.85);
        margin: 0 auto;
        max-width: 280px;
    }
    .why-oval-bg {
        width: 230px;
        height: 350px;
    }
    .why-us-section {
        padding: 60px 0;
    }
    .packages-section, .how-section, .documents-section, .reviews-section, .faq-section {
        padding: 60px 0;
    }
}

/* ============================================================
   COMPREHENSIVE MOBILE RESPONSIVE OVERRIDES
   Covers all sections for all mobile screen sizes
   ============================================================ */

@media (max-width: 768px) {

    /* ---------- GLOBAL ---------- */
    html { font-size: 15px; }

    .container { padding: 0 16px; }

    .section-title { font-size: 1.75rem; }
    .section-subtitle { font-size: 0.95rem; }
    .section-header { margin-bottom: 40px; }

    /* ---------- HEADER / NAV ---------- */
    .header { height: 75px; }
    .header.scrolled { height: 75px; }
    .header-container { padding: 0 16px; }
    .logo-img { height: 65px; }

    /* Hamburger bar color — white when over hero, dark when scrolled */
    .menu-toggle .bar { background: #FFFFFF; }
    .header.scrolled .menu-toggle .bar { background: var(--color-text-main); }

    /* Mobile nav overlay font tweak for small screens */
    .mobile-link { font-size: 1.5rem; gap: 20px; }

    /* ---------- HERO SECTION ---------- */
    .hero-section { min-height: 100svh; }

    .hero-container {
        padding: 0 20px;
        padding-top: 80px;
        justify-content: center;
    }

    .hero-content {
        max-width: 100%;
        align-items: flex-start;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        margin-bottom: 24px;
        max-width: 100%;
    }

    .hero-tag { margin-bottom: 16px; }

    .hero-bullets {
        grid-template-columns: 1fr;
        gap: 10px;
        margin-bottom: 28px;
        max-width: 100%;
    }

    .hero-actions {
        flex-direction: column;
        gap: 12px;
        width: 100%;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    /* ---------- WHY-US / MYCARZ DIFFERENCE ---------- */
    .why-us-section { padding: 70px 0; }

    .why-us-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .why-us-col-left,
    .why-us-col-right {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 20px;
        text-align: left;
        align-items: start;
    }

    .why-us-col-left .why-feature-item:first-child,
    .why-us-col-right .why-feature-item:first-child {
        border-bottom: none !important;
    }

    .why-feature-item {
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }

    .why-feature-header { gap: 10px; }

    .why-feature-icon {
        width: 36px;
        height: 36px;
        flex-shrink: 0;
    }

    .why-feature-icon i {
        width: 14px;
        height: 14px;
    }

    .why-feature-title { font-size: 0.95rem; }
    .why-feature-desc { font-size: 0.82rem; max-width: 100%; }

    /* ---------- PACKAGES SECTION ---------- */
    .packages-section { padding: 70px 0; background-attachment: scroll; }

    .packages-grid {
        grid-template-columns: 1fr;
        gap: 24px;
        max-width: 100%;
    }

    .package-card { padding: 30px 20px; }
    .package-name { font-size: 1.4rem; }
    .price-val { font-size: 2.4rem; }

    /* ---------- FLEET / CARS CAROUSEL ---------- */
    .cars-section { padding: 70px 0; }

    .cars-carousel-wrapper { padding: 0; }

    .car-card { flex: 0 0 100%; }

    .car-image-container { height: 185px; }

    .car-details { padding: 16px; }

    .car-name { font-size: 1.1rem; }

    .car-specs { gap: 8px; }
    .spec-item { font-size: 0.75rem; gap: 4px; }

    .car-footer {
        flex-wrap: wrap;
        gap: 10px;
    }

    .car-footer .car-price { font-size: 1.1rem; }

    .car-footer .btn-small {
        width: 100%;
        justify-content: center;
    }

    /* ---------- HOW IT WORKS ---------- */
    .how-section { padding: 70px 0; }

    .timeline-container {
        grid-template-columns: 1fr 1fr;
        gap: 30px 16px;
    }

    .timeline-step { padding: 16px 12px; }

    .step-num-box {
        width: 56px;
        height: 56px;
        margin-bottom: 14px;
    }

    .step-num {
        font-size: 1.2rem;
    }

    .step-title { font-size: 0.95rem; }
    .step-desc { font-size: 0.8rem; }

    /* ---------- DOCUMENTS / REQUIREMENTS ---------- */
    .documents-section { padding: 70px 0; }

    .docs-grid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }

    .doc-card {
        width: 100%;
        flex-shrink: unset;
    }

    .doc-card { padding: 20px 16px; }
    .doc-card.optional { grid-column: span 1; }

    /* ---------- APPLICATION FORM ---------- */
    .apply-section { padding: 70px 0; }

    .form-wrapper { padding: 24px 16px; border-radius: 20px; }

    .form-steps-nav {
        gap: 4px;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .step-nav-btn {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 4px;
        padding: 8px 6px;
        min-width: 60px;
    }

    .step-nav-text { font-size: 0.6rem; }

    .form-grid {
        grid-template-columns: repeat(6, 1fr);
        gap: 16px 12px;
    }

    .form-group {
        grid-column: span 6;
    }

    .form-group.col-half {
        grid-column: span 3;
    }

    .form-group.col-third {
        grid-column: span 2;
    }

    .form-group.full-width {
        grid-column: span 6;
    }

    .live-calc-card {
        grid-column: span 6;
        padding: 16px;
    }

    .upload-slots-grid { grid-template-columns: 1fr; }

    .agreement-submission-box {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }

    .checkbox-container { flex-basis: 100%; }

    /* ---------- FAQ SECTION ---------- */
    .faq-section { padding: 70px 0; }

    .faq-trigger {
        padding: 18px 16px;
        font-size: 0.9rem;
        gap: 12px;
    }

    .faq-panel-content {
        padding: 0 16px 18px;
        font-size: 0.88rem;
    }

    /* ---------- REVIEWS / TESTIMONIALS ---------- */
    .reviews-section { padding: 70px 0; }

    .reviews-carousel-wrapper {
        padding: 0;
    }

    .review-card {
        flex: 0 0 100%;
        padding: 20px 16px;
    }

    .reviews-rating-banner { gap: 14px; }
    .reviews-score { font-size: 2.4rem; }

    /* ---------- FOOTER ---------- */
    .footer-inner {
        padding: 36px 16px 0;
        border-radius: 14px 14px 0 0;
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 12px;
        padding: 20px 0;
    }

    .footer-col-title { font-size: 0.95rem; }
    .footer-col-desc { font-size: 0.85rem; }

    .footer-social { justify-content: flex-start; }

    /* ---------- MODALS ---------- */
    .review-modal { padding: 12px; }
    .review-modal-content { padding: 28px 18px; border-radius: 16px; }

    .modal-content { max-height: 88vh; border-radius: 16px; }
    .modal-header,
    .scrollable-content,
    .modal-footer { padding: 16px; }
}

/* ============================================================
   EXTRA SMALL PHONES (max 420px)
   ============================================================ */
@media (max-width: 420px) {

    html { font-size: 14px; }

    .hero-title { font-size: 1.75rem; }
    .section-title { font-size: 1.55rem; }

    .hero-container { padding: 0 14px; padding-top: 75px; }

    .container { padding: 0 14px; }

    .cars-carousel-wrapper { padding: 0 36px; }

    .package-card { padding: 24px 14px; }

    .form-wrapper { padding: 20px 12px; }

    .mobile-link { font-size: 1.3rem; }

    /* Prevent any content overflow */
    img, video, iframe, svg {
        max-width: 100%;
    }
}

/* ============================================================
   CARS GRID & NO IMAGE PLACEHOLDER
   ============================================================ */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.cars-grid .car-card {
    flex: none;
    width: 100%;
}

.no-image-banner {
    background: linear-gradient(135deg, #121212 0%, #222222 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    height: 220px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
}

.no-image-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.4);
    font-family: var(--font-heading);
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-align: center;
}

.no-image-icon {
    width: 32px;
    height: 32px;
    color: var(--color-gold);
    opacity: 0.7;
}

@media (max-width: 1024px) {
    .cars-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .cars-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* ============================================================
   BREADCRUMB HERO SECTION & CAROUSEL SLIDER STYLING
   ============================================================ */

/* Breadcrumb Hero Section */
.breadcrumb-hero {
    position: relative;
    padding: 120px 0 80px 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    text-align: center;
    color: #FFFFFF;
    margin-top: 130px; /* offset for sticky header */
}

.breadcrumb-hero .dark-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 1;
}

.breadcrumb-hero .container {
    position: relative;
    z-index: 2;
}

.breadcrumb-content .page-title {
    font-size: 3rem;
    color: #FFFFFF;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.breadcrumb-nav {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    padding: 8px 20px;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.breadcrumb-nav a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition-smooth);
}

.breadcrumb-nav a:hover {
    color: var(--color-gold);
}

.breadcrumb-nav .separator {
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.8rem;
}

.breadcrumb-nav .current {
    color: var(--color-gold);
    font-weight: 500;
}

/* Home Page Vehicle Carousel/Slider Section */
.cars-carousel-wrapper {
    position: relative;
    margin-top: 50px;
    padding: 0 50px;
}

.cars-carousel-outer {
    overflow: hidden;
    width: 100%;
}

.cars-carousel-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: transform;
}

.cars-carousel-track .car-card {
    flex: 0 0 calc((100% - 60px) / 3);
    width: calc((100% - 60px) / 3);
    margin: 0;
}

/* Carousel Buttons */
.cars-carousel-arrow {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid var(--color-border);
    color: var(--color-text-main);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    z-index: 10;
    box-shadow: var(--shadow-premium);
    transition: var(--transition-smooth);
}

.cars-carousel-arrow:hover {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
    box-shadow: var(--shadow-gold-hover);
    transform: translateY(-50%) scale(1.05);
}

.cars-carousel-arrow.prev {
    left: -10px;
}

.cars-carousel-arrow.next {
    right: -10px;
}

.cars-carousel-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 30px;
}

.cars-carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.1);
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.cars-carousel-dot.active {
    background: var(--color-gold);
    width: 24px;
    border-radius: 5px;
}

/* View All Vehicles Button container */
.view-all-container {
    display: flex;
    justify-content: center;
    margin-top: 40px;
}

/* Responsiveness for Slider */
@media (max-width: 1024px) {
    .cars-carousel-track .car-card {
        flex: 0 0 calc((100% - 30px) / 2);
        width: calc((100% - 30px) / 2);
    }
}

@media (max-width: 768px) {
    .breadcrumb-hero {
        padding: 80px 0 60px 0;
        margin-top: 110px; /* offset for compact sticky header */
    }
    
    .breadcrumb-content .page-title {
        font-size: 2.2rem;
    }
    
    .cars-carousel-wrapper {
        padding: 0 20px;
    }
    
    .cars-carousel-track .car-card {
        flex: 0 0 100%;
        width: 100%;
    }
    
    .cars-carousel-arrow {
        width: 40px;
        height: 40px;
    }
    
    .cars-carousel-arrow.prev {
        left: -15px;
    }
    
    .cars-carousel-arrow.next {
        right: -15px;
    }

    /* Responsive Form Actions & Upload Slots */
    .form-actions-row {
        flex-direction: column-reverse;
        gap: 12px;
        width: 100%;
    }

    .form-actions-row .btn {
        width: 100%;
        height: 52px;
        padding: 0 16px;
        font-size: 0.82rem;
        letter-spacing: 0.8px;
    }

    .form-actions-row .btn span {
        width: 100%;
        justify-content: center;
        white-space: nowrap;
    }

    .upload-slots-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* ============================================================
   USED CARS SUB-PAGE CUSTOM STYLES
   ============================================================ */
.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-card {
    padding: 40px 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    border: 1px solid var(--color-border);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--color-border-gold-hover);
    box-shadow: var(--shadow-gold-hover);
    background: var(--color-card-bg-hover);
}

.feature-icon-box {
    width: 64px;
    height: 64px;
    border-radius: var(--radius-full);
    background: rgba(212, 175, 55, 0.05);
    border: 1.5px solid var(--color-border-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-gold-hover);
    margin-bottom: 24px;
    transition: var(--transition-smooth);
}

.feature-card:hover .feature-icon-box {
    background: var(--gradient-gold);
    color: #000000;
    border-color: transparent;
    transform: scale(1.1);
}

.feature-card-title {
    font-size: 1.25rem;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: var(--color-text-main);
}

.feature-card-desc {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
}

@media (max-width: 600px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

/* Textarea additional layout styling */
.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* ============================================================
   AVAILABILITY BADGE — ourcars.html fleet grid
   ============================================================ */
.avail-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 20;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 5px 12px 5px 9px;
    border-radius: 30px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    pointer-events: none;
    box-shadow: 0 3px 12px rgba(0,0,0,0.45), 0 1px 3px rgba(0,0,0,0.3);
    line-height: 1;
}

.avail-badge::before {
    content: '';
    display: inline-block;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    flex-shrink: 0;
}

/* ── Green: Available ── */
.avail-badge.available {
    background: #16a34a;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.25);
}

.avail-badge.available::before {
    background: #bbf7d0;
    animation: badgePulse 2s infinite ease-in-out;
}

/* ── Red: Unavailable ── */
.avail-badge.unavailable {
    background: #dc2626;
    color: #ffffff;
    border: 1.5px solid rgba(255,255,255,0.2);
}

.avail-badge.unavailable::before {
    background: #fecaca;
}

@keyframes badgePulse {
    0%, 100% { opacity: 1;   transform: scale(1);    }
    50%       { opacity: 0.6; transform: scale(1.25); }
}

/* ---------- RESPONSIVE HEADER ADAPTABILITY FOR LAPTOPS ---------- */
@media (max-width: 1250px) and (min-width: 769px) {
    .header-container {
        padding: 0 15px;
        gap: 10px;
    }
    .logo-img {
        height: 78px;
    }
    .header.scrolled .logo-img {
        height: 60px;
    }
    .nav-menu {
        gap: 12px;
    }
    .nav-link {
        font-size: 0.72rem;
    }
    .phone-btn span {
        font-size: 0.75rem;
    }
    .header .btn {
        padding: 10px 14px;
        font-size: 0.72rem;
    }
}
