/* ============================
   CSS RESET & ROOT VARIABLES
   ============================ */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #e63946;
    --secondary: #1d3557;
    --accent: #f1faee;
    --dark: #0a0a0a;
    --light-gray: #f8f9fa;
    --medium-gray: #e9ecef;
    --text-gray: #6c757d;
    --border-gray: #dee2e6;
    --success: #28a745;
    --info: #17a2b8;
    --warning: #ffc107;
}

html {
    overflow-x: hidden;
    width: 100%;
}

body {
    font-family: 'Poppins', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: var(--dark);
    overflow-x: hidden;
    width: 100%;
    position: relative;
}

body.rtl {
    direction: rtl;
    text-align: right;
}

/* Prevent horizontal scroll on mobile */
* {
    max-width: 100%;
}

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

/* Mobile-friendly tap highlights */
@media (hover: none) and (pointer: coarse) {
    button,
    a,
    .btn-primary,
    .btn-secondary,
    .cta-btn {
        -webkit-tap-highlight-color: rgba(230, 57, 70, 0.2);
    }
}

/* ============================
   HEADER & NAVIGATION
   ============================ */

header {
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
}

header.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 4px 30px rgba(0,0,0,0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 5%;
}

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

.logo img {
    height: 50px;
    filter: brightness(0) invert(1);
}

.logo span {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

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

.nav-links a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s;
    position: relative;
    padding: 5px 0;
}

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

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

.nav-links a:hover {
    color: var(--primary);
}

.lang-switcher {
    display: flex;
    gap: 8px;
    margin-left: 20px;
    padding-left: 20px;
    border-left: 1px solid rgba(255,255,255,0.2);
}

.lang-btn {
    background: transparent;
    border: 1px solid rgba(255,255,255,0.3);
    color: white;
    padding: 6px 12px;
    border-radius: 5px;
    cursor: pointer;
    font-weight: 500;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.lang-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.lang-btn.active {
    background: var(--primary);
    border-color: var(--primary);
}

.burger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.burger div {
    width: 25px;
    height: 3px;
    background: white;
    transition: all 0.3s;
    border-radius: 3px;
}

/* ============================
   HERO SECTION
   ============================ */

.hero {
    height: 100vh;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), url('src/Renault-clio.jpg') center/cover;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(230, 57, 70, 0.1) 0%, rgba(29, 53, 87, 0.1) 100%);
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 5%;
    position: relative;
    z-index: 1;
}

