/* ===========================
   العالمي ليموزين - Main Styles
   Author: M2.IST
   Version: 1.0
=========================== */

/* Reset & Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    direction: rtl;
    background-color: #000;
    color: #fff;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ===========================
   Header Section
=========================== */
header {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 1rem 0;
    box-shadow: 0 2px 10px rgba(175, 146, 71, 0.3);
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-section {
    display: flex;
    align-items: center;
    gap: 20px;
}

.logo-placeholder {
    width: 100px;
    height: 100px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 15px;
}

.logo-text {
    font-size: 2.5rem;
    font-weight: 700;
    color: #af9247;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    text-align: center;
}

.nav-menu {
    display: flex;
    gap: 30px;
    align-items: center;
}

.nav-menu a {
    color: #fff;
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    padding: 8px 15px;
    border-radius: 25px;
}

.nav-menu a:hover {
    color: #af9247;
    background: rgba(175, 146, 71, 0.1);
}

.phone-numbers {
    display: flex;
    gap: 15px;
    align-items: center;
}

.phone {
    color: #af9247;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.phone:hover {
    color: #fff;
    text-shadow: 0 0 10px #af9247;
}

/* ===========================
   Fixed Contact Icons
=========================== */
.fixed-contact {
    position: fixed;
    top: 50%;
    right: 20px;
    transform: translateY(-50%);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.contact-btn {
    width: 55px;
    height: 55px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
}

.whatsapp-btn {
    background: #25d366;
    color: #fff;
}

.call-btn {
    background: #af9247;
    color: #fff;
}

.contact-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0,0,0,0.4);
}

/* ===========================
   Hero Section
=========================== */
.hero {
    background: 
        linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
        url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    margin-top: 120px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(175, 146, 71, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(175, 146, 71, 0.1) 0%, transparent 50%);
    animation: shimmer 4s ease-in-out infinite alternate;
}

@keyframes shimmer {
    0% { opacity: 0.3; }
    100% { opacity: 0.7; }
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    color: #af9247;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out;
}

.hero-content p {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.3s both;
}

.cta-button {
    background: linear-gradient(45deg, #af9247, #8a7a3a);
    color: #fff;
    padding: 15px 40px;
    border: none;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    animation: fadeInUp 1s ease-out 0.6s both;
}

.cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(175, 146, 71, 0.4);
}

