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

body {
    font-family: 'Cairo', sans-serif;
    line-height: 1.6;
    color: #333;
    direction: rtl;
    text-align: right;
}

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

/* Header Styles */
.header {
    background: rgba(95, 128, 160, 0.7);
    backdrop-filter: blur(10px);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    border-radius: 25px;
    margin: 15px 40px;
    width: calc(100% - 80px);
    overflow: visible;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.4s cubic-bezier(0.4, 0, 0.2, 1),
                box-shadow 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.hidden {
    transform: translateY(-100%) !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

.header:not(.hidden) {
    transform: translateY(0);
    opacity: 1;
}

.navbar {
    padding: 1rem 2rem;
}

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

.logo {
    flex: 0 0 auto;
}

.logo-img {
    height: 80px;
    width: auto;
    border-radius: 10px;
    transition: transform 0.3s ease;
}

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

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    flex: 1;
    justify-content: center;
}

.nav-menu a {
    color: #FFFFFF;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    position: relative;
}

.nav-menu a:hover {
    color: #FFD700;
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-2px);
}


.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 4px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #FFFFFF;
    border-radius: 2px;
    transition: all 0.3s ease;
}

/* Hero Section */
.hero {
    background: url('images/heroo.jpg') center center;
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center;
    width: 100%;
    height: 100vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
    padding-bottom: 50px;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: white;
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
}

.hero-text h1 {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
}

.hero-text p {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.8;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 1rem 2rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

/* Certificates & Licenses Section */
.certificates-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #1e3c72 0%, #5F80A0 100%);
    position: relative;
    overflow: hidden;
}

.certificates-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    pointer-events: none;
}

.certificates-section .section-header h2 {
    color: #FFFFFF;
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    text-align: center;
}

.certificates-section .section-header p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.1rem;
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.certificates-content {
    margin-top: 2rem;
    position: relative;
    z-index: 2;
}

.certificates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.certificate-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 12px;
    padding: 1rem;
    text-align: center;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.certificate-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
}

.certificate-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: #F7931E;
}

.certificate-image {
    margin-bottom: 0.8rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
}

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

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

.certificate-info h3 {
    color: #1e3c72;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.license-number {
    color: #F7931E;
    font-size: 0.9rem;
    font-weight: 600;
    background: rgba(247, 147, 30, 0.1);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    display: inline-block;
    margin-top: 0.3rem;
}

.trust-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-text h3 {
    color: #FFFFFF;
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}

.trust-text p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.download-section {
    margin-top: 1rem;
}

.download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.3);
}

.download-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    color: white;
}

.download-btn i {
    font-size: 1.2rem;
}

.contact-actions {
    text-align: center;
}

.contact-actions h4 {
    color: #FFFFFF;
    font-size: 1.3rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.contact-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    min-width: 200px;
}

.call-btn {
    background: rgba(255, 255, 255, 0.2);
    color: #FFFFFF;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.call-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-2px);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    border: 2px solid #25D366;
}

.whatsapp-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.3);
    color: white;
}

.contact-btn i {
    font-size: 1.3rem;
}

.contact-btn span {
    font-size: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .certificates-section {
        padding: 40px 0;
    }
    
    .certificates-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .certificates-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .trust-content {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: row;
        justify-content: center;
    }
    
    .contact-btn {
        min-width: 150px;
        padding: 0.8rem 1.2rem;
    }
}

@media (max-width: 576px) {
    .certificates-section .section-header h2 {
        font-size: 1.8rem;
    }
    
    .certificate-card {
        padding: 1rem;
    }
    
    .trust-content {
        padding: 1.5rem;
    }
    
    .contact-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .contact-btn {
        width: 100%;
        max-width: 250px;
    }
}

/* Services Section */
.services {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Statistics Section */
.statistics {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-item {
    text-align: center;
    padding: 0;
    background: transparent;
    border: none;
    position: relative;
}

.stat-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #1e3c72 0%, #5F80A0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 25px rgba(30, 60, 114, 0.15);
    transition: all 0.4s ease;
    position: relative;
}

.stat-icon::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #F7931E, #e6851a);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-item:hover .stat-icon::before {
    opacity: 1;
}

.stat-item:hover .stat-icon {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(30, 60, 114, 0.25);
}

.stat-icon i {
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-icon i {
    transform: scale(1.1);
}

.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: #1e3c72;
    margin-bottom: 0.8rem;
    line-height: 1;
    transition: all 0.3s ease;
    font-family: 'Cairo', sans-serif;
}

.stat-item:hover .stat-number {
    color: #F7931E;
    transform: scale(1.05);
}

.stat-label {
    font-size: 1.1rem;
    color: #666;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
}

.stat-item:hover .stat-label {
    color: #1e3c72;
}

/* Animation for counters */
.stat-number.animate {
    animation: countUp 0.8s ease-out;
}

