@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;800;900&family=Assistant:wght@300;400;600;700;800&display=swap');

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

:root {
  /* ── Brand Colors ── */
  --red: #D31F26;
  --red-dark: #A81419;
  --red-light: #E63946;
  --orange: #E8871E;
  --gold: #FFB703;
  --black: #050505;
  --black-soft: #111111;
  --black-card: #1A1A1A;
  --white: #FFFFFF;
  --cream: #F8F9FA;
  --gray-50: #F1F3F5;
  --gray-100: #E9ECEF;
  --gray-200: #DEE2E6;
  --gray-300: #CED4DA;
  --gray-400: #ADB5BD;
  --gray-500: #6C757D;
  --gray-600: #495057;
  --text: #111111;
  --text-secondary: #343A40;
  --text-muted: #6C757D;
  --text-light: #ADB5BD;
  --border: rgba(0, 0, 0, .08);
  --border-hover: rgba(0, 0, 0, .15);
  --green: #0CA678;
  --green-light: rgba(12, 166, 120, .1);
  --blue: #1C7ED6;
  --blue-light: rgba(28, 126, 214, .1);
  --orange-light: rgba(232, 135, 30, .1);

  /* ── Sizing ── */
  --font: 'Heebo', sans-serif;
  --font-secondary: 'Assistant', sans-serif;
  --radius: 10px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --radius-full: 9999px;
  --shadow-sm: 0 1px 3px rgba(0, 0, 0, .04), 0 1px 2px rgba(0, 0, 0, .03);
  --shadow-md: 0 4px 20px rgba(0, 0, 0, .06), 0 1px 3px rgba(0, 0, 0, .04);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, .08), 0 4px 12px rgba(0, 0, 0, .04);
  --shadow-hover: 0 16px 48px rgba(0, 0, 0, .1), 0 6px 16px rgba(0, 0, 0, .05);
  --ease: cubic-bezier(0.32, 0.72, 0, 1);
  --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
  --container: 1260px;
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale
}

body {
  font-family: var(--font);
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  font-size: 15px;
  direction: rtl;
  overflow-x: hidden;
  padding-top: 96px
}

/* ── Rich Text Block ── */
.text-block {
  max-width: 800px;
  margin: 4rem auto;
  padding: 0 1.5rem;
  color: var(--text-secondary);
  line-height: 1.8;
  font-size: 1rem;
}

.text-block h1,
.text-block h2,
.text-block h3 {
  color: var(--black);
  font-weight: 800;
  margin-top: 2rem;
  margin-bottom: 1rem;
}

.text-block h1 {
  font-size: 2.2rem;
}

.text-block h2 {
  font-size: 1.8rem;
}

.text-block h3 {
  font-size: 1.4rem;
}

.text-block p {
  margin-bottom: 1.2rem;
}

.text-block ul,
.text-block ol {
  margin-bottom: 1.5rem;
  padding-right: 1.5rem;
}

.text-block li {
  margin-bottom: 0.5rem;
}

.text-block a {
  color: var(--red);
  text-decoration: underline;
}

/* ── RTL Arrow Flip ── */
.btn-primary svg,
.btn-outline svg,
.read-more svg,
.hero-cta svg {
  transform: scaleX(-1)
}

/* ── Film Grain ── */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .025;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

/* ── Selection ── */
::selection {
  background: var(--red);
  color: #fff
}

a {
  text-decoration: none;
  color: inherit;
  transition: all .4s var(--ease)
}

ul,
ol {
  list-style: none
}

img {
  max-width: 100%;
  display: block
}

button {
  cursor: pointer;
  font-family: var(--font);
  border: none;
  background: none
}

input,
textarea,
select {
  font-family: var(--font);
  border: none;
  outline: none
}

input[type="tel"] {
  direction: rtl;
  text-align: right
}

/* ═══════════════════════════════════
   LAYOUT
   ═══════════════════════════════════ */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem)
}

