/* Custom Premium Footer Styles */

:root {
    --footer-bg: #eef4ff;
    --footer-text-normal: #1a2b3c;
    --footer-border: #e5e7eb;
    --footer-accent: #0050cc;
    --footer-white: #ffffff;
}

.custom-footer-section {
    background-color: var(--footer-bg);
    color: var(--footer-text-normal);
    padding: 80px 0 40px 0;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-top: 1px solid var(--footer-border);
}

.custom-footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* 4-column links layout */
.custom-footer-links {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 48px;
}

.custom-footer-col h4 {
    font-size: 18px;
    font-weight: 700;
    color: var(--footer-text-normal);
    margin-bottom: 24px;
    letter-spacing: -0.3px;
    position: relative;
    display: inline-block;
    padding-bottom: 8px;
}

.custom-footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.custom-footer-col ul li a {
    font-size: 14px;
    font-weight: 600;
    color: rgba(26, 43, 60, 0.75);
    text-decoration: none;
    transition: all 0.25s ease;
    display: inline-block;
}

.custom-footer-col ul li a:hover {
    color: var(--footer-accent);
    transform: translateX(4px);
}

/* Contact information items */
.custom-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 18px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1.5;
    color: rgba(26, 43, 60, 0.75);
}

.custom-footer-contact-item svg {
    width: 20px;
    height: 20px;
    stroke: var(--footer-accent);
    fill: none;
    stroke-width: 2;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Divider lines */
.custom-footer-divider {
    border: none;
    border-top: 1px solid var(--footer-border);
    margin: 0;
}

/* Middle logo + socials area */
.custom-footer-middle {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.custom-footer-logo img {
    height: 72px;
    width: auto;
    display: block;
}

.custom-footer-socials {
    display: flex;
    align-items: center;
    gap: 20px;
}

.custom-footer-socials .follow-text {
    font-size: 15px;
    font-weight: 700;
    color: var(--footer-text-normal);
}

.custom-footer-social-icons {
    display: flex;
    gap: 12px;
}

.custom-footer-social-icon {
    width: 42px;
    height: 42px;
    background-color: var(--footer-white);
    border: 1px solid var(--footer-border);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--footer-text-normal);
    text-decoration: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 6px rgba(20, 28, 37, 0.02);
}

.custom-footer-social-icon svg {
    width: 18px;
    height: 18px;
    stroke: currentColor;
    fill: none;
    stroke-width: 2;
    transition: transform 0.3s ease;
}

.custom-footer-social-icon:hover {
    background-color: var(--footer-accent);
    border-color: var(--footer-accent);
    color: var(--footer-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 80, 204, 0.25);
}

.custom-footer-social-icon:hover svg {
    transform: scale(1.05);
}

/* Bottom disclaimer and copyright area */
.custom-footer-bottom {
    padding: 32px 0 0 0;
}

.custom-footer-disclaimer {
    font-size: 12px;
    line-height: 1.6;
    color: rgba(26, 43, 60, 0.6);
    margin-bottom: 16px;
}

.custom-footer-disclaimer strong {
    color: var(--footer-text-normal);
}

.custom-footer-copyright {
    font-size: 13px;
    font-weight: 600;
    color: rgba(26, 43, 60, 0.6);
    margin: 0;
}

/* Responsive viewports */
@media (max-width: 991px) {
    .custom-footer-links {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px;
    }

    .custom-footer-middle {
        flex-direction: column;
        gap: 20px;
        align-items: flex-start;
    }

    .custom-footer-socials {
        width: 100%;
        justify-content: space-between;
    }
}

@media (max-width: 575px) {
    .custom-footer-section {
        padding: 60px 0 30px 0;
    }

    .custom-footer-links {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .custom-footer-socials {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }
}