/* ====================================================== */
/* ===================  Footer Section  ================= */
/* ====================================================== */

/* ===== Overall Footer Container ===== */
.footer-section {
    background-color: var(--secandry-color-2);
    text-align: center;
    padding: 48px 32px 16px 32px;
}

/* ===== Top Area (Heading + CTA Button) ===== */
.footer-top {
    max-width: 1050px;
    margin: 0 auto 60px;
}

.footer-top h2 {
    font-size: 28px;
    font-weight: var(--font-weight-medium);
    margin-bottom: 44px;
    line-height: 38px;
    color: var(--white);
}
img {
    display: inline-block;
}
/* ===== Footer CTA Button ===== */
.footer-btn {
    display: flex;
    align-items: center;
    gap: 8px;
    border-radius: 40px;
    background: var(--white);
    font-size: 20px;
    font-weight: var(--font-weight-semibold);
    border: 2px solid transparent;
    color: var(--secandry-color-2);
    padding: 10px 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 0 auto;
}

.footer-btn svg {
    stroke: var(--secandry-color-2);
    transition: all 0.3s ease;
}

/* Button Hover State */
.footer-btn:hover {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
}

.footer-btn:hover svg {
    stroke: var(--white);
}

/* ===== Horizontal Divider ===== */
.footer-divider {
    width: 100%;
    height: 1px;
    background: var(--overlay-2);
    margin: 32px 0;
}

/* ===== Bottom Section (Columns Layout) ===== */
.footer-bottom {
    display: flex;
    justify-content: space-between;
    text-align: left;
    gap: 40px;
    max-width: 1600px;
    margin: 0 auto;
}

/* ===== Footer Column Base ===== */
.footer-column img {
    margin: 0 0 28px 0;
    filter: brightness(0) invert(1);
}

.footer-column {
    position: relative;
}

/* Two-column Layout Helper */
.col-2 {
    display: flex;
    gap: 20px;
}

/* ===== Column Borders ===== */
.border-left {
    background: var(--overlay-2);
    width: 1px;
    top: 0px;
    height: 100%;
    position: absolute;
    left: -24px;
}

.border-right {
    background: var(--overlay-2);
    width: 1px;
    top: 0px;
    height: 100%;
    position: absolute;
    right: -24px;
}

/* ===== Column Headings ===== */
.footer-column h4 {
    font-size: 22px;
    font-weight: var(--font-weight-normal);
    margin-bottom: 28px;
    color: var(--white);
}

/* ===== Links in Columns ===== */
.footer-column ul {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.footer-column ul li {
    font-weight: var(--font-weight-normal);
    font-size: 18px;
    line-height: 21px;
}

.footer-column ul li a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: var(--white);
    transition: color 0.3s ease, opacity 0.3s ease;
}

.footer-column ul li a::before {
    content: "•";
    margin-right: 10px;
    color: var(--white);
    font-size: 14px;
    text-decoration: none;
}

/* Link Hover Effect */
.footer-column ul li a:hover {
    opacity: 50%;
}

/* ===== Social Icons Section ===== */
.social h4 {
    text-align: center;
}

.social-icons {
    display: flex;
    gap: 14px;
    align-items: center;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    background: var(--white);
    color: var(--secandry-color-2);
    border-radius: 50%;
    width: 32px;
    height: 33px;
    transition: all 0.3s ease;
}

/* ===== Copyright Text ===== */
.footer-copy {
    text-align: center;
    font-size: 14px;
    color: var(--white);
    font-weight: var(--font-weight-normal);
}

/* ====================================================== */
/* ===================  Responsive  ===================== */
/* ====================================================== */

/* ===== Tablet & Medium Screens ===== */
@media (max-width: 1250px) {
    .footer-bottom {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 30px;
    }
    .border-left,
    .border-right {
        display: none;
    }
    .social h4 {
        text-align: start;
    }
}
@media (max-width: 690px) {
    .footer-section {
        padding: 50px 30px;
    }
    .footer-bottom {
        grid-template-columns: repeat(1, 1fr);
        gap: 30px;
    }
    .footer-top h2 {
        line-height: 30px;
        font-size: 18px;
        margin-bottom: 30px;
    }
    .footer-btn {
        font-size: 18px;
    }
    .footer-column ul li {
        font-size: 16px;
    }
    .footer-column ul {
        gap: 14px;
    }
}
@media (max-width: 400px) {
    .footer-top h2 {
        font-size: 16px;
    }
    .footer-btn {
        font-size: 15px;
    }
    .footer-column ul li {
        font-size: 15px;
    }
    .footer-column h4 {
        font-size: 20px;
    }
}
