/**
 * Contact Page Styles - Custom classes only, no Bootstrap conflicts
 */

.contact-wrapper {
    padding: 0;
}

/* Header Section */
.contact-header {
    background: #f8f9fa;
    text-align: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid #e0e0e0;
}


/* Title */
.contact-title {
    font-size: 2.5rem;
    font-weight: 300;
    color: #333;
    text-align: center;
    margin: 1rem 0 2rem;
}

/* Main Content */
.contact-content {
    display: flex;
    max-width: 1400px;
    margin: 0 auto;
}

.contact-columns {
    display: flex;
    width: 100%;
    margin: 0;
}

.contact-map-column {
    width: 66.666%;
    padding: 0;
}

.contact-form-column {
    width: 33.333%;
    padding: 0;
}

/* Map Section */
.contact-map {
    position: relative;
    width: 100%;
    height: 700px;
    background: #f0f0f0;
    margin-bottom: 3rem;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
}

/* Form Section */
.contact-form-section {
    padding: 3rem;
    background: white;
    display: flex;
    flex-direction: column;
    justify-content: center;
    height: 700px;
}

.contact-subtitle {
    color: #333;
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.contact-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-field {
    margin-bottom: 1rem;
}

.contact-input {
    width: 100%;
    border: 1px solid #e0e0e0;
    border-radius: 5px;
    padding: 12px 15px;
    font-size: 1rem;
    background: #f9f9f9;
}

.contact-input:focus {
    background: white;
    border-color: #333;
    outline: none;
}

.contact-textarea {
    resize: none;
}

.contact-submit {
    width: 100%;
    background: #333;
    color: white;
    border: none;
    padding: 12px 30px;
    font-size: 1.1rem;
    font-weight: 500;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s;
}

.contact-submit:hover {
    background: #000;
    transform: translateY(-1px);
}

/* Contact Info Bar */
.contact-info-bar {
    background: #f8f9fa;
    border-top: 1px solid #e0e0e0;
}

.contact-info-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 15px;
}

.contact-info-row {
    display: flex;
    flex-wrap: wrap;
    text-align: center;
    padding: 1.5rem 0;
}

.contact-info-col {
    flex: 1;
    padding: 0 15px;
}

.info-item {
    padding: 15px 10px;
}

.info-item i {
    font-size: 1.5rem;
    color: #333;
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
    border: 1px solid #333;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    line-height: 38px;
    text-align: center;
}

.info-content {
    font-size: 0.9rem;
    color: #666;
    display: inline-block;
    vertical-align: top;
}

.info-content strong {
    color: #333;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 991px) {
    .contact-columns {
        flex-direction: column;
    }

    .contact-map-column,
    .contact-form-column {
        width: 100%;
    }

    .contact-map {
        height: 400px;
    }

    .contact-form-section {
        height: auto;
        padding: 2rem;
    }

    .info-item {
        padding: 15px 10px;
    }
}

@media (max-width: 767px) {
    .contact-title {
        font-size: 2rem;
    }

    .contact-map {
        height: 300px;
    }

    .contact-form-section {
        padding: 1.5rem;
    }

    .contact-info-col {
        flex: 0 0 50%;
        margin-bottom: 1rem;
    }
}
