/* ======================================================
   GLOBAL PDC COMPONENTS (Shared across templates)
   ====================================================== */

/* ─── Section Headers ─── */
.pdc-section-label {
    display: inline-block;
    background: rgba(0, 123, 217, 0.08);
    color: #007bd9;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 15px;
}

.pdc-section-title {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 800;
    color: #063769;
    margin-bottom: 15px;
    line-height: 1.2;
}

@media (max-width: 575.98px) {
    .pdc-section-title {
        font-weight: 700;
        font-size: 1.5rem;
    }
}

.pdc-section-title span {
    color: #2a93c9;
}

.pdc-section-subtitle {
    color: #6c757d; 
    font-size: 1.1rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    margin-bottom: 0;
}

/* ─── Common Buttons ─── */
.pdc-btn-primary {
    background: linear-gradient(90deg, #007bd9, #38b6ff);
    color: #fff !important;
    border: none;
    padding: 14px 32px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 123, 217, 0.2);
    text-decoration: none;
}

.pdc-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 123, 217, 0.3);
    color: #fff !important;
}

.pdc-btn-outline {
    background: transparent;
    color: #007bd9 !important;
    border: 2px solid #007bd9;
    padding: 12px 30px;
    border-radius: 12px;
    font-weight: 700;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.pdc-btn-outline:hover {
    background: rgba(0, 123, 217, 0.05);
    transform: translateY(-2px);
    color: #006ac4 !important;
}

@media (max-width: 575.98px) {
    .pdc-btn-primary,
    .pdc-btn-outline {
        width: 100%;
        display: block;
        text-align: center;
        padding: 1rem 0;
    }
}

/* ─── Call to Action (Parallax) ─── */
.pdc-cta-title {
    font-family: "Asap", sans-serif;
    font-size: clamp(1.6rem, 4vw, 2.6rem);
    line-height: 1.15;
    font-weight: 800;
    color: #fff;
    margin-bottom: 0;
    max-width: 750px;
    text-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.pdc-cta-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 4px;
    background: #2a93c9;
    margin-top: 25px;
    border-radius: 2px;
    box-shadow: 0 2px 10px rgba(42, 147, 201, 0.4);
}

.pdc-cta-subtitle {
    font-family: "Lato", sans-serif;
    font-size: clamp(0.95rem, 2vw, 1.15rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.95);
    margin-top: 30px !important;
    max-width: 550px;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
    font-weight: 400;
}

/* ─── CTA Gradient Overlay ─── */
.pdc-cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    background: linear-gradient(
        90deg,
        rgba(4, 30, 60, 0.9) 0%,
        rgba(6, 55, 105, 0.8) 40%,
        rgba(14, 115, 185, 0.2) 75%,
        rgba(14, 115, 185, 0.0) 100%
    );
    pointer-events: none;
}

.parallax-content {
    position: relative;
    z-index: 10;
}
