/* ============================================================
   MEEDAN — Main Stylesheet
   Design: Modern dark premium, using Meedan logo colors
   Path: public/css/app.css
   ============================================================ */

/* ============================================================
   CSS VARIABLES
   ============================================================ */
:root {
  --black:       #050505;
  --dark:        #0d0d0d;
  --dark-2:      #151515;
  --dark-3:      #202020;
  --dark-4:      #2d2d2d;

  --red:         #dd1f27;
  --red-light:   #ff2d4a;
  --red-dark:    #9f1118bb;

  --gold:        #dd1f27;
  --gold-light:  #3a2f30;
  --gold-dark:   #9f1118bb;

  --white:       #ffffff;
  --off-white:   #f4f4f1;
  --gray:        #747672;
  --gray-light:  #d8d8d6;
  --muted:       #a5a5a2;

  --font-heading: 'Oswald', sans-serif;
  --font-body:    'Open Sans', sans-serif;

  --transition: all 0.3s ease;
  --shadow: 0 12px 40px rgba(0,0,0,0.45);
  --shadow-red: 0 0 24px rgba(237,28,36,0.22);
  --shadow-gold: 0 0 24px rgba(237,28,36,0.22);

  --radius: 3px;
}

html[dir="rtl"] {
  --font-heading: 'Tajawal', sans-serif;
  --font-body: 'Tajawal', sans-serif;
}
html[dir="rtl"] h1,
html[dir="rtl"] h2,
html[dir="rtl"] h3,
html[dir="rtl"] h4,
html[dir="rtl"] h5,
html[dir="rtl"] h6,
html[dir="rtl"] .section-label,
html[dir="rtl"] .hero-eyebrow span,
html[dir="rtl"] .page-hero-label,
html[dir="rtl"] .footer-tagline {
  letter-spacing: 0;
}
/* ============================================================
   RESET
   ============================================================ */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--black);
  color: var(--gray-light);
  font-size: 16px;
  line-height: 1.7;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: var(--red);
  text-decoration: none;
  transition: var(--transition);
}

a:hover {
  color: var(--red-light);
}

ul {
  list-style: none;
}

button,
input,
textarea,
select {
  font-family: inherit;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.15;
}

/* ============================================================
   CONTAINER
   ============================================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
  background: var(--black);
  border-bottom: 1px solid rgba(237,28,36,0.22);
  padding: 8px 0;
  font-size: 12px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.topbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.topbar-left,
.topbar-right {
  display: flex;
  gap: 24px;
  align-items: center;
}

.topbar span,
.topbar a {
  color: var(--muted);
  font-size: 11px;
}

.topbar a:hover {
  color: var(--red);
}

.topbar i {
  margin-right: 6px;
  color: var(--red);
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  background: rgba(5,5,5,0.97);
  border-bottom: 2px solid #ff2d4a78;
  position: sticky;
  top: 0;
  z-index: 1000;
  transition: var(--transition);
  backdrop-filter: blur(16px);
}

.navbar.scrolled {
  background: rgba(5,5,5,0.99);
  box-shadow: var(--shadow);
}

.nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.nav-logo {
  display: flex;
  align-items: center;
}

.nav-logo img {
  height: 69px;
  width: auto;
}

.logo-text {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2em;
}

.logo-text span {
  color: var(--red);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-menu > li {
  position: relative;
}

.nav-menu > li > a {
  display: block;
  padding: 9px 14px;
  color: var(--gray-light);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: var(--transition);
  border-bottom: 2px solid transparent;
}

.nav-menu > li > a:hover,
.nav-menu > li > a.active {
  color: var(--red);
  border-bottom-color: #ff2d4a78;
}

/* ── Nav CTA — shooting-position style ── */
.nav-cta {
  background: var(--red) !important;
  color: var(--white) !important;
  padding: 9px 28px !important;
  font-weight: 600 !important;
  border-bottom: none !important;
  position: relative !important;
  clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%) !important;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.3), 4px 4px 0 rgba(159,17,23,0.6) !important;
  transition: all 0.22s ease !important;
}

.nav-cta::before,
.nav-cta::after {
  content: '' !important;
  position: absolute !important;
  width: 8px !important;
  height: 8px !important;
  transition: all 0.22s ease !important;
}

.nav-cta::before {
  top: 4px !important;
  left: 14px !important;
  border-top: 2px solid rgba(255,255,255,0.7) !important;
  border-left: 2px solid rgba(255,255,255,0.7) !important;
}

.nav-cta::after {
  bottom: 4px !important;
  right: 14px !important;
  border-bottom: 2px solid rgba(255,255,255,0.7) !important;
  border-right: 2px solid rgba(255,255,255,0.7) !important;
}

.nav-cta:hover {
  background: var(--red-light) !important;
  color: var(--white) !important;
  transform: translate(-2px, -2px) !important;
  box-shadow: inset 0 -3px 0 rgba(0,0,0,0.2), 6px 6px 0 rgba(159,17,23,0.8) !important;
}

.nav-cta:hover::before,
.nav-cta:hover::after {
  width: 11px !important;
  height: 11px !important;
  opacity: 1 !important;
}

