/* ================================
   CTA Buttons - Organic Elegance
   ================================ */
.cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1.1rem 2.75rem;
    background: linear-gradient(135deg, #E9B872 0%, #D4854A 50%, #C76D3A 100%);
    color: white;
    text-decoration: none;
    border-radius: 60px;
    font-weight: 600;
    font-size: 1.05rem;
    letter-spacing: 0.02em;
    position: relative;
    overflow: hidden;
    transition:
        transform 0.4s cubic-bezier(0.34, 1.56, 0.64, 1),
        box-shadow 0.4s cubic-bezier(0.16, 1, 0.3, 1),
        background 0.3s ease;
    box-shadow:
        0 4px 15px rgba(199, 109, 58, 0.35),
        0 8px 30px rgba(199, 109, 58, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    border: none;
    cursor: pointer;
}

/* Gentle breathing pulse */
.cta-btn::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.5);
    animation: cta-breathe 3.5s ease-in-out infinite;
}

@keyframes cta-breathe {
    0%, 100% { box-shadow: 0 0 0 0 rgba(244, 162, 97, 0.5); }
    50% { box-shadow: 0 0 0 14px rgba(244, 162, 97, 0); }
}

/* Shine effect on hover */
.cta-btn::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        90deg,
        transparent,
        rgba(255, 255, 255, 0.3),
        transparent
    );
    transition: left 0.5s ease;
}

.cta-btn:hover {
    transform: translateY(-3px) scale(1.03);
    background: linear-gradient(135deg, #F0C485 0%, #E09560 50%, #D47845 100%);
    box-shadow:
        0 8px 25px rgba(199, 109, 58, 0.45),
        0 16px 40px rgba(199, 109, 58, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.cta-btn:hover::before {
    animation: none;
}

.cta-btn:hover::after {
    left: 100%;
}

/* Active/pressed state */
.cta-btn:active {
    transform: translateY(-2px) scale(0.98);
    box-shadow:
        0 4px 15px rgba(199, 109, 58, 0.4),
        0 8px 25px rgba(199, 109, 58, 0.2);
    transition: all 0.1s ease;
}

/* Focus state for accessibility */
.cta-btn:focus-visible {
    outline: 3px solid var(--primary);
    outline-offset: 4px;
}

@media (prefers-reduced-motion: reduce) {
    .cta-btn {
        opacity: 1 !important;
        transform: none !important;
        transition: none !important;
        animation: none !important;
    }

    .cta-btn::before {
        animation: none !important;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

