
/* =========================================================
   SAKA / CHRIST CAR WASH WEBSITE - CLEAN FIXED STYLE.CSS
   Replace your full old style.css with this file
========================================================= */

/* ================= ROOT VARIABLES ================= */

:root {
    --bg-main: #ffffff;
    --bg-soft: #f5f6f7;
    --bg-dark: #070707;
    --bg-dark-2: #111111;
    --bg-dark-3: #1a1a1a;

    --text-main: #111111;
    --text-muted: #666666;
    --text-light: #cccccc;
    --text-white: #ffffff;

    --gold: #d6b36a;
    --gold-dark: #b89242;
    --green: #25d366;

    --border-light: #e8e8e8;
    --border-dark: #2a2a2a;

    --shadow-soft: 0 12px 35px rgba(0, 0, 0, 0.10);
    --shadow-strong: 0 22px 60px rgba(0, 0, 0, 0.28);

    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 24px;

    --section-padding: 90px 8%;
    --transition: 0.28s ease;
}

/* ================= RESET ================= */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg-main);
    color: var(--text-main);
    font-family: Arial, Helvetica, sans-serif;
    line-height: 1.6;
    overflow-x: hidden;
}

img,
video {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

button,
input,
textarea,
select {
    font-family: inherit;
}

::selection {
    background: var(--gold);
    color: #000;
}

/* ================= LANGUAGE SYSTEM ================= */

#langSwitch {
    display: none;
}

.en,
.t-en {
    display: inline !important;
}

.ar,
.t-ar {
    display: none !important;
}

#langSwitch:checked ~ .page .en,
#langSwitch:checked ~ .page .t-en {
    display: none !important;
}

#langSwitch:checked ~ .page .ar,
#langSwitch:checked ~ .page .t-ar {
    display: inline !important;
}

#langSwitch:checked ~ .page {
    direction: rtl;
}

#langSwitch:checked ~ .page .navbar,
#langSwitch:checked ~ .page .menu,
#langSwitch:checked ~ .page .container,
#langSwitch:checked ~ .page .split,
#langSwitch:checked ~ .page .feature-section,
#langSwitch:checked ~ .page .alpha-intro,
#langSwitch:checked ~ .page .alpha-intro-modern,
#langSwitch:checked ~ .page .why-saka,
#langSwitch:checked ~ .page .feature-cards,
#langSwitch:checked ~ .page .grid,
#langSwitch:checked ~ .page .stats-grid,
#langSwitch:checked ~ .page .footer-container {
    direction: rtl;
}

#langSwitch:checked ~ .page .dropdown-content {
    left: auto;
    right: 0;
}

/* ================= PAGE WRAPPER ================= */

.page {
    width: 100%;
    min-height: 100vh;
    background: var(--bg-main);
}

/* ================= NAVBAR ================= */

.navbar {
    position: sticky;
    top: 0;
    z-index: 10000;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;

    padding: 16px 8%;
    background: rgba(7, 7, 7, 0.96);
    color: var(--text-white);

    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(14px);
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
}

.logo img {
    height: 46px;
    width: auto;
    object-fit: contain;
}

.logo .brand {
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.6px;
    color: var(--text-white);
}

.menu {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 22px;
    flex-wrap: wrap;
}

.menu a,
.menu span {
    position: relative;
    display: inline-flex;
    align-items: center;
    color: rgba(255, 255, 255, 0.88);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: color var(--transition);
}

.menu a:hover,
.menu span:hover,
.menu a.active {
    color: var(--gold);
}

.menu > a::after,
.dropdown > span::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -7px;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: width var(--transition);
}

.menu > a:hover::after,
.menu > a.active::after,
.dropdown:hover > span::after {
    width: 100%;
}

/* ================= DROPDOWN FIX ================= */

.dropdown {
    position: relative;
    padding: 12px 0;
}

.dropdown-content {
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 99999;

    min-width: 245px;
    padding: 10px;

    background: rgba(17, 17, 17, 0.98);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 14px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.35);
    backdrop-filter: blur(14px);

    visibility: hidden;
    opacity: 0;
    pointer-events: none;
    transform: translateY(8px);

    transition: opacity 0.22s ease, transform 0.22s ease, visibility 0.22s ease;
}

