﻿/* =========================================
   FOOTER COMPONENT STYLES
   ========================================= */

.footer-section {
    background-color: #020617; /* Darkest Slate */
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 5rem 0 2rem;
    position: relative;
    overflow: hidden;
    color: #94a3b8;
}

/* Background Pattern */
.footer-section::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 30px 30px;
    z-index: 0;
    poPoppins-events: none;
    opacity: 0.5;
}

.footer-section .container {
    position: relative;
    z-index: 1;
}

/* Brand Section */
.footer-brand {
    display: flex;
    flex-direction: column; /* Stack logo and text */
    align-items: flex-start;
    gap: 1rem;
}

.footer-logo {
    width: auto;
    height: 60px; /* Increased for landscape visibility */
    max-width: 250px;
    object-fit: contain;
    filter: drop-shadow(0 0 10px rgba(59, 130, 246, 0.3));
}

.brand-text h5 {
    color: #f8fafc;
    letter-spacing: -0.5px;
}

.footer-desc {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 90%;
}

/* Social Icons */
.footer-social {
    display: flex;
    gap: 0.75rem;
}

.social-link {
    width: 36px;
    height: 36px;
    background: rgba(255, 255, 255, 0.05);
    color: #cbd5e1;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: #3b82f6;
    color: white;
    transform: translateY(-3px);
    border-color: #3b82f6;
    box-shadow: 0 4px 10px rgba(59, 130, 246, 0.3);
}

/* Headlines */
.footer-heading {
    color: #f8fafc;
    font-size: 1.1rem;
    font-weight: 700;
    margin-top: 0; /* Ensure alignment with logo */
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-heading::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 3px;
    background: #3b82f6;
    border-radius: 3px;
}

/* Navigation Links */
.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-nav li {
    margin-bottom: 0.75rem;
}

.footer-nav a {
    color: #94a3b8;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}

.footer-nav a:hover {
    color: #38bdf8;
    transform: translateX(5px);
}

/* Contact List */
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-contact li {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.25rem;
    font-size: 0.95rem;
}

.footer-contact i {
    color: #3b82f6;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Divider & Bottom */
.footer-divider {
    border-color: rgba(255, 255, 255, 0.1);
    margin: 3rem 0 2rem;
}

.copyright-text {
    font-size: 0.9rem;
    color: #64748b;
}
.credit-text {
    font-size: 0.9rem;
    color: #64748b;
}

/* Responsive Footer Padding */
@media (max-width: 768px) {
    .footer-section {
        padding: 2rem 0 1.5rem !important; /* Reduced padding for mobile */
    }
}


