.festive-footer {
    display: flex;
    flex-direction: column;
    justify-content: space-between;

    background-image: url('../../images/footerbg.webp');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;

    padding: 80px 80px 40px;
    min-height: 520px;
}

/* 
.festive-footer {
    background-image: url('../../images/footerbg.webp');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;

    padding: 60px 80px 30px;
    color: #1a1a1a;
    font-family: 'Poppins', sans-serif;

    width: 100%;
} */

.footer-container {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.footer-col h3 {
    font-size: 18px;
    margin-bottom: 20px;
    font-weight: 600;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col ul li {
    margin-bottom: 12px;
}

.footer-col ul li a {
    text-decoration: none;
    color: #333;
    transition: 0.3s;
}

.footer-col ul li a:hover {
    color: #e91e63;
}

.about p {
    font-size: 14px;
    line-height: 1.7;
    margin: 20px 0;
    max-width: 320px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 22px;
    font-weight: 600;
}

.footer-logo img {
    width: 225px;
}

.country-select {
    background: #fff;
    padding: 8px 12px;
    border-radius: 6px;
    display: inline-block;
    font-size: 14px;
    margin-top: 15px;
    cursor: pointer;
}

.app-buttons img {
    width: 160px;
    margin-bottom: 15px;
    cursor: pointer;
}

.footer-bottom {
    text-align: center;
    font-size: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.229);
    padding-top: 15px;
}

@media (max-width: 992px) {
    .footer-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .festive-footer {
        padding: 40px 20px;
    }
}



/* Wrapper */
.forgot-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

/* Card */
.forgot-card {
    background: #ffffff;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Heading */
.forgot-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

/* Form Group */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* Input */
.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #6c63ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

/* Button */
.reset-btn {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #6c63ff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.reset-btn:hover {
    background: #5548e8;
}

.alert {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
}

.alert.success {
    background: #e6f9f0;
    color: #0f5132;
    border: 1px solid #b7e4c7;
}

.alert.error {
    background: #fdecea;
    color: #842029;
    border: 1px solid #f5c2c7;
}

/* Wrapper */
.reset-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 80px 20px;
}

/* Card */
.reset-card {
    background: #ffffff;
    padding: 40px 35px;
    width: 100%;
    max-width: 420px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
}

/* Heading */
.reset-card h2 {
    margin-bottom: 25px;
    font-size: 24px;
    font-weight: 600;
    color: #222;
}

/* Form group */
.form-group {
    text-align: left;
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 14px;
    margin-bottom: 6px;
    color: #555;
}

/* Input */
.form-group input {
    width: 100%;
    padding: 10px 12px;
    border-radius: 6px;
    border: 1px solid #ccc;
    font-size: 14px;
    transition: 0.3s;
}

.form-group input:focus {
    border-color: #6c63ff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(108, 99, 255, 0.1);
}

/* Button */
.reset-btn {
    width: 100%;
    padding: 11px;
    border: none;
    border-radius: 6px;
    background: #6c63ff;
    color: #fff;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: 0.3s ease;
}

.reset-btn:hover {
    background: #5548e8;
}

.alert {
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 15px;
    text-align: center;
}

.alert.success {
    background: #e6f9f0;
    color: #0f5132;
    border: 1px solid #b7e4c7;
}

.alert.error {
    background: #fdecea;
    color: #842029;
    border: 1px solid #f5c2c7;
}
