@import url('Headbar.css');

.kontak-section {
    padding: 60px 20px;
    max-width: 900px;
    margin: 0 auto;
}

.kontak-hero {
    text-align: center;
    margin-bottom: 48px;
}

.kontak-hero h1 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 12px;
}

.kontak-hero p {
    color: var(--text-muted);
    font-size: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.kontak-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
    margin-bottom: 40px;
}

.kontak-info-card {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    padding: 28px;
    display: flex;
    align-items: flex-start;
    gap: 18px;
    transition: var(--transition);
}

.kontak-info-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.kontak-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.4rem;
    flex-shrink: 0;
}

.kontak-info h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 6px;
}

.kontak-info p {
    color: var(--text-muted);
    font-size: 0.875rem;
    line-height: 1.6;
}

.kontak-info a {
    color: var(--accent);
    font-weight: 500;
}

.kontak-info a:hover {
    color: var(--primary);
}

.kontak-map {
    background: var(--white);
    border-radius: 16px;
    box-shadow: var(--shadow);
    overflow: hidden;
    height: 280px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-muted);
    font-size: 0.9rem;
}

@media (max-width: 700px) {
    .kontak-grid {
        grid-template-columns: 1fr;
    }

    .kontak-hero h1 {
        font-size: 1.6rem;
    }
}
