/* ============================================
   ELITELIMO — PREMIUM STYLE SHEET
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;0,700;1,400&family=Montserrat:wght@300;400;500;600;700&family=Tajawal:wght@700&display=swap');

:root {
    --bg: #06060a;
    --bg-alt: #0a0a10;
    --gold: #c9a84c;
    --gold-light: #e8c87a;
    --gold-dim: rgba(201, 168, 76, 0.15);
    --gold-glow: rgba(201, 168, 76, 0.4);
    --white: #f5f2ec;
    --text-secondary: #8a8a9a;
    --glass-bg: rgba(18, 18, 28, 0.55);
    --glass-border: rgba(255, 255, 255, 0.08);
    --glass-border-gold: rgba(201, 168, 76, 0.25);
    --font-heading:  serif;
    --font-body:  sans-serif;
    --transition: all 0.45s cubic-bezier(0.25, 0.8, 0.25, 1);
    --radius: 16px;
    --shadow: 0 20px 60px rgba(0, 0, 0, 0.7);
}

/* ======== RESET ======== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background-color: var(--bg);
    color: var(--white);
    overflow-x: hidden;
    line-height: 1.7;
    max-width: 100vw;
}

h1, h2, h3, h4, .logo, .footer-logo { font-family: var(--font-heading); }

a { text-decoration: none; color: inherit; }

img { display: block; width: 100%; object-fit: cover; }

/* ======== PARTICLE CANVAS ======== */
#particleCanvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 0;
    opacity: 0.6;
}

/* ======== UTIL ======== */
.container { max-width: 90%; margin: 0 auto; padding: 0 24px; min-height: 20px;}
.section-padding { padding: 120px 0; }
.section-padding-sm { padding: 70px 0; }
.bg-alt { background: var(--bg-alt); }
.gold-text { color: var(--gold); }
.text-secondary { color: var(--text-secondary); }
.text-center { text-align: center; }
.mt-20 { margin-top: 20px; }
.flex-100 { flex: 0 0 100%; }

/* Section header */
.section-tag {
    display: inline-block;
    font-size: 1.15rem;
    letter-spacing: 4px;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.section-title {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 18px;
    font-style: italic;
}

.section-subtitle {
    color: var(--text-secondary);
    font-size: 1.05rem;
    max-width: 600px;
}

.center-sub { margin: 0 auto; }

.section-header { margin-bottom: 60px; }

/* ======== GLASS CARD ======== */
.glass-card {
    background: linear-gradient(135deg, rgba(22,22,35,0.7) 0%, rgba(10,10,18,0.85) 100%);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255,255,255,0.12);
    border-left: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius);
    box-shadow: 0 10px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(255,255,255,0.06);
    position: relative;
    overflow: hidden;
}

.glass-card::before {
    content: '';
    position: absolute;
    top: 0; left: -50%;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.3), transparent);
}

.glow-hover {
    transition: var(--transition);
}
.glow-hover:hover {
    border-color: var(--glass-border-gold);
    box-shadow: 0 20px 60px rgba(0,0,0,0.6), 0 0 0 1px rgba(201,168,76,0.15), inset 0 1px 0 rgba(255,255,255,0.1);
    transform: translateY(-6px);
}

.ultra-glass {
    background: linear-gradient(135deg, rgba(25,20,40,0.8) 0%, rgba(8,8,15,0.9) 100%);
    backdrop-filter: blur(40px);
    -webkit-backdrop-filter: blur(40px);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: 24px;
    box-shadow: 0 30px 80px rgba(0,0,0,0.8), inset 0 0 40px rgba(201,168,76,0.03);
    position: relative;
    overflow: hidden;
}

/* ======== BUTTONS ======== */
.btn-primary, .btn-secondary, .btn-ghost, .btn-text {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 36px;
    border-radius: 8px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}

.btn-primary {
    background: linear-gradient(135deg, #a07830, var(--gold), #e8c87a);
    background-size: 200% 200%;
    background-position: 0% 0%;
    color: #000;
    box-shadow: 0 4px 20px rgba(201, 168, 76, 0.35);
}

.btn-primary:hover {
    background-position: 100% 100%;
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(201, 168, 76, 0.55);
}

.btn-secondary {
    background: transparent;
    border: 1px solid var(--gold);
    color: var(--gold);
}

.btn-secondary:hover {
    background: var(--gold);
    color: #000;
    box-shadow: 0 10px 30px rgba(201, 168, 76, 0.35);
    transform: translateY(-3px);
}

.btn-ghost {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.15);
    color: var(--white);
    backdrop-filter: blur(10px);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(201,168,76,0.4);
    color: var(--gold);
    transform: translateY(-3px);
}

.btn-text {
    background: transparent;
    color: var(--gold);
    padding: 0;
    font-size: 0.85rem;
    letter-spacing: 2px;
    border: none;
}

.btn-text:hover {
    color: var(--gold-light);
    gap: 16px;
}

.glow-btn {
    position: relative;
    overflow: hidden;
}

.glow-btn::after {
    content: '';
    position: absolute;
    top: -50%; left: -60%;
    width: 40%;
    height: 200%;
    background: rgba(255,255,255,0.25);
    transform: skewX(-20deg);
    transition: left 0.6s ease;
}

