/* Contact Page Styles */

/* Page Hero */
.page-hero {
    height: auto;
    min-height: auto;
    padding-top: calc(var(--header-height, 100px) + 40px);
    padding-bottom: 60px;
    align-items: flex-start;
}

.page-hero--contact {
    min-height: auto;
}

.contact-hero-text {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Split Layout */
.contact-split-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    background: var(--card-bg);
    border: 1px solid var(--glass-border);
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 20px 50px -10px rgba(0,0,0,0.5);
    position: relative;
    z-index: 1;
}

.contact-info-panel {
    padding: 80px 60px;
    background: linear-gradient(180deg, rgba(255,255,255,0.03) 0%, rgba(255,255,255,0.01) 100%);
    border-right: 1px solid var(--glass-border);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.contact-form-panel {
    padding: 80px 60px;
    background: rgba(0,0,0,0.2);
}

.contact-info-title {
    font-size: 2rem;
    margin-bottom: 40px;
    color: #fff;
}

.contact-form-title {
    margin-bottom: 30px;
    color: #fff;
}

.contact-method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    margin-bottom: 40px;
}

.contact-icon-box {
    width: 50px;
    height: 50px;
    background: rgba(40, 243, 106, 0.1);
    border: 1px solid rgba(40, 243, 106, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.contact-method-content h4 {
    color: #fff;
    margin-bottom: 5px;
    font-size: 1.1rem;
}

.contact-method-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-socials {
    display: flex;
    gap: 15px;
    margin-top: auto;
    flex-wrap: wrap;
}

.contact-section--intro {
    padding-bottom: 120px;
}

.form-control--alt {
    background: rgba(255,255,255,0.05);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.1);
}

.form-control--alt:focus {
    border-color: var(--accent-primary);
}

select.form-control--alt {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='rgba(255, 255, 255, 0.5)'%3E%3Cpath d='M12 16L6 10H18L12 16Z'%3E%3C/path%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 20px;
    padding-right: 45px;
    cursor: pointer;
}

select.form-control--alt option {
    background-color: #0A0A0F;
    color: #fff;
    padding: 12px;
}

.contact-form-btn {
    width: 100%;
}

.contact-form-note {
    margin-top: 15px;
    font-size: 0.8rem;
    color: var(--text-secondary);
    text-align: center;
}

/* Assurance */
.contact-assurance {
    padding: 100px 0;
    text-align: center;
}

.contact-assurance-inner {
    max-width: 800px;
    margin: 0 auto;
}

.contact-assurance-title {
    margin-bottom: 20px;
}

.contact-assurance-text {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Process Section */
.contact-process {
    padding: 100px 0;
    position: relative;
}

.contact-process-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-process-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.contact-step {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(10,10,12,0.6) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 24px;
    padding: 40px 30px;
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.contact-step:hover {
    transform: translateY(-5px);
    border-color: var(--accent-primary);
}

.contact-step-number {
    font-size: 4rem;
    font-weight: 800;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 255, 255, 0.2);
    display: block;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1;
    transition: all 0.3s ease;
}

.contact-step:hover .contact-step-number {
    -webkit-text-stroke-color: var(--accent-primary);
    opacity: 1;
}

.contact-step-title {
    font-size: 1.4rem;
    margin-bottom: 15px;
}

/* FAQ Section */
.contact-faq {
    padding: 0 0 120px;
}

.contact-faq-header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 60px;
}

.contact-faq-title {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.contact-faq-grid {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

/* Specific FAQ Styling */
.contact-faq .faq-item {
    background: linear-gradient(145deg, rgba(255,255,255,0.03) 0%, rgba(10,10,12,0.6) 100%);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 24px;
    transition: background-color 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
}

.contact-faq .faq-item:hover {
    border-color: rgba(255,255,255,0.15);
    background: rgba(255,255,255,0.05);
}

/* CTA */
.contact-cta-title {
    font-size: 3rem;
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.contact-cta-text {
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.contact-cta-btn {
    position: relative;
    z-index: 2;
}

/* Responsive - Contact */
@media (max-width: 1024px) {
    .contact-split-wrapper {
        grid-template-columns: 1fr;
    }
    .contact-info-panel {
        border-right: none;
        border-bottom: 1px solid var(--glass-border);
        padding: 40px;
    }
    .contact-form-panel {
        padding: 40px;
    }
    .contact-info-title {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .page-hero {
        padding-top: calc(var(--header-height, 100px) + 30px);
        padding-bottom: 40px;
    }
    
    .contact-info-panel, .contact-form-panel {
        padding: 30px 24px;
    }

    .contact-info-title {
        font-size: 1.6rem;
        margin-bottom: 30px;
    }

    .contact-section--intro {
        padding-bottom: 60px;
    }

    .contact-steps {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-step {
        display: flex;
        align-items: flex-start;
        gap: 25px;
        padding: 30px;
        text-align: left;
    }

    .contact-step-number {
        margin-bottom: 0;
        font-size: 3rem;
        min-width: 60px;
    }

    .contact-process-title,
    .contact-faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .contact-step {
        flex-direction: column;
        gap: 15px;
    }
}