/* Dropdown */
.has-dropdown {
  position: relative;
}

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  background: var(--dark-2);
  border: 1px solid var(--red-dark);
  border-top: 2px solid var(--red);
  min-width: 270px;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: var(--transition);
  z-index: 100;
  box-shadow: var(--shadow);
}

.has-dropdown:hover .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.dropdown li a {
  display: block;
  padding: 11px 20px;
  color: var(--gray-light);
  font-size: 13px;
  font-family: var(--font-heading);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}

.dropdown li a:hover {
  background: var(--dark-3);
  color: var(--red);
  padding-left: 26px;
}

/* Mobile Toggle */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 27px;
  height: 2px;
  background: var(--red);
  transition: var(--transition);
}

/* ============================================================
   BUTTONS — SHOOTING POSITION STYLE
   ============================================================
   Design language:
   · Angled parallelogram via clip-path on ALL variants
   · Outline buttons use padding-box/border-box background
     trick so the border survives the clip-path cut
   · Hard offset box-shadow = tactical depth
   · Crosshair corner brackets via ::before / ::after
   · Hover: translate(-2px,-2px) + extended shadow (recoil)
   · Active: translate(4px,4px) + shadow collapse (trigger pull)
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 44px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  position: relative;
  transition: all 0.2s ease;
  clip-path: polygon(14px 0%, 100% 0%, calc(100% - 14px) 100%, 0% 100%);
  outline: none;
  text-decoration: none;
}

/* Crosshair top-left bracket */
.btn::before {
  content: '';
  position: absolute;
  top: 6px;
  left: 17px;
  width: 11px;
  height: 11px;
  border-top: 2px solid;
  border-left: 2px solid;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
}

/* Crosshair bottom-right bracket */
.btn::after {
  content: '';
  position: absolute;
  bottom: 6px;
  right: 17px;
  width: 11px;
  height: 11px;
  border-bottom: 2px solid;
  border-right: 2px solid;
  pointer-events: none;
  transition: all 0.2s ease;
  z-index: 2;
}

.btn:hover::before,
.btn:hover::after {
  width: 16px;
  height: 16px;
}

/* Trigger-pull active press */
.btn:active {
  transform: translate(4px, 4px) !important;
  box-shadow: none !important;
  transition: all 0.06s ease !important;
}

/* ── Primary: btn-red / btn-gold ── */
.btn-red,
.btn-gold {
  background: var(--red);
  color: var(--white);
  box-shadow: 5px 5px 0 var(--red-dark);
}

.btn-red::before, .btn-red::after,
.btn-gold::before, .btn-gold::after {
  border-color: rgba(255,255,255,0.7);
}

.btn-red:hover,
.btn-gold:hover {
  background: var(--red-light);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 var(--red-dark);
}

/* ── White outline ──
   padding-box/border-box keeps the border visible through clip-path */
.btn-outline {
  color: var(--white);
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(var(--white), var(--white)) border-box;
  border: 2px solid transparent;
  box-shadow: 4px 4px 0 rgba(255,255,255,0.15);
}

.btn-outline::before,
.btn-outline::after {
  border-color: rgba(255,255,255,0.75);
}

.btn-outline:hover {
  background: var(--white);
  color: var(--black);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(255,255,255,0.2);
}

.btn-outline:hover::before,
.btn-outline:hover::after {
  border-color: var(--black);
}

/* ── Red/gold outline ──
   Same padding-box/border-box trick for angled outline */
.btn-outline-red,
.btn-outline-gold {
  color: var(--red);
  background:
    linear-gradient(var(--black), var(--black)) padding-box,
    linear-gradient(var(--red), var(--red)) border-box;
  border: 2px solid transparent;
  box-shadow: 4px 4px 0 var(--red-dark);
}

.btn-outline-red::before, .btn-outline-red::after,
.btn-outline-gold::before, .btn-outline-gold::after {
  border-color: var(--red);
}

.btn-outline-red:hover,
.btn-outline-gold:hover {
  background: var(--red);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 var(--red-dark);
}

.btn-outline-red:hover::before, .btn-outline-red:hover::after,
.btn-outline-gold:hover::before, .btn-outline-gold:hover::after {
  border-color: var(--white);
}

/* ── Dark button (used on callout band) ── */
.btn-dark {
  background: var(--black);
  color: var(--white);
  box-shadow: 5px 5px 0 rgba(0,0,0,0.8);
}

.btn-dark::before,
.btn-dark::after {
  border-color: var(--red);
}

.btn-dark:hover {
  background: var(--dark-3);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 7px 7px 0 rgba(0,0,0,0.9);
}

/* ============================================================
   SECTION STYLES
   ============================================================ */
.section {
  padding: 100px 0;
}

.section-sm {
  padding: 60px 0;
}

.section-dark {
  background: var(--dark);
}

.section-darker {
  background: var(--black);
}

.section-dark-2 {
  background: var(--dark-2);
}

.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 1px solid var(--red);
}

.section-title {
  font-size: clamp(28px, 4vw, 50px);
  color: var(--white);
  margin-bottom: 20px;
}

.section-sub {
  font-size: 16px;
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  line-height: 1.8;
}