.hero h1 {
    font-size: 4rem;
    color: white;
    margin-bottom: 1rem;
    animation: fadeInUp 1s ease;
    font-weight: 700;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero h1 span {
    color: var(--primary);
}

.hero p {
    font-size: 1.3rem;
    color: var(--accent);
    margin-bottom: 2rem;
    animation: fadeInUp 1s ease 0.2s backwards;
}

.cta-btn {
    display: inline-block;
    background: var(--primary);
    color: white;
    padding: 15px 40px;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    animation: fadeInUp 1s ease 0.4s backwards;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
    border: none;
    cursor: pointer;
    font-size: 1rem;
}

.cta-btn:hover {
    background: #d62839;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

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

/* ============================
   SECTIONS
   ============================ */

section {
    padding: 80px 5%;
    max-width: 1400px;
    margin: 0 auto;
}

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

.section-title h2 {
    font-size: 2.8rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
}

.section-title h2 span {
    color: var(--primary);
}

.section-title p {
    color: var(--text-gray);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

/* ============================
   ABOUT SECTION
   ============================ */

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

.about-text h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.about-text p {
    color: var(--text-gray);
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-image {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.about-image img {
    width: 100%;
    display: block;
    transition: transform 0.5s;
}

.about-image:hover img {
    transform: scale(1.05);
}

/* ============================
   SPECIAL OFFER BANNER
   ============================ */

/* ============================
   SEARCH BANNER
   ============================ */

.search-banner {
    background: white;
    padding: 30px;
    margin: -50px auto 60px;
    max-width: 1400px;
    border-radius: 20px;
    box-shadow: 0 10px 50px rgba(0,0,0,0.15);
    position: relative;
    z-index: 10;
}

.search-container {
    display: grid;
    grid-template-columns: repeat(6, 1fr) auto;
    gap: 15px;
    align-items: end;
}

.search-field {
    display: flex;
    gap: 12px;
    align-items: center;
    padding: 18px 20px;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    background: white;
    transition: all 0.3s;
    min-height: 80px;
}

.search-field:hover {
    border-color: var(--primary);
    box-shadow: 0 2px 8px rgba(230, 57, 70, 0.1);
}

.search-field:focus-within {
    border-color: var(--primary);
    box-shadow: 0 2px 12px rgba(230, 57, 70, 0.15);
}

.search-field i {
    color: var(--primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.field-content {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.field-content label {
    font-size: 0.75rem;
    color: var(--text-gray);
    margin-bottom: 5px;
    font-weight: 500;
}

.field-content select,
.field-content input {
    border: none;
    outline: none;
    font-size: 1rem;
    font-weight: 600;
    color: var(--secondary);
    font-family: inherit;
    background: transparent;
    cursor: pointer;
    padding: 0;
    width: 100%;
}

.field-content input[type="date"],
.field-content input[type="time"] {
    color: var(--secondary);
    font-weight: 600;
}

.field-content input[type="date"]::-webkit-calendar-picker-indicator,
.field-content input[type="time"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    opacity: 0.6;
}

.field-content input[type="date"]::-webkit-calendar-picker-indicator:hover,
.field-content input[type="time"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.field-content select {
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%2324292f' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 18px;
    padding-right: 25px;
}

.search-btn {
    background: var(--primary);
    color: white;
    border: none;
    padding: 20px 30px;
    border-radius: 12px;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    background: var(--secondary);
    transform: scale(1.05);
}

.search-message {
    margin-top: 20px;
    padding: 18px 25px;
    border-radius: 10px;
    text-align: center;
    font-weight: 500;
    font-size: 1rem;
    display: none;
}

.search-message.error {
    background: #ffe5e5;
    color: #d32f2f;
    border: 1px solid #ffcdd2;
    display: block;
}

.search-message.success {
    background: #efe;
    color: #060;
    border: 1px solid #cfc;
    display: block;
}

.search-message.info {
    background: #fef9e6;
    color: #856404;
    border: 1px solid #ffeaa7;
    display: block;
}

.search-results {
    padding: 60px 0;
    max-width: 1400px;
    margin: 0 auto;
}

.discount-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-weight: 700;
    font-size: 0.9rem;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.4);
}

.search-result-pricing {
    margin-top: 20px;
}

.price-breakdown {
    background: var(--light-gray);
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.daily-rate {
    font-size: 1.1rem;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 10px;
}

.original-price {
    text-decoration: line-through;
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-left: 10px;
    font-weight: 400;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--primary);
    font-size: 1.2rem;
}

.savings {
    font-size: 0.85rem;
    color: #27ae60;
    font-weight: 600;
    background: #e8f8f5;
    padding: 5px 10px;
    border-radius: 5px;
}

.special-offer-banner {
    background: linear-gradient(135deg, var(--primary) 0%, #c41e2e 100%);
    padding: 40px;
    border-radius: 20px;
    margin: 80px 0;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(230, 57, 70, 0.3);
}

.special-offer-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.special-offer-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -5%;
    width: 200px;
    height: 200px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
}

.offer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
    z-index: 1;
}

.offer-text h3 {
    color: white;
    font-size: 2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.offer-text p {
    color: rgba(255,255,255,0.9);
    font-size: 1.1rem;
}

.offer-code {
    background: white;
    color: var(--primary);
    padding: 20px 40px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.2);
}

.offer-code .code {
    font-size: 2rem;
    font-weight: 700;
    display: block;
    margin-bottom: 5px;
    letter-spacing: 2px;
}

.offer-code .validity {
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* ============================
   FLEET SECTION
   ============================ */

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 40px;
}

.car-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s;
    cursor: pointer;
}

.car-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.15);
}

.car-image {
    height: 220px;
    overflow: hidden;
    position: relative;
    background: var(--light-gray);
}

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

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

.car-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    box-shadow: 0 3px 10px rgba(0,0,0,0.2);
}

.car-info {
    padding: 25px;
}

.car-info h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.car-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    margin-bottom: 20px;
}

.feature {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-gray);
    font-size: 0.95rem;
}

