/* ===================================
   ليموزين برستيج - Main Stylesheet
   Mobile Optimized - Clean & Simple
   =================================== */

/* ===================================
   GLOBAL STYLES & RESET
   =================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-gold: #D4AF37;
    --dark-bg: #1a1a1a;
    --light-bg: #f8f8f8;
    --text-dark: #2c2c2c;
    --text-light: #ffffff;
    --accent-red: #8B0000;
    --shadow: rgba(0, 0, 0, 0.1);
}

body {
    font-family: 'Cairo', sans-serif;
    background-color: var(--light-bg);
    color: var(--text-dark);
    line-height: 1.8;
    direction: rtl;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* ===================================
   HEADER & NAVIGATION
   =================================== */
.header {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 1rem 2rem;
    position: sticky;
    top: 0;
    z-index: 100;
    box-shadow: 0 2px 10px var(--shadow);
}

.header-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--primary-gold);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.logo-icon {
    height: 45px;
    width: auto;
    object-fit: contain;
}

.header-cta {
    display: flex;
    gap: 1rem;
}

.phone-btn {
    background: var(--primary-gold);
    color: var(--dark-bg);
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.phone-btn:hover {
    background: #FFD700;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.4);
}

/* ===================================
   HERO SECTION WITH CAROUSEL
   =================================== */
.hero {
    position: relative;
    color: var(--text-light);
    padding: 6rem 1rem 4rem;
    text-align: center;
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transform: scale(1);
    transition: opacity 2s ease-in-out, transform 8s ease-out;
}

.hero-slide::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(rgba(0,0,0,0.75), rgba(0,0,0,0.75));
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 1;
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-subtitle {
    font-size: 1.6rem;
    margin-bottom: 2rem;
    color: #f0f0f0;
    line-height: 1.6;
}

.hero-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.hero-feature {
    padding: 0.7rem 1.5rem;
    border-radius: 25px;
    font-size: 1.15rem;
    border: none;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hero-feature::before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background: var(--primary-gold);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='20 6 9 17 4 12'%3E%3C/polyline%3E%3C/svg%3E");
    background-size: 14px;
    background-position: center;
    background-repeat: no-repeat;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.cta-primary,
.cta-secondary {
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 180px;
    text-align: center;
    border: none;
}

.cta-primary {
    background: var(--primary-gold);
    color: var(--dark-bg);
}

.cta-primary:hover {
    background: #FFD700;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.5);
}

.cta-secondary {
    background: #25D366;
    color: white;
}

.cta-secondary:hover {
    background: #20BA5A;
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
}

/* ===================================
   SECTIONS COMMON STYLES
   =================================== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 800;
    text-align: center;
    color: var(--dark-bg);
    margin-bottom: 1.5rem;
}

.section-subtitle {
    text-align: center;
    font-size: 1.25rem;
    color: #666;
    margin-bottom: 3.5rem;
    line-height: 1.6;
}

/* ===================================
   SERVICES SECTION
   =================================== */
.services {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.service-card {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px var(--shadow);
    border: 2px solid #f0f0f0;
    will-change: transform;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border-color: var(--primary-gold);
}

.service-icon {
    font-size: 3.5rem;
    margin-bottom: 1.2rem;
}

.service-card h3 {
    font-size: 1.6rem;
    color: var(--dark-bg);
    margin-bottom: 1.2rem;
}

.service-card p {
    color: #666;
    line-height: 1.9;
    font-size: 1.05rem;
}

/* ===================================
   FLEET SECTION
   =================================== */
.fleet {
    padding: 5rem 1rem;
    background: var(--dark-bg);
    color: var(--text-light);
}

.fleet .section-title {
    color: var(--text-light);
}

.fleet .section-subtitle {
    color: #ccc;
}

.fleet-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
}

.fleet-card {
    background: #2c2c2c;
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0,0,0,0.3);
    will-change: transform;
}

.fleet-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(212, 175, 55, 0.3);
}

.fleet-image {
    width: 100%;
    height: 250px;
    background: #2c2c2c;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.fleet-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.fleet-card:hover .fleet-image img {
    transform: scale(1.08);
}