.dropdown:hover .dropdown-content,
.dropdown:focus-within .dropdown-content {
    visibility: visible;
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
}

.dropdown-content a {
    display: block;
    padding: 12px 14px;
    border-radius: 10px;
    color: white;
    font-size: 14px;
    white-space: nowrap;
    transition: background var(--transition), color var(--transition), transform var(--transition);
}

.dropdown-content a:hover {
    background: rgba(214, 179, 106, 0.14);
    color: var(--gold);
    transform: translateX(3px);
}

/* ================= LANGUAGE BUTTON ================= */

.lang-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 10px 16px;
    border-radius: 999px;
    border: 1px solid rgba(214, 179, 106, 0.55);

    background: var(--gold);
    color: #000;
    font-size: 13px;
    font-weight: 800;
    cursor: pointer;

    box-shadow: 0 10px 24px rgba(214, 179, 106, 0.18);
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.lang-btn:hover {
    transform: translateY(-2px);
    background: #e4c57f;
    box-shadow: 0 15px 32px rgba(214, 179, 106, 0.28);
}

/* ================= WHATSAPP BUTTON ================= */

.whatsapp-btn {
    position: fixed;
    right: 22px;
    bottom: 22px;
    z-index: 9999;

    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;

    padding: 13px 18px;
    border-radius: 999px;

    background: var(--green);
    color: #fff;
    font-size: 14px;
    font-weight: 800;

    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.26);
    transition: transform var(--transition), opacity var(--transition), box-shadow var(--transition);
}

.whatsapp-btn:hover {
    transform: translateY(-3px);
    opacity: 0.96;
    box-shadow: 0 24px 55px rgba(0, 0, 0, 0.34);
}

/* ================= HERO ================= */

.hero {
    position: relative;
    min-height: 92vh;
    height: 92vh;
    overflow: hidden;
    background: var(--bg-dark);
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.02);
}

.hero-image {
    position: relative;
    min-height: 88vh;
    background-size: cover;
    background-position: center;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        radial-gradient(circle at center, rgba(214, 179, 106, 0.14), transparent 35%),
        linear-gradient(to bottom, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.86));
}

.hero-content {
    position: relative;
    z-index: 2;

    width: min(980px, 92%);
    height: 100%;
    margin: auto;

    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;

    text-align: center;
    color: var(--text-white);
    animation: fadeUp 0.8s ease both;
}

.hero-content h1,
h1 {
    font-size: clamp(2.4rem, 5.5vw, 5rem);
    line-height: 1.08;
    font-weight: 900;
    letter-spacing: 1.6px;
    text-transform: uppercase;
    margin-bottom: 18px;
}

.hero-content p {
    max-width: 760px;
    font-size: clamp(1rem, 1.6vw, 1.45rem);
    color: rgba(255, 255, 255, 0.82);
    letter-spacing: 1.5px;
}

/* ================= GENERAL SECTIONS ================= */

section,
.section {
    padding: var(--section-padding);
}

.section {
    background: var(--bg-main);
}

.section.dark {
    background:
        radial-gradient(circle at top left, rgba(214, 179, 106, 0.10), transparent 35%),
        var(--bg-dark-2);
    color: var(--text-white);
}

.section h2,
.section-title h2,
.section-title-center h2,
.specs-section h2,
.center-title,
h2 {
    font-size: clamp(2rem, 3.4vw, 3.3rem);
    line-height: 1.15;
    font-weight: 900;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section h2::after,
.specs-section h2::after,
.section-title h2::after,
.center-title::after {
    content: "";
    display: block;
    width: 88px;
    height: 3px;
    margin: 18px 0 0;
    background: linear-gradient(90deg, var(--gold), transparent);
    border-radius: 999px;
}

.center,
.section-title,
.section-title-center,
.center-title,
.center-subtitle {
    text-align: center;
}

.center::after,
.section-title h2::after,
.section-title-center h2::after,
.center-title::after {
    margin-left: auto;
    margin-right: auto;
}

.section p,
p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.9;
    margin-bottom: 14px;
}

.section.dark p {
    color: rgba(255, 255, 255, 0.72);
}