.feature i {
    color: var(--primary);
}

.car-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 2px solid var(--light-gray);
}

.price {
    font-size: 1.8rem;
    color: var(--primary);
    font-weight: 700;
}

.price span {
    font-size: 0.9rem;
    color: var(--text-gray);
    font-weight: 400;
}

.btn-primary {
    background: var(--primary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.btn-primary:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.btn-secondary {
    background: var(--secondary);
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(29, 53, 87, 0.3);
    margin-left: 10px;
}

.btn-secondary:hover {
    background: #152a47;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(29, 53, 87, 0.4);
}

/* ============================
   WHY CHOOSE US SECTION
   ============================ */

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-top: 40px;
}

.feature-card {
    text-align: center;
    padding: 40px 30px;
    background: white;
    border-radius: 15px;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.feature-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary);
    margin-bottom: 20px;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.feature-card p {
    color: var(--text-gray);
    line-height: 1.6;
}

/* ============================
   PRICING SECTION
   ============================ */

.pricing-container {
    background: var(--light-gray);
    padding: 60px 5%;
    border-radius: 20px;
}

.pricing-table-wrapper {
    overflow-x: auto;
    margin-bottom: 60px;
}

.pricing-table {
    width: 100%;
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    border-collapse: collapse;
}

.pricing-table thead {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f1f38 100%);
}

.pricing-table th {
    color: white;
    padding: 20px;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.pricing-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid var(--border-gray);
}

.pricing-table tbody tr:hover {
    background: var(--light-gray);
}

.pricing-table tbody tr:last-child td {
    border-bottom: none;
}

.discount-badge {
    background: var(--success);
    color: white;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-left: 8px;
}

/* Extra Services */
.extra-services {
    margin-bottom: 60px;
}

.extra-services h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.service-price-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    border-left: 4px solid var(--primary);
}

.service-price-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.service-price-card h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.service-price-card h4 i {
    color: var(--primary);
}

.price-tag {
    color: var(--primary);
    font-size: 1.5rem;
    font-weight: 700;
    margin: 15px 0;
}

.service-desc {
    color: var(--text-gray);
    line-height: 1.6;
}

/* Insurance Options */
.insurance-options {
    margin-bottom: 60px;
}

.insurance-options h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.insurance-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.insurance-card {
    background: white;
    padding: 35px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    position: relative;
    border: 2px solid transparent;
}

.insurance-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    border-color: var(--primary);
}

.insurance-badge {
    background: var(--primary);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.insurance-badge.optional {
    background: var(--info);
}

.insurance-card h4 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 10px;
}

.insurance-price {
    color: var(--primary);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.insurance-features {
    list-style: none;
}

.insurance-features li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.insurance-features li:last-child {
    border-bottom: none;
}

.insurance-features li i {
    color: var(--success);
}

/* Deposits */
.deposits {
    margin-bottom: 40px;
}

.deposits h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
    text-align: center;
}

.deposits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}

.deposit-card {
    background: white;
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
    text-align: center;
}

.deposit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.deposit-card h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
}

.deposit-amount {
    color: var(--primary);
    font-size: 1.8rem;
    font-weight: 700;
    margin: 15px 0;
}

.deposit-desc {
    color: var(--text-gray);
    font-size: 0.95rem;
}

/* Custom Quote CTA */
.custom-quote-cta {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f1f38 100%);
    padding: 50px;
    border-radius: 20px;
    text-align: center;
    color: white;
    margin-top: 40px;
}

.custom-quote-cta h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.custom-quote-cta p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

/* ============================
   FAQ SECTION
   ============================ */

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

.faq-item {
    background: white;
    margin-bottom: 20px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    transition: all 0.3s;
}

