:root {
    --navy: #0a2540;
    --navy-2: #0f2f52;
    --blue: #1565c0;
    --blue-light: #2196f3;
    --orange: #ff6b35;
    --orange-light: #ff8a5c;
    --orange-dark: #e55a2b;
    --bg: #f4f7fb;
    --white: #ffffff;
    --gray: #64748b;
    --gray-light: #e2e8f0;
    --dark: #0a1828;
    --glass: rgba(255, 255, 255, 0.08);
    --glass-border: rgba(255, 255, 255, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Tajawal", sans-serif;
}

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    background: var(--bg);
    color: var(--navy);
    overflow-x: hidden;
    direction: rtl;
    line-height: 1.6;
}

::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--navy);
}
::-webkit-scrollbar-thumb {
    background: var(--orange);
    border-radius: 4px;
}

/* ===== MODERN GLASS NAVBAR ===== */
.navbar {
    position: fixed;
    top: 15px;
    right: 20px;
    left: 20px;
    z-index: 1000;
    background: rgba(10, 37, 64, 0.6);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 12px 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 32px rgba(10, 37, 64, 0.2);
}

.navbar.scrolled {
    background: rgba(10, 37, 64, 0.85);
    box-shadow: 0 10px 40px rgba(10, 37, 64, 0.4);
    top: 10px;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    text-decoration: none;
}

.logo-mark {
    width: 42px;
    height: 42px;
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    );
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.logo:hover .logo-mark {
    transform: rotate(-10deg) scale(1.05);
}

.logo-mark svg {
    width: 24px;
    height: 24px;
}

.logo-img {
    width: 42px;
    height: 42px;
    background: white;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.4);
    transition: transform 0.3s ease;
}

.logo:hover .logo-img {
    transform: rotate(-10deg) scale(1.05);
}

.logo-img img {
    width: 30px;
    height: 30px;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
}
.logo-text .ar {
    font-size: 22px;
    font-weight: 900;
    color: #fff;
}
.logo-text .en {
    font-size: 9px;
    font-weight: 600;
    color: var(--orange-light);
    letter-spacing: 2px;
    margin-top: 3px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    font-size: 14px;
    font-weight: 500;
    padding: 8px 14px;
    border-radius: 8px;
    transition: all 0.25s ease;
}

.nav-links a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    ) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 50px !important;
    font-weight: 700 !important;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.4);
    margin-right: 8px;
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.6);
    background: linear-gradient(
        135deg,
        var(--orange-light) 0%,
        var(--orange) 100%
    ) !important;
}

.menu-toggle {
    display: none;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    width: 40px;
    height: 40px;
    border-radius: 10px;
    font-size: 18px;
    cursor: pointer;
    transition: 0.3s;
}

