/* ============================================================
   AXEVET — Arabic RTL Corporate Veterinary Website
   Design System & Stylesheet
   ============================================================ */

/* ── Google Fonts ── */
@import url('https://fonts.googleapis.com/css2?family=Cairo:wght@400;600;700;800&family=Tajawal:wght@300;400;500;700&display=swap');

/* ============================================================
   1. DESIGN TOKENS (CSS Custom Properties)
   ============================================================ */
:root {
  /* ── Primary Colors ── */
  --color-orange-primary: #E8601C;
  --color-orange-light:   #F07030;
  --color-orange-dark:    #C04A10;

  /* ── Neutral Colors ── */
  --color-white:       #FFFFFF;
  --color-gray-light:  #F5F5F5;
  --color-gray-medium: #E0E0E0;
  --color-gray-text:   #666666;
  --color-dark:        #1A1A1A;

  /* ── Accent / Special ── */
  --color-navy:          #0D2B4E;
  --color-navy-light:    #163D6B;
  --color-green-subtle:  #2E7D32;
  --color-error:         #BA1A1A;

  /* ── Typography ── */
  --font-display: 'Cairo', 'Tajawal', sans-serif;
  --font-body:    'Tajawal', 'Cairo', sans-serif;

  --text-hero:    clamp(36px, 5vw, 64px);
  --text-h1:      clamp(28px, 3.5vw, 48px);
  --text-h2:      clamp(22px, 2.5vw, 36px);
  --text-h3:      clamp(18px, 2vw, 26px);
  --text-body:    clamp(15px, 1.2vw, 18px);
  --text-caption: 13px;

  --line-height-arabic:  1.9;
  --line-height-display: 1.3;

  /* ── Spacing ── */
  --space-xs:  8px;
  --space-sm:  16px;
  --space-md:  32px;
  --space-lg:  64px;
  --space-xl:  96px;
  --space-2xl: 140px;
  --gutter:    24px;

  /* ── Border & Radius ── */
  --radius-card:   4px;
  --radius-btn:    4px;
  --radius-pill:   50px;
  --radius-circle: 50%;

  /* ── Shadows ── */
  --shadow-card:    0 2px 12px rgba(13, 43, 78, 0.06);
  --shadow-card-hover: 0 8px 30px rgba(13, 43, 78, 0.10);
  --shadow-header:  0 2px 20px rgba(0, 0, 0, 0.08);
  --shadow-mega:    0 12px 40px rgba(13, 43, 78, 0.12);

  /* ── Transitions ── */
  --transition-fast:   0.2s ease;
  --transition-medium: 0.35s ease;
  --transition-slow:   0.5s ease;

  /* ── Layout ── */
  --container-max: 1280px;
  --container-wide: 1440px;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  direction: rtl;
  font-family: var(--font-body);
  font-size: var(--text-body);
  font-weight: 400;
  line-height: var(--line-height-arabic);
  color: var(--color-dark);
  background-color: var(--color-white);
  text-align: right;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a {
  text-decoration: none;
  color: inherit;
  transition: color var(--transition-fast);
}

ul, ol { list-style: none; }

button, input, select, textarea {
  font-family: var(--font-body);
  font-size: inherit;
  border: none;
  /* Do NOT set outline:none globally — keyboard users need focus indicators */
  background: none;
}

button { cursor: pointer; }

/* ── Global Focus Styles (WCAG 2.1 AA Compliant) ── */
*:focus-visible {
  outline: 3px solid var(--color-orange-primary);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ============================================================
   3. TYPOGRAPHY
   ============================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--color-dark);
  line-height: var(--line-height-display);
}

.text-hero {
  font-size: var(--text-hero);
  font-weight: 800;
  line-height: 1.2;
}

h1, .text-h1 { font-size: var(--text-h1); }
h2, .text-h2 { font-size: var(--text-h2); }
h3, .text-h3 { font-size: var(--text-h3); }

p { margin-bottom: var(--space-sm); }
p:last-child { margin-bottom: 0; }

.text-caption {
  font-size: var(--text-caption);
  color: var(--color-gray-text);
}

.text-label {
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.6;
}

