/* ============================================
   VRIDHI GOLD — BENTO FOOTER
   All classes prefixed with "footer-"
   No :root variables — fully custom values
   ============================================ */

/* ---------- RESET ---------- */
.footer-wrapper *,
.footer-wrapper *::before,
.footer-wrapper *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* ============================================
   MAIN WRAPPER
   ============================================ */
.footer-wrapper {
    background: #060606;
    position: relative;
    overflow: hidden;
    padding-top: 56px;
}

.footer-wrapper::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    translate: -50% 0;
    width: 720px;
    height: 720px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* ============================================
   TOP GOLD EDGE
   ============================================ */
.footer-edge-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg,
            transparent 0%,
            #8b7320 20%,
            #d4af37 35%,
            #f5e17d 50%,
            #d4af37 65%,
            #8b7320 80%,
            transparent 100%);
    opacity: 0.5;
    z-index: 2;
}

/* ============================================
   BENTO GRID
   ============================================ */
.footer-grid {
    position: relative;
    z-index: 1;
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 20px 36px;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 14px;
}

/* ============================================
   CARD BASE
   ============================================ */
.footer-card {
    background: linear-gradient(168deg, #131313 0%, #0e0e0e 100%);
    border: 1px solid rgba(212, 175, 55, 0.08);
    border-radius: 20px;
    padding: 28px 26px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.4s ease,
        transform 0.4s cubic-bezier(.22, .61, .36, 1),
        box-shadow 0.4s ease;
}

.footer-card::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 20px;
    background: radial-gradient(ellipse at 30% 0%, rgba(212, 175, 55, 0.06) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.footer-card:hover {
    border-color: rgba(212, 175, 55, 0.25);
    transform: translateY(-4px);
    box-shadow:
        0 8px 32px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(212, 175, 55, 0.05) inset;
}

.footer-card:hover::after {
    opacity: 1;
}

.footer-card>* {
    position: relative;
    z-index: 1;
}

/* ============================================
   CARD TITLE
   ============================================ */
.footer-title {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.05rem;
    font-weight: 600;
    color: #f2ece0;
    margin-bottom: 18px;
    padding-bottom: 12px;
    position: relative;
    letter-spacing: 0.3px;
}

.footer-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 26px;
    height: 2px;
    background: linear-gradient(90deg, #d4af37, #a08520);
    border-radius: 2px;
    transition: width 0.4s ease;
}

.footer-card:hover .footer-title::after {
    width: 50px;
}

.footer-title-inline {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer-title-inline::after {
    display: none;
}

/* ============================================
   BRAND CARD
   ============================================ */
.footer-card-brand {
    grid-column: 1 / 2;
    grid-row: 1 / 2;
}

.footer-logo-box {
    display: inline-flex;
    padding: 10px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.1);
    border-radius: 14px;
    margin-bottom: 18px;
    transition: border-color 0.3s ease;
}

.footer-card-brand:hover .footer-logo-box {
    border-color: rgba(212, 175, 55, 0.3);
}

.footer-logo-img {
    display: block;
    max-width: 150px;
    height: auto;
    border-radius: 10px;
    transition: transform 0.4s ease;
}

.footer-card-brand:hover .footer-logo-img {
    transform: scale(1.03);
}

.footer-brand-desc {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.88rem;
    font-weight: 300;
    color: #9e9484;
    line-height: 1.75;
    margin-bottom: 20px;
    max-width: 400px;
}

.footer-badge-row {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-badge {
    display: inline-block;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    color: #d4af37;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 100px;
    padding: 5px 14px;
    letter-spacing: 0.3px;
    transition: background 0.3s ease, border-color 0.3s ease;
}

.footer-card-brand:hover .footer-badge {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.25);
}

/* ============================================
   NAV CARD
   ============================================ */
.footer-card-nav {
    grid-column: 2 / 3;
    grid-row: 1 / 2;
}

.footer-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav-item {
    margin-bottom: 4px;
}

.footer-nav-item:last-child {
    margin-bottom: 0;
}

.footer-nav-link {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    color: #9e9484;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 7px 10px;
    border-radius: 10px;
    transition: color 0.3s ease, background 0.3s ease, padding-left 0.3s ease;
}

.footer-nav-arrow {
    font-size: 0.75rem;
    color: #d4af37;
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.footer-nav-link:hover {
    color: #f0d060;
    background: rgba(212, 175, 55, 0.06);
    padding-left: 14px;
}

.footer-nav-link:hover .footer-nav-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* ============================================
   SOCIAL CARD
   ============================================ */
.footer-card-social {
    grid-column: 3 / 4;
    grid-row: 1 / 2;
}

.footer-social-stack {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-social-link {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 10px 14px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(212, 175, 55, 0.1);
    color: #c4a94d;
    text-decoration: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    transition: all 0.3s ease;
}

.footer-social-link svg {
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.footer-social-text {
    transition: color 0.3s ease;
}

.footer-social-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    color: #f5e17d;
    transform: translateX(4px);
}

.footer-social-link:hover svg {
    transform: scale(1.15) rotate(6deg);
}

/* ============================================
   LOCATION CARD
   ============================================ */
.footer-card-location {
    grid-column: 1 / 2;
    grid-row: 2 / 3;
}

.footer-location-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-location-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(212, 175, 55, 0.08);
    border: 1px solid rgba(212, 175, 55, 0.18);
    color: #d4af37;
    flex-shrink: 0;
    transition: background 0.3s ease, transform 0.3s ease;
}

.footer-card-location:hover .footer-location-icon {
    background: rgba(212, 175, 55, 0.15);
    transform: scale(1.08);
}

.footer-location-place {
    font-family: 'Playfair Display', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #f2ece0;
    margin-bottom: 8px;
}

.footer-location-sub {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 300;
    color: #807868;
    line-height: 1.6;
}

/* ============================================
   CONTACT CARD
   ============================================ */
.footer-card-contact {
    grid-column: 2 / 3;
    grid-row: 2 / 3;
}

.footer-contact-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-contact-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 14px;
    background: rgba(255, 255, 255, 0.025);
    border: 1px solid rgba(212, 175, 55, 0.06);
    border-radius: 14px;
    text-decoration: none;
    transition: background 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.footer-contact-row:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: rgba(212, 175, 55, 0.2);
    transform: translateY(-2px);
}

.footer-contact-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.07);
    border-radius: 10px;
}