/* ===== HERO SLIDER ===== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    max-height: 900px;
    overflow: hidden;
    background: var(--navy);
}

.slides-container {
    position: absolute;
    inset: 0;
}

.slide {
    position: absolute;
    inset: 0;
    opacity: 0;
    transition:
        opacity 1.5s ease-in-out,
        transform 1.5s ease;
    background-size: cover;
    background-position: center;
    transform: scale(1.05);
}

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

.slide::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        105deg,
        rgba(10, 37, 64, 0.95) 0%,
        rgba(10, 37, 64, 0.7) 50%,
        rgba(10, 37, 64, 0.3) 100%
    );
}

.slide-1 {
    background-image: url("https://images.unsplash.com/photo-1601584115197-04ecc0da31d7?w=1920&q=80");
}
.slide-2 {
    background-image: url("https://images.unsplash.com/photo-1494412519320-aa613dfb7738?w=1920&q=80");
}
.slide-3 {
    background-image: url("https://images.unsplash.com/photo-1577416412292-747c6607f055?w=1920&q=80");
}

.hero-content {
    position: relative;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 30px 0;
    height: 80%;
    display: flex;
    align-items: center;
}

.hero-inner {
    max-width: 720px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 107, 53, 0.3);
    color: #fff;
    padding: 8px 18px;
    border-radius: 50px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease;
}

.hero-badge .dot {
    width: 8px;
    height: 8px;
    background: var(--orange);
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.3);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(255, 107, 53, 0.7);
    }
    50% {
        box-shadow: 0 0 0 8px rgba(255, 107, 53, 0);
    }
}

.hero-title {
    font-size: clamp(34px, 5.5vw, 68px);
    font-weight: 900;
    line-height: 1.1;
    color: #fff;
    margin-bottom: 24px;
    animation: slideUp 0.8s ease 0.1s both;
}

.hero-title .accent {
    color: var(--orange);
}

.hero-subtitle {
    font-size: clamp(15px, 2vw, 18px);
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.8;
    margin-bottom: 36px;
    max-width: 600px;
    animation: slideUp 0.8s ease 0.2s both;
}

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

.hero-buttons {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    animation: slideUp 0.8s ease 0.3s both;
}

.btn-primary {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    );
    color: #fff;
    border: none;
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 700;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.5);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: #fff;
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 32px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

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

.slider-dot {
    width: 36px;
    height: 4px;
    background: rgba(255, 255, 255, 0.3);
    border: none;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.slider-dot.active {
    width: 50px;
    background: rgba(255, 255, 255, 0.2);
}
.slider-dot.active::after {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--orange);
    animation: progress 5s linear;
    transform-origin: right;
}

@keyframes progress {
    from {
        transform: scaleX(0);
    }
    to {
        transform: scaleX(1);
    }
}

.hero-stats {
    position: absolute;
    bottom: 40px;
    left: 30px;
    right: 30px;
    z-index: 5;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(15px);
    -webkit-backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 16px;
    padding: 18px 20px;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    transform: translateY(-4px);
    border-color: rgba(255, 107, 53, 0.4);
}

.stat-card .icon {
    color: var(--orange);
    font-size: 20px;
    margin-bottom: 6px;
}
.stat-card .value {
    font-size: 26px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.stat-card .label {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 4px;
}

/* ===== BOOKING SECTION ===== */
.booking-section {
    position: relative;
    padding: 100px 20px;
    background: var(--bg);
}

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

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

.section-tag {
    display: inline-block;
    color: var(--orange);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    text-transform: uppercase;
    background: rgba(255, 107, 53, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
}

.section-title {
    font-size: clamp(28px, 4vw, 44px);
    font-weight: 900;
    color: var(--navy);
    line-height: 1.2;
    margin-bottom: 14px;
}

.section-desc {
    color: var(--gray);
    font-size: 16px;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.booking-card {
    background: #fff;
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 60px rgba(10, 37, 64, 0.08);
    border: 1px solid rgba(226, 232, 240, 0.8);
    position: relative;
    overflow: hidden;
}

.booking-steps {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}

.step {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--gray);
    font-size: 14px;
    font-weight: 600;
}

.step .num {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: var(--gray-light);
    color: var(--gray);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    font-size: 13px;
    transition: all 0.3s ease;
}

.step.active .num {
    background: var(--orange);
    color: #fff;
    box-shadow: 0 0 0 5px rgba(255, 107, 53, 0.15);
}

.step.active {
    color: var(--navy);
}
.step-line {
    width: 40px;
    height: 2px;
    background: var(--gray-light);
}

.vehicles-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin-bottom: 30px;
}
.vehicle-card {
    position: relative;
    background: #fff;
    border: 2px solid #edf2f7;
    border-radius: 18px;
    padding: 18px;
    text-align: center;
    cursor: pointer;
    transition: 0.35s ease;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.vehicle-card:hover {
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.35);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.08);
}

.vehicle-card.selected {
    border-color: var(--orange);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.18);
}

.vehicle-check {
    position: absolute;
    top: 12px;
    left: 12px;
    width: 28px;
    height: 28px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    opacity: 0;
    transform: scale(0);
    transition: 0.3s;
    z-index: 5;
}

.vehicle-card.selected .vehicle-check {
    opacity: 1;
    transform: scale(1);
}