.section {
  padding: clamp(3rem, 6vw, 6rem) 0
}

.section-gray {
  background: var(--cream)
}

.section-dark {
  background: var(--black);
  color: #fff
}

.section-dark .sub,
.section-dark p {
  color: rgba(255, 255, 255, .6)
}

/* ── Section Headers ── */
.section-header {
  margin-bottom: 2.5rem;
  position: relative
}

.section-header.center {
  text-align: center
}

.section-header h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 900;
  letter-spacing: -.03em;
  line-height: 1.1;
  text-transform: uppercase
}

.section-header .sub {
  font-size: 1rem;
  color: var(--text-muted);
  margin-top: .5rem;
  line-height: 1.6;
  font-family: var(--font-secondary)
}

.section-header .eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-size: .75rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--red);
  margin-bottom: 1rem;
  background: rgba(211, 31, 38, .08);
  padding: .3rem 1rem;
  border-radius: var(--radius-full);
}

.section-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 1rem;
  margin-bottom: 2.5rem;
  flex-wrap: wrap
}

.section-top h2 {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 900;
  letter-spacing: -.03em;
  text-transform: uppercase
}

/* ═══════════════════════════════════
   TOP BAR
   ═══════════════════════════════════ */
.top-bar {
  background: var(--black);
  color: rgba(255, 255, 255, .7);
  font-size: .68rem;
  font-weight: 500;
  padding: .5rem 0;
  letter-spacing: .01em
}

.top-bar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center
}

.top-bar-item {
  display: inline-flex;
  align-items: center;
  gap: .3rem
}

.top-bar-divider {
  color: rgba(255, 255, 255, .15);
  margin: 0 .5rem
}

.top-bar-link {
  color: rgba(255, 255, 255, .7);
  font-weight: 600;
  transition: .3s
}

.top-bar-link:hover {
  color: #fff
}

.top-bar-link.highlight {
  color: var(--gold);
  font-weight: 700
}

/* ═══════════════════════════════════
   NAVIGATION
   ═══════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  transition: all .5s var(--ease)
}

.site-header.scrolled {
  box-shadow: var(--shadow-md)
}

.site-header.scrolled .top-bar {
  display: none
}

.main-nav {
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(24px) saturate(1.4);
  -webkit-backdrop-filter: blur(24px) saturate(1.4);
  border-bottom: 1px solid var(--border);
  transition: all .5s var(--ease);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 1.5rem
}

.logo img {
  height: 113px;
  transition: .3s var(--ease)
}

.nav-links {
  display: flex;
  gap: 0;
  align-items: center
}

.nav-links a:not(.btn-primary):not(.mega-cat-item),
.nav-links .nav-mega-wrap>a {
  padding: .5rem 1rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--text-secondary);
  position: relative;
  transition: .3s var(--ease);
  border-radius: var(--radius);
}

.nav-links a:not(.btn-primary):not(.mega-cat-item):hover,
.nav-links a.active,
.nav-links .nav-mega-wrap>a:hover,
.nav-links .nav-mega-wrap>a.active {
  color: var(--text)
}

.nav-links a.active::after,
.nav-links .nav-mega-wrap>a.active::after {
  content: '';
  position: absolute;
  bottom: 4px;
  right: 1rem;
  left: 1rem;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: .6rem
}

.search-form {
  display: flex;
  align-items: center;
  background: var(--gray-50);
  border-radius: var(--radius-full);
  overflow: hidden;
  transition: .3s var(--ease);
  border: 1.5px solid transparent
}

.search-form:focus-within {
  border-color: var(--red);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(196, 30, 36, .08)
}

.search-input {
  width: 160px;
  padding: .5rem .8rem;
  font-size: .78rem;
  background: transparent;
  direction: rtl
}

.search-btn {
  padding: .5rem .6rem;
  color: var(--text-muted);
  transition: .3s
}

.search-btn:hover {
  color: var(--red)
}

.nav-icon-btn {
  position: relative;
  padding: .45rem;
  border-radius: var(--radius);
  color: var(--text-secondary);
  transition: .3s
}

.nav-icon-btn:hover {
  color: var(--red);
  background: rgba(196, 30, 36, .04)
}

.cart-badge {
  position: absolute;
  top: -2px;
  right: -4px;
  background: var(--red);
  color: #fff;
  font-size: .55rem;
  font-weight: 800;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center
}

.cart-icon.bounce {
  animation: cartBounce .5s var(--ease-bounce)
}

@keyframes cartBounce {
  0% {
    transform: scale(1)
  }

  30% {
    transform: scale(1.3)
  }

  100% {
    transform: scale(1)
  }
}

.btn-login {
  background: var(--black);
  color: #fff;
  padding: .45rem 1.2rem;
  border-radius: var(--radius-full);
  font-size: .72rem;
  font-weight: 700;
  transition: all .4s var(--ease);
}

.btn-login:hover {
  background: var(--red);
  transform: translateY(-1px)
}

.user-badge {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--black);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  font-weight: 800;
  transition: .3s var(--ease);
}

.user-badge:hover {
  background: var(--red);
  transform: scale(1.05)
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem
}

.hamburger span {
  display: block;
  width: 20px;
  height: 1.5px;
  background: var(--text);
  transition: .3s var(--ease);
  border-radius: 2px
}

.mobile-menu {
  display: none;
  flex-direction: column;
  padding: 1rem;
  background: var(--white);
  border-bottom: 1px solid var(--border)
}

.mobile-menu.open {
  display: flex
}

.mobile-menu a {
  padding: .75rem 1rem;
  font-size: .85rem;
  font-weight: 600;
  border-radius: var(--radius)
}

.mobile-menu a:hover,
.mobile-menu a.active {
  background: var(--gray-50);
  color: var(--red)
}

/* ── MegaMenu ── */
.nav-mega-wrap {
  position: relative;
  display: inline-flex;
  align-items: center
}

