/* ================================================
   SPEED TRACK AUTO CAR WASH — Main Stylesheet
   ================================================ */

/* ---- Variables ---- */
:root {
    --primary:        #BF5D2A;
    --primary-hover:  #a84d22;
    --primary-light:  #f5ece6;
    --dark:           #303030;
    --dark-2:         #1e1e1e;
    --white:          #ffffff;
    --light-bg:       #f7f7f7;
    --border:         #e8e8e8;
    --text-muted:     #888888;
    --text-body:      #4a4a4a;
    --shadow-sm:      0 2px 12px rgba(0,0,0,.07);
    --shadow-md:      0 6px 30px rgba(0,0,0,.10);
    --shadow-lg:      0 12px 50px rgba(0,0,0,.14);
    --shadow-primary: 0 8px 30px rgba(191,93,42,.30);
    --radius-sm:      8px;
    --radius:         14px;
    --radius-lg:      22px;
    --radius-pill:    999px;
    --transition:     0.3s ease;
    --font:           'Avenir Next', 'Avenir', sans-serif;
    --font-display:   'Avenir Next', 'Avenir', sans-serif;
    --font-ar:        'Avenir Next', 'Avenir', sans-serif;
    --header-h:       76px;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
    font-family: var(--font);
    color: var(--dark);
    background: var(--white);
    overflow-x: hidden;
    font-size: 1rem;
    line-height: 1.6;
    letter-spacing: -0.005em;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeLegibility;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; padding: 0; margin: 0; }
button { border: none; background: none; cursor: pointer; }

/* ---- Preloader ---- */
#preloader {
    position: fixed; inset: 0;
    background: var(--white);
    z-index: 9999;
    display: flex; align-items: center; justify-content: center;
    transition: opacity .5s, visibility .5s;
}
#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader-content { text-align: center; }
.preloader-logo-card {
    display: inline-block;
    background: #fff;
    padding: 22px 30px;
    border-radius: 20px;
    margin: 0 auto 30px;
    box-shadow: 0 24px 70px rgba(0,0,0,.45);
    animation: preloaderPop .6s cubic-bezier(.2,.8,.2,1) both;
}
.preloader-logo { width: 200px; margin: 0; border-radius: 0; }
@keyframes preloaderPop { 0%{opacity:0;transform:scale(.92)} 100%{opacity:1;transform:scale(1)} }
.preloader-track {
    width: 220px; height: 4px;
    background: rgba(255,255,255,.12);
    border-radius: 999px;
    margin: 0 auto 18px;
    overflow: hidden;
}
.preloader-loading {
    font-family: var(--font);
    color: var(--primary);
    font-size: .72rem; font-weight: 500;
    text-transform: uppercase; letter-spacing: 4px;
}
.preloader-car {
    height: 100%; width: 0;
    background: var(--primary);
    border-radius: 999px;
    animation: preloaderBar 1.8s ease-in-out forwards;
}
@keyframes preloaderBar { 0%{width:0} 60%{width:70%} 100%{width:100%} }
.preloader-text {
    display: flex; align-items: center; justify-content: center;
    gap: 2px; color: white; font-weight: 700; font-size: 1.4rem; letter-spacing: 4px;
}
.preloader-text span { animation: preloaderLetters 1.5s ease-in-out infinite alternate; }
.preloader-text span:nth-child(1){animation-delay:.1s} .preloader-text span:nth-child(2){animation-delay:.15s}
.preloader-text span:nth-child(3){animation-delay:.2s} .preloader-text span:nth-child(4){animation-delay:.25s}
.preloader-text span:nth-child(5){animation-delay:.3s} .preloader-text span:nth-child(7){animation-delay:.35s}
.preloader-text span:nth-child(8){animation-delay:.4s} .preloader-text span:nth-child(9){animation-delay:.45s}
.preloader-text span:nth-child(10){animation-delay:.5s} .preloader-text span:nth-child(11){animation-delay:.55s}
.preloader-text .gap { width: 12px; }
@keyframes preloaderLetters { 0%{color:rgba(255,255,255,.3)} 100%{color:var(--primary)} }

/* ---- Header ---- */
.main-header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--header-h);
    transition: background .4s, box-shadow .4s, backdrop-filter .4s;
}
.main-header.transparent { background: transparent; }
.main-header.scrolled {
    background: rgb(255, 255, 255);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 2px 20px rgba(0,0,0,.1);
}
.main-header .navbar { height: var(--header-h); }
.navbar-brand { padding: 0; }
.header-logo {
    height: 52px; width: auto;
    object-fit: contain;
    background: #fff;
    padding: 5px 12px;
    border-radius: 12px;
    transition: box-shadow .3s, transform .3s;
}
/* .main-header.transparent .header-logo {
    box-shadow: 0 6px 22px rgba(0,0,0,.28);
} */
.navbar-brand:hover .header-logo { transform: translateY(-1px); }
.brand-text-wrap { display: flex; flex-direction: column; line-height: 1.1; }
.brand-name {
    font-size: .95rem; font-weight: 800;
    color: var(--dark); letter-spacing: .5px;
}
.main-header.transparent .brand-name { color: var(--white); }
.main-header.transparent .brand-sub { color: rgba(255,255,255,.7); }
.brand-sub { font-size: .65rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 1px; }

