/* contact.css - Contact Page Styles */

/* Page Banner */
.contact-banner {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    padding: 120px 0 60px;
    position: relative;
    text-align: center;
}

.banner-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.banner-sub {
    font-size: 16px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.banner-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    line-height: 0;
}

/* Contact Page Grid */
.contact-page-section {
    background: var(--white);
}

.contact-page-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
}

/* Left Side - Contact Info */
.contact-info-side h2 {
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.contact-info-side > p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-info-list {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
}

.contact-info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info-icon i,
.contact-info-icon svg,
.contact-info-icon .svg-inline--fa {
    font-size: 20px;
    width: 20px;
    height: 20px;
    color: #ffffff !important;
    fill: currentColor;
}

.contact-info-details h4 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.contact-info-details p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.contact-info-details p a {
    color: var(--primary);
    text-decoration: none;
}

.contact-info-details p a:hover {
    text-decoration: underline;
}

.contact-info-details .emergency {
    margin-top: 4px;
}

/* Right Side - Contact Form */
.contact-form-side {
    background: var(--bg-soft);
    border-radius: var(--radius-xl);
    padding: 36px;
}

.contact-form-wrapper h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 24px;
}

.contact-form-wrapper .form-group {
    margin-bottom: 20px;
}

.contact-form-wrapper input,
.contact-form-wrapper select,
.contact-form-wrapper textarea {
    width: 100%;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: inherit;
    font-size: 14px;
    transition: all 0.3s ease;
    background: var(--white);
}

.contact-form-wrapper input:focus,
.contact-form-wrapper select:focus,
.contact-form-wrapper textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(178, 43, 51, 0.1);
}

.contact-form-wrapper textarea {
    resize: vertical;
}

/* CAPTCHA Styles */
.captcha-container {
    margin-bottom: 24px;
}

.captcha-container .form-label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.captcha-box {
    display: flex;
    align-items: center;
    gap: 12px;
}

.captcha-question {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 16px;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    min-width: 100px;
    text-align: center;
}

.captcha-input {
    flex: 1;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 8px;
    font-size: 14px;
}

.captcha-input:focus {
    outline: none;
    border-color: var(--primary);
}

.captcha-refresh {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 10px 12px;
    cursor: pointer;
    color: var(--text-muted);
    transition: all 0.2s;
}

.captcha-refresh:hover {
    background: var(--gradient);
    border-color: transparent;
    color: white;
}

.btn-block {
    width: 100%;
    justify-content: center;
}

/* Map Section */
.map-section {
    background: var(--bg-soft);
    padding: 0 0 80px;
}

.map-wrapper {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
    height: 350px;
}

/* Responsive */
@media (max-width: 992px) {
    .contact-page-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-side {
        padding: 28px;
    }
}

@media (max-width: 768px) {
    .contact-banner {
        padding: 100px 0 40px;
    }
    
    .banner-title {
        font-size: 32px;
    }
    
    .contact-info-side h2 {
        font-size: 24px;
    }
    
    .contact-form-side {
        padding: 24px;
    }
    
    .captcha-box {
        flex-wrap: wrap;
    }
    
    .captcha-question {
        width: 100%;
    }
    
    .map-section {
        padding: 0 0 60px;
    }
}

