/* ========== CONTACT PAGE ========== */
.contact-page {
    width: 85%;
    height: 100vh;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    background: var(--color-white);
}

.contact-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--color-navy);
    letter-spacing: 6px;
    text-transform: uppercase;
    margin-bottom: 30px;
}

.contact-content {
    flex: 1;
    display: flex;
    min-height: 0;
}

/* Map */
.contact-map {
    flex: 0 0 50%;
    position: relative;
    padding-left: 60px;
    padding-bottom: 120px;
    padding-top: 50px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border-radius: 4px;
}

/* Info */
.contact-info {
    flex: 0 0 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 40px 50px 40px 60px;
    background: var(--color-white);
}

.contact-address {
    margin-bottom: 40px;
}

.contact-address p {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 300;
    color: var(--color-navy);
    line-height: 2;
    letter-spacing: 0.03em;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--color-navy);
}

.contact-detail-item svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.contact-detail-item a {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-navy);
    letter-spacing: 0.03em;
    transition: color 0.3s ease;
}

.contact-detail-item a:hover {
    color: var(--color-red);
}

/* Bottom bar override */
.contact-bottom-bar {
    background: var(--color-navy);
}

/* Contact Form */
.contact-form {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.contact-input,
.contact-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: 4px;
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 300;
    color: var(--color-navy);
    outline: none;
    transition: border-color 0.3s ease;
}

.contact-input:focus,
.contact-textarea:focus {
    border-color: var(--color-navy);
}

.contact-textarea {
    min-height: 120px;
    resize: vertical;
}

.contact-send-btn {
    align-self: flex-start;
    padding: 14px 40px;
    background: var(--color-navy);
    color: var(--color-white);
    font-family: var(--font-display);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: background 0.3s ease;
}

.contact-send-btn:hover {
    background: var(--color-red);
}


/* ========== RESPONSIVE ========== */
@media (max-width: 1024px) {
    .contact-info {
        padding: 40px 50px;
    }

    .contact-address p {
        font-size: 1rem;
    }
}

@media (max-width: 768px) {
    .contact-page {
        width: 100%;
        height: auto;
        min-height: auto;
        overflow: visible;
    }

    .contact-header {
        padding: 20px 20px;
    }

    .contact-title {
        font-size: 1.4rem;
        letter-spacing: 4px;
    }

    .contact-content {
        flex-direction: column;
    }

    .contact-map {
        flex: none;
        height: 250px;
        padding: 0 20px;
        padding-bottom: 0;
        padding-top: 10px;
    }

    .contact-map iframe {
        position: relative;
        border-radius: 8px;
    }

    .contact-address {
        margin-bottom: 30px;
    }

    .contact-address p {
        font-size: 1rem;
        line-height: 1.8;
    }

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

    .contact-details {
        gap: 20px;
    }

    .contact-info {
        flex: none;
        padding: 30px 20px 80px;
    }
}
