@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@300;400;500;600;700;800;900&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   SAWA RENT CAR — Premium Modern Design System
   Dark Luxury Theme · Glassmorphism · Smooth Micro-Animations
   ============================================================ */

/* ─── CSS Custom Properties ─── */
:root {
    --primary: #2563eb;
    --primary-light: #3b82f6;
    --primary-dark: #1d4ed8;
    --primary-glow: rgba(37, 99, 235, .25);
    --accent: #f59e0b;
    --accent-dark: #d97706;
    --success: #10b981;
    --danger: #ef4444;
    --warning: #f59e0b;
    --info: #06b6d4;

    --dark: #0a0f1e;
    --dark-2: #0f172a;
    --dark-3: #1e293b;
    --dark-4: #334155;
    --light: #f1f5f9;
    --lighter: #f8fafc;

    --text: #1e293b;
    --text-muted: #64748b;
    --text-light: #94a3b8;
    --border: #e2e8f0;
    --border-dark: rgba(255, 255, 255, .08);

    --radius-sm: 6px;
    --radius: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.08);
    --shadow: 0 4px 16px rgba(0, 0, 0, 0.10);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.14);
    --shadow-xl: 0 24px 64px rgba(0, 0, 0, 0.18);
    --shadow-primary: 0 8px 28px rgba(37, 99, 235, 0.35);

    --transition: all 0.28s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);

    --nav-height: 72px;
    --section-py: 96px;
}

/* ─── RTL (Right-to-Left) Support ─── */
html[dir="rtl"],
html[dir="rtl"] body {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .booking-wrapper {
    text-align: right;
}

[dir="rtl"] .booking-info {
    text-align: right;
}

[dir="rtl"] .booking-info-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .booking-trust {
    flex-direction: row-reverse;
}

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

[dir="rtl"] .form-row {
    flex-direction: row-reverse;
}

[dir="rtl"] .section-title,
[dir="rtl"] .section-sub {
    text-align: right;
}
}

/* ─── Reset & Base ─── */
*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: 'Cairo', 'Inter', sans-serif;
    color: var(--text);
    background: var(--lighter);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    transition: var(--transition);
}

/* ─── Scrollbar ─── */
::-webkit-scrollbar {
    width: 6px;
}

::-webkit-scrollbar-track {
    background: var(--dark-2);
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 4px;
}

/* ─────────────────────────────────────────────────
   NAVBAR
───────────────────────────────────────────────── */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(10, 15, 30, .92);
    -webkit-backdrop-filter: blur(18px) saturate(180%);
    backdrop-filter: blur(18px) saturate(180%);
    border-bottom: 1px solid var(--border-dark);
    transition: var(--transition);
}

