:root {
    --navy-blue: #001f3f;
    --warning-yellow: #ffc107;
    --accent-red: #dc3545;
    --light-bg: #f8f9fa;
}

/* Info Cards */
.info-card {
    background: white;
    border: none;
    border-radius: 15px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    height: 100%;
    text-align: center;
}

.info-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.icon-box {
    width: 60px;
    height: 60px;
    background-color: var(--warning-yellow);
    color: var(--navy-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.icon-box i {
    font-size: 1.8rem;
    line-height: 1;        /* penting biar gak turun */
    display: flex;         /* biar ikut center */
    align-items: center;
    justify-content: center;
}

/* Content Container */
.action-container {
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Button Email Action */
.btn-email-link {
    background-color: var(--navy-blue);
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 10px;
    font-weight: 600;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    transition: all 0.3s ease;
    width: 100%;
    margin-top: 20px;
}

.btn-email-link:hover {
    background-color: var(--accent-red);
    color: white;
    transform: scale(1.02);
}

/* Map Section */
.map-wrapper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    height: 450px;
}

iframe {
    width: 100%;
    height: 100%;
    border: 0;
}


.social-icons a {
    color: var(--warning-yellow);
    font-size: 1.5rem;
    transition: 0.3s;
}

.social-icons a:hover {
    color: white;
}

@media (max-width: 768px) {
    .contact-hero { padding: 60px 20px; }
    .action-container { padding: 25px; }
}