.nav-mega-wrap>a svg {
  margin-inline-start: 2px;
  transition: .3s
}

.nav-mega-wrap:hover>a svg {
  transform: rotate(180deg)
}

.mega-menu {
  position: absolute;
  top: 100%;
  right: 50%;
  transform: translateX(50%);
  width: 680px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all .35s var(--ease);
  transform-origin: top center;
  padding-top: .5rem;
}

.nav-mega-wrap:hover .mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: all
}

.mega-menu-inner {
  background: #fff;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0, 0, 0, .12), 0 0 0 1px rgba(0, 0, 0, .04);
  padding: 1.5rem;
}

.mega-cats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: .8rem
}

.mega-cat-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: .6rem .3rem;
  border-radius: var(--radius);
  transition: all .3s var(--ease);
  text-decoration: none;
  color: var(--text);
}

.mega-cat-item:hover {
  background: var(--gray-50);
  transform: translateY(-2px)
}

.mega-cat-item img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: cover;
  margin-bottom: .4rem;
  border: 2px solid var(--gray-100);
  transition: .3s
}

.mega-cat-item:hover img {
  border-color: var(--red)
}

.mega-cat-item span {
  font-size: .65rem;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: .15rem
}

.mega-cat-item small {
  font-size: .55rem;
  color: var(--text-muted)
}

.mega-promo {
  text-align: center;
  margin-top: 1rem;
  padding-top: .8rem;
  border-top: 1px solid var(--border)
}


/* ═══════════════════════════════════
   HERO
   ═══════════════════════════════════ */
.hero {
  position: relative;
  min-height: 85vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black)
}

.hero video,
.hero>img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover
}

.hero video {
  filter: brightness(.75) contrast(1.05) saturate(1.1)
}

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1
}

.hero .container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(1rem, 3vw, 2.5rem)
}

.hero-content {
  position: relative;
  z-index: 2;
  color: #fff;
  max-width: 560px;
  margin-inline-end: auto;
  margin-inline-start: 0
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  border-radius: var(--radius-full);
  padding: .35rem 1rem;
  font-size: .6rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  margin-bottom: 1.5rem;
  backdrop-filter: blur(8px);
}

