/* ========== BOOKING CTA ========== */
.booking-cta {
    padding: 130px 0;
    position: relative;
    overflow: hidden;
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #2d2010 0%, #1a1208 50%, #3d3020 100%);
}

.cta-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 20% 50%, rgba(201, 168, 76, 0.12) 0%, transparent 40%),
        radial-gradient(circle at 80% 50%, rgba(183, 110, 121, 0.1) 0%, transparent 40%),
        radial-gradient(circle at 50% 0%, rgba(201, 168, 76, 0.08) 0%, transparent 30%);
}

.cta-bg::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background-image: radial-gradient(circle, rgba(201, 168, 76, 0.04) 1px, transparent 1px);
    background-size: 50px 50px;
}

.cta-content {
    position: relative;
    z-index: 1;
    text-align: center;
}

.cta-title {
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    margin-bottom: 22px;
    font-weight: 700;
    color: var(--white);
}

.cta-title .gold {
    color: var(--gold-light);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 248, 230, 0.72);
    max-width: 580px;
    margin: 0 auto 45px;
    line-height: 1.85;
    font-weight: 300;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-buttons .btn-outline {
    color: var(--gold-light);
    border-color: rgba(201, 168, 76, 0.5);
    background: rgba(201, 168, 76, 0.06);
}

.cta-buttons .btn-outline:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border-color: var(--gold);
    color: var(--white);
}