@import url("https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,300..800;1,300..800&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&display=swap");

:root {
    --primary: #eff4f8;
    --secondary: #1d466e;
    --accent: #d9a61f;
    --accent2: #40b3e5;
    --text: #1f2328;
    --white: #f8f9fa;
    --shadow: #1d466e33;
    --dot-active: #333;
    --dot-inactive: #bbb;
    --con-padding: clamp(2rem, 6vw, 5rem);
    --section-v: clamp(3rem, 6vw, 5rem);
}

#footer {
    width: 100%;
    background-color: var(--secondary);
    color: var(--primary);
    font-family: "Poppins", sans-serif;
}

#footer .footer-main {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    padding: clamp(3rem, 6vw, 5rem) var(--con-padding) 2rem;
    align-items: start;
}

#footer .footer-col h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1rem;
    letter-spacing: 0.01em;
}

#footer .footer-about p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: rgba(239, 244, 248, 0.75);
    max-width: 38rem;
}

#footer .footer-nav ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 0;
    margin: 0;
}

#footer .footer-nav a {
    text-decoration: none;
    color: rgba(239, 244, 248, 0.75);
    font-size: 0.95rem;
    font-weight: 400;
    transition: color 0.2s ease;
}

#footer .footer-nav a:hover {
    color: var(--accent);
}

#footer .social-icons {
    display: flex;
    gap: 0.85rem;
}

#footer .social-icons a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition:
        background 0.25s ease,
        transform 0.25s ease;
}

#footer .social-icons a svg {
    width: 18px;
    height: 18px;
}

#footer .social-icons a svg path {
    fill: var(--primary);
}

#footer .social-icons a:hover {
    background: var(--accent);
    transform: translateY(-2px);
}

#footer .footer-divider {
    height: 1px;
    background: rgba(239, 244, 248, 0.12);
    margin: 0 var(--con-padding);
}

#footer .footer-bottom {
    padding: 1.25rem var(--con-padding);
    text-align: center;
}

#footer .footer-bottom p {
    font-size: 0.85rem;
    color: rgba(239, 244, 248, 0.6);
    margin: 0;
}

@media (max-width: 768px) {
    #footer .footer-main {
        grid-template-columns: 1fr;
        gap: 2.25rem;
        text-align: start;
        padding: 2.5rem var(--con-padding) 1.5rem;
    }

    #footer .footer-about p {
        margin: 0 auto;
    }

    #footer .footer-nav ul {
        align-items: start;
    }

    #footer .social-icons {
        justify-content: start;
    }
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.footer-brand__logo {
    width: 160px;
    height: auto;
    object-fit: contain;
    flex-shrink: 0;
}