/* Nav Links */
.main-header .nav-link {
    font-size: 1rem; font-weight: 500;
    color: var(--dark); padding: .4rem .6rem !important;
    border-radius: var(--radius-sm); white-space: nowrap;
    transition: color .2s, background .2s;
}
.main-header.transparent .nav-link { color: rgb(0, 0, 0); }
.main-header .nav-link:hover,
.main-header .nav-link.active { color: var(--primary) !important; background: var(--primary-light); }
.main-header.transparent .nav-link:hover { color: var(--primary) !important; background: rgba(191,93,42,.15); }

/* Dropdown */
.nav-dropdown {
    border: none; border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px; min-width: 200px;
}
.nav-dropdown .dropdown-item {
    border-radius: var(--radius-sm); font-size: .83rem;
    padding: 8px 14px;
    transition: background .2s, color .2s;
}
.nav-dropdown .dropdown-item:hover { background: var(--primary-light); color: var(--primary); }

/* Lang Button */
.lang-btn {
    display: flex; align-items: center; justify-content: center;
    width: 38px; height: 38px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    color: var(--primary);
    font-weight: 700; font-size: .85rem;
    cursor: pointer; transition: var(--transition);
    background: transparent;
}
.lang-btn:hover { background: var(--primary); color: var(--white); }
.main-header.transparent .lang-btn { border-color: rgb(191 93 42); color: #bf5d2a; }
.main-header.transparent .lang-btn:hover { background: var(--primary); border-color: var(--primary); color: var(--white); }

/* Header CTA */
.btn-header-cta {
    display: inline-flex; align-items: center; gap: 6px;
    background: var(--primary); color: var(--white) !important;
    padding: 9px 18px; border-radius: var(--radius-pill);
    font-size: .82rem; font-weight: 600;
    transition: var(--transition); white-space: nowrap;
}
.btn-header-cta:hover { background: var(--primary-hover); transform: translateY(-1px); box-shadow: var(--shadow-primary); }

/* Mobile toggler */
.nav-toggler {
    display: flex; flex-direction: column; gap: 5px;
    width: 36px; padding: 4px; cursor: pointer;
}
.nav-toggler span {
    display: block; height: 3px; background: var(--dark);
    border-radius: 2px; transition: var(--transition);
}
.main-header.transparent .nav-toggler span { background: #bd5c2a; }

/* ---- Section Utilities ---- */
.site-section { padding: 90px 0; }
.bg-light-section { background: var(--light-bg); }
.bg-dark-section { background: var(--dark); }

.section-pill {
    display: inline-flex; align-items: center;
    background: var(--primary); color: var(--white);
    padding: 6px 20px; border-radius: var(--radius-pill);
    font-size: .82rem; font-weight: 600; letter-spacing: .5px;
    margin-bottom: 16px; text-transform: uppercase;
}
.section-pill.light { background: var(--primary); }

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 700; color: var(--dark);
    line-height: 1.2; letter-spacing: -0.02em;
    margin-bottom: 16px;
}
.section-heading.light { color: var(--white); }
.section-body {
    font-size: .97rem; line-height: 1.75;
    color: var(--text-body); margin-bottom: 28px;
}
.section-body.light { color: rgba(255,255,255,.8); }

.section-header-center { text-align: center; margin-bottom: 8px; }
.section-subtext {
    font-size: .95rem; color: var(--text-muted);
    max-width: 540px; margin: 0 auto;
}

.text-brand-primary { color: var(--primary); }

/* ---- Common Buttons ---- */
.btn-solid-primary {
    display: inline-flex; align-items: center; gap: 8px;
    background: var(--primary); color: var(--white);
    padding: 13px 28px; border-radius: var(--radius-pill);
    font-size: .92rem; font-weight: 700;
    transition: var(--transition); cursor: pointer;
}
.btn-solid-primary:hover {
    background: var(--primary-hover); color: var(--white);
    transform: translateY(-2px); box-shadow: var(--shadow-primary);
}

/* ---- HERO ---- */
.hero-section {
    position: relative; min-height: 100dvh;
    display: flex; align-items: center;
    overflow: hidden;
    padding-top: var(--header-h);
}
.hero-bg-layer { position: absolute; inset: 0; z-index: 0; }
.hero-bg-image { width: 100%; height: auto;    margin-top: 40px; object-fit: cover; object-position: center; }
.hero-bg-mobile { display: none; }
.hero-bg-desktop { display: block; }
.hero-overlay {
    position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(30,30,30,.92) 0%, rgba(48,48,48,.7) 60%, rgba(0,0,0,.4) 100%);
}
.hero-gradient {
    position: absolute; bottom: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(to top, var(--white), transparent);
}
.hero-container { position: relative; z-index: 1; }
.hero-pill-badge {
    display: inline-flex; align-items: center; gap: 8px;
    background: rgba(191,93,42,.2); border: 1px solid var(--primary);
    color: var(--primary); padding: 7px 18px;
    border-radius: var(--radius-pill); font-size: .82rem; font-weight: 600;
    margin-bottom: 20px; backdrop-filter: blur(6px);
}
.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.3rem, 5.5vw, 4.1rem);
    font-weight: 700; line-height: 1.08;
    letter-spacing: -0.025em; margin-bottom: 20px;
}
.hero-line-1 { color: rgba(255,255,255,.85); display: block; }
.hero-line-2 { color: var(--primary); display: block; }
.hero-desc {
    font-size: 1rem; color: rgba(255,255,255,.75);
    line-height: 1.75; max-width: 480px; margin-bottom: 36px;
}
.hero-cta-group { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 48px; }
.btn-hero-solid {
    display: inline-flex; align-items: center;
    background: var(--primary); color: var(--white);
    padding: 14px 32px; border-radius: var(--radius-pill);
    font-size: .95rem; font-weight: 700;
    transition: var(--transition);
}
.btn-hero-solid:hover { background: var(--primary-hover); color: var(--white); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.btn-hero-outline {
    display: inline-flex; align-items: center;
    background: transparent; color: var(--white);
    border: 2px solid rgba(255,255,255,.5);
    padding: 13px 30px; border-radius: var(--radius-pill);
    font-size: .95rem; font-weight: 600;
    transition: var(--transition);
}
.btn-hero-outline:hover { border-color: var(--white); background: rgba(255,255,255,.1); color: var(--white); }
.hero-stats-row {
    display: flex; align-items: center; gap: 24px; flex-wrap: wrap;
}
.hero-stat-item { display: flex; flex-wrap: wrap; align-items: baseline; }
.hero-stat-num {
    font-size: 2rem; font-weight: 800; color: var(--white); line-height: 1;
}
.hero-stat-sup { font-size: 1rem; font-weight: 700; color: var(--primary); margin-left: 2px; }
.hero-stat-label { flex-basis: 100%; font-size: .78rem; color: rgba(255,255,255,.6); margin-top: 2px; }
.hero-stat-sep { width: 1px; height: 40px; background: rgba(255,255,255,.2); }

/* Hero Visual */
.hero-visual { position: relative; }
.hero-sign-img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); width: 100%; max-width: 400px; }
.hero-float-card {
    position: absolute;
    background: rgba(255,255,255,.97);
    backdrop-filter: blur(12px);
    border-radius: var(--radius);
    padding: 12px 16px;
    display: flex; align-items: center; gap: 12px;
    box-shadow: var(--shadow-md);
    min-width: 180px;
}
.float-top { top: 20px; left: -30px; animation: floatY 3s ease-in-out infinite; }
.float-bottom { bottom: 30px; right: -20px; animation: floatY 3s ease-in-out infinite .5s; }
@keyframes floatY { 0%,100%{transform:translateY(0)} 50%{transform:translateY(-8px)} }
.float-icon { font-size: 1.4rem; color: var(--primary); }
.float-text strong { display: block; font-size: .82rem; font-weight: 700; color: var(--dark); }
.float-text small { font-size: .72rem; color: var(--text-muted); }