.section.dark h2,
.section.dark h3,
.section.dark h4 {
    color: var(--text-white);
}

.section-title {
    max-width: 850px;
    margin: 0 auto 48px;
}

.section-title p,
.section-title-center p,
.center-subtitle {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    color: var(--text-muted);
}

/* ================= LAYOUT ================= */

.container,
.split {
    width: min(1220px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 58px;
}

.split .text,
.feature-content,
.alpha-intro-left,
.alpha-intro-content {
    flex: 1;
}

.split .image,
.feature-image,
.alpha-intro-right,
.alpha-intro-image {
    flex: 1;
}

.split .text {
    text-align: left;
}

.image img,
.feature-image img,
.alpha-intro-right img,
.alpha-intro-image img,
.optional-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
    transition: transform var(--transition), box-shadow var(--transition);
}

.image img:hover,
.feature-image img:hover,
.alpha-intro-right img:hover,
.alpha-intro-image img:hover {
    transform: translateY(-4px);
}

/* ================= IMAGE LABELS ================= */

.img-box {
    text-align: center;
}

.img-label {
    margin-top: 10px;
    font-size: 14px;
    color: var(--text-muted);
}

/* ================= BUTTONS ================= */

.btn,
.main-btn,
.primary-btn,
.cta-btn,
.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 14px 24px;
    border-radius: 999px;
    border: 1px solid var(--gold);

    background: var(--gold);
    color: #000;
    font-size: 14px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;

    cursor: pointer;
    transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.btn:hover,
.main-btn:hover,
.primary-btn:hover,
.cta-btn:hover,
.hero-btn:hover {
    transform: translateY(-3px);
    background: #e6c982;
    box-shadow: 0 15px 36px rgba(214, 179, 106, 0.28);
}

/* ================= STATS BAR ================= */

.stats-bar {
    padding: 58px 8%;
    background: var(--bg-dark);
    border-top: 1px solid var(--border-dark);
    border-bottom: 1px solid var(--border-dark);
}

.stats-grid.bar,
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px;
    text-align: center;
}

.stats-box,
.stat {
    padding: 28px 22px;
    background: linear-gradient(180deg, #171717, #101010);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.stats-box:hover,
.stat:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 179, 106, 0.55);
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
}

.stats-box h2,
.stat h3 {
    font-size: 34px;
    color: var(--gold);
    margin-bottom: 8px;
}

.stats-box p,
.stat p {
    color: rgba(255, 255, 255, 0.68);
    margin: 0;
}

/* ================= CARDS / GRID ================= */

.grid {
    width: min(1220px, 100%);
    margin: 40px auto 0;

    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    position: relative;
    display: block;
    overflow: hidden;

    background: var(--bg-dark-2);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(0, 0, 0, 0.06);

    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-strong);
    border-color: rgba(214, 179, 106, 0.45);
}

.card img {
    width: 100%;
    height: 245px;
    object-fit: cover;
    transition: transform 0.45s ease;
}

.card:hover img {
    transform: scale(1.06);
}

.card h3 {
    padding: 20px;
    color: var(--text-white);
    text-align: center;
    font-size: 18px;
    font-weight: 800;
    letter-spacing: 0.3px;
}

/* ================= WHY SAKA SECTION ================= */

.why-saka {
    display: flex;
    align-items: center;
    gap: 70px;

    padding: 100px 8%;
    background:
        linear-gradient(135deg, #f7f7f7 0%, #ffffff 48%, #f1f1f1 100%);
}

.why-image,
.why-content {
    flex: 1;
}

.why-image img {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
    object-fit: cover;
}

.why-content h2 {
    font-size: clamp(2rem, 3.3vw, 3.1rem);
    margin-bottom: 14px;
}

.why-content h2::after {
    content: "";
    display: block;
    width: 85px;
    height: 3px;
    margin-top: 16px;
    background: var(--gold);
}

.why-content h3 {
    color: var(--gold-dark);
    font-size: 1.35rem;
    margin-bottom: 18px;
}

.why-content p {
    color: var(--text-muted);
    line-height: 1.9;
}

.why-content ul {
    margin-top: 24px;
    list-style: none;
}

.why-content li {
    margin-bottom: 12px;
    padding: 13px 16px;

    background: #fff;
    border-left: 4px solid var(--gold);
    border-radius: 12px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, 0.05);

    font-weight: 700;
    color: var(--text-main);
}

