/* Cairo Font - loaded via HTML link tag for better performance */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #2c3e50;
    --secondary-color: #d5e8f7;
    --accent-color: #c99d5f;
    --text-dark: #1a202c;
    --text-light: #555;
    --bg-light: #f0f2f5;
    --white: #ffffff;
    --border-color: #bdd7ee;
    --shadow: 0 2px 10px rgba(44, 62, 80, 0.15);
    --shadow-hover: 0 4px 20px rgba(44, 62, 80, 0.25);
    --gradient-primary: linear-gradient(135deg, #34495e 0%, #2c3e50 100%);
    --gradient-accent: linear-gradient(135deg, #c99d5f 0%, #d9b380 100%);
}

body {
    font-family: 'Cairo', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif, Arial;
    line-height: 1.8;
    color: var(--text-dark);
    direction: rtl;
    text-align: right;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 16px;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.3);
}

/* زر الحجز المميز - اللون الذهبي */
.product-actions .btn-primary,
.product-actions-box .btn-primary {
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(201, 157, 95, 0.4);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: pulse-gold 2s infinite;
}

.product-actions .btn-primary::before,
.product-actions-box .btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

@keyframes pulse-gold {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 157, 95, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(201, 157, 95, 0.7);
    }
}

.product-actions .btn-primary:hover,
.product-actions-box .btn-primary:hover {
    background: linear-gradient(135deg, #d9b380 0%, #c99d5f 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(201, 157, 95, 0.6);
    border-color: var(--white);
}

.product-actions .btn-primary:hover::before,
.product-actions-box .btn-primary:hover::before {
    animation: none;
}

.btn-secondary {
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
}

.btn-secondary:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.25);
}

.btn-book {
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 700;
    padding: 12px 28px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(201, 157, 95, 0.4);
    animation: pulse-booking 2s infinite, shimmer-effect 3s infinite;
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
}

.btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

@keyframes shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}

.btn-book:hover::before {
    animation: none;
    left: 100%;
}

.btn-book:hover {
    background: linear-gradient(135deg, #d9b380 0%, #c99d5f 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 30px rgba(201, 157, 95, 0.6);
    border-color: var(--white);
}

@keyframes pulse-booking {
    0%, 100% {
        box-shadow: 0 4px 15px rgba(201, 157, 95, 0.4);
    }
    50% {
        box-shadow: 0 4px 25px rgba(201, 157, 95, 0.7);
    }
}

.btn-large {
    padding: 15px 40px;
    font-size: 18px;
}

.btn-whatsapp {
    background: var(--gradient-primary);
    color: var(--white);
}

.btn-whatsapp:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 16px rgba(44, 62, 80, 0.3);
}

.btn-phone {
    background: var(--gradient-primary);
    color: var(--white);
}

/* Header */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: var(--white);
    box-shadow: var(--shadow);
}

.top-bar {
    background: var(--primary-color);
    color: var(--white);
    padding: 8px 0;
    font-size: 14px;
}

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

.social-links a {
    color: var(--white);
    margin-left: 15px;
    font-size: 18px;
}

.social-links a:hover {
    color: var(--accent-color);
}

.contact-info .phone {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
}

/* Language Switcher */
.contact-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.lang-switch {
    color: var(--white);
    display: flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    border: 1px solid rgba(255,255,255,0.3);
    border-radius: 20px;
    font-size: 13px;
    transition: all 0.3s ease;
}

.lang-switch:hover {
    background: rgba(255,255,255,0.1);
    border-color: var(--accent-color);
    color: var(--accent-color);
}

.mobile-lang-switch a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
}

.mobile-book-now {
    margin-top: 15px;
    padding: 0 10px;
}

.mobile-book-now .btn-book {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 25px;
    font-size: 18px;
}

/* LTR Support for English */
html[dir="ltr"] body {
    direction: ltr;
    text-align: left;
}

html[dir="ltr"] .main-nav ul {
    flex-direction: row;
}

html[dir="ltr"] .social-links a {
    margin-left: 0;
    margin-right: 15px;
}

html[dir="ltr"] .carousel-btn.prev i,
html[dir="ltr"] .carousel-btn.next i {
    transform: rotate(180deg);
}

html[dir="ltr"] .view-all a i {
    transform: rotate(180deg);
}

.main-header {
    padding: 15px 0;
}

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

.logo a {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
}

.logo img {
    height: 50px;
}

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

.main-nav a {
    color: var(--text-dark);
    font-weight: 500;
    transition: color 0.3s;
}

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

.header-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
}

.mobile-menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--primary-color);
    display: block;
    transition: all 0.3s;
}

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    height: 100vh;
    background: var(--white);
    box-shadow: -2px 0 10px rgba(0,0,0,0.1);
    transition: right 0.3s ease;
    z-index: 2000;
    overflow-y: auto;
}

.mobile-menu.active {
    right: 0;
}

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

.mobile-menu-close {
    background: none;
    border: none;
    font-size: 16px;
    cursor: pointer;
    color: var(--text-dark);
}

.mobile-nav ul {
    list-style: none;
    padding: 20px;
}

.mobile-nav li {
    margin-bottom: 15px;
}

.mobile-nav a {
    display: block;
    padding: 10px;
    color: var(--text-dark);
    font-weight: 500;
}

/* Hero Section */
/* Hero Section */
.hero {
    position: relative;
    min-height: 600px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.hero-slide {
    position: relative;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.85), rgba(52, 73, 94, 0.75));
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 60px 20px;
    color: var(--white);
    max-width: 900px;
    margin: 0 auto;
}

.hero h1 {
    font-size: 58px;
    font-weight: 800;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    letter-spacing: 1px;
}

