/* CTA Container */
.cta-section {
    margin: 4em 0;
    position: relative;
    padding: 4em 2em;
    border-radius: 15px;
    background: linear-gradient(135deg, #a40606 0%, #d98324 100%);
    /* Deep Red to Gold gradient */
    color: #fff;
    text-align: center;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    z-index: 1;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

/* Decorative Background Elements (Mandala-like feel) */
.cta-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 60%);
    transform: rotate(30deg);
    z-index: -1;
    pointer-events: none;
}

.cta-section::after {
    content: '🕉️';
    /* OM symbol as watermark */
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 25rem;
    color: rgba(0, 0, 0, 0.05);
    /* Very subtle */
    z-index: -1;
    pointer-events: none;
}

/* Header Styling */
.cta-section header {
    position: relative;
    z-index: 2;
}

.cta-section header h2 {
    color: #ffd700 !important;
    /* Gold Text */
    font-size: 2.5em;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5em;
    text-shadow: 2px 2px 0px rgba(0, 0, 0, 0.2);
    font-family: 'Cinzel', serif;
    /* If available, else falls back */
}

.cta-section header p {
    color: #ffe6e6;
    font-size: 1.3em;
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto 2.5em auto;
    font-weight: 500;
}

/* Buttons Container */
.cta-section .actions.special {
    display: flex;
    justify-content: center;
    gap: 20px;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
}

/* Base Button Styling */
.cta-section .button {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 2.5em;
    height: 3.8em;
    font-size: 1em;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    border: 2px solid transparent;
    /* Prepare for border variants */
}

/* Primary Button (Book Now) - Gold */
.cta-section .button.primary.large {
    background: #ffd700;
    /* Gold */
    background: linear-gradient(to bottom, #ffd700 0%, #e6ac00 100%);
    color: #4a0404 !important;
    /* Dark Red Text */
    border: none;
}

/* WhatsApp Button - Outline/Greenish tint */
.cta-section .button:not(.primary) {
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid #25d366;
    color: #fff !important;
}

/* Hover Effects */
.cta-section .button.primary.large:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(255, 215, 0, 0.4);
    background: linear-gradient(to bottom, #ffe44d 0%, #ffc400 100%);
}

.cta-section .button:not(.primary):hover {
    background: #25d366;
    color: #fff !important;
    transform: translateY(-5px);
    box-shadow: 0 15px 25px rgba(37, 211, 102, 0.3);
    border-color: #25d366;
}

/* Icons in buttons */
.cta-section .button i {
    margin-right: 10px;
    font-size: 1.2em;
}

/* Mobile Adjustments */
@media screen and (max-width: 736px) {
    .cta-section {
        padding: 2.5em 1em;
        margin: 2em 0;
        border-radius: 10px;
    }

    .cta-section header h2 {
        font-size: 1.8em;
    }

    .cta-section header p {
        font-size: 1.1em;
    }

    .cta-section .actions.special {
        flex-direction: column;
        gap: 15px;
    }

    .cta-section .button {
        width: 100%;
        height: 3.5em;
    }
}