* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

.mobile-optimized-main {
    width: 100%;
    overflow-x: hidden;
}

.floating-mobile-ctas {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    display: flex;
    background: linear-gradient(to top, rgba(0,0,0,0.9), rgba(0,0,0,0.8));
    backdrop-filter: blur(10px);
    padding: 10px;
    gap: 10px;
}

.floating-mobile-ctas a {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

.floating-call {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
}

.floating-whatsapp {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.pulse-ring {
    position: absolute;
    width: 30px;
    height: 30px;
    border: 3px solid rgba(255,255,255,0.5);
    border-radius: 50%;
    animation: pulse-ring 1.5s infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2); opacity: 0; }
}

.emergency-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255,0,0,0.9);
    color: white;
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 20px;
    animation: badge-pulse 2s infinite;
}

@keyframes badge-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.gradient-animated {
    background: linear-gradient(90deg, #FF6B6B, #4ECDC4, #FF6B6B);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradient-shift 3s linear infinite;
}

@keyframes gradient-shift {
    to { background-position: 200% center; }
}

.arabic-text {
    font-size: 0.8em;
    opacity: 0.9;
}

.smart-features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 15px;
    margin: 30px auto;
    max-width: 600px;
}

.feature-item {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 15px;
    border-radius: 15px;
    text-align: center;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-5px);
}

.feature-icon {
    display: block;
    font-size: 28px;
    margin-bottom: 5px;
}

.feature-text {
    font-size: 12px;
    font-weight: 600;
    color: white;
}

.smart-cta-group {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
    margin: 30px 0;
}

.smart-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 30px;
    border-radius: 15px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.primary-btn {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
}

.whatsapp-btn {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.secondary-btn {
    background: linear-gradient(135deg, #FFA500, #FFD700);
    color: white;
}

.smart-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.4);
}

.btn-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-label {
    font-size: 12px;
    opacity: 0.9;
}

.btn-number {
    font-size: 16px;
    font-weight: 700;
}

.btn-icon {
    font-size: 24px;
}

.btn-arrow {
    font-size: 18px;
}

.trust-slider {
    overflow: hidden;
    position: relative;
}

.trust-track {
    display: flex;
    animation: trust-scroll 20s linear infinite;
}

@keyframes trust-scroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 30px;
    white-space: nowrap;
}

.trust-icon {
    font-size: 24px;
}

.trust-text {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.services-swiper-container {
    position: relative;
    padding: 20px;
}

.service-modern-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    transition: all 0.3s;
    height: 100%;
}

.service-modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.service-image-wrapper {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.service-image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.service-modern-card:hover .service-image-wrapper img {
    transform: scale(1.1);
}

.service-overlay {
    position: absolute;
    top: 20px;
    right: 20px;
}

.service-badge {
    background: rgba(255,255,255,0.95);
    color: #333;
    padding: 8px 15px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
}

.service-content {
    padding: 30px;
}

.service-icon {
    font-size: 36px;
    margin-bottom: 15px;
}

.service-title {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #333;
}

.service-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.service-features {
    display: flex;
    gap: 10px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.feature-tag {
    background: #f0f0f0;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    color: #666;
}

.service-cta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 15px 20px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.service-cta:hover {
    transform: translateX(5px);
}

.cta-arrow {
    font-size: 18px;
}

/* ========== COVERAGE AREAS - WORKING VERSION ========== */

.interactive-map-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.map-areas-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    padding: 20px;
}

.map-area-card {
    background: white;
    border-radius: 24px;
    overflow: hidden;
    transition: all 0.4s ease;
    cursor: pointer;
    box-shadow: 0 10px 40px rgba(0,0,0,0.1);
    position: relative;
}

.map-area-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 25px 60px rgba(0,0,0,0.2);
}

.map-area-card.featured {
    border: 4px solid #FFD700;
    box-shadow: 0 15px 50px rgba(255,215,0,0.3);
}

.map-area-card.featured:hover {
    transform: translateY(-15px) scale(1.02);
    box-shadow: 0 30px 70px rgba(255,215,0,0.4);
}

.area-image-wrapper {
    position: relative;
    height: 220px;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

.area-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.6s ease;
}

.map-area-card:hover .area-background-image {
    transform: scale(1.15);
}

.area-image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0,0,0,0.2), rgba(0,0,0,0.6));
    transition: all 0.4s;
}