.hero-badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--red);
  animation: pulse 2s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .4
  }
}

.hero h1 {
  font-size: clamp(3rem, 6vw, 4.5rem);
  font-weight: 900;
  line-height: 1;
  letter-spacing: -.04em;
  margin-bottom: 1.5rem;
  text-transform: uppercase;
}

.hero-sub {
  color: rgba(255, 255, 255, .7);
  font-size: 1.1rem;
  line-height: 1.6;
  margin-bottom: 2.5rem;
  max-width: 560px;
  font-family: var(--font-secondary);
  font-weight: 400
}

.hero-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* Hero Video Previews */
.hero-video-previews {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .4rem;
  z-index: 5;
}

.hero-vid-list {
  display: flex;
  flex-direction: column;
  gap: .6rem;
  max-height: 340px;
  overflow: hidden;
  scroll-behavior: smooth;
}

.hero-vid-thumb {
  position: relative;
  width: 130px;
  height: 75px;
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  border: 2px solid rgba(255, 255, 255, .2);
  transition: all .4s var(--ease);
  flex-shrink: 0;
}

.hero-vid-thumb:hover {
  border-color: #fff;
  transform: scale(1.05)
}

.hero-vid-thumb video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none
}

.hero-vid-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, .35);
  transition: .3s var(--ease);
}

.hero-vid-thumb:hover .hero-vid-play {
  background: rgba(196, 30, 36, .5)
}

.hero-vid-label {
  position: absolute;
  bottom: 4px;
  right: 6px;
  font-size: .58rem;
  font-weight: 700;
  color: #fff;
  text-shadow: 0 1px 3px rgba(0, 0, 0, .8);
}

.hero-vid-arrow {
  width: 32px;
  height: 22px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, .12);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all .3s var(--ease);
  border: 1px solid rgba(255, 255, 255, .15);
}

.hero-vid-arrow:hover {
  background: rgba(255, 255, 255, .25)
}

@media(max-width:768px) {
  .hero-video-previews {
    display: none
  }
}

/* ═══════════════════════════════════
   BUTTONS
   ═══════════════════════════════════ */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--red);
  color: #fff;
  padding: .75rem 1.8rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 700;
  transition: all .5s var(--ease);
  position: relative;
  overflow: hidden;
}

.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .1) 50%, transparent 100%);
  transform: translateX(-100%);
  transition: transform .6s var(--ease);
}

.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196, 30, 36, .25)
}

.btn-primary:hover::before {
  transform: translateX(100%)
}

.btn-primary:active {
  transform: scale(.97)
}

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

.btn-primary.white:hover {
  background: var(--gray-50);
  box-shadow: 0 8px 24px rgba(0, 0, 0, .1)
}

.btn-primary.black {
  background: var(--black);
  color: #fff
}

.btn-primary.black:hover {
  background: var(--black-soft)
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  border: 1.5px solid rgba(255, 255, 255, .25);
  color: #fff;
  padding: .7rem 1.6rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  transition: all .4s var(--ease);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .4)
}

.btn-outline.dark {
  border-color: var(--border-hover);
  color: var(--text)
}

.btn-outline.dark:hover {
  border-color: var(--text);
  background: var(--gray-50)
}

/* ═══════════════════════════════════
   MARQUEE
   ═══════════════════════════════════ */
.marquee {
  background: var(--red);
  color: #fff;
  padding: .65rem 0;
  overflow: hidden;
  white-space: nowrap
}

.marquee-track {
  display: flex;
  animation: marquee 35s linear infinite;
  gap: 0
}

.marquee-item {
  flex-shrink: 0;
  padding: 0 2.5rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .02em;
  display: flex;
  align-items: center;
  gap: .5rem
}

.marquee-item .sep {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .4)
}

