/* =========================
   CONTACT PAGE STYLES
========================= */
.contact-hero {
    padding: 60px 0;
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.05), rgba(168, 85, 247, 0.05));
    text-align: center;
}

.contact-hero h1 {
    font-size: 3rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    margin-bottom: 16px;
}

.contact-hero p {
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.contact-section {
    padding: 60px 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 48px;
    margin-bottom: 60px;
}

/* Contact Info Cards */
.contact-info {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.info-card {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 20px;
    padding: 24px;
    text-align: center;
    transition: var(--transition-smooth);
}

.info-card:hover {
    transform: translateY(-4px);
    border-color: var(--cyan);
    box-shadow: var(--shadow-glow);
}

.info-icon {
    width: 60px;
    height: 60px;
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
}

.info-icon i {
    font-size: 1.8rem;
    color: var(--cyan);
}

.info-card h3 {
    margin-bottom: 12px;
    font-size: 1.1rem;
}

.info-card p {
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.info-card .small {
    font-size: 0.75rem;
    color: var(--text-muted);
}

.btn-maps {
    margin-top: 12px;
    padding: 6px 16px;
    background: transparent;
    border: 1px solid var(--border-light);
    border-radius: 40px;
    color: var(--cyan);
    cursor: pointer;
    transition: var(--transition-fast);
}

.btn-maps:hover {
    background: var(--gradient-primary);
    color: white;
    border-color: transparent;
}

.contact-social {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 12px;
}

.contact-social a {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 40px;
    text-decoration: none;
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.contact-social a:hover {
    background: var(--gradient-primary);
    color: white;
    transform: translateX(4px);
}

/* Contact Form */
.contact-form-container {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 24px;
    padding: 32px;
}

.contact-form h2 {
    margin-bottom: 8px;
}

.contact-form p {
    color: var(--text-muted);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    background: var(--bg-surface);
    border: 1px solid var(--border-light);
    border-radius: 12px;
    color: var(--text-primary);
    font-family: inherit;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px rgba(0, 229, 255, 0.1);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.checkbox {
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkbox input {
    width: auto;
    margin: 0;
}

.checkbox label {
    margin-bottom: 0;
    font-size: 0.85rem;
}

.checkbox a {
    color: var(--cyan);
    text-decoration: none;
}

.checkbox a:hover {
    text-decoration: underline;
}

.btn-submit {
    width: 100%;
    justify-content: center;
}

/* FAQ Section */
.faq-section {
    margin-top: 60px;
    margin-bottom: 60px;
}

.faq-section h2 {
    text-align: center;
    margin-bottom: 40px;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-light);
    border-radius: 16px;
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.faq-question:hover {
    background: rgba(0, 229, 255, 0.05);
}

.faq-question i:first-child {
    color: var(--cyan);
    font-size: 1.2rem;
}

.faq-question span {
    flex: 1;
    font-weight: 500;
}

.faq-question i:last-child {
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i:last-child {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
    padding: 0 20px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding: 0 20px 20px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* Office Hours */
.office-hours {
    display: flex;
    justify-content: center;
}

.hours-card {
    background: linear-gradient(135deg, rgba(0, 229, 255, 0.1), rgba(168, 85, 247, 0.1));
    border-radius: 20px;
    padding: 24px 48px;
    display: flex;
    align-items: center;
    gap: 20px;
    text-align: center;
}

.hours-card i {
    font-size: 2.5rem;
    color: var(--cyan);
}

.hours-card h3 {
    margin-bottom: 8px;
}

.hours-card p {
    color: var(--text-secondary);
}

/* Map Modal */
.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.modal-content {
    background: var(--bg-card);
    border-radius: 20px;
    width: 90%;
    max-width: 800px;
    position: relative;
    overflow: hidden;
}

.close-modal {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 28px;
    cursor: pointer;
    color: var(--text-secondary);
    z-index: 10;
}

.close-modal:hover {
    color: var(--cyan);
}

#mapContainer {
    height: 500px;
    width: 100%;
}

/* Responsive */
@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-hero h1 {
        font-size: 2rem;
    }
    
    .contact-info {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .hours-card {
        flex-direction: column;
        padding: 20px;
    }
    
    .hours-card i {
        font-size: 2rem;
    }
}