/* ================================================================
   YASAN DESIGN SYSTEM  v1.0
   شرکت توسعه فرآیندهای یاسان
   ----------------------------------------------------------------
   RTL-First | Bootstrap 5.3 Compatible | Vazirmatn
   ================================================================ */

/* ================================================================
   00. FONT IMPORT
   ================================================================ */
@import url('https://fonts.googleapis.com/css2?family=Vazirmatn:wght@300;400;500;600;700;800&family=Inter:wght@400;500;600;700&display=swap');

/* ================================================================
   01. CSS CUSTOM PROPERTIES — Design Tokens
   ================================================================ */
:root {

  /* ── Primary Palette (Trust & Professionalism) ── */
  --ys-primary-950: #060F1C;
  --ys-primary-900: #0A2540;
  --ys-primary-800: #0D2E4E;
  --ys-primary-700: #1B3B6F;
  --ys-primary-600: #224B8A;
  --ys-primary-500: #2E5BBA;
  --ys-primary-400: #4A74CC;
  --ys-primary-300: #7B9EDF;
  --ys-primary-200: #B5CAEF;
  --ys-primary-100: #E8F0FE;
  --ys-primary-50:  #F0F4FF;

  /* ── Neutral Palette (Sophistication) ── */
  --ys-gray-900: #1A202C;
  --ys-gray-800: #2D3748;
  --ys-gray-700: #4A5568;
  --ys-gray-600: #718096;
  --ys-gray-500: #A0AEC0;
  --ys-gray-400: #CBD5E0;
  --ys-gray-300: #E2E8F0;
  --ys-gray-200: #EDF2F7;
  --ys-gray-100: #F7FAFC;
  --ys-gray-50:  #FAFBFC;

  /* ── Accent Colors ── */
  --ys-gold:          #C9A961;
  --ys-gold-dark:     #A8873D;
  --ys-gold-light:    #E8D5A3;
  --ys-gold-pale:     #FBF5E6;
  --ys-success:       #276749;
  --ys-success-mid:   #2F855A;
  --ys-success-light: #C6F6D5;
  --ys-warning:       #C05621;
  --ys-warning-light: #FEEBC8;
  --ys-error:         #C53030;
  --ys-error-light:   #FED7D7;
  --ys-info:          #2B6CB0;
  --ys-info-light:    #BEE3F8;

  /* ── Surface ── */
  --ys-white:     #FFFFFF;
  --ys-off-white: #FAFBFC;
  --ys-canvas:    #F5F8FE;

  /* ── Typography ── */
  --ys-font-fa:    'Vazirmatn', 'IRANSans', system-ui, sans-serif;
  --ys-font-en:    'Inter', 'Segoe UI', system-ui, sans-serif;
  --ys-font-mono:  'Fira Code', 'Courier New', monospace;

  --ys-text-xs:   0.75rem;     /* 12px */
  --ys-text-sm:   0.875rem;    /* 14px */
  --ys-text-base: 1rem;        /* 16px */
  --ys-text-lg:   1.125rem;    /* 18px */
  --ys-text-xl:   1.25rem;     /* 20px */
  --ys-text-2xl:  1.5rem;      /* 24px */
  --ys-text-3xl:  1.875rem;    /* 30px */
  --ys-text-4xl:  2.25rem;     /* 36px */
  --ys-text-5xl:  3rem;        /* 48px */
  --ys-text-6xl:  3.75rem;     /* 60px */

  --ys-lh-tight:  1.3;
  --ys-lh-snug:   1.5;
  --ys-lh-normal: 1.8;
  --ys-lh-loose:  2;

  --ys-fw-light:    300;
  --ys-fw-normal:   400;
  --ys-fw-medium:   500;
  --ys-fw-semibold: 600;
  --ys-fw-bold:     700;
  --ys-fw-black:    800;

  /* ── Spacing Scale ── */
  --ys-sp-1:  0.25rem;
  --ys-sp-2:  0.5rem;
  --ys-sp-3:  0.75rem;
  --ys-sp-4:  1rem;
  --ys-sp-5:  1.25rem;
  --ys-sp-6:  1.5rem;
  --ys-sp-8:  2rem;
  --ys-sp-10: 2.5rem;
  --ys-sp-12: 3rem;
  --ys-sp-16: 4rem;
  --ys-sp-20: 5rem;
  --ys-sp-24: 6rem;
  --ys-sp-32: 8rem;

  /* ── Elevation / Shadows ── */
  --ys-shadow-xs: 0 1px 2px rgba(10, 37, 64, 0.04);
  --ys-shadow-sm: 0 1px 3px rgba(10, 37, 64, 0.07), 0 1px 2px rgba(10, 37, 64, 0.04);
  --ys-shadow-md: 0 4px 8px rgba(10, 37, 64, 0.08), 0 2px 4px rgba(10, 37, 64, 0.05);
  --ys-shadow-lg: 0 12px 28px rgba(10, 37, 64, 0.11), 0 4px 12px rgba(10, 37, 64, 0.06);
  --ys-shadow-xl: 0 24px 48px rgba(10, 37, 64, 0.14), 0 8px 20px rgba(10, 37, 64, 0.07);
  --ys-shadow-2xl:0 40px 80px rgba(10, 37, 64, 0.18);
  --ys-shadow-inset: inset 0 2px 4px rgba(10, 37, 64, 0.07);
  --ys-shadow-gold: 0 8px 24px rgba(201, 169, 97, 0.30);

  /* ── Border Radius ── */
  --ys-r-xs:   2px;
  --ys-r-sm:   4px;
  --ys-r:      6px;
  --ys-r-md:   8px;
  --ys-r-lg:   12px;
  --ys-r-xl:   16px;
  --ys-r-2xl:  24px;
  --ys-r-3xl:  32px;
  --ys-r-full: 9999px;

  /* ── Transitions ── */
  --ys-ease-fast:   150ms ease;
  --ys-ease:        250ms ease;
  --ys-ease-slow:   380ms ease;
  --ys-ease-spring: 420ms cubic-bezier(0.34, 1.56, 0.64, 1);
  --ys-ease-out:    300ms cubic-bezier(0.0, 0.0, 0.2, 1);
  --ys-ease-in-out: 300ms cubic-bezier(0.4, 0, 0.2, 1);

  /* ── Z-index Scale ── */
  --ys-z-0:       0;
  --ys-z-10:      10;
  --ys-z-20:      20;
  --ys-z-sticky:  100;
  --ys-z-overlay: 500;
  --ys-z-modal:   1000;
  --ys-z-nav:     1100;
  --ys-z-tooltip: 1200;

  /* ── Navbar height ── */
  --ys-nav-h: 80px;
  --ys-nav-h-sm: 64px;
}


/* ================================================================
   02. RTL RESET & BASE STYLES
   ================================================================ */

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

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

body {
  font-family: var(--ys-font-fa);
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-normal);
  line-height: var(--ys-lh-normal);
  color: var(--ys-gray-900);
  background-color: var(--ys-white);
  direction: rtl;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

a {
  color: var(--ys-primary-500);
  text-decoration: none;
  transition: color var(--ys-ease-fast);
}
a:hover { color: var(--ys-primary-700); }

ul, ol { list-style: none; }

button { cursor: pointer; border: none; background: none; font-family: inherit; }

input, textarea, select {
  font-family: var(--ys-font-fa);
  font-size: var(--ys-text-base);
}

/* ── Scrollbar ── */
::-webkit-scrollbar { width: 6px; height: 6px; }
::-webkit-scrollbar-track { background: var(--ys-gray-100); }
::-webkit-scrollbar-thumb {
  background: var(--ys-primary-300);
  border-radius: var(--ys-r-full);
}
::-webkit-scrollbar-thumb:hover { background: var(--ys-primary-500); }

/* ── Selection ── */
::selection {
  background: var(--ys-primary-100);
  color: var(--ys-primary-900);
}

/* ── Focus Ring ── */
:focus-visible {
  outline: 2px solid var(--ys-primary-500);
  outline-offset: 3px;
  border-radius: var(--ys-r-sm);
}


