.contact-hero {
    padding: 80px 0;
    color: #fff;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.contact-hero-bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.contact-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgb(0 166 81 / 67%), rgb(0 117 201 / 58%));
}

.contact-hero .container {
    position: relative;
    z-index: 1;
}

.contact-hero h1 {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    color: #fff;
}

.contact-hero p {
    font-size: 19px;
    opacity: 0.95;
    color: #fff;
}

.contact-content {
    padding: 80px 0;
    background: #F8FAFB;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info-card {
    background: #fff;
    padding: 40px;
    border-radius: 16px;
    box-shadow: 0 4px 16px rgba(0,0,0,0.08);
}

.contact-info-card h2 {
    font-size: 32px;
    margin-bottom: 30px;
    font-weight: 700;
}

.info-item {
    display: flex;
    gap: 20px;
    padding: 24px 0;
    border-bottom: 1px solid #E5E7EB;
}

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

.info-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00A651 0%, #0075C9 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
}

.info-text h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 8px;
    color: #1a2332;
}

.info-text p {
    font-size: 16px;
    color: #4A5568;
    margin: 0;
    line-height: 1.8;
}

.info-text a {
    color: #0075C9;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-text a:hover {
    color: #00A651;
}

.contact-map {
    margin-top: 60px;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.12);
}

.contact-map iframe {
    width: 100%;
    height: 450px;
    border: none;
    display: block;
}

@media (max-width: 1024px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 60px 0;
    }

    .contact-content {
        padding: 60px 0;
    }

    .contact-info-card {
        padding: 30px 24px;
    }

    .info-item {
        padding: 18px 0;
    }
}