.hero h2 {
    font-size: 36px;
    font-weight: 600;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero p {
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 10px;
    text-shadow: 1px 1px 3px rgba(0,0,0,0.3);
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.hero-buttons .btn {
    font-size: 18px;
    padding: 15px 40px;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.hero-buttons .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* Hero Features Slider */
.hero-features-slider-wrapper {
    margin: 0;
    padding: 12px 0;
    background: var(--gradient-primary);
    overflow: hidden;
    position: relative;
    box-shadow: 0 2px 8px rgba(0,0,0,0.15);
}

.hero-features-slider {
    display: flex;
    animation: slideFeatures 30s linear infinite;
    gap: 0;
    padding: 0;
}

.hero-features-slider:hover {
    animation-play-state: paused;
}

.hero-feature-slide {
    min-width: 200px;
    text-align: center;
    padding: 8px 20px;
    transition: all 0.3s ease;
    flex-shrink: 0;
    border-right: 1px solid rgba(255,255,255,0.1);
}

.hero-feature-slide:hover {
    background: rgba(255,255,255,0.1);
}

.hero-feature-slide img {
    display: none;
}

.hero-feature-slide span {
    font-size: 14px;
    display: block;
    color: #ffffff;
    font-weight: 500;
    line-height: 1.3;
    direction: rtl;
    unicode-bidi: embed;
    text-align: center;
}

@keyframes slideFeatures {
    0% {
        transform: translateX(0);
    }
    100% {
        transform: translateX(-33.333%);
    }
}

/* Services Section */
.services {
    padding: 60px 0;
    background: var(--bg-light);
}

.services h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

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

.service-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.service-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.service-card h3 {
    padding: 20px;
    font-size: 20px;
    color: var(--primary-color);
}

.service-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.service-card .btn {
    display: block;
    margin: 20px;
}

/* Simple Service Card - Premium Design */
.service-card-simple {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.service-card-simple:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.service-card-simple::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--gradient-accent);
    transform: scaleX(0);
    transition: transform 0.4s ease;
    transform-origin: left;
    z-index: 1;
}

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

.service-card-simple-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--gradient-primary);
    position: relative;
}

.service-card-simple-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-simple:hover .service-card-simple-image img {
    transform: scale(1.08);
}

.service-card-simple-content {
    padding: 18px 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.service-card-simple h3 {
    font-size: 16px;
    font-weight: 600;
    margin: 0 0 14px 0;
    color: var(--primary-color);
    line-height: 1.4;
    text-align: center;
    letter-spacing: 0.3px;
}

.service-card-simple .btn {
    margin: 0;
    align-self: center;
    width: auto;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s ease;
    background: var(--gradient-accent);
    color: var(--white);
    border: 2px solid transparent;
    box-shadow: 0 4px 15px rgba(201, 157, 95, 0.4);
    position: relative;
    overflow: hidden;
    animation: pulse-gold 2s infinite;
}

.service-card-simple .btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

.service-card-simple .btn:hover {
    background: linear-gradient(135deg, #d9b380 0%, #c99d5f 100%);
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 25px rgba(201, 157, 95, 0.6);
    border-color: var(--white);
}

.service-card-simple .btn:hover::before {
    animation: none;
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
}

.fleet h2 {
    text-align: center;
    font-size: 36px;
    margin-bottom: 50px;
    color: var(--primary-color);
}

/* Fleet Carousel */
.fleet-carousel-wrapper {
    position: relative;
    margin-bottom: 40px;
    width: 100%;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.fleet-carousel {
    position: relative;
    width: 100%;
}

.fleet-slide {
    display: none;
    width: 100%;
    animation: fadeIn 0.5s ease-in-out;
}

.fleet-slide.active {
    display: block;
}

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

.fleet-slide-header {
    background: linear-gradient(135deg, rgba(44, 62, 80, 0.95) 0%, rgba(52, 73, 94, 0.95) 100%);
    border-radius: 15px 15px 0 0;
    padding: 25px 30px;
    text-align: center;
    color: var(--white);
}

.route-info h3 {
    font-size: 28px;
    margin-bottom: 8px;
    font-weight: 700;
}

.vehicles-count {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    opacity: 0.9;
}

.fleet-carousel-products {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    background: var(--bg-light);
    padding: 25px;
    border-radius: 0 0 15px 15px;
}

.fleet-carousel-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
}

.fleet-carousel-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-hover);
}

.fleet-carousel-image {
    width: 100%;
    height: 160px;
    overflow: hidden;
    background: var(--bg-light);
}

.fleet-carousel-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

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

.fleet-carousel-info {
    padding: 20px;
}

.fleet-carousel-info h4 {
    font-size: 16px;
    margin-bottom: 12px;
    color: var(--primary-color);
    font-weight: 700;
}

.fleet-carousel-specs {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 12px;
    font-size: 13px;
    color: var(--text-light);
}

.fleet-carousel-specs .spec {
    display: flex;
    align-items: center;
    gap: 6px;
}

.fleet-carousel-specs i {
    color: var(--accent-color);
    min-width: 16px;
}

.fleet-carousel-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.fleet-carousel-price .price {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
}

.fleet-carousel-price .original-price {
    font-size: 14px;
    color: var(--text-light);
    text-decoration: line-through;
}

.btn-book-small {
    width: 100%;
    padding: 12px;
    background: var(--gradient-accent);
    color: var(--white);
    border: 2px solid transparent;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 700;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    transition: all 0.3s ease;
    box-shadow: 0 3px 12px rgba(201, 157, 95, 0.35);
    position: relative;
    overflow: hidden;
    animation: pulse-gold 2s infinite;
}

.btn-book-small::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

.btn-book-small:hover {
    background: linear-gradient(135deg, #d9b380 0%, #c99d5f 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 5px 18px rgba(201, 157, 95, 0.5);
    border-color: var(--white);
}

.btn-book-small:hover::before {
    animation: none;
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
    margin-top: 30px;
}

.carousel-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: var(--primary-color);
    transition: all 0.3s ease;
}

.carousel-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(44, 62, 80, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot.active {
    background: var(--primary-color);
    width: 30px;
    border-radius: 5px;
}

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

.fleet-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.fleet-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.fleet-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

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

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

.fleet-info {
    padding: 20px;
}

.fleet-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.fleet-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-badge {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
    color: var(--text-dark);
}

.fleet-price {
    margin-bottom: 15px;
}

.fleet-price .price {
    font-size: 24px;
    font-weight: bold;
    color: var(--primary-color);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(44, 62, 80, 0.2));
    transition: all 0.3s ease;
}

.fleet-card .btn-book {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--gradient-accent);
    color: var(--white);
    font-weight: 700;
    padding: 14px 20px;
    font-size: 16px;
    border-radius: 8px;
    box-shadow: 0 4px 15px rgba(201, 157, 95, 0.35);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    animation: pulse-gold 2s infinite;
}

.fleet-card .btn-book::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: shine 2.5s infinite;
}

.fleet-card .btn-book:hover {
    background: linear-gradient(135deg, #d9b380 0%, #c99d5f 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(201, 157, 95, 0.5);
    border-color: var(--white);
}

.fleet-card .btn-book:hover::before {
    animation: none;
}

.view-all {
    text-align: center;
    margin-top: 40px;
}

/* Why Choose Us */
.why-choose-us {
    padding: 80px 0;
    background: var(--bg-light);
}

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

.feature-box {
    text-align: center;
    padding: 30px;
    background: var(--white);
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.feature-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 20px;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 36px;
    box-shadow: 0 4px 15px rgba(44, 62, 80, 0.3);
}

.feature-box h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: var(--primary-color);
}

