/* =============================================================
   SECTION — CTA (Call to Action)
   ============================================================= */

#contact {
    padding: 140px 0;
    background-color: var(--brand-black);
    position: relative;
    overflow: hidden;
}

.luxury-cta-card {
    background: linear-gradient(135deg, var(--identity-black) 0%, var(--brand-black) 100%);
    border: 1px solid rgba(225, 169, 115, 0.18);
    padding: 60px 40px;
    border-radius: 24px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.7);
}

.cta-glow-line {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, rgba(225, 169, 115,0) 0%, rgba(225, 169, 115,0.6) 50%, rgba(225, 169, 115,0) 100%);
}

.cta-content-wrapper {
    max-width: 650px;
    margin: 0 auto;
    direction: rtl;
}

.cta-pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(225, 169, 115, 0.08);
    border: 1px solid rgba(225, 169, 115, 0.2);
    color: var(--gold-primary);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    margin-bottom: 25px;
    letter-spacing: 0.3px;
}

.pulse-dot {
    width: 6px;
    height: 6px;
    background-color: var(--gold-primary);
    border-radius: 50%;
    position: relative;
}
.pulse-dot::after {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background-color: var(--gold-primary);
    border-radius: 50%;
    animation: dotPulse 2s infinite ease-in-out;
}

.cta-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 15px;
    letter-spacing: -0.5px;
}

.cta-subtitle {
    color: #888888;
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 40px;
    font-weight: 300;
}

.cta-btn-wrap {
    display: flex;
    justify-content: center;
}

.premium-action-btn {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
    min-width: 320px;
    max-width: 100%;
    border: 1px solid var(--gold-primary);
    background: transparent;
    padding: 16px 28px;
    color: var(--gold-primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 700;
    border-radius: 999px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
    box-shadow: 0 10px 20px rgba(225, 169, 115, 0.08);
}
.premium-action-btn::before {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 0%; height: 100%;
    background-color: var(--gold-primary);
    z-index: -1;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}
.premium-action-btn:hover {
    color: var(--brand-black);
    box-shadow: 0 15px 30px rgba(225, 169, 115, 0.25);
    transform: translateY(-2px);
}
.premium-action-btn:hover::before { width: 100%; }

.action-arrow {
    font-style: normal;
    transition: transform 0.3s ease;
    font-size: 18px;
}
.premium-action-btn:hover .action-arrow { transform: translateX(-5px); }
