  /* Custom Styles */
    
        * {
            font-family: 'Tajawal', sans-serif;
        }
        
        :root {
            --primary-color: #153052;
            --secondary-color: #2d91cf;
        }
        
        /* Custom scrollbar */
        ::-webkit-scrollbar {
            width: 10px;
        }
        
        ::-webkit-scrollbar-track {
            background: #f1f1f1;
        }
        
        ::-webkit-scrollbar-thumb {
            background: var(--secondary-color);
            border-radius: 5px;
        }
        
        ::-webkit-scrollbar-thumb:hover {
            background: var(--primary-color);
        }
        
        /* Hero Background Slideshow */
        .hero-bg {
            background: linear-gradient(135deg, rgba(21,48,82,0.85) 0%, rgba(45,145,207,0.6) 100%),
                        url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
            background-size: cover;
            background-position: center;
            animation: backgroundSlide 20s infinite;
        }
        
        @keyframes backgroundSlide {
            0%, 100% { 
                background-image: linear-gradient(135deg, rgba(21,48,82,0.85) 0%, rgba(45,145,207,0.6) 100%),
                                  url('https://images.unsplash.com/photo-1581578731548-c64695cc6952?w=1920&q=80');
            }
            33% { 
                background-image: linear-gradient(135deg, rgba(21,48,82,0.85) 0%, rgba(45,145,207,0.6) 100%),
                                  url('https://images.unsplash.com/photo-1628177142898-93e36e4e3a50?w=1920&q=80');
            }
            66% { 
                background-image: linear-gradient(135deg, rgba(21,48,82,0.85) 0%, rgba(45,145,207,0.6) 100%),
                                  url('https://images.unsplash.com/photo-1527515637462-cff94eecc1ac?w=1920&q=80');
            }
        }
        
        /* Typing Animation */
        .typing-text {
            border-left: 3px solid var(--secondary-color);
            padding-right: 10px;
            white-space: nowrap;
            overflow: hidden;
            display: inline-block;
        }
        
        /* Sticky Header */
        .header-scrolled {
            background: rgba(21, 48, 82, 0.98) !important;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
        }
        
        /* Service Card Hover */
        .service-card {
            transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
        }
        
        .service-card:hover {
            transform: translateY(-15px) scale(1.03);
            box-shadow: 0 25px 50px rgba(45, 145, 207, 0.3);
        }
        
        /* Button Hover Effects */
        .btn-primary {
            background: linear-gradient(135deg, var(--secondary-color), var(--primary-color));
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        
        .btn-primary:before {
            content: '';
            position: absolute;
            top: 0;
            left: -100%;
            width: 100%;
            height: 100%;
            background: rgba(255, 255, 255, 0.2);
            transition: left 0.3s ease;
        }
        
        .btn-primary:hover:before {
            left: 100%;
        }
        
        .btn-primary:hover {
            transform: translateY(-2px);
            box-shadow: 0 10px 25px rgba(45, 145, 207, 0.4);
        }
        
        /* WhatsApp Button */
        .whatsapp-float {
            position: fixed;
            width: 60px;
            height: 60px;
            bottom: 30px;
            left: 30px;
            background-color: #25d366;
            color: #FFF;
            border-radius: 50%;
            text-align: center;
            font-size: 30px;
            box-shadow: 2px 2px 20px rgba(0, 0, 0, 0.2);
            z-index: 1000;
            transition: all 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
        }
        
        .whatsapp-float:hover {
            transform: scale(1.1);
            box-shadow: 2px 2px 30px rgba(37, 211, 102, 0.5);
        }
        
        /* Counter Animation */
        .counter {
            font-size: 3rem;
            font-weight: 800;
            color: var(--secondary-color);
        }
        
        /* FAQ Accordion */
        .faq-item {
            transition: all 0.3s ease;
        }
        
        .faq-item.active {
            background: linear-gradient(135deg, rgba(21,48,82,0.05), rgba(45,145,207,0.05));
        }
        
        /* Testimonial Slider */
        .testimonial-card {
            background: white;
            border-radius: 15px;
            padding: 30px;
            box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
            transition: all 0.3s ease;
        }
        
        .testimonial-card:hover {
            transform: translateY(-5px);
            box-shadow: 0 15px 40px rgba(45, 145, 207, 0.2);
        }
        
        /* Image Gallery Lightbox */
        .gallery-item {
            position: relative;
            overflow: hidden;
            border-radius: 10px;
            cursor: pointer;
        }
        
        .gallery-item img {
            transition: transform 0.5s ease;
        }
        
        .gallery-item:hover img {
            transform: scale(1.15);
        }
        
        .gallery-overlay {
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(135deg, rgba(21,48,82,0.9), rgba(45,145,207,0.8));
            opacity: 0;
            transition: opacity 0.3s ease;
            display: flex;
            align-items: center;
            justify-content: center;
            color: white;
            font-size: 1.5rem;
        }
        
        .gallery-item:hover .gallery-overlay {
            opacity: 1;
        }
        
        /* Lightbox Modal */
        .lightbox {
            display: none;
            position: fixed;
            z-index: 9999;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: rgba(0, 0, 0, 0.95);
            align-items: center;
            justify-content: center;
        }
        
        .lightbox.active {
            display: flex;
        }
        
        .lightbox img {
            max-width: 90%;
            max-height: 90%;
            object-fit: contain;
        }
        
        /* Parallax Effect */
        .parallax {
            background-attachment: fixed;
            background-position: center;
            background-repeat: no-repeat;
            background-size: cover;
        }
        
        /* Custom Tailwind Colors */
        .bg-primary {
            background-color: var(--primary-color);
        }
        
        .bg-secondary {
            background-color: var(--secondary-color);
        }
        
        .text-primary {
            color: var(--primary-color);
        }
        
        .text-secondary {
            color: var(--secondary-color);
        }
        
        .border-primary {
            border-color: var(--primary-color);
        }
        
        .border-secondary {
            border-color: var(--secondary-color);
        }

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

@keyframes bounceX {
    0%, 100% {
        transform: translateX(0);
    }
    50% {
        transform: translateX(-5px);
    }
}

.animate-fadeIn {
    animation: fadeIn 0.5s ease-out forwards;
    opacity: 0;
}

.animate-bounce-x {
    animation: bounceX 1s infinite;
}

.service-card {
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

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

/* تنسيق الأيقونات */
.fa-check-circle {
    animation-duration: 2s;
    animation-iteration-count: infinite;
}

/* تأثيرات للصور عند التمرير */
.group:hover img {
    filter: brightness(1.1);
}

/* تحسين التدرج اللوني */
.bg-gradient-to-br {
    background-size: 200% 200%;
}

.group:hover .bg-gradient-to-br {
    background-position: 100% 100%;
}

/* Why Choose Us Section style */

/* Animation Keyframes */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 99, 235, 0.2);
    }
    50% {
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.3), 0 0 30px rgba(16, 185, 129, 0.2);
    }
}