.faq-item:hover {
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.faq-question {
    padding: 25px 30px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: white;
    transition: all 0.3s;
}

.faq-question:hover {
    background: var(--light-gray);
}

.faq-question h3 {
    font-size: 1.2rem;
    color: var(--secondary);
    font-weight: 600;
    margin: 0;
    flex: 1;
}

.faq-question i {
    color: var(--primary);
    font-size: 1.3rem;
    transition: transform 0.3s;
}

.faq-item.active .faq-question i {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--light-gray);
}

.faq-item.active .faq-answer {
    max-height: 1000px;
    padding: 25px 30px;
}

.faq-answer p {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 15px;
}

.faq-answer ul {
    margin-left: 20px;
    margin-bottom: 15px;
}

.faq-answer li {
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 8px;
}

.faq-answer strong {
    color: var(--secondary);
}

/* ============================
   TERMS & CONDITIONS SECTION
   ============================ */

.terms-container {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

.terms-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.term-category h3 {
    font-size: 1.5rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.term-category h3 i {
    color: var(--primary);
}

.term-category ul {
    list-style: none;
}

.term-category li {
    padding: 12px 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
    line-height: 1.6;
}

.term-category li:last-child {
    border-bottom: none;
}

.term-category li i {
    color: var(--primary);
    margin-top: 4px;
    flex-shrink: 0;
}

/* ============================
   CONTACT SECTION
   ============================ */

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

.contact-info {
    background: linear-gradient(135deg, var(--secondary) 0%, #0f1f38 100%);
    padding: 50px;
    border-radius: 20px;
    color: white;
}

.contact-info h3 {
    font-size: 2rem;
    margin-bottom: 30px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    background: rgba(255,255,255,0.1);
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: var(--primary);
}

.info-text h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.info-text p {
    opacity: 0.9;
    line-height: 1.6;
}

.info-text a {
    color: white;
    text-decoration: none;
    transition: color 0.3s;
}

.info-text a:hover {
    color: var(--primary);
}

.contact-form {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
}

.contact-form h3 {
    font-size: 2rem;
    color: var(--secondary);
    margin-bottom: 30px;
}

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

.form-group label {
    display: block;
    color: var(--secondary);
    font-weight: 600;
    margin-bottom: 8px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px;
    border: 2px solid var(--border-gray);
    border-radius: 10px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
    background-color: white;
}

.form-group select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.submit-btn {
    width: 100%;
    background: var(--primary);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(230, 57, 70, 0.3);
}

.submit-btn:hover {
    background: #d62839;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(230, 57, 70, 0.4);
}

.map-container {
    grid-column: 1 / -1;
    height: 450px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    margin-top: 40px;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* ============================
   FOOTER
   ============================ */

footer {
    background: var(--dark);
    color: white;
    padding: 60px 5% 30px;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: var(--primary);
}

.footer-section p,
.footer-section a {
    color: rgba(255,255,255,0.8);
    line-height: 1.8;
    text-decoration: none;
    display: block;
    margin-bottom: 10px;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--primary);
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
}

/* ============================
   MODALS
   ============================ */

.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    overflow-y: auto;
}

.modal.active {
    display: flex;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: white;
    padding: 40px;
    border-radius: 20px;
    max-width: 600px;
    width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s;
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

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

.close {
    position: absolute;
    right: 20px;
    top: 20px;
    font-size: 2rem;
    color: var(--text-gray);
    cursor: pointer;
    transition: color 0.3s;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--light-gray);
}

.close:hover {
    color: var(--primary);
    background: var(--medium-gray);
}

.modal-content h2 {
    color: var(--secondary);
    margin-bottom: 25px;
    font-size: 2rem;
}

/* Car Details Modal */
.car-details-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--light-gray);
}

.car-details-header h2 {
    font-size: 2rem;
    color: var(--secondary);
    margin: 0;
}

.car-category {
    background: var(--primary);
    color: white;
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
}

.car-details-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
}

.car-details-section {
    background: var(--light-gray);
    padding: 25px;
    border-radius: 15px;
}

.car-details-section h3 {
    font-size: 1.4rem;
    color: var(--secondary);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.car-details-section h3 svg {
    width: 24px;
    height: 24px;
    fill: var(--primary);
}

.spec-item {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-gray);
}