/* ================================================================
   03. TYPOGRAPHY
   ================================================================ */

/* ── Display & Headings ── */
.ys-display-1 {
  font-size: clamp(2.25rem, 5vw, var(--ys-text-6xl));
  font-weight: var(--ys-fw-black);
  line-height: var(--ys-lh-tight);
  letter-spacing: -0.02em;
  color: var(--ys-gray-900);
}
.ys-display-2 {
  font-size: clamp(1.875rem, 4vw, var(--ys-text-5xl));
  font-weight: var(--ys-fw-bold);
  line-height: var(--ys-lh-tight);
  letter-spacing: -0.015em;
  color: var(--ys-gray-900);
}

h1, .ys-h1 {
  font-size: clamp(1.625rem, 3.5vw, var(--ys-text-4xl));
  font-weight: var(--ys-fw-bold);
  line-height: var(--ys-lh-snug);
  letter-spacing: -0.01em;
  color: var(--ys-gray-900);
}
h2, .ys-h2 {
  font-size: clamp(1.375rem, 2.8vw, var(--ys-text-3xl));
  font-weight: var(--ys-fw-bold);
  line-height: 1.4;
  color: var(--ys-gray-900);
}
h3, .ys-h3 {
  font-size: clamp(1.125rem, 2.2vw, var(--ys-text-2xl));
  font-weight: var(--ys-fw-semibold);
  line-height: 1.5;
  color: var(--ys-gray-800);
}
h4, .ys-h4 {
  font-size: var(--ys-text-xl);
  font-weight: var(--ys-fw-semibold);
  line-height: 1.5;
  color: var(--ys-gray-800);
}
h5, .ys-h5 {
  font-size: var(--ys-text-lg);
  font-weight: var(--ys-fw-medium);
  color: var(--ys-gray-700);
}
h6, .ys-h6 {
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-medium);
  color: var(--ys-gray-700);
}

/* ── Body Text ── */
.ys-lead {
  font-size: var(--ys-text-lg);
  line-height: var(--ys-lh-loose);
  color: var(--ys-gray-700);
  font-weight: var(--ys-fw-normal);
}
.ys-body { font-size: var(--ys-text-base); line-height: var(--ys-lh-normal); }
.ys-body-sm { font-size: var(--ys-text-sm); line-height: 1.7; }
.ys-caption { font-size: var(--ys-text-xs); line-height: 1.6; color: var(--ys-gray-500); }

/* ── Overline (label above heading) ── */
.ys-overline {
  display: inline-block;
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ys-primary-500);
  margin-bottom: var(--ys-sp-3);
}
.ys-overline--gold { color: var(--ys-gold); }

/* ── Section Heading Pattern ── */
.ys-section-heading {
  margin-bottom: var(--ys-sp-4);
}
.ys-section-heading .ys-subtitle {
  font-size: var(--ys-text-lg);
  color: var(--ys-gray-600);
  line-height: var(--ys-lh-normal);
  margin-top: var(--ys-sp-3);
  max-width: 56ch;
}
.ys-section-heading.centered { text-align: center; }
.ys-section-heading.centered .ys-subtitle {
  margin-left: auto;
  margin-right: auto;
}

/* ── Decorative Underline ── */
.ys-underline-accent {
  position: relative;
  display: inline-block;
}
.ys-underline-accent::after {
  content: '';
  position: absolute;
  bottom: -6px;
  right: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--ys-gold), var(--ys-primary-500));
  border-radius: var(--ys-r-full);
}


/* ================================================================
   04. LAYOUT HELPERS
   ================================================================ */

.ys-container {
  width: 100%;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--ys-sp-6);
  padding-right: var(--ys-sp-6);
}
.ys-container-sm  { max-width: 860px;  }
.ys-container-lg  { max-width: 1440px; }
.ys-container-full{ max-width: none;   }

/* ── Section Spacing ── */
.ys-section     { padding-top: var(--ys-sp-20); padding-bottom: var(--ys-sp-20); }
.ys-section-lg  { padding-top: var(--ys-sp-24); padding-bottom: var(--ys-sp-24); }
.ys-section-sm  { padding-top: var(--ys-sp-12); padding-bottom: var(--ys-sp-12); }
.ys-section-xs  { padding-top: var(--ys-sp-8);  padding-bottom: var(--ys-sp-8);  }

/* ── Background Variants ── */
.ys-bg-white    { background-color: var(--ys-white); }
.ys-bg-canvas   { background-color: var(--ys-canvas); }
.ys-bg-gray     { background-color: var(--ys-gray-100); }
.ys-bg-primary  { background-color: var(--ys-primary-900); }
.ys-bg-navy     { background: linear-gradient(160deg, var(--ys-primary-950) 0%, var(--ys-primary-800) 100%); }
.ys-bg-navy-mid { background: linear-gradient(160deg, var(--ys-primary-900) 0%, var(--ys-primary-700) 100%); }
.ys-bg-gold-pale{ background-color: var(--ys-gold-pale); }

/* ── Divider ── */
.ys-divider {
  height: 1px;
  background: var(--ys-gray-300);
  border: none;
  margin: 0;
}
.ys-divider-fade {
  background: linear-gradient(90deg, transparent, var(--ys-gray-300) 30%, var(--ys-gray-300) 70%, transparent);
}


/* ================================================================
   05. UTILITY CLASSES
   ================================================================ */

/* Text colors */
.ys-text-primary  { color: var(--ys-primary-700); }
.ys-text-gold     { color: var(--ys-gold); }
.ys-text-muted    { color: var(--ys-gray-600); }
.ys-text-light    { color: var(--ys-gray-500); }
.ys-text-white    { color: var(--ys-white); }
.ys-text-dark     { color: var(--ys-gray-900); }

/* Font weights */
.ys-fw-300 { font-weight: 300; }
.ys-fw-400 { font-weight: 400; }
.ys-fw-500 { font-weight: 500; }
.ys-fw-600 { font-weight: 600; }
.ys-fw-700 { font-weight: 700; }
.ys-fw-800 { font-weight: 800; }

/* Hover lift */
.ys-hover-lift {
  transition: transform var(--ys-ease), box-shadow var(--ys-ease);
}
.ys-hover-lift:hover {
  transform: translateY(-4px);
  box-shadow: var(--ys-shadow-lg);
}

/* Aspect ratios */
.ys-ratio-16-9  { aspect-ratio: 16/9; }
.ys-ratio-4-3   { aspect-ratio: 4/3; }
.ys-ratio-1-1   { aspect-ratio: 1/1; }

/* ── Icon wrapper ── */
.ys-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--ys-r-lg);
  flex-shrink: 0;
}
.ys-icon-sm  { width: 36px; height: 36px; font-size: 1rem; }
.ys-icon-md  { width: 48px; height: 48px; font-size: 1.25rem; }
.ys-icon-lg  { width: 64px; height: 64px; font-size: 1.75rem; }
.ys-icon-xl  { width: 80px; height: 80px; font-size: 2rem; }

.ys-icon-primary {
  background: var(--ys-primary-100);
  color: var(--ys-primary-600);
}
.ys-icon-gold {
  background: var(--ys-gold-pale);
  color: var(--ys-gold-dark);
}
.ys-icon-success {
  background: var(--ys-success-light);
  color: var(--ys-success);
}
.ys-icon-white {
  background: rgba(255,255,255,0.12);
  color: var(--ys-white);
}

/* ── Separator / Ornament ── */
.ys-ornament {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-3);
  margin-bottom: var(--ys-sp-4);
}
.ys-ornament::before,
.ys-ornament::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--ys-gray-300);
}

/* ── Number Tag ── */
.ys-num-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: var(--ys-r-full);
  background: var(--ys-primary-100);
  color: var(--ys-primary-700);
  font-size: var(--ys-text-xs);
  font-weight: var(--ys-fw-bold);
  flex-shrink: 0;
}


/* ================================================================
   10. NAVBAR / HEADER
   ================================================================ */