/* ============================================================
   4. LAYOUT & CONTAINERS
   ============================================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-wide {
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-lg);
}

.section {
  padding: var(--space-xl) 0;
}

.section--gray {
  background-color: var(--color-gray-light);
}

.section--navy {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.section--orange {
  background-color: var(--color-orange-primary);
  color: var(--color-white);
}

.section--dark {
  background-color: var(--color-dark);
  color: var(--color-white);
}

/* Grid System */
.grid {
  display: grid;
  gap: var(--gutter);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.grid-50-50 { grid-template-columns: 1fr 1fr; }
.grid-60-40 { grid-template-columns: 3fr 2fr; }
.grid-40-60 { grid-template-columns: 2fr 3fr; }
.grid-25-75 { grid-template-columns: 1fr 3fr; }

/* Flexbox Utilities */
.flex {
  display: flex;
}

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

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

.flex-col {
  display: flex;
  flex-direction: column;
}

.flex-wrap { flex-wrap: wrap; }
.align-center { align-items: center; }
.align-start { align-items: flex-start; }
.gap-xs  { gap: var(--space-xs); }
.gap-sm  { gap: var(--space-sm); }
.gap-md  { gap: var(--space-md); }
.gap-lg  { gap: var(--space-lg); }

.text-center { text-align: center; }

/* ============================================================
   5. BUTTONS
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  padding: 14px 32px;
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
  border-radius: var(--radius-btn);
  transition: all var(--transition-fast);
  white-space: nowrap;
  cursor: pointer;
}

.btn--primary {
  background-color: var(--color-orange-primary);
  color: var(--color-white);
  border: 2px solid var(--color-orange-primary);
}
.btn--primary:hover {
  background-color: var(--color-orange-light);
  border-color: var(--color-orange-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(232, 96, 28, 0.3);
}
.btn--primary:active {
  background-color: var(--color-orange-dark);
  border-color: var(--color-orange-dark);
  transform: translateY(0);
}
.btn--primary:focus-visible {
  outline: 3px solid var(--color-orange-dark);
  outline-offset: 3px;
}

.btn--outline {
  background-color: transparent;
  color: var(--color-orange-primary);
  border: 2px solid var(--color-orange-primary);
}
.btn--outline:hover {
  background-color: var(--color-orange-primary);
  color: var(--color-white);
  transform: translateY(-2px);
}

.btn--white {
  background-color: var(--color-white);
  color: var(--color-orange-primary);
  border: 2px solid var(--color-white);
}
.btn--white:hover {
  background-color: transparent;
  color: var(--color-white);
  border-color: var(--color-white);
}

.btn--white-outline {
  background-color: transparent;
  color: var(--color-white);
  border: 2px solid var(--color-white);
}
.btn--white-outline:hover {
  background-color: var(--color-white);
  color: var(--color-orange-primary);
}

.btn--lg {
  padding: 18px 42px;
  font-size: 18px;
}

.btn--sm {
  padding: 10px 20px;
  font-size: 14px;
}

.btn--full {
  width: 100%;
}

.btn--icon {
  padding: 12px;
  border-radius: var(--radius-circle);
}

/* Link-style button */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-xs);
  color: var(--color-orange-primary);
  font-weight: 700;
  font-size: 16px;
  transition: gap var(--transition-fast), color var(--transition-fast);
}
.link-arrow:hover {
  color: var(--color-orange-dark);
  gap: 12px;
}
.link-arrow:focus-visible {
  outline: 3px solid var(--color-orange-primary);
  outline-offset: 3px;
  border-radius: 2px;
}
.link-arrow svg {
  width: 18px;
  height: 18px;
  transition: transform var(--transition-fast);
  transform: scaleX(-1); /* RTL: mirror the arrow */
}
.link-arrow:hover svg {
  transform: scaleX(-1) translateX(-4px);
}

/* ============================================================
   6. HEADER & NAVIGATION
   ============================================================ */
.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1000;
  background-color: var(--color-white);
  transition: box-shadow var(--transition-medium), background-color var(--transition-medium);
}

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

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--container-wide);
  margin: 0 auto;
  padding: 0 var(--space-md);
  height: 80px;
}

.header-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 24px;
  color: var(--color-dark);
}

.header-logo .logo-icon {
  width: 48px;
  height: 48px;
}

.header-logo span {
  color: var(--color-orange-primary);
}

/* Main Navigation */
.main-nav {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 28px 18px;
  font-family: var(--font-body);
  font-size: 15px;
  font-weight: 500;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.nav-link:hover,
.nav-link.active {
  color: var(--color-orange-primary);
}

.nav-link .chevron {
  width: 12px;
  height: 12px;
  transition: transform var(--transition-fast);
}

.nav-item:hover .chevron,
.nav-item.open .chevron {
  transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
  position: absolute;
  top: 100%;
  right: 0;
  min-width: 280px;
  background: var(--color-white);
  border-radius: 0 0 var(--radius-card) var(--radius-card);
  box-shadow: var(--shadow-mega);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all var(--transition-medium);
  padding: var(--space-sm) 0;
  z-index: 100;
}

.nav-item:hover .mega-menu,
.nav-item.open .mega-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.mega-menu a {
  display: block;
  padding: 10px var(--space-md);
  font-size: 15px;
  color: var(--color-dark);
  transition: background-color var(--transition-fast), color var(--transition-fast);
}

.mega-menu a:hover,
.mega-menu a:focus-visible {
  background-color: var(--color-gray-light);
  color: var(--color-orange-primary);
  outline: none;
}

/* Header Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
}

/* Mobile Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  cursor: pointer;
  z-index: 1010;
}

.hamburger span {
  display: block;
  width: 28px;
  height: 3px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: all var(--transition-fast);
}

.hamburger.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 6px);
}
.hamburger.active span:nth-child(2) {
  opacity: 0;
}
.hamburger.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -6px);
}

/* Mobile Menu Overlay */
.mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: var(--color-white);
  z-index: 1005;
  padding-top: 100px;
  overflow-y: auto;
}

