/* ============================================
   AL SHATTEH AUTO SERVICES STYLES
   ============================================ */

/* Facilities Section */
.facilities-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.facility-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.facility-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.facility-card .facility-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.facility-card .facility-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.facility-card h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    padding: 20px;
    padding-bottom: 10px;
    margin: 0;
}

.facility-card p {
    color: #718096;
    font-size: 14px;
    padding: 0 20px 20px;
    margin: 0;
}

/* Core Values Section */
.core-values {
    padding: 80px 0;
    background: white;
}

.value-box {
    text-align: center;
    padding: 30px 20px;
    background: #f8f9fa;
    border-radius: 12px;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    height: 100%;
    border: 2px solid transparent;
}

.value-box:hover {
    background: white;
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.15);
    transform: translateY(-5px);
    border-color: #0056b3;
}

.value-box .value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.value-box .value-icon i {
    font-size: 35px;
    color: white;
}

.value-box h4 {
    font-size: 18px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
    line-height: 1.4;
}

.value-box p {
    color: #718096;
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

/* Location Map */
.location-map {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.map-placeholder {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.map-placeholder img {
    width: 100%;
    height: auto;
    display: block;
}

/* Vision & Mission - Al Shatteh specific */
.vision-mission {
    padding: 80px 0;
    background: white;
}

.vm-card {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
    padding: 40px;
    border-radius: 15px;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.vm-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    animation: float 15s infinite;
}

.vm-card .vm-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.vm-card .vm-icon i {
    font-size: 40px;
    color: white;
}

.vm-card h3 {
    font-size: 28px;
    font-weight: 700;
    color: white;
    margin-bottom: 20px;
}

.vm-card p {
    font-size: 16px;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.95);
    margin: 0;
}

/* Contact Info Banner - Al Shatteh specific */
.contact-info-banner {
    padding: 40px 0;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
}

.contact-info-item {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 12px;
    margin-bottom: 15px;
}

.contact-info-item i {
    font-size: 32px;
    color: white;
    min-width: 40px;
}

.contact-info-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: white;
    margin-bottom: 5px;
}

.contact-info-item p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
    line-height: 1.5;
}

/* Services Grid - Al Shatteh specific */
.services-grid {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.service-card-image {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 5px 20px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
    height: 100%;
}

.service-card-image:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 86, 179, 0.2);
}

.service-card-image .service-image {
    width: 100%;
    height: 220px;
    overflow: hidden;
    position: relative;
}

.service-card-image .service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

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

.service-card-image .service-content {
    padding: 25px;
}

.service-card-image .service-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}

.service-card-image .service-icon i {
    font-size: 28px;
    color: white;
}

.service-card-image h4 {
    font-size: 20px;
    font-weight: 700;
    color: #2d3748;
    margin-bottom: 12px;
}

.service-card-image p {
    color: #718096;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* CTA Section - Al Shatteh specific */
.cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #2d3748 0%, #1a202c 100%);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    color: white;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.cta-buttons .btn-primary,
.cta-buttons .btn-secondary {
    padding: 15px 35px;
    font-size: 16px;
    font-weight: 600;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.cta-buttons .btn-primary {
    background: linear-gradient(135deg, #0056b3 0%, #003d82 100%);
    color: white;
}

.cta-buttons .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 86, 179, 0.4);
}

.cta-buttons .btn-secondary {
    background: transparent;
    border: 2px solid white;
    color: white;
}

.cta-buttons .btn-secondary:hover {
    background: white;
    color: #2d3748;
}

/* Responsive Design */
@media (max-width: 768px) {
    .facilities-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .facility-card .facility-image {
        height: 200px;
    }

    .service-card-image .service-image {
        height: 180px;
    }

    .cta-content h2 {
        font-size: 28px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .cta-buttons .btn-primary,
    .cta-buttons .btn-secondary {
        width: 100%;
        justify-content: center;
    }

    .value-box {
        margin-bottom: 20px;
    }
}