/* =====================================================
   CTA Hyperlink Section – DC Metro Service Areas
   Fully Scoped & Elementor-Safe
===================================================== */

.cta-hyperlink-section {
    padding: 4rem 0;
    background: linear-gradient(
        135deg,
        rgba(76, 175, 80, 0.1) 0%,
        rgba(255, 255, 255, 0.95) 100%
    );
    position: relative;
    overflow: hidden;
}

/* Container */
.cta-hyperlink-section .cta-hyperlink-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 3rem 20px;
    text-align: center;
    position: relative;
    z-index: 2;
}

/* ---------------- Neighborhoods Block ---------------- */

.cta-hyperlink-section .neighborhoods-section {
    background: #ffffff;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border: 1px solid rgba(76, 175, 80, 0.1);
    margin-bottom: 2rem;
}

.cta-hyperlink-section .neighborhoods-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-hyperlink-section .neighborhoods-subtitle {
    font-size: 1.2rem;
    color: #596575;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Service Areas */
.cta-hyperlink-section .service-areas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1rem;
    margin: 2rem 0;
}

.cta-hyperlink-section .area-tag {
    background: rgba(76, 175, 80, 0.1);
    color: #43a047;
    padding: 1rem 1.5rem;
    border-radius: 12px;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    transition: all 0.3s ease;
    min-width: 220px;
}

.cta-hyperlink-section .area-tag:hover {
    transform: translateY(-3px);
    background: rgba(76, 175, 80, 0.15);
    box-shadow: 0 4px 12px rgba(67, 160, 71, 0.1);
}

.cta-hyperlink-section .area-tag a {
    color: #43a047;
    text-decoration: none;
}

/* View All */
.cta-hyperlink-section .view-all-areas {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #f8f9fa;
    color: #43a047;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    margin-top: 1.5rem;
}

.cta-hyperlink-section .view-all-areas:hover {
    background: rgba(67, 160, 71, 0.1);
    transform: translateY(-2px);
}

/* ---------------- CTA Content ---------------- */

.cta-hyperlink-section .cta-content {
    background: #ffffff;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    margin-top: 2rem;
    border: 1px solid rgba(76, 175, 80, 0.1);
}

.cta-hyperlink-section .cta-title {
    font-size: 2.5rem;
    color: #2c3e50;
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.cta-hyperlink-section .cta-subtitle {
    font-size: 1.2rem;
    color: #596575;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Highlights */
.cta-hyperlink-section .service-highlights {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.cta-hyperlink-section .highlight-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #43a047;
    font-weight: 600;
}

.cta-hyperlink-section .highlight-icon {
    font-size: 1.5rem;
}

/* ---------------- Action Buttons ---------------- */

.cta-hyperlink-section .action-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cta-hyperlink-section .cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    min-width: 200px;
    justify-content: center;
}

.cta-hyperlink-section .primary-cta {
    background: #43a047;
    color: #ffffff;
}

.cta-hyperlink-section .secondary-cta {
    background: #ffffff;
    color: #43a047;
    border: 2px solid #43a047;
}

.cta-hyperlink-section .text-cta {
    background: #1e88e5;
    color: #ffffff;
}

.cta-hyperlink-section .cta-button:hover {
    transform: translateY(-2px);
}

.cta-hyperlink-section .primary-cta:hover {
    background: #388e3c;
}

.cta-hyperlink-section .secondary-cta:hover {
    background: rgba(67, 160, 71, 0.05);
}

.cta-hyperlink-section .text-cta:hover {
    background: #1976d2;
}

/* ---------------- Trust Badges ---------------- */

.cta-hyperlink-section .trust-badges {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cta-hyperlink-section .trust-badge {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #596575;
}

/* ---------------- Mobile Optimization ---------------- */

@media (max-width: 768px) {

    .cta-hyperlink-section .cta-hyperlink-container {
        padding: 2rem 16px;
    }

    .cta-hyperlink-section .neighborhoods-title,
    .cta-hyperlink-section .cta-title {
        font-size: 2rem;
    }

    .cta-hyperlink-section .cta-content {
        padding: 2.5rem 1.5rem;
    }

    .cta-hyperlink-section .cta-button {
        width: 100%;
    }
}