@keyframes countUp {
    0% {
        transform: scale(0.5);
        opacity: 0;
    }
    50% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* Responsive Statistics */
@media (max-width: 1024px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
}

@media (max-width: 768px) {
    .statistics {
        padding: 60px 0;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .stat-icon {
        width: 70px;
        height: 70px;
        margin-bottom: 1.2rem;
    }
    
    .stat-icon i {
        font-size: 1.8rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .stat-icon {
        width: 60px;
        height: 60px;
    }
    
    .stat-icon i {
        font-size: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.2rem;
    }
    
    .stat-label {
        font-size: 0.9rem;
    }
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.5rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-card {
    background: rgba(95, 128, 160, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    color: white;
    transition: all 0.3s ease;
    border: 1px solid #2a5298;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    min-height: 500px;
}


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

.service-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
}

.service-icon i {
    font-size: 2.5rem;
    color: #F7931E;
}

.service-card h3 {
    font-size: 1.8rem;
    color: #F7931E;
    margin-bottom: 1.5rem;
    font-weight: 700;
    flex-shrink: 0;
}

.service-card p {
    color: #FFFFFF;
    margin-bottom: 2rem;
    line-height: 1.7;
    font-size: 1.1rem;
}

.service-card ul {
    list-style: none;
    margin-bottom: 2rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.service-card li {
    padding: 0.8rem 0;
    color: #FFFFFF;
    position: relative;
    padding-right: 1rem;
    text-align: right;
    flex: 1;
    display: flex;
    align-items: center;
}

.service-card li::before {
    content: '✓';
    position: absolute;
    right: 0;
    color: #F7931E;
    font-weight: bold;
    font-size: 1.2rem;
}

.service-book-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    text-decoration: none;
    padding: 12px 24px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: auto;
    width: 100%;
}

.service-book-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
    color: white;
    text-decoration: none;
}

.service-book-btn .price {
    font-size: 1.1rem;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 4px 12px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
}

.service-book-btn .text {
    font-size: 0.95rem;
    font-weight: 600;
}

/* WhatsApp button styles for services */
.service-book-btn i.fab.fa-whatsapp {
    margin-left: 8px;
    font-size: 1.1rem;
}

.service-book-btn:hover i.fab.fa-whatsapp {
    transform: scale(1.1);
}

/* Service price styles */
.service-price {
    margin-top: 15px;
    padding: 10px 15px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid #dee2e6;
}

.service-price .price-label {
    font-size: 0.9rem;
    color: #6c757d;
    font-weight: 500;
}

.service-price .price-value {
    font-size: 1.1rem;
    color: #FFD700;
    font-weight: 700;
    margin-right: 5px;
}

/* Cities Section Styles */
.cities-section {
    padding: 20px 0;
}

.city-group {
    margin-bottom: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 15px;
    padding: 25px;
    border: 1px solid #2a5298;
}

.city-title {
    color: #1e3c72;
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F7931E;
    text-align: center;
}

/* Holy Places Section */
.holy-places {
    padding: 80px 0;
    background: #5F80A0 !important;
}

.holy-places .section-header h2 {
    color: #FFFFFF;
}

.holy-places .section-header p {
    color: #FFFFFF;
}

.places-tabs {
    margin-top: 3rem;
}

.tab-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.tab-btn {
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border: none;
    padding: 1.2rem 2.5rem;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 600;
    font-size: 1.1rem;
    backdrop-filter: blur(10px);
    border: 1px solid #2a5298;
    min-width: 200px;
}

.tab-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.tab-btn.active {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    box-shadow: 0 5px 20px rgba(247, 147, 30, 0.3);
}

.tab-content {
    display: none;
}

.tab-content.active {
    display: block;
}

/* Holy Places Grid Layout - Force equal sizing */

.tab-content .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.tab-content .place-card {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    display: flex !important;
    flex-direction: column !important;
}

.tab-content .place-image {
    height: 200px !important;
    flex-shrink: 0 !important;
    width: 100% !important;
}

.tab-content .place-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
}

/* Force specific styling for all tab content */
#famous .place-image,
#mosques .place-image,
#mountains .place-image,
#other .place-image {
    height: 200px !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    overflow: hidden !important;
    position: relative !important;
}

#famous .place-image img,
#mosques .place-image img,
#mountains .place-image img,
#other .place-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    display: block !important;
    border-radius: 0 !important;
}

/* Force grid layout for all tabs - Unified CSS */
#famous .places-grid,
#mosques .places-grid,
#mountains .places-grid,
#other .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Force specific grid behavior for mountains and other tabs */
#mountains .places-grid,
#other .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

/* Override any conflicting styles */
.tab-content#mountains .places-grid,
.tab-content#other .places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    align-items: stretch !important;
    justify-items: center !important;
    width: 100% !important;
    max-width: 100% !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

#famous .place-card,
#mosques .place-card,
#mountains .place-card,
#other .place-card {
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    width: 280px !important;
    min-width: 280px !important;
    max-width: 280px !important;
    display: flex !important;
    flex-direction: column !important;
    box-sizing: border-box !important;
    margin: 0 !important;
    padding: 0 !important;
}

.place-card {
    background: rgba(95, 128, 160, 0.7);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.3s ease;
    border: 1px solid #2a5298;
    position: relative;
    cursor: pointer;
    display: flex !important;
    flex-direction: column !important;
    height: 350px !important;
    min-height: 350px !important;
    max-height: 350px !important;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

.place-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    border-radius: 20px 20px 0 0;
    z-index: 1;
}

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

.place-image {
    height: 200px !important;
    overflow: hidden !important;
    position: relative !important;
    flex-shrink: 0 !important;
    width: 100% !important;
    border-radius: 0 !important;
}

.place-image img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover !important;
    object-position: center !important;
    transition: transform 0.3s ease !important;
    border-radius: 0 !important;
    display: block !important;
}

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

.place-content {
    padding: 1.5rem !important;
    flex: 1 !important;
    display: flex !important;
    flex-direction: column !important;
    justify-content: space-between !important;
    height: 100% !important;
    min-height: 0 !important;
    overflow: hidden !important;
}

.place-content h3 {
    font-size: 1.1rem !important;
    color: #ffffff !important;
    margin-bottom: 0.5rem !important;
    font-weight: 600 !important;
    line-height: 1.3 !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
    height: 2.6rem !important;
    overflow: hidden !important;
    display: -webkit-box !important;
    -webkit-line-clamp: 2 !important;
    line-clamp: 2 !important;
    -webkit-box-orient: vertical !important;
    text-overflow: ellipsis !important;
}

.place-content p {
    color: #666;
    font-size: 0.9rem;
    line-height: 1.5;
}

.place-price-row {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    gap: 0.5rem !important;
    margin-top: auto !important;
    flex-direction: row-reverse !important;
    width: 100% !important;
    height: 3rem !important;
    min-height: 3rem !important;
    flex-shrink: 0 !important;
}

