/* ========================================
   LANDING FOOTER — Phase 6.8 content
   Data: Settings SSOT via HomepageService::getFooter().
   Palette: GOLD. Prefix: landing-footer-.
   ======================================== */

.landing-footer-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
    text-align: left;
    max-width: 1000px;
    margin: 0 auto 30px;
}

.landing-footer-col {
    flex: 1 1 220px;
    min-width: 160px;
    max-width: 300px;
}

/* Kolom dengan konten yang dipusatkan (Kolom 1: logo+teks, Kolom 2: flag counter).
   Isi kolom di-center secara horizontal & vertikal di dalam kolom. */
.landing-footer-col-center {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
}

.landing-footer-logo {
    display: block;
    max-width: 100%;
    max-height: 80px;
    width: auto;
    height: auto;
    object-fit: contain;
    margin-bottom: 10px;
}

/* Flag Counter: dipusatkan horizontal & vertikal dalam kolomnya. */
.landing-footer-flagcounter {
    display: flex;
    align-items: center;
    justify-content: center;
    flex: 1;
    min-height: 56px;
}

.landing-footer-flagcounter img {
    display: block;
    max-width: 100%;
    height: auto;
    margin: 0 auto;
}

.landing-footer-name {
    font-family: 'Playfair Display', serif;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-light);
    margin: 0;
}

.landing-footer-label {
    font-size: 0.75rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold-primary);
    margin: 0 0 12px;
}

.landing-footer-contact {
    display: flex;
    flex-direction: column;
    gap: 9px;
    font-size: 0.9rem;
    color: var(--text-light-soft);
}

.landing-footer-contact span,
.landing-footer-contact a {
    display: inline-flex;
    align-items: flex-start;
    gap: 8px;
    color: var(--text-light-soft);
    text-decoration: none;
    transition: color 0.2s ease;
}

.landing-footer-contact a:hover,
.landing-footer-contact a:focus-visible {
    color: var(--gold-primary);
}

.landing-footer-contact i {
    color: var(--gold-primary);
    margin-top: 3px;
}

/* Tombol WhatsApp (Kolom 3). Warna WA: #25D366 dengan aksen gold. */
.landing-footer-wa-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 9px 16px;
    margin-top: 2px;
    border-radius: 999px;
    background: linear-gradient(135deg, #25d366 0%, #128c7e 100%);
    color: #ffffff !important;
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    width: fit-content;
    border: 1px solid rgba(255, 255, 255, 0.25);
    transition: transform 0.2s ease, box-shadow 0.2s ease, filter 0.2s ease;
}
.landing-footer-wa-btn:hover,
.landing-footer-wa-btn:focus-visible {
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(37, 211, 102, 0.35);
    filter: brightness(1.06);
}
.landing-footer-wa-btn i {
    color: #ffffff !important;
    margin-top: 0;
    font-size: 1.05rem;
}

.landing-footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.landing-footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    color: var(--text-light-soft);
    font-size: 1rem;
    text-decoration: none;
    transition: border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.landing-footer-social a:hover,
.landing-footer-social a:focus-visible {
    border-color: var(--gold-primary);
    color: var(--gold-primary);
    transform: translateY(-2px);
}

@media (max-width: 640px) {
    .landing-footer-grid {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

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

    .landing-footer-logo {
        margin-left: auto;
        margin-right: auto;
    }

    .landing-footer-flagcounter {
        justify-content: center;
    }

    .landing-footer-social {
        justify-content: center;
    }

    .landing-footer-wa-btn {
        margin-left: auto;
        margin-right: auto;
    }
}

/* ========================================
   LANDING FOOTER — block base (shared)
   Nilai ekuivalen inline style Landing (landing/index.php).
   Membuat partial landing-footer.php reusable di semua halaman.
   ======================================== */

.landing-footer {
    border-top: 1px solid rgba(201, 161, 74, 0.25);
    background: rgba(0, 0, 0, 0.15);
    padding: 3rem 24px 2.5rem;
    text-align: center;
}

.landing-footer-inner {
    max-width: 720px;
    margin: 0 auto;
}

.landing-footer-title {
    font-family: 'Playfair Display', serif;
    color: #fff;
    font-size: 1.25rem;
    margin: 0 0 8px;
    text-align: center;
}

.landing-footer-desc {
    margin: 0 0 20px;
    font-size: 0.9rem;
    color: #6b7280;
    text-align: center;
}

.landing-copyright {
    text-align: center;
    font-size: 0.85rem;
    color: #7c8290;
}