.glow-btn:hover::after { left: 120%; }

/* ======== NAVBAR ======== */
.navbar {
    position: fixed;
    top: 0; width: 100%;
    z-index: 1000;
    padding: 2px 0;
    background: rgba(6,6,10,0.7);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    border-bottom: 1px solid rgba(255,255,255,0.04);
    transition: var(--transition);
}

.navbar.scrolled {
    padding: 14px 0;
    background: rgba(6,6,10,0.9);
    border-bottom-color: rgba(201,168,76,0.1);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo { font-size: clamp(1.1rem, 2.5vw, 1.9rem); font-weight: 700; letter-spacing: 2px; white-space: nowrap; }
.logo-link { color: var(--white); 
    display: flex;
    align-items: center;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.nav-links a {
    font-size: clamp(0.75rem, 1.2vw, 0.85rem);
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(245,242,236,0.75);
    transition: var(--transition);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -6px; left: 0;
    width: 0; height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.nav-links a:hover, .nav-links a.active { color: var(--gold); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }

/* Settings Dropdown */
.nav-controls { display: flex; align-items: center; }
.settings-dropdown { position: relative; }

.settings-btn {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid var(--glass-border);
    width: 42px; height: 42px;
    border-radius: 50%;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    display: flex; align-items: center; justify-content: center;
}

.settings-btn:hover {
    border-color: var(--gold);
    color: var(--gold);
    box-shadow: 0 0 20px rgba(201,168,76,0.2);
}

.dropdown-menu {
    position: absolute;
    top: 60px; right: 0; left: auto; /* force right alignment to prevent left cutoff */
    background: rgba(10,10,18,0.97);
    backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 14px;
    width: 220px;
    list-style: none;
    opacity: 0; visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    z-index: 1001; padding: 10px 0;
}

[dir="rtl"] .dropdown-menu { right: auto; left: 0; }
.settings-dropdown:hover .dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }
.dropdown-menu > li { position: relative; }

.currency-label {
    display: block;
    padding: 12px 20px;
    color: var(--white);
    font-weight: 500;
    font-size: 0.85rem;
    cursor: pointer;
    border-left: 2px solid transparent;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.currency-label i { color: var(--gold); width: 20px; margin-right: 10px; }
[dir="rtl"] .currency-label i { margin-right: 0; margin-left: 10px; }

.dropdown-menu > li:hover > .currency-label {
    background: rgba(201,168,76,0.07);
    border-left-color: var(--gold);
    color: var(--gold);
}

.submenu {
    position: absolute;
    top: 0; right: 100%;
    width: 180px;
    background: rgba(12,12,20,0.98);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    list-style: none;
    opacity: 0; visibility: hidden;
    transform: translateX(10px);
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
    padding: 8px 0;
    margin-right: 5px;
}

[dir="rtl"] .submenu { right: auto; left: 100%; transform: translateX(-10px); margin-right: 0; margin-left: 5px; }
.dropdown-menu > li:hover .submenu { opacity: 1; visibility: visible; transform: translateX(0); }

.submenu li {
    padding: 10px 20px;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.85rem;
    letter-spacing: 0.5px;
}

.submenu li:hover { color: var(--white); background: rgba(255,255,255,0.06); padding-left: 26px; }
[dir="rtl"] .submenu li:hover { padding-left: 20px; padding-right: 26px; }

.menu-toggle { display: none; font-size: 1.4rem; cursor: pointer; color: var(--white); }

@keyframes pulseGlow { 0% { box-shadow: 0 0 15px var(--gold); } 50% { box-shadow: 0 0 30px var(--gold); } 100% { box-shadow: 0 0 15px var(--gold); } }

.animate-up { animation: fadeUp 0.6s ease forwards; opacity: 0; transform: translateY(20px); }
@keyframes fadeUp { 100% { opacity: 1; transform: translateY(0); } }

/* ======== SPA LOGIC ======== */
.page-view { display: none; min-height: 100vh; }
.page-view.active-page { display: block; animation: pageIn 0.7s cubic-bezier(0.25, 0.8, 0.25, 1) both; }

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

/* ======== HERO SLIDER ======== */
.hero-slider {
    position: relative;
    height: 100vh;
    overflow: hidden;
    background: #000;
}

.slide {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    opacity: 0;
    transform: scale(1.04);
    transition: opacity 1.2s ease, transform 8s ease;
}

.slide.active-slide { opacity: 1; transform: scale(1); }

.hero-content {
    height: 100%;
    display: flex;
    align-items: center;
}

.hero-text {
    max-width: 700px;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease 0.4s, transform 0.8s ease 0.4s;
}

.slide.active-slide .hero-text { opacity: 1; transform: translateY(0); }

.hero-text, .hero-content { position: relative; z-index: 5; }

.hero-tag {
    font-size: 0.72rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
    font-weight: 600;
}

.hero-text h1 {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 22px;
    font-style: italic;
}

.hero-text p {
    font-size: 1.1rem;
    color: rgba(245,242,236,0.7);
    margin-bottom: 40px;
    max-width: 520px;
    font-weight: 300;
}

.hero-btns { display: flex; gap: 20px; flex-wrap: wrap; position: relative; z-index: 10; }

.slider-controls {
    position: absolute;
    bottom: 40px; left: 50%;
    transform: translateX(-50%);
    display: flex; gap: 12px;
    z-index: 10;
}

.dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    cursor: pointer;
    transition: all 0.4s;
}

.dot.active {
    width: 30px;
    border-radius: 3px;
    background: var(--gold);
}

.hero-scroll-hint {
    position: absolute;
    bottom: 40px; right: 60px;
    display: flex; flex-direction: column;
    align-items: center; gap: 10px;
    color: rgba(245,242,236,0.4);
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px; height: 50px;
    background: linear-gradient(to bottom, var(--gold), transparent);
    animation: scrollPulse 2s infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ======== STATS ======== */
.stats-section {
    background: linear-gradient(135deg, rgba(15,12,25,0.95), rgba(8,8,15,0.98));
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    position: relative;
    z-index: 2;
}

.stats-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.stats-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    flex-wrap: wrap;
}

.stat-item {
    flex: 1;
    text-align: center;
    padding: 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-item h2 {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1;
    display: inline;
    font-family: var(--font-heading);
}

.stat-plus { font-family: var(--font-heading); font-size: 2.5rem; color: var(--gold); line-height: 1; }

.stat-item p {
    font-size: 0.75rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-top: 8px;
    font-weight: 500;
}

.stat-divider {
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, var(--glass-border-gold), transparent);
}

/* ======== CITIES ======== */
.cities-section { position: relative; }

.cities-tabs {
    display: flex;
    gap: 4px;
    margin: 0 auto 50px;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    border-radius: 40px;
    padding: 5px;
    width: fit-content;
}

.city-tab {
    padding: 12px 32px;
    border-radius: 40px;
    border: none;
    background: transparent;
    color: var(--text-secondary);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    transition: var(--transition);
}

.city-tab.active {
    background: linear-gradient(135deg, #a07830, var(--gold));
    color: #000;
    box-shadow: 0 4px 20px rgba(201,168,76,0.3);
}

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

.city-card {
    position: relative;
    height: 280px;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: var(--transition);
}

.city-card[data-region="usa"]::after {
    content: 'COMING SOON';
    position: absolute;
    top: 16px; right: 16px;
    background: rgba(0,0,0,0.8);
    color: var(--gold);
    padding: 6px 12px;
    border: 1px solid var(--gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 2px;
    z-index: 10;
    backdrop-filter: blur(4px);
}

.city-card.hidden { display: none; }

.city-card img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.city-card:hover img { transform: scale(1.08); }

.city-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.2) 60%, transparent 100%);
    transition: var(--transition);
}

.city-card:hover .city-overlay {
    background: linear-gradient(to top, rgba(0,0,0,0.9) 0%, rgba(201,168,76,0.1) 60%, transparent 100%);
}

.city-info {
    position: absolute;
    bottom: 24px; left: 24px;
    transform: translateY(5px);
    transition: var(--transition);
}

.city-card:hover .city-info { transform: translateY(0); }

.city-name {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 600;
    font-style: italic;
    color: var(--white);
}

.city-sub {
    font-size: 0.7rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-top: 4px;
}

/* ======== SERVICES ======== */
.detailed-services-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.service-row-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: var(--transition);
}