.vehicle-icon {
    width: 100%;
    height: 170px;
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 15px;
    background: #f8fafc;
    display: flex;
    justify-content: center;
    align-items: center;
}

.vehicle-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: 0.4s;
}

.vehicle-card:hover .vehicle-icon img {
    transform: scale(1.05);
}

.vehicle-name {
    font-size: 18px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
    line-height: 1.4;
}

.vehicle-desc {
    font-size: 14px;
    color: #64748b;
    line-height: 1.7;
}

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

.form-group {
    position: relative;
}
.form-group.full {
    grid-column: 1 / -1;
}

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 6px;
}

.form-group label .req {
    color: var(--orange);
}

.input-wrapper {
    position: relative;
}

.input-wrapper .icon {
    position: absolute;
    right: 14px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--gray);
    font-size: 15px;
    pointer-events: none;
    transition: color 0.3s ease;
}

.form-input {
    width: 100%;
    padding: 14px 42px 14px 16px;
    border: 2px solid var(--gray-light);
    border-radius: 12px;
    font-size: 14px;
    font-family: inherit;
    background: var(--bg);
    color: var(--navy);
    transition: all 0.3s ease;
}

.form-input:focus {
    outline: none;
    border-color: var(--orange);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.input-wrapper:focus-within .icon {
    color: var(--orange);
}
.form-input::placeholder {
    color: #94a3b8;
}

textarea.form-input {
    resize: vertical;
    min-height: 90px;
    padding-top: 14px;
}

.submit-row {
    grid-column: 1 / -1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-top: 10px;
    padding-top: 24px;
    border-top: 1px solid var(--gray-light);
}

.booking-summary .label {
    font-size: 12px;
    color: var(--gray);
    margin-bottom: 2px;
}
.booking-summary .vehicle-chosen {
    font-size: 16px;
    font-weight: 800;
    color: var(--navy);
}
.booking-summary .vehicle-chosen span {
    color: var(--orange);
}

.btn-submit {
    background: linear-gradient(
        135deg,
        var(--orange) 0%,
        var(--orange-dark) 100%
    );
    color: #fff;
    border: none;
    padding: 16px 36px;
    border-radius: 12px;
    font-size: 15px;
    font-weight: 800;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
    transition: all 0.3s ease;
    font-family: inherit;
    white-space: nowrap;
}

.btn-submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 28px rgba(255, 107, 53, 0.45);
}
.btn-submit:disabled {
    background: var(--gray-light);
    color: var(--gray);
    cursor: not-allowed;
    box-shadow: none;
    transform: none;
}

/* ===== FEATURES ===== */
.features-section {
    padding: 100px 20px;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.features-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(
            circle at 15% 50%,
            rgba(255, 107, 53, 0.1) 0%,
            transparent 35%
        ),
        radial-gradient(
            circle at 85% 80%,
            rgba(21, 101, 192, 0.15) 0%,
            transparent 40%
        );
}

.features-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
.features-section .section-title {
    color: #fff;
}
.features-section .section-desc {
    color: rgba(255, 255, 255, 0.7);
}

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

.feature-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 28px 22px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--orange), var(--orange-light));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s ease;
}

.feature-card:hover {
    background: rgba(255, 255, 255, 0.06);
    transform: translateY(-6px);
    border-color: rgba(255, 107, 53, 0.3);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon {
    width: 54px;
    height: 54px;
    background: linear-gradient(
        135deg,
        rgba(255, 107, 53, 0.15),
        rgba(255, 107, 53, 0.05)
    );
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--orange);
    font-size: 22px;
    margin-bottom: 18px;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    transform: rotate(-5deg) scale(1.05);
    border-color: transparent;
}

.feature-title {
    font-size: 18px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 8px;
}
.feature-text {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
}

/* ===== ABOUT ===== */
.about-section {
    padding: 100px 20px;
    background: #fff;
}

.about-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-visual {
    position: relative;
}
.about-img {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border-radius: 24px;
    background-image: url("https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?w=800&q=80");
    background-size: cover;
    background-position: center;
    box-shadow: 0 25px 50px rgba(10, 37, 64, 0.15);
}

