.contact-section {
    margin-top: 85px;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, #2a1b3d 0%, #44318d 50%, #632c7a 100%);
    width: 100%;
}

.contact-container {
    max-width: 1300px;
    margin: 0 auto;
}

.section-header {
    text-align: center;
    margin-bottom: 3rem;
}

.subtitle {
    display: inline-block;
    color: #e67ed4;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 0.5rem;
}

.section-header h1 {
    color: #fff;
    font-size: 3.5rem;
    margin-bottom: 1rem;
}

.section-header h2 {
    color: #fff;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.highlight {
    color: #e67ed4;
}

.header-line {
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #e67ed4, transparent);
    margin: 1rem auto;
}

.header-description {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.2rem;
    max-width: 600px;
    margin: 1rem auto;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.contact-info-side {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-card.featured {
    background: rgba(230, 126, 212, 0.1);
    border: 1px solid rgba(230, 126, 212, 0.2);
    border-radius: 30px;
    padding: 2rem;
    text-align: center;
}

.card-icon {
    width: 80px;
    height: 80px;
    background: #e67ed4;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.card-icon i {
    font-size: 2.5rem;
    color: #2a1b3d;
}

.info-card.featured h3 {
    color: #fff;
    font-size: 1.8rem;
    margin-bottom: 1rem;
}

.info-card.featured p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.method-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 126, 212, 0.15);
    border-radius: 20px;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.method-icon {
    width: 60px;
    height: 60px;
    background: rgba(230, 126, 212, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.method-icon i {
    font-size: 1.8rem;
    color: #e67ed4;
}

.method-details h4 {
    color: #fff;
    font-size: 1.2rem;
    margin-bottom: 0.3rem;
}

.method-details a {
    color: #e67ed4;
    text-decoration: none;
    font-size: 1.1rem;
}

.method-details p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.9rem;
    margin-top: 0.3rem;
}

.response-time {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.85rem;
}

.social-section {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 126, 212, 0.15);
    border-radius: 30px;
    padding: 2rem;
}

.social-section h3 {
    color: #fff;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
}

.social-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.social-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(230, 126, 212, 0.1);
    border-radius: 15px;
    padding: 1rem;
    text-decoration: none;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.social-card i {
    font-size: 1.8rem;
    color: #e67ed4;
}

.social-card span {
    color: #fff;
    font-size: 0.9rem;
}

.availability-card {
    background: rgba(230, 126, 212, 0.1);
    border: 1px solid rgba(230, 126, 212, 0.2);
    border-radius: 20px;
    padding: 1.2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.status-indicator {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pulse {
    width: 12px;
    height: 12px;
    background: #00ff00;
    border-radius: 50%;
}

.status-text {
    color: #fff;
    font-weight: 500;
}

.availability-timer {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: #e67ed4;
}

.contact-form-side {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 126, 212, 0.15);
    border-radius: 30px;
    padding: 2.5rem;
}

.form-container h2 {
    color: #fff;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.form-container > p {
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2rem;
}

#contactForm {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-group label {
    color: #fff;
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.form-group label i {
    color: #e67ed4;
    font-size: 0.9rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(230, 126, 212, 0.2);
    border-radius: 15px;
    color: #fff;
    font-size: 1rem;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #e67ed4;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.form-group select option {
    background: #2a1b3d;
    color: #fff;
}

.form-group.full-width {
    grid-column: 1 / -1;
}

.file-input {
    position: relative;
}

.file-input input[type="file"] {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    cursor: pointer;
}

.file-label {
    display: block;
    padding: 3rem 1rem;
    background: rgba(255, 255, 255, 0.03);
    border: 2px dashed rgba(230, 126, 212, 0.3);
    border-radius: 15px;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
}

.form-group.consent {
    flex-direction: row;
    align-items: center;
    gap: 0.8rem;
}

.form-group.consent input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #e67ed4;
}

.form-group.consent label {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.privacy-link {
    color: #e67ed4;
    text-decoration: none;
}

.submit-btn {
    width: 100%;
    padding: 1.2rem;
    font-size: 1.1rem;
    justify-content: center;
    margin-top: 1rem;
    cursor: pointer;
    border: none;
    background: #e67ed4;
    color: #2a1b3d;
    border-radius: 50px;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.form-status {
    text-align: center;
    padding: 1rem;
    border-radius: 15px;
    display: none;
}

.form-status.success {
    display: block;
    background: rgba(0, 255, 0, 0.1);
    color: #00ff00;
    border: 1px solid #00ff00;
}

.form-status.error {
    display: block;
    background: rgba(255, 0, 0, 0.1);
    color: #ff4444;
    border: 1px solid #ff4444;
}

.alt-contact {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(230, 126, 212, 0.2);
    text-align: center;
}

.alt-contact p {
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
}

.email-direct {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: #e67ed4;
    text-decoration: none;
    font-size: 1.2rem;
    padding: 0.5rem 1.5rem;
    background: rgba(230, 126, 212, 0.1);
    border-radius: 50px;
}

.map-section {
    margin-top: 3rem;
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 30px;
    overflow: hidden;
    border: 2px solid rgba(230, 126, 212, 0.2);
}

.map-container iframe {
    width: 100%;
    height: 100%;
}

.faq-section {
    padding: 3rem 2rem;
    background: rgba(0, 0, 0, 0.2);
}

.faq-container {
    max-width: 1000px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2rem;
}

.faq-item {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(230, 126, 212, 0.15);
    border-radius: 20px;
    overflow: hidden;
}

.faq-question {
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    color: #fff;
    font-size: 1.1rem;
    margin: 0;
}

.faq-question i {
    color: #e67ed4;
}

.faq-answer {
    padding: 0 1.5rem;
    max-height: 0;
    overflow: hidden;
}

.faq-item.active .faq-answer {
    padding: 0 1.5rem 1.5rem;
    max-height: 200px;
}

.faq-answer p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .section-header h1 {
        font-size: 3rem;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .contact-section {
        padding: 2rem 1rem;
    }
    
    .section-header h1 {
        font-size: 2.5rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .social-links-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .method-card {
        flex-direction: column;
        text-align: center;
    }
    
    .availability-card {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
    }
    
    .map-container {
        height: 300px;
    }
}

@media (max-width: 480px) {
    .contact-section {
        margin-top: 70px;
        padding: 1.5rem 0.8rem;
    }
    
    .section-header h1 {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 1.8rem;
    }
    
    .contact-form-side {
        padding: 1.5rem;
    }
    
    .social-links-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .email-direct {
        font-size: 1rem;
        padding: 0.5rem 1rem;
    }
    
    .map-container {
        height: 250px;
    }
}

@media (max-height: 600px) and (orientation: landscape) {
    .contact-section {
        margin-top: 70px;
    }
    
    .map-container {
        height: 250px;
    }
}