/* Scroll cue */
.hero-scroll-cue {
    position: absolute; bottom: 40px; left: 50%;
    transform: translateX(-50%); z-index: 2;
}
.scroll-dot {
    width: 24px; height: 40px;
    border: 2px solid rgb(193 92 42);
    border-radius: 12px; position: relative;
}
.scroll-dot::after {
    content: ''; position: absolute;
    width: 4px; height: 8px;
    background: var(--primary); border-radius: 2px;
    top: 6px; left: 50%; transform: translateX(-50%);
    animation: scrollDot 1.5s ease-in-out infinite;
}
@keyframes scrollDot { 0%,100%{top:6px;opacity:1} 50%{top:18px;opacity:.4} }

/* ---- ABOUT ---- */
.about-img-wrap {
    position: relative; display: inline-block;
    width: 100%;
}
.about-main-image {
    width: 100%; border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    object-fit: cover;
}
.about-founded-badge {
    position: absolute; bottom: -16px;
    background: var(--primary); color: var(--white);
    border-radius: var(--radius); padding: 14px 20px;
    text-align: center; box-shadow: var(--shadow-primary);
}
[dir="ltr"] .about-founded-badge { right: -16px; }
[dir="rtl"] .about-founded-badge { left: -16px; }
.founded-year { display: block; font-size: 1.8rem; font-weight: 900; line-height: 1; }
.founded-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }
.about-dec-line {
    position: absolute; background: var(--primary);
    opacity: .15; border-radius: 4px;
}
.about-dec-line-1 { width: 4px; height: 80px; top: 20%; right: -20px; }
.about-dec-line-2 { height: 4px; width: 80px; bottom: 30%; left: -20px; }

