/* ===== FOOTER BASE ===== */
.site-footer {
    background: #1c1c1c;
    color: #f5f5f5;
    padding: 2.5rem 1.5rem 2rem 1.5rem;
    font-family: 'Roboto', sans-serif;
    border-top: 4px solid #d4af37;
}

/* Links */
.site-footer a {
    color: #d4af37;
    text-decoration: none;
    transition: 0.3s ease;
}

.site-footer a:hover {
    color: #fff;
}

/* ===== GRID ===== */
.footer-inner {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-start;
}

/* ===== LEFT COLUMN ===== */
.footer-left {
    flex: 1 1 220px;
    text-align: left;
    font-family: 'Lora', serif;
}

.brand-footer img {
    width: 120px;
    border-radius: 12px;
    margin-bottom: 0.8rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.4);
}

.about-footer {
    margin-bottom: 0.8rem;
    font-size: 0.9rem;
    line-height: 1.5;
    color: #ddd;
}

.vision-mission h4,
.values h4 {
    color: #d4af37;
    font-family: 'Playfair Display', serif;
    font-size: 1.05rem;
    margin: 0.4rem 0 0.2rem;
}

.vision-mission p,
.values ul {
    font-size: 0.87rem;
    margin-bottom: 0.4rem;
    color: #ccc;
}

.values ul {
    padding-left: 1.2rem;
}

/* ===== MIDDLE COLUMN ===== */
.footer-mid {
    flex: 1 1 220px;
    text-align: center;
    font-family: 'Roboto', sans-serif;
}

.footer-mid h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.footer-mid p {
    font-size: 0.88rem;
    margin: 0.2rem 0;
    color: #ddd;
}

/* WhatsApp Form */
.footer-whatsapp-order form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-top: 0.5rem;
}

.footer-whatsapp-order input,
.footer-whatsapp-order textarea {
    padding: 0.55rem 0.8rem;
    border-radius: 8px;
    border: none;
    outline: none;
    font-size: 0.88rem;
    width: 100%;
}

/* QR CODE SECTION */
.footer-qr {
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.7rem;
    padding: 0.6rem;
    border-radius: 18px;
    background: linear-gradient(145deg, #2c2c2c, #1c1c1c);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.3);
}

.footer-qr h4 {
    margin-bottom: 0.3rem;
    color: #d4af37;
    font-size: 1.05rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.qr-btn img {
    width: 140px;
    height: 140px;
    border-radius: 16px;
    border: 3px solid #d4af37;
    box-shadow: 0 5px 20px rgba(212, 175, 55, 0.4);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.qr-btn img:hover {
    transform: scale(1.05);
    box-shadow: 0 6px 25px rgba(212, 175, 55, 0.55);
}

/* WhatsApp Button */
.btn-whatsapp-send-footer {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 0.5rem;
    padding: 0.6rem 1.2rem;
    background: #25D366;
    color: #fff;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(37, 211, 102, 0.35);
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-whatsapp-send-footer:hover {
    background: #1EBE5D;
    transform: translateY(-1px);
    box-shadow: 0 6px 18px rgba(37, 211, 102, 0.45);
}

/* ===== RIGHT COLUMN ===== */
.footer-right {
    flex: 1 1 220px;
    text-align: right;
    font-family: 'Roboto', sans-serif;
}

.footer-right h4 {
    font-size: 1.1rem;
    color: #d4af37;
    margin-bottom: 0.8rem;
}

.socials a {
    display: inline-block;
    margin: 0 0.3rem;
    font-size: 1.4rem;
    color: #d4af37;
    transition: 0.3s ease;
}

.socials a:hover {
    color: #fff;
}

/* Newsletter */
.newsletter {
    margin-top: 1rem;
    display: flex;
    justify-content: center;
    gap: 0.3rem;
    flex-wrap: wrap;
}

.newsletter input {
    padding: 0.55rem 0.8rem;
    border-radius: 50px 0 0 50px;
    border: none;
    outline: none;
    width: 60%;
    font-size: 0.88rem;
}

.newsletter button {
    padding: 0.55rem 1rem;
    border-radius: 0 50px 50px 0;
    border: none;
    cursor: pointer;
    background: #d4af37;
    color: #1c1c1c;
    font-weight: bold;
    transition: 0.3s;
}

.newsletter button:hover {
    background: #fff;
}

/* Footer Small Text */
.site-footer .copyright,
.site-footer .designed,
.newsletter .small-text {
    font-size: 0.78rem;
    color: #aaa;
    margin-top: 0.3rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
    .footer-inner {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-left,
    .footer-mid,
    .footer-right {
        margin-bottom: 1rem;
    }

    .qr-btn img {
        width: 120px;
        height: 120px;
    }

    .newsletter input {
        width: 70%;
        margin-bottom: 0.5rem;
        border-radius: 50px;
    }

    .newsletter button {
        width: 50%;
        border-radius: 50px;
    }

    .footer-right {
        text-align: center;
    }
}
