/* Contacts Page Styles */

/* Section Headers */
.section-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 2rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #5A2A5A;
}

.section-header h2 {
    margin: 0;
    color: #5A2A5A;
    font-size: 2rem;
    font-weight: 600;
}

.section-icon {
    width: 32px;
    height: 32px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(45%) saturate(1234%) hue-rotate(270deg) brightness(95%) contrast(95%);
}

/* Subsection Headers */
.subsection-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 1.5rem;
}

.subsection-header h3 {
    margin: 0;
    color: #5A2A5A;
    font-size: 1.5rem;
    font-weight: 500;
}

.subsection-icon {
    width: 24px;
    height: 24px;
    filter: brightness(0) saturate(100%) invert(20%) sepia(45%) saturate(1234%) hue-rotate(270deg) brightness(95%) contrast(95%);
}

/* Contact Info Section */
.contact-info {
    background: linear-gradient(135deg, #f8f6f9 0%, #f0ebf2 100%);
    padding: 3rem 0;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.contact-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(90, 42, 90, 0.1);
    border: 1px solid rgba(90, 42, 90, 0.1);
    transition: all 0.3s ease;
    text-align: center;
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(90, 42, 90, 0.15);
    border-color: #5A2A5A;
}

.contact-card svg {
    margin-bottom: 1rem;
    filter: brightness(0) saturate(100%) invert(20%) sepia(45%) saturate(1234%) hue-rotate(270deg) brightness(95%) contrast(95%);
}

.contact-card h3 {
    color: #5A2A5A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

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

/* Map Section */
.map-section {
    padding: 3rem 0;
    background: #fafafa;
}

.map-container {
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(90, 42, 90, 0.1);
    margin-bottom: 2rem;
}

.map-container iframe {
    border-radius: 12px;
}

.map-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(90, 42, 90, 0.1);
    border: 1px solid rgba(90, 42, 90, 0.1);
}

.transport-info {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin-top: 1.5rem;
}

.transport-card {
    background: #f8f6f9;
    padding: 1.5rem;
    border-radius: 8px;
    border-left: 4px solid #5A2A5A;
}

.transport-card h4 {
    color: #5A2A5A;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

.transport-card p {
    color: #666;
    margin: 0;
    line-height: 1.6;
}

/* Contact Form Section */
.contact-form-section {
    padding: 3rem 0;
    background: white;
}

.form-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 2rem;
}

.contact-form {
    background: #f8f6f9;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(90, 42, 90, 0.1);
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: #5A2A5A;
    font-weight: 500;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.75rem;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: #5A2A5A;
    box-shadow: 0 0 0 3px rgba(90, 42, 90, 0.1);
}

.btn-primary {
    background: #5A2A5A;
    color: white;
    padding: 0.875rem 2rem;
    border: none;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
}

.btn-primary:hover {
    background: #4a1f4a;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(90, 42, 90, 0.3);
}

/* FAQ Section */
.contact-form-info {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    border: 1px solid rgba(90, 42, 90, 0.1);
}

.faq-item {
    background: #f8f6f9;
    padding: 1.5rem;
    border-radius: 8px;
    margin-bottom: 1rem;
    border-left: 4px solid #5A2A5A;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-item h4 {
    color: #5A2A5A;
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    font-weight: 600;
}

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

/* Team Section */
.team-section {
    padding: 3rem 0;
    background: #fafafa;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.team-member {
    background: white;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(90, 42, 90, 0.1);
    border: 1px solid rgba(90, 42, 90, 0.1);
    transition: all 0.3s ease;
}

.team-member:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(90, 42, 90, 0.15);
}

.member-photo {
    height: 250px;
    overflow: hidden;
    background: #f0ebf2;
    display: flex;
    align-items: center;
    justify-content: center;
}

.member-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.member-info {
    padding: 1.5rem;
}

.member-info h3 {
    color: #5A2A5A;
    margin-bottom: 0.5rem;
    font-size: 1.25rem;
    font-weight: 600;
}

.member-position {
    color: #8e4a8e;
    font-weight: 500;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.member-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 1rem;
}

.member-contact a {
    color: #5A2A5A;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
}

.member-contact a:hover {
    color: #4a1f4a;
    text-decoration: underline;
}

/* Responsive Design */
@media (max-width: 768px) {
    .section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }
    
    .section-header h2 {
        font-size: 1.75rem;
    }
    
    .subsection-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 6px;
    }
    
    .contact-cards {
        grid-template-columns: 1fr;
    }
    
    .form-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .transport-info {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
}

/* Dark Mode Support */
@media (prefers-color-scheme: dark) {
    .contact-info {
        background: linear-gradient(135deg, #2a1a2a 0%, #3a2a3a 100%);
    }
    
    .contact-card {
        background: #2a1a2a;
        border-color: rgba(90, 42, 90, 0.3);
    }
    
    .contact-card h3 {
        color: #b88bb8;
    }
    
    .contact-card p {
        color: #ccc;
    }
    
    .map-section {
        background: #1a1a1a;
    }
    
    .map-info {
        background: #2a1a2a;
        border-color: rgba(90, 42, 90, 0.3);
    }
    
    .transport-card {
        background: #3a2a3a;
    }
    
    .transport-card p {
        color: #ccc;
    }
    
    .contact-form-section {
        background: #1a1a1a;
    }
    
    .contact-form {
        background: #2a1a2a;
        border-color: rgba(90, 42, 90, 0.3);
    }
    
    .contact-form-info {
        background: #2a1a2a;
        border-color: rgba(90, 42, 90, 0.3);
    }
    
    .faq-item {
        background: #3a2a3a;
    }
    
    .faq-item p {
        color: #ccc;
    }
    
    .team-section {
        background: #1a1a1a;
    }
    
    .team-member {
        background: #2a1a2a;
        border-color: rgba(90, 42, 90, 0.3);
    }
    
    .member-photo {
        background: #3a2a3a;
    }
    
    .member-description {
        color: #ccc;
    }
}