.footer-contact-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.footer-contact-label {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.7rem;
    font-weight: 500;
    color: #6b6356;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.footer-contact-value {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 400;
    color: #c4b896;
    transition: color 0.3s ease;
}

.footer-contact-row:hover .footer-contact-value {
    color: #f0d060;
}

/* ============================================
   HOURS CARD
   ============================================ */
.footer-card-hours {
    grid-column: 3 / 4;
    grid-row: 2 / 3;
}

.footer-hours-block {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-hours-day {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.84rem;
    font-weight: 400;
    color: #9e9484;
}

.footer-hours-time {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.82rem;
    font-weight: 500;
    color: #c4b896;
    background: rgba(212, 175, 55, 0.07);
    padding: 4px 12px;
    border-radius: 8px;
}

.footer-hours-closed {
    color: #a05a5a;
    background: rgba(160, 90, 90, 0.1);
}

.footer-hours-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.12), transparent);
}

/* ============================================
   BOTTOM BAR
   ============================================ */
.footer-bottom {
    position: relative;
    z-index: 1;
    border-top: 1px solid rgba(212, 175, 55, 0.06);
    background: rgba(0, 0, 0, 0.35);
}

.footer-bottom-content {
    max-width: 1600px;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-copyright {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: #5c554a;
    letter-spacing: 0.3px;
}

.footer-credit {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 0.78rem;
    font-weight: 300;
    color: #5c554a;
    letter-spacing: 0.3px;
}

.footer-credit-link {
    color: #c4a94d;
    text-decoration: none;
    font-weight: 500;
    position: relative;
    transition: color 0.3s ease;
}

.footer-credit-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, #d4af37, #f0d060);
    transition: width 0.3s ease;
}

.footer-credit-link:hover {
    color: #f5e17d;
}

.footer-credit-link:hover::after {
    width: 100%;
}