.mobile-menu.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

.mobile-menu .mobile-nav-item {
  border-bottom: 1px solid var(--color-gray-medium);
}

.mobile-menu .mobile-nav-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--space-sm) var(--space-md);
  font-size: 18px;
  font-weight: 500;
  color: var(--color-dark);
}

.mobile-menu .mobile-submenu {
  display: none;
  padding: 0 var(--space-md) var(--space-sm);
  background-color: var(--color-gray-light);
}

.mobile-menu .mobile-submenu.open {
  display: block;
}

.mobile-menu .mobile-submenu a {
  display: block;
  padding: 10px var(--space-sm);
  font-size: 16px;
  color: var(--color-gray-text);
}

.mobile-menu .mobile-submenu a:hover {
  color: var(--color-orange-primary);
}

/* ============================================================
   7. HERO SLIDER
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 600px;
  max-height: 1000px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}

.hero-slide.active {
  opacity: 1;
}

.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero-slide-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  /* RTL: gradient dark on right (where text sits) */
  background: linear-gradient(to left,
    rgba(0, 0, 0, 0.75) 0%,
    rgba(0, 0, 0, 0.50) 40%,
    rgba(0, 0, 0, 0.15) 70%,
    transparent 100%
  );
}

.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: 100%;
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 var(--space-md);
  padding-top: 80px; /* account for fixed header */
}

.hero-content .hero-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 96, 28, 0.15);
  color: var(--color-orange-light);
  font-size: 14px;
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
  backdrop-filter: blur(4px);
  border: 1px solid rgba(232, 96, 28, 0.3);
  width: fit-content;
}

.hero-title {
  font-family: var(--font-display);
  font-size: var(--text-hero);
  font-weight: 800;
  color: var(--color-white);
  line-height: 1.25;
  margin-bottom: var(--space-sm);
  max-width: 700px;
}

.hero-subtitle {
  font-size: clamp(16px, 1.5vw, 20px);
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: var(--space-md);
  max-width: 600px;
  line-height: var(--line-height-arabic);
}

.hero-buttons {
  display: flex;
  gap: var(--space-sm);
  flex-wrap: wrap;
}

/* Slider Controls */
.hero-controls {
  position: absolute;
  bottom: var(--space-md);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  z-index: 3;
}

.hero-dots {
  display: flex;
  gap: 10px;
}

.hero-dot {
  width: 12px;
  height: 12px;
  border-radius: var(--radius-circle);
  background: rgba(255, 255, 255, 0.4);
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.hero-dot.active {
  background: var(--color-orange-primary);
  width: 36px;
  border-radius: 6px;
}

.hero-arrow {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-circle);
  background: rgba(232, 96, 28, 0.9);
  color: var(--color-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all var(--transition-fast);
  border: none;
}

.hero-arrow:hover {
  background: var(--color-orange-primary);
  transform: scale(1.1);
}

.hero-arrow svg {
  width: 20px;
  height: 20px;
}

/* ============================================================
   8. SECTION HEADERS
   ============================================================ */
.section-header {
  margin-bottom: var(--space-lg);
}

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

.section-eyebrow {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(232, 96, 28, 0.08);
  color: var(--color-orange-primary);
  font-size: var(--text-caption);
  font-weight: 700;
  border-radius: var(--radius-pill);
  margin-bottom: var(--space-sm);
  letter-spacing: 0.5px;
}

.section-title {
  font-family: var(--font-display);
  font-size: var(--text-h2);
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-sm);
}

.section-title--orange {
  color: var(--color-orange-primary);
}

.section-title--white {
  color: var(--color-white);
}

.section-subtitle {
  font-size: var(--text-body);
  color: var(--color-gray-text);
  max-width: 600px;
  line-height: var(--line-height-arabic);
}

.section-header.centered .section-subtitle {
  margin: 0 auto;
}

/* ============================================================
   9. CARDS
   ============================================================ */

/* Feature Card (Why Choose Us) */
.feature-card {
  background: var(--color-white);
  padding: var(--space-md);
  border-radius: var(--radius-card);
  box-shadow: var(--shadow-card);
  transition: all var(--transition-medium);
}

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

