/* ═══════════════════════════════════════════════════════════════
   CITY PAGE SPECIFIC STYLES
   ═══════════════════════════════════════════════════════════════ */

/* City Hero Section */
.city-hero {
    background-color: #206132;
    position: relative;
    z-index: 10;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    overflow: visible;
    padding-top: 120px;
    height: 400px;
}

/* 3D pop-out hölgy kép */
.city-hero-woman {
    position: absolute;
    right: 6%;
    bottom: -50px;
    height: 80%;
    width: auto;
    object-fit: contain;
    object-position: bottom;
    z-index: 20;
    pointer-events: none;
    filter: drop-shadow(-8px 16px 24px rgba(0, 0, 0, 0.35));
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: left;
    color: var(--text);
    padding: 2rem 18rem 0;
    max-width: 1400px;
    width: 100%;
}

.hero-content h1 {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fff, var(--primary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.breadcrumb-nav {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.5rem;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.breadcrumb-nav a {
    color: var(--primary);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-nav a:hover {
    color: #fff;
}

/* Service Cards */
.service-number {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 40px;
    height: 40px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.125rem;
}

.service-icon-wrapper {
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 200, 83, 0.1), rgba(0, 200, 83, 0.5));
    border: 2px solid rgba(0, 200, 83, 0.2);
    border-radius: 50%;
    padding: 1rem;
}

.service-icon-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.service-price {
    font-size: 1rem;
    color: var(--text-secondary);
    margin: 1rem 0;
}

.price-highlight {
    color: var(--primary);
    font-weight: 700;
    font-size: 1.25rem;
}

.service-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--glass-border);
    font-size: 0.9rem;
    color: var(--text-secondary);
}

/* Benefits Grid */
.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.benefit-card {
    text-align: center;
    padding: 2rem;
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
}

.benefit-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: var(--text);
}

.benefit-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

/* Timeline */
.timeline {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.timeline-item {
    position: relative;
    padding: 2rem;
    text-align: center;
}

.timeline-number {
    position: absolute;
    top: -1rem;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--bg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(0, 200, 83, 0.3);
}

.timeline-icon {
    font-size: 3rem;
    margin: 1rem 0;
}

.timeline-item h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.timeline-item p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Pricing & Map */
.pricing-map-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.map-wrapper {
    padding: 0;
    overflow: hidden;
}

.pricing-wrapper .glass-card {
    padding: 2rem;
}

.pricing-wrapper h3 {
    font-size: 1.75rem;
    margin: 1rem 0;
    color: var(--text);
}

.pricing-wrapper h3 span {
    color: var(--primary);
}

.pricing-list {
    margin: 2rem 0;
}

.pricing-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--glass);
    border-radius: 12px;
    border: 1px solid var(--glass-border);
}

.pricing-icon {
    color: var(--primary);
    font-size: 1.25rem;
    font-weight: 700;
}

.pricing-item p {
    margin: 0;
    color: var(--text);
}

.cta-center {
    text-align: center;
    margin-top: 3rem;
}

/* Section Badge */
.section-badge {
    display: inline-block;
    background: var(--glass);
    border: 1px solid var(--primary);
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

/* Responsive */
@media (max-width: 1200px) {
    .hero-content {
        padding: 2rem 8rem 0;
    }
}

@media (max-width: 1024px) {
    .pricing-map-grid {
        grid-template-columns: 1fr;
    }

    .hero-content {
        padding: 2rem 3rem 0;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .timeline {
        grid-template-columns: 1fr;
    }

    .benefits-grid {
        grid-template-columns: 1fr;
    }

    /* Footer - 2 oszlop tableten */
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-container {
        padding: 40px 20px;
    }
}

@media (max-width: 768px) {
    /* Hero kép elrejtése mobilon */
    .city-hero-woman {
        display: none;
    }

    .city-hero {
        height: auto;
        min-height: 180px;
        padding-top: 90px;
        padding-bottom: 2rem;
        overflow: hidden;
    }

    .hero-content {
        padding: 1.5rem 1.5rem 0;
    }

    .hero-content h1 {
        font-size: clamp(1.75rem, 6vw, 2.5rem);
    }
}

@media (max-width: 480px) {
    .hero-content {
        padding: 1.25rem 1rem 0;
    }

    /* Footer - 1 oszlop mobilon */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col {
        text-align: center;
    }

    .footer-col ul {
        padding: 0;
    }

    .footer-container {
        padding: 30px 15px;
    }

    .social-links {
        justify-content: center;
    }
}