.badge-container {
    position: relative;
}

.section-dark-text {
    color: white;
}

.section-dark-text h2 {
    color: white;
}

.contact-status-container {
    text-align: center;
    padding: 2rem;
}

.contact-status-icon {
    font-size: 4rem;
    margin-bottom: 1rem;
}

.contact-status-success {
    color: #22c55e;
}

.contact-status-error {
    color: #dc2626;
}

.contact-status-text {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
}

.contact-fallback-links {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.contact-fallback-link {
    font-size: 1.2rem;
}

.contact-retry-container {
    margin-top: 2rem;
}

.promo-empty-container {
    padding: 60px 20px;
}

.promo-empty-icon {
    margin: 0 auto 20px;
}

.promo-empty-title {
    margin-bottom: 16px;
    color: var(--src-dark);
}

.promo-empty-text {
    color: var(--src-gray);
    margin-bottom: 32px;
}

.promotion-card-clickable {
    cursor: pointer;
}

.service-detail-cta-container {
    margin: 2rem 0;
    text-align: center;
}

.service-detail-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.service-card-link-inline {
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    font-size: 0.875rem;
    font-weight: 500;
}

.service-card-link-inline .link-arrow {
    margin-left: 0.25rem;
}

.promotion-badge-inline {
    position: relative;
    top: 0;
    right: 0;
    display: inline-flex;
    align-items: center;
    margin-left: 1rem;
    cursor: pointer;
}

.about-link-bold {
    font-weight: 900;
}

.header-logo-responsive {
    height: clamp(2.5rem, 10vw, 3rem);
}

.menu-dropdown-elevated {
    z-index: 60 !important;
}

.gtm-noscript-iframe {
    display: none;
    visibility: hidden;
}

.services-help-section {
    padding: 1.5rem 0 0;
    background-color: var(--src-light);
}

.services-help-box {
    text-align: center;
    background-color: white;
    border-radius: 0.75rem;
    padding: 1.5rem 2rem;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.08);
    max-width: 700px;
    margin: 0 auto;
}

.services-help-text {
    font-size: 1.15rem;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.25rem;
}

.services-help-subtext {
    font-size: 1rem;
    color: #666;
    margin-bottom: 1rem;
}

.services-help-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.services-help-phone-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #333;
    font-weight: 600;
    font-size: 1.1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.services-help-phone-link:hover {
    color: var(--src-red);
}

.services-help-phone-icon {
    display: inline-flex;
    align-items: center;
    opacity: 0;
    transition: opacity 0.2s;
}

.services-help-phone-link:hover .services-help-phone-icon {
    opacity: 1;
}

.services-help-contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--src-red);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    transition: color 0.2s;
}

.services-help-contact-link:hover {
    color: #cc0808;
}

@media (max-width: 480px) {
    .services-help-box {
        padding: 1.25rem 1rem;
    }

    .services-help-text {
        font-size: 1rem;
    }

    .services-help-actions {
        flex-direction: column;
        gap: 0.75rem;
    }
}

/* ============================================================
   Services Decision Guide
   ============================================================ */

.services-guide-section {
    padding: 3rem 0;
    background: #f8f8f8;
}

.services-guide-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    text-align: center;
}

.services-guide-header-main {
    flex: 1;
}

.services-guide-title {
    font-size: 1.75rem;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 0.4rem;
}

.services-guide-subtitle {
    font-size: 1rem;
    color: #555;
}

.services-guide-toggle {
    display: none;
    align-items: center;
    gap: 0.4rem;
    flex-shrink: 0;
    background: none;
    border: 1.5px solid #1a1a1a;
    border-radius: 6px;
    padding: 0.5rem 0.85rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    transition: border-color 0.2s, color 0.2s;
    white-space: nowrap;
}

.services-guide-toggle:hover {
    border-color: var(--src-red);
    color: var(--src-red);
}

.services-header-guide-link {
    display: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--src-red);
    text-decoration: none;
    margin-top: 0.75rem;
    transition: color 0.2s;
}

.services-header-guide-link:hover {
    color: #cc0808;
    text-decoration: underline;
}

.services-guide-chevron {
    transition: transform 0.25s ease;
    flex-shrink: 0;
}

.services-guide-chevron.open {
    transform: rotate(180deg);
}

.services-guide-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.services-guide-card {
    background: #fff;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    padding: 1.25rem 1.25rem 1rem;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.services-guide-card:hover {
    border-color: var(--src-red);
    box-shadow: 0 2px 8px rgba(254, 10, 10, 0.08);
}

.services-guide-situation {
    font-size: 0.95rem;
    font-weight: 600;
    color: #1a1a1a;
    line-height: 1.45;
    flex: 1;
    margin: 0;
}

.services-guide-links {
    display: flex;
    flex-direction: column;
    gap: 0.35rem;
}

.services-guide-link {
    display: inline-flex;
    align-items: center;
    gap: 0.3rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--src-red);
    text-decoration: none;
    transition: color 0.2s;
}

.services-guide-link:hover {
    color: #cc0808;
}

.services-guide-link svg {
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .services-guide-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-guide-header {
        text-align: left;
    }

    .services-guide-toggle {
        display: flex;
    }

    .services-header-guide-link {
        display: inline-block;
    }

    .services-guide-section--collapsed {
        padding: 1rem 0 0.5rem;
    }

    .services-guide-section--collapsed .services-guide-header {
        margin-bottom: 0;
    }

    .services-grid-section {
        padding-top: 1.5rem;
    }

    .services-guide-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .services-guide-grid--hidden {
        display: none;
    }

    .services-guide-title {
        font-size: 1.4rem;
    }

    .services-guide-subtitle {
        font-size: 0.9rem;
    }
}

@media (max-width: 480px) {
    .services-guide-section {
        padding: 2rem 0;
    }

    .services-guide-grid {
        grid-template-columns: 1fr;
    }
}

/* ── CAPTCHA ──────────────────────────────────────────────────────────── */
.captcha-img {
    border-radius: 4px;
    display: block;
    height: 50px;
    width: 180px;
    user-select: none;
}