.ys-navbar {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  height: var(--ys-nav-h);
  z-index: var(--ys-z-nav);
  background: rgba(10, 37, 64, 0.96);
  backdrop-filter: blur(12px) saturate(180%);
  -webkit-backdrop-filter: blur(12px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: all var(--ys-ease);
  display: flex;
  align-items: center;
}

.ys-navbar.scrolled {
  background: rgba(6, 15, 28, 0.98);
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.25);
  height: var(--ys-nav-h-sm);
}

.ys-navbar__inner {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-8);
  width: 100%;
}

/* Brand */
.ys-navbar__brand {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-3);
  text-decoration: none;
  flex-shrink: 0;
}
.ys-navbar__logo {
  height: 44px;
  width: auto;
  transition: transform var(--ys-ease);
}
.ys-navbar.scrolled .ys-navbar__logo { height: 36px; }
.ys-navbar__brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.ys-navbar__brand-name {
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-bold);
  color: var(--ys-white);
  letter-spacing: -0.01em;
}
.ys-navbar__brand-sub {
  font-size: var(--ys-text-xs);
  color: var(--ys-primary-300);
  letter-spacing: 0.02em;
}

/* Nav links */
.ys-navbar__nav {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-1);
  flex: 1;
  justify-content: center;
}
.ys-navbar__link {
  position: relative;
  display: flex;
  align-items: center;
  gap: var(--ys-sp-2);
  padding: var(--ys-sp-2) var(--ys-sp-3);
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-medium);
  color: rgba(255, 255, 255, 0.78);
  text-decoration: none;
  border-radius: var(--ys-r-md);
  white-space: nowrap;
  transition: color var(--ys-ease-fast), background var(--ys-ease-fast);
}
.ys-navbar__link:hover,
.ys-navbar__link.active {
  color: var(--ys-white);
  background: rgba(255, 255, 255, 0.08);
}
.ys-navbar__link.active::after {
  content: '';
  position: absolute;
  bottom: -1px;
  right: 50%;
  transform: translateX(50%);
  width: 24px;
  height: 2px;
  background: var(--ys-gold);
  border-radius: var(--ys-r-full);
}

/* Nav actions (right side in RTL = left visually) */
.ys-navbar__actions {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-3);
  flex-shrink: 0;
}
.ys-navbar__phone {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-2);
  font-size: var(--ys-text-sm);
  color: var(--ys-primary-300);
  text-decoration: none;
  transition: color var(--ys-ease-fast);
  direction: ltr;
}
.ys-navbar__phone:hover { color: var(--ys-white); }
.ys-navbar__phone i { font-size: 1rem; }

/* Mobile toggle */
.ys-navbar__toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  border-radius: var(--ys-r-md);
  background: rgba(255,255,255,0.08);
  cursor: pointer;
  transition: background var(--ys-ease-fast);
}
.ys-navbar__toggle:hover { background: rgba(255,255,255,0.14); }
.ys-navbar__toggle span {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--ys-white);
  border-radius: 2px;
  transition: transform var(--ys-ease), opacity var(--ys-ease);
}
.ys-navbar__toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.ys-navbar__toggle.open span:nth-child(2) { opacity: 0; }
.ys-navbar__toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Body offset for fixed nav */
.ys-page-offset { padding-top: var(--ys-nav-h); }


/* ================================================================
   11. MEGA DROPDOWN MENU
   ================================================================ */

.ys-navbar__item { position: relative; }
.ys-navbar__item:hover > .ys-mega-menu,
.ys-navbar__item:hover > .ys-dropdown-menu { opacity: 1; visibility: visible; transform: translateY(0); }

.ys-dropdown-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: 0;
  min-width: 220px;
  background: var(--ys-white);
  border-radius: var(--ys-r-lg);
  box-shadow: var(--ys-shadow-xl);
  border: 1px solid var(--ys-gray-200);
  padding: var(--ys-sp-2);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ys-ease), visibility var(--ys-ease), transform var(--ys-ease);
  z-index: var(--ys-z-overlay);
}
.ys-dropdown-menu__item {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-3);
  padding: var(--ys-sp-3) var(--ys-sp-4);
  border-radius: var(--ys-r-md);
  color: var(--ys-gray-700);
  font-size: var(--ys-text-sm);
  transition: background var(--ys-ease-fast), color var(--ys-ease-fast);
  text-decoration: none;
}
.ys-dropdown-menu__item:hover {
  background: var(--ys-primary-50);
  color: var(--ys-primary-700);
}
.ys-dropdown-menu__item i {
  width: 20px;
  color: var(--ys-primary-400);
  font-size: 1rem;
}

.ys-mega-menu {
  position: absolute;
  top: calc(100% + 12px);
  right: -160px;
  width: 680px;
  background: var(--ys-white);
  border-radius: var(--ys-r-xl);
  box-shadow: var(--ys-shadow-xl);
  border: 1px solid var(--ys-gray-200);
  padding: var(--ys-sp-6);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity var(--ys-ease), visibility var(--ys-ease), transform var(--ys-ease);
  z-index: var(--ys-z-overlay);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: var(--ys-sp-4);
}

.ys-mega-menu__col-title {
  font-size: var(--ys-text-xs);
  font-weight: var(--ys-fw-semibold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ys-gray-500);
  margin-bottom: var(--ys-sp-3);
  padding-bottom: var(--ys-sp-2);
  border-bottom: 1px solid var(--ys-gray-200);
}


/* ================================================================
   12. MOBILE OFF-CANVAS MENU
   ================================================================ */

.ys-mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(380px, 90vw);
  background: var(--ys-primary-900);
  z-index: var(--ys-z-modal);
  transform: translateX(100%);
  transition: transform var(--ys-ease-out);
  overflow-y: auto;
  padding: var(--ys-sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-6);
}
.ys-mobile-menu.open { transform: translateX(0); }

.ys-mobile-menu__overlay {
  position: fixed;
  inset: 0;
  background: rgba(6, 15, 28, 0.7);
  backdrop-filter: blur(4px);
  z-index: calc(var(--ys-z-modal) - 1);
  opacity: 0;
  visibility: hidden;
  transition: opacity var(--ys-ease), visibility var(--ys-ease);
}
.ys-mobile-menu__overlay.open { opacity: 1; visibility: visible; }

.ys-mobile-menu__close {
  align-self: flex-start;
  width: 40px; height: 40px;
  display: flex; align-items: center; justify-content: center;
  border-radius: var(--ys-r-md);
  background: rgba(255,255,255,0.1);
  color: var(--ys-white);
  font-size: 1.25rem;
  cursor: pointer;
}

.ys-mobile-menu__nav { display: flex; flex-direction: column; gap: var(--ys-sp-1); }
.ys-mobile-menu__link {
  display: flex; align-items: center; gap: var(--ys-sp-3);
  padding: var(--ys-sp-3) var(--ys-sp-4);
  border-radius: var(--ys-r-md);
  color: rgba(255,255,255,0.85);
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-medium);
  text-decoration: none;
  transition: background var(--ys-ease-fast), color var(--ys-ease-fast);
}
.ys-mobile-menu__link:hover, .ys-mobile-menu__link.active {
  background: rgba(255,255,255,0.1);
  color: var(--ys-white);
}


/* ================================================================
   13. HERO SECTIONS
   ================================================================ */

/* ── Primary Hero (Homepage) ── */
.ys-hero {
  position: relative;
  min-height: calc(100vh - var(--ys-nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, var(--ys-primary-950) 0%, var(--ys-primary-800) 60%, var(--ys-primary-700) 100%);
}

/* Geometric background pattern */
.ys-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 50%, rgba(46, 91, 186, 0.15) 0%, transparent 50%),
    radial-gradient(circle at 80% 20%, rgba(201, 169, 97, 0.08) 0%, transparent 40%),
    radial-gradient(circle at 60% 80%, rgba(27, 59, 111, 0.3) 0%, transparent 50%);
  pointer-events: none;
}

/* Dot grid texture */
.ys-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
}

.ys-hero__inner {
  position: relative;
  z-index: 2;
  width: 100%;
}

