/* --- MAKE FOOTER STICK TO THE BOTTOM --- */
html, body {
    height: 100%;
    margin: 0;
}

body {
    display: flex;
    flex-direction: column;
    min-height: 100vh; /* IMPORTANT FIX */
}

/* This wrapper will hold ALL page content */
.page-wrapper {
    flex: 1; /* pushes footer down */
    display: flex;
    flex-direction: column;
}

/* MAIN FOOTER */
.footer {
    width: 100%;
    background: #0F3C1D; /* green from your screenshot */
    color: #ffffff;
    font-family: "Segoe UI", Arial, sans-serif;
    padding: 50px 0 0 0;
}

/* GRID LAYOUT */
.footer-container {
    width: 90%;
    max-width: 1500px;
    margin: auto;
    display: grid;
    grid-template-columns: 220px 1fr 1fr 1.5fr 1.5fr;
    gap: 40px;
    align-items: flex-start;
}

/* LOGO */
.footer-logo img {
    width: 180px;
    height: auto;
    background-color: white;      
    border-radius: 50%;   
}

/* TITLES */
.footer-section h3 {
    font-size: 20px;
    margin-bottom: 18px;
    font-weight: 600;
    color: #ffffff;
}

/* LIST STYLE */
.footer-section ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.footer-section ul li {
    font-size: 16px;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 10px;
    color: #ffffff;
}

/* ICON COLORS (YELLOW LIKE YOUR DESIGN) */
.footer-section ul li i {
    color: #FFD700;
    font-size: 18px;
}

/* FORM SECTION */
.footer-form {
    display: flex;
    flex-direction: column;
}

.footer-form label {
    font-size: 16px;
    margin-bottom: 6px;
    color: #ffffff;
}

.footer-form input,
.footer-form textarea {
    width: 100%;
    background: #ffffff;
    color: #000000;
    border: none;
    border-radius: 8px;
    padding: 12px;
    font-size: 15px;
    margin-bottom: 14px;
}

/* TEXTAREA SIZE */
.footer-form textarea {
    height: 120px;
    resize: none;
}

/* SUBMIT BUTTON */
.footer-submit {
    background: #F4C20D; 
    color: #000;
    padding: 12px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-size: 16px;
    font-weight: bold;
    transition: 0.2s;
}

.footer-submit:hover {
    background: #d8a90c;
}

/* BOTTOM COPYRIGHT BAR */
.footer-bottom {
    margin-top: 40px;
    width: 100%;
    background: #0A2A16;
    text-align: center;
    padding: 18px 0;
    color: #ffffff;
    font-size: 14px;
}