.gold-rule,
.red-rule {
  width: 64px;
  height: 3px;
  background: var(--red);
  margin: 20px auto;
}

/* ============================================================
   HOME HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: calc(100vh - 118px);
  display: flex;
  align-items: center;
  background: var(--black);
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(5,5,5,1) 0%, rgba(20,20,20,1) 48%, rgba(8,8,8,1) 100%);
  z-index: 0;
}

.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 75% 45%, rgba(237,28,36,0.16) 0%, transparent 58%),
    linear-gradient(to right, rgba(0,0,0,0.85) 0%, rgba(0,0,0,0.35) 100%);
}

.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(237,28,36,0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(237,28,36,0.045) 1px, transparent 1px);
  background-size: 60px 60px;
  z-index: 1;
}

.hero {
position: relative;
overflow: hidden;
}

.hero-video {
position: absolute;
inset: 0;
width: 100%;
height: 100%;
object-fit: cover;
object-position: center center;
z-index: 0;
}

.hero-bg {
position: absolute;
inset: 0;
background: transparent !important;
z-index: 1;
}

.hero-bg::after {
content: '';
position: absolute;
inset: 0;
background:
linear-gradient(to right, rgba(0,0,0,0.88) 0%, rgba(0,0,0,0.58) 45%, rgba(0,0,0,0.28) 100%),
radial-gradient(ellipse at 75% 45%, rgba(237,28,36,0.18) 0%, transparent 60%);
}

.hero-grid-overlay {
z-index: 2;
}

.hero-accent {
z-index: 2;
}

.hero-content {
position: relative;
z-index: 3;
}

.hero-scroll {
z-index: 4;
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 760px;
  padding-top: 20px;
}

.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 24px;
}

.hero-eyebrow::before {
  content: '';
  width: 44px;
  height: 2px;
  background: var(--gold-dark);
}

.hero-eyebrow span {
  font-family: var(--font-heading);
  font-size: 13px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--white);
  background-color: var(--gold);
  padding: 0 4px;
  border-radius: 3px;
}

.hero h1 {
  font-size: clamp(46px, 6vw, 50px);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}

.hero h1 .gold,
.hero h1 .red {
  color: var(--red);
}

.hero-tagline {
  font-family: var(--font-heading);
  font-size: clamp(16px, 2vw, 22px);
  font-weight: 300;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-desc {
  font-size: 17px;
  color: var(--gray-light);
  max-width: 560px;
  margin-bottom: 40px;
  line-height: 1.8;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 60px;
}

.hero-stats {
    position: relative;
  bottom: 59px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
  padding-top: 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}

.hero-stat-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 700;
  color: var(--off-white);
  line-height: 1;
  text-align: center;
}

.hero-stat-label {
  font-size: 12px;
  color: #fff;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-accent {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 42%;
  z-index: 2;
  background: linear-gradient(to left, rgba(237,28,36,0.09) 0%, transparent 100%);
  border-left: 1px solid rgba(237,28,36,0.12);
}

.hero-scroll {
  position: absolute;
  bottom: 5px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  animation: bounce 2s infinite;
}

.hero-scroll i {
  color: var(--red);
  font-size: 18px;
}

@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50%       { transform: translateX(-50%) translateY(8px); }
}

/* ============================================================
   PAGE HERO
   ============================================================ */
.page-hero {
  position: relative;
  min-height: 430px;
  background: linear-gradient(135deg, var(--black) 0%, var(--dark-3) 100%);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right, rgba(0,0,0,0.9) 30%, rgba(0,0,0,0.35)),
    radial-gradient(ellipse at 80% 30%, rgba(237,28,36,0.16), transparent 55%);
  z-index: 1;
}

.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(35%);
  z-index: 0;
}

.page-hero-content {
  position: relative;
  z-index: 2;
}

.page-hero-label {
  font-family: var(--font-heading);
  font-size: 11px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 12px;
}

.page-hero h1 {
  font-size: clamp(38px, 5vw, 66px);
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 16px;
}

.page-hero p {
  font-size: 18px;
  color: var(--gray-light);
  max-width: 560px;
}

.breadcrumb {
  display: flex;
  gap: 8px;
  align-items: center;
  margin-top: 24px;
  font-size: 12px;
  letter-spacing: 0.05em;
}

.breadcrumb a  { color: var(--red); }
.breadcrumb span { color: var(--gray); }

/* ============================================================
   INTRO STRIP
   ============================================================ */
.intro-strip {
  background: var(--white);
  padding: 20px 0;
}

.intro-strip .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.intro-strip p {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--red);
}

/* Strip button: dark on red background */
.intro-strip .btn {
  background: var(--black);
  color: var(--red);
  padding: 10px 30px;
  font-size: 13px;
  box-shadow: 4px 4px 0 rgba(0,0,0,0.6);
}

.intro-strip .btn::before,
.intro-strip .btn::after {
  border-color: var(--red);
}

.intro-strip .btn:hover {
  background: var(--dark-3);
  color: var(--white);
  transform: translate(-2px, -2px);
  box-shadow: 6px 6px 0 rgba(0,0,0,0.7);
}

/* ============================================================
   FACILITY CARDS
   ============================================================ */