.place-price-row .place-price {
    font-size: 1.1rem;
    font-weight: 700;
    color: #FFD700;
    background: transparent;
    padding: 0;
    border: none;
}

.place-price-row .place-btn {
    flex: 0 0 auto;
    text-align: center;
    min-width: 80px;
}

.place-btn {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
    text-align: center;
}

.place-btn:hover {
    background: #e6851a;
    transform: translateY(-2px);
}

.place-btn .place-text {
    font-size: 0.9rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
}

/* WhatsApp button styles */
.place-btn i.fab.fa-whatsapp {
    margin-left: 5px;
    font-size: 1rem;
}

.place-btn:hover i.fab.fa-whatsapp {
    transform: scale(1.1);
}

/* Fleet Section */
.fleet {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

/* Car Price Styling - REMOVED (Old System) */

.book-btn {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    border: none;
    border-radius: 25px;
    padding: 12px 24px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    box-shadow: 0 4px 15px rgba(247, 147, 30, 0.4);
    font-family: 'Cairo', sans-serif;
}

.book-btn:hover {
    background: linear-gradient(135deg, #e6851a 0%, #d67a17 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(247, 147, 30, 0.6);
}

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

.price-label {
    color: #FFFFFF;
    font-weight: 600;
    font-size: 0.9rem;
    margin-left: 0.5rem;
}

.price-value {
    color: #FFD700;
    font-weight: bold;
    font-size: 1.1rem;
    margin-right: 0.5rem;
}

.fleet .section-header h2 {
    color: #1e3c72;
}

.fleet .section-header p {
    color: #666;
}

.fleet-gallery {
    margin-top: 3rem;
}

.fleet-category {
    margin-bottom: 3rem;
}

.fleet-category h3 {
    font-size: 2rem;
    color: #1e3c72;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
    position: relative;
}

.fleet-category h3::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    border-radius: 2px;
}

.fleet-cars {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

/* .car-card - REMOVED (Old System) */

/* .car-card::before and .car-card:hover - REMOVED (Old System) */

/* .car-image-container and related - REMOVED (Old System) */

.view-btn {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    color: white;
    border: none;
    padding: 0.8rem 1.5rem;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 0.9rem;
}

.view-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(247, 147, 30, 0.4);
}

/* .car-info and .car-info h4 - REMOVED (Old System) */

/* .car-info p, .car-features, .feature-tag - REMOVED (Old System) */

/* Car Modal - REMOVED (Old System) */

/* Desktop modal spacing - REMOVED (Old System) */

/* Close button responsive design - REMOVED (Old System) */

/* @media (max-width: 480px) .close-modal - REMOVED (Old System) */

/* .car-modal.active - REMOVED (Old System) */

/* .modal-content - REMOVED (Old System) */

/* .close-modal - REMOVED (Old System) */

/* .close-modal:hover - REMOVED (Old System) */

/* .modal-body, .car-details, .car-image-large - REMOVED (Old System) */

/* .car-specs h3 and .car-specs p - REMOVED (Old System) */

/* .specs-grid - REMOVED (Old System) */

/* .spec-item and .spec-item:hover - REMOVED (Old System) */

/* .spec-item i - REMOVED (Old System) */

/* .spec-item span - REMOVED (Old System) */

/* .book-car-btn and .book-car-btn:hover - REMOVED (Old System) */

/* Special Features Section - REMOVED (Old System) */

/* .special-features .section-header h2 - REMOVED (Old System) */

/* .special-features .section-header p - REMOVED (Old System) */

/* .features-grid - REMOVED (Old System) */

.feature-card {
    background: rgba(95, 128, 160, 0.7);
    backdrop-filter: blur(10px);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    border: 1px solid #2a5298;
    overflow: hidden;
}

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

.feature-icon {
    width: 80px;
    height: 80px;
    background: rgba(247, 147, 30, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    border: 2px solid rgba(247, 147, 30, 0.4);
}

.feature-icon i {
    font-size: 1.8rem;
    color: #FFD700;
}

.feature-card h3 {
    font-size: 1.3rem;
    color: #1e3c72;
    margin-bottom: 1rem;
    font-weight: 600;
}

.feature-card p {
    color: #1e3c72;
    line-height: 1.6;
}

/* Schedule Section */
.schedule {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.schedule .section-header h2 {
    color: #1e3c72;
}

.schedule .section-header p {
    color: #666;
}

.schedule-table {
    margin-top: 3rem;
    overflow-x: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    position: relative;
    -webkit-overflow-scrolling: touch;
    /* شريط تمرير واضح للموبايل */
    scrollbar-width: thin;
    scrollbar-color: #F7931E #e9ecef;
}

/* تنسيق الـ scrollbar لـ Webkit (Chrome, Safari) */
.schedule-table::-webkit-scrollbar {
    height: 12px;
    background: #e9ecef;
}

.schedule-table::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #F7931E 0%, #e6851a 100%);
    border-radius: 10px;
    border: 2px solid #e9ecef;
}

.schedule-table::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #e6851a 0%, #d67a17 100%);
}


/* إظهار المؤشر عند التمرير على الموبايل */
@media (max-width: 768px) {
    .schedule-table {
        /* جعل الـ scrollbar دائماً مرئي على الموبايل */
        overflow-x: scroll;
        -webkit-overflow-scrolling: touch;
    }
    
    .schedule-table::-webkit-scrollbar {
        height: 8px;
    }
    
}

.schedule-table table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 15px;
    overflow: hidden;
}

/* مؤشر تمرير بصري - يعمل على جميع المتصفحات */
.schedule {
    position: relative;
}

.schedule .container {
    position: relative;
}

/* أيقونة التمرير اليمنى */
.schedule-table .scroll-indicator-left {
    content: '‹';
    position: absolute;
    left: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247, 147, 30, 0.85);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    animation: pulse-arrow 2s infinite;
}