.about-experience {
    position: absolute;
    bottom: -25px;
    right: -25px;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    color: #fff;
    padding: 24px 32px;
    border-radius: 20px;
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    text-align: center;
}

.about-experience .num {
    font-size: 36px;
    font-weight: 900;
    line-height: 1;
}
.about-experience .text {
    font-size: 12px;
    margin-top: 4px;
    opacity: 0.95;
}

.about-content .section-tag {
    background: rgba(255, 107, 53, 0.1);
    color: var(--orange);
}
.about-content .section-title {
    text-align: right;
    margin-bottom: 18px;
}
.about-text {
    color: var(--gray);
    font-size: 15px;
    line-height: 1.9;
    margin-bottom: 24px;
}

.about-list {
    list-style: none;
    margin-bottom: 26px;
}
.about-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 0;
    color: var(--navy);
    font-weight: 600;
    font-size: 14px;
}

.about-list li .check {
    width: 26px;
    height: 26px;
    background: rgba(255, 107, 53, 0.12);
    color: var(--orange);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 12px;
}

/* ===== VEHICLES SHOWCASE ===== */
.vehicles-section {
    padding: 100px 20px;
    background: var(--bg);
}
.vehicles-container {
    max-width: 1200px;
    margin: 0 auto;
}

.vehicles-showcase {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.vehicle-showcase-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(10, 37, 64, 0.05);
    border: 1px solid var(--gray-light);
    transition: all 0.4s ease;
}

.vehicle-showcase-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(10, 37, 64, 0.12);
    border-color: rgba(255, 107, 53, 0.3);
}

.vehicle-showcase-img {
    height: 200px;
    background: linear-gradient(135deg, var(--navy), var(--navy-2));
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vehicle-showcase-img::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 25px 25px;
}

.vehicle-showcase-img svg {
    width: 75%;
    height: 75%;
    position: relative;
    z-index: 1;
    filter: drop-shadow(0 10px 15px rgba(0, 0, 0, 0.3));
    transition: transform 0.4s ease;
}

.vehicle-showcase-card:hover .vehicle-showcase-img svg {
    transform: scale(1.1) translateX(-10px);
}

.vehicle-showcase-content {
    padding: 24px;
}
.vehicle-showcase-name {
    font-size: 20px;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 6px;
}
.vehicle-showcase-desc {
    color: var(--gray);
    font-size: 13px;
    line-height: 1.6;
    margin-bottom: 18px;
}

.vehicle-specs {
    display: flex;
    gap: 14px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.spec {
    flex: 1;
}
.spec-label {
    font-size: 11px;
    color: var(--gray);
    margin-bottom: 2px;
}
.spec-value {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
}
.spec-value .accent {
    color: var(--orange);
}

/* ===== TESTIMONIALS ===== */
.testimonials-section {
    padding: 100px 20px;
    background: #fff;
}
.testimonials-container {
    max-width: 1200px;
    margin: 0 auto;
}

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

.testimonial-card {
    background: var(--bg);
    border-radius: 18px;
    padding: 28px;
    border: 1px solid var(--gray-light);
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    background: #fff;
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.08);
    transform: translateY(-4px);
}

.quote-icon {
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 36px;
    color: rgba(255, 107, 53, 0.15);
    font-family: serif;
    line-height: 1;
}

.testimonial-stars {
    display: flex;
    gap: 2px;
    margin-bottom: 14px;
    color: var(--orange);
    font-size: 13px;
}
.testimonial-text {
    color: var(--navy);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--gray-light);
}

.author-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--orange), var(--orange-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 800;
    font-size: 16px;
}

.author-info .name {
    font-weight: 700;
    color: var(--navy);
    font-size: 14px;
}
.author-info .role {
    font-size: 12px;
    color: var(--gray);
    margin-top: 2px;
}

/* ===== CTA ===== */
.cta-section {
    padding: 60px 20px 100px;
    background: var(--bg);
}
.cta-container {
    max-width: 1200px;
    margin: 0 auto;
}

.cta-box {
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-2) 100%);
    border-radius: 30px;
    padding: 60px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-box::before,
