/* ===== CTA SECTION ===== */
.cta-section {
    background: linear-gradient(135deg, #e8734a, #c2693d);
    padding: 80px 24px;
    position: relative;
    overflow: hidden;
    text-align: center;
}
.cta-corner-img {
    position: absolute;
    width: 220px;
    height: 220px;
    object-fit: cover;
    border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
    opacity: 0.2;
    pointer-events: none;
}
.cta-corner-img.top-right {
    top: -30px;
    right: -40px;
    border-radius: 70% 30% 30% 70% / 70% 70% 30% 30%;
}
.cta-corner-img.bottom-left {
    bottom: -30px;
    left: -40px;
}
.cta-content { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.cta-content h2 {
    font-size: 2.5rem;
    color: #fff;
    margin-bottom: 16px;
}
.cta-content p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 36px;
    line-height: 1.8;
}
.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}
.cta-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: #fff;
    color: #e8734a;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 700;
    transition: all 0.35s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
}
.cta-btn-primary:hover {
    background: #fffbf5;
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
}
.cta-btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 16px 36px;
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.6);
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    transition: all 0.35s ease;
}
.cta-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-3px);
}