.featured-overlay {
    background: linear-gradient(135deg, rgba(255,107,107,0.4), rgba(78,205,196,0.5));
}

.area-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 12px;
    font-weight: 700;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    z-index: 2;
}

.featured-badge {
    background: linear-gradient(135deg, #FFD700, #FFA500);
    color: white;
}

.area-content {
    padding: 28px;
    position: relative;
}

.area-icon {
    font-size: 52px;
    margin-bottom: 16px;
    text-align: center;
    filter: drop-shadow(0 3px 6px rgba(0,0,0,0.15));
}

.area-name {
    font-size: 26px;
    font-weight: 800;
    margin-bottom: 18px;
    color: #1a1a1a;
    text-align: center;
}

.map-area-card.featured .area-name {
    background: linear-gradient(135deg, #FF6B6B, #4ECDC4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.area-locations {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 24px;
    justify-content: center;
}

.location-tag {
    background: linear-gradient(135deg, #f0f4ff, #e8eeff);
    padding: 8px 16px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 600;
    color: #333;
    border: 2px solid rgba(102,126,234,0.2);
    transition: all 0.3s;
}

.location-tag:hover {
    transform: translateY(-3px);
    border-color: #667eea;
    box-shadow: 0 5px 15px rgba(102,126,234,0.2);
}

.map-area-card.featured .location-tag {
    background: linear-gradient(135deg, #fff5f5, #ffebeb);
    border-color: rgba(255,107,107,0.3);
}

/* ========== TIME TEXT COLOR - BRIGHT RED ========== */
.location-tag b,
.area-locations b,
span.location-tag b {
    color: #FF0000 !important;
    font-weight: 900 !important;
    font-size: 14px !important;
    margin-left: 6px !important;
    text-shadow: 0 0 10px rgba(255,0,0,0.3) !important;
    display: inline-block !important;
}

.map-area-card.featured .location-tag b {
    color: #FFD700 !important;
    text-shadow: 0 0 15px rgba(255,215,0,0.5) !important;
}

/* ========== PREMIUM BUTTON STYLES ========== */
.area-cta {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    gap: 12px !important;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
    padding: 18px 32px !important;
    border-radius: 60px !important;
    text-decoration: none !important;
    font-weight: 700 !important;
    font-size: 15px !important;
    transition: all 0.4s ease !important;
    box-shadow: 0 10px 30px rgba(102,126,234,0.4) !important;
    position: relative !important;
    overflow: hidden !important;
    border: none !important;
}

.area-cta::before {
    content: '' !important;
    position: absolute !important;
    top: 0 !important;
    left: -100% !important;
    width: 100% !important;
    height: 100% !important;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent) !important;
    transition: left 0.6s !important;
}

.area-cta:hover::before {
    left: 100% !important;
}

.area-cta:hover {
    transform: translateY(-5px) scale(1.05) !important;
    box-shadow: 0 20px 50px rgba(102,126,234,0.6) !important;
}

.featured-cta {
    background: linear-gradient(135deg, #FF6B6B 0%, #4ECDC4 100%) !important;
    box-shadow: 0 10px 35px rgba(255,107,107,0.5) !important;
    animation: pulse-glow 2s ease-in-out infinite !important;
}

@keyframes pulse-glow {
    0%, 100% {
        box-shadow: 0 10px 35px rgba(255,107,107,0.5);
    }
    50% {
        box-shadow: 0 15px 45px rgba(255,107,107,0.8);
    }
}

.featured-cta:hover {
    box-shadow: 0 20px 60px rgba(255,107,107,0.7) !important;
}

.cta-icon {
    font-size: 20px !important;
    display: inline-block !important;
}

.cta-text {
    font-weight: 700 !important;
    display: inline-block !important;
}

.cta-arrow {
    font-size: 18px !important;
    font-weight: 700 !important;
    transition: transform 0.3s !important;
    display: inline-block !important;
}

.area-cta:hover .cta-arrow {
    transform: translateX(5px) !important;
}

.live-tracking-banner {
    display: none !important;
}

@media (max-width: 768px) {
    .map-areas-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .area-image-wrapper {
        height: 200px;
    }
    
    .area-content {
        padding: 24px;
    }
}

@media (max-width: 480px) {
    .location-tag {
        font-size: 12px;
        padding: 6px 12px;
    }
    
    .location-tag b {
        font-size: 13px !important;
    }
    
    .area-cta {
        padding: 14px 24px !important;
        font-size: 14px !important;
    }
}
}

.price-calculator-container {
    max-width: 1200px;
    margin: 0 auto;
}

.calculator-form {
    max-width: 600px;
    margin: 0 auto;
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
}

.calc-input-group {
    margin-bottom: 30px;
}

.calc-label {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    font-weight: 700;
    color: #333;
}

.label-icon {
    font-size: 24px;
}

.calc-select {
    width: 100%;
    padding: 15px;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-size: 16px;
    transition: all 0.3s;
}

.calc-select:focus {
    border-color: #667eea;
    outline: none;
}

.vehicle-type-grid,
.service-type-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    gap: 10px;
}

.vehicle-btn,
.service-type-btn {
    padding: 15px;
    border: 2px solid #e0e0e0;
    background: white;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s;
    text-align: center;
}

.vehicle-btn:hover,
.service-type-btn:hover {
    border-color: #667eea;
}

.vehicle-btn.active,
.service-type-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
}

.vehicle-icon {
    font-size: 24px;
    display: block;
    margin-bottom: 5px;
}

.price-result {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    padding: 25px;
    border-radius: 15px;
    text-align: center;
    margin-bottom: 20px;
}

.price-label {
    font-size: 16px;
    opacity: 0.9;
}

.price-value {
    font-size: 32px;
    font-weight: 800;
    display: block;
    margin-top: 10px;
}

.price-note {
    font-size: 12px;
    opacity: 0.8;
    margin-top: 10px;
}

.calculator-cta-group {
    display: flex;
    gap: 10px;
}

.calc-cta {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 15px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.calc-cta.primary {
    background: linear-gradient(135deg, #FF0000, #FF4444);
    color: white;
}

.calc-cta.secondary {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
}

.calc-cta:hover {
    transform: translateY(-3px);
}

/* ========== PREMIUM GALLERY - RECOVERY IN ACTION ========== */

.masonry-gallery-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 20px;
}

/* Filter Buttons - Enhanced */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-bottom: 40px;
    flex-wrap: wrap;
    padding: 0 20px;
}

.filter-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border: 2px solid rgba(102,126,234,0.2);
    background: white;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    font-weight: 600;
    font-size: 14px;
    color: #333;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
    position: relative;
    overflow: hidden;
}