.service-row-card:hover {
    transform: translateY(-6px);
    border-color: var(--glass-border-gold);
}

.srv-img {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.srv-img img { height: 100%; transition: transform 0.7s ease; }
.service-row-card:hover .srv-img img { transform: scale(1.06); }

.srv-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,18,0.85), transparent 60%);
}

.srv-text {
    padding: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.srv-text h3.gold-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
}

.srv-text .btn-primary {
    align-self: flex-start;
    margin-top: 8px;
    padding: 12px 28px;
    font-size: 0.85rem;
}

.srv-icon {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--glass-border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.srv-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
}

.srv-text p { color: var(--text-secondary); font-size: 0.9rem; }

/* ======== FLEET ======== */
.car-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.car-card {
    overflow: hidden;
    transition: var(--transition);
}

.car-card.featured {
    border-color: var(--glass-border-gold);
    box-shadow: 0 10px 40px rgba(201,168,76,0.15);
}

.card-badge {
    position: absolute;
    top: 16px; right: 16px;
    background: linear-gradient(135deg, #a07830, var(--gold));
    color: #000;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    z-index: 5;
    display: flex; align-items: center; gap: 6px;
}

.car-image {
    height: 220px;
    overflow: hidden;
    position: relative;
}

.car-image img { height: 100%; transition: transform 0.7s ease; }
.car-card:hover .car-image img { transform: scale(1.07); }

.car-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10,10,18,0.9), transparent 50%);
}

.car-details { padding: 26px; }

.car-details h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-style: italic;
    margin-bottom: 8px;
}

.car-desc { color: var(--text-secondary); font-size: 0.85rem; margin-bottom: 16px; }

.specs {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.specs span {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid var(--glass-border);
    padding-top: 18px;
}

.price-val {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    line-height: 1;
}

.price-val small { font-size: 0.55rem; color: var(--text-secondary); margin-left: 2px; font-family: var(--font-body); }

/* ======== ABOUT PAGE ======== */
.about-hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 80px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 60% 40%, rgba(201,168,76,0.08) 0%, transparent 65%),
                radial-gradient(ellipse at 20% 70%, rgba(120,80,200,0.05) 0%, transparent 50%),
                linear-gradient(135deg, rgba(3,2,6,0.99), rgba(0,0,0,1));
    z-index: 0;
}