.facility-card {
  background: var(--dark-2);
  border: 1px solid rgba(237,28,36,0.16);
  border-top: 3px solid rgba(255, 45, 74, 0.47);
  padding: 36px 28px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.facility-card::before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 0;
  background: linear-gradient(to top, rgba(237,28,36,0.08), transparent);
  transition: var(--transition);
}

.facility-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-red);
}

.facility-card:hover::before {
  height: 100%;
}

.facility-icon {
  width: 62px;
  height: 62px;
  border: 2px solid var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  font-size: 24px;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.facility-card h3 {
  font-size: 18px;
  margin-bottom: 12px;
  color: var(--white);
  position: relative;
  z-index: 1;
}

.facility-card p {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.7;
  position: relative;
  z-index: 1;
}

.facility-card .card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  margin-top: 18px;
  font-size: 12px;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--red);
  position: relative;
  z-index: 1;
}

.facility-card .card-link i {
  transition: var(--transition);
}

.facility-card:hover .card-link i {
  transform: translateX(4px);
}

/* ============================================================
   GRID LAYOUTS
   ============================================================ */
.grid-2    { display: grid; grid-template-columns: repeat(2, 1fr); gap: 32px; }
.grid-3    { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.grid-4    { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.grid-auto { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 28px; }

/* ============================================================
   SPLIT SECTION
   ============================================================ */
.split-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
}

.split-img {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  background: var(--dark-3);
}

.split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(20%);
  transition: var(--transition);
}

.split-img:hover img {
  transform: scale(1.04);
  filter: grayscale(0%);
}

.split-img .img-placeholder {
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, var(--dark-3) 0%, var(--dark-4) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 80px;
  color: rgba(237,28,36,0.22);
}

.split-content {
  padding: 80px 60px;
  display: flex;
  flex-direction: column;
}

/* ============================================================
   STATS
   ============================================================ */
.stats-bar {
  background: var(--dark-2);
  border-top: 2px solid var(--red);
  border-bottom: 2px solid rgba(237,28,36,0.18);
  padding: 48px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 10%;
  bottom: 10%;
  width: 1px;
  background: rgba(237,28,36,0.2);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 52px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  display: block;
}

.stat-label {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gray);
  margin-top: 8px;
  display: block;
}

/* ============================================================
   CALLOUT BAND
   ============================================================ */
.callout-band {
  background: #fff;
  padding: 80px 0;
  text-align: center;
}

.callout-band h2 {
  font-size: clamp(28px, 4vw, 50px);
  color: var(--red);
  margin-bottom: 16px;
}

.callout-band p {
  font-size: 18px;
  color: var(--red);
  max-width: 660px;
  margin: 0 auto 32px;
}

/* ============================================================
   PROGRAM CARDS
   ============================================================ */
.program-card {
  border: 1px solid rgba(237,28,36,0.18);
  background: var(--dark-2);
  padding: 0;
  overflow: hidden;
  transition: var(--transition);
}

.program-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.program-card-header {
  background: var(--dark-3);
  padding: 24px 28px;
  border-bottom: 2px solid #ff2d4a78;
  display: flex;
  align-items: center;
  gap: 16px;
}

.program-card-header i {
  font-size: 28px;
  color: var(--red);
}

.program-card-header h3 {
  font-size: 16px;
  color: var(--white);
}

.program-card-body {
  padding: 24px 28px;
}

.program-card-body ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.program-card-body ul li {
  color: var(--gray-light);
  font-size: 14px;
  padding-left: 16px;
  position: relative;
}

.program-card-body ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--red);
}

/* ============================================================
   EVENT CARDS
   ============================================================ */
.event-card {
  background: var(--dark-2);
  border: 1px solid rgba(237,28,36,0.16);
  overflow: hidden;
  transition: var(--transition);
}

.event-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-red);
}

.event-card-img {
  height: 210px;
  background: var(--dark-3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 60px;
  color: rgba(237,28,36,0.28);
  border-bottom: 2px solid var(--red);
  overflow: hidden;
}

.event-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.event-card-body {
  padding: 24px;
}

.event-tag {
  display: inline-block;
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 10px;
  margin-bottom: 10px;
}

.event-card-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.event-card-body p {
  font-size: 13px;
  color: var(--muted);
}

/* ============================================================
   MEMBERSHIP CARDS
   ============================================================ */
.membership-card {
  background: var(--dark-2);
  border: 1px solid rgba(237,28,36,0.18);
  padding: 40px 32px;
  text-align: center;
  transition: var(--transition);
  position: relative;
}

.membership-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.membership-card.featured {
  border-color: var(--red);
  border-width: 2px;
  transform: scale(1.04);
  z-index: 1;
}

.membership-card.featured::before {
  content: 'FEATURED';
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--red);
  color: var(--white);
  font-size: 10px;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  padding: 4px 16px;
}

.membership-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.membership-price {
  font-family: var(--font-heading);
  font-size: 42px;
  font-weight: 700;
  color: var(--red);
  line-height: 1;
  margin: 16px 0;
}

.membership-price span {
  font-size: 14px;
  color: var(--gray);
  font-weight: 300;
}

