/* ===================== */
/* Page Header (reuse from about) */
/* ===================== */
.page-header {
    padding: 180px 0 100px;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 50%, #1f1f1f 100%);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 30% 20%, rgba(255, 107, 53, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(255, 107, 53, 0.1) 0%, transparent 40%);
    z-index: 1;
}

.page-header-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.page-header h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 15px;
}

.page-header h1 span {
    color: var(--accent-color);
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
}

.page-header p {
    font-size: 1.2rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ===================== */
/* Contact Section */
/* ===================== */
.contact-section {
    padding: 80px 0;
    background: var(--primary-color);
    position: relative;
    z-index: 2;
}

.contact-info {
    padding: 35px;
    background: linear-gradient(145deg, var(--secondary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
    height: 100%;
}

.contact-info h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 20px;
}

.contact-desc {
    color: var(--text-muted);
    line-height: 1.8;
    margin-bottom: 30px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact-method {
    display: flex;
    gap: 18px;
    padding: 18px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    transition: all 0.3s;
}

.contact-method:hover {
    background: rgba(255, 107, 53, 0.08);
    transform: translateX(5px);
}

.method-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: white;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(255, 107, 53, 0.3);
}

.method-details h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 6px;
}

.method-details p {
    color: var(--text-light);
    margin-bottom: 4px;
    font-size: 0.9rem;
}

.method-note {
    color: var(--text-muted) !important;
    font-size: 0.8rem !important;
}

.social-media {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.social-media h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 18px;
}

.social-icons {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 45px;
    height: 45px;
    background: var(--primary-color);
    border: 1px solid rgba(255, 107, 53, 0.2);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    font-size: 1.1rem;
    transition: all 0.3s;
}

.social-icon:hover {
    background: var(--accent-color);
    border-color: var(--accent-color);
    transform: translateY(-5px);
    color: white;
}

/* ===================== */
/* Contact Form */
/* ===================== */
.contact-form-wrapper {
    padding: 35px;
    background: linear-gradient(145deg, var(--secondary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.15);
    border-radius: 20px;
}

.contact-form-wrapper h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
    color: var(--text-light);
    font-size: 0.95rem;
}

.form-control {
    background: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-light);
    font-size: 0.95rem;
    transition: all 0.3s;
}

.form-control:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-control::placeholder {
    color: var(--text-muted);
}

.form-select {
    background-color: var(--primary-color);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 14px 18px;
    color: var(--text-light);
}

.form-select:focus {
    border-color: var(--accent-color);
    box-shadow: 0 0 0 3px rgba(255, 107, 53, 0.1);
}

.form-select option {
    background: var(--primary-color);
    color: var(--text-light);
}

textarea.form-control {
    min-height: 140px;
    resize: vertical;
}

.contact-form .btn-orange {
    width: 100%;
    padding: 16px;
    font-size: 1rem;
}

/* ===================== */
/* FAQ Section */
/* ===================== */
.faq-section {
    padding: 80px 0;
    background: var(--secondary-color);
    position: relative;
    z-index: 2;
}

.faq-item {
    background: linear-gradient(145deg, var(--primary-color), #151515);
    border: 1px solid rgba(255, 107, 53, 0.1);
    border-radius: 15px;
    padding: 25px;
    transition: all 0.3s;
}

.faq-item:hover {
    border-color: var(--accent-color);
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.1);
}

.faq-item h4 {
    font-size: 1.05rem;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-light);
    display: flex;
    align-items: flex-start;
}

.faq-item h4 i {
    color: var(--accent-color);
    margin-top: 4px;
}

.faq-item p {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.7;
    margin: 0;
}

/* ===================== */
/* CTA Section (reuse from main) */
/* ===================== */
.cta {
    padding: 80px 0;
    background: linear-gradient(135deg, var(--accent-color), #e55a2b);
    text-align: center;
    position: relative;
    z-index: 2;
}

.cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 30%);
}

.cta h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
}

.cta p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
    position: relative;
}

.cta .btn-orange {
    background: white;
    color: var(--accent-color);
    position: relative;
}

.cta .btn-orange:hover {
    background: var(--primary-color);
    color: white;
}

/* Responsive */
@media (max-width: 991px) {
    .page-header {
        padding: 150px 0 80px;
    }

    .page-header h1 {
        font-size: 2.5rem;
    }

    .contact-info,
    .contact-form-wrapper {
        padding: 25px;
    }
}

@media (max-width: 576px) {
    .page-header h1 {
        font-size: 2rem;
    }

    .contact-method {
        flex-direction: column;
        text-align: center;
    }

    .method-icon {
        margin: 0 auto;
    }

    .social-icons {
        justify-content: center;
    }
}