/* =============================================
   FAISAL HONDA — GLOBAL STYLESHEET
   ============================================= */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;600;700;900&family=Inter:wght@300;400;500;600&family=Tajawal:wght@400;700;900&family=Cairo:wght@400;600;700&display=swap');

/* Design Tokens */
:root {
  --c-red: #F5C100;
  --c-red-dk: #D4A800;
  --c-red-lt: #FFD700;
  --c-dark: #0D0D0D;
  --c-dark2: #1C1C1C;
  --c-dark3: #242424;
  --c-light: #F8F8F8;
  --c-white: #FFFFFF;
  --c-gray: #888888;
  --c-gray-l: #BBBBBB;
  --c-gold: #F5C100;
  --c-border: rgba(255, 255, 255, 0.08);
  --f-h: 'Montserrat', sans-serif;
  --f-b: 'Inter', sans-serif;
  --f-ah: 'Tajawal', sans-serif;
  --f-ab: 'Cairo', sans-serif;
  --max-w: 1280px;
  --pad: clamp(1rem, 5vw, 4rem);
  --sec-pad: clamp(3rem, 8vw, 6rem);
  --r: 8px;
  --r-lg: 16px;
  --sh-card: 0 4px 24px rgba(0, 0, 0, .25);
  --sh-red: 0 0 24px rgba(245, 193, 0, .45);
  --sh-red-sm: 0 0 12px rgba(245, 193, 0, .25);
  --tr: .3s ease;
  --tr-s: .5s ease;
  --nav-h: 72px;
}

*,
*::before,
*::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  font-family: var(--f-b);
  background: var(--c-dark);
  color: var(--c-white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden
}

html[lang="ar"] body {
  font-family: var(--f-ab);
  line-height: 1.8
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--tr)
}

ul {
  list-style: none
}

img {
  max-width: 100%;
  height: auto;
  display: block
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit
}

input,
textarea,
select {
  font-family: inherit
}

/* Layout */
.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad)
}

.section {
  padding-block: var(--sec-pad)
}

.section--dark {
  background: var(--c-dark)
}

.section--dark2 {
  background: var(--c-dark2)
}

.section--dark3 {
  background: var(--c-dark3)
}

.section--light {
  background: var(--c-light)
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--f-h);
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -.02em
}

html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="ar"] h4 {
  font-family: var(--f-ah);
  letter-spacing: 0
}

.text-red {
  color: var(--c-red)
}

.text-gold {
  color: var(--c-gold)
}

.text-gray {
  color: var(--c-gray)
}

.text-center {
  text-align: center
}

.sec-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--c-red);
  margin-bottom: .75rem
}

.sec-title {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  font-weight: 900;
  margin-bottom: 1rem;
  color: var(--c-white)
}

.sec-title--dk {
  color: var(--c-dark)
}

.sec-sub {
  font-size: clamp(1rem, 2vw, 1.125rem);
  color: var(--c-gray);
  max-width: 600px;
  line-height: 1.7
}

.sec-sub--c {
  margin-inline: auto
}

.title-acc {
  position: relative;
  display: inline-block
}

.title-acc::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  width: 60px;
  height: 3px;
  background: var(--c-red);
  border-radius: 2px
}

html[dir="rtl"] .title-acc::after {
  left: auto;
  right: 0
}

.sec-hdr--c .title-acc::after {
  left: 50%;
  transform: translateX(-50%)
}

html[dir="rtl"] .sec-hdr--c .title-acc::after {
  left: 50%;
  right: auto
}

.sec-hdr {
  margin-bottom: 3.5rem
}

.sec-hdr--c {
  text-align: center
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 2rem;
  border-radius: 50px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .03em;
  transition: var(--tr);
  white-space: nowrap;
  cursor: pointer;
  border: 2px solid transparent
}

.btn-red {
  background: var(--c-red);
  color: #0D0D0D;
  border-color: var(--c-red);
  box-shadow: 0 4px 16px rgba(245, 193, 0, .3);
  font-weight: 700
}

.btn-red:hover {
  background: var(--c-red-dk);
  border-color: var(--c-red-dk);
  transform: scale(1.04);
  box-shadow: var(--sh-red)
}

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, .6)
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: #fff;
  transform: scale(1.04)
}

.btn-wa {
  background: #25D366;
  color: #fff;
  border-color: #25D366;
  box-shadow: 0 4px 16px rgba(37, 211, 102, .35)
}