.ys-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ys-sp-2);
  padding: var(--ys-sp-2) var(--ys-sp-4);
  background: rgba(201, 169, 97, 0.12);
  border: 1px solid rgba(201, 169, 97, 0.3);
  border-radius: var(--ys-r-full);
  color: var(--ys-gold-light);
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-medium);
  margin-bottom: var(--ys-sp-6);
}
.ys-hero__badge .dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ys-gold);
  animation: ys-pulse 2s ease-in-out infinite;
}

.ys-hero__title {
  font-size: clamp(2rem, 5vw, 3.75rem);
  font-weight: var(--ys-fw-black);
  line-height: 1.2;
  color: var(--ys-white);
  margin-bottom: var(--ys-sp-5);
  letter-spacing: -0.02em;
}
.ys-hero__title .highlight {
  background: linear-gradient(135deg, var(--ys-gold), var(--ys-gold-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.ys-hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.25rem);
  line-height: var(--ys-lh-loose);
  color: rgba(255, 255, 255, 0.70);
  margin-bottom: var(--ys-sp-10);
  max-width: 52ch;
}

.ys-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ys-sp-4);
  margin-bottom: var(--ys-sp-12);
}

.ys-hero__trust {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-6);
  flex-wrap: wrap;
}
.ys-hero__trust-item {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-2);
  color: rgba(255,255,255,0.55);
  font-size: var(--ys-text-sm);
}
.ys-hero__trust-item i {
  color: var(--ys-gold);
  font-size: 1rem;
}

/* ── Hero Visual / Graphic ── */
.ys-hero__graphic {
  position: relative;
}
.ys-hero__card-float {
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--ys-r-xl);
  padding: var(--ys-sp-5);
  color: var(--ys-white);
}
.ys-hero__card-float .title {
  font-size: var(--ys-text-sm);
  color: rgba(255,255,255,0.6);
  margin-bottom: var(--ys-sp-2);
}
.ys-hero__card-float .value {
  font-size: var(--ys-text-2xl);
  font-weight: var(--ys-fw-bold);
}
.ys-hero__card-float .badge-up {
  font-size: var(--ys-text-xs);
  color: var(--ys-success-mid);
  background: rgba(47, 133, 90, 0.15);
  padding: 2px 8px;
  border-radius: var(--ys-r-full);
  display: inline-block;
  margin-top: var(--ys-sp-2);
}

/* ── Section Hero (Inner pages) ── */
.ys-hero-inner {
  padding: var(--ys-sp-16) 0 var(--ys-sp-12);
  background: linear-gradient(135deg, var(--ys-primary-950) 0%, var(--ys-primary-800) 100%);
  position: relative;
  overflow: hidden;
}
.ys-hero-inner::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 28px 28px;
}
.ys-hero-inner__title {
  font-size: clamp(1.5rem, 3.5vw, 2.5rem);
  font-weight: var(--ys-fw-bold);
  color: var(--ys-white);
  position: relative;
  z-index: 1;
}
.ys-hero-inner__sub {
  color: rgba(255,255,255,0.65);
  font-size: var(--ys-text-lg);
  margin-top: var(--ys-sp-3);
  position: relative;
  z-index: 1;
}


/* ================================================================
   14. BUTTONS
   ================================================================ */

.ys-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--ys-sp-2);
  padding: 0.625rem var(--ys-sp-5);
  font-family: var(--ys-font-fa);
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-semibold);
  line-height: 1.5;
  border-radius: var(--ys-r);
  border: 1.5px solid transparent;
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
  transition: all var(--ys-ease);
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  user-select: none;
}

.ys-btn::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(rgba(255,255,255,0.1), rgba(255,255,255,0));
  opacity: 0;
  transition: opacity var(--ys-ease-fast);
  border-radius: inherit;
}
.ys-btn:hover::before { opacity: 1; }

/* Sizes */
.ys-btn-xs  { padding: 0.35rem 0.75rem; font-size: var(--ys-text-xs); border-radius: var(--ys-r-sm); }
.ys-btn-sm  { padding: 0.5rem var(--ys-sp-4); font-size: var(--ys-text-sm); }
.ys-btn-lg  { padding: 0.875rem var(--ys-sp-8); font-size: var(--ys-text-base); border-radius: var(--ys-r-md); }
.ys-btn-xl  { padding: 1rem var(--ys-sp-10); font-size: var(--ys-text-lg); border-radius: var(--ys-r-md); }
.ys-btn-block { width: 100%; }
.ys-btn-icon { width: 42px; height: 42px; padding: 0; border-radius: var(--ys-r-md); }
.ys-btn-icon.ys-btn-lg { width: 52px; height: 52px; }

/* ── Primary ── */
.ys-btn-primary {
  background: linear-gradient(135deg, var(--ys-primary-600) 0%, var(--ys-primary-700) 100%);
  color: var(--ys-white);
  border-color: var(--ys-primary-600);
  box-shadow: 0 2px 8px rgba(46, 91, 186, 0.28);
}
.ys-btn-primary:hover {
  background: linear-gradient(135deg, var(--ys-primary-500) 0%, var(--ys-primary-600) 100%);
  box-shadow: 0 4px 16px rgba(46, 91, 186, 0.38);
  transform: translateY(-1px);
  color: var(--ys-white);
}
.ys-btn-primary:active { transform: translateY(0); box-shadow: none; }

/* ── Gold / CTA ── */
.ys-btn-gold {
  background: linear-gradient(135deg, var(--ys-gold) 0%, var(--ys-gold-dark) 100%);
  color: var(--ys-primary-900);
  border-color: var(--ys-gold);
  box-shadow: var(--ys-shadow-gold);
  font-weight: var(--ys-fw-bold);
}
.ys-btn-gold:hover {
  background: linear-gradient(135deg, #D4B76E 0%, var(--ys-gold) 100%);
  box-shadow: 0 8px 28px rgba(201, 169, 97, 0.40);
  transform: translateY(-2px);
  color: var(--ys-primary-900);
}

/* ── Secondary / Outline ── */
.ys-btn-outline {
  background: transparent;
  color: var(--ys-primary-700);
  border-color: var(--ys-primary-400);
}
.ys-btn-outline:hover {
  background: var(--ys-primary-50);
  border-color: var(--ys-primary-600);
  color: var(--ys-primary-700);
}

.ys-btn-outline-white {
  background: transparent;
  color: var(--ys-white);
  border-color: rgba(255,255,255,0.4);
}
.ys-btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  color: var(--ys-white);
}

/* ── Ghost ── */
.ys-btn-ghost {
  background: transparent;
  color: var(--ys-primary-700);
  border-color: transparent;
}
.ys-btn-ghost:hover {
  background: var(--ys-primary-50);
  color: var(--ys-primary-700);
}

.ys-btn-ghost-white {
  background: transparent;
  color: var(--ys-white);
  border-color: transparent;
}
.ys-btn-ghost-white:hover {
  background: rgba(255,255,255,0.1);
  color: var(--ys-white);
}

/* ── Danger ── */
.ys-btn-danger {
  background: linear-gradient(135deg, #E53E3E, var(--ys-error));
  color: var(--ys-white);
  border-color: var(--ys-error);
}
.ys-btn-danger:hover { transform: translateY(-1px); opacity: 0.92; color: var(--ys-white); }

/* ── Loading state ── */
.ys-btn.loading {
  pointer-events: none;
  opacity: 0.7;
}
.ys-btn.loading::after {
  content: '';
  width: 14px; height: 14px;
  border: 2px solid currentColor;
  border-top-color: transparent;
  border-radius: 50%;
  animation: ys-spin 0.6s linear infinite;
  margin-right: 8px;
}

/* ── Arrow CTA ── */
.ys-btn-arrow {
  display: inline-flex;
  align-items: center;
  gap: var(--ys-sp-2);
  color: var(--ys-primary-600);
  font-weight: var(--ys-fw-semibold);
  font-size: var(--ys-text-sm);
  text-decoration: none;
  transition: gap var(--ys-ease), color var(--ys-ease-fast);
}
.ys-btn-arrow i { transition: transform var(--ys-ease); font-size: 1rem; }
.ys-btn-arrow:hover { color: var(--ys-primary-800); gap: var(--ys-sp-3); }
.ys-btn-arrow:hover i { transform: translateX(-4px); }


/* ================================================================
   15. CARDS
   ================================================================ */

/* ── Base Card ── */
.ys-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-xl);
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-sm);
  overflow: hidden;
  transition: transform var(--ys-ease), box-shadow var(--ys-ease), border-color var(--ys-ease);
}
.ys-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ys-shadow-lg);
  border-color: var(--ys-primary-200);
}
.ys-card__body { padding: var(--ys-sp-6); }
.ys-card__header {
  padding: var(--ys-sp-5) var(--ys-sp-6);
  border-bottom: 1px solid var(--ys-gray-200);
}
.ys-card__footer {
  padding: var(--ys-sp-4) var(--ys-sp-6);
  border-top: 1px solid var(--ys-gray-200);
  background: var(--ys-gray-50);
}