.feature-box p {
    color: var(--text-light);
}

/* ==================== Reviews Section ==================== */
.reviews-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--white) 0%, var(--bg-light) 100%);
}

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

.reviews-header h2 {
    font-size: 36px;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.reviews-subtitle {
    color: var(--text-light);
    font-size: 18px;
    margin-bottom: 30px;
}

/* Reviews Summary */
.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 60px;
    background: var(--white);
    padding: 30px 40px;
    border-radius: 15px;
    box-shadow: var(--shadow);
    max-width: 800px;
    margin: 0 auto;
}

.summary-rating {
    text-align: center;
}

.rating-big {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.rating-number {
    font-size: 56px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1;
}

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

.rating-stars i {
    font-size: 20px;
    color: #ddd;
}

.rating-stars i.active {
    color: #f5b301;
}

.total-reviews {
    color: var(--text-light);
    font-size: 14px;
    margin-top: 5px;
}

.rating-breakdown {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 250px;
}

.rating-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.rating-label {
    min-width: 100px;
    font-size: 14px;
    color: var(--text-dark);
}

.rating-bar {
    flex: 1;
    height: 8px;
    background: #e0e0e0;
    border-radius: 4px;
    overflow: hidden;
}

.rating-fill {
    height: 100%;
    background: linear-gradient(90deg, #f5b301, #ffc107);
    border-radius: 4px;
    transition: width 0.5s ease;
}

.rating-value {
    min-width: 30px;
    font-weight: 600;
    color: var(--primary-color);
}

/* Reviews Grid */
.reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 25px;
    margin-bottom: 40px;
}

.review-card {
    background: var(--white);
    border-radius: 15px;
    padding: 25px;
    box-shadow: var(--shadow);
    position: relative;
    transition: all 0.3s ease;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.review-card.featured {
    border: 2px solid var(--accent-color);
    background: linear-gradient(135deg, #fffef8 0%, #fff 100%);
}

.featured-badge {
    position: absolute;
    top: -10px;
    right: 20px;
    background: var(--gradient-accent);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    box-shadow: 0 3px 10px rgba(201, 157, 95, 0.4);
}

.review-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
}

.reviewer-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 700;
}

.reviewer-info {
    flex: 1;
}

.reviewer-info h4 {
    font-size: 16px;
    color: var(--text-dark);
    margin-bottom: 3px;
}

.verified {
    font-size: 12px;
    color: #27ae60;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-rating {
    display: flex;
    gap: 2px;
}

.review-rating i {
    font-size: 14px;
    color: #ddd;
}

.review-rating i.active {
    color: #f5b301;
}

.review-route {
    background: var(--bg-light);
    padding: 8px 12px;
    border-radius: 6px;
    font-size: 13px;
    color: var(--text-light);
    margin-bottom: 12px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.review-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
    font-size: 15px;
}

.review-ratings-mini {
    display: flex;
    gap: 15px;
    padding-top: 12px;
    border-top: 1px solid var(--border-color);
    margin-bottom: 10px;
}

.review-ratings-mini span {
    font-size: 12px;
    color: var(--text-light);
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-ratings-mini i {
    color: var(--accent-color);
}

.review-date {
    font-size: 12px;
    color: #999;
    text-align: left;
}

.reviews-cta {
    text-align: center;
}

/* Review Modal */
.review-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000;
    padding: 20px;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

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

.review-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 600px;
    width: 100%;
    max-height: calc(100vh - 40px);
    padding: 35px;
    position: relative;
    animation: slideDown 0.3s ease;
    overflow-y: auto;
}

.review-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.review-modal-close:hover {
    background: #c0392b;
    transform: rotate(90deg);
}

.review-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--border-color);
}

.review-modal-header h2 {
    color: var(--primary-color);
    font-size: 22px;
}

.review-modal-header h2 i {
    color: #f5b301;
    margin-left: 8px;
}

