/**
 * Footer Styles
 * Contains all footer section styling
 */

/* ================================
   FOOTER CONTAINER
   ================================ */
#page7 {
    min-height: 100vh;
    background-color: var(--color-dark, #111);
    padding: 0;
    display: flex;
    flex-direction: column;
}

/* ================================
   FOOTER CTA SECTION
   ================================ */
.footer-top {
    padding: 8vh 10vw;
    background: linear-gradient(135deg, var(--color-primary, #0BA34E) 0%, var(--color-primary-dark, #064a24) 100%);
    position: relative;
    overflow: hidden;
}

.footer-top::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 60%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    pointer-events: none;
}

.footer-cta {
    max-width: 60%;
}

.footer-cta h2 {
    font-size: 3.5vw;
    font-weight: 600;
    line-height: 1.2;
    margin-bottom: 2vh;
}

.footer-cta p {
    font-size: 1.2vw;
    opacity: 0.9;
    margin-bottom: 4vh;
}

/* ================================
   FOOTER MAIN CONTENT
   ================================ */
.footer-main {
    padding: 8vh 10vw;
    display: flex;
    gap: 3vw;
    border-bottom: 1px solid var(--color-dark-lighter, #333);
}

.footer-col {
    flex: 1;
}

.footer-brand {
    flex: 2;
}

.footer-brand h1 {
    font-size: 2vw;
    margin-bottom: 2vh;
}

.footer-brand>p {
    font-size: 0.9vw;
    opacity: 0.7;
    line-height: 1.6;
    margin-bottom: 3vh;
}

.footer-social {
    display: flex;
    gap: 0.8vw;
}

.footer-col h4 {
    font-size: 0.9vw;
    text-transform: uppercase;
    font-weight: 600;
    margin-bottom: 3vh;
    letter-spacing: 1px;
}

.footer-col ul {
    list-style: none;
}

.footer-col ul li {
    margin-bottom: 1.5vh;
}

.footer-col ul li a {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: var(--transition-fast, 0.3s ease);
    position: relative;
}

.footer-col ul li a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-primary, #0BA34E);
    transition: width var(--transition-fast, 0.3s ease);
}

.footer-col ul li a:hover {
    color: var(--color-white, #fff);
}

.footer-col ul li a:hover::after {
    width: 100%;
}

.footer-newsletter p {
    font-size: 0.85vw;
    opacity: 0.7;
    margin-bottom: 2vh;
}

/* ================================
   FOOTER BOTTOM BAR
   ================================ */
.footer-bottom {
    padding: 3vh 10vw;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom-left p {
    font-size: 0.8vw;
    opacity: 0.6;
}

.footer-bottom-right {
    display: flex;
    gap: 2vw;
}

.footer-bottom-right a {
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    transition: color var(--transition-fast, 0.3s ease);
}

.footer-bottom-right a:hover {
    color: var(--color-white, #fff);
}