/* ── Department Card (3 main services) ── */
.ys-dept-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-2xl);
  border: 1px solid var(--ys-gray-200);
  padding: var(--ys-sp-8);
  transition: all var(--ys-ease);
  position: relative;
  overflow: hidden;
}
.ys-dept-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  left: 0;
  height: 4px;
  border-radius: var(--ys-r-2xl) var(--ys-r-2xl) 0 0;
  transition: height var(--ys-ease);
}
.ys-dept-card--trade::before    { background: linear-gradient(90deg, var(--ys-gold), var(--ys-gold-light)); }
.ys-dept-card--tech::before     { background: linear-gradient(90deg, var(--ys-primary-600), var(--ys-primary-400)); }
.ys-dept-card--software::before { background: linear-gradient(90deg, var(--ys-success), #68D391); }

.ys-dept-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--ys-shadow-xl);
  border-color: transparent;
}
.ys-dept-card:hover::before { height: 6px; }

.ys-dept-card__icon {
  width: 64px; height: 64px;
  border-radius: var(--ys-r-xl);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.75rem;
  margin-bottom: var(--ys-sp-5);
  transition: transform var(--ys-ease-spring);
}
.ys-dept-card:hover .ys-dept-card__icon { transform: scale(1.1) rotate(-3deg); }

.ys-dept-card--trade    .ys-dept-card__icon { background: var(--ys-gold-pale); color: var(--ys-gold-dark); }
.ys-dept-card--tech     .ys-dept-card__icon { background: var(--ys-primary-100); color: var(--ys-primary-600); }
.ys-dept-card--software .ys-dept-card__icon { background: var(--ys-success-light); color: var(--ys-success); }

.ys-dept-card__title {
  font-size: var(--ys-text-xl);
  font-weight: var(--ys-fw-bold);
  color: var(--ys-gray-900);
  margin-bottom: var(--ys-sp-3);
}
.ys-dept-card__desc {
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-600);
  line-height: var(--ys-lh-normal);
  margin-bottom: var(--ys-sp-5);
}
.ys-dept-card__list {
  display: flex; flex-direction: column; gap: var(--ys-sp-2);
  margin-bottom: var(--ys-sp-6);
}
.ys-dept-card__list li {
  display: flex; align-items: center; gap: var(--ys-sp-2);
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-700);
}
.ys-dept-card__list li i {
  color: var(--ys-primary-400);
  font-size: 0.875rem;
  flex-shrink: 0;
}

/* ── Service Card ── */
.ys-service-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-xl);
  border: 1px solid var(--ys-gray-200);
  padding: var(--ys-sp-6);
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-4);
  transition: all var(--ys-ease);
  height: 100%;
}
.ys-service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ys-shadow-lg);
  border-color: var(--ys-primary-200);
}
.ys-service-card__icon {
  width: 52px; height: 52px;
  border-radius: var(--ys-r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem;
  background: var(--ys-primary-50);
  color: var(--ys-primary-600);
  transition: background var(--ys-ease), transform var(--ys-ease-spring);
}
.ys-service-card:hover .ys-service-card__icon {
  background: var(--ys-primary-100);
  transform: scale(1.08);
}
.ys-service-card__title {
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-gray-900);
}
.ys-service-card__desc {
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-600);
  line-height: 1.75;
  flex: 1;
}

/* ── Project / Case Study Card ── */
.ys-project-card {
  border-radius: var(--ys-r-xl);
  overflow: hidden;
  background: var(--ys-white);
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-sm);
  transition: all var(--ys-ease);
  display: flex;
  flex-direction: column;
}
.ys-project-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--ys-shadow-lg);
}
.ys-project-card__image {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--ys-gray-100);
}
.ys-project-card__image img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform var(--ys-ease-slow);
}
.ys-project-card:hover .ys-project-card__image img { transform: scale(1.05); }
.ys-project-card__badge {
  position: absolute;
  top: var(--ys-sp-3);
  right: var(--ys-sp-3);
}
.ys-project-card__body {
  padding: var(--ys-sp-5);
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-3);
}
.ys-project-card__title {
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-gray-900);
  line-height: 1.5;
}
.ys-project-card__meta {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-4);
  font-size: var(--ys-text-xs);
  color: var(--ys-gray-500);
}
.ys-project-card__meta span {
  display: flex; align-items: center; gap: var(--ys-sp-1);
}

/* ── Testimonial Card ── */
.ys-testimonial-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-xl);
  padding: var(--ys-sp-8);
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-sm);
  position: relative;
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-5);
  height: 100%;
}
.ys-testimonial-card__quote-mark {
  position: absolute;
  top: var(--ys-sp-6);
  left: var(--ys-sp-6);
  font-size: 5rem;
  line-height: 1;
  color: var(--ys-primary-100);
  font-family: Georgia, serif;
  pointer-events: none;
  user-select: none;
}
.ys-testimonial-card__stars {
  display: flex; gap: 3px; color: var(--ys-gold);
  font-size: 0.875rem;
}
.ys-testimonial-card__text {
  font-size: var(--ys-text-base);
  color: var(--ys-gray-700);
  line-height: var(--ys-lh-loose);
  flex: 1;
  font-style: italic;
}
.ys-testimonial-card__author {
  display: flex;
  align-items: center;
  gap: var(--ys-sp-3);
  border-top: 1px solid var(--ys-gray-200);
  padding-top: var(--ys-sp-4);
}
.ys-testimonial-card__avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--ys-primary-100);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.25rem;
  color: var(--ys-primary-500);
  flex-shrink: 0;
  overflow: hidden;
}
.ys-testimonial-card__avatar img { width: 100%; height: 100%; object-fit: cover; }
.ys-testimonial-card__name {
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-gray-900);
}
.ys-testimonial-card__company {
  font-size: var(--ys-text-xs);
  color: var(--ys-gray-500);
  margin-top: 2px;
}

/* ── Stat Card ── */
.ys-stat-card {
  text-align: center;
  padding: var(--ys-sp-8) var(--ys-sp-6);
}
.ys-stat-card__num {
  font-size: clamp(2.25rem, 5vw, 3.5rem);
  font-weight: var(--ys-fw-black);
  color: var(--ys-white);
  line-height: 1;
  margin-bottom: var(--ys-sp-2);
  letter-spacing: -0.02em;
}
.ys-stat-card__unit {
  font-size: var(--ys-text-xl);
  color: var(--ys-gold);
  font-weight: var(--ys-fw-bold);
}
.ys-stat-card__label {
  font-size: var(--ys-text-sm);
  color: rgba(255,255,255,0.65);
  line-height: 1.6;
  margin-top: var(--ys-sp-2);
}
.ys-stat-divider {
  width: 1px;
  background: rgba(255,255,255,0.1);
  align-self: stretch;
  margin: var(--ys-sp-4) 0;
}

/* ── Why / Feature Card ── */
.ys-why-card {
  display: flex;
  gap: var(--ys-sp-4);
  padding: var(--ys-sp-5);
  border-radius: var(--ys-r-xl);
  background: var(--ys-white);
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-xs);
  transition: all var(--ys-ease);
  align-items: flex-start;
}
.ys-why-card:hover {
  box-shadow: var(--ys-shadow-md);
  border-color: var(--ys-primary-200);
}
.ys-why-card__content {}
.ys-why-card__title {
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-gray-900);
  margin-bottom: var(--ys-sp-2);
}
.ys-why-card__desc {
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-600);
  line-height: 1.75;
}