/* Rating Input */
.ratings-input {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 15px;
    margin-bottom: 20px;
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.rating-input-group {
    text-align: center;
}

.rating-input-group label {
    display: block;
    font-size: 13px;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-weight: 600;
}

.star-rating {
    display: flex;
    justify-content: center;
    gap: 5px;
    direction: ltr;
}

.star-rating i {
    font-size: 24px;
    color: #ddd;
    cursor: pointer;
    transition: all 0.2s ease;
}

.star-rating i:hover,
.star-rating i.active {
    color: #f5b301;
    transform: scale(1.1);
}

.star-rating i.hover {
    color: #f5b301;
}

.review-form-wrapper {
    margin-top: 30px;
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.review-form-wrapper h3 {
    margin-bottom: 20px;
    color: var(--primary-color);
    font-size: 22px;
    text-align: center;
}

.review-form .form-group {
    margin-bottom: 15px;
}

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

.review-form label {
    display: block;
    margin-bottom: 6px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.review-form input,
.review-form select,
.review-form textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 15px;
    transition: all 0.3s ease;
}

.review-form input:focus,
.review-form select:focus,
.review-form textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(44, 62, 80, 0.1);
}

.review-form .btn-submit {
    width: 100%;
    margin-top: 10px;
}

/* Responsive Reviews */
@media (max-width: 768px) {
    .reviews-summary {
        flex-direction: column;
        gap: 25px;
        padding: 25px 20px;
    }
    
    .rating-breakdown {
        width: 100%;
    }
    
    .reviews-grid {
        grid-template-columns: 1fr;
    }
    
    .ratings-input {
        grid-template-columns: 1fr 1fr;
    }
    
    .review-form .form-row {
        grid-template-columns: 1fr;
    }
    
    .review-modal-content {
        padding: 25px 20px;
    }
}

@media (max-width: 480px) {
    .reviews-header h2 {
        font-size: 26px;
    }
    
    .rating-number {
        font-size: 42px;
    }
    
    .review-card {
        padding: 20px 15px;
    }
    
    .ratings-input {
        grid-template-columns: 1fr;
    }
    
    .star-rating i {
        font-size: 28px;
    }
}

/* Page Header */
.page-header {
    background: var(--gradient-primary);
    color: var(--white);
    padding: 40px 0;
    text-align: center;
}

.page-header h1 {
    font-size: 40px;
    margin-bottom: 15px;
}

.breadcrumb {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 20px;
    font-size: 14px;
}

.breadcrumb a {
    color: var(--white);
    text-decoration: underline;
}

.breadcrumb span {
    color: rgba(255,255,255,0.7);
}

/* Shop Categories */
.shop-categories {
    padding: 60px 0;
}

.categories-grid {
    display: grid;
    gap: 40px;
}

.category-card-large {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    display: grid;
    grid-template-columns: 300px 1fr;
    transition: transform 0.3s;
}

.category-card-large:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.category-image {
    width: 100%;
    height: 100%;
}

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

.category-content {
    padding: 30px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.category-content h2 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.category-content p {
    color: var(--text-light);
    margin-bottom: 20px;
}

/* Products Section */
.products-section {
    padding: 60px 0;
}

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

.product-card {
    background: var(--white);
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: all 0.3s;
}

.product-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

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

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

.product-year {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 5px 15px;
    border-radius: 20px;
    font-weight: bold;
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.3);
}

.discount-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    background: linear-gradient(135deg, #e74c3c 0%, #c0392b 100%);
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(231, 76, 60, 0.4);
    animation: pulse 2s infinite;
}

.discount-percent {
    font-weight: bold;
    font-size: 18px;
    line-height: 1;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.product-info {
    padding: 20px;
}

.product-info h3 {
    font-size: 18px;
    margin-bottom: 15px;
    color: var(--primary-color);
    min-height: 50px;
}

.product-rating {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.product-rating .rating-stars {
    display: flex;
    gap: 3px;
}

.product-rating .rating-stars i {
    font-size: 12px;
    color: #ddd;
}

.product-rating .rating-stars i.active {
    color: #f5b301;
}

.product-rating .rating-text {
    font-size: 12px;
    color: var(--text-light);
}

.product-card.clickable,
.fleet-carousel-card.clickable {
    cursor: pointer;
}

.product-specs {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.spec-tag {
    background: #e3f2fd;
    color: #2c3e50;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 5px;
    border: 1px solid #bbdefb;
}

.product-features {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 15px;
}

.feature-tag {
    background: var(--bg-light);
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 12px;
}

.product-footer {
    border-top: 1px solid var(--border-color);
    padding-top: 15px;
}

.product-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
}

.price-with-discount {
    display: flex;
    gap: 15px;
    align-items: center;
    width: 100%;
}

.price-original {
    font-size: 16px;
    color: #999;
    text-decoration: line-through;
    font-weight: 500;
}

.price-discount {
    font-size: 24px;
    font-weight: bold;
    color: #27ae60;
    background: linear-gradient(135deg, #27ae60 0%, #229954 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price {
    font-size: 22px;
    font-weight: bold;
    color: var(--primary-color);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 4px rgba(44, 62, 80, 0.1);
    filter: drop-shadow(0 2px 2px rgba(44, 62, 80, 0.15));
    transition: all 0.3s ease;
}

.price:hover {
    filter: drop-shadow(0 4px 8px rgba(44, 62, 80, 0.3));
}

.product-actions {
    display: flex;
    gap: 10px;
}

.product-actions .btn {
    flex: 1;
    padding: 10px;
    font-size: 14px;
}

/* Product Details */
.product-details {
    padding: 60px 0;
}

.product-details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

.product-gallery .main-image {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.product-gallery img {
    width: 100%;
}

.product-summary {
    background: var(--white);
    padding: 30px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.product-summary h1 {
    font-size: 28px;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.product-meta {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
}

.badge {
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    font-weight: bold;
}

.badge-year {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 2px 8px rgba(44, 62, 80, 0.2);
}

.badge-category {
    background: var(--primary-color);
    color: var(--white);
}

.product-price-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

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

.price-amount {
    font-size: 32px;
    font-weight: bold;
    color: var(--primary-color);
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 3px 5px rgba(44, 62, 80, 0.2));
}

.product-description h3,
.product-features-box h3,
.product-info-box h4 {
    color: var(--primary-color);
    margin-bottom: 15px;
}

.product-description {
    margin-bottom: 25px;
}

.product-features-box {
    margin-bottom: 25px;
}

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

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

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

.features-list i {
    color: var(--secondary-color);
}

.product-actions-box {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.product-actions-box .btn {
    flex: 1;
}

.product-info-box {
    background: var(--bg-light);
    padding: 20px;
    border-radius: 10px;
}

.product-info-box ul {
    list-style: none;
}

.product-info-box li {
    padding: 8px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

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

/* Booking Form */
.booking-form-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.booking-form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.booking-form-wrapper h2 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.booking-form-wrapper > p {
    text-align: center;
    color: var(--text-light);
    margin-bottom: 30px;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-bottom: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
}

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

.form-group input,
.form-group textarea {
    padding: 12px;
    border: 1px solid var(--border-color);
    border-radius: 5px;
    font-size: 16px;
    font-family: inherit;
}

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

.btn-submit {
    width: 100%;
    margin-top: 20px;
}

/* Page Content */
.page-content {
    padding: 60px 0;
}

.content-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: var(--white);
    padding: 40px;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.content-wrapper h2 {
    color: var(--primary-color);
    margin-bottom: 20px;
}

.content-wrapper h3 {
    color: var(--primary-color);
    margin-top: 25px;
    margin-bottom: 15px;
}

.content-wrapper p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 15px;
}

/* About Features */
.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.about-feature {
    text-align: center;
    padding: 30px 20px;
    background: var(--bg-light);
    border-radius: 10px;
}

.about-feature i {
    font-size: 48px;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.about-feature h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

/* FAQ Section */
.faq-section {
    margin-top: 30px;
}

.faq-item {
    background: var(--bg-light);
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 20px;
}

.faq-item h3 {
    color: var(--primary-color);
    margin-bottom: 10px;
}

.faq-item p {
    color: var(--text-light);
}

/* Tourist Trips */
.tourist-trips {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}

.trip-card {
    background: var(--bg-light);
    border-radius: 10px;
    overflow: hidden;
}

.trip-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.trip-card h3 {
    padding: 20px 20px 10px;
    color: var(--primary-color);
}

.trip-card p {
    padding: 0 20px 20px;
    color: var(--text-light);
}

.trip-card .btn {
    margin: 0 20px 20px;
    display: block;
}

/* Footer */
.site-footer {
    background: var(--primary-color);
    color: var(--white);
    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

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

.footer-col h4 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--primary-color);
}

.contact-info p {
    margin-bottom: 10px;
}

.phone-number {
    display: block;
    font-size: 24px;
    font-weight: bold;
    margin: 15px 0;
    color: var(--white);
}

.whatsapp-btn {
    display: inline-block;
    background: var(--gradient-primary);
    color: var(--white);
    padding: 12px 25px;
    border-radius: 5px;
    margin-top: 15px;
    transition: all 0.3s ease;
}

.whatsapp-btn:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.3);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

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

.footer-links a {
    color: var(--white);
    transition: color 0.3s;
    display: inline-block;
    padding: 5px 0;
    text-decoration: none;
    cursor: pointer;
}

.footer-links a:hover {
    color: var(--accent-color);
}

.social-links-footer a {
    display: block;
    color: var(--white);
    margin-bottom: 12px;
    transition: color 0.3s;
}

.social-links-footer a:hover {
    color: var(--accent-color);
}

.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.2);
    padding: 20px 0;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.certification {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.certification-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 8px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.certification-badge i {
    font-size: 24px;
    color: var(--accent-color);
}

.certification-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.certification-text strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--white);
}

.certification-text span {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.8);
}

.license-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-accent);
    color: var(--white);
    border-radius: 6px;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.license-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(201, 157, 95, 0.4);
    border-color: var(--white);
}

.license-btn i {
    font-size: 16px;
}

/* Scroll to Top */
.scroll-to-top {
    position: fixed;
    bottom: 30px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 20px;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
}

.scroll-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-to-top:hover {
    background: var(--accent-color);
    transform: translateY(-5px);
}

/* Floating WhatsApp Button */
.floating-whatsapp {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    text-decoration: none;
    box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    animation: pulse 2s infinite;
}

.floating-whatsapp:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: scale(1.2);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.8);
    animation: none;
}

