/* ===== contact.css ===== */
/* Contact page specific styles – consistent with modern design */

/* ---------- CONTACT INFO SECTION ---------- */
.contact-info {
    background: var(--white);
}
.info-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin: 0 auto;
}
.info-card {
    background: var(--light-gray);
    border-radius: var(--card-radius);
    padding: 2rem 1.5rem;
    text-align: center;
    transition: var(--transition);
    box-shadow: var(--shadow-sm);
}
.info-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
}
.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}
.info-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}
.info-card p {
    margin-bottom: 0;
    color: var(--text-light);
}
.info-card .btn-wa {
    display: inline-block;
    background-color: #25D366;
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    margin-top: 0.5rem;
}
.info-card .btn-wa:hover {
    background-color: #128C7E;
}
.info-card .small {
    font-size: 0.8rem;
    margin-top: 0.5rem;
}
.social-links {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 1rem;
}
.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    transition: var(--transition);
}
.social-links a:hover {
    background: var(--gold);
    transform: translateY(-3px);
}
.social-links svg {
    width: 20px;
    height: 20px;
    fill: var(--deep-blue);
}
.social-links a:hover svg {
    fill: var(--white);
}

/* ---------- MAP SECTION ---------- */
.map-section {
    background: var(--light-gray);
}
.map-container {
    max-width: 1000px;
    margin: 0 auto;
    border-radius: var(--card-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.map-container iframe {
    width: 100%;
    height: 400px;
    border: 0;
    display: block;
}

/* ---------- CONTACT FORM SECTION ---------- */
.contact-form-section {
    background: var(--white);
}
.contact-form-section .form-container {
    max-width: 700px;
    margin: 2rem auto 0;
    background: var(--light-gray);
    border-radius: var(--card-radius);
    padding: 2rem;
    box-shadow: var(--shadow-md);
}
.contact-form-section .form-group {
    margin-bottom: 1.5rem;
}
.contact-form-section .form-label {
    display: block;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: var(--deep-blue);
}
.contact-form-section .form-control {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1px solid var(--border-light);
    border-radius: 0.75rem;
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition);
    background: var(--white);
}
.contact-form-section .form-control:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2);
}
textarea.form-control {
    resize: vertical;
    min-height: 120px;
}
.btn-large {
    width: 100%;
    padding: 1rem;
    font-size: 1.1rem;
}

/* ---------- SCROLL REVEAL ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}
.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 992px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    .form-container {
        margin: 1rem;
        padding: 1.5rem;
    }
    .map-container iframe {
        height: 300px;
    }
}