/* =============================================================
   FOOTER — Contact Info Section, Footer Bar, Social Links,
             WhatsApp Float, Social Icons
   ============================================================= */

/* ── Contact Info Section ──────────────────────────────────── */

#contact-info-section {
    width: 100%;
    padding: 80px 0;
    background: var(--brand-black);
    border-top: 1px solid rgba(225, 169, 115, 0.14);
    text-align: center;
    color: #fff;
}

.contact-info-inner {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-info-title {
    color: var(--gold-primary);
    font-size: 32px;
    margin-bottom: 10px;
    letter-spacing: 2px;
}

.contact-info-subtitle {
    color: #888;
    margin-bottom: 50px;
}

.contact-cards-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-card {
    flex: 1;
    min-width: 280px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.035);
    border: 1px solid rgba(225, 169, 115, 0.12);
    border-radius: 15px;
    transition: 0.3s;
}
.contact-card:hover {
    border-color: var(--gold-primary);
    transform: translateY(-5px);
}

.contact-card-icon {
    color: var(--gold-primary);
    margin-bottom: 15px;
}

.contact-card-icon svg {
    width: 36px;
    height: 36px;
}

.contact-card h4 {
    color: #fff;
    margin-bottom: 10px;
    font-size: 18px;
}

.contact-card p {
    color: #bbb;
    font-size: 15px;
}

/* ── Footer Bar ────────────────────────────────────────────── */

.site-footer {
    width: 100%;
    padding: 40px 0;
    text-align: center;
    background: #171715;
    color: #fff;
    border-top: 1px solid #111;
}

.site-footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.site-footer-brand {
    font-size: 22px;
    color: var(--gold-primary);
    margin-bottom: 15px;
    letter-spacing: 2px;
    font-weight: bold;
}

.site-footer-copy {
    font-size: 12px;
    color: #555;
}

/* ── Social Footer Section ─────────────────────────────────── */

.sparkle-social-footer {
    padding: 40px 0;
    background: #171715;
    border-top: 1px solid rgba(255,255,255,0.05);
    direction: rtl;
}

.sparkle-title-wrapper {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-bottom: 30px;
}
.sparkle-title-wrapper::before,
.sparkle-title-wrapper::after {
    content: "";
    height: 1px;
    width: 60px;
    background: linear-gradient(90deg, transparent, var(--brand-bronze), transparent);
    animation: linePulse 3s infinite ease-in-out;
}

.sparkle-luxury-text {
    font-size: 18px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 0;
    background: linear-gradient(to right, var(--brand-bronze-dark), var(--brand-bronze-light), var(--brand-bronze), #D3C0AA);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% auto;
    animation: goldShimmer 4s linear infinite;
}

.social-grid {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

/* ── Social Icons ──────────────────────────────────────────── */

.soc-item {
    width: 58px;
    height: 58px;
    background: #fff;
    color: var(--brand-black);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 26px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255,255,255,0.05);
}
.soc-item:hover {
    box-shadow: 0 10px 20px rgba(0,0,0,0.5);
}

.soc-item.insta,
.soc-item.insta:hover {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
    color: #fff;
}
.soc-item.insta:hover {
    transform: translateY(-8px);
}
.soc-item.x-twitter,
.soc-item.x-twitter:hover {
    background: var(--brand-black);
    color: #fff;
    border-color: #fff;
}
.soc-item.x-twitter:hover {
    transform: translateY(-8px);
}
.soc-item.tiktok,
.soc-item.tiktok:hover {
    background: #010101;
    color: #fff;
    box-shadow: 3px 3px 0 #fe2c55, -3px -3px 0 #25f4ee;
}
.soc-item.tiktok:hover {
    transform: translateY(-8px);
}
.soc-item.facebook,
.soc-item.facebook:hover {
    background: #1877F2;
    color: #fff;
}
.soc-item.facebook:hover {
    transform: translateY(-8px);
}
.soc-item.snap,
.soc-item.snap:hover {
    background: #FFFC00;
    color: #000;
}
.soc-item.snap:hover {
    transform: translateY(-8px);
}

/* ── WhatsApp Float ────────────────────────────────────────── */

.whatsapp-float {
    position: fixed;
    width: 50px;
    height: 50px;
    bottom: 25px;
    left: 25px;
    background-color: #25d366;
    color: #fff;
    border-radius: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    box-shadow: 0 4px 15px rgba(0,0,0,0.6);
    transition: 0.3s;
}
.whatsapp-float:hover {
    transform: scale(1.1);
}