/* Pulse Animation */
@keyframes pulse {
    0% {
        box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
    }
    50% {
        box-shadow: 0 4px 20px rgba(44, 62, 80, 0.8), 0 0 0 10px rgba(44, 62, 80, 0.2);
    }
    100% {
        box-shadow: 0 4px 12px rgba(44, 62, 80, 0.4);
    }
}

/* Responsive Design */
@media (max-width: 968px) {
    .main-nav {
        display: none;
    }
    
    .mobile-menu-toggle {
        display: flex;
    }
    
    .hero h1 {
        font-size: 42px;
    }
    
    .hero h2 {
        font-size: 28px;
    }
    
    .hero p {
        font-size: 18px;
    }
    
    /* الكروت 2 في الصف على الشاشات المتوسطة */
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 20px;
    }
    
    .product-details-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .product-summary {
        padding: 20px;
    }
    
    .product-summary h1 {
        font-size: 22px;
    }
    
    .price-amount {
        font-size: 26px;
    }
    
    .product-actions-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions-box .btn {
        width: 100%;
    }
    
    .category-card-large {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
}

@media (max-width: 640px) {
    /* تحسين الهيرو */
    .hero-slide {
        min-height: 450px;
    }
    
    .hero h1 {
        font-size: 26px;
        line-height: 1.3;
        margin-bottom: 15px;
    }
    
    .hero h2 {
        font-size: 18px;
        line-height: 1.4;
        margin-bottom: 15px;
    }
    
    .hero p {
        font-size: 14px;
        line-height: 1.6;
        margin-bottom: 8px;
    }
    
    .hero-content {
        padding: 40px 15px;
    }
    
    .hero-buttons {
        flex-direction: column;
        gap: 12px;
        margin-top: 25px;
    }
    
    .hero-buttons .btn {
        width: 100%;
        max-width: 280px;
        padding: 12px 25px;
        font-size: 15px;
    }
    
    /* تحسين الـ Header */
    .site-header {
        padding: 12px 0;
    }
    
    .logo img {
        max-height: 45px;
    }
    
    .mobile-menu {
        width: 85%;
        max-width: 300px;
    }
    
    .mobile-menu-header {
        padding: 15px;
    }
    
    .mobile-nav ul {
        padding: 15px;
    }
    
    .mobile-nav li {
        margin-bottom: 12px;
    }
    
    .mobile-nav a {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 5px;
        background: var(--bg-light);
    }
    
    /* Section Titles */
    section h2 {
        font-size: 22px !important;
        margin-bottom: 20px !important;
    }
    
    section {
        padding: 40px 0 !important;
    }
    
    /* الكروت 2 في الصف على الموبايل أيضاً */
    .fleet-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .fleet-card {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .fleet-image {
        height: 90px;
    }
    
    .fleet-image img {
        width: 100%;
        height: 90px;
        object-fit: cover;
    }
    
    .fleet-info {
        padding: 8px;
    }
    
    .fleet-info h3 {
        font-size: 11px;
        margin-bottom: 4px;
        line-height: 1.3;
        height: 32px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .fleet-features {
        display: none;
    }
    
    .fleet-price {
        font-size: 12px;
        margin: 4px 0;
    }
    
    .fleet-price .price {
        font-size: 14px;
        font-weight: 700;
    }
    
    .btn-book {
        padding: 7px 10px;
        font-size: 11px;
        width: 100%;
        border-radius: 5px;
    }
    
    /* كروت المنتجات */
    .products-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .product-card {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .product-image {
        height: 100px;
    }
    
    .product-image img {
        height: 100px;
        object-fit: cover;
    }
    
    .product-year {
        font-size: 10px;
        padding: 3px 8px;
    }
    
    .product-info {
        padding: 8px;
    }
    
    .product-info h3 {
        font-size: 11px;
        margin-bottom: 4px;
        line-height: 1.3;
        height: 32px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    /* عدد الركاب والشنط جنب بعض */
    .product-specs {
        display: flex;
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 6px;
        margin-bottom: 8px;
        justify-content: center;
    }
    
    .spec-tag {
        padding: 4px 8px;
        font-size: 10px;
        border-radius: 15px;
        white-space: nowrap;
    }
    
    .product-features {
        display: none;
    }
    
    .product-price {
        font-size: 12px;
        margin: 4px 0;
    }
    
    .product-price .price {
        font-size: 14px;
        font-weight: 700;
    }
    
    .product-footer {
        padding-top: 6px;
    }
    
    .product-actions {
        flex-direction: column;
        gap: 4px;
    }
    
    .product-actions .btn {
        padding: 7px 10px;
        font-size: 10px;
        width: 100%;
        border-radius: 5px;
    }
    
    /* كروت الخدمات */
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
    
    .service-card {
        border-radius: 8px;
        overflow: hidden;
    }
    
    .service-card img {
        height: 100px;
        object-fit: cover;
    }
    
    .service-card h3 {
        font-size: 12px;
        margin: 8px 8px 4px;
        line-height: 1.3;
        height: 32px;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        -webkit-line-clamp: 2;
        line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .service-card p {
        font-size: 10px;
        margin: 0 8px 8px;
        line-height: 1.4;
        overflow: hidden;
        text-overflow: ellipsis;
        display: -webkit-box;
        line-clamp: 2;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
    }
    
    .service-card .btn {
        padding: 7px 12px;
        font-size: 11px;
        margin: 0 8px 8px;
        display: block;
        width: calc(100% - 16px);
        border-radius: 5px;
    }
    
    .booking-form .form-row {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .product-actions-box {
        flex-direction: column;
        gap: 10px;
    }
    
    .product-actions-box .btn {
        width: 100%;
    }
    
    .hero-feature-slide {
        min-width: 140px;
        padding: 8px 12px;
        font-size: 11px;
    }
    
    .hero-feature-slide span {
        font-size: 11px;
    }
    
    /* تحسين الفوتر على الموبايل */
    .site-footer {
        padding: 30px 0 15px;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 25px;
        text-align: center;
    }
    
    .footer-col {
        padding: 0 10px;
    }
    
    .footer-col h4 {
        font-size: 16px;
        margin-bottom: 15px;
        padding-bottom: 10px;
        border-bottom: 2px solid var(--accent-color);
        display: inline-block;
        min-width: 150px;
    }
    
    .contact-info {
        margin-bottom: 15px;
    }
    
    .contact-info p {
        font-size: 13px;
        margin-bottom: 8px;
    }
    
    .phone-number {
        font-size: 20px;
        margin: 12px 0;
        display: inline-block;
        direction: ltr;
    }
    
    .whatsapp-btn {
        font-size: 14px;
        padding: 10px 20px;
        border-radius: 8px;
    }
    
    .footer-links {
        display: grid;
        grid-template-columns: 1fr;
        gap: 8px;
        padding: 0;
        text-align: center;
    }
    
    .footer-links li {
        margin: 0;
    }
    
    .footer-links a {
        display: block;
        padding: 10px 15px;
        background: rgba(255,255,255,0.1);
        border-radius: 6px;
        font-size: 13px;
        transition: all 0.3s ease;
    }
    
    .footer-links a:hover {
        background: rgba(255,255,255,0.2);
    }
    
    .social-links-footer {
        display: flex;
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
    }
    
    .social-links-footer a {
        background: rgba(255,255,255,0.1);
        padding: 10px 18px;
        border-radius: 8px;
        font-size: 13px;
        margin: 0;
        transition: all 0.3s ease;
    }
    
    .social-links-footer a:hover {
        background: rgba(255,255,255,0.2);
        transform: translateY(-2px);
    }
    
    .footer-bottom {
        margin-top: 25px;
        padding: 15px 0;
    }
    
    .footer-bottom-content {
        gap: 12px;
        text-align: center;
    }
    
    .footer-bottom-content p {
        font-size: 12px;
        line-height: 1.6;
    }
    
    .footer-bottom-content a {
        display: inline-block;
        margin: 5px 0;
    }
    
    .certification {
        width: 100%;
        justify-content: center;
        gap: 10px;
    }
    
    .certification-badge {
        flex-direction: column;
        text-align: center;
        padding: 10px 15px;
    }
    
    .certification-badge i {
        font-size: 20px;
    }
    
    .certification-text strong {
        font-size: 12px;
    }
    
    .certification-text span {
        font-size: 10px;
    }
    
    .license-btn {
        padding: 8px 16px;
        font-size: 11px;
    }
    
    .license-btn i {
        font-size: 14px;
    }
    
    /* Scroll to top button */
    .scroll-to-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        left: 20px;
        font-size: 18px;
    }
    
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 24px;
    }
}

/* تحسينات إضافية للشاشات الصغيرة جداً */
@media (max-width: 375px) {
    .hero h1 {
        font-size: 22px;
    }
    
    .hero h2 {
        font-size: 16px;
    }
    
    .hero p {
        font-size: 13px;
    }
    
    .hero-buttons .btn {
        padding: 11px 20px;
        font-size: 14px;
    }
    
    .fleet-grid,
    .products-grid,
    .services-grid {
        gap: 6px;
    }
    
    .fleet-info h3,
    .product-info h3 {
        font-size: 10px;
        height: 28px;
    }
    
    .service-card h3 {
        font-size: 11px;
        height: 28px;
    }
    
    .btn-book,
    .product-actions .btn {
        font-size: 10px;
        padding: 6px 8px;
    }
    
    section h2 {
        font-size: 20px !important;
    }
    
    .footer-col h4 {
        font-size: 15px;
    }
    
    .phone-number {
        font-size: 18px;
    }
}

/* Booking Modal */
.booking-modal {
    display: none !important;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.7);
    z-index: 10000 !important;
    padding: 15px;
    overflow-y: auto;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex !important;
    align-items: flex-start;
    justify-content: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

body.modal-open {
    overflow: hidden;
    touch-action: manipulation;
}

.booking-modal-content {
    background: white;
    border-radius: 15px;
    max-width: 550px;
    width: 100%;
    max-height: calc(100vh - 40px);
    padding: 35px 30px;
    position: relative;
    animation: slideDown 0.3s ease;
    overflow-y: auto;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    margin: auto;
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) #f1f1f1;
}

.booking-modal-content::-webkit-scrollbar {
    width: 8px;
}

.booking-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.booking-modal-content::-webkit-scrollbar-thumb {
    background: var(--primary-color);
    border-radius: 10px;
}

.booking-modal-content::-webkit-scrollbar-thumb:hover {
    background: #145a38;
}

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

.booking-modal-close {
    position: absolute;
    top: 15px;
    left: 15px;
    width: 35px;
    height: 35px;
    border: none;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: #c0392b;
    transform: rotate(90deg);
}

.booking-modal-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid var(--border-color);
}

.booking-modal-header h2 {
    color: var(--primary-color);
    font-size: 24px;
    margin-bottom: 10px;
}

.booking-modal-header p {
    color: var(--text-light);
    font-size: 14px;
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 5px;
}

.form-group label .required {
    color: #e74c3c;
    margin-right: 3px;
}

.form-group input,
.form-group textarea {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    direction: rtl;
    -webkit-appearance: none;
    -webkit-user-select: text;
    appearance: none;
}

.form-group select {
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-family: 'Cairo', sans-serif;
    font-size: 16px;
    transition: all 0.3s ease;
    direction: rtl;
    background: #fff;
    -webkit-appearance: none;
    appearance: none;
}

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

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 58, 0.1);
}