.btn-wa:hover {
  background: #1da851;
  transform: scale(1.04);
  box-shadow: 0 6px 20px rgba(37, 211, 102, .5)
}

.btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.05rem
}

.btn-full {
  width: 100%;
  justify-content: center
}

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--tr-s), box-shadow var(--tr-s)
}

.navbar.scrolled {
  background: rgba(13, 13, 13, .97);
  box-shadow: 0 2px 24px rgba(0, 0, 0, .5);
  border-bottom: 1px solid rgba(245, 193, 0, .25);
  backdrop-filter: blur(12px)
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: var(--pad);
  gap: 1rem
}

.nav-logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
  flex-shrink: 0
}

.nav-logo-en {
  font-family: var(--f-h);
  font-weight: 900;
  font-size: 1.2rem;
  color: var(--c-red);
  letter-spacing: .05em;
  text-transform: uppercase
}

.nav-logo-ar {
  font-family: var(--f-ah);
  font-size: .75rem;
  color: rgba(255, 255, 255, .7)
}

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem
}

.nav-links a {
  padding: .35rem .6rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  border-radius: 6px;
  transition: var(--tr);
  white-space: nowrap
}

.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(245, 193, 0, .12)
}

.nav-links a.active {
  color: var(--c-red)
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .5rem;
  flex-shrink: 0
}

.lang-toggle {
  display: flex;
  align-items: center;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .15);
  border-radius: 50px;
  overflow: hidden;
  cursor: pointer;
  transition: var(--tr)
}

.lang-toggle:hover {
  border-color: var(--c-red)
}

.lang-btn {
  padding: .35rem .75rem;
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: .05em;
  color: rgba(255, 255, 255, .5);
  transition: var(--tr);
  border-radius: 50px;
  background: none;
  cursor: pointer
}

.lang-btn.active {
  background: var(--c-red);
  color: #fff
}

.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 36px;
  height: 36px;
  cursor: pointer;
  padding: 4px
}

.hamburger span {
  display: block;
  height: 2px;
  background: #fff;
  border-radius: 2px;
  transition: var(--tr)
}

.hamburger.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg)
}

.hamburger.open span:nth-child(2) {
  opacity: 0
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg)
}

/* Mobile Menu */
.mobile-menu {
  position: fixed;
  top: 0;
  right: -100%;
  width: min(340px, 88vw);
  height: 100vh;
  background: var(--c-dark2);
  z-index: 999;
  display: flex;
  flex-direction: column;
  padding: calc(var(--nav-h) + 2rem) 2rem 2rem;
  transition: right .4s cubic-bezier(.77, 0, .175, 1);
  border-left: 1px solid rgba(245, 193, 0, .25);
  box-shadow: -8px 0 40px rgba(0, 0, 0, .5);
  gap: .5rem
}

.mobile-menu.open {
  right: 0
}

html[dir="rtl"] .mobile-menu {
  right: auto;
  left: -100%;
  border-left: none;
  border-right: 1px solid rgba(245, 193, 0, .25)
}

html[dir="rtl"] .mobile-menu.open {
  left: 0
}

.mobile-menu a {
  display: block;
  padding: .875rem 1rem;
  font-size: 1rem;
  font-weight: 600;
  color: rgba(255, 255, 255, .85);
  border-bottom: 1px solid rgba(255, 255, 255, .06);
  border-radius: 6px;
  transition: var(--tr)
}

.mobile-menu a:hover {
  color: var(--c-red);
  background: rgba(245, 193, 0, .08);
  padding-inline-start: 1.5rem
}

.mobile-menu__cta {
  margin-top: 1.5rem
}

.mob-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, .7);
  z-index: 998;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s;
  backdrop-filter: blur(4px)
}

.mob-overlay.visible {
  opacity: 1;
  pointer-events: all
}