.about-feature-list { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.about-feature-item { display: flex; align-items: flex-start; gap: 16px; }
.afi-icon {
    width: 48px; height: 48px; min-width: 48px;
    background: var(--primary-light); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.2rem;
}
.afi-text strong { display: block; font-size: .92rem; font-weight: 700; color: var(--dark); margin-bottom: 3px; }
.afi-text p { font-size: .83rem; color: var(--text-muted); margin: 0; }

.about-counters-row { display: flex; align-items: center; gap: 24px; padding-top: 28px; border-top: 1px solid var(--border); flex-wrap: wrap; }
.acr-item { display: flex; flex-wrap: wrap; align-items: baseline; }
.acr-num { font-size: 2.2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.acr-sup { font-size: 1rem; font-weight: 800; color: var(--primary); }
.acr-label { flex-basis: 100%; font-size: .8rem; color: var(--text-muted); margin-top: 3px; }
.acr-divider { width: 1px; height: 44px; background: var(--border); }

/* ---- SERVICES ---- */
.svc-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px 24px; box-shadow: var(--shadow-sm);
    border: 1px solid var(--border);
    transition: var(--transition); height: 100%;
    cursor: default;
}
.svc-card:hover { box-shadow: var(--shadow-md); transform: translateY(-4px); border-color: var(--primary); }
.svc-card-featured {
    background: var(--dark); border-color: var(--primary);
    position: relative;
}
.svc-card-featured:hover { box-shadow: 0 12px 40px rgba(191,93,42,.3); }
.svc-card-featured h3, .svc-card-featured p { color: var(--white) !important; }
.svc-popular-tag {
    position: absolute; top: -12px;
    background: var(--primary); color: var(--white);
    padding: 4px 14px; border-radius: var(--radius-pill);
    font-size: .72rem; font-weight: 700; text-transform: uppercase;
    letter-spacing: .5px;
}
[dir="ltr"] .svc-popular-tag { right: 20px; }
[dir="rtl"] .svc-popular-tag { left: 20px; }
.svc-icon-box {
    width: 56px; height: 56px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem; color: var(--primary);
    margin-bottom: 18px;
}
.svc-card-featured .svc-icon-box { background: rgba(191,93,42,.2); }
.svc-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; }
.svc-card p { font-size: .85rem; color: var(--text-muted); line-height: 1.65; margin-bottom: 16px; }
.svc-tags { display: flex; flex-wrap: wrap; gap: 6px; }
.svc-tags span {
    background: var(--light-bg); color: var(--dark);
    padding: 4px 10px; border-radius: var(--radius-pill);
    font-size: .72rem; font-weight: 500;
}
.svc-card-featured .svc-tags span { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }

/* ---- PACKAGES ---- */
.packages-showcase-block { background: var(--light-bg); border-radius: var(--radius-lg); padding: 40px; margin-bottom: 0; }
.pkg-showcase-img { width: 100%; border-radius: var(--radius); box-shadow: var(--shadow-md); }
.pkg-benefits { display: flex; flex-direction: column; gap: 18px; }
.pkg-benefit-item {
    display: flex; align-items: center; gap: 14px;
    font-size: 1rem; font-weight: 600; color: var(--dark);
}
.pbi-check {
    width: 32px; height: 32px; min-width: 32px;
    background: var(--primary); color: white;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    font-size: .9rem; font-weight: 800;
}

.pkg-card {
    background: var(--white); border-radius: var(--radius-lg);
    padding: 28px 24px; border: 2px solid var(--border);
    box-shadow: var(--shadow-sm); position: relative;
    transition: var(--transition); height: 100%;
}
.pkg-card:hover { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-4px); }
.pkg-card-featured {
    background: var(--dark); border-color: var(--primary);
    transform: scale(1.03);
}
.pkg-card-featured:hover { transform: scale(1.03) translateY(-4px); }
.pkg-best-badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    background: var(--primary); color: white;
    padding: 5px 18px; border-radius: var(--radius-pill);
    font-size: .72rem; font-weight: 700; text-transform: uppercase; letter-spacing: .5px;
    white-space: nowrap;
}
.pkg-card-header { margin-bottom: 20px; }
.pkg-type-label {
    display: inline-block; background: var(--primary-light);
    color: var(--primary); padding: 3px 10px;
    border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700;
    text-transform: uppercase; letter-spacing: .5px; margin-bottom: 6px;
}
.pkg-card-featured .pkg-type-label { background: rgba(191,93,42,.2); }
.pkg-name { font-size: 1.1rem; font-weight: 800; color: var(--dark); }
.pkg-card-featured .pkg-name { color: var(--white); }
.pkg-price-block { margin-bottom: 22px; }
.pkg-old-price { font-size: .9rem; color: var(--text-muted); text-decoration: line-through; display: block; margin-bottom: 4px; }
.pkg-card-featured .pkg-old-price { color: rgba(255,255,255,.5); }
.pkg-current-price { display: flex; align-items: baseline; gap: 6px; }
.pkg-amount { font-size: 2.5rem; font-weight: 900; color: var(--primary); line-height: 1; }
.pkg-per { font-size: .82rem; color: var(--text-muted); }
.pkg-card-featured .pkg-per { color: rgba(255,255,255,.6); }
.pkg-feature-list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pkg-feature-list li { display: flex; align-items: center; gap: 10px; font-size: .88rem; }
.pkg-feature-list li.active { color: var(--dark); }
.pkg-feature-list li.active .bi { color: var(--primary); font-size: 1rem; }
.pkg-feature-list li.inactive { color: var(--text-muted); opacity: .5; }
.pkg-feature-list li.inactive .bi { color: var(--text-muted); }
.pkg-card-featured .pkg-feature-list li.active { color: rgba(255,255,255,.9); }
.pkg-card-featured .pkg-feature-list li.inactive { color: rgba(255,255,255,.3); }
.pkg-btn {
    display: block; text-align: center;
    background: var(--primary-light); color: var(--primary);
    padding: 12px; border-radius: var(--radius-pill);
    font-weight: 700; font-size: .9rem;
    transition: var(--transition);
}
.pkg-btn:hover { background: var(--primary); color: white; }
.pkg-btn-featured { background: var(--primary); color: white; }
.pkg-btn-featured:hover { background: var(--primary-hover); color: white; box-shadow: var(--shadow-primary); }