.membership-card ul {
  text-align: left;
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.membership-card ul li {
  font-size: 14px;
  color: var(--gray-light);
  padding-left: 20px;
  position: relative;
}

.membership-card ul li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--red);
  font-weight: bold;
}

/* ============================================================
   CONTACT FORM
   ============================================================ */
.contact-form {
  max-width: 760px;
  margin: 0 auto;
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--red);
  margin-bottom: 8px;
  font-family: var(--font-heading);
}

input,
select,
textarea {
  width: 100%;
  background: var(--dark-2);
  border: 1px solid rgba(237,28,36,0.32);
  border-radius: var(--radius);
  padding: 14px 16px;
  color: var(--white);
  font-family: var(--font-body);
  font-size: 14px;
  transition: var(--transition);
  outline: none;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--red);
  background: var(--dark-3);
  box-shadow: 0 0 0 3px rgba(237,28,36,0.12);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

select option {
  background: var(--dark-2);
}

.alert-success {
  background: rgba(237,28,36,0.12);
  border: 1px solid var(--red);
  color: var(--red-light);
  padding: 16px 20px;
  margin-bottom: 24px;
  font-size: 14px;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--black);
}

.footer-top {
  padding: 80px 0 60px;
  border-top: 2px solid var(--red);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 48px;
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 32px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.2em;
  margin-bottom: 8px;
}

.footer-brand img.footer-logo,
.footer-logo-img {
  height: 58px;
  width: auto;
  margin-bottom: 16px;
}

.footer-tagline {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.25em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 16px;
}

.footer-brand p {
  font-size: 14px;
  color: var(--white);
  line-height: 1.8;
  margin-bottom: 24px;
}

.footer-social {
  display: flex;
  gap: 12px;
}

.footer-social a {
  width: 36px;
  height: 36px;
  border: 1px solid rgba(237,28,36,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gray);
  font-size: 14px;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--red);
  color: var(--white);
  border-color: var(--red);
}

.footer-links h4,
.footer-contact h4 {
  font-size: 14px;
  letter-spacing: 0.2em;
  color: var(--red);
  text-transform: uppercase;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 1px solid rgba(237,28,36,0.22);
}

.footer-links ul li,
.footer-contact ul li {
  font-size: 14px;
  color: var(--white);
  padding: 6px 0;
  border-bottom: 1px solid rgba(255,255,255,0.04);
}

.footer-links ul li a {
  color: var(--white);
}

.footer-links ul li a:hover {
  color: var(--red);
  padding-left: 8px;
}

.footer-contact ul li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-contact ul li i {
  color: var(--red);
  margin-top: 3px;
  min-width: 14px;
}

.mt-4 { margin-top: 16px; }

.footer-bottom {
  padding: 20px 0;
  border-top: 1px solid rgba(255,255,255,0.05);
}

.footer-bottom .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--gray);
}

.footer-bottom-links {
  display: flex;
  gap: 20px;
}

.footer-bottom-links a {
  font-size: 12px;
  color: var(--gray);
}

.footer-bottom-links a:hover {
  color: var(--red);
}

/* ============================================================
   BACK TO TOP
   ============================================================ */
.back-to-top {
  position: fixed;
  bottom: 28px;
  right: 28px;
  width: 44px;
  height: 44px;
  background: var(--red);
  color: var(--white);
  border: none;
  cursor: pointer;
  font-size: 16px;
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 999;
  transition: var(--transition);
  /* Shooting style: clipped parallelogram */
  clip-path: polygon(8px 0%, 100% 0%, calc(100% - 8px) 100%, 0% 100%);
}

.back-to-top:hover {
  background: var(--red-light);
  transform: translate(-2px, -2px);
  box-shadow: 4px 4px 0 var(--red-dark);
}

.back-to-top.show {
  display: flex;
}

/* ============================================================
   UTILITY CLASSES
   ============================================================ */
.text-gold,
.text-red   { color: var(--red); }
.text-white { color: var(--white); }
.text-gray  { color: var(--gray); }
.text-center { text-align: center; }

