/* ===========================
   Contact Page Styles
   =========================== */

.contact-section {
    padding: 3rem 0;
}

.contact-card {
    background: #fff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    height: 100%;
}

.contact-card h3 {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1.2rem;
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent-color);
}

.contact-card h3 i {
    margin-right: 0.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    padding: 1rem 0;
    border-bottom: 1px solid #f0f0f0;
}

.contact-item:last-child {
    border-bottom: none;
}

.contact-icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-icon i {
    color: #fff;
    font-size: 1.1rem;
}

.contact-detail {
    flex: 1;
}

.contact-detail strong {
    display: block;
    color: #333;
    margin-bottom: 0.2rem;
    font-size: 0.9rem;
}

.contact-detail p {
    margin-bottom: 0;
    color: #555;
    line-height: 1.6;
}

.contact-detail a {
    color: var(--primary-color);
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-detail a:hover {
    color: var(--accent-color);
    text-decoration: underline;
}

.map-card {
    display: flex;
    flex-direction: column;
}

.map-wrapper {
    flex: 1;
    min-height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    min-height: 350px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-item {
        gap: 0.8rem;
    }

    .contact-icon {
        width: 40px;
        height: 40px;
    }

    .map-wrapper {
        min-height: 280px;
    }
}
