/* ========================================
   GRAVITY FOOTER STYLES
   ======================================== */



.gravity-footer {
    /* background: #000103; */
    background-color: #162645;
    color: white;
    font-family: 'Segoe UI', 'Lato', 'Archivo', sans-serif;
    width: 100%;
    padding: 64px 0 32px 0;
    box-sizing: border-box;

}



.gravity-footer__container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 36px;
}

/* Main Grid Layout */
.gravity-footer__main {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr 1.1fr;
    gap: 40px;
    margin-bottom: 32px;
    align-items: start;
}

/* Column Styling */
.gravity-footer__col {
    display: flex;
    flex-direction: column;
    font-family: 'Archivo', 'Lato', 'Inter', sans-serif;

}

/* Heading Styling - Now inside each column */
.footer-heading {
    color: #56b9ff !important;
    font-size: 22px;
    font-family: 'lato', 'Inter', sans-serif;
    font-weight: 600;
    letter-spacing: 0.2px;
    margin: 0 0 16px 0;
    padding: 0;
    text-align: left;
    line-height: 1.3;

}

/* Brand Column - Center Logo Above Description */
.gravity-footer__col--brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.gravity-footer__col--brand .gravity-footer__logo {
    width: 154px;
    height: auto;
    margin-bottom: 22px;
}

.gravity-footer__desc {
    font-size: 15px;
    margin: 12px 0 16px 0;
    color: #fff;
    line-height: 1.6;
    text-align: justify;
}

/* Social icons */
.gravity-footer__social {
    display: flex;
    gap: 12px;
    margin-top: 12px;
}

.gravity-footer__social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    border-radius: 60%;
    background: transparent;
    color: #fff;
    transition: all 0.24s;
    font-size: 20px;
    text-decoration: none;
}

.gravity-footer__social a:hover {
    background: #56b9ff;
    color: #fff;
    border-color: transparent;
    transform: translateY(-4px);
    box-shadow: 0 2px 10px rgba(16, 195, 23, 0.08);
}

/* List Styling */
.gravity-footer__col ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.gravity-footer__col ul li {
    font-size: 16px;
    padding: 7px 0;
    color: #fff;
    text-align: left;
}

.gravity-footer__col ul li a {
    color: #fff;
    text-decoration: none;
    transition: color 0.16s;
    display: inline-block;
}

.gravity-footer__col ul li a:hover {
    color: #56b9ff;
}

/* Contact Column */
.gravity-footer__contact-list li {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 14px;
    color: #bfcfda;
    line-height: 1.7;
    padding: 6px 0;
}

.gravity-footer__contact-list i {
    font-size: 19px;
    background: #56b9ff;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    margin-top: 5px;
    flex-shrink: 0;
}

.gravity-footer__contact-list a {
    color: #bfcfda;
    text-decoration: none;
    transition: color 0.16s;
}

.gravity-footer__contact-list a:hover {
    color: #10C317;
}

/* Divider */
.gravity-footer__divider {
    height: 1.5px;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.06) 50%, transparent 100%);
    margin: 24px 0;
}

/* Bottom Section */
.gravity-footer__bottom {
    padding-left: 12px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    gap: 14px;
}

.gravity-footer__badges {
    display: flex;
    gap: 16px;
    align-items: center;
    flex: 1 1 auto;
}

.gravity-footer__badges img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* ---------------------------
   ISO Badge Group Styling
   - keeps two ISO images on same row
   - label centered under them
   --------------------------- */
.iso-badges-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    min-width: 140px;
    /* ensures a bit of space on narrow screens */
}

/* row containing the two iso images */
.iso-badges-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* ensure anchor doesn't include the label */
.iso-badges-row a {
    display: inline-block;
    line-height: 0;
    /* remove extra descender gaps */
}

/* image sizing (adjusts in media queries below) */
.iso-badges-row img {
    height: 30px;
    width: auto;
    object-fit: contain;
    display: block;
}

/* text under the two badges */
.iso-certified-text {
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    margin-top: 4px;
    text-align: center;
}

/* Copyright */
.gravity-footer__copyright {
    flex-shrink: 0;
    color: #56b9ff;
    font-size: 14px;
    text-align: right;
}

.gravity-footer__copyright a {
    color: #56b9ff;
}