.mb-8  { margin-bottom: 8px; }
.mb-16 { margin-bottom: 16px; }
.mb-24 { margin-bottom: 24px; }
.mb-32 { margin-bottom: 32px; }
.mb-48 { margin-bottom: 48px; }
.mt-8  { margin-top: 8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mt-32 { margin-top: 32px; }
.mt-48 { margin-top: 48px; }

.tag {
  display: inline-block;
  font-size: 11px;
  font-family: var(--font-heading);
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 4px 12px;
  border: 1px solid var(--red);
  color: var(--red);
  margin-bottom: 12px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .nav-menu > li > a {
    padding: 9px 9px;
    font-size: 12px;
  }

  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .stats-grid    { grid-template-columns: repeat(2, 1fr); }
  .split-section { grid-template-columns: 1fr; }
  .split-content { padding: 60px 40px; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .section   { padding: 70px 0; }

  .topbar-left { display: none; }
  .topbar .container { justify-content: center; }
  .topbar-right {
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .nav-container { height: 72px; }
  .nav-logo img  { height: 50px; }

  .nav-toggle {
    display: flex;
    z-index: 1001;
  }

  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 300px;
    max-width: 86vw;
    height: 100vh;
    background: var(--dark);
    flex-direction: column;
    align-items: flex-start;
    padding: 86px 0 40px;
    transition: right 0.35s ease;
    z-index: 999;
    border-left: 2px solid var(--red);
    overflow-y: auto;
    gap: 0;
    box-shadow: var(--shadow);
  }

  .nav-menu.open { right: 0; }

  .nav-menu > li { width: 100%; }

  .nav-menu > li > a {
    padding: 14px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
    font-size: 14px;
    width: 100%;
  }

  .nav-cta {
    margin: 12px 24px !important;
    text-align: center !important;
  }

  .dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    border: none;
    border-top: none;
    background: var(--dark-3);
    padding-left: 20px;
    display: none;
    width: 100%;
    box-shadow: none;
  }

  .has-dropdown.open .dropdown,
  .has-dropdown:hover .dropdown { display: block; }

  .dropdown li a {
    font-size: 12px;
    padding: 10px 20px;
  }

  .grid-2,
  .grid-3,
  .grid-4,
  .grid-auto { grid-template-columns: 1fr; }

  .form-row  { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }

  .hero {
    min-height: calc(100vh - 72px);
    padding: 90px 0 70px;
  }

  .hero-stats  { gap: 24px; }
  .hero h1     { font-size: 44px; }
  .hero-accent { display: none; }
  .hero-ctas   { margin-bottom: 42px; }

  .split-content { padding: 48px 24px; }

  .intro-strip .container {
    flex-direction: column;
    text-align: center;
  }

  .membership-card.featured { transform: none; }
  .page-hero { min-height: 360px; }

  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:not(:last-child)::after { display: none; }

  /* Mobile: slightly smaller angle cut */
  .btn {
    clip-path: polygon(10px 0%, 100% 0%, calc(100% - 10px) 100%, 0% 100%);
  }
}

/* ── Hero video: resized for mobile breakpoint (≤600px) ── */
@media (max-width: 600px) {
  .hero {
    min-height: 100vh;
    min-height: 100dvh;   /* accounts for mobile browser chrome */
    padding: 110px 0 60px;
  }

  .hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: inherit !important; /* resolves to initial value "fill" — stretches to fill the box */
  }

  .hero-content {
    max-width: 100%;
    padding: 0 4px;
  }

  .hero-eyebrow span {
    font-size: 11px;
    letter-spacing: 0.22em;
  }

  .hero h1 {
    font-size: 30px;
    margin-bottom: 8px;
  }

  .hero-tagline {
    font-size: 14px;
    letter-spacing: 0.12em;
    margin-bottom: 20px;
  }

  .hero-desc {
    font-size: 15px;
    margin-bottom: 28px;
  }

  .hero-ctas {
    gap: 12px;
    margin-bottom: 32px;
  }

  .hero-stats {
    bottom: 0;
    gap: 18px;
    padding-top: 24px;
  }

  .hero-stat-num {
    font-size: 28px;
  }

  .hero-stat-label {
    font-size: 10px;
  }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  body        { font-size: 15px; }

  .hero-ctas { flex-direction: column; }

  .hero-ctas .btn {
    width: 100%;
    text-align: center;
  }

  .hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .stats-grid {
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }
  .hero-scroll {
   bottom:5px !important;   
  }

  .stat-number { font-size: 40px; }

  .footer-bottom .container {
    flex-direction: column;
    text-align: center;
  }

  .footer-bottom-links { justify-content: center; }

  .back-to-top {
    right: 18px;
    bottom: 18px;
  }
}

.partners-marquee-section {
    background: var(--black, #0b0b0b);
    padding: 80px 0 60px;
    overflow: hidden;
}
 
.marquee-viewport {
    position: relative;
    width: 100%;
    overflow: hidden;
    margin-top: 40px;
    /* fade edges so logos appear/disappear smoothly */
    -webkit-mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
    mask-image: linear-gradient(
        to right,
        transparent 0%,
        black 8%,
        black 92%,
        transparent 100%
    );
}
 
.marquee-track {
    display: flex;
    width: max-content;
    animation: marqueeScroll 30s linear infinite;
}
 
.marquee-track:hover {
    animation-play-state: paused;
}
 
.marquee-group {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}
 
.marquee-logo {
    height: 56px;
    width: auto;
    object-fit: contain;
    margin: 0 48px;
    filter: brightness(0.1) invert(0.9) opacity(0.9);
    transition: filter 0.3s ease, transform 0.3s ease;
}
 
.marquee-logo-sm {
    height: 70px;
}
 
.marquee-logo:hover {
    filter: brightness(0) invert(0.9) opacity(0.9);
    transform: scale(1.08);
}
 
@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}
 
@media (max-width: 768px) {
    .marquee-logo {
        height: 40px;
        margin: 0 28px;
    }
    .marquee-logo-sm {
        height: 50px;
    }
    .partners-marquee-section {
        padding: 56px 0 40px;
    }
    .hero-content{
      padding-top: 0px !important;
    }
    .cars-content{
      margin-top: 20px !important;
    }
}
#contact .grid-2-contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 40px;
    align-items: stretch;
}

