

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 6vw;
}


.page-title-section {
    padding: 60px 0 40px;
    text-align: center;
    background: linear-gradient(135deg, rgba(255,183,3,0.08), rgba(75,225,236,0.08));
}

.page-title {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 800;
    margin-bottom: 16px;
    background: linear-gradient(120deg, var(--accent-yellow), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    max-width: 700px;
    margin: 0 auto;
}


.contact-section {
    padding: 60px 0 80px;
}

.page-title-main {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    margin-bottom: 16px;
    text-align: center;
    background: linear-gradient(120deg, var(--accent-yellow), var(--accent-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.page-subtitle-main {
    font-size: clamp(16px, 2vw, 20px);
    color: var(--text-muted);
    text-align: center;
    max-width: 700px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

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

.contact-form-wrapper h2,
.contact-info-wrapper h2 {
    font-size: 28px;
    margin-bottom: 32px;
    color: var(--accent-cyan);
}


.contact-form {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    color: var(--text-muted);
    font-weight: 500;
    font-size: 14px;
}

.form-group input,
.form-group textarea {
    padding: 14px 18px;
    background: var(--bg-card);
    border: 1px solid rgba(75,225,236,0.2);
    border-radius: 12px;
    color: var(--text-primary);
    font-size: 15px;
    font-family: inherit;
    transition: var(--transition);
}

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

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


.contact-info {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

.info-item {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(75,225,236,0.12);
}

.info-item h3 {
    font-size: 18px;
    margin-bottom: 12px;
    color: var(--accent-yellow);
}

.info-item p {
    color: var(--text-muted);
    font-size: 16px;
    line-height: 1.6;
}


.hours-section {
    padding: 24px;
    background: var(--bg-card);
    border-radius: var(--radius);
    border: 1px solid rgba(75,225,236,0.12);
}

.hours-section h3 {
    font-size: 20px;
    margin-bottom: 20px;
    color: var(--accent-cyan);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.hours-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 12px 0;
    border-bottom: 1px solid rgba(75,225,236,0.1);
}

.hours-item:last-child {
    border-bottom: none;
}

.hours-item span:first-child {
    color: var(--text-muted);
    font-weight: 500;
}

.hours-item span:last-child {
    color: var(--accent-cyan);
    font-weight: 600;
}


.faq-section {
    padding: 80px 0;
    background: rgba(18,23,58,0.3);
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}


.map-section {
    padding: 80px 0;
    background: rgba(18,23,58,0.4);
}

.section-title {
    font-size: clamp(28px, 4vw, 42px);
    text-align: center;
    margin-bottom: 48px;
    color: var(--accent-cyan);
}

.map-wrapper {
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid rgba(75,225,236,0.2);
}

.map-wrapper iframe {
    display: block;
    width: 100%;
}


@media (max-width: 768px) {
    .page-header {
        padding: 60px 0 40px;
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .contact-section,
    .faq-section,
    .map-section {
        padding: 60px 0;
    }
    
    .hours-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
}


