/* public/kontak.css */

/* HERO KONTAK */
.contact-hero {
    background-color: #1f4f69;
    color: #fff;
    text-align: center;
    padding: 100px 20px;
}

.contact-hero h1 {
    margin-bottom: 15px;
    font-size: 32px;
}

.contact-hero p a {
    color: #e3b341;
    text-decoration: none;
    font-weight: 600;
}

/* GRID CONTAINER */
.contact-page-container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 20px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

/* CARD STYLE */
.contact-card {
    background: #fff;
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border-top: 5px solid #387596;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.1);
}

.contact-icon-circle {
    width: 70px;
    height: 70px;
    background: #f8fafc;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    color: #e3b341;
    font-size: 30px;
    border: 1px solid #eee;
}

.contact-card h3 {
    color: #387596;
    margin-bottom: 20px;
    font-size: 22px;
}

/* LIST KONTAK */
.contact-list {
    list-style: none;
    padding: 0;
}

.contact-list li {
    margin-bottom: 15px;
    color: #444;
    line-height: 1.6;
}

.contact-list a {
    text-decoration: none;
    color: #444;
    font-weight: 600;
    transition: 0.3s;
}

.contact-list a:hover {
    color: #387596;
}

.contact-person-name {
    display: block;
    font-size: 13px;
    color: #888;
    font-weight: 400;
}

/* MAPS / LOCATION PREVIEW */
.contact-map-wrapper {
    margin-top: 60px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

@media (max-width: 768px) {
    .contact-page-container {
        padding: 50px 20px;
    }
}