/* Base variables */
:root {
    --primary: #0f172a;
    --secondary: #334155;
    --accent: #c2410c;
    --bg-light: #f8fafc;
    --white: #ffffff;
    --border-color: #e2e8f0;
    --dark-bg: #1e293b;
    --glass: rgba(255, 255, 255, 0.95);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', sans-serif;
    background-color: var(--white);
    color: var(--primary);
    overflow-x: hidden;
    max-width: 100%;
    line-height: 1.6;
    text-rendering: optimizeSpeed;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

.skip-link {
    position: absolute;
    left: 1rem;
    top: -3rem;
    background: var(--primary);
    color: var(--white);
    padding: 0.8rem 1rem;
    z-index: 2000;
    border-radius: 0.4rem;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 1rem;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* TYPOGRAPHY */
h1,
h2,
h3,
h4 {
    font-family: 'Playfair Display', serif;
}

a {
    text-decoration: none;
    color: inherit;
    transition: 0.3s;
}

/* HEADER & NAV */
header {
    background: var(--glass);
    backdrop-filter: blur(10px);
    height: auto;
    min-height: 82px;
    padding: 12px 3.2%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    max-width: 100%;
    border-bottom: 1px solid var(--border-color);
    position: sticky;
    top: 0;
    z-index: 9000;
    transition: all 0.3s ease;
}

.logo {
    font-size: 1.26rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
    z-index: 1001;
    display: flex;
    align-items: center;
    gap: 6px;
    flex: 0 0 auto;
    min-width: 0;
    max-width: 100%;
}

.logo img {
    height: 64px;
    width: auto;
    object-fit: contain;
}

.logo span {
    font-weight: 300;
    color: var(--secondary);
    margin-left: 5px;
    font-size: 0.8em;
    overflow-wrap: anywhere;
}

nav {
    flex: 1 1 auto;
    min-width: 0;
    display: flex;
    justify-content: center;
    overflow: visible;
    margin: 0 0.4rem;
}

nav ul {
    display: flex;
    gap: clamp(0.2rem, 0.45vw, 0.55rem);
    list-style: none;
    align-items: center;
    justify-content: space-evenly;
    flex-wrap: nowrap;
    overflow: visible;
    padding: 0;
    width: 100%;
}

nav ul li {
    flex: 0 0 auto;
}

nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 36px;
    padding: 0 0.18rem;
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    white-space: nowrap;
    line-height: 1;
    opacity: 1;
}

nav a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--accent);
    transition: width 0.3s;
}

nav a:hover::after,
nav a.active::after {
    width: 100%;
}

nav a.nav-techpack-tab {
    color: var(--accent);
    border: 1.5px solid var(--accent);
    border-radius: 999px;
    padding: 0 0.72rem;
    min-height: 32px;
    letter-spacing: 0.04em;
}

nav a.nav-techpack-tab::after {
    display: none;
}

nav a.nav-techpack-tab:hover,
nav a.nav-techpack-tab:focus-visible {
    background: var(--accent);
    color: var(--white);
}

nav a:hover,
nav a.active {
    color: var(--primary);
}

/* LANGUAGE SWITCHER */
.lang-switcher {
    position: relative;
    margin-left: 20px;
    perspective: 1000px;
    flex-shrink: 0;
    z-index: 10050;
}

.lang-trigger-btn {
    display: flex;
    align-items: center;
    gap: 10px;
    background: var(--bg-light);
    border: 1px solid var(--border-color);
    padding: 9px 14px;
    border-radius: 20px;
    cursor: pointer;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--primary);
    transition: all 0.3s ease;
    min-width: 108px;
    justify-content: space-between;
    white-space: nowrap;
}

.lang-trigger-label {
    flex: 1;
    text-align: left;
}

.lang-trigger-caret {
    width: 0.55rem;
    height: 0.55rem;
    border-right: 2px solid currentColor;
    border-bottom: 2px solid currentColor;
    transform: rotate(45deg) translateY(-1px);
    flex-shrink: 0;
    transition: transform 0.2s ease;
}

.lang-switcher.open .lang-trigger-caret {
    transform: rotate(-135deg) translateY(-1px);
}

.lang-trigger-btn:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
    box-shadow: 0 4px 12px rgba(15, 23, 42, 0.15);
}

.lang-trigger-btn i {
    font-size: 1rem;
}