/* ================================================================
   16. BADGES & TAGS
   ================================================================ */

.ys-badge {
  display: inline-flex;
  align-items: center;
  gap: var(--ys-sp-1);
  padding: 3px 10px;
  font-size: var(--ys-text-xs);
  font-weight: var(--ys-fw-semibold);
  border-radius: var(--ys-r-full);
  white-space: nowrap;
}

.ys-badge-primary { background: var(--ys-primary-100); color: var(--ys-primary-700); }
.ys-badge-gold    { background: var(--ys-gold-pale);   color: var(--ys-gold-dark);    }
.ys-badge-success { background: var(--ys-success-light); color: var(--ys-success);    }
.ys-badge-warning { background: var(--ys-warning-light); color: var(--ys-warning);    }
.ys-badge-error   { background: var(--ys-error-light); color: var(--ys-error);        }
.ys-badge-gray    { background: var(--ys-gray-200);    color: var(--ys-gray-700);     }
.ys-badge-white   { background: rgba(255,255,255,0.15); color: var(--ys-white); }


/* ================================================================
   17. ALERTS
   ================================================================ */

.ys-alert {
  display: flex;
  align-items: flex-start;
  gap: var(--ys-sp-4);
  padding: var(--ys-sp-4) var(--ys-sp-5);
  border-radius: var(--ys-r-lg);
  border-width: 1px;
  border-style: solid;
  font-size: var(--ys-text-sm);
  line-height: 1.7;
}
.ys-alert i { font-size: 1.125rem; flex-shrink: 0; margin-top: 2px; }
.ys-alert-info    { background: var(--ys-info-light);    border-color: #90CDF4; color: var(--ys-info); }
.ys-alert-success { background: var(--ys-success-light); border-color: #9AE6B4; color: var(--ys-success); }
.ys-alert-warning { background: var(--ys-warning-light); border-color: #FBD38D; color: var(--ys-warning); }
.ys-alert-error   { background: var(--ys-error-light);   border-color: #FEB2B2; color: var(--ys-error); }


/* ================================================================
   18. BREADCRUMB
   ================================================================ */

.ys-breadcrumb {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: var(--ys-sp-2);
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-500);
}
.ys-breadcrumb a {
  color: var(--ys-gray-600);
  text-decoration: none;
  transition: color var(--ys-ease-fast);
}
.ys-breadcrumb a:hover { color: var(--ys-primary-600); }
.ys-breadcrumb__sep { color: var(--ys-gray-400); font-size: 0.75rem; }
.ys-breadcrumb__current { color: var(--ys-gray-700); font-weight: var(--ys-fw-medium); }

/* White variant (for dark backgrounds) */
.ys-breadcrumb-white a      { color: rgba(255,255,255,0.55); }
.ys-breadcrumb-white a:hover { color: var(--ys-white); }
.ys-breadcrumb-white .ys-breadcrumb__sep { color: rgba(255,255,255,0.3); }
.ys-breadcrumb-white .ys-breadcrumb__current { color: rgba(255,255,255,0.85); }


/* ================================================================
   19. FORMS & INPUTS
   ================================================================ */

.ys-form-group { margin-bottom: var(--ys-sp-5); }
.ys-label {
  display: block;
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-medium);
  color: var(--ys-gray-700);
  margin-bottom: var(--ys-sp-2);
}
.ys-label .required {
  color: var(--ys-error);
  margin-right: 3px;
}

.ys-input,
.ys-textarea,
.ys-select {
  width: 100%;
  padding: 0.625rem var(--ys-sp-4);
  font-family: var(--ys-font-fa);
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-900);
  background: var(--ys-white);
  border: 1.5px solid var(--ys-gray-300);
  border-radius: var(--ys-r-md);
  transition: border-color var(--ys-ease-fast), box-shadow var(--ys-ease-fast);
  appearance: none;
  line-height: 1.6;
  direction: rtl;
}
.ys-input:hover, .ys-textarea:hover, .ys-select:hover {
  border-color: var(--ys-gray-400);
}
.ys-input:focus, .ys-textarea:focus, .ys-select:focus {
  outline: none;
  border-color: var(--ys-primary-500);
  box-shadow: 0 0 0 3px rgba(46, 91, 186, 0.12);
}
.ys-input::placeholder, .ys-textarea::placeholder {
  color: var(--ys-gray-400);
}
.ys-input.error, .ys-textarea.error {
  border-color: var(--ys-error);
  box-shadow: 0 0 0 3px rgba(197, 48, 48, 0.1);
}
.ys-input.success {
  border-color: var(--ys-success-mid);
  box-shadow: 0 0 0 3px rgba(47, 133, 90, 0.1);
}

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

.ys-form-hint {
  font-size: var(--ys-text-xs);
  color: var(--ys-gray-500);
  margin-top: var(--ys-sp-2);
}
.ys-form-error {
  font-size: var(--ys-text-xs);
  color: var(--ys-error);
  margin-top: var(--ys-sp-2);
  display: flex;
  align-items: center;
  gap: var(--ys-sp-1);
}

/* ── Input Group (icon prefix) ── */
.ys-input-group {
  position: relative;
  display: flex;
}
.ys-input-group .ys-input { padding-right: 2.75rem; }
.ys-input-group__icon {
  position: absolute;
  right: 0.875rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--ys-gray-400);
  font-size: 1.1rem;
  pointer-events: none;
}
.ys-input-group .ys-input:focus + .ys-input-group__icon,
.ys-input-group:focus-within .ys-input-group__icon {
  color: var(--ys-primary-500);
}

/* ── Checkbox & Radio ── */
.ys-check {
  display: flex;
  align-items: flex-start;
  gap: var(--ys-sp-3);
  cursor: pointer;
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-700);
  user-select: none;
}
.ys-check input[type="checkbox"],
.ys-check input[type="radio"] { display: none; }
.ys-check__box {
  width: 18px; height: 18px;
  border: 2px solid var(--ys-gray-300);
  border-radius: var(--ys-r-sm);
  background: var(--ys-white);
  flex-shrink: 0;
  margin-top: 1px;
  transition: all var(--ys-ease-fast);
  display: flex; align-items: center; justify-content: center;
}
.ys-check input[type="radio"] + .ys-check__box {
  border-radius: 50%;
}
.ys-check input:checked + .ys-check__box {
  background: var(--ys-primary-600);
  border-color: var(--ys-primary-600);
}
.ys-check input:checked + .ys-check__box::after {
  content: '\2714';
  color: white;
  font-size: 11px;
}
.ys-check input[type="radio"]:checked + .ys-check__box::after {
  content: '';
  width: 8px; height: 8px;
  background: var(--ys-white);
  border-radius: 50%;
}


/* ================================================================
   20. MULTI-STEP FORM
   ================================================================ */

.ys-stepper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: var(--ys-sp-8);
}

.ys-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--ys-sp-2);
  position: relative;
  flex: 1;
}

.ys-step:not(:last-child)::after {
  content: '';
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--ys-gray-300);
  z-index: 0;
  transform: translateX(-50%);
  width: 100%;
}
.ys-step.completed:not(:last-child)::after {
  background: var(--ys-primary-500);
}

.ys-step__circle {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--ys-gray-200);
  color: var(--ys-gray-500);
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-bold);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  z-index: 1;
  border: 2px solid var(--ys-gray-300);
  transition: all var(--ys-ease);
}
.ys-step.active .ys-step__circle {
  background: var(--ys-primary-600);
  border-color: var(--ys-primary-600);
  color: var(--ys-white);
  box-shadow: 0 0 0 4px var(--ys-primary-100);
}
.ys-step.completed .ys-step__circle {
  background: var(--ys-success-mid);
  border-color: var(--ys-success-mid);
  color: var(--ys-white);
}
.ys-step__label {
  font-size: var(--ys-text-xs);
  font-weight: var(--ys-fw-medium);
  color: var(--ys-gray-500);
  white-space: nowrap;
  text-align: center;
}
.ys-step.active  .ys-step__label { color: var(--ys-primary-700); font-weight: var(--ys-fw-semibold); }
.ys-step.completed .ys-step__label { color: var(--ys-success); }