@media (max-width: 900px) {
    #contact .grid-2-contact {
        grid-template-columns: 1fr;
    }
}

/* FORM CARD */
#contact .contact-form-card {
    background: var(--dark-2, #161616);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 10px;
    padding: 32px;
    height: 100%;
    min-height: 520px;

    display: flex;
    flex-direction: column;
}

#contact .contact-form-card form {
    flex: 1;
    display: flex;
    flex-direction: column;
}

#contact .contact-form-card .form-group {
    margin-bottom: 18px;
}

#contact .contact-form-card label {
    display: block;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gray, #9a9a9a);
    margin-bottom: 8px;
}

#contact .contact-form-card input,
#contact .contact-form-card textarea {
    width: 100%;
    background: #0e0e0e;
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 6px;
    padding: 12px 14px;
    color: #fff;
    font-family: inherit;
    font-size: 14px;
    transition: border-color .2s ease;
}

#contact .contact-form-card input:focus,
#contact .contact-form-card textarea:focus {
    outline: none;
    border-color: rgba(237,28,36,0.6);
}

#contact .contact-form-card textarea {
    resize: vertical;
    min-height: 120px;
}

#contact .contact-form-card button {
    margin-top: auto;
}

#contact .contact-form-card .form-error {
    color: #ed1c24;
    font-size: 12px;
    margin-top: 6px;
    display: block;
}

#contact .contact-form-card .form-success {
    background: rgba(46,204,113,0.12);
    border: 1px solid rgba(46,204,113,0.35);
    color: #2ecc71;
    padding: 14px 16px;
    border-radius: 6px;
    font-size: 14px;
    margin-bottom: 20px;
}

/* MAP CARD */
#contact .map-card {
    border-radius: 10px;
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.08);
    height: 100%;
    min-height: 520px;
}

#contact .map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 520px;
    border: 0;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}

#contact .map-meta {
    margin-top: 16px;
}

#contact .map-meta a {
    color: var(--gray-light);
    font-size: 14px;
}

/* MOBILE */
@media (max-width: 900px) {
    #contact .contact-form-card,
    #contact .map-card {
        min-height: auto;
        height: auto;
    }

    #contact .map-card iframe {
        min-height: 360px;
        height: 360px;
    }
}