@keyframes widthPulse {
    0%, 100% { width: 192px; opacity: 1; }
    50% { width: 256px; opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

@keyframes orbitLight {
    from { transform: rotate(0deg) translateX(40px) rotate(0deg); }
    to { transform: rotate(360deg) translateX(40px) rotate(-360deg); }
}

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

@keyframes sparkleLight {
    0% { transform: translateX(-100%) rotate(0deg); }
    100% { transform: translateX(100%) rotate(180deg); }
}

@keyframes counterLight {
    from { width: 0; }
    to { width: var(--progress); }
}

/* Animation Classes */
.animate-text-glow {
    animation: textGlow 3s ease-in-out infinite;
}

.animate-width-pulse {
    animation: widthPulse 2s ease-in-out infinite;
}

/* Feature Cards - Light Theme */
.feature-card-light {
    background: white;
    border: 1px solid #e5e7eb;
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.feature-card-light:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: #3b82f6;
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.15);
}

.feature-card-light::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.feature-card-light:hover::before {
    transform: translateX(100%);
}

.feature-icon-wrapper-light {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
}

.feature-icon-inner-light {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
    transition: all 0.3s ease;
    border: 2px solid #e5e7eb;
}

.feature-card-light:hover .feature-icon-inner-light {
    transform: scale(1.1);
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.1);
}

