/* ========================================
   CONTACT PAGE STYLES
   ======================================== */

.contact-hero {
    padding: 120px 0 80px;
    background: var(--section-alt-bg);
}

.contact-hero h1 {
    font-size: 56px;
    margin-bottom: 25px;
}

.contact-hero p {
    font-size: 20px;
    color: var(--body-color);
}

.contact-content {
    padding: 80px 0;
}

/* Contact Form */
.contact-form {
    background: white;
    padding: 50px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
}

.contact-form h3 {
    font-size: 32px;
    margin-bottom: 30px;
}

.contact-form .form-group {
    margin-bottom: 25px;
}

.contact-form .form-control {
    padding: 15px 20px;
    font-size: 15px;
}

.contact-form textarea.form-control {
    min-height: 150px;
    resize: vertical;
}

.contact-form .btn {
    width: 100%;
    padding: 15px;
    font-size: 16px;
    font-weight: 600;
}

/* Contact Info */
.contact-info {
    background: var(--section-alt-bg);
    padding: 50px;
    border-radius: var(--radius-md);
    position: sticky;
    top: 100px;
}

.contact-info h3 {
    font-size: 28px;
    margin-bottom: 30px;
}

.contact-info-item {
    display: flex;
    align-items: start;
    gap: 20px;
    margin-bottom: 30px;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-info-item .icon {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-primary);
    color: white;
    border-radius: var(--radius-round);
    font-size: 20px;
}

.contact-info-item .content h4 {
    font-size: 18px;
    margin-bottom: 8px;
}

.contact-info-item .content p {
    color: var(--body-color);
    margin: 0;
    line-height: 1.6;
}

.contact-info-item .content a {
    color: var(--brand-primary);
}

.contact-info-item .content a:hover {
    color: var(--brand-primary-hover);
}

/* Map Section */
.map-section {
    height: 450px;
    background: var(--border-light);
    border-radius: var(--radius-md);
    overflow: hidden;
    margin-top: 40px;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

/* Success/Error Messages */
.contact-message {
    padding: 20px;
    border-radius: var(--radius-sm);
    margin-bottom: 25px;
    display: none;
}

.contact-message.show {
    display: block;
}

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

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

@media (max-width: 991px) {
    .contact-form,
    .contact-info {
        padding: 40px 30px;
    }
}

@media (max-width: 767px) {
    .contact-hero h1 {
        font-size: 36px;
    }
    
    .contact-form,
    .contact-info {
        padding: 30px 20px;
    }
    
    .contact-form h3 {
        font-size: 26px;
    }
}
