/* Contact Page Styles */

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2a2a72 0%, #009ffd 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.contact-hero-content {
    max-width: 800px;
    margin: 0 auto;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: fadeInUp 0.8s ease;
}

.contact-hero p {
    font-size: 1.3rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Contact Options */
.contact-options {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.contact-card {
    background-color: white;
    border-radius: 10px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
}

.contact-card i {
    font-size: 3rem;
    color: #2a2a72;
    margin-bottom: 20px;
}

.contact-card h3 {
    font-size: 1.5rem;
    color: #333;
    margin-bottom: 15px;
}

.contact-card p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.contact-link {
    display: inline-block;
    color: #2a2a72;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.contact-link:hover {
    color: #009ffd;
    text-decoration: underline;
}

.response-time {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
    margin-top: 10px;
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background-color: white;
}

.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 10px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}

.form-header {
    background-color: #2a2a72;
    color: white;
    padding: 30px;
    text-align: center;
}

.form-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.form-header p {
    opacity: 0.9;
}

.contact-form {
    padding: 40px;
}

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

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    color: #333;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 5px;
    font-size: 1rem;
    color: #333;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #2a2a72;
    box-shadow: 0 0 0 2px rgba(42, 42, 114, 0.1);
}

.checkbox-group {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox-group input {
    width: auto;
}

.checkbox-group label {
    margin-bottom: 0;
    font-weight: normal;
}

.submit-btn {
    background-color: #2a2a72;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: 500;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.3s ease;
    width: 100%;
}

.submit-btn:hover {
    background-color: #1a1a52;
    transform: translateY(-2px);
}

/* Contact Info */
.contact-info {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.info-card {
    background-color: white;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.info-card i {
    font-size: 2.5rem;
    color: #2a2a72;
    margin-bottom: 20px;
}

.info-card h3 {
    font-size: 1.4rem;
    color: #333;
    margin-bottom: 15px;
}

.info-card p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 15px;
}

.hours {
    font-size: 0.9rem;
    color: #888;
    font-style: italic;
}

.chat-btn {
    display: inline-block;
    background-color: #2a2a72;
    color: white;
    text-decoration: none;
    padding: 10px 25px;
    border-radius: 5px;
    font-weight: 500;
    transition: background-color 0.3s ease;
    margin-top: 10px;
}

.chat-btn:hover {
    background-color: #1a1a52;
}

/* Map section removed as requested */

.faq-preview {
    padding: 80px 0;
    background-color: white;
}

.faq-preview h2 {
    text-align: center;
    font-size: 2.2rem;
    margin-bottom: 10px;
    color: #333;
}

.faq-preview > p {
    text-align: center;
    color: #666;
    margin-bottom: 50px;
    font-size: 1.1rem;
}

.faq-preview-list {
    max-width: 900px;
    margin: 0 auto;
}

.faq-preview-item {
    background-color: #f9f9f9;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 20px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.faq-preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.05);
}

.faq-preview-item h3 {
    color: #2a2a72;
    margin-bottom: 10px;
    font-size: 1.2rem;
}

.faq-preview-item p {
    color: #666;
    line-height: 1.6;
}

.faq-more {
    text-align: center;
    margin-top: 40px;
}

.faq-more-link {
    display: inline-flex;
    align-items: center;
    color: #2a2a72;
    font-weight: 500;
    text-decoration: none;
    font-size: 1.1rem;
    transition: color 0.3s ease;
}

.faq-more-link i {
    margin-left: 8px;
    transition: transform 0.3s ease;
}

.faq-more-link:hover {
    color: #009ffd;
}

.faq-more-link:hover i {
    transform: translateX(5px);
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 992px) {
    .contact-form-container {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2.5rem;
    }
    
    .contact-hero p {
        font-size: 1.1rem;
    }
    
    .contact-form {
        padding: 30px 20px;
    }
    
    .form-header {
        padding: 25px 20px;
    }
    
    .form-header h2 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    .contact-hero {
        padding: 60px 0;
    }
    
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-options,
    .contact-form-section,
    .contact-info,
    .faq-preview {
        padding: 50px 0;
    }
    
    .contact-card {
        padding: 30px 20px;
    }
    
    .faq-preview h2 {
        font-size: 1.8rem;
    }
}