.feature-card .card-icon {
  width: 60px;
  height: 60px;
  margin-bottom: var(--space-sm);
  color: var(--color-orange-primary);
}

.feature-card .card-icon svg {
  width: 100%;
  height: 100%;
}

.feature-card h3 {
  font-size: var(--text-h3);
  margin-bottom: var(--space-xs);
}

.feature-card p {
  color: var(--color-gray-text);
  font-size: 15px;
}

/* Product Card */
.product-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
}

.product-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--color-orange-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.product-card:hover::after {
  transform: scaleX(1);
}

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

.product-card .product-image {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--color-gray-light);
}

.product-card .product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.product-card:hover .product-image img {
  transform: scale(1.05);
}

.product-card .product-info {
  padding: var(--space-sm);
}

.product-card .product-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: 4px;
}

.product-card .product-scientific {
  font-size: var(--text-caption);
  color: var(--color-gray-text);
  font-style: italic;
  margin-bottom: var(--space-xs);
}

.product-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: var(--space-sm);
}

.tag {
  display: inline-block;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 500;
  border-radius: var(--radius-pill);
  border: 1px solid var(--color-orange-primary);
  color: var(--color-orange-primary);
  background: rgba(232, 96, 28, 0.05);
}

.tag--filled {
  background: var(--color-orange-primary);
  color: var(--color-white);
  border-color: var(--color-orange-primary);
}

.tag--green {
  border-color: var(--color-green-subtle);
  color: var(--color-green-subtle);
  background: rgba(46, 125, 50, 0.05);
}

/* Animal Circle Card */
.animal-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--space-sm);
  cursor: pointer;
  transition: transform var(--transition-fast);
}

.animal-card:hover {
  transform: translateY(-4px);
}

.animal-circle {
  width: 180px;
  height: 180px;
  border-radius: var(--radius-circle);
  overflow: hidden;
  border: 4px solid transparent;
  transition: border-color var(--transition-medium), box-shadow var(--transition-medium);
}

.animal-card:hover .animal-circle {
  border-color: var(--color-orange-primary);
  box-shadow: 0 0 0 4px rgba(232, 96, 28, 0.15);
}

.animal-circle img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.animal-card:hover .animal-circle img {
  transform: scale(1.08);
}

.animal-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  transition: color var(--transition-fast);
}

.animal-card:hover .animal-name {
  color: var(--color-orange-primary);
}

/* Blog / News Card */
.blog-card {
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  overflow: hidden;
  transition: all var(--transition-medium);
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--color-orange-primary);
  transform: scaleX(0);
  transition: transform var(--transition-medium);
}

.blog-card:hover::after {
  transform: scaleX(1);
}

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

.blog-card .blog-image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
}

.blog-card .blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.blog-card:hover .blog-image img {
  transform: scale(1.05);
}

.blog-card .blog-category {
  position: absolute;
  top: var(--space-sm);
  right: var(--space-sm);
  z-index: 2;
}

.blog-card .blog-content {
  padding: var(--space-sm);
}

.blog-card .blog-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-dark);
  margin-bottom: var(--space-xs);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color var(--transition-fast);
}

.blog-card:hover .blog-title {
  color: var(--color-orange-primary);
}

.blog-card .blog-excerpt {
  font-size: 14px;
  color: var(--color-gray-text);
  margin-bottom: var(--space-sm);
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.blog-card .blog-meta {
  display: flex;
  align-items: center;
  gap: var(--space-sm);
  font-size: var(--text-caption);
  color: var(--color-gray-text);
}

.blog-meta-divider {
  width: 1px;
  height: 14px;
  background: var(--color-gray-medium);
}

/* ============================================================
   10. STATS
   ============================================================ */
.stats-row {
  display: flex;
  align-items: center;
  gap: var(--space-lg);
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-family: var(--font-display);
  font-size: clamp(32px, 4vw, 56px);
  font-weight: 800;
  color: var(--color-orange-primary);
  line-height: 1;
  margin-bottom: var(--space-xs);
}

.stat-number--white {
  color: var(--color-white);
}

.stat-number--navy {
  color: var(--color-navy);
}

.stat-label {
  font-size: 14px;
  font-weight: 500;
  color: var(--color-gray-text);
}

.stat-label--white {
  color: rgba(255, 255, 255, 0.7);
}

.stats-divider {
  width: 1px;
  height: 60px;
  background: var(--color-gray-medium);
}

.stats-divider--white {
  background: rgba(255, 255, 255, 0.2);
}

/* ============================================================
   11. FORMS
   ============================================================ */
.form-group {
  margin-bottom: var(--space-sm);
}

.form-label {
  display: block;
  font-size: 14px;
  font-weight: 500;
  color: var(--color-dark);
  margin-bottom: 6px;
}

.form-label .required {
  color: var(--color-error);
}

.form-input,
.form-select,
.form-textarea {
  width: 100%;
  padding: 12px 16px;
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--color-dark);
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
  direction: rtl;
  text-align: right;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  border-color: var(--color-orange-primary);
  box-shadow: 0 0 0 3px rgba(232, 96, 28, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
  color: var(--color-gray-text);
  opacity: 0.7;
}

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

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23666' stroke-width='2' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: left 16px center;
  padding-left: 40px;
}