.feature-orbits-light {
    position: absolute;
    width: 100%;
    height: 100%;
}

.orbit-light {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 1px dashed #d1d5db;
    border-radius: 50%;
    animation: orbitLight 20s linear infinite;
}

.orbit-1-light {
    width: 90px;
    height: 90px;
}

.orbit-2-light {
    width: 110px;
    height: 110px;
    animation-delay: -10s;
}

.feature-title-light {
    font-size: 1.5rem;
    font-weight: bold;
    color: #1f2937;
    margin-bottom: 0.75rem;
}

.feature-desc-light {
    color: #6b7280;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-badge-light {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f3f4f6;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    border: 1px solid #e5e7eb;
}

.badge-green-light {
    background: #f0fdf4;
    border-color: #bbf7d0;
}

.badge-yellow-light {
    background: #fefce8;
    border-color: #fef08a;
}

/* Statistics Section - Light Theme */
.stats-section-light {
    position: relative;
}

.stats-background-light {
    background: linear-gradient(135deg, #f8fafc, #f1f5f9);
    border: 1px solid #e2e8f0;
    border-radius: 20px;
    padding: 3rem;
    position: relative;
    overflow: hidden;
}

.stats-background-light::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(37, 99, 235, 0.03) 50%, transparent 70%);
    animation: shimmer 3s infinite linear;
    transform: rotate(45deg);
}

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

.stats-grid-light {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.stat-card-light {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.5rem;
    background: white;
    border-radius: 15px;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.stat-card-light:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

.stat-icon-light {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    border: 2px solid #e5e7eb;
}

.stat-label-light {
    color: #6b7280;
    font-size: 1rem;
    margin-top: 0.25rem;
}

.stat-progress-light {
    margin-top: 0.75rem;
}

.progress-bar-light {
    width: 100%;
    height: 4px;
    background: #e5e7eb;
    border-radius: 2px;
    overflow: hidden;
}

.progress-fill-light {
    height: 100%;
    background: linear-gradient(90deg, #3b82f6, #10b981);
    border-radius: 2px;
    animation: counterLight 2s ease-out forwards;
}

/* Trust Badges - Light Theme */
.trust-badges-light {
    position: relative;
    z-index: 1;
}

.trust-badge-light {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 1rem 1.5rem;
    border-radius: 50px;
    font-weight: 500;
    transition: all 0.3s ease;
    border: 1px solid #e5e7eb;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.trust-badge-light:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
    border-color: #3b82f6;
}

/* CTA Button - Light Theme */
.cta-button-light {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: linear-gradient(135deg, #3b82f6, #10b981);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: 50px;
    font-size: 1.25rem;
    font-weight: bold;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 10px 25px rgba(37, 99, 235, 0.2);
}

.glow-button-light {
    animation: pulseLight 2s infinite;
}

.cta-button-light:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.3);
}

.cta-sparkles-light {
    position: absolute;
    inset: 0;
    overflow: hidden;
    border-radius: 50px;
}

.sparkle-light {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.4) 50%, transparent 70%);
    animation: sparkleLight 2s infinite linear;
    transform: rotate(45deg);
}

.sparkle-light:nth-child(2) {
    animation-delay: 0.5s;
}

.sparkle-light:nth-child(3) {
    animation-delay: 1s;
}

/* Floating Particles - Light Theme */
.floating-particles-light div {
    position: absolute;
    width: 2px;
    height: 2px;
    background: rgba(37, 99, 235, 0.2);
    border-radius: 50%;
    animation: float 10s infinite linear;
}