.cta-box::after {
    content: "";
    position: absolute;
    border-radius: 50%;
}
.cta-box::before {
    top: -40%;
    right: -10%;
    width: 450px;
    height: 450px;
    background: radial-gradient(
        circle,
        rgba(255, 107, 53, 0.2),
        transparent 60%
    );
}
.cta-box::after {
    bottom: -30%;
    left: -10%;
    width: 350px;
    height: 350px;
    background: radial-gradient(
        circle,
        rgba(21, 101, 192, 0.25),
        transparent 60%
    );
}

.cta-content {
    position: relative;
    z-index: 1;
}
.cta-title {
    font-size: clamp(26px, 4vw, 38px);
    font-weight: 900;
    color: #fff;
    margin-bottom: 14px;
}
.cta-text {
    color: rgba(255, 255, 255, 0.8);
    font-size: 16px;
    margin-bottom: 28px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}
.cta-buttons {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 60px 20px 30px;
}
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    margin-bottom: 40px;
}

.footer-about .logo {
    margin-bottom: 18px;
}
.footer-about p {
    font-size: 13px;
    line-height: 1.8;
    margin-bottom: 18px;
    color: rgba(255, 255, 255, 0.6);
}

.social-links {
    display: flex;
    gap: 10px;
}
.social-link {
    width: 38px;
    height: 38px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--orange);
    color: #fff;
    border-color: var(--orange);
    transform: translateY(-3px);
}

.footer-col h4 {
    color: #fff;
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 18px;
}
.footer-col ul {
    list-style: none;
}
.footer-col ul li {
    margin-bottom: 10px;
}
.footer-col ul li a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 13px;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-col ul li a:hover {
    color: var(--orange);
    padding-right: 4px;
}

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 13px;
    margin-bottom: 12px;
    line-height: 1.6;
}
.footer-contact li i {
    color: var(--orange);
    margin-top: 4px;
}

.footer-bottom {
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
    font-size: 12px;
    color: rgba(255, 255, 255, 0.4);
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%) translateY(150px);
    background: var(--navy);
    color: #fff;
    padding: 16px 24px;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(10, 37, 64, 0.3);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 9999;
    transition: transform 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    border-right: 4px solid var(--orange);
    max-width: 90%;
}

.toast.show {
    transform: translateX(-50%) translateY(0);
}

.toast .toast-icon {
    width: 32px;
    height: 32px;
    background: var(--orange);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 14px;
    flex-shrink: 0;
}
.toast .toast-text {
    font-size: 14px;
    font-weight: 600;
}

/* ===== REVEAL ===== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition:
        opacity 0.8s ease,
        transform 0.8s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vehicles-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .vehicles-showcase {
        grid-template-columns: repeat(2, 1fr);
    }
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
    }
    .about-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    .about-experience {
        bottom: 20px;
        right: 20px;
    }
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    .slider-controls {
        /* bottom: 280px; */
    }
}

