.apurwa-footer {
    background-color: #1E2B34;
    color: #F8F4E8;
    padding: 80px 20px 20px;
    font-family: var(--e-global-typography-text-font-family), sans-serif;
    position: relative;
    overflow: hidden;
}
.apurwa-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.apurwa-footer-col {
    display: flex;
    flex-direction: column;
    gap: 20px;
}
.apurwa-footer-logo {
    font-size: 28px;
    font-weight: 700;
    color: #D97A32;
    margin: 0;
    font-family: var(--e-global-typography-primary-font-family), serif;
}
.apurwa-footer-desc {
    line-height: 1.6;
    opacity: 0.8;
    margin: 0;
}
.apurwa-footer-heading {
    font-size: 20px;
    font-weight: 600;
    margin: 0;
    color: #FFFFFF;
}
.apurwa-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.apurwa-footer-links a {
    color: #F8F4E8;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}
.apurwa-footer-links a:hover {
    color: #D97A32;
    opacity: 1;
    transform: translateX(5px);
}
.apurwa-socials {
    display: flex;
    gap: 15px;
}
.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255,255,255,0.1);
    color: #FFF;
    text-decoration: none;
    transition: all 0.3s ease;
}
.social-link:hover {
    background: #D97A32;
    transform: translateY(-3px);
}
.apurwa-newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}
.apurwa-newsletter-form input {
    padding: 12px 15px;
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    color: #FFF;
    border-radius: 4px;
    outline: none;
}
.apurwa-newsletter-form input:focus {
    border-color: #D97A32;
}
.apurwa-newsletter-form button {
    padding: 12px 20px;
    background: #D97A32;
    color: #FFF;
    border: none;
    border-radius: 4px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.3s;
}
.apurwa-newsletter-form button:hover {
    background: #5E7D2B;
}
.apurwa-footer-bottom {
    text-align: center;
    padding-top: 20px;
    opacity: 0.6;
    font-size: 14px;
}

/* Global Animation Utilities (Premium Effects) */
.glass-effect {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}
.hover-zoom {
    transition: transform 0.5s ease;
}
.hover-zoom:hover {
    transform: scale(1.05);
}
.scroll-fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}
.scroll-fade-up.is-visible {
    opacity: 1;
    transform: translateY(0);
}