.fleet-info {
    padding: 2rem;
}

.fleet-info h3 {
    color: var(--primary-gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.fleet-capacity {
    display: inline-block;
    background: rgba(212, 175, 55, 0.2);
    color: var(--primary-gold);
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    border: 1px solid var(--primary-gold);
}

.pricing-table {
    background: rgba(212, 175, 55, 0.1);
    padding: 1.5rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.7rem 0;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.price-item:last-child {
    border-bottom: none;
}

.price-label {
    color: #ccc;
    font-size: 1rem;
}

.price-value {
    color: var(--primary-gold);
    font-size: 1.3rem;
    font-weight: 800;
}

.fleet-features {
    list-style: none;
    padding: 0;
}

.fleet-features li {
    padding: 0.5rem 0;
    color: #ccc;
    position: relative;
    padding-right: 1.5rem;
}

.fleet-features li:before {
    content: '✓';
    color: var(--primary-gold);
    position: absolute;
    right: 0;
    font-weight: bold;
}

/* ===================================
   CONTACT CTA SECTION
   =================================== */
.contact {
    padding: 5rem 1rem;
    background: var(--light-bg);
}

.contact-cta-wrapper {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.cta-box {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.cta-box:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0,0,0,0.15);
}

.cta-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.cta-box h3 {
    font-size: 1.5rem;
    color: var(--dark-bg);
    margin-bottom: 0.5rem;
}

.cta-box p {
    color: #666;
    margin-bottom: 1.5rem;
}

.action-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.15rem;
    transition: all 0.3s ease;
}

.call-btn {
    background: linear-gradient(135deg, var(--primary-gold) 0%, #FFD700 100%);
    color: var(--dark-bg);
}

.call-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(212, 175, 55, 0.4);
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
}

.whatsapp-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.4);
}

.btn-icon {
    font-size: 1.3rem;
}

.contact-note {
    text-align: center;
    margin-top: 2rem;
    color: #666;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    background: var(--dark-bg);
    color: var(--text-light);
    padding: 2.5rem 1rem 1rem;
}

.footer-content-simple {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-main h3 {
    color: var(--primary-gold);
    margin-bottom: 0.5rem;
    font-size: 1.5rem;
}

.footer-main p {
    color: #ccc;
    font-size: 1rem;
}

.footer-contact {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-link {
    color: var(--text-light);
    text-decoration: none;
    font-size: 1.15rem;
    transition: color 0.3s ease;
    white-space: nowrap;
}

.footer-link:hover {
    color: var(--primary-gold);
}

.footer-social {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
}

.social-icon {
    width: 55px;
    height: 55px;
    background: var(--primary-gold);
    color: var(--dark-bg);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 1.6rem;
    transition: all 0.3s ease;
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(212, 175, 55, 0.3);
}

.social-icon:hover {
    background: #FFD700;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 8px 25px rgba(212, 175, 55, 0.5);
}

.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.1);
    color: #999;
    font-size: 0.9rem;
}

/* ===================================
   WHATSAPP FLOATING BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    left: 25px;
    background: linear-gradient(135deg, #25D366 0%, #20BA5A 100%);
    color: white;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    padding: 1.1rem 1.8rem;
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
    z-index: 1000;
    text-decoration: none;
    transition: all 0.3s ease;
    animation: float-bounce 3s ease-in-out infinite;
    font-weight: 800;
    font-size: 1.15rem;
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.whatsapp-icon {
    font-size: 1.6rem;
    animation: wiggle 1s ease-in-out infinite;
}

.whatsapp-text {
    white-space: nowrap;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.2);
}

.whatsapp-float:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 8px 35px rgba(37, 211, 102, 0.7);
    background: linear-gradient(135deg, #20BA5A 0%, #25D366 100%);
    border-color: rgba(255, 255, 255, 0.5);
}

@keyframes float-bounce {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-8px);
    }
}

@keyframes wiggle {
    0%, 100% {
        transform: rotate(0deg);
    }
    25% {
        transform: rotate(-10deg);
    }
    75% {
        transform: rotate(10deg);
    }
}

/* ===================================
   RESPONSIVE - TABLET (768px)
   =================================== */