.about-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 80%, rgba(201,168,76,0.06) 0%, transparent 60%);
    pointer-events: none;
}

/* Geometric Shapes - inspired by the reference image */
.about-hero-shapes { position: absolute; inset: 0; pointer-events: none; z-index: 1; }

.shape {
    position: absolute;
    border-radius: 50%;
    background: transparent;
}

.shape-1 {
    width: 600px; height: 600px;
    border: 1px solid rgba(201,168,76,0.1);
    top: -100px; right: -100px;
    animation: shapeRotate 30s linear infinite;
    box-shadow: 0 0 40px rgba(201,168,76,0.04);
}

.shape-2 {
    width: 400px; height: 400px;
    border: 1px solid rgba(201,168,76,0.14);
    top: 50px; right: 50px;
    animation: shapeRotate 20s linear infinite reverse;
    box-shadow: 0 0 30px rgba(201,168,76,0.05);
}

.shape-3 {
    width: 250px; height: 250px;
    border: 1px solid rgba(201,168,76,0.18);
    top: 150px; right: 150px;
    animation: shapeRotate 15s linear infinite;
    box-shadow: 0 0 20px rgba(201,168,76,0.06);
}

.shape-1::before, .shape-2::before, .shape-3::before {
    content: '';
    position: absolute;
    width: 6px; height: 6px;
    background: var(--gold);
    border-radius: 50%;
    top: 50%; left: -3px;
    margin-top: -3px;
    box-shadow: 0 0 12px var(--gold);
}

@keyframes shapeRotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.about-hero-content { position: relative; z-index: 2; max-width: 780px; }

.about-tag-line {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 30px;
    font-size: 0.7rem;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 600;
}

.line-decor {
    flex: 1;
    max-width: 60px;
    height: 1px;
    background: var(--gold);
    opacity: 0.4;
}

.about-hero-title {
    font-size: clamp(3rem, 6vw, 5.5rem);
    font-weight: 600;
    line-height: 1.08;
    margin-bottom: 28px;
    font-style: italic;
}

.about-hero-sub {
    font-size: 1.05rem;
    color: rgba(245,242,236,0.65);
    max-width: 600px;
    font-weight: 300;
    line-height: 1.9;
}

/* Features Strip */
.about-features-strip {
    background: linear-gradient(135deg, rgba(12,10,22,0.95), rgba(6,6,10,0.98));
    border-top: 1px solid rgba(201,168,76,0.1);
    border-bottom: 1px solid rgba(201,168,76,0.1);
    padding: 60px 0;
}

.features-strip-grid {
    display: flex;
    align-items: flex-start;
    gap: 0;
}

.feat-strip-item {
    flex: 1;
    display: flex;
    gap: 20px;
    padding: 10px 40px;
    align-items: flex-start;
}

.feat-strip-divider {
    width: 1px;
    align-self: stretch;
    background: linear-gradient(to bottom, transparent, rgba(201,168,76,0.2), transparent);
    margin: 10px 0;
}

.feat-icon-wrap {
    width: 52px; height: 52px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--glass-border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.feat-strip-text h4 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-style: italic;
    margin-bottom: 6px;
}

.feat-strip-text p { font-size: 0.85rem; color: var(--text-secondary); line-height: 1.7; }

/* About Story */
.about-story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-visual { position: relative; }

.story-img-wrap {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 520px;
}

.story-img-wrap img { height: 100%; }

.story-img-border {
    position: absolute;
    top: 20px; right: -20px;
    bottom: -20px; left: 20px;
    border: 1px solid var(--glass-border-gold);
    border-radius: 20px;
    z-index: -1;
}

