/* Contact page specific styles */

/* Hero Section */
.contact-hero {
    width: 100%;
    height: 400px;
    background: linear-gradient(rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0.5)), 
                url('../images/contact /hero-bg.jpg') center/cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-align: center;
    padding: 0 20px;
}

.contact-hero .hero-content h1 {
    font-size: 48px;
    margin-bottom: 20px;
    font-weight: 700;
    color: white !important;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}

.contact-hero .hero-content p {
    font-size: 20px;
    margin-bottom: 30px;
    opacity: 0.9;
    color: rgba(255, 255, 255, 0.9) !important;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
}

.cta-button {
    background: var(--primary-color);
    color: #000 !important;
    background: white !important;
    border: none;
    padding: 12px 30px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
}

.cta-button:hover {
    background: var(--accent-color);
}

/* Contact Section */
.contact-section {
    padding: 80px 0;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.section-title {
    font-size: 36px;
    margin-bottom: 10px;
    text-align: center;
}

.section-subtitle {
    text-align: center;
    margin-bottom: 50px;
    color: var(--text-light);
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: #f5f5f5;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    flex-shrink: 0;
}

.contact-details h3 {
    margin-bottom: 5px;
    font-size: 18px;
    color: var(--text-color);
}

.contact-details p {
    text-align: left;
    margin-bottom: 0;
    color: var(--text-light);
    line-height: 1.6;
}

.contact-form {
    background: var(--bg-light);
    padding: 30px;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 6px;
    font-family: inherit;
    font-size: 15px;
    transition: var(--transition);
    background: var(--secondary-color);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(0, 0, 0, 0.1);
}

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

.submit-btn {
    background: var(--primary-color);
    color: var(--secondary-color);
    border: 1px solid var(--primary-color);
    padding: 12px 30px;
    border-radius: 6px;
    font-family: inherit;
    font-size: 16px;
    cursor: pointer;
    font-weight: 600;
    transition: var(--transition);
    width: 100%;
}

.submit-btn:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
}

/* Map Section (Optional for future) */
.map-section {
    padding: 60px 0;
    background: var(--bg-light);
}

.map-container {
    height: 400px;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid var(--border-color);
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero {
        height: 300px;
    }
    
    .contact-hero .hero-content h1 {
        font-size: 36px;
    }
    
    .contact-hero .hero-content p {
        font-size: 18px;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 28px;
    }
    
    .contact-form {
        padding: 20px;
    }
}

@media (max-width: 480px) {
    .contact-hero .hero-content h1 {
        font-size: 28px;
    }
    
    .contact-item {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }
    
    .contact-details p {
        text-align: center;
    }
}