/* ------------ footer (refined system version) ------------ */

.footer {
    background: #3A5540;
    color: white;
    padding: 70px 5%;
}

/* row system aligned with modern section layouts */
.footer-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: flex-start;
    gap: 40px;
}

/* unified column style (instead of 3 inconsistent ones) */
.footer-col {
    flex: 1;
    min-width: 220px;
    text-align: center;
}

/* headings match services/about hierarchy */
.footer h3 {
    font-size: clamp(20px, 2.2vw, 28px);
    margin-bottom: 18px;
    letter-spacing: 0.5px;
}

/* text */
.footer p,
.footer li {
    color: rgba(255, 255, 255, 0.9);
    font-size: clamp(14px, 1.1vw, 18px);
}

/* list styling */
.footer ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer li {
    margin-bottom: 10px;
}

/* links */
.footer a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: 0.3s ease;
}

.footer a:hover {
    color: #D6B77A;
}

/* logo styling */
.footer-logo img {
    width: clamp(140px, 18vw, 500px);
    height: auto;
    margin: 0 auto;
    max-width: 100%;
}

/* CTA button tuned to match services-page button style */
.footer-btn {
    display: inline-block;
    margin-bottom: 20px;

    background: #D6B77A;
    color: #2D2D2D;

    padding: 16px 26px;
    border-radius: 40px;

    font-weight: 500;
    letter-spacing: 0.3px;

    transition: 0.3s ease;

    min-width: 200px;
    white-space: nowrap;
    /* text-align: center; */
}

.footer-btn:hover {
    background: transparent;
    color: #D6B77A;
    border: 2px solid #D6B77A;
}

/* info spacing grouping */
.footer-info li {
    margin-bottom: 8px;
    opacity: 0.9;
}

/* mobile behavior (clean stack, no weird reordering) */
@media (max-width: 600px) {
    .footer {
        padding: 50px 18px;
    }

    .footer-row {
        flex-direction: column;
        align-items: center;
        gap: 30px;
    }

    .footer-col {
        text-align: center;
        min-width: 100%;
    }

    .footer-logo img {
        width: 140px;
    }

    .footer-btn {
        padding: 14px 22px;
        font-size: 16px;
    }
}