/* Grid Pattern */
.grid-pattern {
    background-image: 
        linear-gradient(rgba(37, 99, 235, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(37, 99, 235, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    background-position: center center;
    width: 100%;
    height: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .stats-grid-light {
        grid-template-columns: 1fr;
    }
    
    .trust-badges-light {
        flex-direction: column;
        align-items: center;
    }
    
    .trust-badge-light {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
    
    .feature-card-light {
        padding: 1.5rem 1rem;
    }
    
    .cta-button-light {
        padding: 1.25rem 2rem;
        font-size: 1.1rem;
    }
}

/* All Neighborhoods Modal styles */

/* Service Areas Section Styles */
.neighborhood-cards-container {
    max-height: 400px;
    overflow-y: auto;
    padding-right: 8px;
}

.neighborhood-cards-container::-webkit-scrollbar {
    width: 6px;
}

.neighborhood-cards-container::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 10px;
}

.neighborhood-cards-container::-webkit-scrollbar-thumb {
    background: linear-gradient(to bottom, var(--primary), var(--secondary));
    border-radius: 10px;
}

.neighborhood-card {
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 12px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 60px;
}

.neighborhood-card:hover {
    border-color: var(--primary);
    transform: translateX(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.neighborhood-card.selected {
    border-color: var(--secondary);
    background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(52, 211, 153, 0.1));
    transform: scale(1.02);
}

.neighborhood-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.neighborhood-card:hover .neighborhood-icon {
    transform: rotate(15deg) scale(1.1);
}

.neighborhood-name {
    font-weight: 600;
    color: #374151;
}

.neighborhood-info {
    font-size: 0.75rem;
    color: #6b7280;
    display: flex;
    align-items: center;
    gap: 4px;
}

/* Statistics Bar */
.stats-bar {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
    overflow: hidden;
}

.stats-bar::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.1) 50%, transparent 70%);
    animation: shimmer 3s infinite linear;
    transform: rotate(45deg);
}

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

.stat-item {
    position: relative;
    z-index: 1;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: bold;
    margin-bottom: 0.25rem;
}

.stat-label {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* CTA Buttons */
.cta-button-primary, .cta-button-secondary {
    padding: 1rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    flex: 1;
    min-width: 200px;
}

.cta-button-primary {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: black;
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

.cta-button-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(37, 99, 235, 0.3);
}

.cta-button-secondary {
    background: white;
    color: var(--primary);
    border: 2px solid var(--primary);
}

.cta-button-secondary:hover {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: black;
    transform: translateY(-3px);
    border-color: transparent;
}

/* Interactive Map */
.interactive-map {
    position: relative;
}

.map-visualization {
    position: relative;
    background: linear-gradient(135deg, #f0f9ff, #e0f2fe);
}

.central-dot {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 40px rgba(37, 99, 235, 0.4);
}

.ripple-1, .ripple-2, .ripple-3 {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: ripple 3s infinite linear;
}

.ripple-1 {
    width: 120px;
    height: 120px;
    animation-delay: 0s;
}

.ripple-2 {
    width: 160px;
    height: 160px;
    animation-delay: 1s;
}

.ripple-3 {
    width: 200px;
    height: 200px;
    animation-delay: 2s;
}

@keyframes ripple {
    0% {
        width: 80px;
        height: 80px;
        opacity: 1;
    }
    100% {
        width: 300px;
        height: 300px;
        opacity: 0;
    }
}

.neighborhood-dots {
    position: absolute;
    inset: 0;
}

.neighborhood-dot {
    position: absolute;
    width: 20px;
    height: 20px;
    background: white;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border: 3px solid white;
}

.neighborhood-dot.covered {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.neighborhood-dot.popular {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
    animation: glow 2s infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 10px rgba(245, 158, 11, 0.5);
    }
    to {
        box-shadow: 0 0 20px rgba(245, 158, 11, 0.8);
    }
}

.neighborhood-dot:hover {
    transform: scale(1.5);
    z-index: 10;
}

.neighborhood-dot::after {
    content: attr(data-name);
    position: absolute;
    top: -30px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.neighborhood-dot:hover::after {
    opacity: 1;
}

.map-controls {
    display: flex;
    gap: 0.5rem;
}

.map-control-btn {
    width: 40px;
    height: 40px;
    background: white;
    border-radius: 10px;
    border: none;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

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

.selected-area-info {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(100px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.info-row {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
}

.btn-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-book:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.2);
}

/* Map Legend */
.map-legend {
    display: flex;
    gap: 1rem;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.legend-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}

.legend-dot.covered {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.legend-dot.popular {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.legend-text {
    font-size: 0.875rem;
    opacity: 0.9;
}

/* Quick Facts */
.quick-facts {
    margin-top: 1.5rem;
}

.fact-card {
    background: white;
    border-radius: 12px;
    padding: 1rem;
    display: flex;
    align-items: center;
    gap: 1rem;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.fact-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.fact-icon {
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 90%;
    max-height: 90vh;
    overflow-y: auto;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.9) translateY(-20px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ef4444;
}

/* Map Dots Animation */
.map-dots-container {
    position: absolute;
    inset: 0;
}

.map-dots-container div {
    position: absolute;
    width: 4px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    animation: float 10s infinite linear;
}

@keyframes float {
    0% {
        transform: translateY(0) rotate(0deg);
        opacity: 0;
    }
    10% {
        opacity: 1;
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100vh) rotate(360deg);
        opacity: 0;
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .grid-cols-2 {
        grid-template-columns: 1fr;
    }
    
    .neighborhood-cards-container {
        max-height: 300px;
    }
    
    .map-visualization {
        height: 300px;
    }
    
    .cta-button-primary, .cta-button-secondary {
        min-width: auto;
    }
}

/* Animation Keyframes */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.5), 0 0 30px rgba(16, 185, 129, 0.3);
    }
}

.animate-text-glow {
    animation: textGlow 3s ease-in-out infinite;
}

/* Contact Modal Styles */


.contact-card {
    position: relative;
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    overflow: hidden;
    height: 100%;
    border: 2px solid transparent;
}

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

.contact-card.phone-card:hover {
    border-color: #2563eb;
}

.contact-card.whatsapp-card:hover {
    border-color: #25D366;
}

.contact-card.location-card:hover {
    border-color: #10b981;
}

.contact-card.services-card:hover {
    border-color: #8b5cf6;
}

.contact-card-inner {
    position: relative;
    z-index: 2;
}

.contact-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.phone-card .contact-icon {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
    color: white;
}

.whatsapp-card .contact-icon {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.location-card .contact-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
    color: white;
}

.services-card .contact-icon {
    background: linear-gradient(135deg, #8b5cf6, #a78bfa);
    color: white;
}

.contact-card-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, currentColor, transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-card:hover .contact-card-wave {
    opacity: 0.5;
}

/* Phone Number Styling */
.phone-number-group {
    margin: 1rem 0;
}

.phone-number-main {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #2563eb;
    padding: 0.75rem 1rem;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    transition: all 0.3s ease;
    text-decoration: none;
}

.phone-number-main:hover {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.05);
}

.phone-options {
    display: flex;
    gap: 0.5rem;
    margin-top: 0.75rem;
    justify-content: center;
}

.phone-option {
    padding: 0.5rem 1rem;
    background: #f3f4f6;
    border-radius: 8px;
    border: none;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.phone-option:hover {
    background: #2563eb;
    color: white;
}

/* WhatsApp Styling */
.whatsapp-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #25D366;
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 12px;
    font-weight: bold;
    text-decoration: none;
    transition: all 0.3s ease;
    margin: 1rem 0;
}

.whatsapp-button:hover {
    background: #128C7E;
    transform: scale(1.05);
    box-shadow: 0 10px 20px rgba(37, 211, 102, 0.3);
}

.whatsapp-features {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.feature-tag {
    background: rgba(37, 211, 102, 0.1);
    color: #128C7E;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

/* Location Styling */
.location-info {
    margin: 1rem 0;
}

.coverage-areas {
    margin-top: 1rem;
}

.areas-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.area-tag {
    background: rgba(16, 185, 129, 0.1);
    color: #10b981;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
}

/* Quick Services */
.quick-services {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin: 1rem 0;
}

.service-quick {
    padding: 0.75rem 1rem;
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.2);
    border-radius: 12px;
    color: #8b5cf6;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    justify-content: center;
}

.service-quick:hover {
    background: rgba(139, 92, 246, 0.2);
    border-color: #8b5cf6;
    transform: translateX(-5px);
}

/* Communication Channels */
.communication-channel {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
}

.communication-channel:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.channel-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f3f4f6;
}

.channel-header i {
    color: #2563eb;
    font-size: 2rem;
}

.call-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.call-option:hover {
    background: rgba(37, 99, 235, 0.05);
    transform: translateX(5px);
}

.call-option.highlighted {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1), rgba(59, 130, 246, 0.05));
    border: 2px solid rgba(37, 99, 235, 0.2);
}

.call-icon {
    width: 50px;
    height: 50px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #2563eb;
    font-size: 1.25rem;
}

/* Messaging Apps */
.messaging-apps {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.messaging-app {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.messaging-app:hover {
    transform: translateX(5px);
}

.whatsapp-app {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
}

.sms-app {
    background: rgba(99, 102, 241, 0.1);
    border: 2px solid rgba(99, 102, 241, 0.2);
}

.email-app {
    background: rgba(245, 158, 11, 0.1);
    border: 2px solid rgba(245, 158, 11, 0.2);
}

.app-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.whatsapp-app .app-icon {
    background: #25D366;
    color: white;
}

.sms-app .app-icon {
    background: #6366f1;
    color: white;
}

.email-app .app-icon {
    background: #f59e0b;
    color: white;
}

.app-badge {
    background: #25D366;
    color: white;
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    margin-top: 0.5rem;
    display: inline-block;
}

/* Working Hours */
.working-hours {
    margin-bottom: 2rem;
}

.time-slot {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e5e7eb;
}

.time-slot.highlighted {
    background: rgba(16, 185, 129, 0.1);
    padding: 0.75rem 1rem;
    border-radius: 12px;
    border: 2px solid rgba(16, 185, 129, 0.2);
    margin: 0.5rem 0;
}

.quick-info {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem 0;
}

/* Service Quick Selection */
.service-quick-selection {
    background: white;
    border-radius: 20px;
    padding: 3rem;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
    margin-top: 3rem;
}

.service-buttons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
}

.service-button {
    padding: 1.5rem 1rem;
    background: white;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    color: #4b5563;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.service-button:hover {
    border-color: #2563eb;
    color: #2563eb;
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(37, 99, 235, 0.1);
}

.service-button i {
    font-size: 2rem;
    color: #2563eb;
}

/* Modal Styles */
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    backdrop-filter: blur(5px);
}

.modal-overlay.hidden {
    display: none;
}

.modal-content {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    max-width: 500px;
    width: 90%;
    animation: modalSlide 0.3s ease;
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
}

.modal-close {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: #9ca3af;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #ef4444;
}

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

.contact-option {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-option:hover {
    transform: translateX(10px);
}

.call-option {
    background: rgba(37, 99, 235, 0.1);
    border: 2px solid rgba(37, 99, 235, 0.2);
    color: #2563eb;
}

.whatsapp-option {
    background: rgba(37, 211, 102, 0.1);
    border: 2px solid rgba(37, 211, 102, 0.2);
    color: #128C7E;
}

.callback-option {
    background: rgba(139, 92, 246, 0.1);
    border: 2px solid rgba(139, 92, 246, 0.2);
    color: #8b5cf6;
    cursor: pointer;
    width: 100%;
}

/* Responsive Design */
@media (max-width: 768px) {
    .service-buttons-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .communication-channel {
        margin-bottom: 1.5rem;
    }
    
    .contact-card {
        padding: 1.5rem;
    }
    
    .phone-number-main {
        font-size: 1.25rem;
    }
}

/* Animation Keyframes */
@keyframes textGlow {
    0%, 100% {
        text-shadow: 0 0 10px rgba(37, 99, 235, 0.3);
    }
    50% {
        text-shadow: 0 0 20px rgba(37, 99, 235, 0.5);
    }
}

.animate-text-glow {
    animation: textGlow 2s ease-in-out infinite;
}