.site-header.scrolled {
    background: rgba(10, 15, 30, .98);
    box-shadow: 0 4px 24px rgba(0, 0, 0, .4);
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    height: var(--nav-height);
    gap: 20px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.nav-logo:hover .nav-logo-icon {
    transform: rotate(-8deg) scale(1.08);
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-name {
    font-size: 18px;
    font-weight: 800;
    color: white;
    letter-spacing: .5px;
}

.nav-logo-sub {
    font-size: 10px;
    font-weight: 400;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Nav links */
.nav-links {
    display: flex;
    list-style: none;
    align-items: center;
    gap: 4px;
    flex: 1;
    justify-content: center;
}

.nav-links a {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    font-weight: 500;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-links a:hover,
.nav-links a.active {
    color: white;
    background: rgba(255, 255, 255, .08);
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 2px;
    background: var(--primary-light);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after {
    width: 60%;
}

/* Nav CTA */
.nav-cta {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.btn-nav-admin {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 9px 18px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white !important;
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
}

.btn-nav-admin:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .45);
}

/* Mobile nav toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 32px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    height: 2px;
    background: white;
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle.open span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 6px);
}

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.open span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile menu */
.nav-mobile {
    display: none;
    position: fixed;
    inset: var(--nav-height) 0 0;
    background: rgba(10, 15, 30, .97);
    -webkit-backdrop-filter: blur(20px);
    backdrop-filter: blur(20px);
    z-index: 999;
    padding: 24px;
    flex-direction: column;
    gap: 8px;
    animation: slideDown .25s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.nav-mobile.open {
    display: flex;
}

.nav-mobile a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    color: rgba(255, 255, 255, .85);
    font-size: 16px;
    font-weight: 500;
    border-radius: var(--radius);
    text-decoration: none;
    border: 1px solid var(--border-dark);
    transition: var(--transition);
}

.nav-mobile a:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* ─────────────────────────────────────────────────
   HERO SECTION
───────────────────────────────────────────────── */
.site-hero {
    position: relative;
    min-height: calc(100vh - var(--nav-height));
    background: linear-gradient(135deg, #0a0f1e 0%, #0c1a3e 50%, #0f172a 100%);
    display: flex;
    align-items: center;
    overflow: hidden;
}

.site-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 80% 60% at 20% 50%, rgba(37, 99, 235, .2) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 30%, rgba(6, 182, 212, .12) 0%, transparent 55%);
    pointer-events: none;
}

/* Animated grid dots */
.site-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 48px 48px;
    animation: gridDrift 30s linear infinite;
    pointer-events: none;
}

@keyframes gridDrift {
    0% {
        background-position: 0 0;
    }

    100% {
        background-position: 48px 48px;
    }
}

.hero-bg-img {
    position: absolute;
    inset: 0;
    object-fit: cover;
    width: 100%;
    height: 100%;
    opacity: .18;
}

.hero-container {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-right {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-calc {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(30, 64, 175, 0.15), 0 8px 24px rgba(0, 0, 0, 0.08);
    text-align: center;
    max-width: 480px;
    width: 100%;
    border: 1px solid rgba(30, 64, 175, 0.08);
    position: relative;
    overflow: hidden;
}

.hero-calc::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
}

.hero-calc .deal-section-title {
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 30px;
    font-size: 1.6rem;
    position: relative;
}

.hero-calc .deal-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    font-weight: 600;
    color: #475569;
}

.hero-calc .deal-slider-label span:first-child {
    color: #475569;
}

.hero-calc .deal-slider-value {
    background: linear-gradient(135deg, #1e40af, #3b82f6);
    color: white;
    padding: 8px 18px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 800;
    box-shadow: 0 4px 15px rgba(30, 64, 175, 0.4);
    transition: all 0.3s ease;
    display: inline-block;
    min-width: 70px;
    text-align: center;
}

.hero-calc .deal-slider-container {
    margin: 30px 0;
}

.hero-calc .deal-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    font-weight: 600;
    font-size: 1rem;
}

.hero-calc .deal-slider-label span:first-child {
    color: #475569;
}

.hero-calc .deal-slider {
    width: 100%;
    height: 12px;
    border-radius: 12px;
    background: #e2e8f0;
    outline: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    margin: 15px 0;
    position: relative;
    cursor: pointer;
}

.hero-calc .deal-slider::-webkit-slider-runnable-track {
    width: 100%;
    height: 12px;
    border-radius: 12px;
    background: linear-gradient(to left, #e2e8f0 100%, #1e40af 0%);
    transition: background 0.3s ease;
}

.hero-calc .deal-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #3b82f6, #1e40af);
    cursor: pointer;
    border: 5px solid #ffffff;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.5),
        0 0 0 3px rgba(30, 64, 175, 0.1),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
    margin-top: -10px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 2;
}

.hero-calc .deal-slider::-webkit-slider-thumb:hover {
    transform: scale(1.15) translateY(-2px);
    box-shadow: 
        0 8px 25px rgba(30, 64, 175, 0.6),
        0 0 0 5px rgba(30, 64, 175, 0.15),
        inset 0 2px 4px rgba(255, 255, 255, 0.3);
}

.hero-calc .deal-slider::-webkit-slider-thumb:active {
    transform: scale(1.1) translateY(-1px);
    cursor: grabbing;
    box-shadow: 
        0 6px 20px rgba(30, 64, 175, 0.7),
        0 0 0 4px rgba(30, 64, 175, 0.2),
        inset 0 2px 6px rgba(0, 0, 0, 0.1);
}

.hero-calc .deal-slider::-moz-range-track {
    width: 100%;
    height: 12px;
    border-radius: 12px;
    background: #e2e8f0;
}

.hero-calc .deal-slider::-moz-range-thumb {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: linear-gradient(145deg, #3b82f6, #1e40af);
    cursor: pointer;
    border: 5px solid #ffffff;
    box-shadow: 
        0 4px 15px rgba(30, 64, 175, 0.5),
        0 0 0 3px rgba(30, 64, 175, 0.1);
    transition: all 0.3s ease;
}

.hero-calc .deal-slider::-moz-range-thumb:hover {
    transform: scale(1.15);
    box-shadow: 
        0 8px 25px rgba(30, 64, 175, 0.6),
        0 0 0 5px rgba(30, 64, 175, 0.15);
}

.hero-calc .deal-slider:focus {
    outline: none;
}

.hero-calc .deal-slider:focus::-webkit-slider-thumb {
    box-shadow: 
        0 8px 25px rgba(30, 64, 175, 0.6),
        0 0 0 5px rgba(59, 130, 246, 0.3);
}

.hero-calc .deal-slider-days {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    padding: 0 8px;
}

.hero-calc .deal-slider-days span {
    color: #475569;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.hero-calc .deal-slider-days span:hover {
    color: #1e40af;
}

.hero-calc .deal-calc-result {
    background: linear-gradient(135deg, #eff6ff, #dbeafe);
    padding: 24px;
    border-radius: 16px;
    text-align: center;
    margin: 24px 0;
    border: 1px solid rgba(59, 130, 246, 0.1);
}

.hero-calc .deal-price-amount {
    font-size: 3rem;
    font-weight: 900;
    color: #1e40af;
    line-height: 1;
    text-shadow: 0 2px 4px rgba(30, 64, 175, 0.1);
}

.hero-calc .deal-price-currency {
    font-size: 1.8rem;
    color: #1e40af;
    margin-left: 4px;
    font-weight: 700;
}

.hero-calc .deal-price-meta {
    color: #64748b;
    font-size: 1rem;
    margin-top: 8px;
}

.hero-calc .deal-savings-display {
    color: #059669;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 10px;
    justify-content: center;
    margin: 20px 0;
    padding: 12px 20px;
    background: linear-gradient(135deg, #ecfdf5, #d1fae5);
    border-radius: 12px;
    border: 1px solid rgba(5, 150, 105, 0.15);
}

.hero-calc .deal-savings-display i {
    color: #059669;
    font-size: 1.2rem;
}

.hero-calc .deal-comparison {
    position: relative;
    padding: 20px;
    background: #f8fafc;
    border-radius: 16px;
    margin: 20px 0;
}

.hero-calc .deal-comparison-bar {
    margin-bottom: 20px;
}

.hero-calc .deal-comparison-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.95rem;
    font-weight: 600;
}

.hero-calc .deal-comparison-label span:first-child {
    color: #64748b;
}

.hero-calc .deal-comparison-label span:last-child {
    color: #334155;
    font-weight: 800;
}

.hero-calc .deal-comparison-track {
    height: 14px;
    background: #e2e8f0;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.05);
}

.hero-calc .deal-comparison-fill {
    height: 100%;
    border-radius: 10px;
    transition: width 0.5s ease-in-out;
}

.hero-calc .deal-comparison-fill.deal-comparison-regular {
    background: linear-gradient(90deg, #94a3b8, #cbd5e1);
}

.hero-calc .deal-comparison-fill.deal-comparison-deal {
    background: linear-gradient(90deg, #1e40af, #3b82f6, #60a5fa);
    box-shadow: 0 2px 8px rgba(30, 64, 175, 0.3);
}

.hero-calc .deal-savings-badge {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #78350f;
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.9rem;
    margin-top: 12px;
    box-shadow: 0 4px 12px rgba(251, 191, 36, 0.4);
}

.hero-calc .deal-slide-btn {
    background: linear-gradient(135deg, #1e40af, #2563eb);
    color: white;
    border: none;
    padding: 16px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    width: 100%;
    box-shadow: 0 8px 24px rgba(30, 64, 175, 0.35);
    margin-top: 20px;
    flex-direction: column;
}

.hero-calc .deal-slide-btn:hover {
    background: linear-gradient(135deg, #1e3a8a, #1e40af);
    transform: translateY(-3px);
    box-shadow: 0 12px 32px rgba(30, 64, 175, 0.45);
}

.hero-calc .deal-slide-btn i {
    font-size: 1.2rem;
}

.hero-calc .deal-btn-info {
    background: rgba(255, 255, 255, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-top: 8px;
}

.hero-calc #savingsAmount {
    color: #059669;
    font-weight: 800;
}

.hero-calc #totalPrice {
    color: #1e40af;
}

.hero-calc #regularPrice {
    color: #64748b;
}

.hero-calc #dealPrice {
    color: #1e40af;
    font-weight: 800;
}

/* First slide - Calculator */
.hero-carousel .carousel-item[data-slide-type="calculator"] {
    background: transparent;
}

/* Calculator Card in Hero */
.hero-calc .deal-calc-card {
    background: transparent;
    box-shadow: none;
    border: none;
    padding: 0;
}

.hero-calc .deal-slider-label {
    color: rgba(255, 255, 255, 0.85);
}

.hero-calc .deal-slider-value {
    background: linear-gradient(135deg, var(--primary), #1d4ed8);
    color: white;
}

.hero-calc .deal-slider {
    background: rgba(255, 255, 255, 0.2);
}

.hero-calc .deal-slider-days span {
    color: rgba(255, 255, 255, 0.6);
}

.hero-calc .deal-comparison-track {
    background: rgba(255, 255, 255, 0.2);
}

.hero-calc .deal-comparison-fill.deal-comparison-regular {
    background: rgba(255, 255, 255, 0.5);
}

.hero-calc .deal-comparison-fill.deal-comparison-deal {
    background: linear-gradient(90deg, var(--success), #16a34a);
}

/* First slide - Calculator */
.hero-carousel .carousel-item[data-slide-type="calculator"] {
    background: transparent;
}

.hero-calc #savingsAmount {
    color: #28a745;
}

/* Hero carousel full height */
.hero-carousel {
    position: absolute;
    inset: 0;
    z-index: 1;
}

.hero-carousel .carousel-inner,
.hero-carousel .carousel-item,
.hero-carousel .carousel-item .hero-container {
    height: 100%;
    min-height: 600px;
}

.hero-carousel .carousel-item > .hero-container {
    display: grid !important;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1280px;
    margin: 0 auto;
    padding: 80px 24px;
}

.hero-carousel .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-carousel .hero-title,
.hero-carousel .hero-subtitle,
.hero-carousel .hero-badge,
.hero-carousel .trust-item {
    color: white;
}

/* ─── Hero Carousel ─── */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-inner {
    width: 100%;
    height: 100%;
}

.hero-carousel .carousel-item {
    height: 100%;
}

.hero-carousel .carousel-item > .hero-container {
    height: 100%;
}

.hero-indicators {
    position: absolute;
    bottom: 120px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 8px;
    z-index: 100;
    display: flex !important;
}

.hero-indicators button {
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid rgba(255, 255, 255, 0.7);
    margin: 0;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s;
    opacity: 1 !important;
}

.hero-indicators button:hover {
    background: rgba(255, 255, 255, 0.8);
}

.hero-indicators button.active {
    background: white;
    transform: scale(1.3);
    border-color: white;
}

.hero-control-prev,
.hero-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 1 !important;
    transition: all 0.3s;
    z-index: 1000 !important;
    display: flex !important;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.hero-control-prev:hover,
.hero-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-50%) scale(1.1);
}

.hero-control-prev { left: 20px; }
.hero-control-next { right: 20px; }

.hero-control-prev:hover,
.hero-control-next:hover {
    background: rgba(255, 255, 255, 0.2);
    opacity: 1;
}

.hero-control-icon {
    font-size: 24px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Hero Deal Cards */
.hero-deal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 40px;
    text-align: center;
    max-width: 400px;
    width: 100%;
}

.hero-deal-card.best-value {
    border-color: rgba(59, 130, 246, 0.3);
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(30, 64, 175, 0.2));
}

.hero-deal-card.max-savings {
    border-color: rgba(34, 197, 94, 0.3);
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.1), rgba(5, 150, 105, 0.2));
}

.hero-deal-badge {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 700;
    margin-bottom: 20px;
}

.best-value .hero-deal-badge {
    background: linear-gradient(135deg, #3b82f6, #1d4ed8);
    color: white;
}

.max-savings .hero-deal-badge {
    background: linear-gradient(135deg, #22c55e, #16a34a);
    color: white;
}

.hero-deal-days {
    margin-bottom: 16px;
}

.hero-deal-days-num {
    display: block;
    font-size: 72px;
    font-weight: 900;
    color: white;
    line-height: 1;
}

.hero-deal-days-label {
    font-size: 20px;
    color: rgba(255, 255, 255, 0.7);
}

.hero-deal-price {
    margin-bottom: 8px;
}

.hero-deal-currency {
    font-size: 28px;
    color: white;
    vertical-align: top;
}

.hero-deal-amount {
    font-size: 56px;
    font-weight: 900;
    color: white;
}

.hero-deal-perday {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 16px;
}

.hero-deal-savings {
    display: inline-block;
    padding: 8px 20px;
    background: rgba(34, 197, 94, 0.2);
    border: 1px solid rgba(34, 197, 94, 0.3);
    border-radius: 50px;
    color: #4ade80;
    font-weight: 600;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37, 99, 235, .18);
    border: 1px solid rgba(59, 130, 246, .35);
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .5px;
    margin-bottom: 24px;
    animation: fadeInUp .6s ease both;
}

.hero-badge i {
    font-size: 10px;
}

.hero-title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    color: white;
    line-height: 1.15;
    margin-bottom: 20px;
    animation: fadeInUp .6s ease .1s both;
}

.hero-title .highlight {
    background: linear-gradient(135deg, var(--primary-light), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 17px;
    color: rgba(255, 255, 255, .65);
    margin-bottom: 36px;
    max-width: 480px;
    animation: fadeInUp .6s ease .2s both;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: fadeInUp .6s ease .3s both;
}

.btn-primary-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 15px;
    font-weight: 700;
    border-radius: var(--radius);
    text-decoration: none;
    box-shadow: var(--shadow-primary);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-primary-hero:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 40px rgba(37, 99, 235, .5);
    color: white;
}

.btn-outline-hero {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 28px;
    background: rgba(255, 255, 255, .06);
    border: 1.5px solid rgba(255, 255, 255, .2);
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    font-weight: 600;
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
}

.btn-outline-hero:hover {
    background: rgba(255, 255, 255, .12);
    border-color: rgba(255, 255, 255, .4);
    color: white;
    transform: translateY(-2px);
}

/* Hero right — feature cards */
.hero-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
    animation: fadeInUp .6s ease .4s both;
}