.form-error {
  font-size: 13px;
  color: var(--color-error);
  margin-top: 4px;
}

/* ============================================================
   12. TABS
   ============================================================ */
.tabs {
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  overflow: hidden;
}

.tabs-nav {
  display: flex;
  border-bottom: 1px solid var(--color-gray-medium);
  background: var(--color-gray-light);
  overflow-x: auto;
}

.tab-btn {
  padding: 14px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-text);
  background: transparent;
  border: none;
  border-bottom: 3px solid transparent;
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.tab-btn:hover {
  color: var(--color-orange-primary);
}

.tab-btn.active {
  color: var(--color-orange-primary);
  border-bottom-color: var(--color-orange-primary);
  background: var(--color-white);
}

.tab-panel {
  display: none;
  padding: var(--space-md);
}

.tab-panel.active {
  display: block;
  animation: fadeIn 0.3s ease;
}

/* ============================================================
   13. FILTER TABS (News)
   ============================================================ */
.filter-tabs {
  display: flex;
  gap: var(--space-xs);
  margin-bottom: var(--space-md);
  overflow-x: auto;
  padding-bottom: var(--space-xs);
}

.filter-tab {
  padding: 10px 24px;
  font-size: 15px;
  font-weight: 500;
  color: var(--color-gray-text);
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-pill);
  cursor: pointer;
  transition: all var(--transition-fast);
  white-space: nowrap;
}

.filter-tab:hover {
  border-color: var(--color-orange-primary);
  color: var(--color-orange-primary);
}

.filter-tab.active {
  background: var(--color-orange-primary);
  border-color: var(--color-orange-primary);
  color: var(--color-white);
}

/* ============================================================
   14. SIDEBAR FILTERS (Products)
   ============================================================ */
.filter-panel {
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  padding: var(--space-sm);
}

.filter-group {
  margin-bottom: var(--space-sm);
  padding-bottom: var(--space-sm);
  border-bottom: 1px solid var(--color-gray-medium);
}

.filter-group:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.filter-group h4 {
  font-size: 16px;
  font-weight: 700;
  margin-bottom: var(--space-xs);
  color: var(--color-dark);
}

.filter-checkbox {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  padding: 6px 0;
  cursor: pointer;
  font-size: 14px;
  color: var(--color-dark);
}

.filter-checkbox input[type="checkbox"] {
  width: 18px;
  height: 18px;
  accent-color: var(--color-orange-primary);
  cursor: pointer;
}

/* Search Bar */
.search-bar {
  position: relative;
  margin-bottom: var(--space-md);
}

.search-bar input {
  width: 100%;
  padding: 14px 24px;
  padding-left: 56px;
  font-size: 16px;
  border: 2px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  transition: border-color var(--transition-fast);
}

.search-bar input:focus {
  border-color: var(--color-orange-primary);
}

.search-bar .search-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 22px;
  height: 22px;
  color: var(--color-orange-primary);
}

/* ============================================================
   15. BREADCRUMB
   ============================================================ */
.breadcrumb {
  display: flex;
  align-items: center;
  gap: var(--space-xs);
  font-size: var(--text-caption);
  color: var(--color-gray-text);
  margin-bottom: var(--space-md);
  flex-wrap: wrap;
}

.breadcrumb a {
  color: var(--color-gray-text);
  transition: color var(--transition-fast);
}

.breadcrumb a:hover {
  color: var(--color-orange-primary);
}

.breadcrumb .separator {
  color: var(--color-gray-medium);
}

.breadcrumb .current {
  color: var(--color-dark);
  font-weight: 500;
}

/* ============================================================
   16. TIMELINE
   ============================================================ */
.timeline {
  display: flex;
  justify-content: space-between;
  position: relative;
  padding: var(--space-lg) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  top: 50%;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--color-gray-medium);
  transform: translateY(-50%);
}

.timeline-item {
  position: relative;
  text-align: center;
  z-index: 1;
}

.timeline-dot {
  width: 24px;
  height: 24px;
  border-radius: var(--radius-circle);
  background: var(--color-orange-primary);
  margin: 0 auto var(--space-xs);
  position: relative;
}

.timeline-dot::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: var(--radius-circle);
  border: 2px solid var(--color-orange-primary);
  opacity: 0.3;
}

