/* ==================== 
   Footer Styles (Standalone)
   ==================== */

/* --- Color Variables (imported from main theme) --- */
:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-800: #334155;
    --gray-700: #475569;
    --gray-600: #64748b;
    --gray-500: #94a3b8;
    --gray-400: #cbd5e1;
    --gray-300: #e2e8f0;
    --gray-200: #f1f5f9;
    --gradient-1: linear-gradient(135deg, #2563eb, #8b5cf6);
    --gradient-2: linear-gradient(135deg, #06b6d4, #2563eb);
}

/* ==================== 
   Footer Layout
   ==================== */
.footer {
    background: var(--dark);
    color: var(--gray-300);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.footer-logo i {
    width: 40px;
    height: 40px;
    background: var(--gradient-2);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer-column p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.footer-column h3 {
    color: white;
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.footer-column h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 50px;
    height: 3px;
    background: var(--gradient-2);
}

.footer-column ul li {
    margin-bottom: 0.75rem;
}
.footer-column ul{
    list-style: none;
}
.footer-column a {
    color: var(--gray-300);
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: white;
}

.contact-info li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    margin-bottom: 1rem;
}

.contact-info i {
    color: var(--accent);
    margin-top: 0.25rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: var(--primary);
    transform: translateY(-3px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--gray-600);
}
.logo-icon {
  width: 100x;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ==================== 
   Responsive 
   ==================== */
@media (max-width: 768px) {
    .footer-grid {
        gap: 2rem;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 3rem 0 1.5rem;
    }

    .footer-column h3 {
        font-size: 1.125rem;
    }

    .social-links a {
        width: 36px;
        height: 36px;
    }
}
