/* ============================================
   SECTION: Get In Touch / CTA Banner
   Description: Pink background CTA section
   with heading, text, and action buttons.
   Decorative plant/confetti elements.
   ============================================ */

.get-in-touch {
    padding: var(--space-4xl) 0;
    background-color: var(--color-primary);
    position: relative;
    overflow: hidden;
}

.get-in-touch__container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-padding);
    position: relative;
    z-index: 2;
    text-align: center;
}

.get-in-touch__title {
    font-size: var(--text-4xl);
    color: var(--color-white);
    margin-bottom: var(--space-lg);
}

.get-in-touch__text {
    color: rgba(255, 255, 255, 0.9);
    max-width: 650px;
    margin: 0 auto var(--space-2xl);
    font-size: var(--text-lg);
    line-height: var(--line-height-relaxed);
}

.get-in-touch__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.get-in-touch__link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: underline;
    font-size: var(--text-base);
    transition: color var(--transition-fast);
}

.get-in-touch__link:hover {
    color: var(--color-white);
}

/* Decorative elements */
.get-in-touch__decor {
    position: absolute;
    width: 300px;
    height: 300px;
    z-index: 1;
    opacity: 0.15;
    background-size: contain;
    background-repeat: no-repeat;
}

.get-in-touch__decor--left {
    left: -50px;
    bottom: -50px;
}

.get-in-touch__decor--right {
    right: -50px;
    top: -50px;
}

/* ----- Mobile Responsive ----- */
@media (max-width: 768px) {
    .get-in-touch__title {
        font-size: var(--text-2xl);
    }

    .get-in-touch__actions {
        flex-direction: column;
        gap: var(--space-md);
    }
}