.spec-item:last-child {
    border-bottom: none;
}

.spec-label {
    color: var(--text-gray);
    font-weight: 500;
}

.spec-value {
    color: var(--secondary);
    font-weight: 600;
}

.features-list {
    list-style: none;
    padding: 0;
}

.features-list li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: flex-start;
    gap: 10px;
    border-bottom: 1px solid var(--border-gray);
}

.features-list li:last-child {
    border-bottom: none;
}

.car-details-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid var(--light-gray);
    flex-wrap: wrap;
    gap: 20px;
}

.car-details-price {
    font-size: 2.5rem;
    color: var(--primary);
    font-weight: 700;
}

.car-details-price span {
    font-size: 1rem;
    color: var(--text-gray);
    font-weight: 400;
}

.car-details-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn {
    padding: 12px 30px;
    border-radius: 25px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
    font-size: 1rem;
}

.btn-outline {
    background: white;
    border: 2px solid var(--primary);
    color: var(--primary);
}

.btn-outline:hover {
    background: var(--primary);
    color: white;
}

.car-detail-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    margin-bottom: 25px;
}

.car-detail-content h3 {
    font-size: 1.8rem;
    color: var(--secondary);
    margin-bottom: 20px;
}

.detail-section {
    margin-bottom: 25px;
}

.detail-section h4 {
    font-size: 1.3rem;
    color: var(--secondary);
    margin-bottom: 15px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.detail-section h4 i {
    color: var(--primary);
}

.detail-section ul {
    list-style: none;
}

.detail-section li {
    padding: 10px 0;
    color: var(--text-gray);
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid var(--light-gray);
}

.detail-section li:last-child {
    border-bottom: none;
}

.detail-section li i {
    color: var(--primary);
}

.detail-section p {
    color: var(--text-gray);
    line-height: 1.8;
}

/* Booking Modal */
.booking-summary {
    background: var(--light-gray);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.booking-summary h4 {
    color: var(--secondary);
    margin-bottom: 15px;
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border-gray);
}

.summary-item:last-child {
    border-bottom: none;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary);
    padding-top: 15px;
    margin-top: 10px;
    border-top: 2px solid var(--primary);
}

.whatsapp-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #25D366;
    color: white;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
    width: 100%;
    justify-content: center;
    font-size: 1.1rem;
}