/* ========================================
   RESPONSIVE DESIGN
   (keeps your original breakpoints but makes ISO badges adapt)
   ======================================== */

/* Large Tablets & Small Desktops (max-width: 1200px) */
@media (max-width: 1200px) {
    .gravity-footer__container {
        padding: 0 24px;
    }

    .gravity-footer__main {
        grid-template-columns: 1.2fr 1fr 1fr 1fr 1.1fr;
        gap: 30px;
    }

    .footer-heading {
        font-size: 17px;
        font-family: 'lato', 'Inter', sans-serif;
    }
}

/* Tablets (max-width: 992px) */
@media (max-width: 992px) {
    .gravity-footer {
        padding: 48px 0 24px 0;
    }

    .gravity-footer__container {
        padding: 0 20px;
    }

    .gravity-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 32px 24px;
    }

    .gravity-footer__col--brand {
        grid-column: 1 / -1;
    }

    .gravity-footer__logo {
        width: 130px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 12px;
    }

    .gravity-footer__bottom {
        flex-direction: column;
        text-align: center;
    }

    .gravity-footer__badges {
        justify-content: center;
        width: 100%;
    }

    .gravity-footer__copyright {
        width: 100%;
        text-align: center;
    }

    /* slightly reduce ISO icons so they fit in smaller widths */
    .iso-badges-row img {
        height: 40px;
    }
}

/* Mobile Landscape (max-width: 768px) */
@media (max-width: 768px) {
    .gravity-footer {
        padding: 40px 0 20px 0;
    }

    .gravity-footer__container {
        padding: 0 16px;
    }

    .gravity-footer__main {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .gravity-footer__logo {
        width: 110px;
    }

    .gravity-footer__desc {
        font-size: 13px;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 12px;
    }

    .gravity-footer__col ul li {
        font-size: 13px;
        padding: 6px 0;
    }

    .gravity-footer__contact-list li {
        font-size: 13px;
    }

    .gravity-footer__badges img {
        height: 30px;
    }

    .iso-badges-row img {
        height: 36px;
    }

    .gravity-footer__copyright {
        font-size: 13px;
    }
}

/* Mobile Portrait (max-width: 576px) */
@media (max-width: 576px) {
    .gravity-footer {
        padding: 32px 0 16px 0;
    }

    .gravity-footer__container {
        padding: 0 12px;
    }

    .gravity-footer__main {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .gravity-footer__col--brand {
        grid-column: 1;
        margin-bottom: 8px;
    }

    .gravity-footer__logo {
        width: 100px;
    }

    .gravity-footer__desc {
        font-size: 12px;
        margin: 10px 0 14px 0;
    }

    .footer-heading {
        font-size: 15px;
        margin-bottom: 10px;
    }

    .gravity-footer__col ul li {
        font-size: 13px;
        padding: 5px 0;
    }

    .gravity-footer__contact-list li {
        font-size: 12px;
        padding: 5px 0;
    }

    .gravity-footer__social {
        gap: 10px;
        margin-top: 10px;
    }

    .gravity-footer__social a {
        width: 36px;
        height: 36px;
        font-size: 18px;
    }

    .gravity-footer__divider {
        margin: 20px 0;
    }

    .gravity-footer__badges {
        gap: 12px;
    }

    .gravity-footer__badges img {
        height: 26px;
    }

    .iso-badges-row img {
        height: 30px;
    }

    .gravity-footer__copyright {
        font-size: 12px;
    }
}

/* Extra Small Mobile (max-width: 400px) */
@media (max-width: 400px) {
    .gravity-footer__container {
        padding: 0 10px;
    }

    .gravity-footer__logo {
        width: 90px;
    }

    .gravity-footer__desc {
        font-size: 11px;
    }

    .footer-heading {
        font-size: 14px;
    }

    .gravity-footer__col ul li {
        font-size: 12px;
    }

    .gravity-footer__contact-list li {
        font-size: 11px;
    }

    .gravity-footer__badges img {
        height: 24px;
    }

    .iso-badges-row img {
        height: 24px;
    }

    .gravity-footer__copyright {
        font-size: 11px;
    }
}

/* Accessibility */
.gravity-footer a:focus-visible {
    outline: 2px solid #10C317;
    outline-offset: 2px;
    border-radius: 3px;
}