/* أيقونة التمرير اليسرى */
.schedule-table .scroll-indicator-right {
    content: '›';
    position: absolute;
    right: 8px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(247, 147, 30, 0.85);
    color: white;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 600;
    z-index: 10;
    pointer-events: none;
    box-shadow: 0 2px 8px rgba(0,0,0,0.25);
    animation: pulse-arrow 2s infinite;
    animation-delay: 1s;
}

/* حركة النبض للأيقونات */
@keyframes pulse-arrow {
    0%, 100% {
        opacity: 1;
        transform: translateY(-50%) scale(1);
    }
    50% {
        opacity: 0.6;
        transform: translateY(-50%) scale(1.1);
    }
}

/* إخفاء الأيقونات على الشاشات الكبيرة */
@media (min-width: 769px) {
    .schedule-table .scroll-indicator-left,
    .schedule-table .scroll-indicator-right {
        display: none;
    }
}

/* على الموبايل فقط */
@media (max-width: 768px) {
    .schedule-table .scroll-indicator-left,
    .schedule-table .scroll-indicator-right {
        display: flex !important;
    }
}

/* إخفاء المؤشرات عند التمرير */
.schedule-table.scrolling .scroll-indicator-left,
.schedule-table.scrolling .scroll-indicator-right {
    opacity: 0 !important;
    transition: opacity 0.3s ease;
}

/* التأكد من ظهور المؤشرات على الموبايل */
@media (max-width: 768px) {
    .schedule-table .scroll-indicator-left,
    .schedule-table .scroll-indicator-right {
        display: flex !important;
        opacity: 1 !important;
    }
}

.schedule-table th {
    background: linear-gradient(135deg, #1e3c72 0%, #5F80A0 100%);
    color: white;
    padding: 1.5rem 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 1.1rem;
}

.schedule-table td {
    padding: 1.5rem 1rem;
    text-align: center;
    border-bottom: 1px solid #eee;
    font-size: 1rem;
    color: #333;
}

.schedule-table tr:nth-child(even) {
    background: #f8f9fa;
}

.schedule-table tr:nth-child(odd) {
    background: white;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #5F80A0 !important;
}

.contact .section-header h2 {
    color: #FFFFFF;
}

.contact .section-header p {
    color: #FFFFFF;
}

.contact-timeline-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 1.5rem 0;
}

.timeline {
    position: relative;
    padding: 1rem 0;
}