@media (max-width: 768px) {
    .navbar {
        top: 10px;
        right: 10px;
        left: 10px;
        padding: 10px 15px;
    }
    .nav-links {
        display: none;
        position: absolute;
        top: 100%;
        right: 0;
        left: 0;
        background: rgba(10, 37, 64, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        padding: 15px;
        gap: 5px;
        border-radius: 20px;
        margin-top: 10px;
        border: 1px solid rgba(255, 255, 255, 0.1);
        max-height: 80vh;
        overflow-y: auto;
    }
    .nav-links.open {
        display: flex;
    }
    .nav-links a {
        width: 100%;
        padding: 12px 16px;
    }
    .nav-cta {
        margin-right: 0;
        margin-top: 5px;
        text-align: center;
    }
    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero {
        min-height: 600px;
        padding-top: 80px;
        padding-bottom: 270px;
        height: auto;
    }
    .hero-content {
        padding: 100px 20px 0;
        height: auto;
        align-items: flex-start;
    }
    .hero-stats {
        position: absolute;
        bottom: 20px;
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }
    .stat-card {
        padding: 14px 16px;
    }
    .stat-card .value {
        font-size: 20px;
    }
    .slider-controls {
        bottom: 5px;
        /* right: 20px; */
    }

    .booking-card {
        padding: 24px 18px;
    }
    .booking-steps {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }

    .step {
        width: 100%;
    }

    .step-line {
        width: 2px;
        height: 30px;
        margin-right: 14px; /* RTL */
    }

    .form-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
    .submit-row {
        flex-direction: column;
        align-items: stretch;
    }
    .btn-submit {
        justify-content: center;
        width: 100%;
    }

    .vehicles-showcase {
        grid-template-columns: 1fr;
    }
    .cta-box {
        padding: 40px 24px;
    }
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 30px;
    }
    .hero-subtitle {
        font-size: 14px;
    }
    .hero-buttons {
        flex-direction: column;
        width: 100%;
    }
    .btn-primary,
    .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }
    .vehicles-grid {
        grid-template-columns: 1fr 1fr;
    }
    .hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .section-title {
        font-size: 26px;
    }
    .booking-card {
        padding: 20px 14px;
    }
    .vehicle-card {
        padding: 16px 10px;
    }

    .about-experience {
        padding: 16px 20px;
        bottom: 10px;
        right: 10px;
    }
    .about-experience .num {
        font-size: 28px;
    }

    .testimonial-card {
        padding: 20px;
    }
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    .cta-buttons a {
        width: 100%;
        justify-content: center;
    }
}
@media (max-width: 1200px) {
    .vehicles-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

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

    .vehicle-icon {
        height: 160px;
    }
}

@media (max-width: 576px) {
    .vehicles-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 12px;
    }

    .vehicle-card {
        padding: 12px;
        border-radius: 14px;
    }

    .vehicle-icon {
        width: 100%;
        height: 120px;
        margin-bottom: 10px;
    }

    .vehicle-icon img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        border-radius: 10px;
    }

    .vehicle-name {
        font-size: 14px;
        font-weight: 700;
        margin-bottom: 4px;
    }

    .vehicle-desc {
        font-size: 12px;
        line-height: 1.4;
    }

    .vehicle-check {
        width: 22px;
        height: 22px;
        font-size: 10px;
        top: 8px;
        left: 8px;
    }
}
@media (max-width: 360px) {
    .vehicles-grid {
        grid-template-columns: 1fr;
    }

    .vehicle-icon {
        height: 170px;
    }
}
.testimonialsSwiper {
    padding: 15px 5px 60px;
    overflow: visible;
}

.testimonialsSwiper .swiper-slide {
    height: auto;
}

.testimonialsSwiper .testimonial-card {
    height: 100%;
}

.author-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background: var(--orange);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 22px;
}

.author-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}


@media (max-width: 768px) {
    .testimonialsSwiper {
        padding-bottom: 50px;
    }

}
.testimonialsSwiper .swiper-pagination {
    bottom: 10px !important;
    display: flex;
    justify-content: center;
    gap: 8px;
}

/* الشكل الأساسي للنقاط */
.testimonialsSwiper .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    border-radius: 20px;
    background: #f3a6a6e6;
    opacity: 1;
    transition: all 0.3s ease;
    position: relative;
}

/* تأثير hover (اختياري) */
.testimonialsSwiper .swiper-pagination-bullet:hover {
    transform: scale(1.2);
    background: rgba(255, 255, 255, 0.7);
}

/* البullet النشط */
.testimonialsSwiper .swiper-pagination-bullet-active {
    width: 22px;
    background: var(--orange);
    box-shadow: 0 4px 12px rgba(255, 102, 0, 0.4);
}

/* إضافة لمعة خفيفة للنشط */
.testimonialsSwiper .swiper-pagination-bullet-active::after {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 20px;
    background: rgba(255, 102, 0, 0.15);
    animation: pulseDot 1.5s infinite;
}

@keyframes pulseDot {
    0% {
        transform: scale(0.8);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.2);
        opacity: 0.2;
    }
    100% {
        transform: scale(0.8);
        opacity: 0.6;
    }
}
