/* ========================================
   Footer
   ======================================== */
.footer {
    background-color: #3d6b49;
    background-image: url('/media/footer/bg-footer.png');
    background-size: cover;
    background-position: center;
    color: white;
    padding: 30px 0 0px;
}

.footer .container {
    padding-left: 0;
    padding-right: 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: center;
    margin-bottom: 30px;
}

/* ---- Brand Column ---- */
.footer-brand {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.footer-logo-wrap {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.footer-logo-img {
    width: 250px;
    height: auto;
}

.footer-logo-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.footer-logo-name {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: white;
    line-height: 1.2;
}

.footer-logo-sub {
    font-size: 0.75rem;
    letter-spacing: 3px;
    color: rgba(255, 255, 255, 0.75);
    text-transform: uppercase;
}

.footer-btn-contact {
    display: inline-block;
    padding: 10px 52px;
    border: 2px solid white;
    border-radius: 30px;
    background: white;
    color: #3d6b49;
    text-decoration: none;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-align: center;
    white-space: nowrap;
}

.footer-btn-contact:hover {
    background: rgba(255, 255, 255, 0.85);
    transform: translateY(-2px);
}

/* ---- Contact Column ---- */
.footer-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.footer-contact-title {
    font-size: 1.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.85);
    /* margin-bottom: 20px; */
    letter-spacing: 2px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 4px 0;
    font-size: 1.5rem;
    /* font-weight: 500; */
    text-decoration: none;
    color: white;
    transition: opacity 0.2s ease;
    letter-spacing: 1px;
}

.contact-item:hover {
    opacity: 0.8;
}

.contact-icon-img {
    width: 36px;
    height: 36px;
    flex-shrink: 0;
    object-fit: contain;
}

.contact-item span {
    word-break: break-word;
    overflow-wrap: break-word;
    flex: 1;
    line-height: 1.4;
}

/* ---- Map Column ---- */
.footer-map {
    border-radius: 12px;
    overflow: hidden;
    height: 220px;
    width: 100%;
}

.footer-map iframe {
    width: 100%;
    height: 100%;
    display: block;
}

/* ---- Copyright ---- */
.footer-copyright {
    text-align: center;
    padding-top: 10px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 1.2rem;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto auto;
    }

    .footer-map {
        grid-column: 1 / -1;
        height: 220px;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-map {
        grid-column: auto;
        height: 200px;
    }

    .footer-brand {
        align-items: center;
    }

    .footer-btn-contact {
        font-size: 0.95rem;
        padding: 10px 24px;
    }

    .footer-info {
        align-items: flex-start;
        padding-left: 16px;
    }

    .footer-contact-title {
        text-align: left;
    }

    .footer-contact {
        align-items: flex-start;
    }

    .contact-item {
        font-size: 1.2rem;
    }

    .contact-icon-img {
        width: 36px;
        height: 36px;
    }
}

@media (max-width: 480px) {
    .footer {
        padding: 40px 0 20px;
    }

    .footer-logo-name {
        font-size: 1.2rem;
    }

    .footer-btn-contact {
        font-size: 1.2rem;
        padding: 9px 20px;
    }

    .contact-item {
        font-size: 1.3rem;
    }
}