/* ============================================
   TABLET — max-width: 1024px
   ============================================ */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto auto;
    }

    .footer-card-brand {
        grid-column: 1 / -1;
        grid-row: 1 / 2;
    }

    .footer-card-nav {
        grid-column: 1 / 2;
        grid-row: 2 / 3;
    }

    .footer-card-social {
        grid-column: 2 / 3;
        grid-row: 2 / 3;
    }

    .footer-card-location {
        grid-column: 1 / -1;
        grid-row: 3 / 4;
    }

    .footer-card-contact {
        grid-column: 1 / 2;
        grid-row: 4 / 5;
    }

    .footer-card-hours {
        grid-column: 2 / 3;
        grid-row: 4 / 5;
    }
}

/* ============================================
   MOBILE — max-width: 640px
   ============================================ */
@media (max-width: 640px) {
    .footer-wrapper {
        padding-top: 40px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 0 14px 28px;
    }

    .footer-card-brand,
    .footer-card-nav,
    .footer-card-social,
    .footer-card-location,
    .footer-card-contact,
    .footer-card-hours {
        grid-column: 1 / -1;
        grid-row: auto;
    }

    .footer-card {
        padding: 22px 18px;
        border-radius: 16px;
    }

    .footer-card:hover {
        transform: translateY(-2px);
    }

    .footer-brand-desc {
        font-size: 0.84rem;
    }

    .footer-badge-row {
        gap: 6px;
    }

    .footer-badge {
        font-size: 0.68rem;
        padding: 4px 10px;
    }

    .footer-title {
        font-size: 0.95rem;
        margin-bottom: 14px;
        padding-bottom: 10px;
    }

    .footer-nav-link {
        font-size: 0.82rem;
        padding: 6px 8px;
    }

    .footer-social-stack {
        flex-direction: row;
        flex-wrap: wrap;
        gap: 8px;
    }

    .footer-social-link {
        width: 44px;
        height: 44px;
        justify-content: center;
        padding: 0;
        border-radius: 50%;
        gap: 0;
    }

    .footer-social-text {
        display: none;
    }

    .footer-contact-row {
        padding: 10px 12px;
    }

    .footer-contact-value {
        font-size: 0.78rem;
    }

    .footer-hours-day,
    .footer-hours-time {
        font-size: 0.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        padding: 14px;
        gap: 6px;
    }

    .footer-copyright,
    .footer-credit {
        font-size: 0.72rem;
    }
}

/* ============================================
   SMALL MOBILE — max-width: 380px
   ============================================ */
@media (max-width: 380px) {
    .footer-grid {
        padding: 0 10px 24px;
        gap: 8px;
    }

    .footer-card {
        padding: 18px 14px;
        border-radius: 14px;
    }

    .footer-logo-img {
        max-width: 120px;
    }

    .footer-hours-row {
        flex-direction: column;
        align-items: flex-start;
        gap: 4px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */
@media (prefers-reduced-motion: reduce) {

    .footer-card,
    .footer-card::after,
    .footer-nav-link,
    .footer-nav-arrow,
    .footer-social-link,
    .footer-social-link svg,
    .footer-contact-row,
    .footer-contact-value,
    .footer-title::after,
    .footer-credit-link,
    .footer-credit-link::after,
    .footer-logo-img,
    .footer-logo-box,
    .footer-location-icon,
    .footer-badge {
        transition: none !important;
    }

    .footer-card:hover {
        transform: none;
    }

    .footer-nav-link:hover {
        padding-left: 10px;
    }

    .footer-social-link:hover {
        transform: none;
    }

    .footer-social-link:hover svg {
        transform: none;
    }

    .footer-contact-row:hover {
        transform: none;
    }
}

/* ============================================
   ADMIN LOCK ICON
   ============================================ */
.footer-admin-lock {
    display: flex;
    align-items: center;
    justify-content: center;
    color: #5c554a;
    transition: color 0.3s ease;
    opacity: 0.5;
    margin-left: 10px;
}

.footer-admin-lock:hover {
    color: #d4af37;
    opacity: 1;
}

@media (max-width: 640px) {
    .footer-admin-lock {
        margin-left: 0;
    }
}