/* =========================================
   ORDER PAGE STYLES (WIDENED & CENTERED)
   ========================================= */

/* ============================================================
   STATS / NUMBERS SECTION (Optional)
   ============================================================ */
.stats-header-section {
    width: 100%;
    position: relative;
    background: var(--bg-light);
    padding: var(--section-padding-y) 0;
    overflow: hidden;
}

.stats-header-section .stats-inner {
    max-width: 1600px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0;
}

.stat-item {
    text-align: center;
    padding: 20px 40px;
    border-left: 1px solid var(--gray-300);
}

.stat-item:first-child {
    border-left: none;
}

.stat-number {
    display: block;
    font-family: var(--font-main);
    font-size: clamp(3.5rem, 5vw, 64px);
    font-weight: 400;
    color: var(--primary-color);
    letter-spacing: -0.05em;
    line-height: 1;
    margin-bottom: 16px;
}

.stat-label {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-main);
}

/* ============================================================
   ORDER FORM SECTION
   ============================================================ */
/* .contact-section {
    position: relative;
    background: var(--black);
    padding: var(--section-padding-y) 0;
    overflow: hidden;
} */

.contact-section {
    position: relative;
    padding: var(--section-padding-y) 0;
    overflow: hidden;
    background: var(--black); /* Fallback */
}

/* GPU-Accelerated Parallax Layer */
.contact-section::before {
    content: '';
    position: absolute;
    top: -20%;
    left: 0;
    width: 100%;
    height: 140%;
    background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)), 
                url('../assets/img/overlay.png'); 
    background-size: cover;
    background-position: center;
    z-index: 0;
    will-change: transform;
    pointer-events: none;
    transform: translateY(var(--parallax-y, 0));
}



.contact-inner {
    max-width: 900px;
    /* Widened for Order Page */
    margin: 0 auto;
    padding: 0 40px;
    display: block;
    /* Removed 2-column grid */
}

/* ── Form Container ── */
.contact-left {
    position: relative;
    z-index: 2;
    width: 100%;
}

.contact-heading {
    font-family: var(--font-main);
    font-size: clamp(1.6rem, 4vw, 55px);
    line-height: 1.1;
    font-weight: 500;
    letter-spacing: -1.2px;
    color: var(--white);
    margin: 0 auto 14px;
    text-align: center;
    /* Centered */
}

.contact-subtext {
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 30px;
    color: var(--white);
    max-width: 760px;
    margin: 0 auto 40px;
    /* Centered */
    text-align: center;
}

.portfolio-eyebrow-white-left {
    display: block;
    text-align: center;
    margin-bottom: 15px;
}

/* Form Styling */
.contact-form {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.form-field {
    position: relative;
}

.form-field input,
.form-field select,
.form-field textarea {
    box-sizing: border-box;
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--white);
    background: transparent;
    border: 1px solid rgba(255, 255, 255, 0.2);
    outline: none;
    transition: border-color 0.3s ease;
    -webkit-appearance: none;
    appearance: none;
}

.form-field textarea {
    resize: vertical;
}

/* ── Custom Dropdown Styling ── */
.custom-dropdown {
    position: relative;
    user-select: none;
}

.custom-dropdown select {
    position: absolute;
    opacity: 0;
    pointer-events: none;
    width: 100%;
    height: 100%;
    z-index: -1;
}

.dropdown-trigger {
    box-sizing: border-box;
    width: 100%;
    padding: 18px 20px;
    font-family: var(--font-mono);
    font-size: 14px;
    letter-spacing: 0.03em;
    color: var(--white);
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.dropdown-trigger:hover {
    background-color: rgba(255, 255, 255, 0.05);
    border-color: rgba(255, 255, 255, 0.4);
}

.custom-dropdown.is-open .dropdown-trigger {
    border-color: var(--primary-color);
    background-color: rgba(255, 255, 255, 0.06);
}

.dropdown-arrow {
    width: 16px;
    height: 16px;
    transition: transform 0.3s ease;
}

.custom-dropdown.is-open .dropdown-arrow {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 100;
    background: var(--gray-950);
    border: 1px solid rgba(255, 255, 255, 0.1);
    margin-top: 4px;
    max-height: 320px;
    overflow-y: auto;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    scrollbar-width: thin;
    scrollbar-color: var(--primary-color) transparent;
}

.dropdown-menu::-webkit-scrollbar {
    width: 4px;
}

.dropdown-menu::-webkit-scrollbar-thumb {
    background: var(--primary-color);
}

.dropdown-group-label {
    display: block;
    padding: 16px 20px 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: var(--primary-color);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    background: rgba(255, 255, 255, 0.02);
}

.dropdown-option {
    padding: 12px 20px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--white);
    cursor: pointer;
    transition: background 0.2s ease;
    border-left: 2px solid transparent;
}