.lang-dropdown {
    position: fixed;
    top: 82px; /* below header — overridden by JS */
    right: 20px;
    background: var(--white);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    width: 180px;
    max-height: min(70vh, 28rem);
    overflow-x: hidden;
    overflow-y: auto;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease, visibility 0.25s ease;
    z-index: 20000;
    padding: 5px;
    pointer-events: none;
    -webkit-overflow-scrolling: touch;
}

.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    pointer-events: auto;
}

.lang-btn {
    display: flex;
    align-items: center;
    width: 100%;
    border: none;
    background: none;
    padding: 11px 15px;
    cursor: pointer;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--secondary);
    border-radius: 8px;
    transition: 0.2s;
    text-align: left;
}

.lang-btn:hover {
    background: var(--bg-light);
    color: var(--accent);
    padding-left: 20px;
}

.lang-btn.active {
    background: var(--bg-light);
    color: var(--primary);
    font-weight: 700;
}

.lang-btn.active::before {
    content: '';
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--accent);
    display: inline-block;
    margin-right: 0.45rem;
    vertical-align: middle;
}

/* NAV SLOT — desktop flex spacer inside header */
#nav-slot {
    display: flex;
    flex: 1 1 auto;
    min-width: 0;
    align-items: center;
    justify-content: center;
}

/* Desktop nav sits in the header flex row (JS moves #main-nav into #nav-slot). */
#main-nav {
    position: relative;
    top: auto;
    left: auto;
    right: auto;
    height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    z-index: 1;
    pointer-events: auto;
    flex: 1 1 auto;
    min-width: 0;
}

#main-nav ul {
    pointer-events: auto;
    display: flex;
    gap: 0.12rem;
    list-style: none;
    align-items: center;
    justify-content: center;
    flex-wrap: nowrap;
    padding: 0;
    width: auto;
    max-width: 100%;
    overflow: visible;
}

/* HAMBURGER MENU */
.hamburger {
    display: none;
    cursor: pointer;
    z-index: 1002;
    background: none;
    border: none;
    padding: 10px;
}

.bar {
    display: block;
    width: 25px;
    height: 3px;
    margin: 5px auto;
    transition: all 0.3s ease-in-out;
    background-color: var(--primary);
}

/* HERO SECTION */
.hero {
    height: 90vh;
    background: url('hero_bg-768.jpg') repeat center top;
    background-size: 512px;
    /* High detail tiling */
    position: relative;
    z-index: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    text-align: center;
    background-attachment: scroll;
}

/* Nav overlay backdrop for mobile */
.nav-backdrop {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.45);
    z-index: 9997;
    opacity: 0;
    transition: opacity 0.35s ease;
}
.nav-backdrop.active {
    display: block;
    opacity: 1;
}

@media (max-width: 768px) {
    .hero {
        background: url('hero_bg_mobile-768.jpg') no-repeat center center/cover;
        min-height: 100vh;
    }

    nav ul {
        gap: 1.2rem;
        padding-top: 20px;
    }

    nav a {
        padding: 12px 0;
        display: block;
        font-size: 1rem;
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 900px;
    padding: 0 20px;
    min-width: 0;
}

.hero-subtitle {
    text-transform: uppercase;
    letter-spacing: 4px;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    display: block;
    opacity: 0.9;
    color: #e2e8f0;
    font-weight: 600;
}

.standard-badge {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 5px 15px;
    font-size: 0.8rem;
    letter-spacing: 2px;
    margin-bottom: 1rem;
    display: inline-block;
    backdrop-filter: blur(5px);
}

.hero h1 {
    font-size: 3.5rem;
    line-height: 1.2;
    margin-bottom: 2rem;
    font-weight: 400;
}

.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    background: transparent;
    border: 1px solid var(--white);
    color: var(--white);
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 2px;
    transition: 0.3s;
    cursor: pointer;
    margin: 0 10px;
}

.btn:hover {
    background: var(--white);
    color: var(--primary);
}

.btn-primary {
    background: var(--white);
    color: var(--primary);
}

.btn-primary:hover {
    background: var(--primary);
    color: var(--white);
    border-color: var(--primary);
}

