/**
 * Footer Components
 * Modern footer design with widgets, navigation, and copyright
 */

/* Footer - Minimal Modern Design with Deep Ocean Glow */
.footer-minimal-modern {
    position: relative;
    background: var(--color-black);
    color: var(--color-white);
    padding: 4rem 0 2rem;
    overflow: hidden;
    min-height: auto;
}

/* Deep Ocean Glow Background */
.footer-geometric-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    background:
        radial-gradient(70% 55% at 50% 50%, #2a5d77 0%, #184058 18%, #0f2a43 34%, #0a1b30 50%, #071226 66%, #040d1c 80%, #020814 92%, #01040d 97%, #000309 100%),
        radial-gradient(160% 130% at 10% 10%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%),
        radial-gradient(160% 130% at 90% 90%, rgba(0, 0, 0, 0) 38%, #000309 76%, #000208 100%);
    pointer-events: none;
}

/* Footer Content Wrapper */
.footer-content-wrapper {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

/* Footer Brand */
.footer-brand {
    margin-bottom: 0.5rem;
}

.footer-logo img,
.footer-logo .custom-logo {
    max-width: 120px;
    height: auto;
    display: block;
    margin: 0 auto;
}

.footer-brand-name {
    margin: 0;
    font-size: 1.75rem;
    font-weight: var(--font-weight-bold);
    font-family: var(--font-family-heading);
    letter-spacing: -0.02em;
}

.footer-brand-name a {
    color: var(--color-white);
    text-decoration: none;
    transition: color var(--transition-base);
}

.footer-brand-name a:hover {
    color: var(--color-primary);
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    width: 100%;
}

.footer-nav-column {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    max-width: 100%;
}

.footer-nav-link {
    color: #e0e0e0;
    text-decoration: none;
    font-size: 1.1rem;
    font-weight: 600;
    font-family: 'Khand', sans-serif;
    transition: all var(--transition-base);
    position: relative;
    padding: 0.25rem 0;
    text-align: center;
}

.footer-nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width var(--transition-base);
}

.footer-nav-link:hover {
    color: var(--color-white);
}

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

/* Footer Social Links */
.footer-social {
    display: flex;
    gap: 1.25rem;
    align-items: center;
    justify-content: center;
}

.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    color: #b0b0b0;
    text-decoration: none;
    transition: all var(--transition-base);
    font-size: 1.1rem;
    border-radius: var(--radius-full);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social-link:hover {
    color: var(--color-primary);
    border-color: var(--color-primary);
    transform: translateY(-2px);
}

/* Footer Bottom */
.footer-bottom {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--spacing-md);
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    width: 100%;
    max-width: 800px;
    margin: 0 auto;
}

.footer-copyright {
    color: #a0a0a0;
    font-size: 0.875rem;
    margin: 0;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal-link {
    color: #a0a0a0;
    text-decoration: none;
    font-size: 0.875rem;
    font-family: var(--font-family-primary);
    transition: color var(--transition-base);
    font-weight: var(--font-weight-regular);
}

.footer-legal-link:hover {
    color: var(--color-primary);
}

.footer-legal-separator {
    color: #666666;
    font-size: 0.875rem;
}

/* Footer Widgets */
.footer-widget {
    margin-bottom: 2rem;
}

.footer-widget .widget-content {
    padding: 0;
    height: 100%;
}

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

.footer-widget ul li {
    margin-bottom: 0.75rem;
    padding-left: 0;
}

.footer-widget ul li a {
    color: #b0b0b0;
    text-decoration: none;
    font-size: 0.95rem;
    font-family: var(--font-family-primary);
    transition: all var(--transition-base);
    display: inline-block;
    position: relative;
    padding-left: 0;
}

.footer-widget ul li a::before {
    content: '→';
    margin-right: var(--spacing-sm);
    opacity: 0;
    transform: translateX(-10px);
    transition: all var(--transition-base);
    color: var(--color-primary);
}

.footer-widget ul li a:hover {
    color: var(--color-primary);
    padding-left: var(--spacing-md);
}

.footer-widget ul li a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.footer-widget p {
    color: var(--color-black);
    font-size: 0.95rem;
    line-height: 1.7;
    margin: 0 0 var(--spacing-md) 0;
    font-family: var(--font-family-primary);
}

/* Footer Copyright Section */
.footer-copyright-section {
    background: var(--color-white);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding: var(--spacing-md) 0;
    position: relative;
}

.footer-copyright-text {
    color: #5c5b5b;
    font-size: 0.9rem;
    margin: 0;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-regular);
    line-height: 1.6;
}