@keyframes marquee {
  0% {
    transform: translateX(0)
  }

  100% {
    transform: translateX(-50%)
  }
}

/* ═══════════════════════════════════
   BENEFITS BAR
   ═══════════════════════════════════ */
.benefits-bar {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  padding: 1.5rem;
  border-radius: var(--radius-lg);
  background: var(--white);
  border: 1px solid var(--border);
  transition: all .5s var(--ease);
}

.benefit-item:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px)
}

.benefit-icon {
  width: 42px;
  height: 42px;
  min-width: 42px;
  border-radius: var(--radius);
  background: rgba(196, 30, 36, .05);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .4s var(--ease);
}

.benefit-item:hover .benefit-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.05)
}

.benefit-item h4 {
  font-size: .82rem;
  font-weight: 700;
  margin-bottom: .15rem
}

.benefit-item p {
  font-size: .7rem;
  color: var(--text-muted);
  line-height: 1.5
}

/* ═══════════════════════════════════
   STATS
   ═══════════════════════════════════ */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
  padding: 1.5rem 0
}

.stat-item .number {
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -.02em;
  line-height: 1
}

.section-dark .stat-item .number {
  color: var(--gold)
}

.stat-item .label {
  font-size: .72rem;
  color: var(--text-muted);
  margin-top: .35rem;
  font-weight: 500
}

.section-dark .stat-item .label {
  color: rgba(255, 255, 255, .45)
}

/* ═══════════════════════════════════
   ABOUT GRID
   ═══════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center
}

/* ═══════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════ */
.cta-section {
  background: var(--black);
  color: #fff;
  text-align: center;
  padding: clamp(4rem, 8vw, 7rem) 0;
  position: relative;
  overflow: hidden;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -50%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196, 30, 36, .2) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.3rem);
  font-weight: 800;
  margin-bottom: .5rem;
  letter-spacing: -.02em
}

.cta-section p {
  color: rgba(255, 255, 255, .55);
  margin-bottom: 2rem;
  font-size: .92rem
}

/* ═══════════════════════════════════
   TOAST
   ═══════════════════════════════════ */
.toast {
  position: fixed;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--black);
  color: #fff;
  padding: .65rem 1.5rem;
  border-radius: var(--radius-full);
  font-size: .78rem;
  font-weight: 600;
  z-index: 10000;
  transition: .5s var(--ease);
  box-shadow: 0 8px 32px rgba(0, 0, 0, .2);
}

.toast.show {
  bottom: 2rem
}

/* ═══════════════════════════════════
   FORMS
   ═══════════════════════════════════ */
.form-group {
  margin-bottom: 1.25rem
}

.form-group label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--text-secondary);
  margin-bottom: .4rem
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: .7rem 1rem;
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  font-size: .85rem;
  transition: all .3s var(--ease);
  background: var(--white);
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(196, 30, 36, .06)
}

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

/* ═══════════════════════════════════
   LOGIN PAGE
   ═══════════════════════════════════ */
.login-page {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 2rem;
  background: var(--cream)
}

.login-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: clamp(2rem, 4vw, 3rem);
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
}

.login-box h2 {
  font-size: 1.3rem;
  font-weight: 800;
  letter-spacing: -.02em
}

.login-box .sub {
  font-size: .78rem;
  color: var(--text-muted);
  margin-top: .2rem
}

.login-note {
  text-align: center;
  font-size: .7rem;
  color: var(--text-muted);
  margin-top: 1rem
}

/* ═══════════════════════════════════
   PAGE HERO (Internal pages) — see components.css
   ═══════════════════════════════════ */

/* ═══════════════════════════════════
   FEATURES GRID
   ═══════════════════════════════════ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.25rem
}

.feature-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all .5s var(--ease);
}

.feature-card:hover {
  border-color: var(--border-hover);
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px)
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  background: rgba(196, 30, 36, .05);
  color: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  transition: .4s var(--ease);
}

.feature-card:hover .feature-icon {
  background: var(--red);
  color: #fff;
  transform: scale(1.05)
}

.feature-card h3 {
  font-size: .92rem;
  font-weight: 700;
  margin-bottom: .35rem
}

.feature-card p {
  font-size: .78rem;
  color: var(--text-muted);
  line-height: 1.7
}

/* ═══════════════════════════════════
   SOCIAL LINKS
   ═══════════════════════════════════ */
