/* contact.css */

/* --- Header --- */
.header-contact {
    background-image: url('https://images.unsplash.com/photo-1550966871-3ed3cdb5ed0c?q=80&w=2070&auto=format&fit=crop');
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.6) 0%, rgba(0, 0, 0, 0.2) 50%, rgba(0, 0, 0, 0.7) 100%);
}

.page-header {
    height: 100vh;
    min-height: 600px;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.header-content h1 {
    color: white;
    font-size: 5rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.header-content p {
    color: rgba(255, 255, 255, 0.637);
    font-size: 1.3rem;
    max-width: 600px;
    margin: 0 auto;
}

/* --- Contact Grid --- */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
    padding: 2rem 0;
}

/* --- Info Blocks --- */
.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-block i {
    font-size: 1.5rem;
    color: var(--accent-gold);
    background-color: var(--bg-light);
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: var(--transition-fast);
}

.info-block:hover i {
    background-color: var(--secondary-charcoal);
    color: var(--primary-white);
    transform: rotate(10deg);
}

.info-block h4 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--secondary-charcoal);
}

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

/* --- Form --- */
.p-5 {
    padding: 3rem;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 1px solid rgba(43, 43, 43, 0.1);
    background-color: var(--bg-light);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition-fast);
    border-radius: 4px;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--accent-gold);
    background-color: var(--primary-white);
}

.success-msg-small {
    text-align: center;
    font-weight: 500;
    animation: fadeIn 0.4s ease-out;
}

/* --- Map --- */
.map-section {
    padding: 0;
}

.map-container {
    filter: grayscale(1) invert(0.1);
    transition: var(--transition-smooth);
}

.map-container:hover {
    filter: grayscale(0) invert(0);
}

/* --- Responsive --- */
@media (max-width: 992px) {
    .header-content h1 {
        font-size: 3.5rem;
    }
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 4rem;
    }
}

@media (max-width: 768px) {
    .header-content h1 {
        font-size: 2.8rem;
    }
    .header-content p {
        font-size: 1.1rem;
    }
    .p-5 {
        padding: 2rem 1.5rem;
    }
    .info-block {
        gap: 1rem;
    }
    .info-block i {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .header-content h1 {
        font-size: 2.2rem;
    }
}