/**
 * Modern footer — scoped under .fc-footer
 * Navy + gold design system (matches inner pages)
 */

.fc-footer {
    --fc-navy: #030f27;
    --fc-navy-2: #0a1f45;
    --fc-gold: #fdbe33;
    --fc-gold-soft: rgba(253, 190, 51, 0.22);
    --fc-muted: rgba(255, 255, 255, 0.65);
    --fc-whatsapp: #25d366;
    position: relative;
    background: linear-gradient(165deg, var(--fc-navy) 0%, var(--fc-navy-2) 55%, #061528 100%);
    color: rgba(255, 255, 255, 0.88);
    overflow: hidden;
    margin-top: 0;
}

.fc-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 12% 88%, rgba(253, 190, 51, 0.1), transparent 42%),
        radial-gradient(circle at 88% 12%, rgba(253, 190, 51, 0.08), transparent 38%),
        repeating-linear-gradient(
            -45deg,
            transparent,
            transparent 10px,
            rgba(255, 255, 255, 0.012) 10px,
            rgba(255, 255, 255, 0.012) 11px
        );
    pointer-events: none;
}

.fc-footer-accent {
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--fc-gold), #ffc94d, var(--fc-gold), transparent);
    position: relative;
    z-index: 1;
}

.fc-footer-main {
    position: relative;
    z-index: 1;
    padding: clamp(56px, 9vw, 80px) 15px clamp(40px, 6vw, 56px);
}

.fc-footer-row {
    row-gap: clamp(32px, 5vw, 48px);
}

.fc-footer-col {
    position: relative;
}

/* Brand */
.fc-footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    margin-bottom: 18px;
}
.fc-footer-logo:hover {
    text-decoration: none;
}
.fc-footer-logo-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border-radius: 14px;
    background: linear-gradient(145deg, rgba(253, 190, 51, 0.2), rgba(253, 190, 51, 0.08));
    border: 1px solid rgba(253, 190, 51, 0.35);
    color: var(--fc-gold);
    font-size: 1.15rem;
    transition: transform 0.3s ease, background 0.3s ease;
}
.fc-footer-logo:hover .fc-footer-logo-mark {
    transform: scale(1.05);
    background: rgba(253, 190, 51, 0.25);
}
.fc-footer-logo-text {
    font-size: 1.35rem;
    font-weight: 800;
    color: #fff;
    letter-spacing: -0.02em;
    line-height: 1.2;
}
.fc-footer-about {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--fc-muted);
    margin: 0 0 22px;
    max-width: 360px;
}
.fc-footer-follow-label {
    font-size: 0.6875rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.45);
    margin: 0 0 12px;
}
.fc-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.fc-footer-social a {
    width: 42px;
    height: 42px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.95rem;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, color 0.3s ease, transform 0.3s ease;
}
.fc-footer-social a:hover {
    background: var(--fc-gold);
    border-color: var(--fc-gold);
    color: var(--fc-navy);
    transform: translateY(-3px);
    text-decoration: none;
}
.fc-footer-social--whatsapp:hover {
    background: var(--fc-whatsapp);
    border-color: var(--fc-whatsapp);
    color: #fff;
}

/* Headings */
.fc-footer-heading {
    font-size: 0.8125rem;
    font-weight: 800;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--fc-gold);
    margin: 0 0 20px;
    padding-bottom: 12px;
    position: relative;
}
.fc-footer-heading::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 36px;
    height: 3px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--fc-gold), transparent);
}
html[dir='rtl'] .fc-footer-heading::after {
    left: auto;
    right: 0;
    background: linear-gradient(270deg, var(--fc-gold), transparent);
}

/* Link lists */
.fc-footer-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.fc-footer-list a {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--fc-muted);
    text-decoration: none;
    transition: color 0.25s ease, transform 0.25s ease;
}
.fc-footer-list a::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: rgba(253, 190, 51, 0.45);
    flex-shrink: 0;
    transition: background 0.25s ease, transform 0.25s ease;
}
.fc-footer-list a:hover {
    color: #fff;
    text-decoration: none;
    transform: translateX(4px);
}
html[dir='rtl'] .fc-footer-list a:hover {
    transform: translateX(-4px);
}
.fc-footer-list a:hover::before {
    background: var(--fc-gold);
    transform: scale(1.2);
}

/* Contact list */
.fc-footer-contact-list {
    list-style: none;
    margin: 0 0 24px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
}
.fc-footer-contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--fc-muted);
}
.fc-footer-contact-icon {
    flex-shrink: 0;
    width: 38px;
    height: 38px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: rgba(253, 190, 51, 0.12);
    border: 1px solid rgba(253, 190, 51, 0.22);
    color: var(--fc-gold);
    font-size: 0.9rem;
}
.fc-footer-contact-list a {
    color: rgba(255, 255, 255, 0.82);
    text-decoration: none;
    transition: color 0.25s ease;
}
.fc-footer-contact-list a:hover {
    color: var(--fc-gold);
    text-decoration: none;
}

/* CTA card */
.fc-footer-cta {
    padding: 20px 22px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(253, 190, 51, 0.22);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.fc-footer-cta h4 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin: 0 0 8px;
    line-height: 1.3;
    letter-spacing: -0.01em;
}
.fc-footer-cta p {
    font-size: 0.8125rem;
    color: var(--fc-muted);
    line-height: 1.55;
    margin: 0 0 16px;
}
.fc-footer-cta-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 12px 24px;
    border-radius: 999px;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    text-decoration: none;
    background: linear-gradient(158deg, #fdbe33, #e8a820);
    color: var(--fc-navy);
    box-shadow: 0 6px 20px rgba(253, 190, 51, 0.35);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.fc-footer-cta-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(253, 190, 51, 0.45);
    color: var(--fc-navy);
    text-decoration: none;
}

/* Bottom bar */
.fc-footer-bar {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    background: rgba(0, 0, 0, 0.18);
}
.fc-footer-bar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    padding: 18px 15px;
}
.fc-footer-copyright {
    margin: 0;
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.5);
}
.fc-footer-copyright a {
    color: var(--fc-gold);
    text-decoration: none;
}
.fc-footer-copyright a:hover {
    text-decoration: underline;
}
.fc-footer-legal {
    display: flex;
    flex-wrap: wrap;
    gap: 6px 20px;
}
.fc-footer-legal a {
    font-size: 0.8125rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.25s ease;
}
.fc-footer-legal a:hover {
    color: var(--fc-gold);
    text-decoration: none;
}

/* Credit */
.fc-footer-credit {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 14px 15px;
    text-align: center;
}
.fc-footer-credit p {
    margin: 0;
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.38);
}
.fc-footer-credit a {
    color: rgba(253, 190, 51, 0.75);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.25s ease;
}
.fc-footer-credit a:hover {
    color: var(--fc-gold);
    text-decoration: underline;
}

/* Responsive */
@media (max-width: 767px) {
    .fc-footer-bar-inner {
        flex-direction: column;
        text-align: center;
    }
    .fc-footer-legal {
        justify-content: center;
    }
    .fc-footer-about {
        max-width: none;
    }
}

@media (max-width: 575px) {
    .fc-footer-legal {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }
}