.hero-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius);
    padding: 18px 22px;
    display: flex;
    align-items: center;
    gap: 16px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    transition: var(--transition);
}

.hero-card:hover {
    background: rgba(37, 99, 235, 0.12);
    border-color: rgba(59, 130, 246, 0.35);
    transform: translateY(-4px);
}

.hero-card-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-primary);
}

.hero-card-title {
    font-size: 14px;
    font-weight: 700;
    color: white;
    margin-bottom: 2px;
}

.hero-card-sub {
    font-size: 12px;
    color: var(--text-light);
}

/* ─────────────────────────────────────────────────
   STATS STRIP
───────────────────────────────────────────────── */
.stats-strip {
    background: var(--dark-2);
    padding: 0;
    border-bottom: 1px solid var(--border-dark);
}

.stats-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-box {
    padding: 28px 24px;
    text-align: center;
    border-right: 1px solid var(--border-dark);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.stat-box:last-child {
    border-right: none;
}

.stat-box::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 2px;
    transition: var(--transition);
}

.stat-box:hover::before {
    width: 70%;
}

.stat-number {
    font-size: 32px;
    font-weight: 900;
    color: white;
    letter-spacing: -.5px;
}

.stat-label {
    font-size: 13px;
    color: var(--text-light);
    margin-top: 4px;
    font-weight: 500;
}

/* ─────────────────────────────────────────────────
   SECTION SHARED
───────────────────────────────────────────────── */
.section {
    padding: var(--section-py) 24px;
}

.section-dark {
    background: var(--dark-2);
    color: white;
}

.section-light {
    background: var(--lighter);
}

.section-gray {
    background: #f1f5f9;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

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

.section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    background: rgba(37, 99, 235, .08);
    border: 1px solid rgba(37, 99, 235, .2);
    color: var(--primary);
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.section-dark .section-kicker {
    background: rgba(59, 130, 246, .15);
    border-color: rgba(59, 130, 246, .3);
    color: var(--primary-light);
}

.section-title {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 800;
    color: var(--dark-2);
    margin: 0;
    line-height: 1.2;
}

.section-dark .section-title {
    color: white;
}

.section-sub {
    font-size: 16px;
    color: var(--text-muted);
    margin-top: 12px;
    max-width: 540px;
    margin-left: auto;
    margin-right: auto;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, .55);
}

/* ─────────────────────────────────────────────────
   CARS GRID
───────────────────────────────────────────────── */
.cars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

/* Car Card */
.car-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition-slow);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
}

.car-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.car-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #1e293b 0%, #334155 100%);
}

.car-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .6s ease;
}

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

.car-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .3);
    font-size: 60px;
}

.car-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    padding: 5px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    letter-spacing: .5px;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, .2);
}

.car-info {
    padding: 22px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.car-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 6px;
}

.car-type {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 14px;
}

.car-price {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 16px;
}

.car-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--text-muted);
}

.car-features {
    display: flex;
    gap: 8px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.car-feature {
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 10px;
    background: var(--lighter);
    border-radius: var(--radius-sm);
    font-size: 12px;
    color: var(--text-muted);
    font-weight: 500;
    border: 1px solid var(--border);
}

.car-feature i {
    color: var(--primary);
    font-size: 11px;
}

.car-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
    margin-top: auto;
}

.btn-details {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 11px 14px;
    background: var(--lighter);
    border: 1.5px solid var(--border);
    color: var(--text);
    font-size: 13px;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
}

.btn-details:hover {
    background: var(--border);
    border-color: var(--text-light);
    color: var(--dark-2);
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 11px 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 14px;
    font-weight: 700;
    border-radius: var(--radius-sm);
    text-decoration: none;
    box-shadow: 0 4px 14px rgba(37, 99, 235, .3);
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, .45);
    color: white;
}

/* ─────────────────────────────────────────────────
   OFFER CARDS (reuse car-card + overrides)
───────────────────────────────────────────────── */
.offer-ribbon {
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    font-size: 11px;
    font-weight: 800;
    padding: 6px 16px 6px 10px;
    clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
    letter-spacing: .5px;
}

.offer-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 16px;
}

.offer-meta-item {
    flex: 1;
    background: var(--lighter);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 10px 14px;
    text-align: center;
}

.offer-meta-label {
    font-size: 11px;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .5px;
    margin-bottom: 4px;
}

.offer-meta-value {
    font-size: 16px;
    font-weight: 800;
    color: var(--dark-2);
}

.offer-total {
    font-size: 24px;
    font-weight: 900;
    color: var(--primary);
}

/* ─────────────────────────────────────────────────
   HOW IT WORKS
───────────────────────────────────────────────── */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    position: relative;
}

.steps-grid::before {
    content: '';
    position: absolute;
    top: 50px;
    left: 15%;
    right: 15%;
    height: 2px;
    background: linear-gradient(90deg, var(--primary) 0%, var(--primary-light) 50%, var(--primary) 100%);
    opacity: .2;
}

.step-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, .2);
}

