

.site-footer {
    position: relative;
    overflow: hidden;
    font-family: 'Segoe UI', Arial, sans-serif;
}

.footer-banner {
    position: relative;
    background-size: 100% 100%;
    background-position: center;
    background-repeat: no-repeat;
    padding: 120px 40px 160px;  
    
}


/* logo + accreditation badge */
.footer-top {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    padding: 40px 40px 30px;   
}

.footer-logo img {
    height: 70px;
    width: auto;
}

.footer-badge {
    height: 100px;
    width: 100px;
    
}

/* columns */
.footer-columns {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col:first-child h4 {
    margin-left: 80px;
}

.footer-col p {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 auto;        
    max-width: 280px;
    text-align: center;
}

.footer-col h4 {
    font-size: 17px;
    font-weight: 700;
    margin: 0 0 18px;
    color: #fff;
       
}

.footer-col ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 5px;
}

.footer-col ul li a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.2s ease;
}

.footer-col ul li a:hover {
    color: #fff;
    text-decoration: underline;
}

/* connect column */
.footer-socials {
    display: flex;
    gap: 12px;
    margin-bottom: 20px;
}

.footer-socials a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgb(255, 255, 255);
    text-decoration: none;
    transition: background 0.2s ease;
}

.footer-socials a img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.25);
}

.footer-contact-btn {
    display: inline-block;
    background: #b80031;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-decoration: none;
    text-transform: uppercase;
    padding: 12px 22px;
    border-radius: 4px;
    transition: background 0.2s ease;
}

.footer-contact-btn:hover {
    background: #EF365C;
}

/* bottom bar */
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding-top: 5px;
    text-align: right;
}

.footer-bottom p {
    margin: 0;
    font-size: 13px;
    color: rgba(255, 255, 255, 0.75);
}

/* responsive */


/* Tablets / small desktops */
@media (max-width: 1024px) {
    .footer-banner {
        padding: 60px 30px 100px;
    }

    .footer-columns {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
        text-align: center;
    }

    .footer-col p {
        margin: 0 auto;
        max-width: 320px;
    }

    .footer-col ul {
        display: inline-block;
        text-align: left;
    }

    .footer-connect {
        align-items: center;
    }

    .footer-socials {
        justify-content: center;
    }
}



/* ==========================================================================
   Tablets portrait — 768px
   ========================================================================== */
@media (max-width: 768px) {
    .footer-top {
        display: none;
    }

    .footer-badge {
        height: 80px;
        width: 80px;
    }

    .footer-banner {
        background-size: cover;
        padding: 50px 24px 90px;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "about   about"
            "links   connect"
            "dest    dest";
        gap: 36px;
    }

    .footer-col:nth-child(1) { grid-area: about; }
    .footer-col:nth-child(2) { grid-area: links; }
    .footer-col:nth-child(4) { grid-area: connect; }

    .footer-col:nth-child(3) {
        grid-area: dest;
        text-align: center;
    }

    .footer-col:nth-child(3) h4 {
        text-align: center;
    }

    .footer-col:nth-child(3) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 40px;
        max-width: 240px;
        margin: 0 auto;
        text-align: left;
    }

    .footer-col:nth-child(3) ul li {
        margin-bottom: 0;
    }

    .footer-col:first-child {
        margin-left: 0;
    }

    .footer-col:first-child h4 {
        margin-left: 0;
    }

    .footer-contact-btn {
        font-size: 11px;
        padding: 8px 14px;
        white-space: nowrap;
    }

    .footer-bottom {
        text-align: center;
        padding-top: 16px;
    }
}

/* ==========================================================================
   Mobile — 480px
   ========================================================================== */
@media (max-width: 480px) {
    .footer-top {
        flex-direction: column;
        padding: 24px 16px 16px;
        gap: 14px;
    }

    .footer-banner {
        background-size: cover;
        padding: 40px 16px 70px;
    }

    .footer-columns {
        display: grid;
        grid-template-columns: 1fr 1fr;
        grid-template-areas:
            "about   about"
            "links   connect"
            "dest    dest";
        gap: 28px;
    }

    .footer-col:nth-child(1) { grid-area: about; }
    .footer-col:nth-child(2) { grid-area: links; }
    .footer-col:nth-child(4) { grid-area: connect; }

    .footer-col:nth-child(3) {
        grid-area: dest;
        text-align: center;
    }

    .footer-col:nth-child(3) h4 {
        text-align: center;
    }

    .footer-col:nth-child(3) ul {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 30px;
        max-width: 220px;
        margin: 0 auto;
        text-align: left;
    }

    .footer-col:nth-child(3) ul li {
        margin-bottom: 0;
    }

    .footer-col h4 {
        font-size: 16px;
    }

    .footer-col p,
    .footer-col ul li a {
        font-size: 13px;
    }

    .footer-col p {
        max-width: 100%;
    }

    .footer-contact-btn {
        font-size: 11px;
        padding: 8px 14px;
        white-space: nowrap;
        display: inline-block;
        text-align: center;
    }

    .footer-bottom p {
        font-size: 12px;
    }
}