.timeline-year {
  font-family: var(--font-display);
  font-size: 22px;
  font-weight: 800;
  color: var(--color-orange-primary);
  margin-bottom: 4px;
}

.timeline-label {
  font-size: var(--text-caption);
  color: var(--color-gray-text);
  max-width: 140px;
}

/* ============================================================
   17. FOOTER
   ============================================================ */
.site-footer {
  background: var(--color-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: var(--space-xl) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--space-lg);
  padding-bottom: var(--space-lg);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-about .footer-logo {
  font-family: var(--font-display);
  font-size: 24px;
  font-weight: 800;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
  display: flex;
  align-items: center;
  gap: 10px;
}

.footer-about .footer-logo span {
  color: var(--color-orange-primary);
}

.footer-about p {
  font-size: 14px;
  line-height: var(--line-height-arabic);
  margin-bottom: var(--space-sm);
}

.footer-social {
  display: flex;
  gap: var(--space-sm);
}

.footer-social a {
  width: 40px;
  height: 40px;
  border-radius: var(--radius-circle);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: all var(--transition-fast);
}

.footer-social a:hover {
  border-color: var(--color-orange-primary);
  color: var(--color-orange-primary);
  background: rgba(232, 96, 28, 0.1);
}

.footer-social a svg {
  width: 18px;
  height: 18px;
}

.footer-column h4 {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-column a {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.6);
  transition: color var(--transition-fast);
}

.footer-column a:hover {
  color: var(--color-orange-primary);
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: var(--space-sm);
}

.footer-contact-item svg {
  width: 18px;
  height: 18px;
  color: var(--color-orange-primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.footer-contact-item span {
  font-size: 14px;
}

.footer-bottom {
  padding: var(--space-sm) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: var(--text-caption);
}

.footer-bottom-links {
  display: flex;
  gap: var(--space-sm);
}

.footer-bottom-links a:hover {
  color: var(--color-orange-primary);
}

/* ============================================================
   18. PAGE HERO (Inner Pages)
   ============================================================ */
.page-hero {
  position: relative;
  padding: var(--space-2xl) 0 var(--space-xl);
  margin-top: 80px; /* header offset */
  overflow: hidden;
}

.page-hero--dark {
  background-color: var(--color-navy);
  color: var(--color-white);
}

.page-hero--dark::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(13, 43, 78, 0.95), rgba(13, 43, 78, 0.7));
  z-index: 1;
}

.page-hero--gray {
  background-color: var(--color-gray-light);
}

.page-hero--image {
  background-size: cover;
  background-position: center;
}

.page-hero .container {
  position: relative;
  z-index: 2;
}

.page-hero h1 {
  margin-bottom: var(--space-sm);
}

.page-hero--dark h1 {
  color: var(--color-white);
}

.page-hero p {
  max-width: 600px;
}

.page-hero--dark p {
  color: rgba(255, 255, 255, 0.8);
}

/* ============================================================
   19. INVESTMENT SECTION (Navy Dark)
   ============================================================ */
.invest-section {
  background: var(--color-navy);
  padding: var(--space-xl) 0;
  position: relative;
  overflow: hidden;
}

.invest-section::before {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: var(--radius-circle);
  background: radial-gradient(circle, rgba(232, 96, 28, 0.08), transparent);
  top: -100px;
  left: -100px;
}

.invest-content {
  color: var(--color-white);
}

.invest-content h2 {
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.invest-content p {
  color: rgba(255, 255, 255, 0.75);
  margin-bottom: var(--space-md);
}

/* Floating Form Card */
.floating-card {
  background: var(--color-white);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
  color: var(--color-dark);
}

.floating-card h3 {
  font-size: 22px;
  margin-bottom: var(--space-xs);
}

.floating-card .card-subtitle {
  font-size: 14px;
  color: var(--color-gray-text);
  margin-bottom: var(--space-md);
}

/* ============================================================
   20. CTA BANNER
   ============================================================ */
.cta-banner {
  background: var(--color-orange-primary);
  padding: var(--space-xl) 0;
  text-align: center;
}

.cta-banner h2 {
  font-size: var(--text-h2);
  color: var(--color-white);
  margin-bottom: var(--space-sm);
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 18px;
  max-width: 600px;
  margin: 0 auto var(--space-md);
}

.cta-banner .hero-buttons {
  justify-content: center;
}

/* ============================================================
   21. PARTNER LOGOS
   ============================================================ */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: var(--space-md);
  align-items: center;
}

.partner-logo {
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  padding: var(--space-md);
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100px;
  transition: all var(--transition-medium);
}

.partner-logo:hover {
  border-color: var(--color-orange-primary);
  box-shadow: var(--shadow-card);
}

/* ============================================================
   22. PAGINATION
   ============================================================ */
.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-xs);
  margin-top: var(--space-lg);
}