.step-number {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 20px;
    font-weight: 900;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: var(--shadow-primary);
}

.step-icon {
    font-size: 28px;
    color: var(--primary);
    margin-bottom: 16px;
    display: block;
}

.step-title {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 10px;
}

.step-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────
   BOOKING FORM
───────────────────────────────────────────────── */
.booking-section {
    background: var(--dark-2);
    padding: var(--section-py) 24px;
    position: relative;
    overflow: hidden;
}

/* RTL Support for Booking Section */
[dir="rtl"] .booking-section {
    direction: rtl;
    text-align: right;
}

[dir="rtl"] .booking-wrapper {
    direction: rtl;
}

[dir="rtl"] .booking-info {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .booking-info .section-kicker {
    text-align: right;
    float: right;
    clear: both;
}

[dir="rtl"] .booking-info .section-title {
    text-align: right;
    clear: both;
}

[dir="rtl"] .booking-info .section-title::after {
    right: 0;
    left: auto;
}

[dir="rtl"] .booking-info .section-sub {
    text-align: right;
    clear: both;
}

[dir="rtl"] .booking-info-item {
    flex-direction: row-reverse;
}

[dir="rtl"] .booking-form-card {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .form-row {
    direction: rtl;
}

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

[dir="rtl"] .form-label {
    text-align: right;
    display: block;
}

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

[dir="rtl"] .form-control[type="tel"],
[dir="rtl"] .form-control[type="number"] {
    direction: ltr;
    text-align: left;
}

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

[dir="rtl"] .selected-deal-display {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .booking-trust {
    text-align: right;
}

[dir="rtl"] .trust-badge {
    flex-direction: row-reverse;
}

[dir="rtl"] .alert-success,
[dir="rtl"] .alert-error {
    text-align: right;
    direction: rtl;
}

[dir="rtl"] .booking-divider {
    text-align: center;
}

[dir="rtl"] .btn-submit,
[dir="rtl"] .btn-whatsapp {
    direction: rtl;
}

.booking-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 70% 50% at 30% 50%, rgba(37, 99, 235, .15) 0%, transparent 60%);
    pointer-events: none;
}

.booking-wrapper {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.booking-info {
    color: white;
    position: relative;
    padding: 40px 0;
    direction: rtl;
    text-align: right;
}

.booking-info .section-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.2) 0%, rgba(59, 130, 246, 0.1) 100%);
    border: 1px solid rgba(59, 130, 246, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    color: #93c5fd;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.2);
    transition: all 0.3s ease;
    text-align: right;
    float: right;
    clear: both;
    direction: rtl;
}

.booking-info .section-kicker:hover {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    transform: translateY(-1px);
    box-shadow: 0 6px 16px rgba(37, 99, 235, 0.3);
}

.booking-info .section-kicker i {
    font-size: 16px;
    animation: pulse 2s infinite;
    margin-right: 8px;
    margin-left: 0;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.booking-info .section-title {
    font-size: 32px;
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.3);
    line-height: 1.2;
    position: relative;
    text-align: right;
    clear: both;
    direction: rtl;
}

.booking-info .section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    right: 0;
    left: auto;
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #3b82f6, #2563eb);
    border-radius: 2px;
    box-shadow: 0 2px 8px rgba(37, 99, 235, 0.4);
}

.booking-info .section-sub {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 32px;
    line-height: 1.6;
    font-weight: 500;
    max-width: 400px;
    text-align: right;
    clear: both;
    direction: rtl;
}

.booking-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    right: -20px;
    bottom: 0;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(59, 130, 246, 0.05) 100%);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    z-index: -1;
}

.booking-info-item {
    display: flex;
    flex-direction: row-reverse;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 32px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    direction: rtl;
    text-align: right;
}

.booking-info-item .booking-info-icon {
    margin-left: 20px;
    margin-right: 0;
    order: -1;
}

.booking-info-item > div {
    direction: rtl;
    text-align: right;
    flex: 1;
}

.booking-info-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: right;
    direction: rtl;
}

/* RTL Support for Booking Info Values */
[dir="rtl"] .booking-info-value {
    text-align: right;
    direction: rtl;
}

/* Keep phone numbers LTR but aligned to the right */
[dir="rtl"] .booking-info-value.phone-number {
    text-align: right;
    direction: ltr;
}

.booking-info-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-info-item:hover {
    transform: translateY(-2px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.3);
}

.booking-info-item:hover::before {
    opacity: 1;
}

.booking-info-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.3) 0%, rgba(59, 130, 246, 0.2) 100%);
    border: 2px solid rgba(59, 130, 246, 0.4);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #93c5fd;
    font-size: 20px;
    flex-shrink: 0;
    box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
    transition: all 0.3s ease;
    position: relative;
}

.booking-info-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #3b82f6, #2563eb, #1d4ed8);
    border-radius: 16px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.booking-info-item:hover .booking-info-icon {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.4);
}

.booking-info-item:hover .booking-info-icon::before {
    opacity: 0.5;
}

.booking-info-label {
    font-size: 13px;
    font-weight: 700;
    color: #93c5fd;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.booking-info-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, rgba(147, 197, 253, 0.3) 0%, transparent 100%);
}

.booking-info-value {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.95);
    font-weight: 600;
    line-height: 1.6;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
    text-align: right;
    direction: rtl;
}

/* RTL Support for Booking Info Values */
[dir="rtl"] .booking-info-value {
    text-align: right;
    direction: rtl;
}

/* Keep phone numbers LTR but aligned to the right */
[dir="rtl"] .booking-info-value[dir="ltr"] {
    text-align: right;
    direction: ltr;
}

.booking-form-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 36px;
    box-shadow: var(--shadow-xl);
}

.booking-form-title {
    font-size: 22px;
    font-weight: 800;
    color: var(--dark-2);
    margin-bottom: 6px;
}

.booking-form-sub {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 16px;
}

.form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: .2px;
}

.form-control {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-family: inherit;
    color: var(--text);
    background: white;
    transition: var(--transition);
    outline: none;
    -webkit-appearance: none;
}

.form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.form-control::placeholder {
    color: var(--text-light);
}

select.form-control {
    cursor: pointer;
}

textarea.form-control {
    resize: vertical;
    min-height: 90px;
}

.form-hint {
    font-size: 11px;
    color: var(--text-light);
    margin-top: 5px;
}