.filter-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(102,126,234,0.1), transparent);
    transition: left 0.5s;
}

.filter-btn:hover::before {
    left: 100%;
}

.filter-btn:hover {
    border-color: #667eea;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(102,126,234,0.2);
}

.filter-btn.active {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border-color: transparent;
    transform: scale(1.05);
    box-shadow: 0 10px 30px rgba(102,126,234,0.4);
}

.filter-icon {
    font-size: 18px;
}

.filter-count {
    background: rgba(255,255,255,0.2);
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 11px;
    font-weight: 700;
}

.filter-btn.active .filter-count {
    background: rgba(255,255,255,0.3);
}

/* Premium Masonry Grid */
.masonry-grid.premium-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
    padding: 20px;
}

/* Gallery Items - 3D Effects */
.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transform-style: preserve-3d;
}

.gallery-item:hover {
    transform: translateY(-15px) rotateX(5deg) scale(1.02);
    box-shadow: 0 25px 60px rgba(0,0,0,0.25);
    z-index: 10;
}

.gallery-image-wrapper {
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: all 0.6s ease;
    filter: brightness(0.95) contrast(1.05);
}

.gallery-item:hover img {
    transform: scale(1.15) rotate(2deg);
    filter: brightness(1.1) contrast(1.1);
}

/* Gallery Overlay - Premium */
.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, 
        rgba(0,0,0,0.1) 0%,
        rgba(0,0,0,0.5) 50%,
        rgba(0,0,0,0.9) 100%);
    opacity: 0;
    transition: all 0.5s ease;
    display: flex;
    align-items: flex-end;
    padding: 25px;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.overlay-content {
    width: 100%;
    transform: translateY(30px);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-item:hover .overlay-content {
    transform: translateY(0);
}

/* Gallery Badge */
.gallery-badge {
    display: inline-block;
    background: rgba(255,255,255,0.95);
    backdrop-filter: blur(10px);
    color: #333;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: badge-float 2s ease-in-out infinite;
}

@keyframes badge-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.gallery-category {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.gallery-title {
    display: block;
    font-size: 18px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

/* View Full Button */
.view-full-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    padding: 10px 20px;
    border-radius: 30px;
    font-weight: 700;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 5px 20px rgba(102,126,234,0.4);
}

.view-full-btn:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 30px rgba(102,126,234,0.6);
}

.view-icon {
    font-size: 16px;
    transition: transform 0.3s;
}

.view-full-btn:hover .view-icon {
    transform: scale(1.2);
}

/* Corner Accent - Decorative */
.image-corner-accent {
    position: absolute;
    top: 0;
    right: 0;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 60px 60px 0;
    border-color: transparent rgba(255,255,255,0.15) transparent transparent;
    transition: all 0.3s;
}

.gallery-item:hover .image-corner-accent {
    border-color: transparent rgba(255,215,0,0.4) transparent transparent;
    border-width: 0 80px 80px 0;
}

/* Lightbox Modal */
.gallery-lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    backdrop-filter: blur(20px);
    z-index: 99999;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.gallery-lightbox.active {
    display: flex;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.lightbox-content {
    max-width: 90%;
    max-height: 90vh;
    position: relative;
    animation: zoomIn 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes zoomIn {
    from {
        transform: scale(0.5);
        opacity: 0;
    }
    to {
        transform: scale(1);
        opacity: 1;
    }
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: 15px;
    box-shadow: 0 20px 80px rgba(0,0,0,0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: fixed;
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    color: white;
    border: 2px solid rgba(255,255,255,0.2);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-close {
    top: 30px;
    right: 30px;
}

.lightbox-prev {
    left: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 30px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: white;
    color: #333;
    transform: scale(1.1);
}

.lightbox-info {
    text-align: center;
    margin-top: 20px;
    color: white;
}

.lightbox-info h3 {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 5px;
}

.lightbox-info p {
    font-size: 16px;
    opacity: 0.8;
}

/* Loading Animation */
.gallery-item img[loading="lazy"] {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: loading 1.5s infinite;
}

@keyframes loading {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .masonry-grid.premium-gallery {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 768px) {
    .masonry-grid.premium-gallery {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
        padding: 15px;
    }
    
    .gallery-filters {
        gap: 8px;
    }
    
    .filter-btn {
        padding: 10px 16px;
        font-size: 13px;
    }
    
    .filter-icon {
        font-size: 16px;
    }
}

@media (max-width: 480px) {
    .masonry-grid.premium-gallery {
        grid-template-columns: 1fr;
    }
    
    .gallery-filters {
        flex-direction: column;
        gap: 10px;
    }
    
    .filter-btn {
        width: 100%;
        justify-content: center;
    }
    
    .lightbox-prev,
    .lightbox-next {
        width: 40px;
        height: 40px;
        font-size: 20px;
    }
    
    .lightbox-close {
        top: 20px;
        right: 20px;
        width: 40px;
        height: 40px;
    }
}

/* Print Styles */
@media print {
    .gallery-filters,
    .view-full-btn {
        display: none;
    }
}

.testimonials-slider-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 20px;
}

.testimonial-card.modern {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    position: relative;
}

.quote-icon {
    font-size: 60px;
    color: #e0e0e0;
    position: absolute;
    top: 20px;
    right: 30px;
    line-height: 1;
}

.testimonial-text {
    font-size: 16px;
    line-height: 1.8;
    color: #333;
    margin: 0;
}

.testimonial-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 20px;
}

.customer-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.customer-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    flex-shrink: 0;
}

.customer-name {
    font-size: 16px;
    font-weight: 700;
    margin: 0 0 5px 0;
}

.customer-service {
    font-size: 14px;
    color: #666;
    margin: 0;
}

.rating {
    text-align: right;
}

.stars {
    display: block;
    font-size: 18px;
    margin-bottom: 5px;
}

.rating-text {
    font-size: 14px;
    font-weight: 700;
    color: #333;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-question {
    width: 100%;
    padding: 20px;
    background: white;
    border: none;
    display: flex;
    align-items: center;
    gap: 15px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    transition: all 0.3s;
    text-align: left;
}

.faq-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.faq-text {
    flex: 1;
}

.faq-toggle {
    font-size: 24px;
    font-weight: 700;
    flex-shrink: 0;
}

.faq-item.active .faq-question {
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
}

.faq-answer {
    padding: 0 20px;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s;
}

.faq-item.active .faq-answer {
    padding: 20px;
    max-height: 500px;
}

.faq-answer p {
    line-height: 1.8;
    color: #666;
    margin: 0;
}

.live-tracking-banner {
    background: rgba(255,255,255,0.95);
    border-radius: 15px;
    padding: 20px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.tracking-icon {
    font-size: 24px;
}

.tracking-text {
    font-weight: 600;
    color: #333;
}

.tracking-cta {
    background: linear-gradient(135deg, #25D366, #128C7E);
    color: white;
    padding: 10px 20px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
}

.tracking-cta:hover {
    transform: scale(1.05);
}

.cta-modern-container {
    text-align: center;
}

.cta-content {
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(36px, 8vw, 56px);
    font-weight: 900;
    color: white;
    margin-bottom: 10px;
}

.cta-subtitle {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    margin-bottom: 30px;
}

.cta-features {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.cta-feature {
    background: rgba(255,255,255,0.2);
    padding: 10px 20px;
    border-radius: 50px;
    color: white;
    font-weight: 600;
}

.cta-buttons-group {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    background: white;
    color: #333;
    padding: 20px 40px;
    border-radius: 60px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
}

.cta-btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}

.btn-content {
    display: flex;
    align-items: center;
    gap: 15px;
}

.btn-details {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.btn-action {
    font-size: 14px;
    opacity: 0.8;
}

.btn-info {
    font-size: 18px;
    font-weight: 700;
}

.cta-alt {
    color: rgba(255,255,255,0.9);
    margin-top: 20px;
    font-size: 16px;
}

.scroll-indicator {
    text-align: center;
    animation: bounce 2s infinite;
    margin-top: 30px;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.mouse-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255,255,255,0.5);
    border-radius: 25px;
    display: block;
    margin: 0 auto 10px;
    position: relative;
}

.mouse-icon::after {
    content: '';
    width: 4px;
    height: 10px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll-wheel 1.5s infinite;
}

@keyframes scroll-wheel {
    0% { opacity: 1; top: 10px; }
    100% { opacity: 0; top: 25px; }
}

.scroll-text {
    color: rgba(255,255,255,0.8);
    font-size: 12px;
    font-weight: 600;
}

.swiper-nav {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.swiper-prev,
.swiper-next {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: white;
    border: none;
    font-size: 24px;
    cursor: pointer;
    transition: all 0.3s;
}

.swiper-prev:hover,
.swiper-next:hover {
    transform: scale(1.1);
}

.swiper-pagination-bullet {
    background: #667eea;
    opacity: 0.5;
}

.swiper-pagination-bullet-active {
    background: #764ba2;
    opacity: 1;
}

@media (max-width: 768px) {
    .smart-features-grid { grid-template-columns: repeat(2, 1fr); }
    .smart-cta-group { flex-direction: column; align-items: stretch; }
    .smart-btn { width: 100%; margin: 5px 0; }
    .map-areas-grid { grid-template-columns: 1fr; }
    .vehicle-type-grid, .service-type-grid { grid-template-columns: repeat(2, 1fr); }
    .masonry-grid { grid-template-columns: 1fr; }
    .cta-buttons-group { flex-direction: column; width: 100%; padding: 0 20px; }
    .cta-btn { width: 100%; justify-content: center; }
    .calculator-cta-group { flex-direction: column; }
}

@media (max-width: 480px) {
    .floating-mobile-ctas { padding: 8px; }
    .floating-mobile-ctas a { padding: 12px 8px; font-size: 14px; }
    .trust-item { padding: 0 15px; }
    .service-content { padding: 20px; }
    .calculator-form { padding: 20px; }
    .testimonial-footer { flex-direction: column; gap: 15px; text-align: center; }
    .customer-info { flex-direction: column; }
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.animated-entrance {
    animation: fadeInUp 0.8s ease-out;
}

::-webkit-scrollbar { width: 8px; height: 8px; }
::-webkit-scrollbar-track { background: #f1f1f1; }
::-webkit-scrollbar-thumb { background: linear-gradient(135deg, #667eea 0%, #764ba2 100%); border-radius: 4px; }

.elementor-widget-html { overflow: visible; }
.elementor-section { overflow: visible; }