.timeline-line {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 4px;
    background: linear-gradient(180deg, #5F80A0 0%, #F7931E 100%);
    transform: translateX(-50%);
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(95, 128, 160, 0.3);
}

.timeline-item {
    position: relative;
    margin-bottom: 2.5rem;
    display: flex;
    align-items: center;
    opacity: 0;
    transform: translateY(50px);
    animation: slideInUp 0.6s ease-out forwards;
}

.timeline-item:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item:nth-child(odd) .timeline-content {
    text-align: center;
    margin-right: 2rem;
}

.timeline-item:nth-child(even) .timeline-content {
    text-align: center;
    margin-left: 2rem;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5F80A0 0%, #F7931E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    box-shadow: 0 5px 20px rgba(95, 128, 160, 0.3);
    z-index: 2;
    position: relative;
}

.timeline-content {
    background: white;
    padding: 1.5rem;
    border-radius: 15px;
    width: 45%;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    border: 1px solid rgba(95, 128, 160, 0.1);
}

.timeline-content h3 {
    color: #1e3c72;
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
    font-weight: 600;
}

.timeline-content p {
    color: #666;
    font-size: 1rem;
    margin-bottom: 0.4rem;
    line-height: 1.5;
}

.timeline-btn {
    background: linear-gradient(135deg, #5F80A0 0%, #F7931E 100%);
    color: white;
    text-decoration: none;
    padding: 0.6rem 1.2rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-block;
}

.timeline-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(95, 128, 160, 0.4);
    color: white;
    text-decoration: none;
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    padding: 4rem 0 1rem;
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #5F80A0 0%, #F7931E 100%);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: #FFD700;
    font-weight: 600;
    position: relative;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
}

.footer-section ul li a {
    color: #e2e8f0;
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-section ul li a:hover {
    color: #ffd700;
    transform: translateX(5px);
}

.footer-section ul li a::before {
    content: '→';
    opacity: 0;
    transition: opacity 0.3s ease;
}

.footer-section ul li a:hover::before {
    opacity: 1;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

.social-links a {
    width: 35px;
    height: 35px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    border: 1px solid #2a5298;
}

.social-links a:hover {
    background: linear-gradient(135deg, #5F80A0 0%, #F7931E 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(95, 128, 160, 0.4);
}

.footer-logo-container {
    margin-bottom: 0.1rem;
}

.footer-logo p {
    color: #FFFFFF;
    font-size: 1rem;
    line-height: 1.6;
    margin-top: 1rem;
    text-align: right;
}

.footer-logo-img {
    width: 140px;
    height: 140px;
    border-radius: 0;
    background: transparent;
    padding: 0;
    transition: transform 0.3s ease;
    object-fit: contain;
}

.footer-logo-img:hover {
    transform: scale(1.05);
}

.contact-info p {
    margin-bottom: 0.6rem;
    gap: 0.6rem;
    font-size: 0.9rem;
    color: #e2e8f0;
    display: flex;
    align-items: center;
}

.contact-info i {
    width: 16px;
    font-size: 0.9rem;
    color: #FFD700;
}

.certificates {
    gap: 0.6rem;
}

.certificate-item {
    display: flex !important;
    align-items: center !important;
    gap: 0.4rem !important;
    padding: 0.6rem !important;
    background: rgba(255, 255, 255, 0.05) !important;
    border-radius: 5px !important;
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    transition: all 0.3s ease !important;
    width: 100% !important;
    flex-direction: row !important;
    justify-content: center !important;
    margin-bottom: 0.5rem;
}

.certificate-item i {
    flex-shrink: 0 !important;
    font-size: 1.5rem !important;
    color: #F7931E !important;
}

.certificate-item div {
    text-align: center !important;
    align-items: center !important;
    flex: 1 !important;
}

.certificate-item strong {
    font-size: 1rem !important;
    color: #e2e8f0 !important;
    display: block !important;
    margin-bottom: 0.2rem !important;
}

.certificate-item span {
    font-size: 0.9rem !important;
    color: #94a3b8 !important;
    display: block !important;
}

.footer-bottom-content {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #94a3b8;
}

/* WhatsApp Float Button */
.whatsapp-float-btn {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25D366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
}

.whatsapp-float-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
    color: white;
    text-decoration: none;
}


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

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

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

/* Admin Toggle Button */
.admin-toggle-item {
    margin-left: auto;
    display: flex;
    align-items: center;
}

.admin-toggle-btn {
    background: #1e3c72;
    color: white;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(30, 60, 114, 0.3);
    z-index: 9999;
    position: relative;
}

.admin-toggle-btn:hover {
    background: #F7931E;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(247, 147, 30, 0.4);
}

.admin-toggle-btn.active {
    background: #28a745 !important;
    animation: pulse 2s infinite;
}

.admin-toggle-btn.active:hover {
    background: #218838;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(40, 167, 69, 0.4);
}

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

/* Responsive admin toggle */
@media (max-width: 768px) {
    .admin-toggle-item {
        margin-left: 0;
        width: 100%;
        justify-content: center;
        padding: 10px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    }
    
    .admin-toggle-btn {
        width: 50px;
        height: 50px;
        font-size: 18px;
    }
}

/* Hero Image Responsive Fixes for Large Screens */
@media (min-width: 1200px) {
    .hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
    }
}

@media (min-width: 1025px) and (max-width: 1199px) {
    .hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .header {
        margin: 10px 20px;
        width: calc(100% - 40px);
        border-radius: 20px;
    }
    
    .nav-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: rgba(95, 128, 160, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        padding: 1rem;
        border-radius: 0 0 20px 20px;
        box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .hamburger {
        display: flex;
    }
    
    
    .hero {
        padding-bottom: 30px;
        background: url('images/hero_iph.png') center center !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
    }
    
    .hero-text h1 {
        font-size: 2.5rem;
    }
    
    .hero-text p {
        font-size: 1.1rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    
    .tab-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .tab-btn {
        width: 100%;
        max-width: 400px;
        padding: 1rem 2rem;
        font-size: 1rem;
        min-width: auto;
    }
    
    .fleet-cars {
        grid-template-columns: 1fr;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .timeline-item {
        flex-direction: column !important;
        text-align: center;
    }
    
    .timeline-item:nth-child(odd) .timeline-content,
    .timeline-item:nth-child(even) .timeline-content {
        margin: 1rem 0 0 0;
        width: 100%;
    }
    
    .timeline-line {
        left: 20px;
    }
    
    .timeline-icon {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .modal-content {
        width: 95%;
        margin: 0 !important;
        max-height: 90vh;
        overflow-y: auto;
        transform: none !important;
        align-self: center !important;
        justify-self: center !important;
        height: auto;
        padding: 0.5rem;
        margin-top: 2rem !important;
    }
    
    .car-modal.active {
        padding: 2px;
        height: 100vh !important;
        width: 100vw !important;
        align-items: center !important;
        justify-content: center !important;
        position: fixed !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        overflow: hidden;
    }
    
    .car-details {
        grid-template-columns: 1fr;
    }
    
    .car-image-large img {
        height: 150px;
        object-fit: cover;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
        gap: 0.3rem;
        margin-bottom: 1rem;
    }
    
    .spec-item {
        padding: 0.4rem;
        font-size: 0.8rem;
    }
    
    .car-specs h3 {
        font-size: 1.2rem;
        margin-bottom: 0.5rem;
    }
    
    .car-specs p {
        font-size: 0.8rem;
        margin-bottom: 0.8rem;
        line-height: 1.4;
    }
    
    .book-car-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.9rem;
        margin-top: 0.5rem;
    }
    
    .modal-body {
        padding: 1rem;
    }
    
    .car-image-large img {
        height: 200px;
    }
    
    .specs-grid {
        grid-template-columns: 1fr;
    }
    
    .schedule-table {
        font-size: 0.9rem;
    }
    
    .schedule-table th,
    .schedule-table td {
        padding: 0.8rem 0.5rem;
    }
    
    .whatsapp-float-btn {
        bottom: 20px;
        right: 20px;
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 1024px) and (min-width: 769px) {
    .hero {
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
    }
    
    .nav-menu {
        gap: 1.5rem;
    }
    
    .nav-menu a {
        font-size: 0.9rem;
        padding: 0.4rem 0.8rem;
    }
    
    .logo-img {
        height: 60px;
    }
    
    .tab-content .places-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        justify-items: center !important;
    }
    
    .tab-content .place-card {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        width: 250px !important;
        min-width: 250px !important;
        max-width: 250px !important;
    }
    
    .place-content h3 {
        font-size: 1.05rem !important;
        height: 2.4rem !important;
    }
    
    .place-price-row {
        height: 2.8rem !important;
        min-height: 2.8rem !important;
    }
    
    .place-image {
        height: 180px !important;
    }
    
    #famous .place-image,
    #mosques .place-image,
    #mountains .place-image,
    #other .place-image {
        height: 180px !important;
    }
    
    #famous .places-grid,
    #mosques .places-grid,
    #mountains .places-grid,
    #other .places-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    /* Force specific behavior for mountains and other tabs on tablet */
    #mountains .places-grid,
    #other .places-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    .tab-content#mountains .places-grid,
    .tab-content#other .places-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 1.5rem !important;
        justify-items: center !important;
        width: 100% !important;
        max-width: 100% !important;
    }
    
    #famous .place-card,
    #mosques .place-card,
    #mountains .place-card,
    #other .place-card {
        height: 320px !important;
        min-height: 320px !important;
        max-height: 320px !important;
        width: 250px !important;
        min-width: 250px !important;
        max-width: 250px !important;
    }
}

@media (max-width: 900px) and (min-width: 769px) {
    .nav-menu {
        gap: 1.2rem;
    }
    
    .nav-menu a {
        font-size: 0.85rem;
        padding: 0.3rem 0.6rem;
    }
    
    .logo-img {
        height: 55px;
    }
}

@media (max-width: 820px) and (min-width: 769px) {
    .nav-menu {
        gap: 1rem;
    }
    
    .nav-menu a {
        font-size: 0.8rem;
        padding: 0.3rem 0.5rem;
    }
    
    .logo-img {
        height: 50px;
    }
}

@media (max-width: 800px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.8rem;
    }
    
    .nav-menu a {
        font-size: 0.75rem;
        padding: 0.2rem 0.4rem;
    }
    
    .logo-img {
        height: 45px;
    }
}

@media (max-width: 780px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.6rem;
    }
    
    .nav-menu a {
        font-size: 0.7rem;
        padding: 0.2rem 0.3rem;
    }
    
    .logo-img {
        height: 40px;
    }
}

