/* Footer Styles */
.footer {
    background: var(--accent-color);
    padding: 2.5rem 2.5rem;
    letter-spacing: -0.05em;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16.7rem;
    max-width: 100%;
    margin: 0 auto;
    position: relative;
}

.footer-left {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.2rem;
    margin-bottom: 1.5rem;
}

.footer-logo .logo-circle {
    width: 2rem;
    height: 2rem;
    border-radius: 50%;
    overflow: hidden;
}

.footer-logo .logo-circle img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.footer-logo img {
    height: 16px;
    width: auto;
}

.get-in-touch-header {
    display: flex;
    align-items: center;
    width: 353px;
    justify-content: space-between;
}

.circle-arrow-button {
    width: 28px;
    height: 28px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: none;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.circle-arrow-button img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.circle-arrow-button:hover {
    transform: translateX(4px);
}

.get-in-touch-section p {
    font-size: 1rem;
    margin: 0;
}

.contact-line {
    width: 353px;
    height: 1.5px;
    background: var(--primary-color);
    margin-bottom: 3rem;
    margin-top: 0.6rem;
}

.address {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--primary-color);
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: flex-end;
    margin-top: auto;
}

.social-link {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    transition: opacity 0.3s ease;
}

.social-link img,
.social-link svg {
    width: 100%;
    height: 100%;
    object-fit: contain; /* Menjaga proporsi ikon */
}

.social-link:hover {
    opacity: 0.9;
}

.footer-message {
    font-size: 1.8rem;
    line-height: 1;
}

.footer-right {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin-top: 9.5%;
}

.footer-bottom {
    background-color: var(--primary-color);
    padding: 1rem 2.5rem;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.5rem;
}

.footer-bottom-left {
    opacity: 0.6;
}

.footer-bottom-center {
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.footer-bottom-right {
    opacity: 0.6;
}

/* Modal Styles */
.modal {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
    backdrop-filter: blur(5px);
}

.modal.active {
    display: flex;
}

.modal-content {
    background: white;
    padding: 3rem;
    border-radius: 1rem;
    width: 90%;
    max-width: 500px;
    position: relative;
}

.modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--primary-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
    border-radius: 0.5rem;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
}

/* Responsive Footer */
@media (max-width: 768px) {
    .footer {
        padding: 3rem 2rem 4rem;
    }

    .footer-content {
        grid-template-columns: 1fr;
    }

    .social-links {
    justify-content: center;
    margin-top: 2rem;
    }

    .footer-message {
        font-size: 1.7rem;
        margin-bottom: 2rem;
        line-height: 1.2;
        text-align: center;
    }

    .get-in-touch-header,
    .contact-line {
        width: 100%;
    }

    .footer-bottom {
        padding: 1rem 2rem;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        text-align: center;
    }

    .modal-content {
        padding: 2rem;
        margin: 1rem;
    }
    }

    @media (max-width: 480px) {
    .footer {
        padding: 2rem 1.5rem 3rem;
    }

    .footer-message {
        font-size: 1.5rem;
    }

    .social-links {
        gap: 0.75rem;
    }

    .social-link {
        width: 2rem;
        height: 2rem;
    }

    .footer-logo img {
        height: 14px;
    }

    .address {
        font-size: 0.875rem;
    }
    }
