/* ============================================================
   FOOTER STYLES
============================================================ */
.site-footer {
    background: var(--navy);
    padding: 80px 0 0;
    position: relative;
    overflow: hidden;
}
.site-footer::before {
    content: '';
    position: absolute;
    top: -120px; right: -120px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,168,76,0.05) 0%, transparent 65%);
    pointer-events: none;
}

/* Footer top grid */
.footer-grid {
    display: grid;
    grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.07);
}

/* Brand column */
.footer-brand-desc {
    font-size: 13.5px;
    color: rgba(255,255,255,0.42);
    line-height: 1.75;
    margin: 18px 0 24px;
    max-width: 280px;
}
.footer-brand-contact { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.footer-contact-line {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 12.5px;
    color: rgba(255,255,255,0.38);
    transition: var(--transition);
}
.footer-contact-line:hover { color: var(--gold-light); }
.footer-contact-line span { font-size: 14px; }

/* Social icons */
.footer-socials { display: flex; gap: 10px; }
.footer-social-btn {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
    cursor: pointer;
}
.footer-social-btn:hover {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--navy);
    transform: translateY(-4px) scale(1.08);
    box-shadow: 0 10px 25px rgba(201,168,76,0.4);
    border-color: transparent;
}

/* Column titles */
.footer-col-title {
    font-family: var(--ff-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}
.footer-col-title::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0;
    width: 28px; height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

/* Footer links */
.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}
.footer-links li a {
    font-size: 13px;
    color: rgba(255,255,255,0.42);
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}
.footer-links li a::before {
    content: '›';
    color: var(--gold);
    font-size: 14px;
    opacity: 0;
    transform: translateX(-6px);
    transition: var(--transition);
}
.footer-links li a:hover {
    color: var(--gold-light);
    padding-left: 4px;
}
.footer-links li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

/* Footer newsletter mini */
.footer-newsletter {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    margin: 0 0 48px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
    flex-wrap: wrap;
}
.footer-newsletter-text {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
}
.footer-newsletter-title {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 4px;
}
.footer-newsletter-form {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    flex: 1;
    max-width: 420px;
}
.footer-newsletter-input {
    flex: 1;
    min-width: 200px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: var(--radius-sm);
    padding: 12px 18px;
    font-family: var(--ff-body);
    font-size: 13.5px;
    color: var(--white);
    outline: none;
    transition: var(--transition);
}
.footer-newsletter-input::placeholder { color: rgba(255,255,255,0.3); }
.footer-newsletter-input:focus {
    border-color: var(--gold);
    background: rgba(255,255,255,0.09);
    box-shadow: 0 0 0 3px rgba(201,168,76,0.12);
}

/* Footer bottom bar */
.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 0;
    gap: 16px;
    flex-wrap: wrap;
}
.footer-copy {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
}
.footer-copy span { color: var(--gold); }
.footer-bottom-links {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}
.footer-bottom-links a {
    font-size: 12px;
    color: rgba(255,255,255,0.28);
    transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--gold-light); }

/* Logo reuse in footer */
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 2px;
}
.footer-logo-icon {
    width: 36px; height: 36px; 
    border-radius: 8px;
    display: flex; align-items: center; justify-content: center;
    font-size: 18px;
}
.footer-logo-text {
    font-family: var(--ff-display);
    font-size: 20px;
    font-weight: 700;
    color: var(--white);
}

/* ============================================================
   FOOTER RESPONSIVE
============================================================ */
@media (max-width: 1100px) {
    .footer-grid { grid-template-columns: 1.8fr 1fr 1fr 1fr; gap: 36px; }
    /* Hide last col on tablet if needed */
    .footer-grid > div:last-child { grid-column: span 1; }
}
@media (max-width: 860px) {
    .footer-grid { grid-template-columns: 1fr 1fr 1fr; gap: 32px; }
    .footer-grid > div:first-child { grid-column: span 3; }
    .footer-brand-desc { max-width: 100%; }
}
@media (max-width: 600px) {
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
    .footer-grid > div:first-child { grid-column: span 2; }
    .footer-newsletter { flex-direction: column; align-items: flex-start; gap: 20px; }
    .footer-newsletter-form { max-width: 100%; width: 100%; }
    .footer-newsletter-input { min-width: unset; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .footer-bottom-links { justify-content: center; }
    .footer-copy { text-align: center; }
}
@media (max-width: 400px) {
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: span 1; }
    .site-footer { padding: 60px 0 0; }
}