/* City Page Template Styles */
body.city-page {
    background: var(--dark-bg);
    color: var(--text-primary);
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

body.city-page main {
    display: block;
}

body.city-page .hero {
    position: relative;
    padding: 160px 0 120px;
    background: linear-gradient(135deg, rgba(10, 14, 26, 0.95) 0%, rgba(12, 18, 34, 0.98) 60%, rgba(63, 199, 211, 0.15) 100%) !important;
    overflow: hidden;
}

@media (min-width: 1200px) {
    body.city-page .hero {
        padding: 200px 0 140px;
    }
}

body.city-page .hero::before,
body.city-page .hero::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(0);
    opacity: 0.5;
}

body.city-page .hero::before {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(63, 199, 211, 0.18) 0%, transparent 70%);
    top: -200px;
    right: -150px;
}

body.city-page .hero::after {
    width: 480px;
    height: 480px;
    background: radial-gradient(circle, rgba(118, 75, 162, 0.18) 0%, transparent 70%);
    bottom: -180px;
    left: -120px;
}

body.city-page .hero .container {
    position: relative;
    z-index: 1;
    max-width: 1080px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2rem;
}

body.city-page .hero .cta-buttons .btn {
    padding: 1rem 2.5rem;
    font-size: 1.05rem;
}

body.city-page .hero h1 {
    font-size: clamp(2.75rem, 4vw, 4rem);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #5fe3e8 0%, #3fc7d3 40%, #a387f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    letter-spacing: -0.02em;
}

body.city-page .hero .hero-subtitle {
    color: var(--text-secondary);
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    max-width: 640px;
}

body.city-page .hero-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    background: rgba(20, 24, 38, 0.72);
    border: 1px solid rgba(63, 199, 211, 0.25);
    border-radius: 20px;
    padding: 1.5rem;
    margin-bottom: 2.5rem;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.25);
    max-width: 900px;
}

body.city-page .hero .feature {
    background: rgba(15, 18, 30, 0.85);
    border: 1px solid rgba(63, 199, 211, 0.4);
    box-shadow: inset 0 0 25px rgba(63, 199, 211, 0.08);
    color: var(--text-primary);
    padding: 0.85rem 1rem;
    border-radius: 14px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

body.city-page .hero .feature:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 30px rgba(63, 199, 211, 0.25);
}

body.city-page .cta-buttons {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

body.city-page .cta-buttons .btn-primary {
    min-width: 200px;
}

body.city-page .cta-buttons .btn-secondary {
    border-color: rgba(255, 255, 255, 0.4);
    color: var(--text-primary);
    background: transparent;
}

body.city-page .cta-buttons .btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

body.city-page section {
    padding: 100px 0;
}

body.city-page .service-areas,
body.city-page .reviews-section,
body.city-page .area-info {
    background: var(--dark-bg);
}

body.city-page .services-section,
body.city-page .why-choose {
    background: var(--dark-surface);
}

body.city-page .areas-grid,
body.city-page .services-grid,
body.city-page .reviews-grid,
body.city-page .benefits-grid {
    display: grid;
    gap: 2rem;
}

body.city-page .areas-grid,
body.city-page .services-grid,
body.city-page .reviews-grid,
body.city-page .benefits-grid {
    margin-top: 3rem;
}

body.city-page .service-areas h2,
body.city-page .services-section h2,
body.city-page .reviews-section h2,
body.city-page .why-choose h2,
body.city-page .area-info h2,
body.city-page .cta-section h2 {
    text-align: center;
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5fe3e8 0%, #36b0bb 45%, #a387f3 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

body.city-page .service-areas h2,
body.city-page .services-section h2,
body.city-page .reviews-section h2,
body.city-page .why-choose h2,
body.city-page .area-info h2 {
    margin-bottom: 2rem;
}

body.city-page .service-areas p,
body.city-page .services-section p,
body.city-page .reviews-section p,
body.city-page .why-choose p,
body.city-page .area-info p {
    color: var(--text-secondary);
}

body.city-page .areas-grid {
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
}

body.city-page .services-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

body.city-page .reviews-grid {
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

body.city-page .benefits-grid {
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

body.city-page .area-card,
body.city-page .service-card,
body.city-page .review-card,
body.city-page .benefit {
    background: linear-gradient(135deg, rgba(15, 18, 30, 0.95) 0%, rgba(20, 26, 40, 0.95) 100%);
    border: 1px solid rgba(63, 199, 211, 0.18);
    border-radius: 18px;
    padding: 2rem;
    box-shadow: 0 25px 45px rgba(0, 0, 0, 0.35);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
    position: relative;
    overflow: hidden;
}

body.city-page .area-card:hover,
body.city-page .service-card:hover,
body.city-page .review-card:hover,
body.city-page .benefit:hover {
    transform: translateY(-8px);
    border-color: rgba(95, 227, 232, 0.45);
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.45);
}

body.city-page .area-card::before,
body.city-page .service-card::before,
body.city-page .review-card::before,
body.city-page .benefit::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(95, 227, 232, 0.25), transparent 40%);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    pointer-events: none;
}

body.city-page .area-card h3,
body.city-page .service-card h3,
body.city-page .benefit h3 {
    color: var(--text-primary);
    margin-bottom: 0.75rem;
    font-size: 1.35rem;
}

body.city-page .service-card {
    text-align: center;
}

body.city-page .service-card p {
    margin: 0 auto;
}

body.city-page .area-card p,
body.city-page .service-card p,
body.city-page .benefit p,
body.city-page .review-card p,
body.city-page .coverage-info ul li,
body.city-page .coverage-info p,
body.city-page .local-info p {
    color: var(--text-secondary);
    line-height: 1.7;
}

body.city-page .service-card ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
    display: grid;
    gap: 0.75rem;
    text-align: left;
    max-width: 260px;
    margin-left: auto;
    margin-right: auto;
}