/* ---- LOYALTY ---- */
.loyalty-img-wrap { position: relative; }
.loyalty-main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.loyalty-mechanism-title {
    display: inline-flex;
    background: var(--primary); color: white;
    padding: 7px 20px; border-radius: var(--radius-pill);
    font-size: .88rem; font-weight: 700;
    margin-bottom: 14px;
}
.loyalty-bullet-list { margin-bottom: 28px; display: flex; flex-direction: column; gap: 10px; }
.loyalty-bullet-list li {
    display: flex; align-items: center; gap: 10px;
    color: rgba(255,255,255,.85); font-size: .92rem;
}
.loyalty-bullet-list li::before {
    content: ''; width: 8px; height: 8px; min-width: 8px;
    background: var(--primary); border-radius: 50%;
}
.loyalty-steps-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 0; }
.loyalty-step-card {
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.12);
    border-radius: var(--radius); padding: 14px 16px;
    display: flex; align-items: center; gap: 12px;
    color: rgba(255,255,255,.85); font-size: .83rem; font-weight: 500;
    transition: var(--transition); cursor: default;
}
.loyalty-step-card:hover { background: rgba(191,93,42,.2); border-color: var(--primary); }
.lsc-icon {
    width: 38px; height: 38px; min-width: 38px;
    background: var(--primary); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white; font-size: 1rem;
}

/* ---- CORPORATE ---- */
.corp-benefits-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 8px; }
.corp-benefit {
    display: flex; align-items: center; gap: 10px;
    font-size: .88rem; color: var(--text-body); font-weight: 500;
}
.corp-benefit .bi { color: var(--primary); font-size: 1.1rem; }
.corp-visual-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.corp-vis-card {
    background: var(--white); border-radius: var(--radius);
    padding: 24px 20px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); text-align: center;
    transition: var(--transition);
}
.corp-vis-card:hover { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-3px); }
.corp-vis-card .bi { font-size: 2rem; color: var(--primary); display: block; margin-bottom: 10px; }
.corp-vis-card h4 { font-size: .9rem; font-weight: 700; margin-bottom: 6px; }
.corp-vis-card p { font-size: .78rem; color: var(--text-muted); margin: 0; }

/* ---- COUPONS ---- */
.coupon-card {
    display: flex; align-items: stretch;
    background: var(--white); border-radius: var(--radius);
    box-shadow: var(--shadow-md); overflow: hidden;
    border: 2px solid var(--border); position: relative;
    transition: var(--transition); height: 100%;
}
.coupon-card:hover { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-4px); }
.coupon-card-featured { border-color: var(--primary); }
.coupon-left-half {
    background: var(--primary); color: white;
    padding: 28px 20px; display: flex; flex-direction: column;
    align-items: center; justify-content: center; gap: 6px;
    min-width: 100px; flex-shrink: 0;
}
.coupon-card-featured .coupon-left-half { background: var(--dark); }
.coupon-icon-box { font-size: 1.4rem; opacity: .7; }
.coupon-count { font-size: 2.6rem; font-weight: 900; line-height: 1; }
.coupon-count-label { font-size: .72rem; text-transform: uppercase; letter-spacing: 1px; opacity: .8; }
.coupon-notch {
    position: absolute;
    width: 20px; height: 20px;
    background: var(--light-bg); border-radius: 50%; border: 2px solid var(--border);
    left: 88px; z-index: 1;
}
.coupon-card-featured .coupon-notch { border-color: var(--primary); }
.coupon-notch-top { top: -10px; }
.coupon-notch-bottom { bottom: -10px; }
.coupon-right-half {
    padding: 24px 20px; display: flex; flex-direction: column;
    justify-content: center; gap: 10px; flex: 1;
}
.coupon-price-val { font-size: 1.8rem; font-weight: 900; color: var(--dark); }
.coupon-price-val small { font-size: .85rem; font-weight: 600; color: var(--text-muted); }
.coupon-save-badge {
    display: inline-block; background: var(--primary-light);
    color: var(--primary); padding: 3px 10px;
    border-radius: var(--radius-pill); font-size: .72rem; font-weight: 700;
}
.coupon-card-featured .coupon-save-badge { background: var(--primary); color: white; }
.coupon-action-btn {
    display: inline-block; background: var(--primary); color: white;
    padding: 9px 18px; border-radius: var(--radius-pill);
    font-size: .83rem; font-weight: 700; text-align: center;
    transition: var(--transition); align-self: flex-start;
}
.coupon-action-btn:hover { background: var(--primary-hover); color: white; box-shadow: var(--shadow-primary); }

/* ---- MARKETING PARTNERSHIPS ---- */
.marketing-features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 8px; }
.mf-item { display: flex; align-items: flex-start; gap: 14px; }
.mf-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: var(--primary-light); border-radius: var(--radius-sm);
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}
.mf-text strong { display: block; font-size: .92rem; font-weight: 700; margin-bottom: 3px; }
.mf-text p { font-size: .83rem; color: var(--text-muted); margin: 0; }

