/* ========================================
   Contact Page
   ======================================== */

/* Contact Section */
.contact-section {
    position: relative;
    z-index: 1;
    background: #fff;
    padding: 80px 0;
}

.contact-section__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}

.contact-section__heading {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0 0 50px;
    color: #1c1c1c;
}

.contact-section__row {
    display: flex;
    gap: 40px;
    align-items: stretch;
}

.contact-section__left {
    flex: 1;
    min-width: 0;
}

.contact-section__right {
    flex: 1;
    min-width: 0;
}

/* Contact Info */
.contact-info {
    margin-bottom: 30px;
}

.contact-info__title {
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #1c1c1c;
    margin: 0 0 15px;
}

.contact-info__details {
    display: flex;
    gap: 40px;
}

.contact-info__col {
    flex: 1;
    min-width: 0;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    transition: color 0.3s;
}

.contact-info__item:hover {
    color: #1c1c1c;
}

.contact-info__icon {
    flex-shrink: 0;
    color: #888;
    transition: color 0.3s;
}

.contact-info__item:hover .contact-info__icon {
    color: #1c1c1c;
}

/* Contact Form */
.contact-form__row {
    display: flex;
    gap: 20px;
}

.contact-form__field {
    margin-bottom: 20px;
}

.contact-form__field--half {
    flex: 1;
    margin-bottom: 0px;
}

.contact-form__field input,
.contact-form__field--half input,
.contact-form__field textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    background: #fff;
    font-size: 14px;
    color: #333;
    font-family: inherit;
    outline: none;
    transition: border-color 0.3s;
}

.contact-form__field input:focus,
.contact-form__field--half input:focus,
.contact-form__field textarea:focus {
    border-color: #999;
}

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

.contact-form__captcha {
    margin-bottom: 20px;
}

.contact-form__submit {
    display: inline-block;
    padding: 14px 50px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #1c1c1c;
    background: transparent;
    border: 2px solid #1c1c1c;
    cursor: pointer;
    transition: all 0.3s;
    font-family: inherit;
}

.contact-form__submit:hover {
    background: #1c1c1c;
    color: #fff;
}

.contact-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Form Messages */
.contact-form__message {
    padding: 12px 16px;
    margin-bottom: 20px;
    font-size: 14px;
    border-radius: 4px;
}

.contact-form__message--success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.contact-form__message--error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Google Map */
.contact-map {
    width: 100%;
    height: 100%;
    min-height: 500px;
    background: #e8e8e8;
}

.contact-map iframe {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 500px;
}

/* Contact: Responsive */
@media (max-width: 768px) {
    .contact-section {
        padding: 50px 0;
    }

    .contact-section__heading {
        font-size: 26px;
        margin-bottom: 30px;
    }

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

    .contact-form__row {
        flex-direction: column;
        gap: 0;
    }

    .contact-info__details {
        flex-direction: column;
        gap: 10px;
    }

    .contact-map {
        min-height: 350px;
    }

    .contact-map iframe {
        min-height: 350px;
    }
}