.whatsapp-btn:hover {
    background: #20BA5A;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

/* ============================
   RESPONSIVE DESIGN
   ============================ */

@media (max-width: 1024px) {
    .hero h1 {
        font-size: 3rem;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-container {
        grid-template-columns: 1fr;
    }

    .offer-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 768px) {
    /* Search Banner Mobile */
    .search-banner {
        margin: 20px;
        padding: 20px;
    }

    .search-container {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .search-btn {
        width: 100%;
        padding: 18px;
    }

    .nav-links {
        position: fixed;
        right: -100%;
        top: 70px;
        flex-direction: column;
        background: rgba(10, 10, 10, 0.98);
        width: 100%;
        padding: 40px 0;
        transition: right 0.3s;
        gap: 0;
        max-height: calc(100vh - 70px);
        overflow-y: auto;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        width: 100%;
        text-align: center;
        padding: 15px 0;
    }

    .nav-links a {
        display: block;
        padding: 12px 20px;
        min-height: 44px;
    }

    .lang-switcher {
        margin-left: 0;
        padding-left: 0;
        border-left: none;
        padding-top: 20px;
        border-top: 1px solid rgba(255,255,255,0.2);
        justify-content: center;
    }

    .lang-btn {
        min-width: 50px;
        min-height: 44px;
        padding: 8px 16px;
    }

    .burger {
        display: flex;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        justify-content: center;
        align-items: center;
    }

    .burger.active div:nth-child(1) {
        transform: rotate(-45deg) translate(-5px, 6px);
    }

    .burger.active div:nth-child(2) {
        opacity: 0;
    }

    .burger.active div:nth-child(3) {
        transform: rotate(45deg) translate(-5px, -6px);
    }

    .hero {
        height: 60vh;
        min-height: 400px;
    }

    .hero h1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
    }

    .section-title h2 {
        font-size: 2rem;
        line-height: 1.3;
    }

    .about-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .features-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .contact-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .modal-content {
        padding: 30px 20px;
        width: 95%;
        max-height: 90vh;
    }

    .special-offer-banner {
        padding: 30px 20px;
    }

    .offer-content {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .offer-text h3 {
        font-size: 1.5rem;
    }

    .offer-code .code {
        font-size: 1.5rem;
    }

    .pricing-table-wrapper {
        overflow-x: auto;
        -webkit-overflow-scrolling: touch;
    }

    .pricing-table {
        font-size: 0.85rem;
        min-width: 600px;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 12px 8px;
        white-space: nowrap;
    }

    .services-grid,
    .insurance-grid,
    .deposits-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

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

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

    /* Form improvements for mobile */
    .form-group input,
    .form-group textarea,
    .form-group select {
        font-size: 16px;
        min-height: 44px;
    }

    .cta-btn,
    .btn-primary,
    .btn-secondary,
    .submit-btn {
        min-height: 44px;
        width: 100%;
    }

    /* Better touch targets */
    .car-card {
        margin-bottom: 20px;
    }

    .faq-question {
        padding: 20px;
        min-height: 60px;
    }

    .faq-question h3 {
        font-size: 1.05rem;
        line-height: 1.4;
    }
}

@media (max-width: 480px) {
    section {
        padding: 60px 4%;
    }

    .hero {
        height: 55vh;
        min-height: 350px;
    }

    .hero h1 {
        font-size: 1.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1rem;
    }

    .section-title h2 {
        font-size: 1.8rem;
    }

    .section-title p {
        font-size: 0.95rem;
    }

    .cta-btn {
        padding: 12px 25px;
        font-size: 0.95rem;
    }

    .car-info h3 {
        font-size: 1.2rem;
    }

    .car-features {
        font-size: 0.9rem;
    }

    .price {
        font-size: 1.4rem;
    }

    .btn-primary,
    .btn-secondary {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .about-text h3 {
        font-size: 1.5rem;
    }

    .about-text p {
        font-size: 0.95rem;
    }

    .feature-card {
        padding: 30px 20px;
    }

    .feature-icon {
        font-size: 2.5rem;
    }

    .feature-card h3 {
        font-size: 1.1rem;
    }

    .offer-text h3 {
        font-size: 1.3rem;
    }

    .offer-text p {
        font-size: 0.95rem;
    }

    .offer-code {
        padding: 15px 25px;
    }

    .offer-code .code {
        font-size: 1.3rem;
    }

    .pricing-table {
        font-size: 0.75rem;
    }

    .pricing-table th,
    .pricing-table td {
        padding: 10px 6px;
    }

    .service-price-card,
    .insurance-card,
    .deposit-card {
        padding: 20px;
    }

    .contact-info,
    .contact-form {
        padding: 30px 20px;
    }

    .info-item {
        gap: 15px;
    }

    .modal-content {
        padding: 25px 15px;
        width: 98%;
    }

    .modal-content h2 {
        font-size: 1.5rem;
    }

    .footer-content {
        padding: 0 10px;
    }

    .footer-section h3 {
        font-size: 1.3rem;
    }
}

/* RTL Specific Styles */
body.rtl .nav-links {
    right: auto;
    left: -100%;
}

body.rtl .nav-links.active {
    right: auto;
    left: 0;
}

body.rtl .lang-switcher {
    margin-left: 0;
    margin-right: 20px;
    padding-left: 0;
    padding-right: 20px;
    border-left: none;
    border-right: 1px solid rgba(255,255,255,0.2);
}

body.rtl .service-price-card {
    border-left: none;
    border-right: 4px solid var(--primary);
}

body.rtl .term-category ul {
    padding-right: 0;
}

body.rtl .insurance-features,
body.rtl .detail-section ul {
    padding-right: 0;
}

/* Scrollbar Styling */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: var(--light-gray);
}

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

::-webkit-scrollbar-thumb:hover {
    background: #d62839;
}

/* Selection Styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}
