/* ---------- STRUKTUR UTAMA ---------- */
.main-footer {
    padding-top: 50px;
    background-color: #f0f8ff;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.footer-bottom-row {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    padding-bottom: 30px;
}

.footer-col {
    flex: 1;
    min-width: 250px;
}

.footer-title {
    margin-bottom: 15px;
    font-size: large;
    font-weight: 700;
}

@media (max-width: 768px) {
    .footer-bottom-row {
        flex-direction: column;
    }

    .footer-col {
        min-width: unset;
    }
}

/* ---------- LOGO FOOTER ---------- */

.footer-top-row {
    padding-bottom: 30px;
}

.footer-top-row .logo {
    display: inline-block;
    vertical-align: middle;
}

.footer-top-row .logo a {
    font-size: large;
    font-weight: bold;
}

.footer-top-row .logo img {
    max-width: 120px;
}

/* ---------- TOMBOL GABUNG ---------- */

.join-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.btn-join {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 15px;
    border-radius: 8px;
    text-decoration: none !important;
    font-weight: 600;
    font-size: 13px;
    transition: all 0.3s ease;
    flex: 1;
    min-width: 120px;
    justify-content: center;
}

.btn-join {
    background-color: #1e73be;
    color: #fff !important;
    border: 1px solid #1e73be;
}

.btn-join .material-icons-outlined {
    font-size: 18px;
    color: #fff;
}

.btn-join:hover {
    background-color: #165a96;
    transform: translateY(-2px);
}

.btn-join-usaha {
    background-color: #34495e;
    border-color: #34495e;
}

.btn-join-usaha:hover {
    background-color: #2c3e50;
}

/* ---------- MENU FOOTER ---------- */

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px 20px;
}

.footer-links li a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-links li a:hover { color: #1e73be; }

/* ---------- TOMBOL INSTALL ---------- */

.btn-playstore {
    display: inline-flex;
    align-items: center;
    background-color: var(--brand-primary);
    color: #fff;
    padding: 10px 15px;
    border-radius: 10px;
    text-decoration: none;
    gap: 10px;
    transition: all 0.3s ease;
    border: 1px solid #333;
}

.btn-playstore:hover {
    background-color: #222;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

.ps-icon .material-icons-outlined {
    vertical-align: middle;
    color: #fff;
}

.ps-text {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    line-height: 1; 
}

.ps-brand {
    font-size: small;
    font-weight: 700;
}

/* ---------- SOCIAL MEDIA ---------- */
.social-label {
    margin-bottom: 12px;
    font-weight: bold;
    font-size: initial;
}

.social-list {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.social-list li a {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: x-large;
    transition: all 0.3s ease;
}

.social-list li a:hover { transform: translateY(-3px); }


/* ---------- FOOTER DIVIDER ---------- */

.footer-divider {
    border-top: 1px solid #ddd;
    padding-bottom: 20px;
}

/* ---------- COPYRIGHT ---------- */

.footer-copyright {
    padding-bottom: 40px;
}

.footer-copyright p { font-size: 13px; color: #777; margin: 0; }

.screen-reader-text {
    position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
    overflow: hidden; clip: rect(0,0,0,0); border: 0;
}