/* ================= FEATURE SECTIONS ================= */

.feature-section {
    width: min(1280px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    padding: 90px 8%;
}

.feature-section.reverse {
    flex-direction: row-reverse;
}

.feature-image {
    flex: 1;
}

.feature-image img {
    max-height: 560px;
}

.feature-content {
    flex: 1;
}

.feature-content h2 {
    color: var(--text-main);
    margin-bottom: 16px;
}

.feature-content h4 {
    font-size: 1.35rem;
    color: var(--gold-dark);
    margin-bottom: 18px;
}

.feature-content p {
    color: var(--text-muted);
    line-height: 1.9;
}

.feature-photo {
    max-width: 520px;
    width: 100%;
    margin: auto;
}

/* ================= TAGS ================= */

.section-tag,
.intro-tag {
    display: inline-flex;
    align-items: center;
    justify-content: center;

    padding: 9px 18px;
    margin-bottom: 20px;

    border-radius: 999px;
    background: var(--gold);
    color: #000;

    font-size: 13px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

/* ================= ALPHA / PRODUCT PAGE HELPERS ================= */

.alpha-intro,
.alpha-intro-modern {
    width: min(1280px, 100%);
    margin: 0 auto;

    display: flex;
    align-items: center;
    justify-content: center;
    gap: 70px;

    padding: 95px 8%;
}

.alpha-intro h2,
.alpha-intro-content h2 {
    font-size: clamp(2.2rem, 4vw, 4rem);
    line-height: 1.08;
    margin-bottom: 22px;
}

.alpha-intro p,
.alpha-intro-content p {
    color: var(--text-muted);
    line-height: 1.9;
}

.lead-text {
    font-size: 1.28rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 18px;
}

.alpha-stats {
    display: flex;
    gap: 18px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.alpha-stats .stat {
    min-width: 150px;
    background: var(--bg-soft);
    border: 1px solid var(--border-light);
}

.alpha-stats .stat h3 {
    color: var(--gold-dark);
}

.alpha-stats .stat p {
    color: var(--text-muted);
}

/* ================= FEATURE CARDS ================= */

.feature-cards,
.benefits-grid,
.benefit-grid {
    width: min(1220px, 100%);
    margin: 30px auto 0;

    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 20px;
}

.feature-card,
.benefit-card,
.program-item {
    padding: 26px;
    border-radius: var(--radius-md);
    background: #ffffff;
    border: 1px solid var(--border-light);
    box-shadow: 0 10px 26px rgba(0, 0, 0, 0.06);
    text-align: center;
    transition: transform var(--transition), border-color var(--transition), box-shadow var(--transition);
}

.feature-card:hover,
.benefit-card:hover,
.program-item:hover {
    transform: translateY(-7px);
    border-color: rgba(214, 179, 106, 0.55);
    box-shadow: 0 18px 45px rgba(0, 0, 0, 0.12);
}

.feature-card h3,
.benefit-card h3,
.program-item h3 {
    color: var(--gold-dark);
    font-size: 1.35rem;
    margin-bottom: 10px;
}

.feature-card p,
.benefit-card p,
.program-item p {
    color: var(--text-muted);
    margin: 0;
}

/* ================= DARK CARDS ================= */

.section.dark .feature-card,
.section.dark .benefit-card,
.section.dark .program-item,
.dark .feature-card,
.dark .benefit-card,
.dark .program-item {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-white);
    backdrop-filter: blur(10px);
}

.section.dark .feature-card p,
.section.dark .benefit-card p,
.section.dark .program-item p {
    color: rgba(255, 255, 255, 0.72);
}

/* ================= TABLES ================= */

.table-wrapper,
.specs-table-wrapper {
    width: 100%;
    overflow-x: auto;
    border-radius: var(--radius-md);
}

.specs-section {
    padding: 85px 8%;
    background: var(--bg-soft);
}

.specs-table,
.spec-table,
.dark-table,
.programs-table {
    width: 100%;
    border-collapse: collapse;
    overflow: hidden;

    background: #ffffff;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
}

.specs-table th,
.spec-table th,
.programs-table th {
    padding: 18px 20px;
    background: var(--bg-dark);
    color: var(--gold);
    text-align: left;
    font-weight: 900;
    white-space: nowrap;
}

.specs-table td,
.spec-table td,
.dark-table td,
.programs-table td {
    padding: 16px 20px;
    border-bottom: 1px solid var(--border-light);
    color: var(--text-main);
}

.specs-table tr:hover,
.spec-table tr:hover,
.dark-table tr:hover,
.programs-table tr:hover {
    background: #f3f3f3;
}

.dark-table {
    background: var(--bg-dark-2);
}

.dark-table td {
    border-bottom: 1px solid var(--border-dark);
    color: var(--text-light);
}

.dark-table tr:hover {
    background: #151515;
}

/* ================= GALLERIES ================= */

.triple-gallery,
.wheel-gallery {
    display: flex;
    justify-content: center;
    gap: 22px;
    margin-top: 38px;
    flex-wrap: wrap;
}

.triple-gallery img,
.wheel-gallery img {
    width: 320px;
    height: 225px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-soft);
    transition: transform var(--transition), box-shadow var(--transition);
}

.triple-gallery img:hover,
.wheel-gallery img:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: var(--shadow-strong);
}

