/* standort.css – Styles for all location subpages */

/* Hero */
.standort-hero {
    background: var(--navy);
    padding-top: 130px;
    color: white;
    overflow: hidden;
}

.standort-hero-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 50px;
    align-items: center;
    padding-bottom: 60px;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    margin-bottom: 20px;
    opacity: 0.7;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb i {
    width: 14px;
}

.standort-hero-text h1 {
    font-size: 2.6rem;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
}

.standort-hero-text p {
    font-size: 1.05rem;
    opacity: 0.8;
    line-height: 1.7;
    margin-bottom: 30px;
    max-width: 560px;
}

.hero-actions {
    display: flex;
    gap: 15px;
    align-items: center;
    flex-wrap: wrap;
}

.btn-tel {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: white;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    padding: 12px 22px;
    border-radius: 8px;
    transition: border-color 0.2s;
}

.btn-tel i {
    width: 16px;
}

.btn-tel:hover {
    border-color: white;
}

.standort-hero-img {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.standort-hero-img img {
    width: 100%;
    height: 380px;
    object-fit: cover;
    display: block;
}

/* Hero Stats (New for all pages) */
.hero-stats {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 30px 0;
    margin-top: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.15);
}

.stat-item {
    text-align: center;
}

.stat-item .val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    display: block;
    margin-bottom: 4px;
}

.stat-item .lab {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    white-space: nowrap;
}

@media (max-width: 900px) {
    .hero-stats {
        flex-wrap: wrap;
        gap: 20px 30px;
        padding: 25px 20px;
    }

    .stat-item .val {
        font-size: 1.5rem;
    }

    .stat-item .lab {
        font-size: 0.75rem;
    }
}

/* Market Section */
.market-section {
    padding: 80px 0;
    background: white;
}

.market-grid {
    display: grid;
    grid-template-columns: 1.3fr 0.7fr;
    gap: 60px;
    align-items: start;
}

.market-text h2 {
    font-size: 2rem;
    font-weight: 800;
    color: var(--navy);
    margin-bottom: 20px;
}

.market-text p {
    color: var(--text-muted);
    line-height: 1.7;
}

.market-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 25px;
}

.tag {
    background: #f0f2f5;
    color: var(--navy);
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

.market-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.stat-box {
    background: #f8fafc;
    color: var(--navy);
    padding: 35px 20px;
    border-radius: 16px;
    text-align: center;
    border: 1px solid #f1f5f9;
}

.stat-val {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--navy);
    display: block;
    margin-bottom: 8px;
}

.stat-lab {
    font-size: 0.9rem;
    color: #64748b;
    font-weight: 500;
}

/* Trust Section */
.trust-section {
    padding: 80px 0;
    background: #f8fafc;
}

.trust-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 50px;
}

.trust-card {
    background: white;
    padding: 35px 25px;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    border: 1px solid #f0f0f0;
    transition: transform 0.3s;
}

.trust-card:hover {
    transform: translateY(-5px);
}

.trust-icon {
    width: 56px;
    height: 56px;
    background: rgba(22, 40, 69, 0.07);
    color: var(--navy);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 20px;
    font-size: 1.4rem;
}

.trust-icon i {
    width: 28px;
}

.trust-card h3 {
    font-size: 1.15rem;
    color: var(--navy);
    margin-bottom: 12px;
}

.trust-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Situation Grid */
.situation-section {
    padding: 80px 0;
    background: white;
}

.situation-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 50px;
}

.situation-card {
    background: white;
    padding: 30px;
    border-radius: 16px;
    border: 1px solid #e2e8f0;
    transition: all 0.3s ease;
    cursor: pointer;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.situation-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    border-color: #cbd5e1;
}

.sit-icon {
    display: none;
}

.sit-icon i {
    display: none;
}

.situation-card h4 {
    font-size: 1.25rem;
    color: var(--navy);
    margin-bottom: 12px;
    font-weight: 700;
}

.situation-card p {
    font-size: 0.95rem;
    color: #64748b;
    line-height: 1.6;
}

/* Process Section */
.process-section {
    padding: 100px 0;
    background: var(--navy);
    color: white;
}

.process-section .section-title h2 {
    color: white;
}

.process-section .section-title p {
    color: rgba(255, 255, 255, 0.8);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-top: 60px;
}

.process-step {
    text-align: center;
}

.step-number {
    width: 65px;
    height: 65px;
    background: transparent;
    border: 2px solid var(--primary);
    color: var(--primary);
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 700;
    margin: 0 auto 25px;
}

