/* ====================================
   css/cta.css - CTA Section Styles
   Font: Asap (changed from Bitter)
   ==================================== */

/* CTA Section */
.reldev-cta-section {
    padding: 7rem 0;
    background: linear-gradient(135deg, #197939 0%, #145a2c 100%);
    color: #ffffff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.reldev-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.05)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    pointer-events: none;
}

.reldev-cta-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin: 0 auto;
    padding: 0 2rem;
}

.reldev-cta-content h2 {
    font-family: 'Asap', sans-serif;
    font-size: 2.75rem;
    margin-bottom: 1.5rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.1);
}

.reldev-cta-content p {
    font-family: 'Asap', sans-serif;
    font-size: 1.2rem;
    margin-bottom: 2.5rem;
    line-height: 1.7;
    opacity: 0.95;
}

.reldev-cta-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.65rem;
    background: #ffffff;
    color: #197939;
    padding: 1.25rem 2.5rem;
    text-decoration: none;
    border-radius: 8px;
    font-size: 1.15rem;
    font-weight: 600;
    transition: all 0.3s ease;
    font-family: 'Asap', sans-serif;
    border: 2px solid #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    text-align: center;
}

.reldev-cta-button:hover {
    background: #f5f5f5;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

/* Responsive Design for CTA Section */
@media (max-width: 992px) {
    .reldev-cta-section {
        padding: 6rem 0;
    }

    .reldev-cta-content h2 {
        font-size: 2.5rem;
    }

    .reldev-cta-content p {
        font-size: 1.15rem;
    }
}

@media (max-width: 768px) {
    .reldev-cta-section {
        padding: 5rem 0;
    }

    .reldev-cta-content {
        padding: 0 1.5rem;
    }

    .reldev-cta-content h2 {
        font-size: 2rem;
        line-height: 1.4;
        margin-bottom: 1.25rem;
    }

    .reldev-cta-content p {
        font-size: 1.08rem;
        margin-bottom: 2rem;
    }

    .reldev-cta-button {
        padding: 1.15rem 2rem;
        font-size: 1.05rem;
        width: 100%;
        max-width: 280px;
    }
}

@media (max-width: 480px) {
    .reldev-cta-section {
        padding: 4rem 0;
    }

    .reldev-cta-content {
        padding: 0 1rem;
    }

    .reldev-cta-content h2 {
        font-size: 1.75rem;
        line-height: 1.5;
    }

    .reldev-cta-content p {
        font-size: 1rem;
        line-height: 1.6;
    }

    .reldev-cta-button {
        padding: 1rem 1.75rem;
        font-size: 0.95rem;
        width: 100%;
        max-width: 260px;
    }
}