/* Footer Styles */
.akaf-custom-footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: #f8fafc;
    margin-top: 4rem;
    padding: 4rem 0 1.5rem;
    position: relative;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
}

.akaf-custom-footer::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #f59e0b, #ef4444, #8b5cf6);
}

.akaf-footer-content {
    max-width: var(--max-width, 1200px);
    margin: 0 auto;
    padding: 0 1.5rem;
}

.akaf-footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-bottom: 3rem;
}

/* Brand column */
.akaf-footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.akaf-footer-logo {
    width: 90px;
    height: auto;
    background: #ffffff;
    padding: 6px;
    border-radius: 12px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.akaf-footer-brand-title {
    font-size: 1.6rem;
    font-weight: 700;
    margin: 0;
    background: linear-gradient(135deg, #f59e0b, #ef4444);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.akaf-footer-tagline {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

/* Columns */
.akaf-footer-col {
    display: flex;
    flex-direction: column;
    gap: 0.9rem;
}

.akaf-footer-heading {
    font-size: 1.15rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 0.3rem 0;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.akaf-footer-heading i {
    color: #f59e0b;
    font-size: 1.05rem;
}

.akaf-footer-link {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    color: #cbd5e1;
    text-decoration: none;
    font-size: 0.95rem;
    transition: color 0.2s ease, transform 0.2s ease;
}

.akaf-footer-link i {
    width: 18px;
    text-align: center;
    color: #94a3b8;
    transition: color 0.2s ease;
}

.akaf-footer-link:hover {
    color: #ffffff;
    transform: translateX(3px);
}

.akaf-footer-link:hover i {
    color: #f59e0b;
}

/* Location */
.akaf-footer-address {
    color: #cbd5e1;
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.akaf-footer-location-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.1rem;
    border-radius: 999px;
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: #ffffff;
    text-decoration: none;
    font-size: 0.85rem;
    font-weight: 600;
    width: fit-content;
    box-shadow: 0 4px 14px rgba(239, 68, 68, 0.35);
    transition: all 0.25s ease;
}

.akaf-footer-location-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.5);
    color: #ffffff;
}

/* Social */
.akaf-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.akaf-footer-social a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: #ffffff;
    font-size: 1.15rem;
    text-decoration: none;
    transition: all 0.25s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.akaf-footer-social a:hover {
    background: #f59e0b;
    border-color: #f59e0b;
    color: #0f172a;
    transform: translateY(-3px);
}

/* Bottom bar */
.akaf-footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(148, 163, 184, 0.15);
    text-align: center;
}

.akaf-staff-access-link {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-decoration: none;
    transition: color 0.2s ease;
}

.akaf-staff-access-link:hover {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: underline;
}

.akaf-copyright {
    margin: 0;
    font-size: 0.85rem;
    color: #94a3b8;
    direction: ltr !important;
}

.akaf-copyright a {
    color: #f59e0b;
    text-decoration: none;
}

/* Dark theme support */
.dark-theme .akaf-custom-footer {
    background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

/* RTL */
[dir="rtl"] .akaf-footer-grid {
    direction: rtl;
}

[dir="rtl"] .akaf-footer-link {
    direction: rtl;
}

[dir="rtl"] .akaf-footer-link i {
    margin-left: 0;
    margin-right: 0;
}

[dir="rtl"] .akaf-footer-link:hover {
    transform: translateX(-3px);
}

[dir="rtl"] .akaf-footer-location-btn {
    direction: rtl;
}

/* Responsive */
@media (max-width: 900px) {
    .akaf-footer-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 600px) {
    .akaf-footer {
        padding: 2.5rem 0 1.25rem;
    }

    .akaf-footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2.25rem;
    }

    .akaf-footer-brand,
    .akaf-footer-col,
    .akaf-footer-location {
        align-items: center;
    }

    .akaf-footer-link,
    .akaf-footer-location-btn {
        justify-content: center;
    }

    .akaf-footer-social {
        justify-content: center;
    }
} 