/* Hero */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--c-dark); }
.hero__bg { position: absolute; inset: 0; background-image: url('../images/about-us/WhatsApp%20Image%202026-03-11%20at%201.49.50%20AM.jpeg'); background-size: cover; background-position: top center; opacity: 0.6; transition: transform 8s ease; transform: scale(1.05); }
.hero__bg.loaded { transform: scale(1); }
.hero__ov { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,0.85), rgba(13,13,13,0.6) 50%, rgba(30,0,0,0.4)); }
.hero__cont { position: relative; z-index: 2; padding-top: var(--nav-h); width: 100%; }
.hero__badge { display: inline-flex; align-items: center; gap: 0.5rem; background: rgba(245,193,0,0.12); border: 1px solid rgba(245,193,0,0.4); border-radius: 50px; padding: 0.4rem 1rem; font-size: 0.8rem; font-weight: 600; color: var(--c-red); margin-bottom: 1.5rem; }
.hero__title { font-size: clamp(2.25rem, 6vw, 4.5rem); font-weight: 900; line-height: 1.05; margin-bottom: 1.25rem; letter-spacing: -0.03em; }
.hero__hl { color: var(--c-red); display: block; }
.hero__sub { font-size: clamp(1rem, 2vw, 1.2rem); color: rgba(255,255,255,0.75); max-width: 560px; margin-bottom: 2.5rem; line-height: 1.7; }
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; align-items: center; margin-bottom: 3rem; }
.hero__scroll { display: flex; align-items: center; gap: 0.75rem; color: rgba(255,255,255,0.4); font-size: 0.8rem; }
.hero__scroll-line { width: 40px; height: 1px; background: rgba(255,255,255,0.3); }

/* Stats Bar */
.stats-bar { background: var(--c-dark2); border-top: 1px solid rgba(245,193,0,0.3); border-bottom: 1px solid rgba(255,255,255,0.05); padding-block: 2.5rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); align-items: center; }
.stat-item { text-align: center; padding: 1rem 1.5rem; position: relative; }
.stat-item + .stat-item::before { content: ''; position: absolute; left: 0; top: 20%; height: 60%; width: 1px; background: rgba(255,255,255,0.1); }
.stat-num { font-family: var(--f-h); font-size: clamp(2rem, 5vw, 3rem); font-weight: 900; color: var(--c-red); line-height: 1; margin-bottom: 0.35rem; display: block; }
.stat-lbl { font-size: clamp(0.75rem, 1.5vw, 0.875rem); color: var(--c-gray); font-weight: 500; line-height: 1.4; max-width: 120px; margin-inline: auto; }

/* Cards & Icons */
.card { background: var(--c-dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); padding: 2rem; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); position: relative; overflow: hidden; }
.card:hover { transform: translateY(-8px); box-shadow: var(--sh-red); border-color: rgba(245,193,0,0.4); }
.icon-box { width: 56px; height: 56px; display: flex; align-items: center; justify-content: center; background: rgba(245,193,0,0.12); border: 1px solid rgba(245,193,0,0.2); border-radius: var(--r); font-size: 1.4rem; color: var(--c-red); margin-bottom: 1.25rem; flex-shrink: 0; transition: var(--tr); }
.card:hover .icon-box { background: rgba(245,193,0,0.2); box-shadow: var(--sh-red-sm); }
.icon-box--lg { width: 72px; height: 72px; font-size: 1.8rem; }
.icon-box--c { margin-inline: auto; }

/* Grids */
.g2 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.g3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.g4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.g5 { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.parts-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.25rem; }
.feat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.25rem; }

/* Red Divider */
.red-div { width: 80px; height: 3px; background: linear-gradient(90deg, var(--c-red), transparent); margin-block: 1.5rem; border-radius: 2px; }
.red-div--c { margin-inline: auto; background: linear-gradient(90deg, transparent, var(--c-red), transparent); }