.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(26, 95, 58, 0.1);
}

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

.product-info-box {
    background: var(--bg-light);
    padding: 15px;
    border-radius: 8px;
    margin-bottom: 15px;
}

.product-info-box h3 {
    color: var(--primary-color);
    font-size: 16px;
    margin-bottom: 10px;
}

.product-info-box .price {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: bold;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 3px rgba(44, 62, 80, 0.2));
    display: inline-block;
}

.phone-input-row {
    display: grid;
    grid-template-columns: 140px 1fr;
    gap: 10px;
}

.btn-submit {
    background: var(--primary-color);
    color: white;
    padding: 15px;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.btn-submit:hover {
    background: linear-gradient(135deg, #1f2d3d 0%, #2c3e50 100%);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
}

.alert {
    padding: 15px 20px;
    border-radius: 10px;
    margin-bottom: 20px;
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    animation: slideIn 0.3s ease;
}

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

.alert i {
    font-size: 20px;
}

.alert-success {
    background: linear-gradient(135deg, #d4edda 0%, #c3e6cb 100%);
    color: #155724;
    border: 1px solid #c3e6cb;
    box-shadow: 0 2px 8px rgba(21, 87, 36, 0.15);
}

.alert-error {
    background: linear-gradient(135deg, #f8d7da 0%, #f5c6cb 100%);
    color: #721c24;
    border: 1px solid #f5c6cb;
    box-shadow: 0 2px 8px rgba(114, 28, 36, 0.15);
}

.loading-spinner {
    display: none;
    text-align: center;
    padding: 20px;
}

.loading-spinner.active {
    display: block;
}

.spinner {
    border: 3px solid #f3f3f3;
    border-top: 3px solid var(--primary-color);
    border-radius: 50%;
    width: 40px;
    height: 40px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Airport Fields Styles */
#airportFields {
    background: #f0f7ff;
    border: 2px solid var(--primary-color);
    border-radius: 8px;
    padding: 20px;
    margin-top: 20px;
}

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

.form-divider h4 {
    color: var(--primary-color);
    font-size: 15px;
    font-weight: 600;
    margin: 0;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--accent-color);
}

@media (max-width: 768px) {
    /* Fleet Carousel Mobile */
    .fleet-carousel-wrapper {
        margin-bottom: 30px;
    }

    .fleet-slide-header {
        padding: 20px;
        border-radius: 12px 12px 0 0;
    }

    .route-info h3 {
        font-size: 24px;
        margin-bottom: 8px;
    }

    .vehicles-count {
        font-size: 14px;
    }

    .fleet-carousel-products {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 20px;
        border-radius: 0 0 12px 12px;
    }

    .fleet-carousel-card {
        border-radius: 8px;
    }

    .fleet-carousel-image {
        height: 120px;
    }

    .fleet-carousel-info {
        padding: 12px;
    }

    .fleet-carousel-info h4 {
        font-size: 14px;
        margin-bottom: 8px;
    }

    .fleet-carousel-specs {
        font-size: 12px;
        margin-bottom: 8px;
    }

    .fleet-carousel-price .price {
        font-size: 18px;
    }

    .btn-book-small {
        padding: 8px;
        font-size: 12px;
    }

    .carousel-controls {
        gap: 20px;
        margin-top: 20px;
    }

    .carousel-btn {
        width: 45px;
        height: 45px;
        font-size: 16px;
    }

    .carousel-dot {
        width: 8px;
        height: 8px;
    }

    .carousel-dot.active {
        width: 24px;
    }

    .service-card-simple {
        height: auto;
    }

    .service-card-simple-image {

        height: 140px;
    }

    .service-card-simple-content {
        padding: 15px 14px;
    }

    .service-card-simple h3 {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .service-card-simple .btn {
        padding: 9px 20px;
        font-size: 12px;
    }

    .category-card-simple {
        min-height: 200px;
        padding: 20px 15px;
    }

    .category-card-simple h2 {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .booking-modal {
        padding: 10px;
    }
    
    .booking-modal.active {
        align-items: flex-start;
        padding-top: 15px;
        padding-bottom: 15px;
    }
    
    .booking-modal-content {
        padding: 25px 20px;
        max-height: calc(100vh - 30px);
        border-radius: 12px;
    }
    
    .booking-modal-header {
        margin-bottom: 20px;
        padding-bottom: 15px;
    }
    
    .booking-modal-header h2 {
        font-size: 18px;
        line-height: 1.3;
    }
    
    .booking-modal-header p {
        font-size: 13px;
    }
    
    .booking-modal-close {
        width: 32px;
        height: 32px;
        top: 12px;
        left: 12px;
        font-size: 18px;
    }
    
    .form-group {
        gap: 6px;
    }
    
    .form-group label {
        font-size: 13px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 10px 12px;
        font-size: 14px;
        border-radius: 6px;
    }
    
    .phone-input-row {
        grid-template-columns: 120px 1fr;
        gap: 8px;
    }
    
    .phone-input-row select {
        font-size: 12px;
        padding: 10px 8px;
    }
    
    .product-info-box {
        padding: 12px;
        margin-bottom: 15px;
    }
    
    .product-info-box h3 {
        font-size: 14px;
        margin-bottom: 8px;
    }
    
    .product-info-box .price {
        font-size: 18px;
    }
    
    #airportFields {
        padding: 15px;
        margin-top: 15px;
        border-radius: 6px;
    }
    
    .form-divider h4 {
        font-size: 14px;
        padding-bottom: 8px;
    }
    
    .btn-submit {
        padding: 12px;
        font-size: 15px;
        border-radius: 6px;
    }
    
    .alert {
        padding: 10px 12px;
        font-size: 13px;
        border-radius: 6px;
    }
}

/* تحسينات إضافية للهواتف الصغيرة جداً */
@media (max-width: 480px) {
    .service-card-simple {
        height: auto;
    }

    .service-card-simple-image {
        height: 120px;
    }

    .service-card-simple-content {
        padding: 13px 12px;
    }

    .service-card-simple h3 {
        font-size: 14px;
        margin-bottom: 10px;
        line-height: 1.3;
    }

    .service-card-simple .btn {
        padding: 8px 16px;
        font-size: 12px;
    }

    .category-card-simple {
        min-height: 180px;
        padding: 15px 12px;
    }

    .category-card-simple h2 {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .category-card-simple .btn {
        padding: 12px 20px;
        font-size: 14px;
    }

    .booking-modal {
        padding: 5px;
    }
    
    .booking-modal.active {
        display: flex !important;
        padding-top: 10px;
        padding-bottom: 10px;
    }
    
    .booking-modal-content {
        padding: 20px 15px;
        max-height: calc(100vh - 20px);
        border-radius: 10px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 10px;
    }
    
    .booking-modal-header h2 {
        font-size: 16px;
    }
    
    .booking-modal-header p {
        font-size: 12px;
    }
    
    .form-group label {
        font-size: 12px;
    }
    
    .form-group input,
    .form-group textarea,
    .form-group select {
        padding: 9px 10px;
        font-size: 13px;
    }
    
    .phone-input-row {
        grid-template-columns: 110px 1fr;
        gap: 6px;
    }
    
    .phone-input-row select {
        font-size: 11px;
        padding: 9px 6px;
    }
    
    .btn-submit {
        padding: 11px;
        font-size: 14px;
    }
    
    #airportFields {
        padding: 12px;
    }
    
    .form-divider h4 {
        font-size: 13px;
    }
}

/* تحسين تجاوب الـ Container */
@media (max-width: 640px) {
    .container {
        padding: 0 15px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 10px;
    }
}

/* ===== Loading Screen Styles ===== */
.loading-overlay-premium {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 99999;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.loading-content-premium {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 50px;
    animation: fadeInScale 0.6s ease-out;
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.animated-logo-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.circular-text {
    position: absolute;
    width: 200px;
    height: 200px;
    animation: rotateCircle 20s linear infinite;
}

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

.center-logo-premium {
    position: absolute;
    font-size: 64px;
    font-weight: 900;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-align: center;
    animation: pulseScale 2s ease-in-out infinite;
    z-index: 2;
}

@keyframes pulseScale {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 0 0px rgba(44, 62, 80, 0.2));
    }
    50% {
        transform: scale(1.05);
        filter: drop-shadow(0 0 15px rgba(44, 62, 80, 0.4));
    }
}

.rotating-ring {
    position: absolute;
    width: 200px;
    height: 200px;
    border: 3px solid transparent;
    border-top: 3px solid #2c3e50;
    border-right: 3px solid #34495e;
    border-radius: 50%;
    animation: spinRing 3s linear infinite;
    z-index: 1;
}

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

.premium-progress-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    width: 100%;
}

.premium-progress-container {
    position: relative;
    width: 280px;
    height: 10px;
    background: rgba(44, 62, 80, 0.1);
    border-radius: 50px;
    overflow: hidden;
    box-shadow: 
        0 4px 15px rgba(44, 62, 80, 0.15),
        inset 0 1px 3px rgba(0, 0, 0, 0.1);
}

.progress-bar-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        rgba(44, 62, 80, 0.05) 0%,
        rgba(44, 62, 80, 0.1) 50%,
        rgba(44, 62, 80, 0.05) 100%);
    border-radius: 50px;
}

.progress-bar-fill {
    position: absolute;
    height: 100%;
    background: linear-gradient(90deg, 
        #2c3e50 0%, 
        #34495e 50%, 
        #2c3e50 100%);
    border-radius: 50px;
    width: 0%;
    transition: width 0.3s cubic-bezier(0.4, 0.0, 0.2, 1);
    box-shadow: 
        0 0 20px rgba(44, 62, 80, 0.6),
        inset 0 0 10px rgba(255, 255, 255, 0.3);
}

.progress-bar-fill::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    background: linear-gradient(90deg, 
        transparent 0%, 
        rgba(255, 255, 255, 0.5) 50%, 
        transparent 100%);
    border-radius: 50px;
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(100%);
    }
}

