.contact-page {
    padding-top: 64px;
    min-height: 95vh;
    background-color: #f5f5f5;
}

/* Banner */
.contact-banner {
    position: relative;
    height: 400px;
    background-image: url('https://picsum.photos/1920/400?random=400');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    display: flex;
    justify-content: center;
    align-items: center;
}

.banner-title {
    color: white;
    font-size: 56px;
    font-weight: 700;
    letter-spacing: 8px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

/* Contact Section */
.contact-section {
    padding: 60px 0;
}

.contact-container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
    background: white;
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.section-header {
    text-align: center;
    margin-bottom: 2rem;
}

.section-header h2 {
    font-size: 2rem;
    color: #1e40af;
    margin-bottom: 0.5rem;
}

.section-header p {
    font-size: 0.95rem;
    color: #64748b;
}

/* Contact Grid */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2.5rem;
    align-items: stretch;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 1.8rem;
}

.contact-item {
    text-align: left;
    padding: 0.5rem 0;
}

.contact-item .contact-icon {
    font-size: 1.8rem;
    margin-right: 0.8rem;
    color: #2563eb;
    display: inline-block;
    vertical-align: middle;
    width: 2rem;
}

.contact-item h3 {
    display: inline-block;
    font-size: 1.1rem;
    color: #1e293b;
    margin-bottom: 0.2rem;
}

.contact-item p {
    margin-left: 2.8rem;
    color: #64748b;
    font-size: 0.95rem;
    line-height: 1.6;
}

/* QR Codes */
.qr-codes {
    display: flex;
    gap: 1.8rem;
    margin-left: 2.8rem;
    margin-top: 0.5rem;
    flex-wrap: wrap;
}

.qr-item {
    text-align: center;
}

.qr-item img {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 8px;
    background: #ffffff;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.06);
}

.qr-item p {
    margin: 0.3rem 0 0 0;
    font-size: 0.8rem;
    color: #64748b;
}

/* Map */
.contact-map {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.06);
    min-height: 280px;
    background: #e8edf5;
}

#company-map {
    width: 100%;
    height: 418px;
    border: 1px solid #e5e5e5;
    border-radius: 6px;
}

/* Responsive */
@media (max-width: 768px) {
    .contact-banner {
        height: 300px;
    }

    .banner-title {
        font-size: 40px;
        letter-spacing: 4px;
    }

    .contact-section {
        padding: 40px 0;
    }

    .contact-container {
        padding: 1.5rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .qr-codes {
        gap: 1.5rem;
    }

    .qr-item img {
        width: 80px;
        height: 80px;
    }

    .contact-item p {
        margin-left: 2.5rem;
    }
}

@media (max-width: 480px) {
    .contact-banner {
        height: 250px;
    }

    .banner-title {
        font-size: 32px;
        letter-spacing: 2px;
    }

    .contact-item h3 {
        font-size: 1rem;
    }

    .contact-item p {
        font-size: 0.9rem;
    }
}