.pagination a,
.pagination span {
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-card);
  font-size: 15px;
  font-weight: 500;
  transition: all var(--transition-fast);
}

.pagination a {
  color: var(--color-dark);
  border: 1px solid var(--color-gray-medium);
}

.pagination a:hover {
  border-color: var(--color-orange-primary);
  color: var(--color-orange-primary);
}

.pagination .active {
  background: var(--color-orange-primary);
  color: var(--color-white);
  border: 1px solid var(--color-orange-primary);
}

/* ============================================================
   23. MAP
   ============================================================ */
.map-container {
  width: 100%;
  height: 450px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-gray-medium);
}

.map-container iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   24. CONTACT INFO CARDS
   ============================================================ */
.contact-info-card {
  display: flex;
  align-items: flex-start;
  gap: var(--space-sm);
  padding: var(--space-sm);
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  margin-bottom: var(--space-sm);
  transition: all var(--transition-fast);
}

.contact-info-card:hover {
  border-color: var(--color-orange-primary);
  box-shadow: var(--shadow-card);
}

.contact-info-card .info-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-card);
  background: rgba(232, 96, 28, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-info-card .info-icon svg {
  width: 22px;
  height: 22px;
  color: var(--color-orange-primary);
}

.contact-info-card h4 {
  font-size: 14px;
  font-weight: 700;
  margin-bottom: 2px;
}

.contact-info-card p {
  font-size: 15px;
  color: var(--color-gray-text);
}

/* ============================================================
   25. FEATURED POST (Large Card)
   ============================================================ */
.featured-post {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  background: var(--color-white);
  border: 1px solid var(--color-gray-medium);
  border-radius: var(--radius-card);
  overflow: hidden;
  margin-bottom: var(--space-lg);
  position: relative;
  transition: all var(--transition-medium);
}

.featured-post::after {
  content: '';
  position: absolute;
  bottom: 0;
  right: 0;
  left: 0;
  height: 3px;
  background: var(--color-orange-primary);
}

.featured-post:hover {
  box-shadow: var(--shadow-card-hover);
}

.featured-post .featured-image {
  overflow: hidden;
}

.featured-post .featured-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--transition-medium);
}

.featured-post:hover .featured-image img {
  transform: scale(1.03);
}

.featured-post .featured-content {
  padding: var(--space-md);
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.featured-post .featured-content h2 {
  font-size: 26px;
  margin-bottom: var(--space-sm);
  transition: color var(--transition-fast);
}

.featured-post:hover .featured-content h2 {
  color: var(--color-orange-primary);
}

.featured-post .featured-content p {
  color: var(--color-gray-text);
  margin-bottom: var(--space-sm);
}

/* ============================================================
   26. PRODUCT DETAIL - Gallery
   ============================================================ */
.product-gallery {
  position: sticky;
  top: 100px;
}

.product-gallery .main-image {
  width: 100%;
  aspect-ratio: 1;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 1px solid var(--color-gray-medium);
  margin-bottom: var(--space-sm);
  background: var(--color-gray-light);
}

.product-gallery .main-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-gallery .thumbnails {
  display: flex;
  gap: var(--space-xs);
}

.product-gallery .thumb {
  width: 80px;
  height: 80px;
  border-radius: var(--radius-card);
  overflow: hidden;
  border: 2px solid var(--color-gray-medium);
  cursor: pointer;
  transition: border-color var(--transition-fast);
}

.product-gallery .thumb.active,
.product-gallery .thumb:hover {
  border-color: var(--color-orange-primary);
}

.product-gallery .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Product Detail Info */
.product-detail-info .orange-divider {
  width: 80px;
  height: 3px;
  background: var(--color-orange-primary);
  margin: var(--space-sm) 0;
}

/* ============================================================
   27. ANIMATIONS
   ============================================================ */
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideDown {
  from {
    opacity: 0;
    transform: translateY(-10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.05); }
}

@keyframes countUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* Scroll-triggered animation classes */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
  opacity: 1;
  transform: translateY(0);
}

.animate-on-scroll.delay-1 { transition-delay: 0.1s; }
.animate-on-scroll.delay-2 { transition-delay: 0.2s; }
.animate-on-scroll.delay-3 { transition-delay: 0.3s; }
.animate-on-scroll.delay-4 { transition-delay: 0.4s; }
.animate-on-scroll.delay-5 { transition-delay: 0.5s; }
.animate-on-scroll.delay-6 { transition-delay: 0.6s; }

/* ============================================================
   28. RESPONSIVE — TABLET (768px - 1199px)
   ============================================================ */