.story-badge {
    position: absolute;
    bottom: -30px; right: -20px;
    background: linear-gradient(135deg, #a07830, var(--gold));
    border-radius: 16px;
    padding: 24px 28px;
    text-align: center;
    box-shadow: 0 20px 50px rgba(0,0,0,0.6);
}

.badge-num { font-family: var(--font-heading); font-size: 2.5rem; font-weight: 700; display: block; }
.badge-text { font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; color: #000; }

.story-content { padding-left: 20px; }
.story-para { color: var(--text-secondary); margin-bottom: 24px; line-height: 1.9; font-size: 0.95rem; }

.story-stats {
    display: flex;
    gap: 40px;
    margin-top: 40px;
    padding-top: 40px;
    border-top: 1px solid var(--glass-border);
}

.sstats-item {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.sstats-item span:first-child {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
}

.sstats-item span:last-child {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.value-card {
    padding: 36px 28px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.value-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
}

.value-num {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 700;
    color: rgba(201,168,76,0.12);
    line-height: 1;
}

.value-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: var(--gold-dim);
    border: 1px solid var(--glass-border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-style: italic;
}

.value-card p { color: var(--text-secondary); font-size: 0.85rem; line-height: 1.8; }

/* Booking Form */

.booking-form-wrap {
    max-width: 1000px;
    margin: 0 auto;
}

.form-gold-bar {
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    position: absolute;
    top: 0; left: 10%; right: 10%;
}

.booking-widget {
    padding: 52px;
}

.form-section-label {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-weight: 600;
    margin-bottom: 22px;
    margin-top: 20px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--glass-border);
}

.form-section-label:first-of-type { margin-top: 0; }

.form-row {
    display: flex;
    gap: 20px;
    margin-bottom: 0;
}

.three-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.input-group {
    flex: 1;
    display: flex;
    flex-direction: column;
    margin-bottom: 24px;
    text-align: left;
}

[dir="rtl"] .input-group { text-align: right; }

.input-group label {
    font-size: 0.72rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
}

.input-group label i { color: var(--gold); font-size: 0.85rem; }

.input-group input,
.input-group select,
.input-group textarea {
    width: 100%;
    background: rgba(0,0,0,0.35);
    border: 1px solid rgba(255,255,255,0.07);
    color: var(--white);
    padding: 16px 20px;
    border-radius: 10px;
    outline: none;
    transition: var(--transition);
    font-size: 0.95rem;
    font-family: var(--font-body);
    box-shadow: inset 0 2px 8px rgba(0,0,0,0.4);
}

.input-group textarea { resize: vertical; min-height: 90px; }

.input-group input:focus,
.input-group select:focus,
.input-group textarea:focus {
    border-color: rgba(201,168,76,0.5);
    background: rgba(0,0,0,0.5);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.08), inset 0 2px 8px rgba(0,0,0,0.4);
}

.input-group input::placeholder,
.input-group textarea::placeholder { color: rgba(255,255,255,0.2); }

.input-group select { appearance: none; cursor: pointer; }
.input-group select option { background: #0a0a18; }

input[type="date"], input[type="time"] { color-scheme: dark; }

.form-submit-row {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

[dir="rtl"] .form-submit-row { text-align: right; }

.fare-label {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.price-estimate h3 {
    font-size: 2.8rem;
    line-height: 1;
    font-family: var(--font-heading);
}

.glow-text { text-shadow: 0 0 20px rgba(201,168,76,0.4); }

.form-status {
    margin-top: 20px; padding: 16px;
    border-radius: 10px;
    text-align: center;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.form-status.hidden { display: none; }
.form-status.success { background: rgba(46,204,113,0.1); color: #2ecc71; border: 1px solid rgba(46,204,113,0.3); }
.form-status.error { background: rgba(231,76,60,0.1); color: #e74c3c; border: 1px solid rgba(231,76,60,0.3); }

/* ======== VIP PAGE ======== */
.vip-hero {
    position: relative;
    min-height: 100vh;
    display: flex; align-items: center; justify-content: center;
    text-align: center;
    overflow: hidden;
}

.vip-hero-bg {
    position: absolute; inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.25);
}

.vip-hero-overlay {
    position: absolute; inset: 0;
    background: radial-gradient(ellipse at center, rgba(201,168,76,0.05) 0%, rgba(0,0,0,0.5) 70%);
}

/* Gold particles */
.vip-particles {
    position: absolute; inset: 0;
    pointer-events: none;
}

.vip-particles span {
    position: absolute;
    width: 3px; height: 3px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 6s infinite;
}

.vip-particles span:nth-child(1) { left: 15%; animation-delay: 0s; }
.vip-particles span:nth-child(2) { left: 30%; animation-delay: 1s; }
.vip-particles span:nth-child(3) { left: 50%; animation-delay: 2s; }
.vip-particles span:nth-child(4) { left: 70%; animation-delay: 0.5s; }
.vip-particles span:nth-child(5) { left: 85%; animation-delay: 1.5s; }
.vip-particles span:nth-child(6) { left: 20%; animation-delay: 2.5s; }
.vip-particles span:nth-child(7) { left: 40%; animation-delay: 3s; }
.vip-particles span:nth-child(8) { left: 60%; animation-delay: 3.5s; }
.vip-particles span:nth-child(9) { left: 75%; animation-delay: 4s; }
.vip-particles span:nth-child(10) { left: 90%; animation-delay: 4.5s; }

@keyframes particleFloat {
    0% { bottom: -10px; opacity: 0; }
    20% { opacity: 0.6; }
    80% { opacity: 0.3; }
    100% { bottom: 110%; opacity: 0; }
}

.vip-hero-content {
    position: relative;
    z-index: 2;
    padding: 120px 0 80px;
}

.vip-crown-icon {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 30px;
    filter: drop-shadow(0 0 20px rgba(201,168,76,0.5));
    animation: crownPulse 3s ease infinite;
}

@keyframes crownPulse {
    0%, 100% { transform: scale(1); filter: drop-shadow(0 0 20px rgba(201,168,76,0.5)); }
    50% { transform: scale(1.08); filter: drop-shadow(0 0 35px rgba(201,168,76,0.8)); }
}

.vip-title {
    font-size: clamp(3.5rem, 7vw, 7rem);
    font-weight: 600;
    font-style: italic;
    line-height: 1.05;
    margin-bottom: 24px;
    text-shadow: 0 0 60px rgba(201,168,76,0.2);
}

.vip-sub {
    font-size: 1.1rem;
    color: rgba(245,242,236,0.6);
    max-width: 600px;
    margin: 0 auto 40px;
    font-weight: 300;
}

.vip-hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin: 40px 0;
    color: var(--gold);
    font-size: 0.7rem;
}

.vip-hero-divider span {
    width: 80px; height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold));
}

.vip-hero-divider span:last-child { background: linear-gradient(90deg, var(--gold), transparent); }

.vip-hero-perks {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.vip-hero-perks span {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.8rem;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: rgba(245,242,236,0.7);
    font-weight: 500;
}

/* VIP Features */
.vip-features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.vip-feature-card {
    overflow: hidden;
    transition: var(--transition);
}

.vip-feature-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
}

.vip-f-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}

.vip-f-img img { height: 100%; transition: transform 0.7s ease; }
.vip-feature-card:hover .vip-f-img img { transform: scale(1.07); }

.vip-f-content { padding: 32px; }

.vip-f-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--gold-dim);
    border: 1px solid var(--glass-border-gold);
    display: flex; align-items: center; justify-content: center;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 16px;
}

.vip-f-content h3 {
    font-size: clamp(1.3rem, 3vw, 1.6rem);
    font-style: italic;
    margin-bottom: 12px;
}

.vip-f-content p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 20px; line-height: 1.8; }