/* FEATURES BAR */
.features-bar {
    background: var(--primary);
    color: white;
    padding: 2rem 5%;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    gap: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-box {
    display: flex;
    align-items: center;
    gap: 1rem;
    min-width: 0;
}

.feature-box i {
    color: var(--accent);
    font-size: 1.5rem;
}

.feature-box div h4 {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
}

.feature-box div span {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* ABOUT SECTION */
.about-section {
    padding: 6rem 10%;
    text-align: center;
    background-color: var(--white);
}

.about-section h2 {
    font-size: 2rem;
    margin-bottom: 2rem;
    letter-spacing: 1px;
}

.about-section p {
    max-width: 800px;
    margin: 0 auto;
    color: var(--secondary);
    font-size: 1.15rem;
    line-height: 1.9;
}

.workflow-section {
    padding: 4rem 5%;
    background: var(--bg-light);
}

.workflow-header {
    text-align: center;
    margin-bottom: 3rem;
}

.workflow-header p {
    max-width: 600px;
    margin: 0 auto;
    color: var(--secondary);
}

.workflow-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    align-items: start;
}

.workflow-step {
    text-align: center;
    min-width: 0;
}

.workflow-icon {
    background: var(--white);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.workflow-step h3 {
    margin-bottom: 0.75rem;
    font-size: 2rem;
    overflow-wrap: anywhere;
}

.workflow-step p {
    font-size: 1rem;
    color: var(--secondary);
    max-width: 22ch;
    margin: 0 auto;
    overflow-wrap: anywhere;
}

/* LOW QUANTITY SECTION */
.low-quantity-section {
    background-color: var(--bg-light);
    color: var(--primary);
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}

.lq-content {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.lq-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.lq-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.lq-content p {
    color: var(--secondary);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

/* HIGH VOLUME SECTION STYLE */
.high-volume-section {
    background-color: var(--dark-bg);
    color: var(--white);
    padding: 6rem 5%;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4rem;
    flex-wrap: wrap;
}

.hv-content {
    flex: 1;
    min-width: 300px;
    max-width: 100%;
}

.hv-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.hv-content span {
    color: var(--accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
    display: block;
    margin-bottom: 1rem;
    font-weight: 700;
}

.hv-content p {
    color: #cbd5e1;
    margin-bottom: 2rem;
    font-size: 1.1rem;
}

.hv-stats {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.stat-item h4 {
    font-size: 2rem;
    color: var(--accent);
    font-family: "Source Serif 4", Georgia, serif;
    margin-bottom: 0.5rem;
}

.stat-item p {
    font-size: 0.8rem;
    text-transform: uppercase;
    color: #94a3b8;
    margin: 0;
}

.lq-stats .stat-item p {
    color: var(--secondary);
}

.hv-image {
    flex: 1;
    min-width: 300px;
    height: 450px;
    position: relative;
}

.hv-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.high-volume-section .hv-image img {
    filter: brightness(0.8);
}

/* PROCESS SECTION */
.process-detail-section {
    padding: 5rem 5%;
    background-color: #ffffff;
}

.process-header {
    text-align: center;
    margin-bottom: 5rem;
}

.process-header span {
    color: var(--accent);
    text-transform: uppercase;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 2px;
}

.process-header h2 {
    font-size: 2.5rem;
    color: var(--primary);
    margin-top: 10px;
}

.process-step {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 6rem;
    gap: 4rem;
}

.process-step:nth-child(even) {
    flex-direction: row-reverse;
}

.process-img-wrapper {
    flex: 1;
    height: 500px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background-color: #e2e8f0;
}

.process-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.process-step:hover .process-img-wrapper img {
    transform: scale(1.05);
}

.process-text {
    flex: 1;
    padding: 2rem;
    min-width: 0;
}

.step-number {
    font-family: "Source Serif 4", Georgia, serif;
    font-size: 4rem;
    color: rgba(15, 23, 42, 0.1);
    line-height: 1;
    margin-bottom: -1rem;
    display: block;
}

.process-text h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.process-text p {
    color: var(--secondary);
    font-size: 1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.feature-list {
    list-style: none;
}

.feature-list li {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    color: var(--primary);
    font-weight: 500;
}

.feature-list li i {
    color: var(--accent);
    margin-right: 10px;
    font-size: 0.8rem;
}

/* --- NEW WASHING SECTION START --- */
.washing-section {
    padding: 6rem 5%;
    background-color: #2c2c2c;
    /* Dark charcoal for contrast */
    color: #f1f1f1;
    position: relative;
    overflow: hidden;
}

.washing-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('https://www.transparenttextures.com/patterns/denim.webp');
    /* Subtle texture */
    opacity: 0.1;
    pointer-events: none;
}

.wash-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
}

.wash-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.wash-intro h2 {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.wash-intro span {
    color: var(--accent);
    letter-spacing: 3px;
    font-weight: 600;
    display: block;
    margin-bottom: 1rem;
}

.wash-intro p {
    max-width: 700px;
    margin: 0 auto;
    color: #d1d5db;
}

.wash-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.wash-card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 8px;
    transition: 0.3s;
    text-align: center;
}

.wash-card:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-5px);
    border-color: var(--accent);
}

.wash-icon {
    font-size: 2.5rem;
    color: var(--accent);
    margin-bottom: 1.5rem;
}

.wash-card h3 {
    font-family: "Source Sans 3", "Segoe UI", sans-serif;
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: #ffffff;
}

.wash-card p {
    font-size: 0.9rem;
    color: #9ca3af;
    line-height: 1.6;
}

/* --- NEW WASHING SECTION END --- */
/* LOOKBOOK */
.section-title {
    text-align: center;
    margin: 6rem 0 3rem;
}

.section-title span {
    display: block;
    font-size: 0.9rem;
    letter-spacing: 2px;
    color: #666;
    margin-bottom: 1rem;
}

.lookbook-grid {
    display: grid;
    grid-template-columns: repeat(1, 1fr);
    gap: 1.5rem;
    padding: 0 5%;
}

@media (min-width: 600px) {
    .lookbook-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .lookbook-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.lookbook-item {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    cursor: pointer;
    background: #e2e8f0;
    display: block;
}

.lookbook-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(105%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.lookbook-content {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 2rem;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), transparent);
    color: var(--white);
    opacity: 0;
    transform: translateY(20px);
    transition: 0.4s;
}

.lookbook-item:hover img {
    transform: scale(1.03);
}

.lookbook-item:hover .lookbook-content {
    opacity: 1;
    transform: translateY(0);
}

.lookbook-content h3 {
    font-size: 1.2rem;
    margin-bottom: 0;
    font-family: "Source Serif 4", Georgia, serif;
}

/* NEW TESTIMONIALS SECTION */
.testimonials-section {
    padding: 6rem 5%;
    background-color: var(--bg-light);
    text-align: center;
}

.testimonial-slider {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    justify-content: center;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    position: relative;
    transition: transform 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
}

.testimonial-card::before {
    content: '\201C';
    font-size: 4rem;
    color: rgba(194, 65, 12, 0.2);
    position: absolute;
    top: 10px;
    left: 20px;
    font-family: serif;
}

.testimonial-text {
    font-style: italic;
    color: var(--secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
    position: relative;
    z-index: 1;
}

.testimonial-author {
    font-weight: 700;
    color: var(--primary);
    display: block;
}

.testimonial-role {
    font-size: 0.85rem;
    color: #94a3b8;
}

/* FAQ SECTION */
.faq-section {
    padding: 6rem 5%;
    background-color: var(--white);
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .faq-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.faq-item {
    background: var(--bg-light);
    border-left: 3px solid var(--accent);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    overflow: hidden;
}

.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.5rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item h3 {
    font-size: 1.2rem;
    color: var(--primary);
    margin: 0;
}

.faq-answer {
    padding: 0 2rem 1.75rem;
}

.faq-item p {
    font-size: 0.95rem;
    color: var(--secondary);
    margin: 0;
}

.faq-icon {
    color: var(--accent);
    font-size: 1rem;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.faq-item[open] .faq-icon {
    transform: rotate(180deg);
}

/* CTA SECTION */
.cta-section {
    background: var(--primary);
    color: var(--white);
    padding: 6rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.cta-text h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.cta-text p {
    color: #94a3b8;
    max-width: 600px;
}

/* CONTACT FORM SECTION */
.contact-section {
    padding: 6rem 5%;
    background: var(--bg-light);
}

.contact-wrap {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto;
    align-items: start;
}

.contact-info h2 {
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--secondary);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    margin-bottom: 1.15rem;
    color: var(--secondary);
}

.contact-detail i {
    color: var(--accent);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.contact-detail a {
    color: var(--secondary);
    word-break: break-all;
}

.contact-detail a:hover {
    color: var(--accent);
}

.contact-form-box {
    background: var(--white);
    border-radius: 1.2rem;
    padding: 2.5rem;
    box-shadow: 0 12px 40px rgba(15, 23, 42, 0.08);
}

.contact-form-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.form-group label {
    font-size: 0.82rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: var(--secondary);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1.5px solid var(--border-color);
    border-radius: 0.65rem;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--primary);
    background: var(--bg-light);
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(194, 65, 12, 0.1);
    background: var(--white);
}

.form-group textarea {
    resize: vertical;
    min-height: 110px;
}

.form-group select {
    cursor: pointer;
}

.form-submit-btn {
    width: 100%;
    padding: 1rem 2rem;
    background: var(--accent);
    color: var(--white);
    border: none;
    border-radius: 999px;
    font-family: inherit;
    font-size: 0.9rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    cursor: pointer;
    transition: background 0.2s ease, transform 0.2s ease;
}

.form-submit-btn:hover {
    background: #9a3309;
    transform: translateY(-1px);
}

.form-submit-btn:active {
    transform: translateY(0);
}

.form-success {
    display: none;
    text-align: center;
    padding: 2rem;
}

.form-success i {
    font-size: 3rem;
    color: #16a34a;
    margin-bottom: 1rem;
}

.form-success h4 {
    font-size: 1.4rem;
    margin-bottom: 0.5rem;
}

.form-success p {
    color: var(--secondary);
}

/* STICKY CTA BAR */
.sticky-cta {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 500;
    background: var(--accent);
    color: var(--white);
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    padding: 0.85rem 5%;
    transform: translateY(100%);
    transition: transform 0.4s ease;
}

.sticky-cta.visible {
    transform: translateY(0);
}

.sticky-cta span {
    font-weight: 600;
    font-size: 0.95rem;
}

.sticky-cta a {
    background: var(--white);
    color: var(--accent);
    padding: 0.55rem 1.4rem;
    border-radius: 999px;
    font-weight: 700;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    white-space: nowrap;
}

.sticky-cta a:hover {
    background: var(--primary);
    color: var(--white);
}

.sticky-cta-close {
    background: none;
    border: none;
    color: rgba(255,255,255,0.8);
    cursor: pointer;
    font-size: 1.2rem;
    padding: 0.2rem;
    line-height: 1;
    flex-shrink: 0;
}

@media (max-width: 1024px) {
    .contact-wrap {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .form-row {
        grid-template-columns: 1fr;
    }
    .sticky-cta span {
        display: none;
    }
}

/* FOOTER */
footer {
    background: #0f172a;
    color: #94a3b8;
    padding: 5rem 5% 2rem;
    font-size: 0.9rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.process-detail-section,
.washing-section,
.lookbook-section,
.testimonials-section,
.faq-section,
footer {
    content-visibility: auto;
    contain-intrinsic-size: 900px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-logo {
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: block;
}

.footer h4 {
    color: var(--white);
    margin-bottom: 1.5rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.footer ul li {
    list-style: none;
    margin-bottom: 0.8rem;
}

.footer-col ul li a {
    display: flex;
    align-items: center;
}

.footer-col ul li a:hover {
    color: var(--white);
    padding-left: 5px;
}

.footer-col ul li i {
    margin-right: 10px;
    color: var(--accent);
    width: 20px;
    text-align: center;
    transition: 0.3s;
}

.footer-col ul li a:hover i {
    color: var(--white);
}

.certifications {
    display: flex;
    gap: 1rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.cert-badge {
    border: 1px solid #334155;
    padding: 6px 12px;
    font-size: 0.75rem;
    border-radius: 4px;
    color: #cbd5e1;
}

/* FLOATING ELEMENTS */
#backToTop {
    display: none;
    position: fixed;
    bottom: 40px;
    right: 40px;
    z-index: 99;
    border: none;
    outline: none;
    background-color: var(--secondary);
    color: white;
    cursor: pointer;
    padding: 15px;
    border-radius: 50%;
    font-size: 15px;
    width: 50px;
    height: 50px;
    box-shadow: 2px 2px 3px #999;
    transition: 0.3s;
}

#backToTop:hover {
    background-color: var(--primary);
}

@media (max-width: 1400px) {
    #main-nav ul {
        gap: 0.18rem;
    }
    nav a {
        font-size: 0.7rem;
        padding: 0 0.16rem;
    }
}

@media (max-width: 1180px) {
    header {
        padding: 12px 3%;
    }

    #main-nav ul {
        gap: 0.12rem;
    }

    nav ul {
        gap: 0.2rem;
    }

    nav a {
        min-height: 40px;
        padding: 0 0.2rem;
        font-size: 0.71rem;
        letter-spacing: 0.02em;
    }

    .logo {
        font-size: 1.08rem;
    }

    .logo img {
        height: 68px;
    }

    .lang-trigger-btn {
        min-width: 122px;
        padding: 8px 12px;
        font-size: 0.82rem;
    }
}

/* MOBILE RESPONSIVE DESIGN */
@media (max-width: 1024px) {
    header,
    .hero,
    .features-bar,
    .about-section,
    .low-quantity-section,
    .high-volume-section,
    .process-detail-section,
    .washing-section,
    .lookbook-section,
    .testimonials-section,
    .faq-section,
    .cta-section,
    footer {
        width: 100%;
        max-width: 100%;
        overflow-x: hidden;
    }

    .hero-content,
    .feature-box,
    .hv-image,
    .hv-content,
    .lq-content,
    .process-text,
    .footer-col,
    .footer-grid > div {
        min-width: 0;
        max-width: 100%;
    }

    #backToTop {
        bottom: 25px;
        right: 25px;
        width: 40px;
        height: 40px;
        padding: 10px;
    }

    .hamburger {
        display: block;
    }

    .hamburger.active .bar:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .hamburger.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    nav {
        position: fixed;
        left: -100%;
        top: 82px;
        width: 80%;
        max-width: 320px;
        height: calc(100vh - 82px);
        background-color: var(--white);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        transition: 0.35s ease;
        z-index: 1002;
        padding: 1.5rem 1.5rem 2rem;
        visibility: hidden;
        pointer-events: none;
        box-shadow: 4px 0 20px rgba(0,0,0,0.12);
        overflow-y: auto;
    }

    html[dir="rtl"] nav {
        left: auto;
        right: -100%;
    }

    html[dir="rtl"] nav.active {
        right: 0;
    }

    nav.active {
        left: 0;
        visibility: visible;
        pointer-events: auto;
    }

    nav ul {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
        width: 100%;
    }

    nav ul li {
        width: 100%;
    }

    nav ul li a {
        font-size: 1rem;
        padding: 0.9rem 0.5rem;
        display: block;
        border-bottom: 1px solid var(--border-color);
        width: 100%;
    }

    /* Language Switcher — stays in header on mobile */
    .lang-switcher {
        position: relative;
        margin-left: 8px;
        perspective: none;
    }

    html[dir="rtl"] .lang-switcher {
        margin-right: 8px;
        margin-left: 0;
    }

    .lang-trigger-btn {
        background: var(--bg-light);
        font-size: 0.78rem;
        padding: 6px 10px;
        min-width: auto;
        border-radius: 16px;
    }

    .lang-dropdown {
        position: fixed;
        top: auto;
        bottom: auto;
        right: 10px;
        width: 140px;
        box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
        border: 1px solid var(--border-color);
        border-radius: 12px;
        background: var(--white);
        text-align: left;
        opacity: 0;
        visibility: hidden;
        transform: translateY(-10px);
        transition: all 0.3s ease;
        display: block;
        max-height: 250px;
        overflow-y: auto;
        z-index: 2000;
    }

    html[dir="rtl"] .lang-dropdown {
        right: auto;
        left: 10px;
        text-align: right;
    }

    .lang-switcher.open .lang-dropdown {
        opacity: 1;
        visibility: visible;
        transform: translateY(0);
    }

    .hero h1 {
        font-size: 2.2rem;
        overflow-wrap: anywhere;
    }

    .hero-subtitle {
        font-size: 0.8rem;
        letter-spacing: 2px;
    }

    .hero-content {
        padding: 0 15px;
    }

    .btn {
        display: block;
        width: 100%;
        max-width: 100%;
        margin: 10px 0;
        text-align: center;
    }

    .features-bar {
        flex-direction: column;
        gap: 1rem;
    }

    .feature-box {
        width: 100%;
    }

    [style*="min-width: 200px"] {
        min-width: 0 !important;
        width: 100% !important;
    }

    .process-detail-section {
        padding: 4rem 5%;
    }

    .process-step {
        flex-direction: column !important;
        gap: 2rem;
        margin-bottom: 4rem;
    }

    html[dir="rtl"] .process-step {
        flex-direction: column !important;
    }

    .process-img-wrapper {
        height: 300px;
        width: 100%;
    }

    .process-text {
        padding: 0;
        text-align: center;
    }

    .feature-list {
        display: inline-block;
        text-align: left;
    }

    html[dir="rtl"] .feature-list {
        text-align: right;
    }

    .high-volume-section,
    .low-quantity-section {
        padding: 4rem 5%;
        flex-direction: column-reverse;
        gap: 2rem;
    }

    .hv-image {
        height: 300px;
        width: 100%;
        min-width: 0;
    }

    .hv-content h2,
    .lq-content h2 {
        font-size: 2rem;
    }

    .hv-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .cta-section {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
        padding: 4rem 5%;
    }

    .cta-text h2 {
        font-size: 2rem;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }

    .footer-col ul {
        list-style: none;
        padding: 0;
        margin: 0;
    }

    .footer-col ul li {
        margin-bottom: 1rem;
    }

    .footer-col ul li a {
        padding: 5px;
        display: inline-flex;
        justify-content: center;
    }

    .certifications {
        justify-content: center;
    }

    .footer-col h4 {
        position: relative;
        display: inline-block;
        padding-bottom: 10px;
    }

    .footer-col h4::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translateX(-50%);
        width: 30px;
        height: 2px;
        background-color: var(--accent);
    }
}

/* MOBILE LOGO FIX */
@media (max-width: 768px) {
    header {
        padding-left: 14px;
        padding-right: 14px;
    }

    .logo img {
        height: 82px;
    }

    .logo {
        font-size: 1rem;
        gap: 8px;
        max-width: calc(100% - 150px);
    }

    .logo div {
        display: flex;
        flex-direction: column;
        line-height: 1.2;
        align-items: flex-start;
    }

    .logo span {
        margin-left: 0;
        font-size: 0.8em;
    }

    .lang-trigger-btn {
        min-width: auto;
        max-width: 100%;
    }

    .workflow-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 1.5rem 1rem;
    }

    .workflow-step h3 {
        font-size: 1.25rem;
        line-height: 1.3;
    }

    .workflow-step p {
        font-size: 0.98rem;
        max-width: 18ch;
    }
}

@media (max-width: 520px) {
    .workflow-grid {
        grid-template-columns: 1fr;
    }

    .workflow-step p {
        max-width: 30ch;
    }
}

/* Hide desktop fixed nav on mobile */
@media (max-width: 1024px) {
    #main-nav {
        display: none !important;
    }
}

/* Mobile nav drawer — hidden by default, shown via hamburger */
#mobile-nav {
    display: none; /* hidden on desktop */
    position: fixed;
    left: -100%;
    top: 82px;
    width: 80%;
    max-width: 320px;
    height: calc(100vh - 82px);
    background-color: var(--white);
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    transition: left 0.35s ease;
    z-index: 10000;
    padding: 1.5rem 1.5rem 2rem;
    visibility: hidden;
    pointer-events: none;
    box-shadow: 4px 0 20px rgba(0,0,0,0.12);
    overflow-y: auto;
}

@media (max-width: 1024px) {
    #mobile-nav {
        display: flex;
    }
}

#mobile-nav.active {
    left: 0;
    visibility: visible;
    pointer-events: auto;
}

#mobile-nav ul {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.25rem;
    width: 100%;
    list-style: none;
    padding: 0;
}

#mobile-nav ul li {
    width: 100%;
}

#mobile-nav ul li a {
    font-size: 1rem;
    padding: 0.9rem 0.5rem;
    display: block;
    border-bottom: 1px solid var(--border-color);
    width: 100%;
    color: var(--secondary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

#mobile-nav ul li a:hover {
    color: var(--primary);
}

/* SCROLL MARGIN — sticky header offset fix */
section[id],
div[id] {
    scroll-margin-top: 90px;
}

@media (max-width: 768px) {
    .hero h1 { font-size: clamp(1.9rem, 8vw, 2.7rem) !important; }
    .btn { margin: 8px 0; display: block; width: 100%; max-width: 20rem; }
    .features-bar { flex-direction: column; align-items: flex-start; }
    .lang-dropdown {
        width: min(88vw, 220px);
        max-height: min(65vh, 24rem);
        overflow-y: auto;
        right: 4vw;
    }
    .lang-btn { min-height: 44px; }
}
