/* City Page Specific Hero Section Styles */
.city-hero {
    background: linear-gradient(135deg, 
        rgba(30, 58, 138, 0.95) 0%, 
        rgba(30, 64, 175, 0.9) 50%, 
        rgba(23, 37, 84, 0.85) 100%),
    url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="citypattern" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><rect fill="%23ffffff" fill-opacity="0.05" x="0" y="0" width="100" height="100"/><circle cx="50" cy="50" r="2" fill="%2393c5fd" fill-opacity="0.1"/></pattern></defs><rect fill="url(%23citypattern)" x="0" y="0" width="1200" height="800"/></svg>');
    position: relative;
    overflow: hidden;
    padding: 3rem 0 2rem;
    min-height: 450px;
    display: flex;
    align-items: center;
    color: white;
    margin-top: 80px; /* Account for fixed header */
}

.city-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.city-hero-text {
    animation: city-fadeInUp 0.8s ease-out;
    position: relative;
    z-index: 2;
}

.city-hero-badge {
    background: #3b82f6;
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-weight: 600;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    animation: city-float 3s ease-in-out infinite;
}

.city-hero-title {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    line-height: 1.1;
}

.city-hero-highlight {
    color: #93c5fd;
    display: block;
    font-size: 3.5rem;
    margin-top: 0.5rem;

}

.city-hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    line-height: 1.6;
    opacity: 0.95;
    max-width: 600px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    padding: 1.5rem;
    border-radius: 1rem;
    border-left: 4px solid #60a5fa;
}

.city-hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.city-hero-btn-primary {
    background: linear-gradient(45deg, #3b82f6, #2563eb);
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.4);
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.city-hero-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(59, 130, 246, 0.6);
    background: linear-gradient(45deg, #2563eb, #1d4ed8);
}

.city-hero-btn-secondary {
    background: transparent;
    color: white;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    border: 2px solid white;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.city-hero-btn-secondary:hover {
    background: white;
    color: #2563eb;
}

.city-hero-image {
    position: relative;
    animation: city-slideInRight 0.8s ease-out;
}

.city-hero-image-container {
    position: relative;
    border-radius: 1rem;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
    border: 3px solid rgba(255, 255, 255, 0.3);
}

.city-hero-image-container img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.city-hero-image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 1.5rem;
    text-align: center;
}

.city-hero-badge-image {
    background: #3b82f6;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-weight: 600;
    display: inline-block;
    font-size: 0.9rem;
}

.city-floating-badge-primary {
    position: absolute;
    top: -20px;
    right: -10px;
    background: #3b82f6;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(5deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: city-float 4s ease-in-out infinite;
}

.city-floating-badge-secondary {
    position: absolute;
    bottom: 50px;
    left: -20px;
    background: #10b981;
    color: white;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    transform: rotate(-3deg);
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
    animation: city-float 3s ease-in-out infinite 1s;
}

.city-hero-bg-element-primary {
    position: absolute;
    top: 10%;
    right: 10%;
    width: 100px;
    height: 100px;
    background: rgba(59, 130, 246, 0.1);
    border-radius: 50%;
    animation: city-float 6s ease-in-out infinite;
}

.city-hero-bg-element-secondary {
    position: absolute;
    bottom: 20%;
    left: 5%;
    width: 60px;
    height: 60px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: 50%;
    animation: city-float 4s ease-in-out infinite 0.5s;
}

/* City Hero Animations */
@keyframes city-float {
    0%, 100% { transform: translateY(0px) rotate(0deg); }
    50% { transform: translateY(-10px) rotate(5deg); }
}

@keyframes city-fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes city-slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Responsive adjustments for city hero */
@media (max-width: 768px) {
    .city-hero {
        margin-top: 70px;
        padding: 2rem 0 1.5rem;
        min-height: 400px;
    }
    
    .city-hero-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .city-hero-title {
        font-size: 2rem;
    }
    
    .city-hero-highlight {
        font-size: 2.25rem;
    }
    
    .city-hero-description {
        font-size: 1.125rem;
        padding: 1rem;
    }
    
    .city-hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .city-hero-btn-primary,
    .city-hero-btn-secondary {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        justify-content: center;
    }
    
    .city-floating-badge-primary,
    .city-floating-badge-secondary {
        display: none;
    }
    
    .city-hero-image-container img {
        height: 250px;
    }
}

@media (max-width: 480px) {
    .city-hero {
        min-height: 350px;
        padding: 1.5rem 0 1rem;
        margin-top: 60px;
    }
    
    .city-hero-title {
        font-size: 1.75rem;
    }
    
    .city-hero-highlight {
        font-size: 2rem;
    }
    
    .city-hero-badge {
        font-size: 0.875rem;
        padding: 0.5rem 1rem;
    }
    
    .city-hero-image-container img {
        height: 200px;
    }
}
/* Why Choose Us Section */
.why-choose {
    padding: 4rem 0; /* Reduced padding */
    background: var(--gray-light);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 1.5rem; /* Reduced gap */
}

.feature {
    text-align: center;
    padding: 1.5rem; /* Reduced padding */
}

.feature-icon {
    width: 60px;
    height: 60px;
    background: rgba(37, 99, 235, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem; /* Reduced margin */
    color: var(--primary-blue);
    font-size: 1.5rem;
}

.feature h3 {
    font-size: 1.125rem; /* Reduced font size */
    margin-bottom: 0.75rem; /* Reduced margin */
    color: var(--gray-dark);
}

.feature p {
    color: var(--gray-medium);
    font-size: 0.9rem; /* Reduced font size */
}