.alert-success {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(16, 185, 129, .1);
    border: 1px solid rgba(16, 185, 129, .3);
    border-radius: var(--radius-sm);
    color: var(--success);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.alert-error {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 18px;
    background: rgba(239, 68, 68, .1);
    border: 1px solid rgba(239, 68, 68, .3);
    border-radius: var(--radius-sm);
    color: var(--danger);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.btn-submit {
    width: 100%;
    padding: 14px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    font-size: 15px;
    font-weight: 700;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    box-shadow: var(--shadow-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(37, 99, 235, .45);
}

/* ─────────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────────── */
.site-footer {
    background: var(--dark);
    color: rgba(255, 255, 255, .75);
    padding: 72px 24px 0;
    border-top: 1px solid var(--border-dark);
}

.footer-grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
}

.footer-brand-name {
    font-size: 20px;
    font-weight: 800;
    color: white;
    margin-bottom: 12px;
}

.footer-brand-desc {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 24px;
}

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

.social-btn {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    text-decoration: none;
    transition: var(--transition);
}

.social-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.footer-title {
    font-size: 13px;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-link {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
    text-decoration: none;
    transition: var(--transition);
}

.footer-link:hover {
    color: white;
    gap: 12px;
}

.footer-link i {
    font-size: 11px;
    color: var(--primary-light);
}

.footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 14px;
    font-size: 14px;
    color: rgba(255, 255, 255, .55);
}

.footer-contact-icon {
    width: 30px;
    height: 30px;
    background: rgba(37, 99, 235, .15);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-light);
    font-size: 13px;
    flex-shrink: 0;
    margin-top: 2px;
}

.footer-bottom {
    border-top: 1px solid var(--border-dark);
    padding: 24px 0;
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: rgba(255, 255, 255, .35);
}

.footer-bottom a {
    color: rgba(255, 255, 255, .5);
    text-decoration: none;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: white;
}

/* ─────────────────────────────────────────────────
   UTILITY — ANIMATIONS
───────────────────────────────────────────────── */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.animate {
    animation: fadeInUp .55s ease both;
}

/* ─────────────────────────────────────────────────
   FLOATING ACTIONS
───────────────────────────────────────────────── */
.floating-cta {
    position: fixed;
    bottom: 28px;
    left: 28px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 900;
}

.floating-btn {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    transition: var(--transition);
    border: none;
    cursor: pointer;
}

.floating-btn:hover {
    transform: scale(1.12);
    color: white;
}

.floating-btn.whatsapp {
    background: #25d366;
}

.floating-btn.phone {
    background: var(--primary);
}

.floating-btn.top {
    background: var(--dark-3);
    font-size: 14px;
}

/* ─────────────────────────────────────────────────
   INNER PAGES (car.php, offer.php, privacy, terms)
───────────────────────────────────────────────── */
.page-hero {
    background: var(--dark-2);
    padding: 56px 24px;
    border-bottom: 1px solid var(--border-dark);
}

.page-hero-inner {
    max-width: 1280px;
    margin: 0 auto;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 13px;
    color: var(--text-light);
}

.breadcrumb-nav a {
    color: var(--primary-light);
    text-decoration: none;
}

.breadcrumb-nav i {
    font-size: 10px;
}

.page-title {
    font-size: clamp(24px, 4vw, 40px);
    font-weight: 800;
    color: white;
    margin-bottom: 8px;
}

.page-sub {
    font-size: 16px;
    color: var(--text-light);
}

.page-body {
    max-width: 1280px;
    margin: 48px auto;
    padding: 0 24px 80px;
}

.content-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 36px;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    margin-bottom: 24px;
}

.content-card h2 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary);
    display: inline-block;
}

.content-card p,
.content-card li {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 8px;
}

/* ─────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 40px;
    }

    .hero-cards {
        max-width: 480px;
        margin: 0 auto;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .booking-wrapper {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-grid::before {
        display: none;
    }
}

@media (max-width: 768px) {
    :root {
        --section-py: 64px;
    }

    .nav-links {
        display: none;
    }

    .btn-nav-admin {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-box:nth-child(2) {
        border-right: none;
    }

    .cars-grid {
        grid-template-columns: 1fr;
    }

    .steps-grid {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-bottom {
        justify-content: center;
        text-align: center;
    }

    .booking-form-card {
        padding: 24px;
    }

    .hero-container {
        padding: 48px 16px;
        gap: 32px;
    }

    .booking-section {
        padding: 48px 16px;
    }

    .section {
        padding: 48px 16px;
    }
}

@media (max-width: 480px) {
    .stats-inner {
        grid-template-columns: repeat(2, 1fr);
    }

    .hero-title {
        font-size: 30px;
    }

    .car-actions {
        grid-template-columns: 1fr;
    }
}

/* ─────────────────────────────────────────────────
   FEATURES GRID
───────────────────────────────────────────────── */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 28px;
}

.feature-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    text-align: center;
    box-shadow: var(--shadow);
    border: 1px solid var(--border);
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(37, 99, 235, .2);
}

.feature-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 24px;
    color: white;
    box-shadow: var(--shadow-primary);
}

.feature-card h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 10px;
}

.feature-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.6;
}

/* ─────────────────────────────────────────────────
   HERO TRUST BADGES
───────────────────────────────────────────────── */
.hero-trust {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 32px;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .7);
    font-size: 14px;
}

.trust-item i {
    color: var(--accent);
    font-size: 16px;
}

/* ─────────────────────────────────────────────────
   HERO SCROLL INDICATOR
───────────────────────────────────────────────── */
.hero-scroll {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
}

.scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, .6);
    text-decoration: none;
    font-size: 12px;
    transition: var(--transition);
    animation: bounce 2s infinite;
}

.scroll-indicator:hover {
    color: white;
}

.scroll-indicator i {
    font-size: 18px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

/* ─────────────────────────────────────────────────
   HERO PARTICLES
───────────────────────────────────────────────── */
.hero-particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(59, 130, 246, .3);
    border-radius: 50%;
    animation: float 15s infinite;
}

.particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 20%; top: 80%; animation-delay: 2s; }
.particle:nth-child(3) { left: 60%; top: 40%; animation-delay: 4s; }
.particle:nth-child(4) { left: 80%; top: 60%; animation-delay: 6s; }
.particle:nth-child(5) { left: 40%; top: 10%; animation-delay: 8s; }

@keyframes float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: .3; }
    50% { transform: translateY(-100px) rotate(180deg); opacity: .6; }
}

/* ─────────────────────────────────────────────────
   STATS STRIP ICONS
───────────────────────────────────────────────── */
.stat-icon-wrap {
    width: 44px;
    height: 44px;
    background: rgba(37, 99, 235, .15);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 12px;
    color: var(--primary-light);
    font-size: 18px;
}

.stat-icon-wrap.success {
    background: rgba(16, 185, 129, .15);
    color: var(--success);
}

.stat-icon-wrap.warning {
    background: rgba(245, 158, 11, .15);
    color: var(--warning);
}

.stat-icon-wrap.info {
    background: rgba(6, 182, 212, .15);
    color: var(--info);
}

/* ─────────────────────────────────────────────────
   CAR CARDS - ENHANCED
───────────────────────────────────────────────── */
.car-meta {
    display: flex;
    gap: 16px;
    margin-bottom: 12px;
    flex-wrap: wrap;
}

.car-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
}

.car-meta span i {
    color: var(--primary);
    font-size: 12px;
}

.car-monthly {
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 12px;
}

.car-offer-badge {
    position: absolute;
    top: 14px;
    left: 14px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--danger), #dc2626);
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 4px;
}

.no-cars-message {
    grid-column: 1/-1;
    text-align: center;
    padding: 64px 24px;
    background: white;
    border-radius: var(--radius-lg);
}

.no-cars-message i {
    font-size: 64px;
    color: var(--border);
    margin-bottom: 20px;
}

.no-cars-message h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.no-cars-message p {
    color: var(--text-muted);
}

/* ─────────────────────────────────────────────────
   OFFERS GRID
───────────────────────────────────────────────── */
.offers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.offer-card {
    background: white;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 1px solid var(--border);
}

.offer-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.offer-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.offer-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.offer-content {
    padding: 24px;
}

.offer-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.offer-desc {
    font-size: 14px;
    color: var(--danger);
    font-weight: 600;
    margin-bottom: 16px;
}

.offer-details {
    background: var(--lighter);
    border-radius: var(--radius);
    padding: 16px;
    margin-bottom: 20px;
}

.offer-detail {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.offer-detail:last-child {
    margin-bottom: 0;
}

.offer-detail-label {
    font-size: 13px;
    color: var(--text-muted);
}

.offer-detail-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
}

.offer-total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 12px;
    border-top: 1px solid var(--border);
    margin-top: 12px;
}

.offer-total-label {
    font-size: 14px;
    font-weight: 600;
    color: var(--text);
}

.offer-total-value {
    font-size: 22px;
    font-weight: 800;
    color: var(--primary);
}

.offer-actions {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 10px;
}

/* ─────────────────────────────────────────────────
   TESTIMONIALS SECTION
───────────────────────────────────────────────── */
.testimonials-section {
    background: linear-gradient(135deg, var(--dark-2) 0%, var(--dark) 100%);
    position: relative;
}

.testimonials-section .section-title {
    color: white;
}

.testimonials-section .section-sub {
    color: rgba(255, 255, 255, .6);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 28px;
}

.testimonial-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: var(--radius-lg);
    padding: 32px;
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, .08);
    border-color: rgba(255, 255, 255, .2);
    transform: translateY(-4px);
}

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

.testimonial-stars i {
    color: var(--accent);
    font-size: 16px;
}