/* Partner Orbit */
.partner-orbit-visual {
    position: relative; width: 300px; height: 300px;
    display: flex; align-items: center; justify-content: center;
}
.pov-center {
    width: 80px; height: 80px; background: var(--white);
    border-radius: 50%; border: 3px solid var(--primary);
    overflow: hidden; z-index: 2; position: relative;
    display: flex; align-items: center; justify-content: center;
    box-shadow: var(--shadow-primary);
}
.pov-logo { width: 70px; height: 70px; object-fit: cover; border-radius: 50%; }
.pov-ring {
    position: absolute; inset: 0;
    border: 2px dashed rgba(191,93,42,.3);
    border-radius: 50%; animation: rotate 12s linear infinite;
}
.pov-dot {
    position: absolute; width: 48px; height: 48px;
    background: var(--white); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
    box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.pov-dot-1 { top: -24px; left: 50%; transform: translateX(-50%); }
.pov-dot-2 { right: -24px; top: 50%; transform: translateY(-50%); }
.pov-dot-3 { bottom: -24px; left: 50%; transform: translateX(-50%); }
.pov-dot-4 { left: -24px; top: 50%; transform: translateY(-50%); }
@keyframes rotate { from{transform:rotate(0)} to{transform:rotate(360deg)} }
.pov-label {
    position: absolute; bottom: -28px; left: 50%; transform: translateX(-50%);
    font-size: .75rem; font-weight: 600; color: var(--text-muted); white-space: nowrap;
}

/* ---- MACHINE SUPPLY ---- */
.machine-taglines { display: flex; flex-direction: column; gap: 10px; margin-bottom: 8px; }
.machine-tagline { display: flex; align-items: center; gap: 12px; }
.mtl-ar {
    display: inline-block; background: rgba(191,93,42,.15);
    color: var(--primary); padding: 8px 20px;
    border-radius: var(--radius-pill); font-size: 1.1rem; font-weight: 800;
    border: 1px solid rgba(191,93,42,.3);
}
.machine-img-box { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); }
.machine-main-img { width: 100%; }

/* ---- MAINTENANCE ---- */
.maint-card {
    background: var(--white); border-radius: var(--radius);
    padding: 28px 20px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); text-align: center;
    height: 100%; transition: var(--transition);
}
.maint-card:hover { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-4px); }
.maint-icon-box {
    width: 60px; height: 60px;
    background: var(--primary-light); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem; color: var(--primary);
    margin: 0 auto 16px;
}
.maint-card h4 { font-size: .95rem; font-weight: 700; margin-bottom: 10px; }
.maint-card p { font-size: .83rem; color: var(--text-muted); line-height: 1.65; margin: 0; }