body.city-page .service-card ul li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-secondary);
}

body.city-page .service-card ul li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-color);
    font-size: 1.2rem;
    line-height: 1;
    top: 0.1rem;
}

body.city-page .service-icon,
body.city-page .benefit-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

body.city-page .service-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 14px;
    background: rgba(63, 199, 211, 0.15);
    border: 1px solid rgba(63, 199, 211, 0.3);
    margin: 0 auto 1.25rem auto;
}

body.city-page .benefit {
    text-align: center;
}

body.city-page .benefit-icon {
    margin: 0 auto 1rem auto;
}

body.city-page .review-card .stars {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: #facc15;
    letter-spacing: 0.12em;
}

body.city-page .review-card .reviewer {
    margin-top: 1.5rem;
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

body.city-page .area-details {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 3rem;
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.08) 0%, rgba(15, 18, 30, 0.92) 100%);
    border: 1px solid rgba(63, 199, 211, 0.2);
    border-radius: 22px;
    padding: 3rem;
    box-shadow: 0 35px 60px rgba(0, 0, 0, 0.35);
}

body.city-page .coverage-info ul {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem 0;
}

body.city-page .coverage-info li {
    padding: 0.65rem 0 0.65rem 1.75rem;
    position: relative;
}

body.city-page .coverage-info li::before {
    content: '✓';
    color: var(--primary-color);
    font-weight: bold;
    position: absolute;
    left: 0;
    top: 0.35rem;
}

body.city-page .coverage-info h3,
body.city-page .local-info h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

body.city-page .cta-section {
    background: linear-gradient(135deg, rgba(63, 199, 211, 0.15) 0%, rgba(118, 75, 162, 0.45) 100%) !important;
    padding: 120px 0 !important;
    text-align: center;
    border-top: 1px solid rgba(63, 199, 211, 0.3);
    border-bottom: 1px solid rgba(63, 199, 211, 0.3);
}

body.city-page .cta-section h2 {
    font-size: clamp(2.25rem, 4vw, 3.2rem);
    margin-bottom: 1.5rem;
}

body.city-page .cta-section p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
}

body.city-page .cta-section .cta-subtitle {
    font-size: 1.2rem;
    margin: 1.5rem 0;
    color: rgba(255, 255, 255, 0.85);
}

body.city-page .cta-section .cta-note {
    margin-top: 2rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: 1rem;
}

body.city-page .cta-section .cta-buttons {
    justify-content: center;
    margin: 2rem auto 0;
}

body.city-page .cta-section .btn-primary {
    box-shadow: 0 20px 40px rgba(95, 227, 232, 0.35);
}

body.city-page .cta-section .btn-outline-white {
    border-color: rgba(255, 255, 255, 0.65);
    color: white;
    background: transparent;
}

body.city-page .cta-section .btn-outline-white:hover {
    background: white;
    color: var(--dark-bg);
}

body.city-page .footer {
    background: var(--dark-surface);
    border-top: 1px solid rgba(63, 199, 211, 0.1);
}

@media (max-width: 1024px) {
    body.city-page .hero {
        padding: 140px 0 100px;
    }

    body.city-page .area-details {
        grid-template-columns: 1fr;
        padding: 2rem;
    }
}

@media (max-width: 768px) {
    body.city-page .hero {
        text-align: center;
    }

    body.city-page .hero-features {
        grid-template-columns: 1fr;
    }

    body.city-page .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    body.city-page section {
        padding: 80px 0;
    }
}