.testimonial-text {
    font-size: 15px;
    color: rgba(255, 255, 255, .85);
    line-height: 1.7;
    margin-bottom: 24px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.author-name {
    font-size: 15px;
    font-weight: 700;
    color: white;
}

.author-role {
    font-size: 13px;
    color: rgba(255, 255, 255, .5);
}

/* ─────────────────────────────────────────────────
   BOOKING TRUST BADGES
───────────────────────────────────────────────── */
.booking-trust {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    margin-top: 40px;
    padding: 24px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.15) 0%, rgba(34, 197, 94, 0.1) 100%);
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 12px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 14px;
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 200px;
}

.trust-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, transparent 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.trust-badge:hover {
    transform: translateY(-2px);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.2) 0%, rgba(34, 197, 94, 0.15) 100%);
    border-color: rgba(16, 185, 129, 0.4);
    box-shadow: 0 8px 16px rgba(16, 185, 129, 0.3);
}

.trust-badge:hover::before {
    opacity: 1;
}

.trust-badge i {
    color: #10b981;
    font-size: 18px;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.2);
    border-radius: 50%;
    border: 1px solid rgba(16, 185, 129, 0.3);
    box-shadow: 0 2px 8px rgba(16, 185, 129, 0.3);
}

.trust-badge span {
    position: relative;
    z-index: 1;
}

/* ─────────────────────────────────────────────────
   SECTION DARK VARIANT
───────────────────────────────────────────────── */
.section-dark {
    background: var(--dark-2);
}

.section-dark .section-title {
    color: white;
}

.section-dark .section-sub {
    color: rgba(255, 255, 255, .6);
}

.section-dark .car-card {
    background: rgba(255, 255, 255, .05);
    border-color: rgba(255, 255, 255, .1);
}

.section-dark .car-card .car-name {
    color: white;
}

.section-dark .car-card .car-meta span {
    color: rgba(255, 255, 255, .6);
}

.section-dark .car-card .car-price {
    color: white;
}

.section-dark .car-card .car-price span {
    color: rgba(255, 255, 255, .5);
}

.section-dark .section-kicker {
    background: rgba(59, 130, 246, .2);
    border-color: rgba(59, 130, 246, .4);
    color: var(--primary-light);
}

/* ─────────────────────────────────────────────────
   RESPONSIVE ENHANCEMENTS
───────────────────────────────────────────────── */
@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .hero-trust {
        justify-content: center;
    }
    
    .hero-scroll {
        display: none;
    }
    
    .booking-trust {
        justify-content: center;
    }
}

/* ─────────────────────────────────────────────────
   LEGAL PAGES - PRIVACY & TERMS
───────────────────────────────────────────────── */
.legal-hero {
    position: relative;
    background: linear-gradient(135deg, #1e3a5f 0%, #0f172a 100%);
    padding: 100px 0 80px;
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
}

.legal-hero-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(37, 99, 235, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(59, 130, 246, 0.1) 0%, transparent 40%);
}

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

.legal-hero-content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.legal-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(59, 130, 246, 0.2);
    border: 1px solid rgba(59, 130, 246, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    color: var(--primary-light);
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
}

.legal-title {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    margin-bottom: 16px;
}

.legal-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.legal-meta {
    display: flex;
    justify-content: center;
    gap: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 14px;
}

.legal-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Legal Content Section */
.legal-content-section {
    padding: 60px 0 80px;
    background: #f8fafc;
}

.legal-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
}

/* Sidebar / Table of Contents */
.legal-sidebar {
    position: sticky;
    top: 100px;
}

.legal-toc {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}

.legal-toc h3 {
    font-size: 18px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 2px solid var(--border);
}

.toc-nav {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.toc-nav a {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    border-radius: var(--radius);
    color: var(--text-muted);
    text-decoration: none;
    transition: var(--transition);
    font-size: 14px;
}

.toc-nav a:hover {
    background: #f1f5f9;
    color: var(--primary);
}

.toc-nav a.active {
    background: rgba(37, 99, 235, 0.1);
    color: var(--primary);
}

.toc-num {
    width: 32px;
    height: 32px;
    background: var(--light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--text-muted);
    flex-shrink: 0;
}

/* Main Content */
.legal-main {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.legal-intro {
    margin-bottom: 8px;
}

.intro-box {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.05), rgba(37, 99, 235, 0.02));
    border: 1px solid rgba(37, 99, 235, 0.15);
    border-radius: var(--radius-lg);
    padding: 28px;
    position: relative;
}

.intro-box i {
    position: absolute;
    top: -16px;
    right: 24px;
    font-size: 32px;
    color: var(--primary);
    opacity: 0.15;
}

.intro-box p {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text);
    margin: 0;
}

/* Legal Card */
.legal-card {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: var(--transition);
}

.legal-card:hover {
    box-shadow: var(--shadow-lg);
}

.legal-card-header {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border-bottom: 1px solid var(--border);
}

.legal-section-num {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.legal-section-num i {
    font-size: 20px;
}

.legal-card-header h2 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-2);
    margin: 0;
}

.legal-card-body {
    padding: 28px;
}

.legal-card-body > p {
    font-size: 15px;
    color: var(--text);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Legal List */
.legal-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.legal-list li {
    display: flex;
    gap: 16px;
    padding: 16px;
    background: var(--lighter);
    border-radius: var(--radius);
    transition: var(--transition);
}

.legal-list li:hover {
    background: #f1f5f9;
}

.legal-list-icon {
    width: 44px;
    height: 44px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.legal-list li strong {
    display: block;
    font-size: 15px;
    color: var(--dark-2);
    margin-bottom: 4px;
}

.legal-list li p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Highlight Boxes */
.highlight-box {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px 22px;
    border-radius: var(--radius);
    margin-bottom: 20px;
}

.highlight-box i {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.highlight-box p {
    margin: 0;
    font-size: 14px;
    line-height: 1.6;
}

.highlight-box.warning {
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.highlight-box.warning i {
    color: var(--warning);
}

.highlight-box.danger {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.highlight-box.danger i {
    color: var(--danger);
}

.highlight-box.info {
    background: rgba(37, 99, 235, 0.08);
    border: 1px solid rgba(37, 99, 235, 0.15);
    color: var(--primary-dark);
}

.highlight-box.info i {
    color: var(--primary);
}

.highlight-box.success {
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.highlight-box.success i {
    color: var(--success);
}

/* Info Grid */
.info-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.info-item {
    background: var(--lighter);
    border-radius: var(--radius);
    padding: 24px;
    text-align: center;
    transition: var(--transition);
}

.info-item:hover {
    background: #f1f5f9;
}

.info-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin: 0 auto 16px;
}

.info-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.info-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Security Grid */
.security-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.security-item {
    text-align: center;
    padding: 28px;
    background: var(--lighter);
    border-radius: var(--radius);
}

.security-icon {
    width: 64px;
    height: 64px;
    background: linear-gradient(135deg, var(--success), #059669);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 26px;
    margin: 0 auto 18px;
}

.security-item h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 10px;
}

.security-item p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.6;
}

/* Rights Grid */
.rights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}

.right-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 18px;
    background: var(--lighter);
    border-radius: var(--radius);
}

.right-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--info), #0891b2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    flex-shrink: 0;
}

.right-item strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 4px;
}

.right-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
}

/* Pricing Grid */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.pricing-item {
    text-align: center;
    padding: 24px;
    background: var(--lighter);
    border-radius: var(--radius);
}

.pricing-icon {
    width: 52px;
    height: 52px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    margin: 0 auto 14px;
}

.pricing-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.pricing-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Policy Grid */
.policy-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.policy-item {
    text-align: center;
    padding: 24px;
    background: var(--lighter);
    border-radius: var(--radius);
}

.policy-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 22px;
    margin: 0 auto 14px;
}