/* ===========================
   Services Section
=========================== */
.services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.section-title {
    text-align: center;
    font-size: 3rem;
    color: #af9247;
    margin-bottom: 3rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.service-card {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    min-height: 280px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.service-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.service-card h3 {
    font-size: 1.4rem;
    color: #af9247;
    margin-bottom: 1rem;
}

/* ===========================
   Fleet Section - Swiper RTL
=========================== */
.fleet {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.fleet-swiper {
    margin-top: 50px;
    padding: 0 50px;
}

.swiper-slide {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 20px;
    padding: 25px;
    text-align: center;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    height: auto;
}

.swiper-slide:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(175, 146, 71, 0.4);
}

.car-image-swiper {
    width: 100%;
    height: 200px;
    border-radius: 15px;
    margin-bottom: 20px;
    overflow: hidden;
    background: linear-gradient(135deg, #af9247 0%, #8a7a3a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.car-image-swiper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.car-image-swiper:hover img {
    transform: scale(1.05);
}

.car-placeholder {
    font-size: 4rem;
    color: #000;
    opacity: 0.7;
}

.swiper-slide h3 {
    font-size: 1.4rem;
    color: #af9247;
    margin-bottom: 10px;
    font-weight: 600;
}

.swiper-slide .model {
    color: #fff;
    font-size: 1rem;
    margin-bottom: 8px;
}

.swiper-slide .capacity {
    color: #af9247;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Swiper Navigation Buttons */
.swiper-button-next,
.swiper-button-prev {
    background: linear-gradient(45deg, #af9247, #8a7a3a);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    margin-top: -22.5px;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 18px;
    color: #fff;
    font-weight: bold;
}

.swiper-button-next:hover,
.swiper-button-prev:hover {
    background: linear-gradient(45deg, #fff, #f0f0f0);
}

.swiper-button-next:hover:after,
.swiper-button-prev:hover:after {
    color: #af9247;
}

/* Swiper Pagination */
.swiper-pagination-bullet {
    background: rgba(175, 146, 71, 0.5);
    width: 12px;
    height: 12px;
}

.swiper-pagination-bullet-active {
    background: #af9247;
}

/* ===========================
   Destinations Section
=========================== */
.destinations {
    padding: 100px 0;
    background: 
        linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.8)),
        url('../images/destinations-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.destination-card {
    background: linear-gradient(135deg, rgba(45,45,45,0.9), rgba(26,26,26,0.9));
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    border: 1px solid #af9247;
    transition: all 0.3s ease;
    min-height: 200px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    backdrop-filter: blur(10px);
}

.destination-card:hover {
    transform: scale(1.05);
    box-shadow: 0 15px 30px rgba(175, 146, 71, 0.2);
}

/* ===========================
   Features Section
=========================== */
.features {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #000 100%);
}

.features-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 25px;
    background: rgba(175, 146, 71, 0.1);
    border-radius: 15px;
    border-right: 4px solid #af9247;
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateX(-5px);
    background: rgba(175, 146, 71, 0.15);
}

.feature-icon {
    font-size: 2.5rem;
    color: #af9247;
}

/* ===========================
   Footer Section
=========================== */
footer {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    padding: 60px 0 30px;
    border-top: 3px solid #af9247;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.footer-section h3 {
    color: #af9247;
    margin-bottom: 20px;
    font-size: 1.5rem;
}

.footer-section p {
    margin-bottom: 10px;
    line-height: 1.8;
}

.social-media {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid #333;
}

.social-media h3 {
    color: #af9247;
    margin-bottom: 25px;
    font-size: 1.3rem;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 25px;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 50%;
    color: #af9247;
    font-size: 1.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-link:hover {
    background: #af9247;
    color: #000;
    transform: scale(1.1);
}

.copyright {
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
    border-top: none;
}

.copyright a {
    position: relative;
    overflow: hidden;
}

.copyright a::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: radial-gradient(circle, rgba(175, 146, 71, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    transition: all 0.6s ease;
    transform: translate(-50%, -50%);
    z-index: 1;
}

.copyright a:hover::before {
    width: 200px;
    height: 200px;
}

.copyright a:hover {
    color: #fff !important;
    transform: translateY(-3px) scale(1.08);
    text-shadow: 
        0 0 10px rgba(175, 146, 71, 0.8),
        0 0 20px rgba(175, 146, 71, 0.6),
        0 0 30px rgba(175, 146, 71, 0.4);
}

.copyright a:hover font {
    color: #fff !important;
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        text-shadow: 
            0 0 5px rgba(175, 146, 71, 0.8),
            0 0 10px rgba(175, 146, 71, 0.6);
    }
    to {
        text-shadow: 
            0 0 10px rgba(175, 146, 71, 1),
            0 0 20px rgba(175, 146, 71, 0.8),
            0 0 30px rgba(175, 146, 71, 0.6);
    }
}

/* ===========================
   Animations
=========================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===========================
   Responsive Design
=========================== */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .destinations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .features-list {
        grid-template-columns: 1fr;
    }

    .logo-placeholder {
        width: 80px;
        height: 80px;
    }

    .logo-text {
        font-size: 2rem;
    }

    .fleet-swiper {
        padding: 0 30px;
    }
}

@media (max-width: 768px) {
    .header-content {
        flex-direction: column;
        gap: 15px;
    }
    
    .nav-menu {
        gap: 15px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 5px 10px;
    }
    
    .hero-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-content p {
        font-size: 1.2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .destinations-grid {
        grid-template-columns: 1fr;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .fixed-contact {
        right: 10px;
    }
    
    .contact-btn {
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }

    .logo-placeholder {
        width: 60px;
        height: 60px;
    }

    .logo-text {
        font-size: 1.5rem;
    }

    .fleet-swiper {
        padding: 0 20px;
    }
}

@media (max-width: 480px) {
    .logo-text {
        font-size: 1.2rem;
    }
    
    .logo-placeholder {
        width: 50px;
        height: 50px;
    }
    
    .phone {
        font-size: 0.9rem;
    }

    .fleet-swiper {
        padding: 0 10px;
    }
}

/* ===================================
   ABOUT PAGE STYLES - أنماط صفحة من نحن
   =================================== */

.about-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/about-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
}

.about-hero-content h1 {
    font-size: 3.5rem;
    color: #af9247;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.about-hero-content p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.about-story {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
    margin-top: 50px;
}

.story-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #fff;
}

.story-text p {
    margin-bottom: 20px;
}

.story-image .car-image-placeholder {
    height: 300px;
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/logo2.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #000;
}


.vision-mission {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.vm-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-top: 50px;
}

.vm-card {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 20px;
    padding: 40px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.vm-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.vm-icon {
    font-size: 3rem;
    color: #af9247;
    margin-bottom: 20px;
}

.vm-card h3 {
    color: #af9247;
    font-size: 1.8rem;
    margin-bottom: 20px;
}

.vm-card p {
    color: #fff;
    line-height: 1.7;
    font-size: 1.1rem;
}

.values {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.value-item {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.value-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.value-icon {
    font-size: 2.5rem;
    color: #af9247;
    margin-bottom: 15px;
}

.value-item h4 {
    color: #af9247;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.value-item p {
    color: #fff;
    font-size: 0.95rem;
    line-height: 1.6;
}

.why-choose {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

/* ===================================
   SERVICES PAGE STYLES - أنماط صفحة الخدمات
   =================================== */

.services-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
}

.services-hero-content h1 {
    font-size: 3.5rem;
    color: #af9247;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.services-hero-content p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.main-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.main-services .services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.main-services .service-card {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 20px;
    padding: 35px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.main-services .service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.service-features {
    list-style: none;
    margin-top: 20px;
}

.service-features li {
    color: #fff;
    margin-bottom: 8px;
    font-size: 0.95rem;
}

.special-services {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.special-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.special-item {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 15px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.special-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.special-icon {
    font-size: 2.5rem;
    color: #af9247;
    margin-bottom: 15px;
}

.special-item h4 {
    color: #af9247;
    font-size: 1.3rem;
    margin-bottom: 15px;
}

.special-item p {
    color: #fff;
    line-height: 1.6;
}

.services-cta {
    padding: 80px 0;
    background: linear-gradient(135deg, #af9247 0%, #8a7a3a 100%);
    text-align: center;
}

.cta-content h2 {
    color: #000;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    color: #000;
    font-size: 1.2rem;
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.whatsapp-cta {
    background: #25d366 !important;
    color: #fff !important;
}

.phone-cta {
    background: #000 !important;
    color: #af9247 !important;
}

.whatsapp-cta:hover,
.phone-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

/* ===================================
   CONTACT PAGE STYLES - أنماط صفحة اتصل بنا
   =================================== */

.contact-hero {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)),
                url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: 150px 0 100px;
    text-align: center;
}

.contact-hero-content h1 {
    font-size: 3.5rem;
    color: #af9247;
    margin-bottom: 1rem;
    text-shadow: 3px 3px 6px rgba(0,0,0,0.8);
}

.contact-hero-content p {
    font-size: 1.5rem;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
}

.contact-cards {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 25px;
    margin-top: 50px;
}

.contact-card {
    background: rgba(175, 146, 71, 0.1);
    border: 2px solid #af9247;
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(175, 146, 71, 0.3);
    background: rgba(175, 146, 71, 0.2);
}

.contact-icon {
    font-size: 3rem;
    color: #af9247;
    margin-bottom: 20px;
}

.contact-card h3 {
    color: #af9247;
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.contact-card p {
    color: #fff;
    margin-bottom: 20px;
}

.contact-links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact-link {
    color: #af9247;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #fff;
}

.whatsapp-link {
    background: #25d366;
    color: #fff !important;
    padding: 8px 15px;
    border-radius: 25px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.whatsapp-link:hover {
    background: #1ea952;
}

.whatsapp-booking {
    padding: 100px 0;
    background: linear-gradient(135deg, #000 0%, #1a1a1a 100%);
}

.booking-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: center;
}

.booking-text h2 {
    color: #af9247;
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.booking-text p {
    color: #fff;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 25px;
}

.booking-list {
    list-style: none;
    margin-bottom: 30px;
}

.booking-list li {
    color: #fff;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.booking-list li i {
    color: #af9247;
}

.whatsapp-btn-large {
    background: #25d366;
    color: #fff;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.whatsapp-btn-large:hover {
    background: #1ea952;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(37, 211, 102, 0.4);
}

.booking-image .car-image-placeholder {
    height: 300px;
    background: linear-gradient(135deg, #25d366 0%, #1ea952 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 5rem;
    color: #fff;
}

.office-location {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    margin-top: 50px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.info-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(175, 146, 71, 0.1);
    padding: 25px;
    border-radius: 15px;
    border: 1px solid #af9247;
}

.info-icon {
    font-size: 1.8rem;
    color: #af9247;
    margin-top: 5px;
}

.info-text h4 {
    color: #af9247;
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.info-text p {
    color: #fff;
    line-height: 1.6;
}

.map-container {
    border-radius: 20px;
    overflow: hidden;
    height: 400px;
    border: 2px solid #af9247;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.emergency-contact {
    padding: 80px 0;
    background: linear-gradient(135deg, #dc3545 0%, #c82333 100%);
    text-align: center;
}

.emergency-card {
    max-width: 500px;
    margin: 0 auto;
    color: #fff;
}

.emergency-icon {
    font-size: 4rem;
    margin-bottom: 20px;
}

.emergency-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
}

.emergency-content p {
    font-size: 1.1rem;
    margin-bottom: 25px;
    opacity: 0.9;
}

.emergency-btn {
    background: #fff;
    color: #dc3545;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.emergency-btn:hover {
    background: #f8f9fa;
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.2);
}

/* ===================================
   RESPONSIVE DESIGN FOR NEW PAGES
   =================================== */

@media (max-width: 1024px) {
    .story-content,
    .booking-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .vm-grid {
        grid-template-columns: 1fr;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .special-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .about-hero-content h1,
    .services-hero-content h1,
    .contact-hero-content h1 {
        font-size: 2.5rem;
    }
    
    .values-grid,
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .main-services .services-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero,
    .services-hero,
    .contact-hero {
        padding: 120px 0 80px;
    }
    
    .story-text,
    .booking-text {
        font-size: 1rem;
    }
    
    .emergency-card {
        padding: 0 20px;
    }
}
/* Logo Link Fix - إصلاح رابط اللوجو */
.logo-section a {
    display: flex;
    align-items: center;
    gap: 20px;
    text-decoration: none;
    color: inherit;
}