.social-links {
  display: flex;
  gap: .5rem
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, .5);
  transition: .3s var(--ease);
}

.social-link:hover {
  background: rgba(255, 255, 255, .1);
  color: #fff;
  border-color: rgba(255, 255, 255, .3)
}

/* ═══════════════════════════════════
   FOOTER
   ═══════════════════════════════════ */
footer {
  background: var(--black);
  color: rgba(255, 255, 255, .6);
  padding: 4rem 0 0;
  font-size: .78rem
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem
}

.footer-col h3 {
  color: #fff;
  font-size: .72rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1rem
}

.footer-col a {
  display: block;
  padding: .25rem 0;
  transition: .3s;
  color: rgba(255, 255, 255, .45)
}

.footer-col a:hover {
  color: #fff
}

.footer-text {
  color: rgba(255, 255, 255, .4);
  line-height: 1.7;
  font-size: .72rem
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, .06);
  padding: 1.5rem 0;
  margin-top: 3rem;
  text-align: center;
  color: rgba(255, 255, 255, .25);
  font-size: .65rem
}

/* ═══════════════════════════════════
   SCROLL ANIMATIONS
   ═══════════════════════════════════ */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  filter: blur(3px);
  transition: all .7s var(--ease)
}

[data-animate].animated {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0)
}

[data-animate="right"] {
  transform: translateX(-30px)
}

[data-animate="right"].animated {
  transform: translateX(0)
}

[data-animate="left"] {
  transform: translateX(30px)
}

[data-animate="left"].animated {
  transform: translateX(0)
}

/* Floating animation for mockup images */
@keyframes float {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-12px)
  }
}

.mockup-image img {
  animation: float 4s ease-in-out infinite
}

/* Pulse glow on red buttons */
@keyframes pulseGlow {

  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(211, 31, 38, .3)
  }

  50% {
    box-shadow: 0 0 0 8px rgba(211, 31, 38, 0)
  }
}

.hero-cta .btn-primary {
  animation: pulseGlow 2.5s ease-in-out infinite
}

/* Shimmer on contact strip */
@keyframes shimmer {
  0% {
    background-position: 200% center
  }

  100% {
    background-position: -200% center
  }
}

.contact-strip {
  background-size: 200% auto;
  animation: shimmer 6s ease infinite
}

/* ═══════════════════════════════════
   WHATSAPP & CONTACT STRIP
   ═══════════════════════════════════ */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 56px;
  height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 6px 20px rgba(37, 211, 102, .35);
  z-index: 9999;
  transition: all .4s var(--ease-bounce);
}

.whatsapp-float:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 10px 28px rgba(37, 211, 102, .45)
}

.whatsapp-float svg {
  width: 28px;
  height: 28px;
  fill: currentColor
}

.contact-strip {
  background: linear-gradient(90deg, var(--red), var(--orange));
  color: #fff;
  padding: 1.5rem 0;
  position: relative;
  overflow: hidden;
}

.contact-strip input::placeholder,
.contact-strip textarea::placeholder {
  color: rgba(255, 255, 255, .7)
}

.contact-strip input:focus,
.contact-strip textarea:focus {
  outline: none;
  border-color: rgba(255, 255, 255, .6) !important;
  background: rgba(255, 255, 255, .18) !important
}

.contact-strip-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  position: relative;
  z-index: 2;
  flex-wrap: wrap;
  gap: 1rem
}

.contact-strip-text h3 {
  font-size: 1.3rem;
  font-weight: 900;
  margin-bottom: .2rem;
  letter-spacing: -.01em
}