.policy-icon.cancel {
    background: linear-gradient(135deg, #ef4444, #dc2626);
}

.policy-icon.edit {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
}

.policy-icon.warning {
    background: linear-gradient(135deg, var(--warning), #d97706);
}

.policy-item h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 8px;
}

.policy-item p {
    font-size: 13px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Legal Structure */
.legal-structure {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.structure-step {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 20px;
    background: var(--lighter);
    border-radius: var(--radius);
    position: relative;
}

.structure-step:not(:last-child)::after {
    content: '';
    position: absolute;
    bottom: -20px;
    left: 32px;
    width: 2px;
    height: 20px;
    background: var(--border);
}

.step-number {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
}

.structure-step h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--dark-2);
    margin-bottom: 6px;
}

.structure-step p {
    font-size: 14px;
    color: var(--text-muted);
    margin: 0;
    line-height: 1.5;
}

/* Contact Card */
.contact-card {
    background: linear-gradient(135deg, #1e3a5f, #0f172a);
    border: none;
}

.contact-card .legal-card-header {
    background: transparent;
    border-bottom-color: rgba(255, 255, 255, 0.1);
}

.contact-card .legal-card-header h2 {
    color: white;
}

.contact-card .legal-section-num {
    background: rgba(255, 255, 255, 0.15);
}

.contact-card .legal-card-body > p {
    color: rgba(255, 255, 255, 0.8);
}

.contact-grid {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 24px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius);
    text-decoration: none;
    transition: var(--transition);
    flex: 1;
    min-width: 200px;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
}

.contact-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 18px;
}

.contact-icon.whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
}

.contact-label {
    display: block;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 2px;
}

.contact-value {
    display: block;
    font-size: 15px;
    font-weight: 600;
    color: white;
}

/* Legal Responsive */
@media (max-width: 992px) {
    .legal-layout {
        grid-template-columns: 1fr;
    }
    
    .legal-sidebar {
        position: static;
    }
    
    .legal-toc {
        position: static;
    }
    
    .toc-nav {
        flex-direction: row;
        flex-wrap: wrap;
    }
    
    .toc-nav a {
        flex: 1 1 auto;
        min-width: 140px;
    }
}

@media (max-width: 768px) {
    .legal-hero {
        padding: 60px 0 50px;
    }
    
    .legal-title {
        font-size: 1.8rem;
    }
    
    .info-grid,
    .security-grid,
    .rights-grid,
    .pricing-grid,
    .policy-grid {
        grid-template-columns: 1fr;
    }
    
    .legal-card-header {
        flex-direction: column;
        text-align: center;
    }
    
    .legal-card-body {
        padding: 20px;
    }
    
    .toc-nav {
        flex-direction: column;
    }
    
    .toc-nav a {
        min-width: auto;
    }
}

/* ─── Deal Calculator Hero ─── */
.deal-calculator-hero {
    padding: 80px 0;
    background: linear-gradient(135deg, #0f172a 0%, #1e3a5f 50%, #0f172a 100%);
    position: relative;
    overflow: hidden;
}

.deal-calculator-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.3) 0%, transparent 70%);
    border-radius: 50%;
}

.deal-calculator-hero .deal-calc-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.deal-calculator-hero .deal-section-title {
    color: white;
}

.deal-calculator-hero .deal-slider-label span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.deal-calculator-hero .deal-price-display {
    background: rgba(255, 255, 255, 0.1);
}

.deal-calculator-hero .deal-price-amount,
.deal-calculator-hero .deal-price-currency {
    color: white;
}

.deal-calculator-hero .deal-price-meta {
    color: rgba(255, 255, 255, 0.7);
}

.deal-calculator-hero .deal-savings-display {
    background: linear-gradient(135deg, rgba(34, 197, 94, 0.2), rgba(5, 150, 105, 0.3));
    border: 1px solid rgba(34, 197, 94, 0.3);
    color: white;
}

.deal-calculator-hero .deal-comparison-label span:first-child {
    color: rgba(255, 255, 255, 0.8);
}

.deal-calculator-hero .deal-comparison-label span:last-child {
    color: white;
    font-weight: 700;
}

.deal-calculator-hero .deal-savings-badge {
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
}

/* ─── Deal Carousel Section ─── */
.deal-carousel-section {
    padding: 60px 0;
    background: var(--lighter);
}

#dealCarousel {
    position: relative;
}

#dealCarousel .carousel-indicators {
    position: absolute;
    bottom: -20px;
    left: 50%;
    transform: translateX(-50%);
    margin: 0;
    gap: 10px;
}

#dealCarousel .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--primary);
    opacity: 0.4;
    border: none;
    margin: 0;
    transition: all 0.3s;
}

#dealCarousel .carousel-indicators button.active {
    opacity: 1;
    transform: scale(1.3);
}

#dealCarousel .carousel-inner {
    border-radius: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

#dealCarousel .carousel-item {
    background: white;
    padding: 40px;
    min-height: 450px;
    display: flex;
    align-items: center;
}

#dealCarousel .carousel-control-prev,
#dealCarousel .carousel-control-next {
    width: 60px;
    height: 60px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s;
}

#dealCarousel .carousel-control-prev { left: 20px; }
#dealCarousel .carousel-control-next { right: 20px; }

#dealCarousel .carousel-control-prev:hover,
#dealCarousel .carousel-control-next:hover {
    opacity: 1;
    transform: translateY(-50%) scale(1.1);
}

#dealCarousel .carousel-control-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: white;
}

[dir="rtl"] #dealCarousel .carousel-control-prev { left: auto; right: 20px; }
[dir="rtl"] #dealCarousel .carousel-control-next { right: auto; left: 20px; }

/* Calculator Card */
.deal-calc-card {
    background: white;
    border-radius: 24px;
    padding: 48px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
    width: 100%;
}

.deal-calc-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent), var(--success));
}

.deal-section-title {
    font-size: 2rem;
    font-weight: 800;
    color: #1e3a8a;
    margin-bottom: 12px;
}

.deal-slide-header { margin-bottom: 20px; }

.deal-slide-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 12px;
}

.deal-slider-container { margin: 30px 0; }

.deal-slider-label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
    font-size: 1.1rem;
    color: var(--text);
    font-weight: 600;
}

.deal-slider-value {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 800;
    min-width: 80px;
    text-align: center;
}

.deal-slider {
    width: 100%;
    height: 12px;
    border-radius: 6px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    outline: none;
    -webkit-appearance: none;
    cursor: pointer;
}

.deal-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: white;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
    cursor: grab;
}

.deal-slider::-webkit-slider-thumb:active { cursor: grabbing; }

.deal-slider-days {
    display: flex;
    justify-content: space-between;
    margin-top: 12px;
    font-size: 0.85rem;
    color: var(--text-muted);
}

.deal-price-display {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 4px;
    margin: 24px 0 8px;
}

.deal-price-currency {
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    margin-top: 8px;
}

.deal-price-amount {
    font-size: 4rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.deal-price-meta {
    text-align: center;
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.deal-price-meta strong { color: var(--primary); font-size: 1.4rem; }

.deal-savings-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    padding: 14px 28px;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
}

.deal-savings-display i { font-size: 1.3rem; }

/* Comparison Bars */
.deal-comparison {
    padding: 24px;
    background: var(--light);
    border-radius: 20px;
    margin-top: 20px;
}

.deal-comparison-bar { margin-bottom: 20px; }

.deal-comparison-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.deal-comparison-label span:last-child { font-weight: 700; color: var(--dark); }

.deal-comparison-track {
    height: 16px;
    background: var(--border);
    border-radius: 8px;
    overflow: hidden;
}

.deal-comparison-fill {
    height: 100%;
    border-radius: 8px;
    transition: width 0.5s ease;
}

.deal-comparison-regular { background: linear-gradient(90deg, #ef4444, #dc2626); }
.deal-comparison-deal { background: linear-gradient(90deg, var(--success), #059669); }

.deal-savings-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 800;
    margin-top: 8px;
    box-shadow: 0 4px 20px rgba(245, 158, 11, 0.4);
}

/* Slide Button */
.deal-slide-btn {
    width: 100%;
    padding: 14px 28px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 20px;
}

.deal-slide-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* Featured Deal Cards */
.deal-feature-card {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 50px;
    width: 100%;
    position: relative;
}

.deal-feature-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--accent), var(--accent-dark));
    color: white;
    padding: 8px 24px;
    border-radius: 0 0 20px 20px;
    font-size: 14px;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(245, 158, 11, 0.4);
}

.deal-feature-best .deal-feature-badge {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    box-shadow: 0 4px 15px rgba(37, 99, 235, 0.4);
}

.deal-feature-max .deal-feature-badge {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.4);
}