/* ── Step Panels ── */
.ys-step-panel { display: none; }
.ys-step-panel.active { display: block; animation: ys-fadeInUp 0.3s ease; }

/* Form Card Wrapper */
.ys-form-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-2xl);
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-lg);
  overflow: hidden;
}
.ys-form-card__header {
  background: linear-gradient(135deg, var(--ys-primary-900), var(--ys-primary-700));
  padding: var(--ys-sp-8) var(--ys-sp-8) var(--ys-sp-6);
  color: var(--ys-white);
}
.ys-form-card__body { padding: var(--ys-sp-8); }
.ys-form-card__footer {
  padding: var(--ys-sp-5) var(--ys-sp-8);
  border-top: 1px solid var(--ys-gray-200);
  background: var(--ys-gray-50);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--ys-sp-4);
}


/* ================================================================
   21. ACCORDION / FAQ
   ================================================================ */

.ys-accordion { display: flex; flex-direction: column; gap: var(--ys-sp-3); }

.ys-accordion-item {
  background: var(--ys-white);
  border: 1.5px solid var(--ys-gray-200);
  border-radius: var(--ys-r-lg);
  overflow: hidden;
  transition: border-color var(--ys-ease), box-shadow var(--ys-ease);
}
.ys-accordion-item.open {
  border-color: var(--ys-primary-300);
  box-shadow: var(--ys-shadow-sm);
}

.ys-accordion-trigger {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ys-sp-4);
  padding: var(--ys-sp-4) var(--ys-sp-5);
  font-size: var(--ys-text-base);
  font-weight: var(--ys-fw-medium);
  color: var(--ys-gray-900);
  text-align: right;
  cursor: pointer;
  transition: color var(--ys-ease-fast);
}
.ys-accordion-item.open .ys-accordion-trigger { color: var(--ys-primary-700); }

.ys-accordion-trigger__icon {
  width: 28px; height: 28px;
  border-radius: var(--ys-r);
  background: var(--ys-gray-100);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 0.875rem;
  color: var(--ys-gray-600);
  transition: all var(--ys-ease);
}
.ys-accordion-item.open .ys-accordion-trigger__icon {
  background: var(--ys-primary-100);
  color: var(--ys-primary-600);
  transform: rotate(180deg);
}

.ys-accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height var(--ys-ease-slow);
}
.ys-accordion-item.open .ys-accordion-body { max-height: 400px; }

.ys-accordion-content {
  padding: 0 var(--ys-sp-5) var(--ys-sp-5);
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-700);
  line-height: var(--ys-lh-normal);
  border-top: 1px solid var(--ys-gray-200);
  padding-top: var(--ys-sp-4);
  margin-top: 0;
}


/* ================================================================
   30. STATS / NUMBERS SECTION
   ================================================================ */

.ys-stats-section {
  background: linear-gradient(135deg, var(--ys-primary-900) 0%, var(--ys-primary-700) 100%);
  position: relative;
  overflow: hidden;
}
.ys-stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 24px 24px;
}
.ys-stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
.ys-stats-grid .ys-stat-card + .ys-stat-card {
  border-right: 1px solid rgba(255,255,255,0.08);
}
@media (max-width: 767px) {
  .ys-stats-grid { grid-template-columns: 1fr 1fr; }
  .ys-stats-grid .ys-stat-card + .ys-stat-card { border-right: none; }
  .ys-stats-grid .ys-stat-card { border-top: 1px solid rgba(255,255,255,0.08); }
}


/* ================================================================
   31. CLIENT LOGOS
   ================================================================ */

.ys-logos-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: var(--ys-sp-8);
}
.ys-logos-strip__item {
  opacity: 0.5;
  transition: opacity var(--ys-ease), transform var(--ys-ease);
  filter: grayscale(100%);
  height: 40px;
  object-fit: contain;
}
.ys-logos-strip__item:hover {
  opacity: 1;
  filter: grayscale(0%);
  transform: scale(1.05);
}

/* ── Marquee / Auto-scroll logos ── */
.ys-logos-marquee {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
  -webkit-mask-image: linear-gradient(90deg, transparent, black 15%, black 85%, transparent);
}
.ys-logos-marquee__track {
  display: flex;
  gap: var(--ys-sp-12);
  align-items: center;
  animation: ys-marquee 30s linear infinite;
  width: max-content;
}
.ys-logos-marquee:hover .ys-logos-marquee__track { animation-play-state: paused; }


/* ================================================================
   32. CTA SECTIONS
   ================================================================ */

.ys-cta-section {
  background: linear-gradient(135deg, var(--ys-primary-900) 0%, var(--ys-primary-700) 100%);
  border-radius: var(--ys-r-2xl);
  padding: var(--ys-sp-16) var(--ys-sp-12);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.ys-cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 50%, rgba(201, 169, 97, 0.08) 0%, transparent 50%),
    radial-gradient(circle at 90% 50%, rgba(46, 91, 186, 0.15) 0%, transparent 50%);
  pointer-events: none;
}
.ys-cta-section__inner { position: relative; z-index: 1; }
.ys-cta-section__title {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: var(--ys-fw-bold);
  color: var(--ys-white);
  margin-bottom: var(--ys-sp-4);
}
.ys-cta-section__sub {
  font-size: var(--ys-text-lg);
  color: rgba(255,255,255,0.65);
  margin-bottom: var(--ys-sp-8);
  max-width: 52ch;
  margin-left: auto;
  margin-right: auto;
}
.ys-cta-section__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--ys-sp-4);
  flex-wrap: wrap;
}

/* ── Inline CTA strip ── */
.ys-cta-strip {
  background: var(--ys-primary-50);
  border: 1px solid var(--ys-primary-100);
  border-radius: var(--ys-r-xl);
  padding: var(--ys-sp-6) var(--ys-sp-8);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ys-sp-6);
  flex-wrap: wrap;
}
.ys-cta-strip__text {
  font-size: var(--ys-text-lg);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-primary-900);
}
.ys-cta-strip__sub {
  font-size: var(--ys-text-sm);
  color: var(--ys-gray-600);
  margin-top: var(--ys-sp-1);
}


/* ================================================================
   33. FOOTER
   ================================================================ */

.ys-footer {
  background: var(--ys-primary-950);
  color: rgba(255,255,255,0.7);
  padding-top: var(--ys-sp-20);
  position: relative;
}

.ys-footer::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.08) 30%, rgba(255,255,255,0.08) 70%, transparent);
}

.ys-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: var(--ys-sp-10);
  padding-bottom: var(--ys-sp-12);
}

.ys-footer__brand { }
.ys-footer__logo {
  height: 48px;
  margin-bottom: var(--ys-sp-5);
}
.ys-footer__desc {
  font-size: var(--ys-text-sm);
  line-height: 1.9;
  color: rgba(255,255,255,0.5);
  max-width: 34ch;
  margin-bottom: var(--ys-sp-6);
}

.ys-footer__socials {
  display: flex;
  gap: var(--ys-sp-3);
}
.ys-footer__social-link {
  width: 38px; height: 38px;
  border-radius: var(--ys-r-md);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.55);
  font-size: 1rem;
  text-decoration: none;
  transition: all var(--ys-ease-fast);
}
.ys-footer__social-link:hover {
  background: var(--ys-primary-700);
  border-color: var(--ys-primary-600);
  color: var(--ys-white);
  transform: translateY(-2px);
}