/* ================= WHEEL MASTER ================= */

.wheel-master {
    padding: 90px 8%;
    text-align: center;
    background: var(--bg-soft);
}

.wheel-master h2 {
    font-size: clamp(2rem, 3.2vw, 3rem);
    margin-bottom: 15px;
}

.wheel-master p {
    max-width: 760px;
    margin: 0 auto 35px;
    color: var(--text-muted);
}

/* ================= FLUX / VIDEO ================= */

.flux-intro {
    padding: 90px 8%;
    text-align: center;
    max-width: 1000px;
    margin: auto;
}

.flux-intro h2 {
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    margin-bottom: 24px;
}

.flux-intro p {
    font-size: 1.08rem;
    line-height: 1.9;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.section.dark .flux-intro p {
    color: rgba(255, 255, 255, 0.74);
}

.small-video,
.video-box {
    width: min(900px, 92%);
    margin: 40px auto;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-strong);
}

.small-video video,
.video-box video {
    width: 100%;
    display: block;
}

.video-section,
.demo-video-section {
    text-align: center;
    padding: 60px 8%;
}

.demo-video {
    width: min(900px, 100%);
    display: block;
    margin: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-soft);
}

/* ================= STEPS ================= */

.steps-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 34px;
    margin-top: 50px;
}

.steps-column h3 {
    text-align: center;
    margin-bottom: 28px;
    color: var(--gold-dark);
}

.step-card {
    overflow: hidden;
    margin-bottom: 24px;

    background: var(--bg-dark-2);
    border: 1px solid var(--border-dark);
    border-radius: var(--radius-md);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
    transition: transform var(--transition), border-color var(--transition);
}

.step-card:hover {
    transform: translateY(-6px);
    border-color: rgba(214, 179, 106, 0.55);
}

.step-card img {
    width: 100%;
    height: 190px;
    object-fit: cover;
}

.step-card h4 {
    padding: 16px;
    text-align: center;
    font-size: 15px;
    color: var(--text-white);
}

.center-title {
    font-size: clamp(2.1rem, 4vw, 3.4rem);
    margin-bottom: 12px;
}

.center-subtitle {
    color: var(--gold-dark);
    margin-bottom: 30px;
}

/* ================= PROGRAMS ================= */

.program-box {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin: 30px 0;
    flex-wrap: wrap;
}

.program-item {
    min-width: 210px;
}

.program-flow {
    display: flex;
    justify-content: space-around;
    gap: 20px;
    margin-top: 30px;
    flex-wrap: wrap;
}

.program-flow div {
    flex: 1;
    min-width: 180px;
    padding: 22px;
    border-radius: var(--radius-md);
    background: var(--bg-dark-2);
    border: 1px solid var(--border-dark);
    color: var(--text-light);
    text-align: center;
}