.deal-feature-days { text-align: center; flex-shrink: 0; }

.deal-feature-days-num {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    line-height: 1;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deal-feature-best .deal-feature-days-num {
    background: linear-gradient(135deg, var(--success), #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deal-feature-max .deal-feature-days-num {
    background: linear-gradient(135deg, var(--danger), #dc2626);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.deal-feature-days-label {
    font-size: 1.3rem;
    color: var(--text-muted);
    font-weight: 600;
}

.deal-feature-details { flex: 1; text-align: center; }

.deal-feature-details h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--dark);
    margin-bottom: 8px;
}

.deal-feature-details p {
    font-size: 1rem;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.deal-feature-price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.deal-feature-currency {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary);
}

.deal-feature-amount {
    font-size: 3.5rem;
    font-weight: 900;
    color: var(--dark);
    line-height: 1;
}

.deal-feature-period {
    font-size: 0.9rem;
    color: var(--text-muted);
}

.deal-feature-perday {
    font-size: 1.1rem;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.deal-feature-perday strong { color: var(--success); font-size: 1.3rem; }

.deal-feature-savings {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    color: var(--success);
    padding: 8px 18px;
    border-radius: 20px;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Booking Modal */
.deal-modal .modal-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 20px 24px;
    border: none;
}

.modal-title-wrapper {
    display: flex;
    align-items: center;
    gap: 12px;
}

.modal-title-wrapper i { font-size: 1.5rem; }

.modal-subtitle { opacity: 0.8; font-size: 0.85rem; }

.deal-modal .modal-header .btn-close {
    filter: brightness(0) invert(1);
    opacity: 0.8;
}

.deal-modal .modal-body {
    padding: 28px;
    background: var(--lighter);
}

.deal-booking-summary {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 20px;
    background: white;
    border-radius: 12px;
    margin-bottom: 24px;
    box-shadow: var(--shadow);
}

.booking-summary-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--dark);
}

.booking-summary-item i { color: var(--primary); font-size: 1.2rem; }

.form-group { margin-bottom: 20px; }

.form-group label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--dark);
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.form-group label i { color: var(--primary); }

.form-group .form-control {
    border: 2px solid var(--border);
    border-radius: 10px;
    padding: 12px 16px;
    font-size: 1rem;
    transition: all 0.3s;
}

.form-group .form-control:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 4px var(--primary-glow);
}

.btn-submit-deal {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, var(--success), #059669);
    color: white;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.btn-submit-deal:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(16, 185, 129, 0.4);
}

/* RTL */
[dir="rtl"] .deal-booking-summary { flex-direction: row-reverse; }
[dir="rtl"] .form-group label { flex-direction: row-reverse; }
[dir="rtl"] .form-group label i { margin-left: 0; margin-right: 8px; }
[dir="rtl"] .btn-submit-deal { flex-direction: row-reverse; }

/* Responsive */
@media (max-width: 991px) {
    #dealCarousel .carousel-item { padding: 30px 20px; min-height: auto; }
    .deal-feature-card { flex-direction: column; gap: 20px; }
    .deal-feature-days-num { font-size: 3.5rem; }
    .deal-feature-amount { font-size: 2.5rem; }
    .deal-calc-card { padding: 30px 20px; }
    .deal-booking-summary { flex-wrap: wrap; gap: 15px; }
    
    /* Hero Carousel Responsive */
    .hero-carousel .carousel-item > .hero-container {
        grid-template-columns: 1fr !important;
        gap: 30px !important;
        padding: 60px 24px 40px !important;
        text-align: center;
    }
    
    .hero-carousel .hero-left {
        order: 2;
    }
    
    .hero-carousel .hero-right {
        order: 1;
        justify-content: center;
    }
    
    .hero-indicators {
        bottom: auto;
        top: 20px;
    }
    
    .hero-calc {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .hero-control-prev,
    .hero-control-next {
        display: none;
    }
    
    .hero-title {
        font-size: clamp(28px, 6vw, 42px);
    }
    
    .hero-deal-card {
        max-width: 100%;
        padding: 30px 20px;
    }
    
    .hero-deal-days-num {
        font-size: 4rem;
    }
    
    .hero-deal-amount {
        font-size: 3rem;
    }
}

@media (max-width: 576px) {
    .deal-booking-summary { flex-direction: column; align-items: center; }
    
    .hero-calc {
        padding: 24px 16px;
    }
    
    .hero-calc .deal-section-title {
        font-size: 1.3rem;
    }
    
    .hero-calc .deal-price-amount {
        font-size: 2.5rem;
    }
    
    .hero-calc .deal-price-currency {
        font-size: 1.5rem;
    }
    
    .hero-calc .deal-slider {
        height: 8px;
    }
    
    .hero-calc .deal-slider::-webkit-slider-thumb {
        width: 26px;
        height: 26px;
    }
    
    .hero-calc .deal-slide-btn {
        padding: 14px 24px;
        font-size: 1rem;
    }
    
    .hero-calc .deal-btn-info {
        font-size: 0.8rem;
        padding: 4px 12px;
    }
    
    .hero-deal-card {
        padding: 24px 16px;
    }
    
    .hero-deal-days-num {
        font-size: 3rem;
    }
    
    .hero-deal-amount {
        font-size: 2.5rem;
    }
}

/* RTL Responsive */
[dir="rtl"] .hero-carousel .carousel-item > .hero-container {
    text-align: right;
}

/* =====================================================
   DEALS TIERS GRID
   ===================================================== */
.deals-tiers-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 20px;
}

.deal-card {
    background: white;
    border-radius: var(--radius-lg);
    padding: 24px 20px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 2px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.deal-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.deal-card-featured {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    border-color: var(--primary);
    color: white;
}

.deal-card-featured .deal-card-days-label,
.deal-card-featured .deal-card-perday,
.deal-card-featured .deal-card-savings {
    color: rgba(255, 255, 255, 0.85);
}

.deal-card-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #f59e0b, #d97706);
    color: white;
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    white-space: nowrap;
    box-shadow: var(--shadow);
}

.deal-card-discount {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--danger);
    color: white;
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 10px;
    font-weight: 700;
}

.deal-card-featured .deal-card-discount {
    background: rgba(255, 255, 255, 0.2);
}

.deal-card-days {
    margin-bottom: 16px;
}

.deal-card-days-num {
    display: block;
    font-size: 48px;
    font-weight: 800;
    line-height: 1;
    color: var(--dark-2);
}

.deal-card-featured .deal-card-days-num {
    color: white;
}

.deal-card-days-label {
    display: block;
    font-size: 14px;
    color: var(--text-muted);
    font-weight: 600;
    margin-top: 4px;
}

.deal-card-price {
    margin-bottom: 8px;
}

.deal-card-currency {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary);
    vertical-align: top;
}

.deal-card-featured .deal-card-currency {
    color: white;
}

.deal-card-amount {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark-2);
}

.deal-card-featured .deal-card-amount {
    color: white;
}

.deal-card-perday {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.deal-card-savings {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: 13px;
    color: var(--success);
    font-weight: 600;
    margin-bottom: 16px;
}

.deal-card-featured .deal-card-savings {
    color: rgba(255, 255, 255, 0.9);
}

.deal-card-btn {
    width: 100%;
    padding: 12px 16px;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: var(--radius);
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.deal-card-btn:hover {
    background: var(--primary-dark);
    transform: scale(1.02);
}

.deal-card-featured .deal-card-btn {
    background: white;
    color: var(--primary);
}

.deal-card-featured .deal-card-btn:hover {
    background: var(--lighter);
}

.deal-card-selected {
    border-color: var(--primary) !important;
    box-shadow: 0 0 0 4px var(--primary-glow) !important;
}