.contact-strip-text p {
  font-size: .85rem;
  color: rgba(255, 255, 255, .8);
  font-family: var(--font-secondary)
}

.contact-strip-actions {
  display: flex;
  gap: .75rem
}

/* ═══════════════════════════════════
   RESPONSIVE
   ═══════════════════════════════════ */
@media(max-width:1024px) {
  .nav-links {
    display: none
  }

  .hamburger {
    display: flex
  }

  .search-input {
    width: 120px
  }

  .footer-inner {
    grid-template-columns: 1fr 1fr
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 2rem
  }

  .stats-strip,
  .benefits-bar {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:768px) {
  .hero {
    min-height: 70vh
  }

  .hero h1 {
    font-size: 1.8rem
  }

  .benefits-bar {
    grid-template-columns: 1fr
  }

  .stats-strip {
    grid-template-columns: repeat(2, 1fr)
  }

  .footer-inner {
    grid-template-columns: 1fr
  }

  .search-form {
    display: none
  }
}

@media(max-width:480px) {
  .hero {
    min-height: 60vh
  }

  .top-bar-inner {
    flex-direction: column;
    gap: .3rem
  }
}

/* ── Cookie Consent Banner ── */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 1rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  z-index: 9990;
  font-size: 0.9rem;
  box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.1);
  transform: translateY(100%);
  transition: transform 0.4s ease;
}

.cookie-banner.show {
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
}

.cookie-banner a {
  color: var(--red);
  text-decoration: underline;
  margin: 0 0.5rem;
}

.cookie-banner .btn-accept {
  background: var(--red);
  color: #fff;
  border: none;
  padding: 0.5rem 1.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  font-weight: 600;
  white-space: nowrap;
}

/* ── Accessibility Widget ── */
.a11y-widget {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 1999;
}

.a11y-btn {
  background: #0056b3;
  color: #fff;
  border: none;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
  transition: transform 0.2s;
}

.a11y-btn:hover {
  transform: scale(1.05);
}

.a11y-menu {
  position: absolute;
  bottom: 60px;
  left: 0;
  background: #fff;
  width: 280px;
  border-radius: var(--radius);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  padding: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.5rem;
  border: 1px solid var(--border);
}

.a11y-menu.show {
  display: flex;
}

.a11y-menu-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 1px solid var(--border);
  padding-bottom: 0.5rem;
  margin-bottom: 0.5rem;
  font-weight: 800;
}

.a11y-close {
  background: none;
  border: none;
  font-size: 1.2rem;
  cursor: pointer;
  color: var(--text-muted);
}

.a11y-option {
  background: #f8f9fa;
  border: 1px solid var(--border);
  padding: 0.5rem;
  border-radius: var(--radius);
  cursor: pointer;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  transition: background 0.2s;
  color: var(--text);
}

.a11y-option:hover {
  background: #e9ecef;
}

.a11y-option.active {
  background: #0056b3;
  color: #fff;
  border-color: #0056b3;
}

/* Accessibility Modifications */
body.a11y-grayscale {
  filter: grayscale(100%);
}

body.a11y-high-contrast {
  filter: contrast(150%) saturate(150%);
}

body.a11y-invert {
  filter: invert(100%);
  background: #000;
}

body.a11y-invert img,
body.a11y-invert video {
  filter: invert(100%);
}

body.a11y-links-underline a {
  text-decoration: underline !important;
}

body.a11y-readable-font * {
  font-family: Arial, Helvetica, sans-serif !important;
}

html.a11y-lg-text {
  font-size: 110%;
}

html.a11y-xl-text {
  font-size: 120%;
}

@media(max-width: 768px) {
  .cookie-banner {
    flex-direction: column;
    text-align: center;
    padding: 1.5rem;
  }

  .cookie-banner .btn-accept {
    width: 100%;
    padding: .8rem;
  }

  .a11y-widget {
    bottom: 15px;
    left: 15px;
  }

  .a11y-menu {
    width: 250px;
  }
}