.progress-percentage {
    font-size: 20px;
    font-weight: 700;
    color: #2c3e50;
    min-width: 80px;
    text-align: center;
    font-family: 'Cairo', sans-serif;
}

.loading-message-premium {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 18px;
    color: #2c3e50;
    font-weight: 600;
}

.message-text {
    font-family: 'Cairo', sans-serif;
}

.animated-dots {
    display: flex;
    gap: 4px;
    margin-left: 5px;
}

.animated-dots .dot {
    display: inline-block;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #2c3e50;
    animation: dotBounce 1.4s infinite;
}

.animated-dots .dot:nth-child(1) {
    animation-delay: 0s;
}

.animated-dots .dot:nth-child(2) {
    animation-delay: 0.2s;
}

.animated-dots .dot:nth-child(3) {
    animation-delay: 0.4s;
}

@keyframes dotBounce {
    0%, 60%, 100% {
        opacity: 0.4;
        transform: translateY(0);
    }
    30% {
        opacity: 1;
        transform: translateY(-8px);
    }
}

.loading-tips {
    font-size: 14px;
    color: #555;
    font-style: italic;
    text-align: center;
    margin-top: 10px;
}

.tip-text {
    display: block;
    font-family: 'Cairo', sans-serif;
    animation: fadeInOut 3s ease-in-out infinite;
}

