/* Sell to Generatorz.com – visual refresh (layout unchanged) */
.sale-to-us-page {
    --stu-text: #0F172A;
    --stu-text-secondary: #475569;
    --stu-bg-light: #F8FAFC;
    --stu-card: #FFFFFF;
    --stu-border: #E2E8F0;
    --stu-navy: #13294B;
    --stu-red: #E30613;
}

/* Hero banner — no dark overlay */
.sale-to-us-page .sale-to-us-banner::after {
    display: none;
}

.sale-to-us-page .sale-to-us-banner .banner-content p {
    color: rgba(255, 255, 255, 0.92);
}

/* Form section */
.sale-to-us-page .sale-to-us-form-section {
    background: var(--stu-bg-light);
}

.sale-to-us-page .sale-form-card {
    background: var(--stu-card);
    border: 1px solid var(--stu-border) !important;
    border-radius: 12px;
    overflow: visible;
}

.sale-to-us-page .sale-form-top {
    padding: 1.5rem 1.5rem 0;
    background: var(--stu-card);
}

.sale-to-us-page .sale-form-card-header {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 0 0 1.25rem;
    background: transparent;
    border-bottom: none;
}

.sale-to-us-page .sale-form-card-header__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    border-radius: 10px;
    background: var(--stu-navy);
    color: #FFFFFF;
    font-size: 1.35rem;
    flex-shrink: 0;
}

.sale-to-us-page .sale-form-card-header__content {
    flex: 1;
    min-width: 0;
}

.sale-to-us-page .sale-form-card-header__title {
    margin: 0 0 0.5rem;
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--stu-text);
    line-height: 1.3;
}

.sale-to-us-page .sale-form-card-header__desc {
    margin: 0;
    font-size: 0.9375rem;
    line-height: 1.55;
    color: var(--stu-text-secondary);
    max-width: 52rem;
}

.sale-to-us-page .sale-form-intro {
    padding: 0 0 1.5rem;
    text-align: center;
}

.sale-to-us-page .sale-alt-channels-title {
    margin: 0 0 0.875rem;
    font-size: 0.8125rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: var(--stu-text-secondary);
}

.sale-to-us-page .sale-contact-pills {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 0.625rem;
}

.sale-to-us-page .sale-contact-pill {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    padding: 0.55rem 1rem;
    border-radius: 8px;
    border: 1px solid var(--stu-border);
    background: var(--stu-bg-light);
    color: var(--stu-text);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    transition: background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
}

.sale-to-us-page .sale-contact-pill i {
    font-size: 1.05rem;
    color: var(--stu-navy);
    transition: color 0.2s ease;
}

.sale-to-us-page .sale-contact-pill span {
    color: inherit;
}

.sale-to-us-page .sale-contact-pill:hover,
.sale-to-us-page .sale-contact-pill:focus-visible {
    background: var(--stu-navy);
    border-color: var(--stu-navy);
    color: #FFFFFF;
    box-shadow: 0 8px 20px rgba(16, 37, 68, 0.15);
    text-decoration: none;
}

.sale-to-us-page .sale-contact-pill:hover i,
.sale-to-us-page .sale-contact-pill:focus-visible i,
.sale-to-us-page .sale-contact-pill:hover span,
.sale-to-us-page .sale-contact-pill:focus-visible span {
    color: #FFFFFF;
}

/* Step navigation (numbered stepper) */
.sale-to-us-page .sale-stepper {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 2rem;
    padding-top: 0.25rem;
    border-top: 1px solid var(--stu-border);
    border-bottom: 1px solid var(--stu-border);
    position: relative;
    z-index: 1;
}

.sale-to-us-page .sale-stepper__step {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.625rem;
    padding: 1.25rem 0.5rem 1rem;
    border: none;
    background: transparent;
    cursor: pointer;
    position: relative;
    transition: color 0.25s ease;
}

.sale-to-us-page .sale-stepper__num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 2.25rem;
    height: 2.25rem;
    border-radius: 50%;
    background: var(--stu-navy);
    color: #FFFFFF;
    font-size: 0.9375rem;
    font-weight: 700;
    line-height: 1;
    transition: background-color 0.25s ease;
}

.sale-to-us-page .sale-stepper__label {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--stu-text-secondary);
    text-align: center;
    line-height: 1.35;
    transition: color 0.25s ease, font-weight 0.25s ease;
}

.sale-to-us-page .sale-stepper__step.active .sale-stepper__num {
    background: var(--stu-red);
}

.sale-to-us-page .sale-stepper__step.active .sale-stepper__label {
    color: var(--stu-red);
    font-weight: 700;
}

.sale-to-us-page .sale-stepper__step.active::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 3px;
    background: var(--stu-red);
    border-radius: 3px 3px 0 0;
}

.sale-to-us-page .tab-content {
    display: none;
    position: relative;
    z-index: 1;
    min-height: 300px;
    padding: 1.5rem 0;
}

.sale-to-us-page .tab-content.active {
    display: block;
    animation: saleToUsFadeIn 0.3s;
}