.vip-list { list-style: none; margin-bottom: 24px; }
.vip-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    color: rgba(245,242,236,0.7);
    margin-bottom: 10px;
}

/* VIP Fleet */
.vip-fleet-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.vip-car-card { overflow: hidden; transition: var(--transition); position: relative; }

.vip-car-card:hover {
    transform: translateY(-8px);
    border-color: var(--glass-border-gold);
    box-shadow: 0 25px 70px rgba(0,0,0,0.7), 0 0 0 1px rgba(201,168,76,0.2);
}

.vip-car-card.featured-vip {
    border-color: rgba(201,168,76,0.35);
    box-shadow: 0 10px 40px rgba(201,168,76,0.1);
}

.vip-car-img { height: 260px; overflow: hidden; position: relative; }
.vip-car-img img { height: 100%; transition: transform 0.7s ease; }
.vip-car-card:hover .vip-car-img img { transform: scale(1.06); }

.vip-car-tag {
    position: absolute;
    top: 16px; left: 16px;
    background: linear-gradient(135deg, rgba(10,10,20,0.9), rgba(15,12,30,0.9));
    border: 1px solid var(--glass-border-gold);
    color: var(--gold);
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 2px;
    text-transform: uppercase;
    padding: 7px 16px;
    border-radius: 20px;
    z-index: 5;
    backdrop-filter: blur(10px);
    display: flex; align-items: center; gap: 6px;
}

.vip-car-tag.ultimate {
    background: linear-gradient(135deg, #a07830, var(--gold));
    border: none;
    color: #000;
}

.vip-car-info { padding: 28px; }

.vip-car-info h3 {
    font-family: var(--font-heading);
    font-size: clamp(1.4rem, 3.5vw, 1.8rem);
    font-style: italic;
    margin-bottom: 10px;
}

.vip-car-info > p { color: var(--text-secondary); font-size: 0.88rem; margin-bottom: 18px; line-height: 1.7; }

.vip-car-specs { display: flex; gap: 18px; margin-bottom: 20px; flex-wrap: wrap; }
.vip-car-specs span { font-size: 0.78rem; color: var(--text-secondary); display: flex; align-items: center; gap: 6px; }

.vip-price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 18px;
    border-top: 1px solid var(--glass-border);
}

/* VIP Membership */
.membership-wrap {
    padding: 70px;
    display: flex;
    gap: 80px;
    align-items: center;
}

.membership-content { flex: 1; }

.membership-icon {
    font-size: 3.5rem;
    margin-bottom: 24px;
    filter: drop-shadow(0 0 15px rgba(201,168,76,0.4));
}

.membership-content h2 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-style: italic;
    margin-bottom: 20px;
}

.membership-content p { color: var(--text-secondary); line-height: 1.9; margin-bottom: 36px; }