/* ---- BRANCHES ---- */
.branches-map-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
.branch-city-group { }
.bcg-header {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px; border-radius: var(--radius-pill);
    font-size: .9rem; font-weight: 700; margin-bottom: 12px;
    color: white;
}
.bcg-makkah { background: var(--primary); }
.bcg-jeddah { background: var(--dark); }
.branch-card-item {
    background: var(--white); border-radius: var(--radius);
    padding: 16px; border: 1px solid var(--border);
    box-shadow: var(--shadow-sm); transition: var(--transition);
}
.branch-card-item:hover { border-color: var(--primary); box-shadow: var(--shadow-primary); transform: translateY(-2px); }
.bci-name {
    display: flex; align-items: center; gap: 8px;
    font-size: .88rem; font-weight: 700; color: var(--dark);
    margin-bottom: 12px;
}
.bci-name .bi { color: var(--primary); font-size: .9rem; }
.bci-actions { display: flex; gap: 8px; }
.bci-btn {
    width: 36px; height: 36px;
    border-radius: 50%; border: 1px solid var(--border);
    display: flex; align-items: center; justify-content: center;
    font-size: .9rem; transition: var(--transition);
}
.bci-map { color: #4285f4; }
.bci-map:hover { background: #4285f4; color: white; border-color: #4285f4; }
.bci-call { color: var(--primary); }
.bci-call:hover { background: var(--primary); color: white; border-color: var(--primary); }
.bci-wa { color: #25d366; }
.bci-wa:hover { background: #25d366; color: white; border-color: #25d366; }

/* ---- PARTNERS ---- */
.partners-full-image { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }
/* Auto-scrolling logo marquee (washthru-style) */
.marquee-wrapper {
    position: relative;
    overflow: hidden;
    width: 100%;
    height: 120px;
    -webkit-mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
            mask-image: linear-gradient(90deg, transparent 0, #000 6%, #000 94%, transparent 100%);
}
.marquee-track {
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    display: flex;
    align-items: center;
    white-space: nowrap;
    direction: ltr;
    will-change: transform;
    animation: marquee-horizontal 35s linear infinite;
    /* manipulate the speed of the marquee by changing "35s" line above */
}
@keyframes marquee-horizontal {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
.marquee-track .w-dyn-list { display: flex; align-items: center; }
.marquee-track .marquee-list { display: flex; align-items: center; }
.marquee-item-2 { flex: 0 0 auto; }
.p_logo_wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 10px;
}
.p_logo_wrap img {
    height: 90px;
    width: auto;
    max-width: none;
    object-fit: contain;
    filter: grayscale(100%) brightness(0);
    transition: filter 0.35s ease;
}
.p_logo_wrap:hover img {
    filter: none;
}
@media only screen and (min-width: 992px) {
    .marquee-track:hover { animation-play-state: paused; }
}

/* ---- PAYMENT ---- */
.payment-methods-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.pm-card {
    background: var(--white); border-radius: var(--radius);
    border: 2px solid var(--border); padding: 16px 10px;
    display: flex; align-items: center; justify-content: center;
    min-height: 72px; transition: var(--transition);
}
.pm-card:hover { border-color: var(--primary); box-shadow: var(--shadow-sm); transform: translateY(-2px); }
.pm-logo {
    font-size: .9rem; font-weight: 800; text-align: center;
    display: flex; flex-direction: column; align-items: center; gap: 4px;
}
.pm-mada { color: #1a4b8c; letter-spacing: .5px; }
.pm-applepay { color: var(--dark); }
.pm-visa { color: #1a1f71; font-size: 1.2rem; font-style: italic; }
.pm-cash { color: var(--primary); font-size: 1.2rem; }
.pm-cash .bi { font-size: 1.3rem; }
.pm-stcpay { color: #6f1d8a; }
.pm-mc { position: relative; display: flex; align-items: center; flex-direction: column; gap: 4px; }
.mc-circle {
    width: 24px; height: 24px; border-radius: 50%;
    position: absolute;
    top: -12px;
}
.mc-r { background: #eb001b; left: 0; }
.mc-y { background: #f79e1b; left: 14px; opacity: .8; }
.mc-text { font-size: .65rem; font-weight: 700; color: #333; margin-top: 16px; }
.payment-main-img { width: 100%; border-radius: var(--radius-lg); box-shadow: var(--shadow-md); }

/* ---- CONTACT ---- */
.contact-info-block { display: flex; flex-direction: column; gap: 20px; }
.cib-item { display: flex; align-items: flex-start; gap: 14px; }
.cib-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: rgba(191,93,42,.15); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--primary); font-size: 1.1rem;
}
.cib-wa { background: rgba(37,211,102,.15); color: #25d366; }
.cib-text strong { display: block; font-size: .85rem; font-weight: 700; color: rgba(255,255,255,.9); margin-bottom: 3px; }
.cib-text p { font-size: .9rem; color: rgba(255,255,255,.7); margin: 0; }
.contact-quick-btns { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 24px; }
.cqb-wa, .cqb-call {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 12px 22px; border-radius: var(--radius-pill);
    font-size: .88rem; font-weight: 700; transition: var(--transition);
}
.cqb-wa { background: #25d366; color: white; }
.cqb-wa:hover { background: #1db954; color: white; transform: translateY(-2px); }
.cqb-call { background: rgba(255,255,255,.1); color: white; border: 1px solid rgba(255,255,255,.2); }
.cqb-call:hover { background: var(--primary); color: white; border-color: var(--primary); transform: translateY(-2px); }

/* Contact Form */
.contact-form-block { background: rgba(255,255,255,.05); border: 1px solid rgba(255,255,255,.1); border-radius: var(--radius-lg); padding: 32px; }
.cfb-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 2px; }
.cfb-group label { font-size: .83rem; font-weight: 600; color: rgba(255,255,255,.85); }
.cfb-input {
    background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15);
    border-radius: var(--radius-sm); padding: 12px 16px;
    color: white; font-size: .9rem; font-family: var(--font);
    transition: var(--transition); outline: none; width: 100%;
}
.cfb-input:focus { border-color: var(--primary); background: rgba(191,93,42,.08); box-shadow: 0 0 0 3px rgba(191,93,42,.15); }
.cfb-input::placeholder { color: rgba(255,255,255,.3); }
.cfb-select option { background: var(--dark); color: white; }
.cfb-submit {
    width: 100%; background: var(--primary); color: white;
    border: none; padding: 14px; border-radius: var(--radius-pill);
    font-size: .95rem; font-weight: 700; cursor: pointer;
    transition: var(--transition); display: flex; align-items: center; justify-content: center; gap: 8px;
}
.cfb-submit:hover { background: var(--primary-hover); transform: translateY(-2px); box-shadow: var(--shadow-primary); }
.form-success-msg {
    display: flex; align-items: center; gap: 10px;
    background: rgba(37,211,102,.1); border: 1px solid rgba(37,211,102,.3);
    border-radius: var(--radius); padding: 14px 18px;
    color: #25d366; font-size: .9rem; font-weight: 600;
    margin-top: 12px;
}

/* ---- FOOTER ---- */
#main-footer { background: #1a1a1a; }
.footer-body { padding: 72px 0 48px; }
.footer-logo-img { width: 80px; height: 80px; object-fit: cover; border-radius: 12px; margin-bottom: 16px; }
.footer-brand-desc { font-size: .85rem; color: rgba(255,255,255,.6); line-height: 1.65; margin-bottom: 20px; }
.footer-social-row { display: flex; gap: 10px; }
.footer-social-link {
    width: 38px; height: 38px; border-radius: 50%;
    background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.1);
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.7); font-size: 1rem; transition: var(--transition);
}
.footer-social-link:hover { background: var(--primary); border-color: var(--primary); color: white; transform: translateY(-2px); }
.footer-col-title { font-size: .95rem; font-weight: 800; color: white; margin-bottom: 20px; letter-spacing: .3px; }
.footer-link-list { display: flex; flex-direction: column; gap: 10px; }
.footer-link-list a { font-size: .85rem; color: rgba(255,255,255,.6); transition: var(--transition); }
.footer-link-list a:hover { color: var(--primary); }
[dir="ltr"] .footer-link-list a:hover { padding-left: 4px; }
[dir="rtl"] .footer-link-list a:hover { padding-right: 4px; }
.footer-contact-list { display: flex; flex-direction: column; gap: 12px; }
.fcl-item { display: flex; align-items: center; gap: 10px; font-size: .85rem; color: rgba(255,255,255,.6); }
.fcl-item .bi { color: var(--primary); font-size: .9rem; min-width: 16px; }
.footer-bottom-bar { background: #111; padding: 18px 0; }
.fbb-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; }
.fbb-inner p { font-size: .82rem; color: rgba(255,255,255,.4); margin: 0; }
.fbb-links { display: flex; align-items: center; gap: 12px; }
.fbb-links a { font-size: .8rem; color: rgba(255,255,255,.4); transition: var(--transition); }
.fbb-links a:hover { color: var(--primary); }
.fbb-links span { color: rgba(255,255,255,.2); font-size: .7rem; }

/* ---- FLOATING BUTTONS ---- */
.wa-float-btn {
    position: fixed; bottom: 24px;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25d366; color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.6rem; box-shadow: 0 4px 20px rgba(37,211,102,.4);
    z-index: 900; transition: var(--transition);
}
[dir="ltr"] .wa-float-btn { right: 24px; }
[dir="rtl"] .wa-float-btn { left: 24px; }
.wa-float-btn:hover { background: #1db954; color: white; transform: scale(1.1); }
.back-top-btn {
    position: fixed; bottom: 90px;
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--primary); color: white;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem; box-shadow: var(--shadow-primary);
    z-index: 900; transition: var(--transition);
    opacity: 0; visibility: hidden;
}
[dir="ltr"] .back-top-btn { right: 26px; }
[dir="rtl"] .back-top-btn { left: 26px; }
.back-top-btn.visible { opacity: 1; visibility: visible; }
.back-top-btn:hover { background: var(--primary-hover); transform: translateY(-3px); }

/* ---- RESPONSIVE ---- */
@media (max-width: 1199.98px) {
    .main-header .navbar-collapse { background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-md); padding: 20px; margin-top: 10px; border: 1px solid var(--border); }
    .main-header.transparent .navbar-collapse { background: rgba(255, 255, 255, 0.97); border-color: rgba(255,255,255,.1); }
    .main-header .nav-link { padding: .5rem .8rem !important; }
    .nav-end-actions { flex-direction: row; padding-top: 12px; border-top: 1px solid var(--border); }
    .main-header.transparent .nav-end-actions { border-color: rgba(255,255,255,.1); }
}
@media (max-width: 991.98px) {
    :root { --header-h: 64px; }
    .site-section { padding: 70px 0; }
    .hero-stats-row { gap: 16px; }
    .pkg-card-featured { transform: none; }
    .pkg-card-featured:hover { transform: translateY(-4px); }
    .loyalty-steps-grid { grid-template-columns: 1fr; }
    .corp-benefits-grid { grid-template-columns: 1fr; }
    .packages-showcase-block { padding: 24px; }
}
@media (max-width: 767.98px) {
    .site-section { padding: 56px 0; }
    .hero-cta-group { flex-direction: column; align-items: flex-start; }
    .hero-headline { font-size: clamp(1.8rem, 7vw, 2.8rem); }
    .payment-methods-grid { grid-template-columns: repeat(2,1fr); }
    .corp-visual-grid { grid-template-columns: 1fr 1fr; }
    .contact-form-block { padding: 20px; }
    .fbb-inner { flex-direction: column; text-align: center; }
    .partner-orbit-visual { width: 240px; height: 240px; }
    .about-dec-line-1, .about-dec-line-2 { display: none; }
    [dir="ltr"] .about-founded-badge { right: 8px; }
    [dir="rtl"] .about-founded-badge { left: 8px; }
    .hero-bg-desktop { display: none; }
    .hero-bg-mobile { display: block; }
    .hero-section{
        min-height: 120dvh;
    }
}
@media (max-width: 575.98px) {
    .hero-stats-row { flex-wrap: wrap; gap: 12px; }
    .hero-stat-sep { display: none; }
    .pkg-benefits { gap: 12px; }
    .corp-visual-grid { grid-template-columns: 1fr 1fr; }
    .coupon-card { flex-direction: column; }
    .coupon-notch { display: none; }
    .coupon-left-half { padding: 16px; border-radius: 0; }
    .coupon-count { font-size: 2rem; }
    .machine-taglines { gap: 8px; }
}

/* ---- AOS overrides ---- */
[data-aos] { transition-property: transform, opacity; }

/* ---- Scroll-padding ---- */
html { scroll-padding-top: calc(var(--header-h) + 20px); }

/* ---- Reduced motion ---- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
    .marquee-track { animation: none; }
    .pov-ring { animation: none; }
    .hero-float-card { animation: none; }
}
