/*--------------------------------------------------------------
# Footer - Professional Redesign
--------------------------------------------------------------*/
.site-footer {
    background: linear-gradient(135deg, #1e293b 0%, #334155 50%, #475569 100%);
    color: #e2e8f0;
    padding: 60px 0 0;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 50%, #64748B 100%);
    z-index: 2;
}

.site-footer::after {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(226, 232, 240, 0.15);
}

.footer-section {
    position: relative;
}

.footer-about {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-logo-link {
    display: flex;
    align-items: center;
    gap: 12px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    padding: 8px 0;
}

.footer-logo-link:hover {
    opacity: 0.9;
    text-decoration: none;
    transform: translateX(5px);
}

.footer-logo img {
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    transition: transform 0.3s ease;
}

.footer-logo-link:hover img {
    transform: scale(1.05);
}

.footer-brand {
    font-size: 1.3rem;
    font-weight: 700;
    color: #f1f5f9;
    letter-spacing: 0.5px;
}

.footer-description {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #cbd5e1;
    font-size: 1rem;
    max-width: 90%;
}

.footer-social {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.2) 0%, rgba(16, 185, 129, 0.2) 100%);
    color: #f1f5f9;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-link:hover {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.4) 0%, rgba(16, 185, 129, 0.4) 100%);
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.3);
    color: #ffffff;
    text-decoration: none;
    border-color: rgba(255, 255, 255, 0.2);
}

.footer-section h4 {
    margin-bottom: 20px;
    color: #f1f5f9;
    font-size: 1.2rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 2px;
    background: linear-gradient(90deg, #3B82F6 0%, #10B981 100%);
    border-radius: 1px;
}

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

.footer-links li {
    margin-bottom: 12px;
    position: relative;
    padding-left: 15px;
}

.footer-links li::before {
    content: '▸';
    position: absolute;
    left: 0;
    color: #3B82F6;
    font-size: 0.8rem;
    transition: all 0.3s ease;
}

.footer-links a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.95rem;
    position: relative;
}

.footer-links a:hover {
    color: #f1f5f9;
    text-decoration: none;
    padding-left: 5px;
}

.footer-links li:hover::before {
    color: #10B981;
    transform: translateX(3px);
}

/* Footer button colors for modal triggers */
.footer-modal-trigger.footer-btn {
    color: #cbd5e1 !important;
    transition: color 0.3s ease !important;
}

.footer-modal-trigger.footer-btn:hover {
    color: #f1f5f9 !important;
    text-decoration: underline !important;
}

/* Remove green background from volunteer button in footer */
.footer-modal-trigger.fab-volunteer {
    background: none !important;
    border: none !important;
    box-shadow: none !important;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 15px;
    padding: 8px 0;
    transition: all 0.3s ease;
}

.contact-item:hover {
    transform: translateX(5px);
}

.contact-item i {
    width: 20px;
    color: #3B82F6;
    font-size: 1.1rem;
    text-align: center;
}

.contact-item a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-item a:hover {
    color: #f1f5f9;
    text-decoration: none;
}

.contact-item span {
    color: #cbd5e1;
}

.footer-bottom {
    text-align: center;
    padding: 30px 0 20px;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 -20px;
    backdrop-filter: blur(10px);
}

.footer-bottom-content {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom p {
    margin: 0;
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-legal {
    display: flex;
    align-items: center;
    gap: 15px; /* Increased gap */
    flex-wrap: wrap;
    justify-content: center;
}

.footer-legal .separator {
    color: rgba(148, 163, 184, 0.5);
    font-size: 0.8rem;
    margin: 0 5px; /* Added margin */
}

.footer-legal a {
    color: #cbd5e1;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 0.9rem;
    padding: 4px 8px;
    border-radius: 4px;
}

.footer-legal a:hover {
    color: #f1f5f9;
    background: rgba(59, 130, 246, 0.2);
    text-decoration: none;
}

/* Solid Fix: Immediately hide FAB container before it's positioned */
.fab-container {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
}

/* Solid Fix: Ensure FAB container is correctly positioned and visible once ready */
body .fab-container {
    opacity: 1 !important;
    visibility: visible !important;
}

.cookie-notice {
    margin-top: 15px;
    padding-top: 15px;
    border-top: 1px solid rgba(148, 163, 184, 0.2);
    text-align: center;
}

.cookie-notice p {
    color: #94a3b8;
    font-size: 0.8rem;
    line-height: 1.4;
}

.cookie-notice a {
    color: #3B82F6;
    text-decoration: none;
    transition: color 0.3s ease;
}

.cookie-notice a:hover {
    color: #1D4ED8;
    text-decoration: underline;
}