@media (max-width: 1199px) {
  .container-wide {
    padding: 0 var(--space-md);
  }

  .header-inner {
    padding: 0 var(--space-sm);
  }

  .main-nav {
    display: none;
  }

  .hamburger {
    display: flex;
  }

  .grid-4 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-6 {
    grid-template-columns: repeat(3, 1fr);
  }

  .grid-50-50,
  .grid-60-40,
  .grid-40-60 {
    grid-template-columns: 1fr;
  }

  .hero-title {
    font-size: clamp(28px, 5vw, 48px);
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .partners-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .featured-post {
    grid-template-columns: 1fr;
  }

  .stats-row {
    gap: var(--space-md);
  }

  .timeline {
    flex-direction: column;
    gap: var(--space-md);
    padding-right: var(--space-lg);
  }

  .timeline::before {
    top: 0;
    bottom: 0;
    right: 30px;
    left: auto;
    width: 3px;
    height: 100%;
    transform: none;
  }

  .timeline-item {
    text-align: right;
    padding-right: var(--space-lg);
  }

  .timeline-dot {
    position: absolute;
    right: -42px;
    top: 0;
  }

  .animal-circle {
    width: 140px;
    height: 140px;
  }
}

/* ============================================================
   29. RESPONSIVE — MOBILE (< 768px)
   ============================================================ */
@media (max-width: 767px) {
  .section {
    padding: var(--space-lg) 0;
  }

  .container {
    padding: 0 var(--space-sm);
  }

  .hero {
    min-height: 500px;
  }

  .hero-title {
    font-size: clamp(24px, 6vw, 36px);
  }

  .hero-subtitle {
    font-size: 15px;
  }

  .hero-buttons {
    flex-direction: column;
  }

  .hero-buttons .btn {
    width: 100%;
    justify-content: center;
  }

  .grid-2,
  .grid-3,
  .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-6 {
    grid-template-columns: repeat(2, 1fr);
  }

  .grid-25-75 {
    grid-template-columns: 1fr;
  }

  .stats-row {
    flex-direction: column;
    gap: var(--space-md);
  }

  .stats-divider {
    width: 60px;
    height: 1px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--space-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--space-xs);
    text-align: center;
  }

  .section-header {
    margin-bottom: var(--space-md);
  }

  .partners-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .hero-controls {
    bottom: var(--space-sm);
  }

  .hero-arrow {
    width: 40px;
    height: 40px;
  }

  .cta-banner {
    padding: var(--space-lg) 0;
  }

  .page-hero {
    padding: var(--space-xl) 0 var(--space-lg);
  }

  .map-container {
    height: 300px;
  }

  .product-gallery {
    position: static;
  }

  .animal-circle {
    width: 120px;
    height: 120px;
  }

  .header-actions .btn {
    display: none;
  }
}

/* ============================================================
   30. UTILITY CLASSES
   ============================================================ */
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* Skip-to-content link: hidden until focused */
.sr-only:focus,
.sr-only:focus-visible {
  position: fixed;
  width: auto;
  height: auto;
  padding: 10px 20px;
  margin: 0;
  overflow: visible;
  clip: auto;
  white-space: nowrap;
  top: 8px;
  right: 8px;
  z-index: 9999;
  background: var(--color-orange-primary);
  color: var(--color-white);
  border-radius: var(--radius-btn);
  font-weight: 700;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0,0,0,0.3);
}

.mb-0  { margin-bottom: 0 !important; }
.mb-xs { margin-bottom: var(--space-xs) !important; }
.mb-sm { margin-bottom: var(--space-sm) !important; }
.mb-md { margin-bottom: var(--space-md) !important; }
.mb-lg { margin-bottom: var(--space-lg) !important; }

.mt-0  { margin-top: 0 !important; }
.mt-sm { margin-top: var(--space-sm) !important; }
.mt-md { margin-top: var(--space-md) !important; }
.mt-lg { margin-top: var(--space-lg) !important; }

.pt-0  { padding-top: 0 !important; }
.pb-0  { padding-bottom: 0 !important; }

.w-100 { width: 100%; }

.text-orange { color: var(--color-orange-primary) !important; }
.text-white  { color: var(--color-white) !important; }
.text-gray   { color: var(--color-gray-text) !important; }
.text-navy   { color: var(--color-navy) !important; }

.bg-white    { background-color: var(--color-white) !important; }
.bg-gray     { background-color: var(--color-gray-light) !important; }
.bg-navy     { background-color: var(--color-navy) !important; }
.bg-orange   { background-color: var(--color-orange-primary) !important; }
.bg-dark     { background-color: var(--color-dark) !important; }

/* ============================================================
   31. PRINT STYLES
   ============================================================ */
@media print {
  .site-header,
  .site-footer,
  .cta-banner,
  .hero-controls,
  .hamburger {
    display: none !important;
  }

  body {
    color: #000;
    background: #fff;
  }

  .hero {
    height: auto;
    min-height: auto;
  }
}