@media (max-width: 760px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.4rem;
    }
    
    .nav-menu a {
        font-size: 0.65rem;
        padding: 0.1rem 0.2rem;
    }
    
    .logo-img {
        height: 35px;
    }
}

@media (max-width: 750px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.2rem;
    }
    
    .nav-menu a {
        font-size: 0.6rem;
        padding: 0.1rem 0.1rem;
    }
    
    .logo-img {
        height: 30px;
    }
}

@media (max-width: 740px) and (min-width: 769px) {
    .nav-menu {
        gap: 0.1rem;
    }
    
    .nav-menu a {
        font-size: 0.55rem;
        padding: 0.05rem 0.05rem;
    }
    
    .logo-img {
        height: 25px;
    }
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb {
    background: #667eea;
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #5a6fd8;
}
/* Book Button Style */
.book-btn {
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white !important;
    padding: 0.6rem 1.2rem;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.3);
}

.book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(37, 211, 102, 0.5);
    background: linear-gradient(135deg, #128C7E 0%, #25D366 100%);
    color: white !important;
    text-decoration: none;
}

.book-btn i {
    font-size: 1.1rem;
}

/* Adjust table cells for new columns */
.schedule-table th:nth-child(5),
.schedule-table td:nth-child(5) {
    color: #FFD700;
    font-weight: 700;
}

.schedule-table th:nth-child(6),
.schedule-table td:nth-child(6) {
    min-width: 140px;
}

/* Mobile Responsive for table */
@media (max-width: 768px) {
    .schedule-table table {
        min-width: 900px;
    }
    
    .book-btn {
        padding: 0.5rem 1rem;
        font-size: 0.85rem;
    }
}


/* ============================================
   تعديلات الأماكن المقدسة للموبايل - بدون تعارض
   ============================================ */

/* التأكد من أن الشاشات الكبيرة تظهر 4 بطاقات */
@media only screen and (min-width: 769px) {
    .holy-places .tab-content .places-grid,
    .holy-places #famous .places-grid,
    .holy-places #mosques .places-grid,
    .holy-places #mountains .places-grid,
    .holy-places #other .places-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 25px;
        width: 100% !important;
        justify-items: center !important;
    }
    
    .holy-places .tab-content .place-card,
    .holy-places #famous .place-card,
    .holy-places #mosques .place-card,
    .holy-places #mountains .place-card,
    .holy-places #other .place-card {
        width: 280px !important;
        height: 350px !important;
        max-width: 280px !important;
        min-width: 280px !important;
    }
}

/* للشاشات المتوسطة */
@media only screen and (min-width: 769px) and (max-width: 1024px) {
    .holy-places .tab-content .places-grid,
    .holy-places #famous .places-grid,
    .holy-places #mosques .places-grid,
    .holy-places #mountains .places-grid,
    .holy-places #other .places-grid {
        grid-template-columns: repeat(3, 1fr) !important;
    }
}

@media only screen and (max-width: 768px) {
    /* Container fixes */
    .holy-places .container {
        padding-left: 8px !important;
        padding-right: 8px !important;
        max-width: 100vw !important;
        overflow-x: hidden !important;
    }
    
    /* Grid fixes - بدون تعارض */
    .tab-content .places-grid,
    #famous .places-grid,
    #mosques .places-grid,
    #mountains .places-grid,
    #other .places-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 8px !important;
        width: 100% !important;
        padding: 0 !important;
        margin: 0 auto !important;
        justify-content: center !important;
    }
    
    /* Card fixes - مرن بدون عرض ثابت */
    .tab-content .place-card,
    #famous .place-card,
    #mosques .place-card,
    #mountains .place-card,
    #other .place-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 130px !important;
        margin: 0 !important;
    }
    
    /* Image fixes */
    .place-image,
    #famous .place-image,
    #mosques .place-image,
    #mountains .place-image,
    #other .place-image {
        height: 150px !important;
    }
    
    /* Content fixes */
    .place-content {
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }
    
    .place-content h3 {
        font-size: 0.85rem !important;
        height: 2.2rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
        margin-top: 0 !important;
    }
    
    /* Button row fixes */
    .place-price-row {
        height: 2.2rem !important;
        gap: 0.3rem !important;
        margin-top: 0.3rem !important;
        margin-bottom: 0 !important;
    }
    
    .place-price-row .place-price {
        font-size: 1rem !important;
    }
    
    .place-btn {
        padding: 0.5rem 0.8rem !important;
        font-size: 0.85rem !important;
    }
}

