/* ============================================================
   AM2PM SUPPORTS - PREMIUM 2026 EDITION UPGRADE
   ============================================================ */

/* 1. ULTIMATE ADMIN BAR KILLER - Ensures the "text dump" stays hidden */
#wpadminbar, 
#wp-admin-bar-root-default, 
#wp-admin-bar-top-secondary,
.ab-sub-wrapper,
.ab-item { 
    display: none !important; 
    height: 0 !important;
    overflow: hidden !important;
    visibility: hidden !important;
}
html { margin-top: 0px !important; padding-top: 0px !important; }

/* 2. FOOTER MAIN ARCHITECTURE */
.site-footer {
    background: #0f172a; /* Rich Navy */
    color: #94a3b8;
    padding: 100px 0 0;
    font-family: 'Poppins', sans-serif;
    position: relative;
    overflow: hidden;
    clear: both;
}

/* Subtle background glow effect */
.site-footer::before {
    content: '';
    position: absolute;
    top: -150px;
    right: -150px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 193, 7, 0.05) 0%, rgba(15, 23, 42, 0) 70%);
    pointer-events: none;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 1fr;
    gap: 60px;
    position: relative;
    z-index: 2;
}

/* 3. TYPOGRAPHY & HEADINGS */
.footer-section h3 {
    color: #ffffff;
    font-size: 14px;
    font-weight: 800;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.footer-section h3::after {
    content: '';
    flex-grow: 1;
    height: 1px;
    background: rgba(255, 255, 255, 0.1);
}

/* 4. INTERACTIVE LINKS */
.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 15px;
}

.footer-links a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 15px;
    display: inline-block;
}

.footer-links a:hover {
    color: #ffc107;
    transform: translateX(8px);
}

/* 5. BRAND SECTION */
.footer-brand img {
    height: 70px;
    margin-bottom: 25px;
    filter: drop-shadow(0 10px 15px rgba(0,0,0,0.3));
}

.footer-description {
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* 6. CONTACT CARD - GLASSMORPHISM STYLE */
.contact-info {
    background: rgba(255, 255, 255, 0.02);
    padding: 25px;
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    transition: 0.3s;
}

.contact-info:hover {
    border-color: rgba(255, 193, 7, 0.3);
    background: rgba(255, 255, 255, 0.04);
}

.contact-item {
    margin-bottom: 20px;
    display: block;
    text-decoration: none;
}

.contact-label {
    display: block;
    font-size: 11px;
    color: #ffc107;
    font-weight: 800;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: 1px;
}

.contact-value {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
}

/* 7. BOTTOM BAR */
.footer-bottom {
    margin-top: 80px;
    padding: 35px 0;
    background: #020617;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom-inner {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 13px;
    color: #64748b;
}

.social-links {
    display: flex;
    gap: 20px;
}

.social-links a {
    color: #94a3b8;
    font-size: 18px;
    transition: 0.3s;
}

.social-links a:hover {
    color: #ffffff;
}

/* 8. MOBILE OPTIMIZATION */
@media (max-width: 1100px) {
    .footer-container { grid-template-columns: 1fr 1fr; gap: 40px; }
}

@media (max-width: 650px) {
    .footer-container { grid-template-columns: 1fr; }
    .footer-bottom-inner { flex-direction: column-reverse; gap: 25px; text-align: center; }
    .footer-section h3 { justify-content: center; }
}