/* ================= LISTS ================= */

.clean-list {
    list-style: none;
    padding: 0;
    margin-top: 22px;
}

.clean-list li {
    margin-bottom: 12px;
    padding: 12px 14px 12px 18px;
    border-left: 4px solid var(--gold);
    border-radius: 10px;
    background: rgba(214, 179, 106, 0.08);
    color: inherit;
}

/* ================= NEOX / PRODUCT PAGE HELPERS ================= */

.neox-section,
.benefits-section,
.programs-section,
.optional-section {
    padding: 70px 8%;
}

.neox-section h2,
.benefits-section h2,
.programs-section h2,
.optional-section h2 {
    margin-bottom: 20px;
}

.neox-section p,
.benefits-section p,
.optional-section p {
    margin-bottom: 15px;
    line-height: 1.85;
}

.optional-wrapper {
    width: min(1200px, 100%);
    margin: auto;

    display: flex;
    align-items: center;
    gap: 45px;
}

.optional-image,
.optional-content {
    flex: 1;
}

.optional-image img {
    max-width: 540px;
}

/* ================= FOOTER ================= */

.footer {
    padding: 70px 8% 20px;
    background:
        radial-gradient(circle at top left, rgba(214, 179, 106, 0.10), transparent 30%),
        var(--bg-dark);
    color: var(--text-light);
}

.footer-container {
    width: min(1220px, 100%);
    margin: 0 auto;

    display: grid;
    grid-template-columns: 1.3fr 1fr 1.2fr;
    gap: 40px;
}

.footer-box h3 {
    margin-bottom: 16px;
    color: var(--text-white);
    font-size: 17px;
    font-weight: 900;
    letter-spacing: 0.8px;
    text-transform: uppercase;
}

.footer-box p {
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    font-size: 14px;
}

.footer-box a {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, 0.65);
    font-size: 14px;
    transition: color var(--transition), transform var(--transition);
}

.footer-box a:hover {
    color: var(--gold);
    transform: translateX(4px);
}

.footer-logo {
    height: 42px;
    width: auto;
    margin-bottom: 14px;
}

.footer-logos {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 34px;
    margin: 34px auto 20px;
    flex-wrap: wrap;
}

.footer-logos img {
    height: 52px;
    width: auto;
    object-fit: contain;
    opacity: 0.88;
    filter: grayscale(15%);
    transition: transform var(--transition), opacity var(--transition), filter var(--transition);
}

.footer-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-3px) scale(1.04);
}

.footer-bottom {
    width: min(1220px, 100%);
    margin: 34px auto 0;
    padding-top: 20px;

    border-top: 1px solid rgba(255, 255, 255, 0.08);
    text-align: center;
    color: rgba(255, 255, 255, 0.42);
    font-size: 12px;
}

/* ================= ANIMATIONS ================= */

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1100px) {
    .navbar {
        padding: 15px 5%;
    }

    .menu {
        gap: 14px;
    }

    .menu a,
    .menu span {
        font-size: 13px;
    }

    .container,
    .split,
    .feature-section,
    .alpha-intro,
    .alpha-intro-modern,
    .why-saka,
    .optional-wrapper {
        gap: 40px;
    }
}

@media (max-width: 900px) {
    :root {
        --section-padding: 70px 6%;
    }

    .navbar {
        align-items: flex-start;
        flex-wrap: wrap;
        gap: 16px;
    }

    .logo img {
        height: 42px;
    }

    .menu {
        width: 100%;
        justify-content: center;
        gap: 12px 18px;
        order: 3;
    }

    .lang-btn {
        margin-left: auto;
    }

    .dropdown {
        padding: 0;
    }

    .dropdown-content {
        left: 50%;
        right: auto;
        transform: translate(-50%, 8px);
        min-width: 220px;
    }

    .dropdown:hover .dropdown-content,
    .dropdown:focus-within .dropdown-content {
        transform: translate(-50%, 0);
    }

    #langSwitch:checked ~ .page .dropdown-content {
        right: auto;
        left: 50%;
    }

    .hero,
    .hero-image {
        height: 82vh;
        min-height: 620px;
    }

    .hero-content {
        width: 94%;
    }

    .container,
    .split,
    .feature-section,
    .feature-section.reverse,
    .alpha-intro,
    .alpha-intro-modern,
    .why-saka,
    .optional-wrapper {
        flex-direction: column;
        text-align: center;
    }

    .split .text {
        text-align: center;
    }

    .section h2::after,
    .why-content h2::after,
    .feature-content h2::after {
        margin-left: auto;
        margin-right: auto;
    }

    .grid {
        grid-template-columns: 1fr;
    }

    .stats-grid.bar,
    .stats-grid {
        grid-template-columns: 1fr 1fr;
    }

    .steps-columns {
        grid-template-columns: 1fr;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-box a:hover {
        transform: none;
    }

    .triple-gallery img,
    .wheel-gallery img {
        width: 100%;
        max-width: 420px;
    }
}