/* للشاشات الصغيرة جداً */
@media only screen and (max-width: 380px) {
    .tab-content .place-card,
    #famous .place-card,
    #mosques .place-card,
    #mountains .place-card,
    #other .place-card {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 110px !important;
        margin: 0 !important;
    }
    
    .place-image,
    #famous .place-image,
    #mosques .place-image,
    #mountains .place-image,
    #other .place-image {
        height: 70px !important;
    }
    
    .place-content {
        padding: 0.3rem !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: flex-start !important;
        height: 100% !important;
    }
    
    
    .place-content h3 {
        font-size: 0.8rem !important;
        height: 2rem !important;
        line-height: 1.1 !important;
        margin-bottom: 0.1rem !important;
        margin-top: 0 !important;
    }
    
    .place-price-row {
        height: 2rem !important;
        margin-top: 0.2rem !important;
        margin-bottom: 0 !important;
    }
}

/* New City Sections Styling */
.city-sections {
    padding: 20px;
    background-color: #f8f9fa;
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.city-main-title {
    font-size: 2.2rem;
    color: #1e3c72;
    text-align: center;
    margin-bottom: 40px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.route-section {
    margin-bottom: 50px;
    background: white;
    border-radius: 12px;
    padding: 25px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    border: 1px solid #e9ecef;
}

.route-section:last-child {
    margin-bottom: 0;
}

.route-title {
    font-size: 1.4rem;
    color: #2c3e50;
    margin-bottom: 25px;
    padding-bottom: 10px;
    border-bottom: 2px solid #F7931E;
    font-weight: 600;
}

/* Flexible Grid Layout for Trip Cards */
.places-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 25px;
    padding: 0;
    margin: 0;
    width: 100%;
    justify-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

/* Responsive adjustments for different screen sizes */
@media (max-width: 1200px) {
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 20px;
        max-width: 1000px;
    }
}

@media (max-width: 992px) {
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 18px;
        max-width: 900px;
    }
}

@media (max-width: 768px) {
    .places-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 16px;
        max-width: 800px;
    }
    
    .city-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .route-title {
        font-size: 1.2rem;
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .places-grid {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
        margin: 0 auto;
    }
    
    .city-sections {
        padding: 15px;
    }
    
    .route-section {
        padding: 20px;
        margin-bottom: 30px;
    }
}

/* Ensure cards don't overflow */
.place-card {
    max-width: 100%;
    width: 100%;
    box-sizing: border-box;
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

/* Optimize card content for better fit */
.place-card .place-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.place-card .place-content h3 {
    font-size: 1.1rem;
    line-height: 1.3;
    margin-bottom: 10px;
    min-height: 2.6rem;
    display: flex;
    align-items: center;
}

.place-card .place-price-row {
    margin-top: auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 10px;
}

/* Better spacing for different screen sizes */
@media (max-width: 768px) {
    .place-card {
        min-height: 180px;
    }
    
    .place-card .place-content h3 {
        font-size: 1rem;
        min-height: 2.4rem;
    }
}

@media (max-width: 576px) {
    .place-card {
        min-height: 160px;
    }
    
    .place-card .place-content h3 {
        font-size: 0.95rem;
        min-height: 2.2rem;
    }
}

/* New Fleet Section Styles */
.fleet-grid {
    display: flex;
    flex-direction: column;
    gap: 30px;
    padding: 20px 0;
    max-width: 900px;
    margin: 0 auto;
}

.fleet-card {
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border: 2px solid #e0e0e0;
    display: flex;
    flex-direction: row;
    align-items: center;
    min-height: 200px;
    position: relative;
}

.fleet-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0.1;
    z-index: 1;
    pointer-events: none;
}

.fleet-card[data-car="gmc"]::before {
    background-image: url('images/gmc-background.jpg');
}

.fleet-card[data-car="lexus"]::before {
    background-image: url('images/lexus-background.jpg');
}

.fleet-card[data-car="ford-taurus"]::before {
    background-image: url('images/ford-background.jpg');
}

.fleet-card[data-car="starya"]::before {
    background-image: url('images/toyota-background.jpg');
}

.fleet-card[data-car="haice"]::before {
    background-image: url('images/hyundai-background.jpg');
}

.fleet-card[data-car="coster"]::before {
    background-image: url('images/coster-background.jpg');
}

.fleet-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
    border-color: #F7931E;
}

.fleet-card:hover::before {
    opacity: 0.15;
}

/* Car Gallery */
.car-gallery {
    position: relative;
    flex: 0 0 400px;
    max-width: 400px;
}