.upcoming-event-row {
        display: grid;
        grid-template-columns: 80px 1fr auto;
        align-items: center;
        gap: 24px;
        background: var(--dark-2, #161616);
        border: 1px solid rgba(255,255,255,0.07);
        border-left: 3px solid rgba(237,28,36,0.55);
        border-radius: 6px;
        padding: 20px 24px;
        margin-bottom: 12px;
        text-decoration: none;
        transition: background .2s, border-left-color .2s;
    }
 
    .upcoming-event-row:hover {
        background: #1c1c1c;
        border-left-color: rgba(237,28,36,1);
    }
 
    @media (max-width: 640px) {
        .upcoming-event-row {
            grid-template-columns: 64px 1fr;
        }
 
        .upcoming-event-row .ue-badge {
            grid-column: 2;
            justify-self: start;
            margin-top: 6px;
        }
    }
 
    .ue-date {
        text-align: center;
        line-height: 1;
    }
 
    .ue-date-day {
        display: block;
        font-family: var(--font-heading);
        font-size: 30px;
        color: #fff;
    }
 
    .ue-date-mon {
        display: block;
        font-size: 11px;
        letter-spacing: 0.1em;
        text-transform: uppercase;
        color: var(--gray, #9a9a9a);
        margin-top: 3px;
    }
 
    .ue-info h4 {
        font-family: var(--font-heading);
        font-size: 15px;
        color: #fff;
        margin: 0 0 6px;
    }
 
    .ue-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        font-size: 12px;
        color: var(--gray, #9a9a9a);
    }
 
    .ue-meta span {
        display: flex;
        align-items: center;
        gap: 5px;
    }
 
    .ue-meta i {
        color: var(--red, #ed1c24);
        font-size: 10px;
    }
 
    .ue-badge {
        padding: 5px 14px;
        border-radius: 20px;
        font-size: 11px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
        font-weight: 600;
        white-space: nowrap;
    }
 
    .ue-badge-open {
        background: rgba(46,204,113,0.15);
        border: 1px solid rgba(46,204,113,0.4);
        color: #2ecc71;
    }
 
    .ue-badge-upcoming {
        background: rgba(241,196,15,0.12);
        border: 1px solid rgba(241,196,15,0.35);
        color: #f1c40f;
    }
 
    .ue-view-all {
        text-align: center;
        margin-top: 32px;
    }
    .cc-slider-wrap {
        position: relative;
        width: 100%;
        height: 100%;
        min-height: 360px;
        border-radius: 8px;
        overflow: hidden;
        background: #0a0a0a;
    }
 
    .cc-track {
        display: flex;
        height: 100%;
        transition: transform .5s cubic-bezier(.4,0,.2,1);
    }
 
    .cc-slide {
        flex: 0 0 100%;
        height: 100%;
        min-height: 360px;
        position: relative;
        display: flex;
        align-items: flex-end;
        overflow: hidden;
    }
 
    .cc-slide img {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        transition: transform .6s ease;
        user-select: none;
        -webkit-user-drag: none;
    }
 
    .cc-slide:hover img {
        transform: scale(1.04);
    }
 
    .cc-gradient {
        position: absolute;
        inset: 0;
        background: linear-gradient(to top,
            rgba(0,0,0,0.88) 0%,
            rgba(0,0,0,0.3) 50%,
            transparent 100%);
        z-index: 1;
    }
 
    .cc-slide-info {
        position: relative;
        z-index: 2;
        padding: 20px 20px 16px;
        width: 100%;
    }
 
    .cc-slide-year {
        display: inline-block;
        font-size: 10px;
        letter-spacing: 0.14em;
        text-transform: uppercase;
        color: rgba(237,28,36,0.9);
        background: rgba(237,28,36,0.12);
        border: 1px solid rgba(237,28,36,0.3);
        border-radius: 20px;
        padding: 3px 10px;
        margin-bottom: 7px;
        font-family: var(--font-heading);
    }
 
    .cc-slide-name {
        font-family: var(--font-heading);
        font-size: 16px;
        color: #fff;
        margin: 0 0 5px;
    }
 
    .cc-slide-meta {
        font-size: 11px;
        color: rgba(255,255,255,0.5);
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
    }
 
    .cc-slide-meta span {
        display: flex;
        align-items: center;
        gap: 4px;
    }
 
    .cc-slide-meta i {
        font-size: 8px;
        color: rgba(237,28,36,0.6);
    }
 
    /* Counter badge */
    .cc-counter {
        position: absolute;
        top: 14px;
        right: 14px;
        z-index: 3;
        background: rgba(0,0,0,0.55);
        border: 1px solid rgba(255,255,255,0.1);
        border-radius: 20px;
        padding: 4px 12px;
        font-size: 11px;
        color: rgba(255,255,255,0.65);
        font-family: var(--font-heading);
        letter-spacing: 0.05em;
    }
 
    /* Arrows */
    .cc-arrow {
        position: absolute;
        top: 50%;
        transform: translateY(-50%);
        z-index: 4;
        width: 36px;
        height: 36px;
        border-radius: 50%;
        background: rgba(0,0,0,0.55);
        border: 1px solid rgba(255,255,255,0.15);
        color: #fff;
        font-size: 13px;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: background .2s, border-color .2s;
    }
 
    .cc-arrow:hover {
        background: rgba(237,28,36,0.7);
        border-color: transparent;
    }
 
    .cc-arrow-prev { left: 12px; }
    .cc-arrow-next { right: 12px; }
 
    /* Dots */
    .cc-dots {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 3;
        display: flex;
        justify-content: center;
        gap: 6px;
        padding-bottom: 10px;
    }
 
    .cc-dot {
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: rgba(255,255,255,0.25);
        border: none;
        padding: 0;
        cursor: pointer;
        transition: background .2s, transform .2s;
    }
 
    .cc-dot.active {
        background: rgba(237,28,36,0.85);
        transform: scale(1.35);
    }
 
    /* Thumbnails strip below slider */
    .cc-thumbs {
        display: flex;
        gap: 6px;
        margin-top: 8px;
        overflow-x: auto;
        scrollbar-width: none;
    }
 
    .cc-thumbs::-webkit-scrollbar { display: none; }
 
    .cc-thumb {
        flex: 0 0 72px;
        height: 48px;
        border-radius: 5px;
        overflow: hidden;
        cursor: pointer;
        border: 2px solid transparent;
        opacity: 0.45;
        transition: opacity .2s, border-color .2s;
        background: #111;
    }
 
    .cc-thumb.active {
        border-color: rgba(237,28,36,0.8);
        opacity: 1;
    }
 
    .cc-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        display: block;
        pointer-events: none;
    }
 
    /* Fallback icon thumb (when no image) */
    .cc-thumb-icon {
        width: 100%;
        height: 100%;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        color: rgba(255,255,255,0.2);
    }


    @media (max-width: 767px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer-brand,
  .footer-links,
  .footer-contact {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-logo,
  .footer-brand img.footer-logo,
  .footer-logo-img {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-tagline,
  .footer-brand p {
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }

  .footer-links h4,
  .footer-contact h4 {
    text-align: center;
    border-bottom: 1px solid rgba(237,28,36,0.22);
  }

  .footer-links ul,
  .footer-contact ul {
    list-style: none;
    padding: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 100%;
  }

  .footer-links ul li,
  .footer-contact ul li {
    text-align: center;
    justify-content: center;
  }

  .footer-contact ul li {
    align-items: center;
  }

  .footer-links ul li a:hover {
    padding-left: 0;
  }

  .footer-bottom .container {
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
  }

  .footer-bottom-links {
    justify-content: center;
  }
}
.lang-switch{ display:flex; align-items:center; gap:6px; margin-left:16px; }
.lang-switch a{ opacity:.65; font-weight:600; }
.lang-switch a.active{ opacity:1; color:var(--ml-red); }
[dir="rtl"] .lang-switch{ margin-left:0; margin-right:16px; }