 /* Footer Styles - Three Column Layout */
    .footer {
        background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 100%);
        color: #1e293b;
        padding: 2.5rem 0 1.5rem;
        margin-top: auto;
        border-top: 1px solid #cbd5e1;
        box-shadow: 0 -2px 10px rgba(14, 165, 233, 0.08);
    }
    
    .footer-content {
        max-width: 1200px;
        margin: 0 auto;
    }
    
    /* Main Footer Row - Three Columns */
    .footer-main-row {
        display: grid;
        grid-template-columns: 1fr 1fr 1fr;
        gap: 3rem;
        margin-bottom: 2rem;
    }
    
    /* Column Common Styles */
    .footer-col {
        display: flex;
        flex-direction: column;
    }
    
    .section-heading {
        font-size: 1rem;
        font-weight: 700;
        color: #1e293b;
        margin: 0 0 1.25rem 0;
        text-transform: uppercase;
        letter-spacing: 0.5px;
        position: relative;
        padding-bottom: 0.5rem;
    }
    
    .section-heading::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 0;
        width: 30px;
        height: 2px;
        background: linear-gradient(90deg, #0284c7, #0ea5e9);
        border-radius: 1px;
    }
    
    /* Left Column: Brand */
    .footer-brand-col {
        padding-right: 1rem;
    }
    
    .footer-logo {
        font-size: 1.8rem;
        font-weight: 800;
        margin: 0 0 0.5rem 0;
        background: linear-gradient(90deg, #0284c7, #0ea5e9);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        letter-spacing: -0.3px;
    }
    
    .footer-tagline {
        font-size: 0.95rem;
        color: #475569;
        margin: 0 0 1rem 0;
        font-weight: 600;
    }
    
    .footer-description {
        font-size: 0.9rem;
        line-height: 1.6;
        color: #64748b;
        margin: 0;
    }
    
    /* Middle Column: Contact */
    .footer-contact-col {
        padding: 0 1rem;
        border-left: 1px solid rgba(203, 213, 225, 0.3);
        border-right: 1px solid rgba(203, 213, 225, 0.3);
    }
    
    .contact-info {
        display: flex;
        flex-direction: column;
        gap: 1.25rem;
    }
    
    .contact-item {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }
    
    .contact-label {
        font-size: 0.8rem;
        font-weight: 700;
        color: #64748b;
        text-transform: uppercase;
        letter-spacing: 0.5px;
    }
    
    .contact-value {
        font-size: 0.95rem;
        color: #475569;
        font-weight: 500;
        text-decoration: none;
        transition: color 0.2s ease;
    }
    
    .contact-value:hover {
        color: #0284c7;
    }
    
    .contact-info a.contact-value:hover {
        text-decoration: underline;
    }
    
    /* Right Column: Social Media Icons */
    .footer-media-col {
        padding-left: 1rem;
    }
    
    .social-icons-row {
        display: flex;
        gap: 0.75rem;
        flex-wrap: wrap;
    }
    
    .social-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 40px;
        height: 40px;
        background: white;
        border-radius: 8px;
        color: #0ea5e9;
        text-decoration: none;
        transition: all 0.3s ease;
        font-size: 1.1rem;
        border: 1px solid #e2e8f0;
        box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
    }
    
    .social-icon:hover {
        background: linear-gradient(135deg, #0ea5e9, #38bdf8);
        color: white;
        transform: translateY(-3px);
        box-shadow: 0 5px 15px rgba(14, 165, 233, 0.2);
        border-color: transparent;
    }
    
    /* Divider */
    .footer-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, #cbd5e1, transparent);
        margin: 1.5rem 0;
    }
    
    /* Bottom Section */
    .footer-bottom {
        text-align: center;
    }
    
    .footer-links {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        gap: 0.75rem;
        margin-bottom: 0.75rem;
    }
    
    .footer-links a {
        color: #475569;
        text-decoration: none;
        font-size: 0.85rem;
        font-weight: 500;
        transition: color 0.2s ease;
    }
    
    .footer-links a:hover {
        color: #0284c7;
    }
    
    .dot-separator {
        color: #94a3b8;
        font-size: 0.6rem;
        line-height: 1;
    }
    
    .copyright {
        font-size: 0.8rem;
        color: #64748b;
        font-weight: 400;
    }
    
    /* Responsive Design */
    @media (max-width: 992px) {
        .footer-main-row {
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        
        .footer-media-col {
            grid-column: span 2;
            padding-left: 0;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(203, 213, 225, 0.3);
        }
        
        .footer-contact-col {
            border-right: none;
        }
        
        .social-icons-row {
            justify-content: flex-start;
        }
    }
    
    @media (max-width: 768px) {
        .footer {
            padding: 2rem 0.75rem 1.25rem;
        }
        
        .footer-main-row {
            grid-template-columns: 1fr;
            gap: 2rem;
        }
        
        .footer-brand-col {
            padding-right: 0;
        }
        
        .footer-contact-col {
            border-left: none;
            border-right: none;
            padding: 1.5rem 0;
            border-top: 1px solid rgba(203, 213, 225, 0.3);
            border-bottom: 1px solid rgba(203, 213, 225, 0.3);
        }
        
        .footer-media-col {
            grid-column: span 1;
            padding-left: 0;
            padding-top: 0;
            border-top: none;
        }
        
        .social-icons-row {
            justify-content: center;
        }
        
        .footer-links {
            gap: 0.5rem;
        }
    }
    
    @media (max-width: 480px) {
        .footer {
            padding: 1.5rem 0.5rem 1rem;
        }
        
        .footer-logo {
            font-size: 1.6rem;
        }
        
        .social-icons-row {
            justify-content: center;
        }
        
        .social-icon {
            width: 36px;
            height: 36px;
            font-size: 1rem;
        }
        
        .footer-links {
            flex-direction: column;
            gap: 0.5rem;
        }
        
        .dot-separator {
            display: none;
        }
    }