﻿
.site-footer {
    background: #0f172a; /* Premium Dark Slate */
    font-family: 'Outfit', 'Segoe UI', sans-serif;
    color: #cbd5e1;
    position: relative;
    margin-top: 0;
}

/* Wave top */
.footer-wave {
    line-height: 0;
    margin-bottom: -2px;
}

    .footer-wave svg {
        width: 100%;
        height: 0px;
        display: block;
    }

p:last-of-type {
    /* margin-bottom: 0; */
    font-family: 'Roboto', sans-serif;
    /* font-size: 20px; */
    color: #b3abab !important;
    padding-bottom: 15px;
    /* line-height: 22px; */
    margin-bottom: 0;
}

.footer-inner {
    padding: 50px 0 36px;
}

/* Grid layout */
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 48px 36px;
    align-items: start;
}

/* Brand column */
.footer-brand {
}

.footer-logo-link {
    display: inline-block;
    margin-bottom: 14px;
}

.footer-logo {
    background-image: url('../Admin/images/logo.jpg');
    width: 130px;
    height: 60px;
    background-repeat: no-repeat;
    background-position: center;
    background-size: contain;
    display: inline-block;
}

.footer-tagline {
    font-size: 13.5px;
    line-height: 1.7;
    color: #cbd5e1;
    margin: 0 0 18px;
    max-width: 230px;
}

    .footer-tagline label {
        color: inherit !important;
    }

/* Social icons */
.social-links {
    display: flex;
    gap: 10px;
    list-style: none;
    padding: 0;
    margin: 0;
}

    .social-links li {
        margin: 0;
    }

    .social-links a {
        width: 36px;
        height: 36px;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: #94a3b8;
        background: rgba(255,255,255,0.06);
        border: 1px solid rgba(255,255,255,0.10);
        transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s;
    }

        .social-links a:hover {
            background: #0077ff;
            color: #ffffff;
            border-color: #0077ff;
            transform: translateY(-3px);
        }

        .social-links a svg {
            display: block;
            transition: transform 0.2s;
        }

        .social-links a:hover svg {
            transform: scale(1.1);
        }

/* Column title */
.footer-title {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    color: #ffffff;
    margin: 0 0 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid #0077ff;
    display: inline-block;
}

    .footer-title label {
        color: inherit !important;
    }

/* Contact list */
.footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

    .footer-list li {
        display: flex;
        gap: 12px;
        margin-bottom: 16px;
        align-items: flex-start;
    }

.fc-icon {
    width: 32px;
    height: 32px;
    background: rgba(0,119,255,0.15);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: #60a5fa;
    margin-top: 1px;
    transition: background-color 0.25s, color 0.25s, transform 0.2s;
}

.footer-list li:hover .fc-icon {
    background: #0077ff;
    color: #ffffff;
    transform: scale(1.05);
}

.fc-icon svg {
    display: block;
}

.fc-label {
    display: block;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.8px;
    color: #94a3b8; /* Slate-400 */
    margin-bottom: 1px;
}

    .fc-label label {
        color: inherit !important;
    }

.fc-value {
    font-size: 13.5px;
    color: #cbd5e1;
    text-decoration: none;
    transition: color 0.2s;
    white-space: pre-line;
}

    .fc-value:hover {
        color: #60a5fa;
    }

/* Quick links nav */
.footer-nav-list li {
    margin-bottom: 10px;
}

    .footer-nav-list li a {
        font-size: 13.5px;
        color: #cbd5e1; /* Slate-300 */
        text-decoration: none;
        display: flex;
        align-items: center;
        gap: 8px;
        transition: color 0.2s, padding-left 0.2s;
    }

        .footer-nav-list li a::before {
            content: '';
            display: inline-block;
            width: 5px;
            height: 5px;
            border-right: 1.5px solid #0077ff;
            border-top: 1.5px solid #0077ff;
            transform: rotate(45deg);
            opacity: 0.8;
            transition: opacity 0.2s, transform 0.2s, border-color 0.2s;
        }

        .footer-nav-list li a:hover {
            color: #60a5fa;
            padding-left: 4px;
        }

            .footer-nav-list li a:hover::before {
                opacity: 1;
                border-color: #60a5fa;
                transform: rotate(45deg) scale(1.2);
            }

/* Follow text */
.footer-follow-text {
    font-size: 13px;
    color: #cbd5e1;
    line-height: 1.7;
    margin: 0 0 20px;
}

    .footer-follow-text label {
        color: inherit !important;
    }

/* CTA button */
.footer-cta-btn {
    display: inline-flex;
    align-items: center;
    background: linear-gradient(135deg, #0077ff, #6c47ff);
    color: #ffffff !important;
    padding: 10px 20px;
    border-radius: 10px;
    font-size: 13.5px;
    font-weight: 700;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
    letter-spacing: 0.3px;
}

    .footer-cta-btn:hover {
        opacity: 0.9;
        transform: translateY(-2px);
    }

/* Bottom bar */
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.06);
    padding: 18px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-copy {
    font-size: 12.5px;
    color: #94a3b8;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.footer-bottom-link {
    font-size: 12.5px;
    color: #94a3b8;
    text-decoration: none;
    transition: color 0.2s;
}

    .footer-bottom-link:hover {
        color: #60a5fa;
    }

/* Dot separator created purely with CSS */
.footer-sep {
    display: inline-block;
    width: 3.5px;
    height: 3.5px;
    background-color: #475569;
    border-radius: 50%;
    margin: 0 10px;
    vertical-align: middle;
}

/* Legacy helpers (kept for resource-key labels) */
.hover-effact-css {
    color: #ffffff !important;
}

    .hover-effact-css:hover {
        color: #60a5fa !important;
        cursor: pointer;
    }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 640px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px 0;
    }

    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
    }

    .footer-bottom-links {
        justify-content: center;
    }

    .footer-inner {
        padding: 36px 0 28px;
    }
}
