.construction-months {
    padding: 5rem 0;
    /* background: #f8f9fa; */
}

.construction-sidebar {
    position: sticky;
    top: 100px;
    z-index: 10;
}

.city-construction-slider-item {
    position: relative;
    margin-bottom: 20px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
}

.construction-sidebar-item h3 {
    font-size: 36px;
    font-weight: 600;
    color: #151515;
    margin-bottom: 2rem;
}

.city-construction-slider-item-title {
    position: absolute;
}

.city-construction-slider-item-title h3 {
    font-size: 24px;
    font-weight: 600;
    color: #151515;
}

.city-construction-slider-item img {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    margin-bottom: 20px;
    object-fit: cover;
}

.city-construction-swiper-pagination {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
}





.construction-months .title {
    font-size: 42px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.construction-months .title span {
    color: #ED2939;
}

.construction-months .city-construction-item img {
    width: 100%;
    height: 380px;
    border-radius: 24px;
    margin-bottom: 20px;
    object-fit: cover;
}

/* Construction Intro */
.construction-intro {
    padding: 80px 0;
    background: #f8f9fa;
}

.construction-intro .title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
}

.construction-intro .description {
    font-size: 18px;
    line-height: 1.8;
    color: #5a6c7d;
    max-width: 800px;
    margin: 0 auto;
}

/* Construction Gallery */
.construction-gallery {
    padding: 80px 0;
    background: white;
}

.construction-image-card {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    height: 280px;
}

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

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

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

.construction-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0, 0, 0, 0.8));
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.construction-image-card:hover .construction-overlay {
    transform: translateY(0);
}

.construction-overlay h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 5px;
}

.construction-overlay p {
    margin: 0;
    font-size: 14px;
    opacity: 0.9;
}

/* Construction Updates */
.construction-updates {
    padding: 80px 0;
    background: #f8f9fa;
}

.construction-updates .title {
    font-size: 36px;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 50px;
}

.update-card {
    background: white;
    border-radius: 12px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    height: 100%;
    border: 1px solid #e9ecef;
}

.update-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
    border-color: #e74c3c;
}

.update-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(45deg, #e74c3c, #c0392b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: transform 0.3s ease;
}

.update-card:hover .update-icon {
    transform: scale(1.1);
}

.update-icon i {
    font-size: 28px;
    color: white;
}

.update-card h4 {
    font-size: 20px;
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 15px;
}

.update-card p {
    color: #5a6c7d;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 20px;
}

.update-link {
    color: #e74c3c;
    text-decoration: none;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.update-link:hover {
    color: #c0392b;
    text-decoration: none;
}

.update-link i {
    transition: transform 0.3s ease;
}

.update-link:hover i {
    transform: translateX(3px);
}

/* Construction Stats */
.construction-stats {
    padding: 80px 0;
    background: linear-gradient(135deg, #2c3e50 0%, #34495e 100%);
    color: white;
}

.stat-item {
    padding: 20px;
}

.stat-item h3 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 10px;
    color: #e74c3c;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.stat-item p {
    font-size: 16px;
    font-weight: 500;
    margin: 0;
    color: #bdc3c7;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Responsive Design */
@media (max-width: 768px) {
    .hero-section-content h1 {
        font-size: 32px;
    }
    
    .hero-section-content ul {
        flex-direction: column;
        gap: 10px;
    }
    
    .hero-section-content-arrow {
        transform: rotate(90deg);
    }
    
    .construction-intro .title,
    .construction-updates .title {
        font-size: 28px;
    }
    
    .construction-intro .description {
        font-size: 16px;
    }
    
    .construction-image-card {
        height: 220px;
        margin-bottom: 20px;
    }
    
    .construction-overlay {
        transform: translateY(0);
        background: rgba(0, 0, 0, 0.7);
    }
    
    .stat-item h3 {
        font-size: 36px;
    }
    
    .update-card {
        margin-bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero {
        padding: 100px 0 60px;
    }
    
    .hero-section-content h1 {
        font-size: 28px;
    }
    
    .construction-intro,
    .construction-gallery,
    .construction-updates,
    .construction-stats {
        padding: 60px 0;
    }
    
    .construction-intro .title,
    .construction-updates .title {
        font-size: 24px;
    }
    
    .construction-image-card {
        height: 200px;
    }
    
    .update-card {
        padding: 20px;
    }
    
    .stat-item h3 {
        font-size: 32px;
    }
}

/* Animation for counter */
.counter {
    display: inline-block;
    transition: all 0.3s ease;
}

/* Hover effects for better UX */
.construction-image-card,
.update-card {
    cursor: pointer;
}

/* Loading animation for images */
.construction-image-card img {
    animation: fadeIn 0.6s ease-in-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: scale(0.95);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
} 