/* City Pages Styles */
.city-hero {
    background: var(--brand-gradient);
    padding: 80px 0 60px;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.city-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(0, 194, 255, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 80% 80%, rgba(0, 194, 255, 0.1) 0%, transparent 50%);
    opacity: 0.8;
}

.city-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
}

.city-hero h1 {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
    color: white;
    position: relative;
    display: inline-block;
    padding-bottom: 1rem;
}

.city-hero h1::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 2px;
    background-color: #ff0000;
}

.city-hero .city-subtitle {
    font-size: 1.125rem;
    opacity: 0.95;
    line-height: 1.6;
    margin-bottom: 2rem;
    color: #d9c9c9;
}

.city-hero .city-features {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.city-hero .feature-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.city-hero .feature-badge i {
    font-size: 1.2rem;
}

/* City Content Section */
.city-content {
    padding: 80px 0;
    background: #f8f9fa;
}

.city-content .container {
    max-width: 1200px;
}

.city-intro {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.city-intro h2 {
    color: var(--brand);
    font-size: 2rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
}

.city-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #495057;
    margin-bottom: 1rem;
}

/* Products Grid for City Pages */
.city-products {
    margin-bottom: 4rem;
}

.city-products h2 {
    color: var(--brand);
    font-size: 2.2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.city-products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.city-product-card {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.city-product-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

.city-product-image {
    width: 100%;
    height: 220px;
    object-fit: cover;
    background: #f8f9fa;
}

.city-product-content {
    padding: 1.5rem;
}

.city-product-content h3 {
    font-size: 1.3rem;
    color: var(--brand);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.city-product-content p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.city-product-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--brand);
    color: white;
    padding: 0.75rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 500;
    transition: background 0.3s ease;
}

.city-product-btn:hover {
    background: #2d5a3d;
    color: white;
}

/* Why Choose Us Section */
.city-why-choose {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    margin-bottom: 3rem;
}

.city-why-choose h2 {
    color: var(--brand);
    font-size: 2rem;
    margin-bottom: 2rem;
    text-align: center;
    font-weight: 700;
}

.city-advantages {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
}

.city-advantage-item {
    text-align: center;
    padding: 1.5rem;
}

.city-advantage-icon {
    width: 70px;
    height: 70px;
    background: var(--brand-gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: white;
    font-size: 2rem;
}

.city-advantage-item h3 {
    color: var(--brand);
    font-size: 1.2rem;
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.city-advantage-item p {
    color: #6c757d;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Service Areas */
.city-service-areas {
    background: var(--brand-gradient);
    padding: 3rem;
    border-radius: 15px;
    color: white;
    margin-bottom: 3rem;
}

.city-service-areas p{
    color: #d9c9c9;
}

.city-service-areas h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    text-align: center;
    font-weight: 700;
    color: white;
}

.city-districts {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
    margin-top: 1.5rem;
}

.city-district-badge {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* CTA Section */
.city-cta {
    background: white;
    padding: 3rem;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    text-align: center;
}

.city-cta h2 {
    color: var(--brand);
    font-size: 2rem;
    margin-bottom: 1rem;
    font-weight: 700;
}

.city-cta p {
    color: #6c757d;
    font-size: 1.1rem;
    margin-bottom: 2rem;
    line-height: 1.8;
}

.city-cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.city-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.city-cta-btn.primary {
    background: var(--brand);
    color: white;
}

.city-cta-btn.primary:hover {
    background: #2d5a3d;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(26, 71, 42, 0.3);
    color: white;
}

.city-cta-btn.secondary {
    background: transparent;
    color: var(--brand);
    border: 2px solid var(--brand);
}

.city-cta-btn.secondary:hover {
    background: var(--brand);
    color: white;
}

/* Responsive Design */
@media (max-width: 768px) {
    .city-hero h1 {
        font-size: 2rem;
    }

    .city-hero .city-subtitle {
        font-size: 1.1rem;
    }

    .city-hero .city-features {
        gap: 1rem;
    }

    .city-intro,
    .city-why-choose,
    .city-service-areas,
    .city-cta {
        padding: 2rem 1.5rem;
    }

    .city-products-grid {
        grid-template-columns: 1fr;
    }

    .city-advantages {
        grid-template-columns: 1fr;
    }

    .city-cta-buttons {
        flex-direction: column;
    }

    .city-cta-btn {
        width: 100%;
        justify-content: center;
    }
}