@keyframes saleToUsFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}


.sale-to-us-page .form-label {
    margin-bottom: 0.5rem;
    display: block;
    position: relative;
    z-index: 1;
    color: var(--stu-navy);
    font-weight: 600;
}

.sale-to-us-page .form-control,
.sale-to-us-page .form-select {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
    background: var(--stu-card);
    border-color: var(--stu-border);
    color: var(--stu-text);
}

.sale-to-us-page .form-control:focus,
.sale-to-us-page .form-select:focus {
    z-index: 10;
    border-color: var(--stu-navy);
    box-shadow: 0 0 0 0.2rem rgba(19, 41, 75, 0.12);
}

.sale-to-us-page .tab-content h5 {
    color: var(--stu-navy);
    font-weight: 700;
}

.sale-to-us-page .card-body {
    position: relative;
    overflow: visible;
    padding: 2rem !important;
}

.sale-to-us-page .tab-content .row {
    margin-bottom: 1rem;
    position: relative;
    z-index: 1;
    clear: both;
}

.sale-to-us-page .tab-content .col-md-6,
.sale-to-us-page .tab-content .col-12 {
    position: relative;
    z-index: 1;
    margin-bottom: 1rem;
    float: none;
}

.sale-to-us-page .row::after {
    content: "";
    display: table;
    clear: both;
}

.sale-to-us-page .mt-4.d-flex.justify-content-between,
.sale-to-us-page .mt-4.text-end {
    margin-top: 2rem !important;
    position: relative;
    z-index: 1;
    clear: both;
}

.sale-to-us-page .alert {
    position: relative;
    z-index: 1;
    margin-bottom: 1.5rem;
    clear: both;
}

.sale-to-us-page .invalid-feedback {
    position: relative;
    z-index: 1;
    display: block;
    margin-top: 0.25rem;
    color: var(--stu-red);
}

.sale-to-us-page .file-uploader {
    position: relative;
    z-index: 1;
    margin-bottom: 0.5rem;
}

/* Manufacturer select scroll */
.sale-to-us-page select[name="Manufacturer"],
.sale-to-us-page select.manufacturer-select {
    max-height: 200px;
    overflow-y: auto;
    overflow-x: hidden;
}

.sale-to-us-page select.form-select {
    display: block !important;
    width: 100%;
}

.sale-to-us-page select.form-select + select.form-select {
    display: none !important;
}

.sale-to-us-page .select2-container,
.sale-to-us-page .select2-dropdown,
.sale-to-us-page .select2-container--open,
.sale-to-us-page select.select2-hidden-accessible,
.sale-to-us-page .nice-select,
.sale-to-us-page .nice-select-wrapper {
    display: none !important;
    visibility: hidden !important;
    opacity: 0 !important;
    position: absolute !important;
    width: 0 !important;
    height: 0 !important;
    overflow: hidden !important;
}

.sale-to-us-page .col-md-6:has(select.form-select) select.form-select:not(:first-of-type),
.sale-to-us-page .col-12:has(select.form-select) select.form-select:not(:first-of-type) {
    display: none !important;
}

/* Form navigation buttons */
.sale-to-us-page .sale-form-nav {
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    gap: 14px;
    flex-wrap: wrap;
}

.sale-to-us-page .sale-form-nav.sale-form-nav--end {
    justify-content: flex-end;
}

.sale-to-us-page .sale-form-nav .primary-btn,
.sale-to-us-page .sale-form-nav .outline-btn {
    border-radius: 10px;
    padding: 14px 30px;
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.2;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background-color 0.2s ease;
    z-index: auto;
}

.sale-to-us-page .sale-form-nav .primary-btn {
    background-color: var(--stu-red);
    border-color: var(--stu-red);
}

.sale-to-us-page .sale-form-nav .primary-btn:hover {
    background-color: #c20510;
    border-color: #c20510;
}

.sale-to-us-page .sale-form-nav .outline-btn {
    color: var(--stu-navy);
    border-color: var(--stu-border);
}

.sale-to-us-page .sale-form-nav .outline-btn:hover {
    background: var(--stu-navy);
    border-color: var(--stu-navy);
    color: #FFFFFF;
}

.sale-to-us-page .sale-form-nav .primary-btn i,
.sale-to-us-page .sale-form-nav .outline-btn i {
    font-size: 1.15rem;
}

.sale-to-us-page .sale-form-nav .primary-btn.btn-lg {
    padding: 14px 36px;
    font-size: 1.02rem;
}

.sale-to-us-page .sale-form-nav .sale-submit-btn {
    box-shadow: 0 8px 20px rgba(227, 6, 19, 0.28);
}

.sale-to-us-page .sale-form-nav .sale-submit-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(227, 6, 19, 0.36);
}

/* Security note */
.sale-to-us-page .sale-security-note {
    margin: 1.5rem 0 0;
    padding-top: 1.25rem;
    border-top: 1px solid var(--stu-border);
    color: var(--stu-text-secondary);
    font-size: 0.8125rem;
    line-height: 1.5;
    text-align: center;
}

