/* Contact Page Styles */

:root {
    --primary-gradient: linear-gradient(135deg, #3712bd 0%, #57dd18 100%);
    --primary-color: #3712bd;
    --accent-color: #57dd18;
    --text-dark: #333;
    --text-light: #666;
    --bg-light: #f8f9fa;
    --white: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 5px 15px rgba(0,0,0,0.08);
    --shadow-hover: 0 10px 25px rgba(0,0,0,0.15);
}

/* Hero Section */
.contact-hero {
    background: var(--primary-gradient);
    color: white;
    padding: 6rem 5% 4rem;
    text-align: center;
    margin-top: 8px;
    position: relative;
    overflow: hidden;
}

.contact-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(255,255,255,0.1)" stroke-width="0.5"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');*/
    opacity: 0.3;
}

.contact-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    margin-bottom: 1rem;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.2);
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.95;
    line-height: 1.6;
}

/* Main Container */
.contact-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 5%;
}

/* Two Column Layout */
.contact-main {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Contact Form Section */
.contact-form-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.contact-form-section:hover {
    box-shadow: var(--shadow-hover);
}

.contact-form-section h2 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.contact-form-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group label {
    margin-bottom: 0.5rem;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 0.95rem;
}

.form-group input,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border-color);
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s;
    font-family: inherit;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
    line-height: 1.6;
}

.submit-btn {
    background: var(--primary-gradient);
    color: var(--white);
    padding: 1rem 2.5rem;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s;
    align-self: flex-start;
    box-shadow: 0 4px 15px rgba(102, 45, 140, 0.3);
}

.submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 45, 140, 0.4);
}

.submit-btn:active {
    transform: translateY(0);
}

/* Contact Info Section */
.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    transition: transform 0.3s, box-shadow 0.3s;
}

.info-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-hover);
}

.info-card h3 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.info-card h3::before {
    content: '';
    width: 4px;
    height: 24px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    background: var(--bg-light);
    border-radius: 10px;
    transition: background 0.3s;
}

.contact-info-item:hover {
    background: #f0f0f0;
}

.contact-info-item:last-child {
    margin-bottom: 0;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    flex-shrink: 0;
    box-shadow: 0 4px 10px rgba(102, 45, 140, 0.2);
}

.contact-info-content {
    flex: 1;
}

.contact-info-content strong {
    display: block;
    color: var(--text-dark);
    margin-bottom: 0.25rem;
    font-size: 1rem;
}

.contact-info-content p,
.contact-info-content a {
    color: var(--text-light);
    text-decoration: none;
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
}

.contact-info-content a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

/* Business Hours */
.hours-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border-color);
}

.hours-list li:last-child {
    border-bottom: none;
}

.hours-list strong {
    color: var(--text-dark);
}

.hours-list span {
    color: var(--text-light);
}

/* Map Section */
.map-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
    margin-bottom: 3rem;
}

.map-section h2 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.map-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
    margin-bottom: 1rem;
}

.map-container iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

.map-note {
    color: var(--text-light);
    font-style: italic;
    margin-top: 1rem;
}

/* FAQ Section */
.faq-section {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: var(--shadow);
}

.faq-section h2 {
    color: var(--text-dark);
    margin-top: 0;
    margin-bottom: 2rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 1rem;
}

.faq-section h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 4px;
    background: var(--primary-gradient);
    border-radius: 2px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.faq-item {
    padding: 1.5rem;
    background: var(--bg-light);
    border-radius: 10px;
    border-left: 4px solid transparent;
    transition: all 0.3s;
}

.faq-item:hover {
    background: #f0f0f0;
    border-left-color: var(--primary-color);
    transform: translateX(5px);
}

.faq-item h4 {
    color: var(--text-dark);
    margin: 0 0 0.75rem 0;
    font-size: 1.1rem;
    font-weight: 600;
}

.faq-item p {
    color: var(--text-light);
    margin: 0;
    line-height: 1.7;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .contact-main {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-container {
        padding: 3rem 4%;
    }
}

@media (max-width: 768px) {
    .contact-hero {
        padding: 4rem 5% 3rem;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-hero p {
        font-size: 1rem;
    }
    
    .contact-container {
        padding: 2rem 4%;
    }
    
    .contact-form-section,
    .info-card,
    .map-section,
    .faq-section {
        padding: 1.5rem;
    }
    
    .contact-form-section h2,
    .map-section h2,
    .faq-section h2 {
        font-size: 1.5rem;
    }
    
    .contact-info-item {
        flex-direction: column;
        text-align: center;
    }
    
    .contact-icon {
        margin: 0 auto;
    }
    
    .map-container iframe {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 3rem 4% 2rem;
    }
    
    .contact-container {
        padding: 1.5rem 3%;
    }
    
    .contact-form-section,
    .info-card,
    .map-section,
    .faq-section {
        padding: 1.25rem;
    }
    
    .submit-btn {
        width: 100%;
        align-self: stretch;
    }
    
    .hours-list li {
        flex-direction: column;
        gap: 0.25rem;
    }
}