.main-image {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

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

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

.image-thumbnails {
    display: flex;
    gap: 10px;
    padding: 10px;
    background: #f5f5f5;
    justify-content: center;
}

.thumbnail {
    width: 70px;
    height: 50px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    opacity: 0.7;
}

.thumbnail:hover {
    opacity: 1;
    transform: scale(1.05);
}

.thumbnail.active {
    border-color: #F7931E;
    opacity: 1;
}

/* Car Info */
.fleet-card .car-info {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.fleet-card .car-info h3 {
    font-size: 1.8rem;
    color: #1e3c72;
    margin-bottom: 10px;
    font-weight: 700;
}

.car-description {
    color: #2c3e50 !important;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
}

.car-features {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 15px;
}

.car-features .feature {
    background: linear-gradient(135deg, #1e3c72 0%, #2a5298 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 500;
}

.fleet-card .car-price {
    margin-bottom: 20px;
}

.fleet-card .car-price .price {
    font-size: 1.5rem;
    color: #F7931E;
    font-weight: 700;
}

/* Multiple Prices */
.multiple-prices {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
    margin: 15px 0;
}

.price-item {
    background: rgba(247, 147, 30, 0.1);
    border: 1px solid #F7931E;
    border-radius: 8px;
    padding: 8px;
    text-align: center;
    transition: all 0.3s ease;
}

.price-item:hover {
    background: rgba(247, 147, 30, 0.2);
    transform: translateY(-2px);
}

.price-route {
    font-size: 0.8rem;
    color: #2c3e50;
    margin-bottom: 4px;
    font-weight: 500;
}

.price-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #F7931E;
}

.no-prices-message {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    background: rgba(247, 147, 30, 0.1);
    border: 2px dashed #F7931E;
    border-radius: 10px;
    color: #F7931E;
    font-weight: 600;
    text-align: center;
}

.no-prices-message i {
    font-size: 1.2rem;
}

/* Fleet Booking Modal Styles */
.route-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px;
    margin: 10px 0;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.route-option:hover {
    background: #e3f2fd;
    border-color: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.route-info {
    flex: 1;
}

.route-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 5px;
}

.route-price {
    font-size: 1rem;
    color: #F7931E;
    font-weight: 700;
}

.route-arrow {
    font-size: 1.5rem;
    color: #1e3c72;
    font-weight: bold;
    margin-left: 15px;
}

.routes-list {
    max-height: 400px;
    overflow-y: auto;
}

/* Payment Methods Styles */
.payment-methods {
    margin-top: 15px;
}

.payment-item {
    display: flex;
    align-items: center;
    padding: 15px;
    background: #f8f9fa;
    border: 2px solid #e9ecef;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 10px;
}

.payment-item:hover {
    background: #e3f2fd;
    border-color: #1e3c72;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(30, 60, 114, 0.2);
}

.payment-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #1e3c72, #2a5298);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-left: 15px;
    flex-shrink: 0;
}

.payment-icon i {
    font-size: 1.5rem;
    color: white;
}

.payment-info {
    flex: 1;
}

.payment-info h4 {
    margin: 0 0 5px 0;
    color: #2c3e50;
    font-size: 1.1rem;
    font-weight: 600;
}

.payment-info p {
    margin: 0;
    color: #6c757d;
    font-size: 0.9rem;
}

.fleet-card .book-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    color: white;
    padding: 15px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    border: none;
    width: 100%;
}

.fleet-card .book-btn:hover {
    transform: scale(1.05);
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.3);
}

.fleet-card .book-btn i {
    font-size: 1.3rem;
}

/* Responsive Fleet Design */
@media (max-width: 1024px) {
    .fleet-grid {
        max-width: 100%;
        padding: 20px 10px;
    }
    
    .fleet-card {
        flex-direction: column;
        min-height: auto;
    }
    
    .car-gallery {
        flex: none;
        max-width: 100%;
        width: 100%;
    }
    
    .main-image {
        height: 300px;
    }
    
    .multiple-prices {
        grid-template-columns: repeat(2, 1fr);
        gap: 8px;
    }
}

@media (max-width: 768px) {
    .fleet-grid {
        gap: 20px;
        padding: 15px 5px;
    }
    
    .fleet-card {
        border-radius: 15px;
        min-height: auto;
    }
    
    .fleet-card .car-info {
        padding: 20px;
    }
    
    .fleet-card .car-info h3 {
        font-size: 1.5rem;
        margin-bottom: 8px;
    }
    
    .car-description {
        color: #2c3e50 !important;
        font-size: 0.9rem;
        margin-bottom: 12px;
    }
    
    .main-image {
        height: 250px;
    }
    
    .image-thumbnails {
        padding: 10px;
        gap: 8px;
    }
    
    .thumbnail {
        width: 40px;
        height: 40px;
    }
    
    .multiple-prices {
        grid-template-columns: repeat(2, 1fr);
        gap: 6px;
        margin: 12px 0;
    }
    
    .price-item {
        padding: 6px;
    }
    
    .price-route {
        font-size: 0.7rem;
        margin-bottom: 2px;
    }
    
    .price-value {
        font-size: 1rem;
    }
    
    .car-features {
        gap: 6px;
        margin-bottom: 12px;
    }
    
    .feature {
        font-size: 0.8rem;
        padding: 4px 8px;
    }
    
    .book-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .fleet-grid {
        gap: 15px;
        padding: 10px 5px;
    }
    
    .fleet-card .car-info {
        padding: 15px;
    }
    
    .fleet-card .car-info h3 {
        font-size: 1.3rem;
    }
    
    .car-description {
        color: #2c3e50 !important;
        font-size: 0.85rem;
    }
    
    .main-image {
        height: 220px;
    }
    
    .multiple-prices {
        grid-template-columns: 1fr;
        gap: 5px;
    }
    
    .price-item {
        padding: 8px;
    }
    
    .price-route {
        font-size: 0.75rem;
    }
    
    .price-value {
        font-size: 0.95rem;
    }
    
    .car-features {
        flex-direction: row;
        flex-wrap: wrap;
        align-items: center;
        gap: 6px;
    }
    
    .feature {
        font-size: 0.75rem;
        padding: 3px 6px;
    }
    
    .book-btn {
        padding: 8px 16px;
        font-size: 0.85rem;
        width: 100%;
    }
}

@media (max-width: 480px) {
    .hero {
        background: url('images/hero_iph.png') center center !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
    }
}

/* للهواتف الصغيرة جداً */
@media (max-width: 400px) {
    .hero {
        background: url('images/hero_iph.png') center center !important;
        background-size: cover !important;
        background-position: center !important;
        background-repeat: no-repeat !important;
        width: 100% !important;
        height: 100vh !important;
        min-height: 100vh !important;
    }
}
    
    .fleet-card .car-info h3 {
        font-size: 1.2rem;
    }
    
    .car-description {
        color: #2c3e50 !important;
        font-size: 0.8rem;
    }
    
    .main-image {
        height: 200px;
    }
    
    .image-thumbnails {
        padding: 8px;
        gap: 6px;
    }
    
    .thumbnail {
        width: 35px;
        height: 35px;
    }
    
    .price-route {
        font-size: 0.7rem;
    }
    
    .price-value {
        font-size: 0.9rem;
    }
}