.sale-to-us-page .sale-security-note i {
    color: var(--stu-navy);
    margin-right: 0.35rem;
}

@media (max-width: 767.98px) {
    .sale-to-us-page .sale-form-top {
        padding: 1.25rem 1.25rem 0;
    }

    .sale-to-us-page .sale-contact-pills {
        gap: 0.5rem;
    }

    .sale-to-us-page .sale-contact-pill {
        padding: 0.5rem 0.75rem;
        font-size: 0.8125rem;
    }

    .sale-to-us-page .sale-stepper {
        margin-bottom: 1.25rem;
    }

    .sale-to-us-page .sale-stepper__step {
        padding: 1rem 0.25rem 0.75rem;
        gap: 0.5rem;
    }

    .sale-to-us-page .sale-stepper__num {
        width: 2rem;
        height: 2rem;
        font-size: 0.875rem;
    }

    .sale-to-us-page .sale-stepper__label {
        font-size: 0.72rem;
    }

    .sale-to-us-page .card-body {
        padding: 1.25rem !important;
        overflow-x: hidden;
    }
}

@media (max-width: 575.98px) {
    .sale-to-us-page .sale-form-nav {
        gap: 10px;
        flex-direction: column;
    }

    .sale-to-us-page .sale-form-nav .primary-btn,
    .sale-to-us-page .sale-form-nav .outline-btn {
        width: 100%;
        flex: 0 0 auto;
        min-width: 0;
        max-width: none;
        padding: 13px 16px;
        font-size: 0.95rem;
        white-space: normal;
    }

    .sale-to-us-page .sale-form-nav .primary-btn.btn-lg {
        padding: 13px 16px;
        font-size: 0.95rem;
    }
}

/* Searchable country select */
.sale-to-us-page .sale-country-select__native {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.sale-to-us-page .sale-country-select {
    position: relative;
}

.sale-to-us-page .sale-country-select__control {
    position: relative;
    display: flex;
    align-items: stretch;
}

.sale-to-us-page .sale-country-select__search {
    padding-right: 2.5rem;
}

.sale-to-us-page .sale-country-select__toggle {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 2.5rem;
    border: none;
    background: transparent;
    color: var(--stu-text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.sale-to-us-page .sale-country-select__toggle:hover {
    color: var(--stu-navy);
}

.sale-to-us-page .sale-country-select__list {
    position: absolute;
    z-index: 1060;
    top: calc(100% + 4px);
    left: 0;
    right: 0;
    max-height: 240px;
    overflow-y: auto;
    margin: 0;
    padding: 0.35rem 0;
    list-style: none;
    background: #fff;
    border: 1px solid var(--stu-border);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.12);
}

.sale-to-us-page .sale-country-select__list[hidden] {
    display: none !important;
}

.sale-to-us-page .sale-country-select.is-open .sale-country-select__list {
    display: block;
}

.sale-to-us-page .sale-country-select__option {
    padding: 0.5rem 0.85rem;
    cursor: pointer;
    color: var(--stu-text);
    font-size: 0.92rem;
}

.sale-to-us-page .sale-country-select__option:hover,
.sale-to-us-page .sale-country-select__option.is-active {
    background: rgba(19, 41, 75, 0.08);
}

.sale-to-us-page .sale-country-select__option.is-selected {
    font-weight: 600;
    color: var(--stu-navy);
}

.sale-to-us-page .sale-country-select__option--empty {
    color: var(--stu-text-secondary);
    cursor: default;
}

.sale-to-us-page .sale-country-select__search.is-invalid {
    border-color: #dc3545;
}

.sale-to-us-page .sale-form-card:has(.sale-country-select.is-open) {
    position: relative;
    z-index: 50;
    overflow: visible;
}

.sale-to-us-page #contact-form .row > [class*="col-"]:has(.sale-country-select.is-open),
.sale-to-us-page .tab-content .row > [class*="col-"]:has(.sale-country-select.is-open),
.sale-to-us-page #contact-form .row > [class*="col-"]:has(.sale-country-select:focus-within),
.sale-to-us-page .tab-content .row > [class*="col-"]:has(.sale-country-select:focus-within) {
    position: relative;
    z-index: 30;
}

.sale-to-us-page .sale-country-select.is-open,
.sale-to-us-page .sale-country-select:focus-within {
    position: relative;
    z-index: 40;
}

/* Keep İleri/Geri below open country list (global .primary-btn is z-index: 1) */
.sale-to-us-page .tab-content:has(.sale-country-select.is-open) > .row,
.sale-to-us-page .tab-content:has(.sale-country-select:focus-within) > .row {
    position: relative;
    z-index: 20;
}

.sale-to-us-page .tab-content:has(.sale-country-select.is-open) .sale-form-nav,
.sale-to-us-page .tab-content:has(.sale-country-select:focus-within) .sale-form-nav {
    position: relative;
    z-index: 0;
}