@media (max-width: 768px) {
    /* Header */
    .header-content {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        gap: 0.8rem;
    }
    
    .logo {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        height: 38px;
    }
    
    .phone-btn {
        padding: 0.75rem 1.5rem;
        font-size: 1.05rem;
    }
    
    /* Hero - SIMPLIFIED FOR MOBILE */
    .hero {
        padding: 3rem 1rem 3rem;
        min-height: 65vh;
    }
    
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.3;
        margin-bottom: 2.5rem;
    }
    
    .hero-subtitle {
        display: none; /* HIDDEN - Too busy on mobile */
    }
    
    .hero-features {
        display: none; /* HIDDEN - Too busy on mobile */
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
    }
    
    .cta-primary,
    .cta-secondary {
        width: 100%;
        padding: 1.1rem 2rem;
        font-size: 1.2rem;
        border-radius: 50px; /* More rounded on mobile */
    }
    
    /* Sections */
    .services {
        padding: 3.5rem 1rem;
    }
    
    .fleet {
        padding: 3.5rem 1rem;
    }
    
    .contact {
        padding: 3.5rem 1rem;
    }
    
    .section-title {
        font-size: 1.9rem;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1.1rem;
        margin-bottom: 2.5rem;
        padding: 0 0.5rem;
    }
    
    /* Service Cards */
    .services-grid,
    .fleet-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .service-card {
        padding: 2rem 1.5rem;
    }
    
    .service-icon {
        font-size: 2.8rem; /* Smaller on mobile */
        margin-bottom: 1rem;
    }
    
    .service-card h3 {
        font-size: 1.4rem;
        margin-bottom: 0.8rem;
    }
    
    .service-card p {
        font-size: 1rem;
        line-height: 1.7;
    }
    
    /* Fleet Cards - CLEAN ON MOBILE */
    .fleet-card {
        border-radius: 12px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    }
    
    .pricing-table {
        border: none; /* NO BORDER on mobile */
        background: rgba(212, 175, 55, 0.15);
    }
    
    .fleet-capacity {
        border: none; /* NO BORDER on mobile */
        background: rgba(212, 175, 55, 0.25);
        font-weight: 600;
    }
    
    /* Contact CTAs */
    .contact-cta-wrapper {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .cta-box {
        padding: 2.5rem 2rem;
    }
    
    .cta-icon {
        font-size: 4rem; /* Bigger on mobile */
        margin-bottom: 1.2rem;
    }
    
    .cta-box h3 {
        font-size: 1.5rem;
    }
    
    .cta-box p {
        font-size: 1.1rem;
        margin-bottom: 1.5rem;
    }
    
    .action-btn {
        font-size: 1.2rem;
        padding: 1.1rem 2rem;
    }
    
    .btn-icon {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-content-simple {
        gap: 1.5rem;
    }
    
    .footer-main h3 {
        font-size: 1.4rem;
    }
    
    .footer-main p {
        font-size: 1rem;
    }
    
    .footer-contact {
        flex-direction: column;
        gap: 1rem;
    }
    
    .social-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .footer-link {
        font-size: 1.1rem;
    }
    
    /* WhatsApp Float */
    .whatsapp-float {
        padding: 0.9rem 1.3rem;
        font-size: 1.05rem;
        bottom: 20px;
        left: 20px;
    }
    
    .whatsapp-icon {
        font-size: 1.4rem;
    }
    
    .whatsapp-text {
        font-size: 1rem;
    }
}

/* ===================================
   RESPONSIVE - MOBILE (480px)
   =================================== */
@media (max-width: 480px) {
    .hero {
        padding: 2.5rem 1rem 2.5rem;
        min-height: 60vh;
    }
    
    .hero h1 {
        font-size: 1.9rem;
    }
    
    .section-title {
        font-size: 1.7rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    .whatsapp-float {
        padding: 0.8rem 1.1rem;
        font-size: 0.95rem;
        bottom: 15px;
        left: 15px;
    }
    
    .whatsapp-icon {
        font-size: 1.3rem;
    }
}