/* Biz Cards */
.biz-cards { display: grid; grid-template-columns: 3fr 2fr; gap: 1.5rem; }
.biz-card { position: relative; padding: 2.5rem; border-radius: var(--r-lg); overflow: hidden; border: 1px solid rgba(255,255,255,0.06); transition: var(--tr); display: block; }
.biz-card--p { background: linear-gradient(135deg, #0D1000 0%, var(--c-dark2) 100%); border-color: rgba(245,193,0,0.25); }
.biz-card--s { background: var(--c-dark3); }
.biz-card:hover { transform: translateY(-6px); box-shadow: var(--sh-red); border-color: rgba(245,193,0,0.5); }
.biz-card__tag { display: inline-block; padding: 0.25rem 0.75rem; background: var(--c-red); color: #fff; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border-radius: 50px; margin-bottom: 1rem; }
.biz-card__decor { position: absolute; bottom: -20px; right: -20px; font-size: 8rem; color: rgba(204,0,0,0.05); pointer-events: none; transition: var(--tr); }
.biz-card h3 { font-size: clamp(1.4rem, 3vw, 2rem); font-weight: 900; margin-bottom: 0.75rem; }
.biz-card p { color: var(--c-gray); font-size: 0.95rem; line-height: 1.7; margin-bottom: 1.5rem; }

/* Parts Card */
.part-card { background: var(--c-dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg); padding: 1.75rem 1.25rem; text-align: center; transition: transform var(--tr), box-shadow var(--tr), border-color var(--tr); cursor: pointer; }
.part-card:hover { transform: translateY(-6px); box-shadow: var(--sh-red); border-color: rgba(245,193,0,0.5); }
.part-icon { width: 60px; height: 60px; display: flex; align-items: center; justify-content: center; background: rgba(245,193,0,0.1); border-radius: 50%; margin: 0 auto 1rem; font-size: 1.6rem; color: var(--c-red); transition: var(--tr); border: 1px solid rgba(245,193,0,0.2); }
.part-card:hover .part-icon { background: rgba(245,193,0,0.2); box-shadow: 0 0 16px rgba(245,193,0,0.3); }
.part-card h4 { font-size: 0.875rem; font-weight: 700; line-height: 1.4; }
.part-card .part-ar { font-size: 0.78rem; font-family: var(--f-ab); color: var(--c-gray); margin-top: 0.25rem; }

/* Feature Items */
.feat-item { text-align: center; padding: 2rem 1.25rem; background: var(--c-dark2); border: 1px solid rgba(255,255,255,0.06); border-radius: var(--r-lg); transition: var(--tr); }
.feat-item:hover { transform: translateY(-6px); border-color: rgba(245,193,0,0.3); box-shadow: var(--sh-red-sm); }
.feat-item h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 0.5rem; }
.feat-item p { font-size: 0.875rem; color: var(--c-gray); line-height: 1.6; }

/* Testimonials */
.testi-card { background: var(--c-dark2); border: 1px solid rgba(255,255,255,0.07); border-radius: var(--r-lg); padding: 2rem; transition: var(--tr); }
.testi-card:hover { transform: translateY(-6px); border-color: rgba(245,193,0,0.3); box-shadow: var(--sh-red-sm); }
.testi-quote { font-size: 3rem; color: var(--c-red); line-height: 1; font-family: Georgia, serif; margin-bottom: 0.5rem; opacity: 0.6; }
.testi-text { font-size: 0.95rem; color: var(--c-gray-l); line-height: 1.7; margin-bottom: 1.5rem; font-style: italic; }
.testi-stars { color: var(--c-gold); font-size: 0.875rem; margin-bottom: 1rem; letter-spacing: 2px; }
.testi-author { display: flex; align-items: center; gap: 0.875rem; border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1rem; }
.testi-avatar { width: 44px; height: 44px; border-radius: 50%; background: linear-gradient(135deg, var(--c-red), var(--c-red-dk)); display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 1rem; flex-shrink: 0; }
.testi-author strong { display: block; font-size: 0.9rem; font-weight: 700; }
.testi-author span { font-size: 0.8rem; color: var(--c-gray); }

/* Real Review (FSH_Melon) */
.testi-card--featured { max-width: 820px; margin-inline: auto; border-color: rgba(245,193,0,0.25); background: linear-gradient(135deg, #1a1a00, var(--c-dark2)); }
.testi-top-bar { display: flex; align-items: center; gap: 1rem; margin-bottom: 1rem; }
.testi-avatar--lg { width: 56px; height: 56px; font-size: 1.4rem; flex-shrink: 0; background: linear-gradient(135deg, #F5C100, #D4A800); color: #000; }
.testi-meta { display: flex; flex-direction: column; gap: 0.1rem; }
.testi-meta strong { font-size: 1rem; }
.testi-meta span { font-size: 0.8rem; color: var(--c-gray); }
.testi-platform { font-size: 0.75rem; color: var(--c-gray); display: flex; align-items: center; gap: 0.3rem; margin-top: 0.1rem; }
.testi-platform i { color: #EA4335; }
.testi-time { font-size: 0.82rem; color: var(--c-gray); display: flex; align-items: center; gap: 0.4rem; margin-bottom: 0.75rem; }
.testi-headline { font-size: 1.05rem; margin-bottom: 0.85rem; color: var(--c-red); font-weight: 700; }

/* CTA Banner */
.cta-banner { background: linear-gradient(135deg, var(--c-red) 0%, #990000 100%); padding: 4rem 0; text-align: center; position: relative; overflow: hidden; }
.cta-banner h2 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 900; margin-bottom: 1rem; color: #fff; }
.cta-banner p { font-size: 1.1rem; color: rgba(255,255,255,0.85); margin-bottom: 2rem; }
.cta-btns { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }

/* Footer */
.footer { background: #080808; padding-block: 4rem 1.5rem; border-top: 1px solid rgba(245,193,0,0.2); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 2fr; gap: 3rem; margin-bottom: 3rem; }
.footer-logo-en { font-family: var(--f-h); font-size: 1.5rem; font-weight: 900; color: var(--c-red); letter-spacing: 0.05em; text-transform: uppercase; display: block; margin-bottom: 0.25rem; }
.footer-logo-ar { font-family: var(--f-ah); font-size: 0.9rem; color: rgba(255,255,255,0.5); }
.footer-tagline { font-size: 0.875rem; color: var(--c-gray); line-height: 1.7; margin: 1rem 0 1.5rem; }
.footer-social { display: flex; gap: 0.75rem; }
.footer-social a { width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.1); border-radius: 8px; color: var(--c-gray); transition: var(--tr); font-size: 0.9rem; }
.footer-social a:hover { background: var(--c-red); border-color: var(--c-red); color: #fff; transform: translateY(-3px); }
.foot-h { font-size: 0.85rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.25rem; }
.foot-links { display: flex; flex-direction: column; gap: 0.625rem; }
.foot-links a { font-size: 0.875rem; color: var(--c-gray); transition: var(--tr); }
.foot-links a:hover { color: var(--c-red); padding-inline-start: 0.5rem; }
.foot-contact-i { display: flex; align-items: flex-start; gap: 0.75rem; margin-bottom: 1rem; font-size: 0.875rem; color: var(--c-gray); }
.foot-contact-i i { color: var(--c-red); margin-top: 3px; flex-shrink: 0; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding-top: 1.5rem; display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-copy { font-size: 0.8rem; color: var(--c-gray); }

/* Utilities & Scroll Reveal */
[data-reveal] { opacity: 0; transform: translateY(30px); transition: opacity 0.7s ease, transform 0.7s ease; }
[data-reveal].revealed { opacity: 1; transform: translateY(0); }
[data-stagger] > * { opacity: 0; transform: translateY(24px); transition: opacity 0.5s ease, transform 0.5s ease; }
[data-stagger].staggered > * { opacity: 1; transform: none; }
[data-stagger].staggered > *:nth-child(1) { transition-delay: 0.1s; }
[data-stagger].staggered > *:nth-child(2) { transition-delay: 0.2s; }
[data-stagger].staggered > *:nth-child(3) { transition-delay: 0.3s; }
[data-stagger].staggered > *:nth-child(4) { transition-delay: 0.4s; }

/* Mobile Utilities */
@media (max-width: 900px) {
  .hero__title { font-size: 2.5rem; }
  .biz-cards { grid-template-columns: 1fr; }
  .nav-links, .nav-actions .btn { display: none !important; }
  .hamburger { display: flex; }
}
@media (max-width: 768px) {
  .g2, .g3, .g4, .g5, .stats-grid, .testi-grid, .trust-grid, .footer-grid, .contact-lay, .hours-table { grid-template-columns: 1fr !important; }
  .parts-grid, .parts-mini { grid-template-columns: repeat(2, 1fr) !important; }
  .feat-grid, .feat-grid--5 { grid-template-columns: repeat(2, 1fr) !important; }
  .hero__ctas { flex-direction: column; width: 100%; }
  .hero__ctas .btn { width: 100%; justify-content: center; }
  .biz-card { padding: 1.5rem; }
  .card { padding: 1.5rem; }
}

/* Gallery Layout */
.gallery-loader { text-align: center; padding: 4rem 1rem; color: var(--c-gray); }
.gallery-empty { text-align: center; padding: 4rem 1rem; border: 1px dashed rgba(255, 255, 255, .2); border-radius: var(--r); color: var(--c-gray); max-width: 600px; margin: 0 auto; }
.gallery-empty-cat { text-align: center; padding: 3rem 1rem; color: var(--c-gray); grid-column: 1 / -1; }
.gallery-tabs { display: flex; flex-wrap: wrap; gap: 0.5rem; justify-content: center; margin-bottom: 0.75rem; }
.gallery-slideshow-bar { width: 100%; height: 3px; background: rgba(255, 255, 255, .08); border-radius: 3px; margin-bottom: 2rem; overflow: hidden; }
.gallery-slideshow-progress { height: 100%; width: 0%; background: var(--c-red); border-radius: 3px; }
.gallery-tab { background: rgba(255, 255, 255, .05); border: 1px solid rgba(255, 255, 255, .1); color: rgba(255, 255, 255, .8); padding: 0.6rem 1.25rem; border-radius: 30px; font-family: inherit; font-size: 0.9rem; font-weight: 500; cursor: pointer; transition: all 0.3s; display: flex; align-items: center; gap: 0.5rem; }
.gallery-tab:hover { background: rgba(255, 255, 255, .1); color: #fff; }
.gallery-tab.active { background: var(--c-red); border-color: var(--c-red); color: #000; font-weight: 700; }
.gallery-tab-count { background: rgba(0, 0, 0, .2); padding: 0.1rem 0.5rem; border-radius: 10px; font-size: 0.75rem; }
.gallery-tab.active .gallery-tab-count { background: rgba(0, 0, 0, .15); color: #000; }

.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1rem; }
.gallery-item { position: relative; border-radius: var(--r); overflow: hidden; aspect-ratio: 4/3; cursor: pointer; opacity: 0; transform: translateY(20px); transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.5s; }
.gallery-item.visible { opacity: 1; transform: translateY(0); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s; }
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(0, 0, 0, .5); display: flex; align-items: center; justify-content: center; opacity: 0; transition: opacity 0.3s; font-size: 2rem; color: #fff; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }

.gallery-lightbox { position: fixed; inset: 0; background: rgba(0, 0, 0, .95); z-index: 2000; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: opacity 0.3s, visibility 0.3s; backdrop-filter: blur(5px); }
.gallery-lightbox.open { opacity: 1; visibility: visible; touch-action: none; }
.lb-content { position: relative; max-width: 90%; max-height: 85vh; display: flex; flex-direction: column; }
.lb-img { max-width: 100%; max-height: calc(85vh - 50px); object-fit: contain; border-radius: 4px; box-shadow: 0 10px 40px rgba(0, 0, 0, .5); }
.lb-caption { color: #fff; text-align: center; margin-top: 1rem; font-size: 0.95rem; font-weight: 500; padding: 0 1rem; }
.lb-close { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: #fff; font-size: 2rem; cursor: pointer; z-index: 2001; opacity: 0.7; transition: opacity 0.2s; }
.lb-close:hover { opacity: 1; }
.lb-prev, .lb-next { position: absolute; top: 50%; transform: translateY(-50%); background: rgba(255, 255, 255, .1); border: none; color: #fff; font-size: 1.5rem; width: 50px; height: 50px; border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 2001; transition: background 0.2s, transform 0.2s; }
.lb-prev:hover, .lb-next:hover { background: var(--c-red); color: #000; transform: translateY(-50%) scale(1.1); }
.lb-prev { left: 1rem; } .lb-next { right: 1rem; }
@media (max-width: 768px) { .lb-prev, .lb-next { display: none; } .lb-close { top: 1rem; right: 1rem; } }

/* Premium Cards */
.premium-card {
  background: linear-gradient(135deg, var(--c-red) 0%, #D4A800 100%);
  border-color: transparent !important;
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(245, 193, 0, 0.25);
  color: #000 !important;
}
.premium-card i.fa-solid {
  color: #000 !important;
}
.premium-card div {
  color: #000 !important;
  text-shadow: none;
}
.premium-card div:last-child {
  opacity: 0.85;
  color: #222 !important;
  font-weight: 600;
}
.premium-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 12px 32px rgba(245, 193, 0, 0.4);
  background: linear-gradient(135deg, #FFD700 0%, var(--c-red) 100%);
  border-color: transparent !important;
}

/* About Us Gallery */
.about-gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  margin-top: 1rem;
  margin-bottom: 3.5rem;
}
@media (max-width: 900px) {
  .about-gallery {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 500px) {
  .about-gallery {
    grid-template-columns: 1fr;
  }
}
.about-gallery img {
  width: 100%;
  height: 280px;
  object-fit: cover;
  border-radius: var(--r-lg);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.about-gallery img:hover {
  transform: scale(1.03);
  border-color: rgba(245, 193, 0, 0.3);
}