@keyframes fadeInOut {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 1;
    }
}

/* Loading Styles للشاشات الصغيرة */
@media (max-width: 600px) {
    /* Fleet Carousel Mobile Small */
    .fleet-carousel-wrapper {
        margin-bottom: 25px;
    }

    .fleet-slide-header {
        padding: 15px;
        border-radius: 10px 10px 0 0;
    }

    .route-info h3 {
        font-size: 20px;
        margin-bottom: 5px;
    }

    .vehicles-count {
        font-size: 13px;
    }

    .fleet-carousel-products {
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 15px;
        border-radius: 0 0 10px 10px;
    }

    .fleet-carousel-card {
        display: flex;
        gap: 12px;
    }

    .fleet-carousel-image {
        width: 80px;
        height: 80px;
        flex-shrink: 0;
        border-radius: 8px;
    }

    .fleet-carousel-info {
        padding: 10px;
        flex: 1;
    }

    .fleet-carousel-info h4 {
        font-size: 13px;
        margin-bottom: 6px;
    }

    .fleet-carousel-specs {
        font-size: 11px;
        margin-bottom: 6px;
    }

    .fleet-carousel-price {
        margin-bottom: 8px;
    }

    .fleet-carousel-price .price {
        font-size: 16px;
    }

    .btn-book-small {
        padding: 6px 10px;
        font-size: 11px;
    }

    .carousel-controls {
        gap: 15px;
        margin-top: 15px;
    }

    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 14px;
    }

    .carousel-dots {
        gap: 6px;
    }

    .carousel-dot {
        width: 6px;
        height: 6px;
    }

    .carousel-dot.active {
        width: 20px;
    }

    .loading-content-premium {
        gap: 30px;
    }

    .animated-logo-wrapper {
        width: 150px;
        height: 150px;
    }

    .circular-text {
        width: 150px;
        height: 150px;
    }

    .center-logo-premium {
        font-size: 48px;
    }

    .rotating-ring {
        width: 150px;
        height: 150px;
    }

    .premium-progress-container {
        width: 230px;
    }

    .progress-percentage {
        font-size: 18px;
    }


    .loading-message-premium {
        font-size: 16px;
    }

    .tip-text {
        font-size: 12px;
    }
}

/* ===== End Loading Screen ===== */
