/* Contact Page Styles */
.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0;
}

/* Hero Section */
.contact-hero {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%);
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    margin-bottom: 3rem;
}

.contact-hero h1 {
    font-size: 3rem;
    margin-bottom: 1rem;
    font-weight: bold;
}

.contact-hero p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Contact Content */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    padding: 2rem;
    max-width: 1200px;
    margin: 0 auto 3rem;
}

/* Contact Info Section */
.contact-info-section h2,
.contact-form-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    border-bottom: 3px solid #2ecc71;
    padding-bottom: 0.8rem;
    display: inline-block;
}

/* Contact Cards */
.contact-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.contact-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.15);
}

.contact-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.contact-card h3 {
    font-size: 1.3rem;
    color: #2c3e50;
    margin-bottom: 0.8rem;
    font-weight: bold;
}

.contact-card p {
    color: #7f8c8d;
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.contact-card a {
    color: #2ecc71;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.contact-card a:hover {
    color: #27ae60;
    text-decoration: underline;
}

/* Contact Form Section */
.contact-form-section {
    display: flex;
    flex-direction: column;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.form-group label {
    font-weight: 600;
    color: #2c3e50;
    margin-bottom: 0.6rem;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem;
    border: 1px solid #ecf0f1;
    border-radius: 4px;
    font-size: 0.95rem;
    font-family: inherit;
    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: #2ecc71;
    box-shadow: 0 0 5px rgba(46, 204, 113, 0.3);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-group select {
    cursor: pointer;
    background-color: white;
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    font-weight: 500;
    color: #555;
    cursor: pointer;
    margin: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-right: 0.6rem;
    cursor: pointer;
    accent-color: #2ecc71;
}

.submit-btn {
    padding: 1rem;
    background-color: #2ecc71;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
    margin-top: 1rem;
    align-self: flex-start;
}

.submit-btn:hover {
    background-color: #27ae60;
}

.submit-btn:active {
    transform: scale(0.98);
}

/* FAQ Section */
.faq-section {
    padding: 3rem 2rem;
    background-color: #f8f9fa;
    margin-bottom: 3rem;
}

.faq-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #2ecc71;
    padding-bottom: 0.8rem;
    display: inline-block;
    width: 100%;
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    background: white;
    margin-bottom: 1rem;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.faq-header {
    padding: 1.5rem;
    background-color: #f8f9fa;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background-color 0.3s ease;
}

.faq-header:hover {
    background-color: #e8f8f5;
}

.faq-header h3 {
    font-size: 1.1rem;
    color: #2c3e50;
    margin: 0;
}

.faq-icon {
    font-size: 1.5rem;
    color: #2ecc71;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 1.5rem;
}

.faq-item.active .faq-content {
    max-height: 500px;
    padding: 1.5rem;
}

.faq-content p {
    color: #555;
    line-height: 1.6;
    margin: 0;
}

/* Map Section */
.map-section {
    padding: 3rem 2rem;
    background-color: white;
}

.map-section h2 {
    font-size: 2rem;
    color: #2c3e50;
    margin-bottom: 2rem;
    text-align: center;
    border-bottom: 3px solid #2ecc71;
    padding-bottom: 0.8rem;
    display: inline-block;
    width: 100%;
}

.map-container {
    max-width: 1000px;
    margin: 2rem auto 0;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

.map-container iframe {
    border: none;
}

/* Success Message */
.success-message {
    background-color: #d4edda;
    color: #155724;
    padding: 1rem;
    border-radius: 4px;
    margin-bottom: 1rem;
    border: 1px solid #c3e6cb;
    animation: slideDown 0.3s ease;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design */
@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }

    .contact-hero p {
        font-size: 1rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 1rem;
    }

    .contact-cards {
        grid-template-columns: 1fr;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

    .faq-section,
    .map-section {
        padding: 2rem 1rem;
    }

    .contact-hero {
        padding: 2rem 1rem;
        margin-bottom: 2rem;
    }

    .faq-section h2,
    .map-section h2 {
        font-size: 1.5rem;
    }

    .contact-info-section h2,
    .contact-form-section h2 {
        font-size: 1.5rem;
    }
}

@media (max-width: 480px) {
    .contact-hero h1 {
        font-size: 1.5rem;
    }

    .contact-hero p {
        font-size: 0.9rem;
    }

    .contact-card {
        padding: 1rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-card h3 {
        font-size: 1.1rem;
    }

    .contact-card p {
        font-size: 0.85rem;
    }

    .faq-header {
        padding: 1rem;
    }

    .faq-header h3 {
        font-size: 1rem;
    }

    .faq-content {
        padding: 0 1rem;
    }

    .faq-item.active .faq-content {
        padding: 1rem;
    }

    .map-container iframe {
        height: 300px;
    }

    .submit-btn {
        width: 100%;
        align-self: stretch;
    }
}