.membership-perks {
    flex: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.mperk {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.88rem;
    font-weight: 500;
    padding: 16px 20px;
    background: rgba(201,168,76,0.04);
    border: 1px solid rgba(201,168,76,0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.mperk:hover {
    background: rgba(201,168,76,0.08);
    border-color: rgba(201,168,76,0.25);
    transform: translateX(4px);
}

/* ======== WHATSAPP ======== */
.whatsapp-btn {
    position: fixed;
    bottom: 36px; left: 36px;
    width: 58px; height: 58px;
    background: linear-gradient(135deg, #03141279, #1f2a238f);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem;
    color: #fff;
    border: 1px solid rgba(240, 193, 4, 0.688);
    z-index: 999;
    box-shadow: 0 6px 25px rgba(109, 109, 109, 0.373);
    transition: var(--transition);
    animation: waBounce 3s ease infinite;
}

.whatsapp-btn:hover { transform: scale(1.15); box-shadow: 0 10px 35px rgba(116, 110, 110, 0.649); }

@keyframes waBounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ======== FOOTER ======== */
footer {
    background: #030307;
    border-top: 1px solid rgba(201,168,76,0.08);
    padding: 90px 0 0;
    position: relative;
    overflow: hidden;
}

.footer-glow {
    position: absolute;
    top: 0; left: 50%; transform: translateX(-50%);
    width: 600px; height: 1px;
    background: linear-gradient(90deg, transparent, rgba(201,168,76,0.4), transparent);
}

.footer-top-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.4fr;
    gap: 60px;
    margin-bottom: 60px;
}

.footer-logo {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 18px;
}

.footer-brand-desc {
    font-size: 0.88rem;
    line-height: 1.9;
    margin-bottom: 30px;
}

.footer-socials { display: flex; gap: 12px; }

.social-icon {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.04);
    border: 1px solid var(--glass-border);
    display: flex; align-items: center; justify-content: center;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
}

.social-icon:hover {
    background: var(--gold-dim);
    border-color: var(--glass-border-gold);
    color: var(--gold);
    transform: translateY(-3px);
}

.social-icon.whatsapp-icon:hover { background: rgba(37,211,102,0.1); border-color: rgba(37,211,102,0.3); color: #25D366; }

.footer-col-title {
    font-size: 0.72rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 28px;
    font-weight: 600;
}

.footer-links-list { list-style: none; }

.footer-links-list li { margin-bottom: 14px; }

.footer-links-list a {
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

.footer-links-list a::before {
    content: '–';
    color: var(--gold);
    font-size: 0.7rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

.footer-links-list a:hover { color: var(--white); }
.footer-links-list a:hover::before { opacity: 1; transform: translateX(0); }

[dir="rtl"] .footer-links-list a { flex-direction: row-reverse; }

.footer-contact-list { list-style: none; }

.footer-contact-list li {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    margin-bottom: 16px;
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.footer-contact-list i { margin-top: 2px; font-size: 0.8rem; }

.footer-cities-bar {
    padding: 28px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    gap: 24px;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 0;
}

.footer-cities-label {
    font-size: 0.68rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 700;
    flex-shrink: 0;
}

.footer-cities-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-cities-chips span {
    font-size: 0.75rem;
    color: var(--text-secondary);
    padding: 4px 12px;
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    transition: var(--transition);
    letter-spacing: 0.5px;
}

.footer-cities-chips span:hover {
    color: var(--gold);
    border-color: rgba(201,168,76,0.3);
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: rgba(138,138,154,0.6);
    font-size: 0.82rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 12px;
}

.footer-legal a { color: inherit; transition: var(--transition); }
.footer-legal a:hover { color: var(--gold); }
.footer-legal span { opacity: 0.4; }

/* ======== BRAND LOGO & PREMIUM OVERLAY ======== */
.brand-logo {
    height: 95px;
    width: auto;
    object-fit: contain;
    vertical-align: middle;
    margin-right: 12px;
}
.logo-link .brand-logo {
    transform: translateY(6px);
}
[dir="rtl"] .brand-logo { margin-right: 0; margin-left: 12px; }

.premium-font-overlay {
    font-family: 'Tajawal', sans-serif;
    font-weight: 800;
    background: linear-gradient(135deg, #c9a84c 0%, #e8c87a 50%, #a07830 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(2px 4px 6px rgba(0,0,0,0.8)) drop-shadow(0 0 15px rgba(201,168,76,0.3));
    display: inline-block;
    direction: rtl;
    line-height: 1.4;
    font-size: clamp(2.5rem, 8vw, 4rem);
    pointer-events: none;
    text-align: center;
    padding: 0 10px;
}

[dir="ltr"] .premium-font-overlay {
    direction: ltr;
}

.premium-font-overlay::after {
    content: '';
    display: block;
    width: 60%;
    height: 3px;
    background: linear-gradient(90deg, transparent, #c9a84c, transparent);
    margin: 12px auto 0;
    border-radius: 2px;
}



/* Hide Prices Temporarily */
.price-val, .price-estimate {
    display: none !important;
}

/* ======== RESPONSIVE ======== */
@media (max-width: 1150px) {
    .detailed-services-grid { grid-template-columns: repeat(2, 1fr); }
    .car-grid, .vip-fleet-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-text h1 { font-size: 3.5rem; }
    .brand-logo { height: 75px; }
    .footer-brand .brand-logo { height: 130px; }
    .nav-links {
        position: fixed; top: 70px; right: -100%; left: auto;
        width: 260px; height: 100vh;
        flex-direction: column; background: rgba(5,5,8,0.97);
        backdrop-filter: blur(20px); padding: 30px 24px;
        transition: right 0.4s ease-out, left 0.4s ease-out; z-index: 999;
        border-left: 1px solid rgba(201,168,76,0.1);
    }
    .nav-links.active-menu { right: 0; }
    
    [dir="rtl"] .nav-links { right: auto; left: -100%; border-left: none; border-right: 1px solid rgba(201,168,76,0.1); }
    [dir="rtl"] .nav-links.active-menu { left: 0; right: auto; box-shadow: 5px 0 20px rgba(0,0,0,0.5); }
    
    /* Mobile Language Menu Fixes */
    .dropdown-menu { width: 160px; right: 0 !important; left: auto !important; }
    [dir="rtl"] .dropdown-menu { left: 0 !important; right: auto !important; }
    .submenu { 
        position: static; 
        width: 100%; 
        transform: none; 
        box-shadow: none; 
        border: none; 
        background: rgba(255,255,255,0.03); 
        padding: 5px 0;
        margin-top: 5px;
        display: none;
    }
    .has-submenu:hover .submenu { display: block; opacity: 1; visibility: visible; }
    .nav-links li { margin: 18px 0; }
    .menu-toggle { display: block; }
    .membership-wrap { flex-direction: column; padding: 40px; gap: 40px; }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .features-strip-grid { flex-wrap: wrap; }
    .feat-strip-item { flex: 1 1 45%; padding: 10px 20px; }
    .feat-strip-divider { display: none; }
}

@media (max-width: 768px) {
    .container { max-width: 95%; padding: 0 16px; }
    .section-padding { padding: 80px 0; }
    .section-padding-sm { padding: 50px 0; }
    .section-header { margin-bottom: 40px; }
    .about-story-grid, .vip-features-grid { grid-template-columns: 1fr; }
    .about-story-grid { gap: 40px; }
    .hero-text h1 { font-size: 2.5rem; }
    
    .footer-top-grid { grid-template-columns: 1fr; text-align: center; gap: 40px; }
    .footer-brand { align-items: center; text-align: center; display: flex; flex-direction: column; }
    .footer-logo { display: flex; flex-direction: column; align-items: center; justify-content: center; font-size: clamp(2.2rem, 8vw, 3rem); margin-bottom: 25px; width: 100%; text-align: center; }
    .brand-logo { height: 90px; margin-right: 0 !important; margin-left: 0 !important; margin-bottom: 16px; display: block; }
    .footer-brand .brand-logo { height: 160px; margin-bottom: 20px; }
    .footer-socials { justify-content: center; width: 100%; }
    .footer-cities-chips { justify-content: center; }
    .footer-cities-bar { flex-direction: column; text-align: center; }
    .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
    .stat-divider { display: none; }
    .stats-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 15px; }
    .stat-item { flex: none; width: 100%; padding: 10px; }
    .stat-item h2 { font-size: 2.8rem; }
    .form-row.three-cols { grid-template-columns: 1fr; }
    .form-row { flex-direction: column; }
    .booking-widget { padding: 30px 20px; }
    .car-grid, .detailed-services-grid { grid-template-columns: 1fr; gap: 24px; }
    .car-card .car-details { padding: 24px 20px; }
    .brand-logo { height: 55px; margin-right: 8px; }
    .logo { letter-spacing: 1px; }
    .story-content { padding-left: 0; }
    .story-img-wrap { height: auto; }
    .story-badge { position: relative; bottom: auto; right: auto; margin-top: -20px; display: inline-block; }
    .about-hero { min-height: 100vh; padding: 120px 0 60px; }
    .vip-hero-content { padding: 100px 0 60px; }
    .vip-title { font-size: clamp(2.5rem, 5vw, 5rem); }
    .vip-features-grid { gap: 20px; }
    .values-grid { grid-template-columns: 1fr; gap: 16px; }
    .value-card { padding: 28px 20px; }
    .features-strip-grid { flex-direction: column; }
    .feat-strip-item { flex: 1 1 100%; padding: 10px 0; }
    .cities-grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .cities-tabs { flex-wrap: wrap; justify-content: center; }
    .city-tab { padding: 10px 20px; font-size: 0.72rem; }
    .city-card { height: 220px; }
}

@media (max-width: 480px) {
    .container { max-width: 100%; padding: 0 14px; }
    .section-padding { padding: 60px 0; }
    .hero-text h1 { font-size: 1.8rem; }
    .premium-font-overlay { font-size: 1.3rem !important; margin-bottom: 5px !important; }
    .about-hero-title .premium-font-overlay { font-size: 1.4rem !important; }
    .section-title { font-size: 1.6rem; }
    .hero-btns { flex-direction: column; gap: 12px; }
    .hero-btns .btn-primary, .hero-btns .btn-ghost { width: 100%; text-align: center; padding: 14px 20px; font-size: 0.85rem; }
    .membership-perks { grid-template-columns: 1fr; }
    .membership-wrap { padding: 28px 18px; gap: 30px; }
    .form-submit-row { flex-direction: column; align-items: stretch; }
    .brand-logo { height: 45px; margin-right: 5px; }
    .logo { font-size: 0.95rem; letter-spacing: 0.5px; }
    .navbar { padding: 6px 0; }
    .settings-btn { width: 36px; height: 36px; font-size: 0.85rem; }
    .stat-item h2 { font-size: 2.2rem; }
    .btn-primary, .btn-secondary, .btn-ghost { padding: 12px 24px; font-size: 0.8rem; }
    .car-image { height: 180px; }
    .vip-car-img { height: 200px; }
    .vip-f-img { height: 180px; }
    .story-img-wrap { height: auto; }
    .about-hero { min-height: auto; padding: 100px 0 50px; }
    .cities-grid { grid-template-columns: 1fr; gap: 14px; }
    .city-card { height: 180px; }
    .city-tab { padding: 8px 16px; font-size: 0.68rem; letter-spacing: 1px; }
    .nav-links { width: 220px; top: 60px; }
    .vip-fleet-grid { grid-template-columns: 1fr !important; }
    .membership-content h2 { font-size: 1.5rem; }
}
