* {
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    color: #111827;
    background: #ffffff;
}

a {
    text-decoration: none;
    color: inherit;
}

.container {
    width: min(1160px, 92%);
    margin: auto;
}

.site-header {
    background: #fff;
    box-shadow: 0 3px 18px rgba(0,0,0,.08);
    position: sticky;
    top: 0;
    z-index: 100;
}

.header-inner {
    min-height: 78px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 22px;
}

.logo {
    display: inline-block;
    font-size: 32px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
}

.logo span,
.footer-logo span {
    color: #777;
}

.logo strong,
.footer-logo strong {
    color: #f37021;
}

.logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: #333;
    text-align: right;
    font-style: normal;
}

nav {
    display: flex;
    align-items: center;
    gap: 22px;
    font-size: 14px;
    font-weight: 700;
}

nav a:hover {
    color: #f37021;
}

.hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,.95), rgba(255,255,255,.85)),
        radial-gradient(circle at 80% 40%, #ddd, transparent 35%),
        #f3f4f6;
    padding: 48px 0;
}

.hero-grid {
    display: grid;
    grid-template-columns: 460px 1fr;
    gap: 55px;
    align-items: center;
}

.search-card {
    background: #fff;
    border: 3px solid #f37021;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

.search-card h1 {
    text-align: center;
    color: #f37021;
    margin: 0 0 8px;
    font-size: 30px;
}

.search-card p {
    text-align: center;
    margin: 0 0 18px;
    color: #555;
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 13px;
}

.search-card input,
.search-card select {
    width: 100%;
    height: 48px;
    border: 1px solid #bbb;
    background: #f1f1f1;
    border-radius: 4px;
    padding: 0 13px;
    font-size: 15px;
}

.search-card button {
    width: 100%;
    height: 56px;
    border: none;
    background: #d15a00;
    color: #fff;
    border-radius: 40px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.search-card button:hover {
    background: #f37021;
}

.hero-content h2 {
    font-size: 46px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.hero-content p {
    font-size: 20px;
    line-height: 1.5;
    color: #444;
}

.hero-points {
    display: grid;
    gap: 14px;
    margin-top: 28px;
}

.hero-points span {
    background: #fff;
    padding: 14px 18px;
    border-left: 5px solid #f37021;
    box-shadow: 0 8px 20px rgba(0,0,0,.08);
    font-size: 18px;
}

.section {
    padding: 55px 0;
}

.section.gray {
    background: #f6f6f6;
}

.section h2 {
    text-align: center;
    font-size: 32px;
    margin: 0 0 28px;
}

.center {
    text-align: center;
}

.steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    text-align: center;
}

.steps div {
    background: #fff;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(0,0,0,.08);
    border-top: 4px solid #f37021;
}

.icon {
    font-size: 54px;
    margin-bottom: 14px;
}

.btn {
    display: inline-block;
    background: #e96b12;
    color: #fff;
    padding: 15px 34px;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
}

.btn.green {
    background: #25d366;
}

.results-hero {
    background: #f3f4f6;
    padding: 45px 0;
    text-align: center;
}

.results-hero h1 {
    font-size: 38px;
    margin: 0 0 10px;
    color: #f37021;
}

.results-hero p {
    font-size: 20px;
    margin: 0;
}

.supplier-results {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.supplier-result-card,
.fallback-card {
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 10px 28px rgba(0,0,0,.09);
    padding: 26px;
    position: relative;
}

.supplier-result-card h3 {
    margin-top: 0;
    font-size: 26px;
    color: #111827;
}

.result-badge {
    position: absolute;
    right: 20px;
    top: 20px;
    background: #16a34a;
    color: #fff;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 800;
}

.fallback-card {
    max-width: 760px;
    margin: auto;
    text-align: center;
    border-top: 5px solid #f37021;
}

.fallback-card h2 {
    color: #f37021;
}

.request-summary {
    text-align: left;
    background: #f7f7f7;
    padding: 18px;
    margin: 22px 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 18px;
}

.footer {
    background: #343a40;
    color: #fff;
    padding: 42px 0;
}

.footer-inner {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.footer-logo {
    font-size: 34px;
    font-weight: 900;
    font-style: italic;
}

.wa-float {
    position: fixed;
    right: 22px;
    bottom: 22px;
    width: 76px;
    height: 76px;
    background: #25d366;
    color: #fff;
    display: grid;
    place-items: center;
    border-radius: 50%;
    font-size: 22px;
    font-weight: 900;
    box-shadow: 0 10px 30px rgba(37,211,102,.4);
}

.status-badge {
    display: inline-block;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 700;
}

.badge-green {
    background: #dcfce7;
    color: #166534;
}

.badge-yellow {
    background: #fef3c7;
    color: #92400e;
}

.badge-red {
    background: #fee2e2;
    color: #991b1b;
}

.badge-gray {
    background: #e5e7eb;
    color: #374151;
}

@media (max-width: 850px) {
    .header-inner {
        display: block;
        padding: 15px 0;
    }

    nav {
        margin-top: 15px;
        flex-wrap: wrap;
        gap: 14px;
    }

    .hero-grid,
    .steps,
    .supplier-results,
    .footer-inner {
        grid-template-columns: 1fr;
        display: grid;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .hero-content h2 {
        font-size: 34px;
        text-align: center;
    }

    .hero-content p {
        text-align: center;
        font-size: 17px;
    }

    .request-summary {
        grid-template-columns: 1fr;
    }

    .wa-float {
        width: 64px;
        height: 64px;
        font-size: 19px;
    }
}
/* RESULT PAGE POLISH */

.results-hero {
    padding: 38px 0;
    background: #f3f4f6;
    text-align: center;
}

.results-hero h1 {
    font-size: 42px;
    margin: 0 0 12px;
    color: #111827;
}

.results-hero p {
    font-size: 21px;
    color: #333;
}

.supplier-results {
    max-width: 720px;
    margin: 30px auto 0;
    display: grid;
    grid-template-columns: 1fr;
}

.supplier-result-card {
    border-radius: 8px;
    padding: 32px;
}

.supplier-result-card h3 {
    font-size: 30px;
}

.supplier-result-card p {
    font-size: 15px;
    line-height: 1.45;
}

.supplier-result-card .btn {
    width: 100%;
    text-align: center;
    margin-top: 15px;
}

.result-badge {
    top: 30px;
    right: 30px;
}
/* SUPPLIER REGISTRATION PAGE */

.supplier-register-hero {
    background:
        linear-gradient(90deg, rgba(255,255,255,.96), rgba(255,255,255,.86)),
        radial-gradient(circle at 80% 35%, #ddd, transparent 35%),
        #f3f4f6;
    padding: 50px 0;
}

.supplier-register-grid {
    display: grid;
    grid-template-columns: 1fr 520px;
    gap: 50px;
    align-items: start;
}

.supplier-info-box h1 {
    font-size: 48px;
    line-height: 1.05;
    margin: 0 0 18px;
}

.supplier-info-box p {
    font-size: 20px;
    color: #444;
    line-height: 1.5;
}

.supplier-flow {
    display: grid;
    gap: 15px;
    margin-top: 30px;
}

.supplier-flow div {
    background: #fff;
    padding: 16px 18px;
    border-left: 5px solid #f37021;
    box-shadow: 0 8px 22px rgba(0,0,0,.08);
    display: flex;
    align-items: center;
    gap: 14px;
}

.supplier-flow strong {
    width: 36px;
    height: 36px;
    background: #f37021;
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-items: center;
}

.supplier-flow span {
    font-size: 17px;
    font-weight: 700;
}

.supplier-form-box {
    background: #fff;
    border: 3px solid #f37021;
    padding: 26px;
    box-shadow: 0 14px 35px rgba(0,0,0,.12);
}

.supplier-form-box h2 {
    text-align: center;
    color: #f37021;
    font-size: 30px;
    margin: 0 0 8px;
}

.supplier-form-box > p {
    text-align: center;
    color: #555;
    margin: 0 0 18px;
}

.supplier-form-box h3 {
    font-size: 18px;
    margin: 22px 0 12px;
    color: #111827;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.supplier-form-box input,
.supplier-form-box select,
.supplier-form-box textarea {
    width: 100%;
    border: 1px solid #bbb;
    background: #f1f1f1;
    border-radius: 4px;
    padding: 0 13px;
    font-size: 15px;
}

.supplier-form-box input,
.supplier-form-box select {
    height: 46px;
}

.supplier-form-box textarea {
    height: 95px;
    padding-top: 12px;
    resize: vertical;
    margin-top: 13px;
}

.supplier-form-box button {
    width: 100%;
    height: 56px;
    border: none;
    background: #d15a00;
    color: #fff;
    border-radius: 40px;
    margin-top: 16px;
    font-size: 20px;
    font-weight: 800;
    cursor: pointer;
}

.supplier-form-box button:hover {
    background: #f37021;
}

.alert {
    padding: 14px;
    border-radius: 6px;
    margin-bottom: 16px;
    font-weight: 700;
}

.alert-success {
    background: #dcfce7;
    color: #166534;
    border: 1px solid #86efac;
}

.alert-error {
    background: #fee2e2;
    color: #991b1b;
    border: 1px solid #fecaca;
}

@media (max-width: 850px) {
    .supplier-register-grid {
        grid-template-columns: 1fr;
    }

    .supplier-info-box h1 {
        font-size: 36px;
        text-align: center;
    }

    .supplier-info-box p {
        text-align: center;
        font-size: 17px;
    }

    .supplier-form-box {
        padding: 18px;
    }
}
/* ADMIN PANEL */

.admin-login-body {
    min-height: 100vh;
    background: #f3f4f6;
}

.admin-login-page {
    min-height: 100vh;
    display: grid;
    place-items: center;
    padding: 25px;
}

.admin-login-card {
    width: min(420px, 94vw);
    background: #fff;
    border: 3px solid #f37021;
    padding: 32px 26px;
    box-shadow: 0 16px 45px rgba(0,0,0,.12);
    text-align: center;
}

.admin-login-card h1 {
    margin: 22px 0;
    color: #f37021;
}

.admin-login-card input {
    width: 100%;
    height: 50px;
    margin-bottom: 14px;
    border: 1px solid #bbb;
    background: #f5f5f5;
    padding: 0 14px;
    border-radius: 4px;
}

.admin-login-card button {
    width: 100%;
    height: 52px;
    background: #d15a00;
    color: #fff;
    border: none;
    border-radius: 40px;
    font-size: 18px;
    font-weight: 800;
    cursor: pointer;
}

.demo-login {
    color: #666;
    font-size: 13px;
    margin-top: 16px;
}

.admin-layout {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
    background: #f3f4f6;
}

.admin-sidebar {
    background: #111827;
    color: #fff;
    padding: 24px 18px;
}

.admin-logo {
    font-size: 28px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 30px;
}

.admin-logo span {
    color: #aaa;
}

.admin-logo strong {
    color: #f37021;
}

.admin-logo small {
    display: block;
    font-size: 10px;
    letter-spacing: 1px;
    color: #ddd;
    font-style: normal;
}

.admin-sidebar a {
    display: block;
    padding: 13px 14px;
    color: #e5e7eb;
    border-radius: 8px;
    margin-bottom: 8px;
    font-weight: 700;
}

.admin-sidebar a:hover,
.admin-sidebar a.active {
    background: #f37021;
    color: #fff;
}

.admin-main {
    padding: 30px;
    overflow-x: auto;
}

.admin-top {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 28px;
}

.admin-top h1 {
    margin: 0 0 6px;
    font-size: 34px;
}

.admin-top p {
    margin: 0;
    color: #555;
}

.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-bottom: 26px;
}

.admin-stats div {
    background: #fff;
    padding: 24px;
    border-top: 4px solid #f37021;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
}

.admin-stats strong {
    display: block;
    font-size: 34px;
    color: #f37021;
}

.admin-stats span {
    color: #555;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 22px;
}

.admin-card {
    background: #fff;
    padding: 22px;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    margin-bottom: 24px;
}

.admin-card h2 {
    margin-top: 0;
}

.admin-card-head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}

.admin-card-head a {
    color: #f37021;
    font-weight: 800;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 14px;
}

.admin-table th {
    background: #111827;
    color: #fff;
    text-align: left;
    padding: 13px;
}

.admin-table td {
    border-bottom: 1px solid #e5e7eb;
    padding: 13px;
    vertical-align: top;
}

.admin-filter,
.admin-form {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.admin-filter input,
.admin-filter select,
.admin-form input,
.admin-form select,
.admin-form textarea {
    width: 100%;
    height: 44px;
    border: 1px solid #bbb;
    background: #f7f7f7;
    border-radius: 4px;
    padding: 0 12px;
}

.admin-form textarea {
    grid-column: 1 / -1;
    height: 90px;
    padding-top: 12px;
}

.admin-filter button,
.admin-form button {
    height: 44px;
    background: #d15a00;
    color: #fff;
    border: none;
    border-radius: 4px;
    font-weight: 800;
    cursor: pointer;
}

.admin-filter a {
    display: grid;
    place-items: center;
    background: #e5e7eb;
    border-radius: 4px;
    font-weight: 800;
}

.action-links {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.action-links a,
.green-link,
.red-link {
    font-size: 13px;
    font-weight: 800;
    color: #2563eb;
}

.green-link {
    color: #16a34a !important;
}

.red-link {
    color: #dc2626 !important;
}

@media (max-width: 900px) {
    .admin-layout {
        grid-template-columns: 1fr;
    }

    .admin-sidebar {
        position: relative;
    }

    .admin-grid-2,
    .admin-stats {
        grid-template-columns: 1fr;
    }

    .admin-filter,
    .admin-form {
        grid-template-columns: 1fr;
    }

    .admin-main {
        padding: 18px;
    }

    .admin-table {
        min-width: 900px;
    }

    .admin-card {
        overflow-x: auto;
    }
}
.fallback-buttons {
    display: flex;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.fallback-buttons .btn {
    min-width: 220px;
    text-align: center;
}
/* BASIC CONTENT PAGES */

.content-hero {
    background: #f3f4f6;
    padding: 50px 0;
    text-align: center;
}

.content-hero h1 {
    margin: 0 0 10px;
    font-size: 42px;
    color: #f37021;
}

.content-hero p {
    font-size: 20px;
    color: #444;
    margin: 0;
}

.content-card {
    background: #fff;
    padding: 34px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border-top: 5px solid #f37021;
    line-height: 1.65;
    max-width: 900px;
}

.content-card h2 {
    text-align: left;
    color: #111827;
    margin-top: 24px;
}

.contact-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}

.contact-card {
    background: #fff;
    padding: 32px;
    box-shadow: 0 10px 28px rgba(0,0,0,.08);
    border-top: 5px solid #f37021;
    text-align: center;
}

.contact-card h2 {
    color: #f37021;
}

.faq-list {
    display: grid;
    gap: 18px;
    max-width: 900px;
}

.faq-list div {
    background: #fff;
    padding: 24px;
    box-shadow: 0 8px 24px rgba(0,0,0,.07);
    border-left: 5px solid #f37021;
}

.faq-list h3 {
    margin: 0 0 10px;
    color: #111827;
}

.faq-list p {
    margin: 0;
    line-height: 1.6;
    color: #444;
}

@media (max-width: 850px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .content-hero h1 {
        font-size: 34px;
    }

    .content-card {
        padding: 22px;
    }
}
/* PREMIUM FOOTER FIX */

.footer {
    background: #2f363d;
    color: #ffffff;
    padding: 0;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.7fr 1fr 1fr 1.1fr;
    gap: 45px;
    padding: 55px 0 42px;
    align-items: start;
}

.footer-logo {
    font-size: 38px;
    font-weight: 900;
    font-style: italic;
    line-height: 1;
    margin-bottom: 18px;
}

.footer-logo span {
    color: #9ca3af;
}

.footer-logo strong {
    color: #ff6b1a;
}

.footer-brand p {
    color: #e5e7eb;
    font-size: 15px;
    line-height: 1.7;
    max-width: 420px;
    margin: 0 0 18px;
}

.footer-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-badges span {
    background: rgba(255, 107, 26, .15);
    color: #ffb27c;
    border: 1px solid rgba(255, 107, 26, .35);
    padding: 7px 10px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
}

.footer-col h4 {
    color: #ffffff;
    font-size: 17px;
    margin: 0 0 18px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h4::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 42px;
    height: 3px;
    background: #ff6b1a;
    border-radius: 10px;
}

.footer .footer-col a {
    display: block !important;
    color: #d1d5db !important;
    margin: 0 0 11px !important;
    font-size: 14px;
    line-height: 1.4;
    transition: .2s;
}

.footer .footer-col a:hover {
    color: #ff6b1a !important;
    padding-left: 5px;
}

.footer-whatsapp {
    background: rgba(37, 211, 102, .14);
    color: #bbf7d0 !important;
    border: 1px solid rgba(37, 211, 102, .35);
    padding: 11px 14px;
    border-radius: 12px;
    font-weight: 800;
    margin-bottom: 12px !important;
}

.footer-whatsapp:hover {
    background: #25d366;
    color: #ffffff !important;
    padding-left: 14px !important;
}

.footer-bottom {
    background: #20262c;
    border-top: 1px solid rgba(255,255,255,.08);
    padding: 16px 0;
}

.footer-bottom-inner {
    display: flex;
    justify-content: space-between;
    gap: 15px;
    color: #cbd5e1;
    font-size: 13px;
}

@media (max-width: 900px) {
    .footer-main {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
}

@media (max-width: 600px) {
    .footer-main {
        grid-template-columns: 1fr;
        padding: 38px 0 30px;
    }

    .footer-bottom-inner {
        display: block;
        text-align: center;
    }

    .footer-bottom-inner span {
        display: block;
        margin: 5px 0;
    }
}
/* ===== Mobile Responsive Fixes ===== */
@media (max-width: 991px) {
    .hero-grid,
    .supplier-register-grid,
    .contact-grid,
    .footer-main {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 24px;
    }

    .form-grid {
        display: grid;
        grid-template-columns: 1fr !important;
        gap: 14px;
    }

    .search-card,
    .supplier-form-box,
    .supplier-info-box,
    .content-card,
    .contact-card {
        width: 100%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-content h2,
    .search-card h1,
    .supplier-info-box h1,
    .content-hero h1 {
        font-size: 32px;
        line-height: 1.2;
    }

    .search-card,
    .supplier-form-box,
    .supplier-info-box {
        padding: 20px;
    }
}

@media (max-width: 768px) {
    .site-header .header-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 12px;
    }

    .site-header nav {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }

    .hero {
        padding: 30px 0;
    }

    .search-card h1 {
        font-size: 28px;
        text-align: center;
    }

    .search-card p {
        text-align: center;
        font-size: 14px;
    }

    .search-card button,
    .btn,
    .hero-wa-buttons a {
        width: 100%;
        text-align: center;
    }

    input,
    select,
    textarea {
        width: 100%;
        box-sizing: border-box;
    }

    .wa-float {
        width: 56px;
        height: 56px;
        font-size: 18px;
        bottom: 18px;
        right: 18px;
    }
}
.hero-wa-buttons {
    display: flex;
    gap: 12px;
    margin-top: 16px;
    flex-wrap: wrap;
}

.hero-wa-buttons .wa-btn {
    flex: 1;
    min-width: 180px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 14px 18px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 700;
    color: #fff;
    transition: 0.3s ease;
}

.hero-wa-buttons .wa-togo {
    background: #22c55e;
}

.hero-wa-buttons .wa-uae {
    background: #f97316;
}

.hero-wa-buttons .wa-btn:hover {
    transform: translateY(-2px);
    opacity: 0.95;
}
/* Mobile Header Fix */
.menu-toggle {
    display: none;
    border: none;
    background: #f3f4f6;
    color: #111827;
    width: 58px;
    height: 58px;
    border-radius: 18px;
    font-size: 34px;
    font-weight: 900;
    cursor: pointer;
    line-height: 1;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.site-nav a {
    white-space: nowrap;
}

.lang-switch {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 900;
}

.lang-switch a.active {
    color: #ff6b00;
}

@media (max-width: 768px) {
    header {
        position: sticky;
        top: 0;
        z-index: 9999;
        background: #fff;
    }

    header .container,
    header > div {
        position: relative;
    }

    .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        margin-left: auto;
    }

    .site-nav {
        display: none;
        position: absolute;
        top: 100%;
        left: 18px;
        right: 18px;
        background: #ffffff;
        border-radius: 22px;
        padding: 14px;
        box-shadow: 0 25px 60px rgba(15, 23, 42, 0.18);
        border: 1px solid #f1f5f9;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        z-index: 99999;
    }

    .site-nav.show {
        display: flex;
    }

    .site-nav a {
        display: block;
        padding: 16px 18px;
        border-radius: 14px;
        font-size: 18px;
        font-weight: 900;
        border-bottom: 1px solid #f1f5f9;
        color: #111827;
        text-decoration: none;
    }

    .site-nav a:hover {
        background: #fff7ed;
        color: #ff6b00;
    }

    .lang-switch {
        margin-top: 10px;
        padding: 16px 18px;
        justify-content: center;
        background: #fff7ed;
        border-radius: 14px;
    }
}
@media (max-width: 768px) {
    .site-nav {
        display: none !important;
    }

    .site-nav.show {
        display: flex !important;
    }

    .menu-toggle {
        z-index: 100000;
    }
}
/* Mobile visible language switcher */
.mobile-lang-bar {
    display: none;
}

@media (max-width: 768px) {
    .mobile-lang-bar {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 14px;
        background: #ffffff;
        padding: 14px 18px;
        border-bottom: 1px solid #f1f1f1;
        box-shadow: 0 8px 20px rgba(15, 23, 42, 0.06);
        position: relative;
        z-index: 999;
    }

    .mobile-lang-bar a {
        text-decoration: none;
        font-size: 18px;
        font-weight: 900;
        color: #111827;
        background: #f8fafc;
        border: 1px solid #e5e7eb;
        padding: 10px 26px;
        border-radius: 999px;
    }

    .mobile-lang-bar a.active {
        background: #ff6b00;
        color: #ffffff;
        border-color: #ff6b00;
    }

    .mobile-lang-bar span {
        color: #9ca3af;
        font-weight: 900;
    }

    /* Hide duplicate language switch inside mobile menu */
    .site-nav .lang-switch {
        display: none !important;
    }
}
/* Better mobile header language switch */
.mobile-lang-bar {
    display: none !important;
}

.mobile-header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-left: auto;
}

.top-lang-switch {
    display: none;
}

@media (max-width: 768px) {
    .site-header {
        background: #fff;
        padding: 0 !important;
    }

    .header-inner {
        display: flex !important;
        align-items: center !important;
        justify-content: space-between !important;
        gap: 12px !important;
        padding: 18px 24px !important;
    }

    .logo span,
    .logo strong {
        font-size: 34px !important;
        line-height: 1 !important;
    }

    .logo small {
        font-size: 12px !important;
        letter-spacing: 2px !important;
        margin-top: 5px !important;
    }

    .mobile-header-actions {
        display: flex !important;
        align-items: center !important;
        gap: 10px !important;
        margin-left: auto !important;
    }

    .top-lang-switch {
        display: flex !important;
        align-items: center;
        gap: 4px;
        background: #fff7ed;
        border: 1px solid #fed7aa;
        padding: 6px;
        border-radius: 999px;
        box-shadow: 0 8px 20px rgba(255, 107, 0, 0.12);
    }

    .top-lang-switch a {
        text-decoration: none;
        font-size: 13px;
        font-weight: 900;
        color: #111827;
        padding: 7px 10px;
        border-radius: 999px;
        line-height: 1;
    }

    .top-lang-switch a.active {
        background: #ff6b00;
        color: #ffffff;
    }

    .menu-toggle {
        width: 54px !important;
        height: 54px !important;
        border-radius: 18px !important;
        font-size: 30px !important;
        flex-shrink: 0 !important;
    }

    .site-nav .lang-switch {
        display: none !important;
    }
}

@media (max-width: 420px) {
    .header-inner {
        padding: 16px 18px !important;
    }

    .logo span,
    .logo strong {
        font-size: 30px !important;
    }

    .logo small {
        font-size: 10px !important;
        letter-spacing: 1.5px !important;
    }

    .top-lang-switch a {
        font-size: 12px;
        padding: 6px 8px;
    }

    .menu-toggle {
        width: 50px !important;
        height: 50px !important;
        font-size: 28px !important;
    }
}
/* Mobile logo left alignment */
@media (max-width: 768px) {
    .header-inner {
        justify-content: space-between !important;
        text-align: left !important;
    }

    .logo {
        margin-right: auto !important;
        text-align: left !important;
        align-items: flex-start !important;
    }

    .logo span,
    .logo strong {
        font-size: 28px !important;
    }

    .logo small {
        text-align: left !important;
        font-size: 9px !important;
        letter-spacing: 2px !important;
    }

    .mobile-header-actions {
        margin-left: 8px !important;
        flex-shrink: 0 !important;
    }

    .top-lang-switch {
        transform: scale(0.88);
        transform-origin: right center;
    }

    .menu-toggle {
        width: 48px !important;
        height: 48px !important;
        font-size: 26px !important;
    }
}
/* FINAL MOBILE HEADER ALIGNMENT FIX */
@media (max-width: 768px) {
    .site-header {
        background: #fff !important;
    }

    .site-header .header-inner,
    header .header-inner,
    .container.header-inner {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: space-between !important;
        text-align: left !important;
        width: 100% !important;
        padding: 16px 18px !important;
        gap: 8px !important;
    }

    .site-header .logo,
    header .logo {
        display: block !important;
        text-align: left !important;
        margin: 0 auto 0 0 !important;
        padding: 0 !important;
        width: auto !important;
        max-width: 48% !important;
        flex: 0 1 auto !important;
    }

    .site-header .logo span,
    .site-header .logo strong {
        font-size: 25px !important;
        line-height: 1 !important;
        display: inline !important;
    }

    .site-header .logo small {
        display: block !important;
        text-align: left !important;
        font-size: 8px !important;
        letter-spacing: 1.4px !important;
        margin-top: 4px !important;
        white-space: nowrap !important;
    }

    .mobile-header-actions {
        display: flex !important;
        align-items: center !important;
        justify-content: flex-end !important;
        gap: 6px !important;
        margin-left: auto !important;
        flex: 0 0 auto !important;
    }

    .top-lang-switch {
        display: flex !important;
        align-items: center !important;
        gap: 3px !important;
        padding: 5px !important;
        border-radius: 999px !important;
        background: #fff7ed !important;
        border: 1px solid #fed7aa !important;
        transform: none !important;
    }

    .top-lang-switch a {
        font-size: 11px !important;
        font-weight: 900 !important;
        padding: 6px 8px !important;
        border-radius: 999px !important;
        text-decoration: none !important;
        color: #111827 !important;
        line-height: 1 !important;
    }

    .top-lang-switch a.active {
        background: #ff6b00 !important;
        color: #fff !important;
    }

    .menu-toggle {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        width: 46px !important;
        height: 46px !important;
        min-width: 46px !important;
        border-radius: 16px !important;
        font-size: 26px !important;
        margin: 0 !important;
        flex-shrink: 0 !important;
    }

    .site-nav {
        top: 100% !important;
   
   .hidden-step {
    display: none;
}

.step-title {
    text-align: center;
    color: #ff6b00;
    font-size: 24px;
    margin: 10px 0 8px;
}

.step-text {
    text-align: center;
    color: #555;
    font-size: 15px;
    margin-bottom: 20px;
}

.back-btn {
    margin-top: 12px !important;
    background: #111827 !important;
    color: #fff !important;
}