.process-step h4 {
    font-size: 1.2rem;
    color: white;
    margin-bottom: 12px;
    font-weight: 700;
}

.process-step p {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.6;
}

@media (max-width: 992px) {
    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px 20px;
    }
}

@media (max-width: 600px) {
    .process-steps {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

/* FAQ Section */
.faq-section {
    padding: 80px 0;
    background: white;
}

.faq-list {
    max-width: 800px;
    margin: 50px auto 0;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.faq-item {
    border: 1px solid #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
}

.faq-question {
    width: 100%;
    text-align: left;
    padding: 20px 25px;
    background: white;
    border: none;
    cursor: pointer;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    transition: background 0.2s;
}

.faq-question:hover {
    background: #f8fafc;
}

.faq-question i {
    width: 18px;
    transition: transform 0.3s;
    flex-shrink: 0;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
    padding: 0 25px;
    background: #f8fafc;
}

.faq-answer p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
}

.faq-item.open .faq-answer {
    max-height: 300px;
    padding: 20px 25px;
}

.faq-item.open .faq-question i {
    transform: rotate(180deg);
}

/* More Locations */
.more-locations {
    padding: 60px 0;
    background: #f8fafc;
    text-align: center;
}

.more-locations h3 {
    font-size: 1.4rem;
    color: var(--navy);
    margin-bottom: 30px;
    font-weight: 700;
}

.location-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 1000px;
    margin: 0 auto;
}

.location-tags a {
    display: flex;
    align-items: center;
    gap: 10px;
    background: white;
    color: var(--navy);
    padding: 10px 24px;
    border-radius: 50px;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border: 1px solid #e2e8f0;
    transition: all 0.25s ease;
    box-shadow: 0 2px 4px rgba(0,0,0,0.02);
}

.location-tags a i {
    width: 16px;
    height: 16px;
    color: var(--navy);
    opacity: 0.8;
}

.location-tags a:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(22, 40, 69, 0.15);
}

.location-tags a:hover i {
    color: white;
    opacity: 1;
}

.location-tags a:hover {
    background: var(--navy);
    color: white;
    border-color: var(--navy);
}

/* Active nav link */
.nav-links a.active,
.dropbtn.active {
    color: var(--primary) !important;
}

/* Responsive */
@media (max-width: 900px) {
    .standort-hero {
        padding-top: 80px;
        text-align: center;
    }
    .standort-hero-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        padding-bottom: 30px;
    }

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

    .standort-hero-text p {
        margin-left: auto;
        margin-right: auto;
        font-size: 1rem;
    }

    .hero-actions {
        justify-content: center;
    }

    .standort-hero-img {
        display: block;
        /* Show image but make it smaller/stacked */
        max-width: 100%;
        margin: 0 auto;
    }

    .standort-hero-img img {
        height: 250px;
    }

    .market-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

    .market-stats {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

    .trust-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    .situation-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .situation-card {
        padding: 25px;
    }

    .situation-card h4 {
        font-size: 1.15rem;
    }

    .process-steps {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .process-step {
        max-width: 100%;
        width: 100%;
    }

    .process-arrow {
        display: none;
    }

    .hero-usp-row {
        gap: 15px;
        justify-content: center;
        padding: 0 10px;
    }
}

@media (max-width: 600px) {
    .standort-hero-text h1 {
        font-size: 1.7rem;
    }

    .section-title h2 {
        font-size: 1.6rem;
    }
}

/* Preparation Tip Section */
.preparation-tip {
    padding: 30px 0;
    background: #f8fafc;
}

.tip-box {
    background: #fff;
    border: 1px solid #e2e8f0;
    border-left: 4px solid var(--primary);
    padding: 24px 30px;
    border-radius: 8px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
}

.tip-content {
    display: flex;
    align-items: center;
    gap: 20px;
}

.tip-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.tip-content i {
    color: var(--primary);
    width: 28px;
    height: 28px;
    flex-shrink: 0;
}

.tip-content p {
    font-size: 1.1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
    margin: 0;
}

.tip-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--primary);
    color: var(--navy);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 16px;
    border-radius: 4px;
    width: fit-content;
}

.tip-link:hover {
    background: var(--primary-hover);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212, 158, 23, 0.2);
}

.tip-link i {
    width: 18px !important;
    height: 18px !important;
}

@media (max-width: 768px) {
    .tip-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .tip-text-wrapper {
        align-items: center;
    }
    
    .tip-box {
        padding: 20px;
    }

    .tip-content p {
        font-size: 1rem;
    }
}