.ys-footer__col-title {
  font-size: var(--ys-text-sm);
  font-weight: var(--ys-fw-semibold);
  color: var(--ys-white);
  letter-spacing: 0.04em;
  margin-bottom: var(--ys-sp-5);
  text-transform: uppercase;
}
.ys-footer__links {
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-3);
}
.ys-footer__link {
  font-size: var(--ys-text-sm);
  color: rgba(255,255,255,0.50);
  text-decoration: none;
  transition: color var(--ys-ease-fast), padding-right var(--ys-ease-fast);
  display: flex; align-items: center; gap: var(--ys-sp-2);
}
.ys-footer__link:hover { color: var(--ys-white); padding-right: var(--ys-sp-2); }
.ys-footer__link i { font-size: 0.75rem; color: var(--ys-primary-400); }

/* Contact info */
.ys-footer__contact-items {
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-4);
}
.ys-footer__contact-item {
  display: flex;
  align-items: flex-start;
  gap: var(--ys-sp-3);
}
.ys-footer__contact-icon {
  width: 34px; height: 34px;
  border-radius: var(--ys-r-md);
  background: rgba(255,255,255,0.05);
  display: flex; align-items: center; justify-content: center;
  color: var(--ys-primary-300);
  font-size: 0.875rem;
  flex-shrink: 0;
}
.ys-footer__contact-text {
  font-size: var(--ys-text-sm);
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
}
.ys-footer__contact-text strong {
  display: block;
  color: rgba(255,255,255,0.85);
  font-weight: var(--ys-fw-medium);
  margin-bottom: 2px;
}

/* Trust badges in footer */
.ys-footer__trust {
  display: flex;
  gap: var(--ys-sp-3);
  flex-wrap: wrap;
  margin-top: var(--ys-sp-5);
}
.ys-footer__trust-badge {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--ys-r-md);
  padding: var(--ys-sp-2) var(--ys-sp-3);
  font-size: var(--ys-text-xs);
  color: rgba(255,255,255,0.45);
  display: flex; align-items: center; gap: var(--ys-sp-2);
}
.ys-footer__trust-badge i { color: var(--ys-gold); }

/* Footer bottom bar */
.ys-footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: var(--ys-sp-5) 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--ys-sp-4);
  flex-wrap: wrap;
}
.ys-footer__copy {
  font-size: var(--ys-text-xs);
  color: rgba(255,255,255,0.35);
}
.ys-footer__bottom-links {
  display: flex;
  gap: var(--ys-sp-5);
}
.ys-footer__bottom-link {
  font-size: var(--ys-text-xs);
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  transition: color var(--ys-ease-fast);
}
.ys-footer__bottom-link:hover { color: rgba(255,255,255,0.65); }


/* ================================================================
   34. PAGE-SPECIFIC COMPONENTS
   ================================================================ */

/* ── Contact Map ── */
.ys-map-wrapper {
  border-radius: var(--ys-r-xl);
  overflow: hidden;
  border: 1px solid var(--ys-gray-200);
  box-shadow: var(--ys-shadow-md);
  aspect-ratio: 16/7;
}
.ys-map-wrapper iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* ── Contact Info Card ── */
.ys-contact-info-card {
  background: var(--ys-white);
  border-radius: var(--ys-r-xl);
  border: 1px solid var(--ys-gray-200);
  padding: var(--ys-sp-8);
  display: flex;
  flex-direction: column;
  gap: var(--ys-sp-6);
}

/* ── 404 Page ── */
.ys-404 {
  min-height: 80vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--ys-sp-16) var(--ys-sp-6);
}
.ys-404__code {
  font-size: clamp(5rem, 15vw, 10rem);
  font-weight: var(--ys-fw-black);
  line-height: 1;
  background: linear-gradient(135deg, var(--ys-primary-300), var(--ys-primary-500));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--ys-sp-4);
}


/* ================================================================
   50. ANIMATIONS & KEYFRAMES
   ================================================================ */

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

@keyframes ys-fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes ys-slideInRight {
  from { opacity: 0; transform: translateX(24px); }
  to   { opacity: 1; transform: translateX(0);    }
}

@keyframes ys-scaleIn {
  from { opacity: 0; transform: scale(0.94); }
  to   { opacity: 1; transform: scale(1);    }
}

@keyframes ys-pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.6; transform: scale(0.85); }
}

@keyframes ys-spin {
  to { transform: rotate(360deg); }
}

@keyframes ys-marquee {
  to { transform: translateX(-50%); }
}

@keyframes ys-shimmer {
  0%   { background-position: -200% center; }
  100% { background-position:  200% center; }
}

/* ── Reveal on scroll (add .ys-reveal class, JS adds .visible) ── */
.ys-reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.ys-reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.ys-reveal-delay-1 { transition-delay: 0.1s; }
.ys-reveal-delay-2 { transition-delay: 0.2s; }
.ys-reveal-delay-3 { transition-delay: 0.3s; }
.ys-reveal-delay-4 { transition-delay: 0.4s; }


/* ================================================================
   51. RESPONSIVE OVERRIDES
   ================================================================ */

/* ── Tablet: 768px – 1023px ── */
@media (max-width: 1024px) {
  :root { --ys-nav-h: 72px; }

  .ys-navbar__nav { display: none; }
  .ys-navbar__phone { display: none; }
  .ys-navbar__toggle { display: flex; }

  .ys-footer__grid { grid-template-columns: 1fr 1fr; gap: var(--ys-sp-8); }

  .ys-hero__title { font-size: clamp(1.75rem, 4.5vw, 3rem); }
  .ys-mega-menu { width: 90vw; right: -30vw; }
}

/* ── Mobile: < 768px ── */
@media (max-width: 767px) {
  :root {
    --ys-nav-h: 64px;
    --ys-nav-h-sm: 56px;
  }

  .ys-section     { padding-top: var(--ys-sp-12); padding-bottom: var(--ys-sp-12); }
  .ys-section-lg  { padding-top: var(--ys-sp-16); padding-bottom: var(--ys-sp-16); }
  .ys-container   { padding-left: var(--ys-sp-4); padding-right: var(--ys-sp-4); }

  .ys-footer__grid { grid-template-columns: 1fr; gap: var(--ys-sp-8); }
  .ys-footer__bottom { flex-direction: column; text-align: center; }

  .ys-hero { min-height: auto; padding: var(--ys-sp-16) 0 var(--ys-sp-12); }
  .ys-hero__subtitle { font-size: var(--ys-text-base); }
  .ys-hero__actions { flex-direction: column; align-items: stretch; }
  .ys-hero__trust { gap: var(--ys-sp-4); }

  .ys-cta-section { padding: var(--ys-sp-10) var(--ys-sp-6); }
  .ys-cta-strip { flex-direction: column; text-align: center; }

  .ys-stepper { gap: 0; }
  .ys-step__label { display: none; }

  .ys-dept-card { padding: var(--ys-sp-6); }
  .ys-testimonial-card { padding: var(--ys-sp-6); }

  .ys-form-card__body { padding: var(--ys-sp-5); }
  .ys-form-card__footer { flex-direction: column-reverse; }

  .ys-stats-grid { grid-template-columns: 1fr 1fr; }
}

/* ── Large screens: 1440px+ ── */
@media (min-width: 1440px) {
  .ys-container { padding-left: var(--ys-sp-8); padding-right: var(--ys-sp-8); }
}


/* ================================================================
   52. PRINT STYLES
   ================================================================ */

@media print {
  .ys-navbar,
  .ys-footer,
  .ys-btn,
  .ys-cta-section { display: none !important; }
  body { font-size: 12pt; color: #000; }
  a::after { content: " (" attr(href) ")"; }
}


/* ================================================================
   53. BOOTSTRAP 5 OVERRIDES (when used together)
   ================================================================ */

/* Match Bootstrap containers to our sizing */
.container, .container-fluid {
  padding-left: var(--ys-sp-6);
  padding-right: var(--ys-sp-6);
}

/* Override Bootstrap's font */
body, .btn, .form-control, .nav-link {
  font-family: var(--ys-font-fa) !important;
}

/* Fix Bootstrap RTL specifics */
[dir="rtl"] .dropdown-menu {
  text-align: right;
}

/* ── Bootstrap Button Resets (use ys-btn classes instead) ── */
.btn:focus-visible {
  box-shadow: 0 0 0 3px rgba(46, 91, 186, 0.25);
}