.dropdown-option:hover {
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    border-left-color: var(--primary-color);
}

.dropdown-option.is-selected {
    background: rgba(27, 100, 182, 0.2);
    border-left-color: var(--primary-color);
}

/* Sync floating label with custom dropdown */
.custom-dropdown.has-value label,
.custom-dropdown.is-open label {
    top: -4px;
    font-size: 11px;
    color: var(--white);
    background: var(--black);
    padding: 0 8px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
    border-color: var(--white);
    box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.1);
}

/* Floating label */
.form-field label {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-mono);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    pointer-events: none;
    transition: all 0.25s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    background: transparent;
}

.form-field input:focus+label,
.form-field input:not(:placeholder-shown)+label,
.form-field select:focus+label,
.form-field select:valid+label,
.form-field textarea:focus+label,
.form-field textarea:not(:placeholder-shown)+label {
    top: -4px;
    font-size: 11px;
    color: var(--white);
    background: var(--black);
    padding: 0 8px;
}

.form-field textarea+label {
    top: 18px;
    transform: none;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

/* Submit Button */
.contact-submit {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 18px 32px;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    color: var(--white);
    background: var(--primary-color);
    border: none;
    cursor: pointer;
    transition: var(--transition-normal);
    width: 100%;
    /* Full width button for order page */
    justify-content: center;
}

.contact-submit:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.btn-dots-icon {
    display: flex;
    gap: 3px;
    margin-left: 15px;
}

.btn-dots-icon span {
    width: 4px;
    height: 4px;
    background: currentColor;
    border-radius: 50%;
}

.faq {
    background: var(--bg-light);
    padding: 100px 0;
}

.faq-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.faq .black-title {
    text-align: center;
    margin-bottom: 60px;
}

.faq .black-title h2 {
    color: var(--black);
}

.faq .black-title p {
    color: var(--text-main);
    max-width: 600px;
    margin: 0 auto;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px 60px;
}

.faq-column {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.faq-item {
    border-bottom: 1px solid var(--gray-150);
}

.faq-question {
    display: flex;
    align-items: center;
    gap: 20px;
    width: 100%;
    padding: 28px 0;
    background: none;
    border: none;
    cursor: pointer;
    text-align: left;
    font-family: 'Manrope', sans-serif;
    transition: opacity 0.2s ease;
}

.faq-question:hover {
    opacity: 0.7;
}

.faq-icon {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-dark);
    transition: transform 0.3s ease, color 0.3s ease;
}

.faq-icon svg {
    width: 100%;
    height: 100%;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
    color: var(--primary-hover);
}

.faq-question-text {
    font-size: 17px;
    font-weight: 400;
    color: var(--black);
    line-height: 1.5;
    letter-spacing: -0.01em;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    padding: 0 0 0 48px;
}

.faq-item.active .faq-answer {
    max-height: 200px;
    padding-bottom: 24px;
}

.faq-answer p {
    font-family: var(--font-body);
    font-size: 16px;
    color: var(--black);
    line-height: 1.7;
    margin: 0;
}

@media (max-width: 768px) {
    .faq {
        padding: 80px 0;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

/* ── Responsive ── */
@media (max-width: 991px) {
    .contact-inner {
        padding: 0 24px;
    }

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

@media (max-width: 768px) {
    .form-row {
        grid-template-columns: 1fr;
    }

    .contact-heading {
        font-size: 32px;
    }
}