@media (max-width: 600px) {
    section,
    .section,
    .feature-section,
    .alpha-intro,
    .alpha-intro-modern,
    .why-saka,
    .neox-section,
    .benefits-section,
    .programs-section,
    .optional-section,
    .specs-section {
        padding: 55px 5%;
    }

    .navbar {
        padding: 14px 5%;
    }

    .menu {
        justify-content: center;
        flex-wrap: wrap;
        overflow: visible;
        gap: 12px 14px;
    }

    .menu a,
    .menu span {
        font-size: 12px;
    }

    .hero,
    .hero-image {
        min-height: 560px;
    }

    .hero-content h1,
    h1 {
        letter-spacing: 0.6px;
    }

    .hero-content p {
        letter-spacing: 0.5px;
    }

    .stats-grid.bar,
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .card img {
        height: 220px;
    }

    .footer-logos img {
        height: 44px;
    }

    .whatsapp-btn {
        right: 14px;
        bottom: 14px;
        padding: 12px 15px;
        font-size: 13px;
    }
}
@media (max-width: 768px) {

  .navbar {
    position: relative !important;
    z-index: 999999 !important;
    overflow: visible !important;
  }

  .menu {
    overflow: visible !important;
  }

  .dropdown {
    position: relative !important;
  }

  .dropdown > span {
    cursor: pointer;
    user-select: none;
    position: relative;
    z-index: 999999;
  }

  .dropdown-content {
    display: none !important;
    position: fixed !important;
    top: 95px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    width: 88vw !important;
    max-width: 430px !important;
    background: #111 !important;
    border: 1px solid rgba(255,255,255,0.12) !important;
    border-radius: 22px !important;
    padding: 18px !important;
    z-index: 9999999 !important;
    pointer-events: auto !important;
  }

  .dropdown.mobile-open .dropdown-content {
    display: block !important;
  }

  .dropdown-content a {
    display: block !important;
    width: 100% !important;
    padding: 18px 22px !important;
    font-size: 20px !important;
    color: #fff !important;
    text-decoration: none !important;
    pointer-events: auto !important;
    position: relative !important;
    z-index: 99999999 !important;
  }

  .dropdown-content a:hover {
    background: rgba(214,179,106,0.15) !important;
    color: #d6b36a !important;
  }

  .hero-overlay {
    pointer-events: none !important;
  }
}

/* =========================================================
   GLOBAL FIX: HIDE TOP SAKA LOGO FROM NAVBAR ON ALL PAGES
   Added for all pages that use style.css
========================================================= */

.navbar .logo,
.navbar a.logo,
header.navbar .logo,
header.navbar a.logo {
    display: none !important;
    visibility: hidden !important;
    width: 0 !important;
    min-width: 0 !important;
    max-width: 0 !important;
    height: 0 !important;
    margin: 0 !important;
    padding: 0 !important;
    overflow: hidden !important;
    pointer-events: none !important;
}

.navbar .logo img,
.navbar a.logo img,
header.navbar .logo img,
header.navbar a.logo img {
    display: none !important;
}

/* Keep navbar clean after logo is hidden */
.navbar {
    justify-content: center !important;
}

.navbar .menu {
    flex: 1 1 auto;
    justify-content: center !important;
}

.navbar .lang-btn {
    flex-shrink: 0;
}

