/* â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•
   MIGRATCO â€” style.css
   Fonts:  IBM Plex Sans (Latin) + IBM Plex Sans Arabic
   Colors: Sophisticated German Flag Palette (Obsidian / Crimson / Amber Gold)
   Easing: Smooth spring-like cubic-bezier animations
   RTL:    Seamless right-to-left layout alignment
   â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â•â• */

/* â”€â”€ VARIABLES & DESIGN SYSTEM â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
:root {
  /* Curated Harmonious Palette */
  --black:       hsl(220, 15%, 8%);
  --red:         hsl(354, 80%, 46%);
  --red-dk:      hsl(354, 80%, 36%);
  --gold:        hsl(43, 96%, 53%);
  --gold-dk:     hsl(43, 96%, 43%);
  --white:       #FFFFFF;
  --off:         hsl(210, 20%, 98%);
  
  /* Slate/Zinc Neutrals */
  --g50:         hsl(220, 12%, 96%);
  --g100:        hsl(220, 10%, 90%);
  --g200:        hsl(220, 8%, 82%);
  --g400:        hsl(220, 6%, 55%);
  --g600:        hsl(220, 6%, 35%);
  --g800:        hsl(220, 10%, 15%);

  /* Font System */
  --font-latin:  'IBM Plex Sans', sans-serif;
  --font-arabic: 'IBM Plex Sans Arabic', sans-serif;
  --font:        var(--font-latin);

  /* Borders & Shadows */
  --r-xs:        4px;
  --r-sm:        6px;
  --r:           10px;
  --r-lg:        16px;
  --r-xl:        24px;
  
  /* Easing */
  --tr:          .45s cubic-bezier(0.16, 1, 0.3, 1);
  --tr-fast:     .2s ease;
  --tr-slow:     .8s cubic-bezier(0.16, 1, 0.3, 1);
  --ease-in:     cubic-bezier(0.4, 0, 1, 1);
  --ease-out:    cubic-bezier(0, 0, 0.2, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
  --ease-bounce: cubic-bezier(0.68, -0.55, 0.265, 1.55);

  /* Premium Multi-Layer Shadows */
  --sh-sm:       0 2px 8px -2px rgba(17, 17, 17, 0.05), 0 4px 12px -2px rgba(17, 17, 17, 0.03);
  --sh:          0 12px 30px -10px rgba(17, 17, 17, 0.08), 0 1px 3px 0 rgba(17, 17, 17, 0.02);
  --sh-lg:       0 22px 48px -12px rgba(17, 17, 17, 0.12), 0 16px 28px -18px rgba(17, 17, 17, 0.08);
  
  --mx:          1200px;
  --spy:         110px;
}

[data-lang="ar"] {
  --font: var(--font-arabic);
}

/* ── RESET & BASE ────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font);
  color: var(--black);
  background: var(--white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  padding-top: 113px;
}
a { text-decoration: none; color: inherit; transition: color 0.25s var(--ease-out), opacity 0.25s var(--ease-out); }
img { max-width: 100%; height: auto; display: block; }
button, input, textarea, select { font-family: var(--font); outline: none; }
ul, ol { list-style: none; }
button { cursor: pointer; border: none; background: none; }

/* ── TEXT SELECTION & HIGHLIGHTS (German Flag Theme) ───────────────────── */
::selection {
  background: var(--black);
  color: var(--gold);
  text-shadow: none;
}
::-moz-selection {
  background: var(--black);
  color: var(--gold);
}
h1::selection, h2::selection, h3::selection, h4::selection {
  background: var(--red);
  color: var(--white);
}
h1::-moz-selection, h2::-moz-selection, h3::-moz-selection, h4::-moz-selection {
  background: var(--red);
  color: var(--white);
}

/* Input field selection */
input::selection, textarea::selection, select::selection {
  background: var(--red);
  color: var(--white);
}
input::-moz-selection, textarea::-moz-selection, select::-moz-selection {
  background: var(--red);
  color: var(--white);
}

/* Link highlights on selection */
a::selection {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}
a::-moz-selection {
  background: var(--gold);
  color: var(--black);
  font-weight: 600;
}

/* Button text selection */
button::selection {
  background: transparent;
  color: inherit;
}
button::-moz-selection {
  background: transparent;
  color: inherit;
}

/* ── RTL ALIGNMENT ────────────────────────────────────────────────────── */
[dir="rtl"] { text-align: right; }

[dir="rtl"] .eyebrow {
  padding-inline-start: 14px;
  padding-inline-end: 0;
  border-inline-start: 4px solid var(--red);
  border-inline-end: none;
}
[dir="rtl"] .eyebrow::before,
[dir="rtl"] .eyebrow::after { display: none; content: none; }

[dir="rtl"] .eyebrow-center {
  border-inline-start: none;
  padding-inline-start: 0;
}
[dir="rtl"] .eyebrow-center::before { display: none; content: none; }
[dir="rtl"] .eyebrow-center::after {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--red); flex-shrink: 0;
}

[dir="rtl"] .c-info-item > div { text-align: right; }

[dir="rtl"] .footer-ci .footer-ci-text { text-align: right; }
[dir="rtl"] .footer-links { align-items: flex-start; }
[dir="rtl"] .hero-photo { right: auto; left: 0; }
[dir="rtl"] .hero-photo::before {
  background: linear-gradient(to left, var(--black) 0%, rgba(8, 9, 10, 0.7) 40%, transparent 100%);
}
[dir="rtl"] .hero-badge { right: auto; left: 60px; }

[dir="rtl"] .about-accent { right: auto; left: -22px; }
[dir="rtl"] .blog-tag { left: auto; right: 14px; }

[dir="rtl"] select.form-input {
  background-position: left 16px center;
  padding-inline-end: 16px;
  padding-inline-start: 40px;
}

[dir="rtl"] .flag-stripe,
[dir="rtl"] .about-stripe,
[dir="rtl"] .team-stripe {
  background: linear-gradient(to left, var(--black) 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}

[dir="rtl"] .wa-float { right: auto; left: 32px; }
[dir="rtl"] .cms-layout { direction: ltr; }
[dir="rtl"] .cms-nav { border-right: none; border-left: 3px solid transparent; }
[dir="rtl"] .cms-nav.active { border-left-color: var(--red); border-right-color: transparent; }
[dir="rtl"] .contact-wrap { direction: rtl; }

/* â”€â”€ LAYOUT & SPACING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.container { max-width: var(--mx); margin: 0 auto; padding: 0 32px; }
.section { padding: var(--spy) 0; position: relative; overflow: hidden; }
.section::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
 
  background-repeat: repeat;
  opacity: 0.6;
}
.section--dark { background: var(--black); color: var(--white); }
.section--off { background: var(--off); }
.section--g50 { background: var(--g50); }

.flag-stripe {
  width: 100%; height: 6px;
  background: linear-gradient(to right, var(--black) 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}

/* â”€â”€ TYPOGRAPHY â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.eyebrow {
  font-size: 11px; font-weight: 600; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--red);
  display: flex; align-items: center; gap: 12px; margin-bottom: 20px;
  padding-inline-start: 14px;
  border-inline-start: 3px solid var(--red);
}
.eyebrow-center {
  justify-content: center; padding-inline-start: 0; border-inline-start: none;
}
.eyebrow-center::before,
.eyebrow-center::after {
  content: ''; display: block; width: 28px; height: 2px;
  background: var(--red); flex-shrink: 0;
}

h1, h2, h3, h4 { line-height: 1.15; font-weight: 700; letter-spacing: -0.02em; }
h1 { font-size: clamp(38px, 5.5vw, 64px); }
h2 { font-size: clamp(26px, 3.8vw, 44px); }
h3 { font-size: clamp(18px, 2.2vw, 26px); }
em { font-style: normal; color: var(--gold); }

.lead { font-size: 18px; color: var(--g600); line-height: 1.8; max-width: 650px; }
.tc { text-align: center; }
.ab-desc { color: var(--g600); margin-top: 16px; line-height: 1.8; font-size: 15px; }

/* â”€â”€ BUTTONS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 14px 28px; font-size: 14px; font-weight: 600;
  border-radius: var(--r-sm); border: 2px solid transparent;
  transition: all 0.3s var(--ease-spring); letter-spacing: 0.02em;
  white-space: nowrap; cursor: pointer;
  position: relative;
}
.btn:active { transform: scale(0.97); }

.btn-primary {
  background: var(--red); color: var(--white); border-color: var(--red);
  box-shadow: none;
}
.btn-primary:hover {
  background: var(--red-dk); border-color: var(--red-dk);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-gold {
  background: var(--gold); color: var(--black); border-color: var(--gold);
  box-shadow: none;
}
.btn-gold:hover {
  background: var(--gold-dk); border-color: var(--gold-dk);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline {
  background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.35);
}
.btn-outline:hover {
  background: var(--white); color: var(--black); border-color: var(--white);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-outline-dark {
  background: transparent; color: var(--black); border-color: var(--g200);
}
.btn-outline-dark:hover {
  background: var(--black); color: var(--white); border-color: var(--black);
  transform: translateY(-2px);
}

.btn-sm { padding: 10px 20px; font-size: 13px; border-radius: var(--r-xs); }
.btn-ghost { background: transparent; color: var(--g600); border-color: transparent; }
.btn-ghost:hover { background: var(--g50); color: var(--black); }

/* German Flag Theme: Button Focus States & Outlines */
.btn:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 2px;
}
.btn-outline:focus-visible {
  outline-color: var(--gold);
}
.btn-primary:focus-visible {
  outline-color: var(--gold);
}

/* Link focus styles */
a:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
  border-radius: 3px;
}

.w100 { width: 100%; justify-content: center; }

/* â”€â”€ NAVBAR â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.navbar {
  position: fixed; top: 29px; inset-inline: 0; z-index: 900;
  background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(236, 234, 231, 0.6);
  transition: all 0.4s var(--ease-out);
}
.navbar.scrolled {
  box-shadow: none;
  background: rgba(255, 255, 255, 0.95);
  height: 64px;
}
.navbar.scrolled .navbar-inner { height: 64px; }

.navbar-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 76px; gap: 24px; transition: height 0.4s var(--ease-out);
}
.nav-logo {
  display: flex; align-items: center; gap: 12px;
  font-size: 20px; font-weight: 700; color: var(--black);
  flex-shrink: 0; cursor: pointer; min-width: 180px;
}
.logo-img {
  height: 52px;
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  flex-shrink: 0;
  transition: transform 0.4s var(--ease-spring);
}
.nav-logo:hover .logo-img { transform: rotate(4deg) scale(1.05); }
.logo-mark {
  width: 36px; height: 36px; background: var(--black);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; transition: transform 0.4s var(--ease-spring);
}
.nav-logo:hover .logo-mark { transform: rotate(10deg); }

.nav-links { display: flex; align-items: center; gap: 4px; flex: 1; justify-content: center; }
.nav-link {
  padding: 8px 14px; font-size: 14px; font-weight: 500;
  color: var(--g600); border-radius: var(--r-sm);
  cursor: pointer; transition: all 0.25s var(--ease-out); white-space: nowrap;
}
.nav-link:hover, .nav-link.active { color: var(--black); background: var(--g50); }
.nav-link.active { font-weight: 600; color: var(--red); background: rgba(204, 0, 0, 0.05); }

.navbar-right { display: flex; align-items: center; gap: 14px; flex-shrink: 0; min-width: 180px; justify-content: flex-end; }

/* Language Switcher */
.lang-sw {
  display: flex; align-items: center; gap: 2px;
  background: var(--g50); border-radius: 30px; padding: 4px;
  border: 1px solid var(--g100);
}
.lang-btn {
  padding: 6px 14px; border-radius: 20px; font-size: 11px; font-weight: 700;
  color: var(--g600); cursor: pointer; transition: all 0.25s var(--ease-out); letter-spacing: 0.04em;
}
.lang-btn.active {
  background: var(--white); color: var(--black);
  box-shadow: none;
}
.mob-toggle { display: none; padding: 10px; color: var(--black); border-radius: var(--r); }

/* Mobile Navigation */
.mob-nav {
  display: none; position: fixed; top: 70px; inset-inline: 0;
  background: var(--white); border-bottom: 1px solid var(--g100);
  padding: 16px 20px 28px; z-index: 899; box-shadow: none;
  animation: slideDown .42s cubic-bezier(0.34, 1.56, 0.64, 1) forwards;
}
@keyframes slideDown {
  from { opacity: 0; transform: translateY(-18px) scale(.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}
.mob-nav.open { display: block; }
.mob-link {
  display: block; padding: 14px 20px; font-size: 16px; font-weight: 500;
  color: var(--g800); border-radius: var(--r); cursor: pointer;
  transition: background .2s ease, color .2s ease, transform .25s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.mob-link:hover { background: var(--g50); transform: translateX(6px); }
[dir="rtl"] .mob-link:hover { transform: translateX(-6px); }
.mob-langs {
  display: flex; gap: 10px; padding: 16px 20px;
  border-top: 1px solid var(--g100); margin-top: 12px;
}
.mob-lang-btn {
  flex: 1; padding: 11px; border-radius: var(--r-sm); font-size: 13px;
  font-weight: 700; color: var(--g600); border: 1px solid var(--g100);
  cursor: pointer; transition: all 0.25s var(--ease-out); text-align: center;
}
.mob-lang-btn.active { background: var(--black); color: var(--white); border-color: var(--black); }

/* â”€â”€ HERO SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.hero {
  min-height: 100vh; background: var(--black); color: var(--white);
  display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(to bottom, 
    var(--black) 0%, var(--black) 33.33%,
    var(--red) 33.33%, var(--red) 66.66%,
    var(--gold) 66.66%, var(--gold) 100%);
  opacity: 0.15;
}
.hero-photo {
  position: absolute; right: 0; top: 0; bottom: 0; width: 44%; overflow: hidden;
  clip-path: polygon(15% 0, 100% 0, 100% 100%, 0 100%);
}
.hero-photo img {
  width: 100%; height: 100%; object-fit: cover; opacity: 0.45;
  filter: grayscale(20%) brightness(95%);
  transition: transform 6s ease;
}
.hero:hover .hero-photo img { transform: scale(1.05); }

.hero-photo::before {
  content: ''; position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(to right, var(--black) 0%, rgba(8, 9, 10, 0.6) 35%, transparent 100%);
}
.hero-content {
  position: relative; z-index: 2;
  display: flex; flex-direction: column; justify-content: center;
  flex: 1; padding: 140px 0 100px;
}
.hero h1 { color: var(--white); margin-bottom: 24px; font-weight: 800; }
.hero h1 em { color: var(--gold); }
.hero-lead {
  font-size: 18px; color: rgba(255, 255, 255, 0.65);
  max-width: 540px; margin-bottom: 40px; line-height: 1.8;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 64px; }
.hero-stats {
  display: flex; gap: 48px; padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.12); flex-wrap: wrap;
}
.stat-num {
  font-size: 40px; font-weight: 800; color: var(--gold);
  line-height: 1; margin-bottom: 6px; letter-spacing: -0.02em;
}
.stat-lbl { font-size: 13px; color: rgba(255, 255, 255, 0.45); font-weight: 500; }

/* Glassmorphism Badge */
.hero-badge {
  position: absolute; z-index: 3; bottom: 60px; right: 60px;
  background: rgba(255, 255, 255, 0.1); backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: var(--r-lg);
  padding: 16px 20px; box-shadow: none;
  display: flex; align-items: center; gap: 14px; max-width: 250px;
  animation: float 4s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}
.hero-badge-icon {
  width: 44px; height: 44px; background: var(--gold);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; flex-shrink: 0; color: var(--black);
}
.hero-badge-lbl { font-size: 11px; color: rgba(255, 255, 255, 0.6); margin-bottom: 2px; font-weight: 500; }
.hero-badge-val { font-size: 14px; font-weight: 700; color: var(--white); }

/* Entrance Animations */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes scaleIn {
  from { opacity: 0; transform: scale(0.95); }
  to { opacity: 1; transform: scale(1); }
}
@keyframes slideInLeft {
  from { opacity: 0; transform: translateX(-50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInRight {
  from { opacity: 0; transform: translateX(50px); }
  to { opacity: 1; transform: translateX(0); }
}
@keyframes slideInDown {
  from { opacity: 0; transform: translateY(-30px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes glow {
  0%, 100% { box-shadow: 0 0 10px rgba(204, 0, 0, 0); }
  50% { box-shadow: 0 0 20px rgba(204, 0, 0, 0.3); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}
@keyframes smoothSpin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
@keyframes shake {
  0%, 100% { transform: translateX(0); }
  10%, 30%, 50%, 70%, 90% { transform: translateX(-4px); }
  20%, 40%, 60%, 80% { transform: translateX(4px); }
}
@keyframes slideUp {
  from { opacity: 0; transform: translateY(16px); }
  to { opacity: 1; transform: translateY(0); }
}
@keyframes checkmarkDraw {
  0% { stroke-dashoffset: 50; opacity: 0; }
  50% { opacity: 1; }
  100% { stroke-dashoffset: 0; opacity: 1; }
}
@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}
@keyframes wiggle {
  0%, 100% { transform: translateX(0); }
  25% { transform: translateX(-2px); }
  75% { transform: translateX(2px); }
}
@keyframes skeleton-loading {
  0% { background-position: -1000px 0; }
  100% { background-position: 1000px 0; }
}
@keyframes floatUp {
  from { opacity: 0; transform: translateY(12px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-content .container > * { animation: fadeUp 0.8s cubic-bezier(0.16, 1, 0.3, 1) forwards; opacity: 0; }
.hero-content .container > *:nth-child(1) { animation-delay: 0.1s; }
.hero-content .container > *:nth-child(2) { animation-delay: 0.22s; }
.hero-content .container > *:nth-child(3) { animation-delay: 0.34s; }
.hero-content .container > *:nth-child(4) { animation-delay: 0.46s; }
.hero-content .container > *:nth-child(5) { animation-delay: 0.58s; }

/* â”€â”€ SECTION HEADERS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.sec-hdr { margin-bottom: 60px; }
.sec-hdr .lead { margin-top: 16px; }
.sec-hdr-row {
  display: flex; align-items: flex-end; justify-content: space-between;
  flex-wrap: wrap; gap: 20px; margin-bottom: 60px;
}

/* â”€â”€ SERVICES SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.svc-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; background: transparent; border: none; overflow: visible;
}
.svc-card {
  background: var(--white); padding: 44px 34px;
  border-radius: var(--r-lg); border: 1px solid var(--g100);
  box-shadow: none; transition: all 0.35s var(--ease-spring);
  position: relative; overflow: hidden;
}
.svc-card::after {
  content: ''; position: absolute; top: 0; left: 0; width: 4px; height: 100%;
  background: var(--red); opacity: 0; transition: opacity 0.3s var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-8px);
  box-shadow: none;
  border-color: rgba(204, 0, 0, 0.15);
}
.svc-card:hover::after { opacity: 1; }
.svc-card:hover .svc-icon { background: var(--red); color: var(--white); transform: scale(1.05); }

.svc-icon {
  width: 52px; height: 52px; background: var(--g50);
  border-radius: var(--r); display: flex; align-items: center;
  justify-content: center; margin-bottom: 24px;
  transition: all 0.35s var(--ease-spring); color: var(--red);
}
.svc-title { font-size: 18px; font-weight: 700; margin-bottom: 12px; letter-spacing: -0.01em; }
.svc-desc { font-size: 14px; color: var(--g600); line-height: 1.75; margin-bottom: 20px; }
.svc-more {
  font-size: 13px; font-weight: 700; color: var(--red);
  display: inline-flex; align-items: center; gap: 6px;
  cursor: pointer; transition: all 0.25s var(--ease-spring);
}
.svc-more:hover { gap: 10px; }

/* â”€â”€ ABOUT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-visual { position: relative; }
.about-visual img { width: 100%; height: 540px; object-fit: cover; border-radius: var(--r-xl); box-shadow: none; }
.about-accent {
  position: absolute; bottom: -28px; right: -28px;
  background: var(--gold); color: var(--black);
  padding: 22px 28px; border-radius: var(--r-lg);
  box-shadow: none; text-align: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
}
.about-accent-num { font-size: 40px; font-weight: 800; line-height: 1; letter-spacing: -0.03em; }
.about-accent-lbl { font-size: 12px; font-weight: 700; margin-top: 6px; opacity: 0.8; text-transform: uppercase; }
.about-stripe {
  position: absolute; top: -12px; left: 28px; right: 28px; height: 6px;
  border-radius: 3px;
  background: linear-gradient(to right, var(--black) 33%, var(--red) 33% 66%, var(--gold) 66%);
}
.about-features { display: flex; flex-direction: column; gap: 20px; margin-top: 32px; }
.feat-row { display: flex; gap: 16px; align-items: flex-start; }
.feat-dot {
  width: 36px; height: 36px; border-radius: 50%;
  background: rgba(204, 0, 0, 0.06); display: flex; align-items: center;
  justify-content: center; color: var(--red); flex-shrink: 0; margin-top: 2px;
}
.feat-title { font-size: 15px; font-weight: 700; margin-bottom: 4px; }
.feat-desc { font-size: 13.5px; color: var(--g600); line-height: 1.7; }

/* â”€â”€ PROCESS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.proc-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
  gap: 24px; background: transparent; border: none; margin-top: 60px;
}
.proc-step {
  background: var(--white); padding: 40px 30px;
  border-radius: var(--r-lg); border: 1px solid var(--g100);
  position: relative; overflow: hidden; transition: all 0.35s var(--ease-spring);
  box-shadow: none;
}
.proc-step:hover {
  transform: translateY(-6px);
  box-shadow: none;
  border-color: rgba(255, 206, 0, 0.35);
}
.proc-num {
  font-size: 64px; font-weight: 800; line-height: 1;
  color: rgba(0, 0, 0, 0.03); margin-bottom: 20px; transition: color 0.3s var(--ease-out);
  letter-spacing: -0.05em;
}
.proc-step:hover .proc-num { color: rgba(204, 0, 0, 0.05); }
.proc-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; }
.proc-desc { font-size: 13.5px; color: var(--g600); line-height: 1.7; }

/* â”€â”€ CTA BAND â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cta-band {
  background: var(--black); padding: 88px 0; position: relative; overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.cta-band::after {
  content: ''; position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 206, 0, 0.06) 0%, transparent 70%);
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 48px; }
.cta-band h2 { color: var(--white); font-weight: 800; }
.cta-band h2 em { color: var(--gold); }
.cta-band p { color: rgba(255, 255, 255, 0.55); margin-top: 12px; font-size: 17px; }
.cta-btns { display: flex; gap: 14px; flex-shrink: 0; flex-wrap: wrap; }

/* â”€â”€ TESTIMONIALS SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.testi-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.testi-card {
  background: var(--white); border: 1px solid var(--g100);
  border-radius: var(--r-lg); padding: 36px; box-shadow: none;
  transition: all 0.35s var(--ease-spring);
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: none;
  border-color: rgba(255, 206, 0, 0.2);
}
.testi-stars { display: flex; gap: 4px; color: var(--gold); margin-bottom: 16px; }
.testi-quote-icon { color: rgba(255, 206, 0, 0.3); margin-bottom: 16px; display: block; }
.testi-text { font-size: 14.5px; color: var(--g800); line-height: 1.8; margin-bottom: 24px; font-style: italic; }
.testi-author { display: flex; align-items: center; gap: 14px; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; background: var(--black);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: 14px; color: var(--gold); flex-shrink: 0;
  border: 1.5px solid var(--gold);
}
.testi-name { font-weight: 700; font-size: 14px; }
.testi-loc { font-size: 12px; color: var(--g400); margin-top: 1px; }

/* â”€â”€ TEAM SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.team-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--g100);
  box-shadow: none; background: var(--white); transition: all 0.35s var(--ease-spring);
}
.team-card:hover {
  transform: translateY(-6px);
  box-shadow: none;
}
.team-photo { height: 280px; overflow: hidden; background: var(--g50); }
.team-photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease-out); }
.team-card:hover .team-photo img { transform: scale(1.06); }
.team-stripe {
  height: 5px;
  background: linear-gradient(to right, var(--black) 33.33%, var(--red) 33.33% 66.66%, var(--gold) 66.66%);
}
.team-body { padding: 26px; }
.team-name { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 12px; color: var(--red); font-weight: 700; margin-bottom: 12px; text-transform: uppercase; letter-spacing: 0.05em; }
.team-bio { font-size: 13.5px; color: var(--g600); line-height: 1.7; }
.team-contacts { display: flex; gap: 8px; margin-top: 18px; }
.team-btn {
  width: 32px; height: 32px; border-radius: var(--r-xs);
  border: 1px solid var(--g200); display: flex; align-items: center;
  justify-content: center; color: var(--g600); transition: all 0.25s var(--ease-spring);
}
.team-btn:hover { background: var(--black); color: var(--white); border-color: var(--black); transform: translateY(-1px); }

/* â”€â”€ BLOG SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 60px; }
.blog-card {
  border-radius: var(--r-lg); overflow: hidden; border: 1px solid var(--g100);
  cursor: pointer; background: var(--white); box-shadow: none;
  transition: all 0.35s var(--ease-spring);
}
.blog-card:hover { box-shadow: none; transform: translateY(-6px); }
.blog-img { height: 210px; overflow: hidden; background: var(--g100); position: relative; }
.blog-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1); }
.blog-card:hover .blog-img img { transform: scale(1.06); }
.blog-tag {
  position: absolute; top: 14px; left: 14px;
  background: var(--gold); color: var(--black);
  font-size: 10px; font-weight: 700; padding: 4px 10px;
  border-radius: var(--r-xs); z-index: 1; text-transform: uppercase; letter-spacing: 0.03em;
}
.blog-body { padding: 24px; }
.blog-meta { font-size: 11.5px; color: var(--g400); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; font-weight: 500; }
.blog-title { font-size: 16px; font-weight: 700; margin-bottom: 10px; line-height: 1.4; letter-spacing: -0.01em; }
.blog-excerpt {
  font-size: 13.5px; color: var(--g600); line-height: 1.7; margin-bottom: 16px;
  display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden;
}
.blog-more { font-size: 13px; font-weight: 700; color: var(--red); display: inline-flex; align-items: center; gap: 5px; }

/* â”€â”€ CONTACT SECTION â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.contact-wrap { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; align-items: start; }
.c-info-item { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 26px; }
.c-info-icon {
  width: 44px; height: 44px; border-radius: var(--r);
  background: var(--g50); border: 1px solid var(--g100);
  display: flex; align-items: center; justify-content: center;
  color: var(--red); flex-shrink: 0; transition: all 0.3s var(--ease-spring);
}
.c-info-item:hover .c-info-icon { background: var(--red); color: var(--white); }
.c-info-text { flex: 1; min-width: 0; }
.c-info-lbl { font-size: 10px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.12em; color: var(--g400); margin-bottom: 4px; }
.c-info-val { font-size: 14.5px; font-weight: 600; color: var(--black); }
.c-info-val a:hover { color: var(--red); }

.contact-form {
  background: var(--white); border: 1px solid var(--g100);
  border-radius: var(--r-lg); padding: 48px; box-shadow: none;
}
.dark-form { background: rgba(255, 255, 255, 0.03) !important; border-color: rgba(255, 255, 255, 0.08) !important; box-shadow: none; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 13px; font-weight: 600; color: var(--g800); margin-bottom: 8px; }
.dark-lbl { color: rgba(255, 255, 255, 0.7) !important; }
.form-input {
  width: 100%; padding: 12px 16px; border: 1px solid var(--g200);
  border-radius: var(--r-sm); font-size: 14px; color: var(--black);
  background: var(--white); transition: all 0.3s var(--ease-out);
  outline: none; font-family: var(--font);
}
.form-input:focus {
  border-color: var(--red);
  box-shadow: none;
}
textarea.form-input { resize: vertical; min-height: 120px; }
select.form-input {
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 16px center;
}
.dark-input {
  background: rgba(255, 255, 255, 0.05) !important;
  border-color: rgba(255, 255, 255, 0.1) !important;
  color: #fff !important;
}
.dark-input:focus {
  border-color: var(--gold);
  box-shadow: none;
}
select.dark-input option {
  background: var(--white);
  color: var(--black);
}

/* German Flag Theme: Form Input Placeholders & Appearance */
.form-input::placeholder {
  color: var(--g400);
  opacity: 0.8;
}
.form-input::-webkit-input-placeholder {
  color: var(--g400);
  opacity: 0.8;
}
.form-input::-moz-placeholder {
  color: var(--g400);
  opacity: 0.8;
}
.form-input:-ms-input-placeholder {
  color: var(--g400);
}
.dark-input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}
.dark-input::-webkit-input-placeholder {
  color: rgba(255, 255, 255, 0.5);
}

/* Focus states with German flag colors */
.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
  background: rgba(204, 0, 0, 0.01);
}
.dark-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.12);
}

/* Textarea focus */
textarea.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}
textarea.dark-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.12);
}

/* Select dropdown focus */
select.form-input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.08);
}
select.dark-input:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.12);
}

/* Scrollbar styling with German flag colors */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}
::-webkit-scrollbar-track {
  background: var(--g50);
}
::-webkit-scrollbar-thumb {
  background: var(--red);
  border-radius: 5px;
  transition: background 0.3s ease;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}

/* Firefox scrollbar */
* {
  scrollbar-color: var(--red) var(--g50);
  scrollbar-width: thin;
}

/* German Flag Theme: Text input caret color */
.form-input {
  caret-color: var(--red);
}
.dark-input {
  caret-color: var(--gold);
}

/* Checkbox and radio button styling */
input[type="checkbox"],
input[type="radio"] {
  accent-color: var(--red);
  cursor: pointer;
  transition: all 0.2s ease;
}
input[type="checkbox"]:hover,
input[type="radio"]:hover {
  accent-color: var(--black);
}
input[type="checkbox"]:focus-visible,
input[type="radio"]:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

/* Range input styling */
input[type="range"] {
  accent-color: var(--red);
}
input[type="range"]:hover {
  accent-color: var(--black);
}

/* Color input styling */
input[type="color"] {
  border: 2px solid var(--red);
  border-radius: var(--r-sm);
  cursor: pointer;
  padding: 2px;
}
input[type="color"]:hover {
  border-color: var(--black);
}

/* File input styling */
input[type="file"]::file-selector-button {
  background: var(--red);
  color: var(--white);
  border: none;
  padding: 8px 16px;
  border-radius: var(--r-xs);
  cursor: pointer;
  font-weight: 600;
  transition: background 0.3s ease;
}
input[type="file"]::file-selector-button:hover {
  background: var(--red-dk);
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

/* Form Feedback */
.form-success, .form-error {
  padding: 14px 18px; border-radius: var(--r-sm); font-size: 13.5px;
  margin-bottom: 18px; display: none; line-height: 1.5;
  animation: slideUp 0.4s var(--ease-spring);
  align-items: center; gap: 12px;
}
.form-success.show { display: flex; }
.form-error.show { display: flex; animation: shake 0.5s var(--ease-spring); }
.form-success {
  background: rgba(0, 160, 80, 0.06); border: 1px solid rgba(0, 160, 80, 0.18); color: #00753f;
}
.form-success::before {
  content: '✓';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: #00753f;
  color: white;
  font-size: 14px;
  font-weight: bold;
  flex-shrink: 0;
  animation: scaleIn 0.4s var(--ease-spring);
}
.form-error {
  background: rgba(204, 0, 0, 0.05); border: 1px solid rgba(204, 0, 0, 0.18); color: var(--red);
}
.form-error::before {
  content: '!';
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--red);
  color: white;
  font-size: 14px;
  flex-shrink: 0;
  animation: scaleIn 0.3s var(--ease-spring);
}

/* â”€â”€ INNER PAGE HERO â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-hero {
  background: var(--black); color: var(--white);
  padding: 140px 0 80px; position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 80% 50%, rgba(204, 0, 0, 0.13), transparent 60%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 14px; font-weight: 800; }
.page-hero p { color: rgba(255, 255, 255, 0.6); font-size: 18px; max-width: 600px; line-height: 1.75; }

/* â”€â”€ BLOG DETAIL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.blog-detail-wrap { max-width: 780px; margin: 0 auto; padding: var(--spy) 32px; }
.blog-detail-cover { width: 100%; height: 420px; object-fit: cover; border-radius: var(--r-xl); margin-bottom: 40px; box-shadow: none; }
.blog-detail-meta-row { display: flex; gap: 20px; align-items: center; margin-bottom: 24px; color: var(--g400); font-size: 13.5px; flex-wrap: wrap; }
.blog-detail-tag { background: var(--gold); color: var(--black); font-size: 11px; font-weight: 700; padding: 4px 10px; border-radius: var(--r-xs); text-transform: uppercase; }
.blog-detail-body { font-size: 16.5px; line-height: 1.95; color: var(--g800); }
.blog-detail-body p { margin-bottom: 22px; }
.blog-detail-body h2 { font-size: 24px; margin: 38px 0 16px; color: var(--black); }
.blog-detail-body h3 { font-size: 20px; margin: 28px 0 12px; }
.back-btn {
  display: inline-flex; align-items: center; gap: 8px; font-size: 13.5px; font-weight: 700;
  color: var(--g600); margin-bottom: 32px; cursor: pointer; transition: all 0.2s var(--ease-out);
}
.back-btn:hover { color: var(--red); transform: translateX(-4px); }
[dir="rtl"] .back-btn:hover { transform: translateX(4px); }

/* ── BLOG SHARE SECTION ── */
.blog-share-section {
  margin-top: 60px;
  padding-top: 40px;
  border-top: 1px solid var(--g200);
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.blog-share-label {
  font-size: 14px;
  font-weight: 600;
  color: var(--g600);
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.blog-share-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.share-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: var(--r);
  border: none;
  cursor: pointer;
  background: var(--g50);
  color: var(--g600);
  transition: all 0.25s var(--ease-spring);
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.share-btn:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.12);
}

.share-facebook:hover { background: #1877f2; color: white; }
.share-twitter:hover { background: #1da1f2; color: white; }
.share-whatsapp:hover { background: #25d366; color: white; }
.share-email:hover { background: var(--red); color: white; }
.share-copy:hover { background: var(--gold); color: var(--black); }

[dir="rtl"] .blog-share-section {
  flex-direction: row-reverse;
}

/* â”€â”€ FOOTER â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.footer { background: var(--black); color: var(--white); padding: 80px 0 0; border-top: 1px solid rgba(255, 255, 255, 0.05); }
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1.4fr; gap: 48px;
  padding-bottom: 56px; border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}
.footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 16px; font-size: 19px; font-weight: 800; }
.footer-desc { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.8; margin-bottom: 24px; }
.footer-socials { display: flex; gap: 8px; }
.footer-soc {
  width: 36px; height: 36px; border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--r-xs); display: flex; align-items: center;
  justify-content: center; color: rgba(255, 255, 255, 0.5); transition: all 0.3s var(--ease-spring);
}
.footer-soc:hover { background: var(--red); border-color: var(--red); color: var(--white); transform: translateY(-2px); }
.footer-col-title { font-size: 11px; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; color: var(--white); margin-bottom: 20px; }
.footer-links { display: flex; flex-direction: column; gap: 10px; }
.footer-lnk { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); cursor: pointer; transition: all 0.2s var(--ease-out); }
.footer-lnk:hover { color: var(--gold); padding-inline-start: 2px; }
.footer-ci { display: flex; gap: 10px; align-items: flex-start; margin-bottom: 14px; }
.footer-ci-icon { color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.footer-ci-text { font-size: 13.5px; color: rgba(255, 255, 255, 0.45); line-height: 1.6; }
.footer-ci-text a:hover { color: var(--gold); }
.footer-btm {
  display: flex; align-items: center; justify-content: space-between;
  padding: 24px 0; flex-wrap: wrap; gap: 14px;
}
.footer-copy { font-size: 12px; color: rgba(255, 255, 255, 0.25); }
.footer-legal { display: flex; gap: 20px; }
.footer-legal a { font-size: 12px; color: rgba(255, 255, 255, 0.25); transition: color 0.2s var(--ease-out); cursor: pointer; }
.footer-legal a:hover { color: var(--white); }

/* â”€â”€ PAGE VIEWS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.page-view { display: none; }
.page-view.active { display: block; }

/* â”€â”€ GLASSMORPHISM OVERLAYS & MODALS â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.admin-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(8, 9, 10, 0.7); z-index: 9000;
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  align-items: center; justify-content: center;
}
.admin-overlay.open { display: flex; }
.login-card {
  background: var(--white); width: 100%; max-width: 410px;
  border-radius: var(--r-xl); padding: 48px 40px; position: relative;
  box-shadow: none; border: 1px solid var(--g100);
}
.login-close {
  position: absolute; top: 18px; right: 18px;
  width: 32px; height: 32px; border-radius: 50%;
  background: var(--g50); display: flex; align-items: center; justify-content: center;
  cursor: pointer; color: var(--g600); transition: all 0.25s var(--ease-out);
}
.login-close:hover { background: var(--g100); color: var(--black); }
.login-logo { display: flex; justify-content: center; margin-bottom: 24px; }
.login-title { text-align: center; font-size: 22px; font-weight: 700; margin-bottom: 6px; }
.login-sub { text-align: center; font-size: 13.5px; color: var(--g400); margin-bottom: 28px; }
.login-err {
  background: rgba(204, 0, 0, 0.05); border: 1px solid rgba(204, 0, 0, 0.18);
  color: var(--red); padding: 10px 14px; border-radius: var(--r-sm);
  font-size: 13px; margin-bottom: 16px; display: none;
}
.login-err.show { display: block; }

/* Custom Modal Box */
.modal-overlay {
  display: none; position: fixed; inset: 0;
  background: rgba(8, 9, 10, 0.55); z-index: 9500;
  backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
  align-items: center; justify-content: center;
}
.modal-overlay.open { display: flex; }
.modal-box {
  background: var(--white); border-radius: var(--r-xl);
  padding: 38px 34px; max-width: 400px; width: 100%;
  box-shadow: none; text-align: center;
  border: 1px solid var(--g100);
  animation: modalEnter 0.4s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}
@keyframes modalEnter {
  from { opacity: 0; transform: scale(0.95) translateY(10px); }
  to { opacity: 1; transform: scale(1) translateY(0); }
}
.modal-box p { font-size: 16px; color: var(--g800); line-height: 1.65; margin-bottom: 26px; }
.modal-btns { display: flex; gap: 12px; justify-content: center; }

/* Toast Notifications */
.mgco-toast {
  position: fixed; bottom: 36px; left: 50%; transform: translateX(-50%) translateY(20px);
  background: var(--black); color: var(--white); padding: 14px 28px;
  border-radius: 50px; font-size: 14.5px; font-weight: 600;
  box-shadow: none; z-index: 9999;
  opacity: 0; transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  pointer-events: none; white-space: nowrap;
  border: 1px solid rgba(255, 255, 255, 0.08);
}
.mgco-toast.show {
  opacity: 1; transform: translateX(-50%) translateY(0);
}

/* â”€â”€ CMS STYLING â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.cms-page { display: none; min-height: 100vh; background: var(--g50); }
.cms-page.active { display: block; }
.cms-hdr {
  background: var(--white); border-bottom: 1px solid var(--g100);
  padding: 0 32px; display: flex; align-items: center;
  justify-content: space-between; height: 64px;
  position: sticky; top: 0; z-index: 100;
}
.cms-logo-txt { font-size: 17px; font-weight: 700; display: flex; align-items: center; gap: 10px; }
.cms-pill { background: var(--red); color: var(--white); font-size: 9px; font-weight: 700; padding: 2px 8px; border-radius: 12px; letter-spacing: 0.05em; }
.cms-layout { display: grid; grid-template-columns: 220px 1fr; min-height: calc(100vh - 64px); }
.cms-sidebar {
  background: var(--white); border-right: 1px solid var(--g100);
  padding: 20px 0; position: sticky; top: 64px;
  height: calc(100vh - 64px); overflow-y: auto;
}
.cms-nav {
  display: flex; align-items: center; gap: 12px; padding: 12px 24px;
  font-size: 13.5px; font-weight: 600; color: var(--g600);
  cursor: pointer; transition: all 0.3s var(--ease-out);
  border-right: 3px solid transparent;
}
.cms-nav:hover { color: var(--red); background: rgba(204, 0, 0, 0.02); }
.cms-nav.active { color: var(--red); background: rgba(204, 0, 0, 0.04); border-right-color: var(--red); }
.cms-body { padding: 32px; }
.cms-panel { display: none; }
.cms-panel.active { display: block; }
.cms-toolbar { display: flex; align-items: center; justify-content: space-between; margin-bottom: 24px; flex-wrap: wrap; gap: 12px; }
.cms-toolbar h2 { font-size: 20px; font-weight: 700; }
.cms-stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-bottom: 24px; }
.cms-stat { background: var(--white); border: 1px solid var(--g100); border-radius: var(--r-lg); padding: 24px; box-shadow: none; }
.cms-stat-val { font-size: 32px; font-weight: 800; letter-spacing: -0.02em; }
.cms-stat-lbl { font-size: 12px; color: var(--g400); margin-top: 4px; font-weight: 600; }
.tbl-wrap { background: var(--white); border: 1px solid var(--g100); border-radius: var(--r-lg); overflow: hidden; box-shadow: none; }
.tbl-section-hdr { padding: 16px 20px; border-bottom: 1px solid var(--g100); font-weight: 700; font-size: 14px; }
table.tbl { width: 100%; border-collapse: collapse; }
.tbl th {
  text-align: left; padding: 12px 20px; font-size: 10.5px; font-weight: 700;
  color: var(--g400); text-transform: uppercase; letter-spacing: 0.08em;
  border-bottom: 1px solid var(--g100); background: var(--g50);
}
.tbl td { padding: 14px 20px; font-size: 13.5px; border-bottom: 1px solid var(--g100); vertical-align: middle; }
.tbl tr:last-child td { border-bottom: none; }
.tbl tr:hover td { background: rgba(0, 0, 0, 0.01); }
.tag-pill { display: inline-block; padding: 3px 9px; border-radius: 12px; font-size: 10px; font-weight: 700; background: var(--g100); color: var(--g600); }
.tag-pill.de { background: #111; color: #FFCE00; }
.tag-pill.ar { background: #005500; color: #fff; }
.tag-pill.en { background: #003399; color: #fff; }
.act-btns { display: flex; gap: 6px; }
.act-btn {
  width: 30px; height: 30px; border-radius: var(--r-xs);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--g200); background: var(--white);
  cursor: pointer; color: var(--g600); transition: all 0.25s var(--ease-out);
}
.act-btn:hover { background: var(--g50); color: var(--black); }
.act-btn.del:hover { background: rgba(204, 0, 0, 0.06); border-color: rgba(204, 0, 0, 0.2); color: var(--red); }
.ed-wrap { background: var(--white); border: 1px solid var(--g100); border-radius: var(--r-lg); padding: 32px; box-shadow: none; }

.cms-lang-tabs {
  display: flex; gap: 4px; background: var(--g50);
  border-radius: var(--r-sm); padding: 4px; margin-bottom: 20px;
  border: 1px solid var(--g100);
}
.cms-ltab {
  padding: 8px 16px; border-radius: var(--r-xs); font-size: 12px;
  font-weight: 700; cursor: pointer; transition: all 0.25s var(--ease-out); color: var(--g600);
}
.cms-ltab.active { background: var(--white); color: var(--black); box-shadow: none; }
.cms-ltab-pane { display: none; }
.cms-ltab-pane.active { display: block; }

/* â”€â”€ WHATSAPP FLOAT â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.wa-float {
  position: fixed; bottom: 32px; right: 32px; z-index: 800;
  width: 56px; height: 56px; border-radius: 50%; background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: none; transition: all 0.3s var(--ease-spring);
}
.wa-float:hover { transform: scale(1.08) translateY(-2px); box-shadow: none; }

/* â”€â”€ SCROLL REVEAL â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.visible { opacity: 1; transform: none; }

/* â”€â”€ MEDIA QUERIES â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€â”€ */
@media (max-width: 1100px) {
  .svc-grid, .testi-grid, .blog-grid, .team-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .about-wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-visual img { height: 380px; }
  .about-accent { bottom: -16px; right: 16px; }
  [dir="rtl"] .about-accent { right: auto; left: 16px; }
  .proc-grid { grid-template-columns: repeat(2, 1fr); }
  .contact-wrap { grid-template-columns: 1fr; gap: 40px; }
  .hero-photo { width: 40%; }
  .hero-badge { right: 40px; bottom: 40px; }
  [dir="rtl"] .hero-badge { right: auto; left: 40px; bottom: 40px; }
}

@media (max-width: 768px) {
  :root { --spy: 64px; }
  .nav-links, .navbar-right .btn { display: none; }
  .navbar-right { min-width: auto; }
  .mob-toggle { display: flex; }
  .svc-grid, .testi-grid, .blog-grid, .team-grid, .proc-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-btm { flex-direction: column; text-align: center; gap: 16px; }
  .hero-photo, .hero-badge { display: none; }
  .cta-inner { flex-direction: column; text-align: center; }
  [dir="rtl"] .cta-inner { flex-direction: column; }
  .cta-btns { flex-wrap: wrap; justify-content: center; }
  .form-row { grid-template-columns: 1fr; }
  .cms-layout { grid-template-columns: 1fr; }
  .cms-sidebar { display: none; }
  .cms-stats-row { grid-template-columns: repeat(2, 1fr); }
  .hero-cta { flex-direction: column; }
  [dir="rtl"] .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; justify-content: center; }
  .contact-form { padding: 32px 24px; }
  .blog-detail-cover { height: 240px; }
  .cms-body { padding: 20px; }
  .page-hero { padding: 110px 0 60px; }
  .modal-btns { flex-direction: column; }
}

@media (max-width: 480px) {
  h1 { font-size: 32px; }
  h2 { font-size: 24px; }
  .stat-num { font-size: 32px; }
  .hero-stats { gap: 28px; }
  .container { padding: 0 20px; }
  .mgco-toast { max-width: calc(100% - 40px); white-space: normal; text-align: center; }
}

/* ════════════════════════════════════════════════════
   GALLERY CAROUSEL
════════════════════════════════════════════════════ */
.carousel {
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  margin-top: 36px;
  box-shadow: none;
  background: #0d0a0a;
}

/* Sliding track */
.carousel-track {
  display: flex;
  transition: transform .52s cubic-bezier(.4,0,.2,1);
  will-change: transform;
}

/* Each slide */
.car-slide {
  position: relative;
  min-width: 100%;
  aspect-ratio: 16/7;
  overflow: hidden;
  flex-shrink: 0;
}

/* Photo / video media */
.car-media {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
video.car-media {
  background: #000;
}

/* Caption overlay */
.car-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 48px 28px 22px;
  background: linear-gradient(to top, rgba(10,6,6,.78) 0%, transparent 100%);
  display: flex;
  align-items: flex-end;
  gap: 12px;
}
.car-type-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(6px);
  border: 1px solid rgba(255,255,255,.22);
  color: #fff;
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  white-space: nowrap;
  flex-shrink: 0;
}
.car-title {
  color: rgba(255,255,255,.9);
  font-size: 15px;
  font-weight: 600;
  text-shadow: 0 1px 6px rgba(0,0,0,.4);
}

/* Video container and play button */
.car-video-container {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.car-play {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 2;
  transition: opacity 0.3s ease;
  background: rgba(0, 0, 0, 0.05);
}
.car-slide.playing .car-play {
  opacity: 0;
  pointer-events: none;
}
.car-play i {
  width: 64px;
  height: 64px;
  background: rgba(255,255,255,.16);
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255,255,255,.4);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  transition: transform .2s ease, background .2s ease;
  padding: 18px;
}
.car-play:hover i {
  transform: scale(1.1);
  background: rgba(255,255,255,.26);
}

/* Prev / Next arrow buttons */
.carousel-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255,255,255,.14);
  backdrop-filter: blur(8px);
  border: 1.5px solid rgba(255,255,255,.28);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: background .2s ease, transform .2s ease;
  z-index: 10;
}
.carousel-btn:hover {
  background: rgba(255,255,255,.26);
  transform: translateY(-50%) scale(1.08);
}
.carousel-prev { left: 16px; }
.carousel-next { right: 16px; }
[dir="rtl"] .carousel-prev { left: auto; right: 16px; }
[dir="rtl"] .carousel-next { right: auto; left: 16px; }
[dir="rtl"] .carousel-btn i {
  transform: rotate(180deg);
}

/* Dot indicators */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 10;
}
.car-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(255,255,255,.35);
  cursor: pointer;
  padding: 0;
  transition: background .2s ease, transform .2s ease;
}
.car-dot.active {
  background: var(--gold);
  transform: scale(1.35);
}

/* Responsive */
@media (max-width: 768px) {
  .car-slide { aspect-ratio: 4/3; }
  .car-title { font-size: 13px; }
  .carousel-btn { width: 36px; height: 36px; }
  .car-play i { width: 52px; height: 52px; padding: 14px; }
}
@media (max-width: 480px) {
  .car-slide { aspect-ratio: 1/1; }
  .carousel-prev { left: 8px; }
  .carousel-next { right: 8px; }
}

/* ════════════════════════════════════════════════════
   SMOOTH MOTIONS & TRANSITIONS — Global Upgrade
════════════════════════════════════════════════════ */

/* ── Refined easing variables ────────────────────── */
:root {
  --ease-spring:   cubic-bezier(0.34, 1.56, 0.64, 1);   /* springy overshoot  */
  --ease-out:      cubic-bezier(0.22, 1, 0.36, 1);        /* smooth decelerate  */
  --ease-in-out:   cubic-bezier(0.45, 0, 0.55, 1);        /* balanced           */
  --ease-bounce:   cubic-bezier(0.34, 1.4, 0.64, 1);      /* gentle bounce      */
  --dur-xs:  .12s;
  --dur-sm:  .22s;
  --dur-md:  .38s;
  --dur-lg:  .55s;
  --dur-xl:  .72s;
}

/* ── Page view fade-in ───────────────────────────── */
.page-view {
  animation: none;
}
.page-view.active {
  animation: pageIn var(--dur-md) var(--ease-out) both;
}
@keyframes pageIn {
  from { opacity: 0; transform: translateY(14px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── Scroll reveal — smoother trajectory ─────────── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity var(--dur-lg) var(--ease-out),
              transform var(--dur-lg) var(--ease-out);
  will-change: opacity, transform;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Navbar — smooth background transition ───────── */
.navbar {
  transition: background var(--dur-md) var(--ease-out),
              box-shadow var(--dur-md) var(--ease-out),
              backdrop-filter var(--dur-md) var(--ease-out);
}

/* ── Nav links ──────────────────────────────────── */
.nav-link,
.mob-link {
  position: relative;
  transition: color var(--dur-sm) var(--ease-out);
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0; right: 0;
  height: 2px;
  background: var(--red);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: center;
  transition: transform var(--dur-md) var(--ease-spring);
}
.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

/* ── Lang buttons ───────────────────────────────── */
.lang-btn {
  transition: background var(--dur-sm) var(--ease-out),
              color var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-spring),
              box-shadow var(--dur-sm) var(--ease-out);
}
.lang-btn:hover  { transform: translateY(-2px); }
.lang-btn:active { transform: translateY(0) scale(.95); }

/* ── Buttons — all variants ─────────────────────── */
.btn {
  transition: background var(--dur-sm) var(--ease-out),
              color var(--dur-sm) var(--ease-out),
              border-color var(--dur-sm) var(--ease-out),
              box-shadow var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-spring);
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0) scale(.96); }

/* ── Service cards ──────────────────────────────── */
.svc-card {
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-out),
              border-color var(--dur-md) var(--ease-out);
}
.svc-card:hover {
  transform: translateY(-6px) scale(1.015);
}

/* ── Blog cards ─────────────────────────────────── */
.blog-card {
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-out);
}
.blog-card:hover {
  transform: translateY(-6px) scale(1.012);
}
.blog-card .blog-img img {
  transition: transform var(--dur-lg) var(--ease-out);
}
.blog-card:hover .blog-img img {
  transform: scale(1.07);
}

/* ── Testimonial cards ──────────────────────────── */
.testi-card {
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-out);
}
.testi-card:hover {
  transform: translateY(-5px);
}

/* ── Team cards ─────────────────────────────────── */
.team-card {
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-out);
}
.team-card:hover { transform: translateY(-6px); }
.team-card .team-photo img {
  transition: transform var(--dur-lg) var(--ease-out);
}
.team-card:hover .team-photo img { transform: scale(1.06); }

/* ── Process steps ──────────────────────────────── */
.proc-step {
  transition: transform var(--dur-md) var(--ease-spring),
              box-shadow var(--dur-md) var(--ease-out);
}
.proc-step:hover { transform: translateY(-4px); }

/* ── Footer social icons ────────────────────────── */
.footer-soc {
  transition: transform var(--dur-sm) var(--ease-spring),
              background var(--dur-sm) var(--ease-out),
              color var(--dur-sm) var(--ease-out);
}
.footer-soc:hover { transform: translateY(-3px) scale(1.15); }

/* ── WhatsApp float ─────────────────────────────── */
.wa-float {
  transition: transform var(--dur-sm) var(--ease-spring),
              box-shadow var(--dur-sm) var(--ease-out);
  animation: waPulse 2.8s ease-in-out infinite;
}
.wa-float:hover {
  transform: scale(1.12);
  animation: none;
}
@keyframes waPulse {
  0%, 100% { transform: scale(1);    box-shadow: none; }
  50%       { transform: scale(1.06); box-shadow: none; }
}

/* ── Form inputs ────────────────────────────────── */
.form-input {
  transition: border-color var(--dur-sm) var(--ease-out),
              box-shadow var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-out);
}
.form-input:focus {
  transform: translateY(-1px);
}

/* ── Hero badge float animation ─────────────────── */
.hero-badge {
  animation: heroBadgeFloat 3.6s ease-in-out infinite;
}
@keyframes heroBadgeFloat {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-8px); }
}

/* ── Hero stats number pop-in ────────────────────── */
.stat-num {
  transition: transform var(--dur-md) var(--ease-spring);
}
.stat-num:hover { transform: scale(1.08); }

/* ── Carousel — smoother slide ──────────────────── */
.carousel-track {
  transition: transform var(--dur-xl) var(--ease-out);
}
.carousel-btn {
  transition: background var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-spring),
              opacity var(--dur-sm) var(--ease-out);
}
.carousel-btn:hover {
  transform: translateY(-50%) scale(1.12);
}
.car-dot {
  transition: background var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-spring),
              width var(--dur-sm) var(--ease-out);
}
.car-dot.active {
  width: 22px;
  border-radius: 4px;
  transform: none;
}
.car-play i {
  transition: transform var(--dur-sm) var(--ease-spring),
              background var(--dur-sm) var(--ease-out);
}

/* ── About visual image ─────────────────────────── */
.about-visual img {
  transition: transform var(--dur-lg) var(--ease-out);
}
.about-visual:hover img { transform: scale(1.03); }

/* ── Eyebrow pill ───────────────────────────────── */
.eyebrow {
  transition: transform var(--dur-sm) var(--ease-spring);
}

/* ── CMS nav items ──────────────────────────────── */
.cms-nav {
  transition: background var(--dur-sm) var(--ease-out),
              color var(--dur-sm) var(--ease-out),
              transform var(--dur-sm) var(--ease-spring);
}
.cms-nav:hover { transform: translateX(4px); }
[dir="rtl"] .cms-nav:hover { transform: translateX(-4px); }



/* ── Modal overlay & box ────────────────────────── */
.modal-overlay {
  transition: opacity var(--dur-md) var(--ease-out);
}
.modal-box {
  transition: transform var(--dur-md) var(--ease-spring);
  transform: scale(.92);
}
.modal-overlay.open .modal-box {
  transform: scale(1);
}

/* ── Admin overlay ──────────────────────────────── */
.admin-overlay {
  transition: opacity var(--dur-md) var(--ease-out);
}
.login-card {
  transition: transform var(--dur-md) var(--ease-spring);
  transform: scale(.93) translateY(20px);
}
.admin-overlay.open .login-card {
  transform: scale(1) translateY(0);
}

/* ── Toast ──────────────────────────────────────── */
.mgco-toast {
  transition: transform var(--dur-md) var(--ease-spring),
              opacity var(--dur-md) var(--ease-out);
  transform: translateY(16px);
  opacity: 0;
}
.mgco-toast.show {
  transform: translateY(0);
  opacity: 1;
}

/* ── Staggered card reveals ─────────────────────── */
.svc-grid    .svc-card:nth-child(1)  { transition-delay: .05s; }
.svc-grid    .svc-card:nth-child(2)  { transition-delay: .12s; }
.svc-grid    .svc-card:nth-child(3)  { transition-delay: .19s; }
.svc-grid    .svc-card:nth-child(4)  { transition-delay: .26s; }
.svc-grid    .svc-card:nth-child(5)  { transition-delay: .33s; }
.blog-grid   .blog-card:nth-child(1) { transition-delay: .05s; }
.blog-grid   .blog-card:nth-child(2) { transition-delay: .12s; }
.blog-grid   .blog-card:nth-child(3) { transition-delay: .19s; }
.testi-grid  .testi-card:nth-child(1){ transition-delay: .05s; }
.testi-grid  .testi-card:nth-child(2){ transition-delay: .12s; }
.testi-grid  .testi-card:nth-child(3){ transition-delay: .19s; }

/* Respect reduced-motion preference */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* -- Scroll-To-Top Button ------------------------- */
.scroll-up { position: fixed; bottom: 90px; right: 30px; width: 44px; height: 44px; background: var(--red); color: var(--white); border-radius: 50%; display: flex; align-items: center; justify-content: center; cursor: pointer; z-index: 1000; opacity: 0; pointer-events: none; transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease; box-shadow: 0 4px 14px rgba(204, 0, 0, 0.2) !important; }
.scroll-up.show { opacity: 1; pointer-events: auto; }
.scroll-up:hover { background: var(--black); transform: translateY(-4px); box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3) !important; }
[dir='rtl'] .scroll-up { right: auto; left: 30px; }

/* -- Language Dropdown ------------------------- */
.lang-dropdown { position: relative; display: inline-block; }
.lang-dropdown-btn { display: flex; align-items: center; gap: 4px; background: var(--g50); border-radius: 30px; padding: 6px 14px; border: 1px solid var(--g100); font-size: 11px; font-weight: 700; color: var(--g600); cursor: pointer; transition: all 0.25s var(--ease-out); }
.lang-dropdown:hover .lang-dropdown-btn { background: var(--white); color: var(--black); }
.lang-dropdown-content { position: absolute; top: 100%; right: 0; margin-top: 8px; background: var(--white); border: 1px solid var(--g100); border-radius: var(--r-sm); display: flex; flex-direction: column; min-width: 60px; opacity: 0; visibility: hidden; transform: translateY(-10px); transition: all 0.3s var(--ease-spring); z-index: 100; box-shadow: 0 4px 12px rgba(17,17,17,0.1) !important; }
.lang-dropdown:hover .lang-dropdown-content { opacity: 1; visibility: visible; transform: translateY(0); }
.lang-dropdown-content .lang-btn { border-radius: 0; text-align: center; padding: 10px; border-bottom: 1px solid var(--g50); }
.lang-dropdown-content .lang-btn:last-child { border-bottom: none; }
[dir='rtl'] .lang-dropdown-content { right: auto; left: 0; }

/* ═══════════════════════════════════════════════════════
   RTL (Arabic) — COMPREHENSIVE ALIGNMENT FIXES
   Applied when html[dir="rtl"]
   ═══════════════════════════════════════════════════════ */

/* -- Base text ------------------------------------------- */
[dir="rtl"] p,
[dir="rtl"] h1,
[dir="rtl"] h2,
[dir="rtl"] h3,
[dir="rtl"] h4,
[dir="rtl"] .lead,
[dir="rtl"] .hero-lead,
[dir="rtl"] .ab-desc { text-align: right; }

/* -- All form inputs and textareas ----------------------- */
[dir="rtl"] .form-input,
[dir="rtl"] input,
[dir="rtl"] textarea,
[dir="rtl"] select { text-align: right; direction: rtl; }

/* -- Hero ------------------------------------------------ */
[dir="rtl"] .hero-content .container { text-align: right; }
[dir="rtl"] .hero-stats { justify-content: flex-start; }
[dir="rtl"] .stat-num,
[dir="rtl"] .stat-lbl { text-align: right; }
[dir="rtl"] .hero-badge-lbl,
[dir="rtl"] .hero-badge-val { text-align: right; }

/* -- Section headers ------------------------------------- */
[dir="rtl"] .sec-hdr { text-align: right; }
[dir="rtl"] .sec-hdr .lead { text-align: right; }
[dir="rtl"] .sec-hdr.tc { text-align: center; }
[dir="rtl"] .sec-hdr.tc .lead { text-align: center; }
[dir="rtl"] .sec-hdr-row { text-align: right; }

/* -- Service cards --------------------------------------- */
[dir="rtl"] .svc-card { text-align: right; }
[dir="rtl"] .svc-card::after { left: auto; right: 0; }

/* -- Process steps --------------------------------------- */
[dir="rtl"] .proc-step { text-align: right; }
[dir="rtl"] .proc-num { text-align: right; }

/* -- Feature rows ---------------------------------------- */
[dir="rtl"] .feat-title,
[dir="rtl"] .feat-desc { text-align: right; }

/* -- About wrap grid — reverse column order -------------- */
[dir="rtl"] .about-wrap { direction: rtl; }
[dir="rtl"] .about-wrap > div { direction: rtl; }
[dir="rtl"] .about-accent { text-align: center; }

/* -- Testimonials ---------------------------------------- */
[dir="rtl"] .testi-card { text-align: right; }
[dir="rtl"] .testi-stars { justify-content: flex-start; direction: rtl; }
[dir="rtl"] .testi-text { text-align: right; }
[dir="rtl"] .testi-name,
[dir="rtl"] .testi-loc { text-align: right; }
[dir="rtl"] .testi-quote-icon { margin-inline-start: 0; margin-inline-end: auto; }

/* -- Blog cards ------------------------------------------ */
[dir="rtl"] .blog-body { text-align: right; }
[dir="rtl"] .blog-title,
[dir="rtl"] .blog-excerpt { text-align: right; }
[dir="rtl"] .blog-tag { left: auto; right: 14px; }

/* -- Blog detail ----------------------------------------- */
[dir="rtl"] .blog-detail-wrap { text-align: right; }
[dir="rtl"] .blog-detail-body { text-align: right; }
[dir="rtl"] .blog-detail-body h2,
[dir="rtl"] .blog-detail-body h3 { text-align: right; }

/* -- Team cards ------------------------------------------ */
[dir="rtl"] .team-body { text-align: right; }
[dir="rtl"] .team-name,
[dir="rtl"] .team-role,
[dir="rtl"] .team-bio { text-align: right; }

/* -- Page hero (inner pages) ----------------------------- */
[dir="rtl"] .page-hero .container { text-align: right; }
[dir="rtl"] .page-hero h1,
[dir="rtl"] .page-hero p { text-align: right; }

/* -- Contact --------------------------------------------- */
[dir="rtl"] .contact-form { text-align: right; }
[dir="rtl"] .contact-form h3 { text-align: right; }
[dir="rtl"] .form-label { text-align: right; display: block; }
[dir="rtl"] .c-info-lbl,
[dir="rtl"] .c-info-val { text-align: right; }
[dir="rtl"] .c-info-icon { margin-right: 0; }
[dir="rtl"] .contact-wrap { direction: rtl; }

/* -- CTA band -------------------------------------------- */
[dir="rtl"] .cta-band h2,
[dir="rtl"] .cta-band p { text-align: right; }

/* -- Footer ---------------------------------------------- */
[dir="rtl"] .footer-grid { direction: rtl; }
[dir="rtl"] .footer-col-title,
[dir="rtl"] .footer-desc,
[dir="rtl"] .footer-lnk,
[dir="rtl"] .footer-copy { text-align: right; }
[dir="rtl"] .footer-ci-text { text-align: right; }
[dir="rtl"] .footer-links { align-items: flex-start; }

/* -- Eyebrow --------------------------------------------- */

/* -- Gallery caption ------------------------------------- */
[dir="rtl"] .car-caption { text-align: right; }
[dir="rtl"] .car-title { text-align: right; }

/* -- Login card ------------------------------------------ */
[dir="rtl"] .login-close { right: auto; left: 18px; }
[dir="rtl"] .login-title,
[dir="rtl"] .login-sub { text-align: center; }

/* -- Buttons with icons — reverse icon/text order -------- */
[dir="rtl"] .svc-more i { transform: scaleX(-1); }
[dir="rtl"] .blog-more i { transform: scaleX(-1); }

/* -- Mobile nav ------------------------------------------ */
[dir="rtl"] .mob-nav { text-align: right; }
[dir="rtl"] .mob-link { text-align: right; }

/* -- Scroll-up & WA float RTL swap ---------------------- */
[dir="rtl"] .scroll-up { right: auto; left: 30px; }
[dir="rtl"] .wa-float   { right: auto; left: 32px; }

/* -- Language dropdown ----------------------------------- */
[dir="rtl"] .lang-dropdown-content { right: auto; left: 0; }

/* -- CMS in RTL — keep LTR layout ----------------------- */
[dir="rtl"] .cms-page { direction: ltr; text-align: left; }

/* ═══════════════════════════════════════════════════════
   PREMIUM CONTACT FORM ENHANCEMENTS & UNIFICATION
   ═══════════════════════════════════════════════════════ */

/* -- Control wrap & input absolute icon spacing ---------- */
.form-control-wrap {
  position: relative;
  width: 100%;
}
.form-control-icon {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  color: var(--g400);
  width: 16px;
  height: 16px;
  pointer-events: none;
  transition: color 0.2s var(--ease-out);
  inset-inline-start: 16px;
  z-index: 2;
}
.form-control-wrap i.textarea-icon {
  top: 16px;
  transform: none;
}
.form-input {
  padding-inline-start: 44px !important;
}

/* -- Active focus highlights ----------------------------- */
.form-control-wrap:focus-within .form-control-icon {
  color: var(--red);
}
.dark-form .form-control-wrap:focus-within .form-control-icon {
  color: var(--gold);
}

/* -- Helper error messages ------------------------------- */
.field-error-msg {
  display: block;
  font-size: 11.5px;
  color: var(--red);
  margin-top: 4px;
  min-height: 16px;
  line-height: 1.4;
  opacity: 0;
  transform: translateY(-4px);
  transition: all 0.2s var(--ease-out);
  pointer-events: none;
  text-align: start;
}
.field-error-msg.show {
  opacity: 1;
  transform: translateY(0);
}
.dark-form .field-error-msg {
  color: hsl(0, 100%, 75%);
}

/* -- Input validation border states ---------------------- */
.form-input.invalid {
  border-color: var(--red) !important;
  box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15) !important;
  animation: formShake 0.4s ease;
}
.dark-input.invalid {
  border-color: hsl(0, 100%, 70%) !important;
  box-shadow: 0 0 0 3px rgba(255, 0, 0, 0.25) !important;
  animation: formShake 0.4s ease;
}
.form-input.valid {
  border-color: #10b981 !important;
  box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.1) !important;
}
.dark-input.valid {
  border-color: var(--gold) !important;
  box-shadow: 0 0 0 3px rgba(255, 206, 0, 0.15) !important;
}

/* -- Shaking animation for validation errors ------------- */
@keyframes formShake {
  0%, 100% { transform: translateX(0); }
  20%, 60% { transform: translateX(-6px); }
  40%, 80% { transform: translateX(6px); }
}

/* -- Dynamic character counter & footer ------------------ */
.form-group-footer {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-top: 4px;
}
.char-counter {
  font-size: 11.5px;
  color: var(--g400);
  font-weight: 500;
  margin-inline-start: auto;
  transition: color 0.2s var(--ease-out);
}
.dark-form .char-counter {
  color: rgba(255, 255, 255, 0.4);
}
.char-counter.warning {
  color: var(--red);
  font-weight: 600;
}
.dark-form .char-counter.warning {
  color: hsl(0, 100%, 75%);
}

/* -- Simulated loading button spinner -------------------- */
.btn.loading {
  pointer-events: none;
  position: relative;
  color: transparent !important;
}
.btn.loading .btn-icon,
.btn.loading span {
  visibility: hidden;
  opacity: 0;
}
.btn.loading::after {
  content: '';
  position: absolute;
  width: 18px;
  height: 18px;
  top: 50%;
  left: 50%;
  margin-top: -9px;
  margin-left: -9px;
  border: 2.5px solid rgba(255, 255, 255, 0.3);
  border-top-color: #fff;
  border-radius: 50%;
  animation: btnSpinner 0.6s linear infinite;
}
.btn-gold.loading::after {
  border-color: rgba(0, 0, 0, 0.15);
  border-top-color: var(--black);
}

/* ═══ OFFLINE BANNER ═══ */
.offline-banner {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(135deg, var(--red) 0%, hsl(354, 80%, 35%) 100%);
  color: white;
  padding: 14px 20px;
  text-align: center;
  z-index: 9999;
  font-weight: 600;
  font-size: 14px;
  transform: translateY(-100%);
  transition: transform 0.4s var(--ease-spring);
  box-shadow: var(--sh-lg);
  display: none;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

.offline-banner.show {
  display: flex;
  transform: translateY(0);
}

.offline-banner-content {
  display: flex;
  align-items: center;
  gap: 12px;
}

.offline-banner i {
  animation: pulse 2s ease-in-out infinite;
}

/* ═══ 404 PAGE STYLING ═══ */
#page-404 .page-hero {
  background: linear-gradient(135deg, rgba(0, 0, 0, 0.02) 0%, rgba(255, 0, 0, 0.02) 100%);
}

#page-404 h1 {
  font-size: clamp(32px, 5vw, 48px);
  line-height: 1.1;
  margin-bottom: 20px;
}

#page-404 [role="alert"] {
  animation: slideUp 0.5s var(--ease-spring);
}
@keyframes btnSpinner {
  to { transform: rotate(360deg); }
}

.form-shake-anim {
  animation: formShake 0.4s ease;
}

/* -------------------------------------------------------
   MATH CAPTCHA STYLING
   ------------------------------------------------------- */

/* -- Math problem display in form ----------------------- */
.math-problem {
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  font-size: 13px;
  font-weight: 600;
  color: var(--g500);
  padding: 0 12px;
  white-space: nowrap;
  pointer-events: none;
  letter-spacing: 0.5px;
}

.dark-form .math-problem {
  color: rgba(255, 255, 255, 0.6);
}

.form-control-wrap:focus-within .math-problem {
  color: var(--g600);
}

.dark-form .form-control-wrap:focus-within .math-problem {
  color: rgba(255, 255, 255, 0.8);
}

/* -- Math input field width ----------------------------- */
#fi-math-h,
#ct-fi-math {
  max-width: 100px;
  width: 100px;
}

/* -- RTL adjustments ------------------------------------ */
[dir="rtl"] .math-problem {
  right: auto;
  left: 0;
  padding: 0 12px;
}
/* Loading Skeleton Animation */
.skeleton { background: linear-gradient(90deg, var(--g50) 0%, var(--g100) 50%, var(--g50) 100%); background-size: 1000px 100%; animation: skeleton-loading 1.5s infinite; border-radius: var(--r-sm); }
.skeleton-text { height: 16px; margin-bottom: 8px; }
.skeleton-avatar { width: 48px; height: 48px; border-radius: 50%; }
.skeleton-card { height: 200px; border-radius: var(--r-lg); margin-bottom: 12px; }

/* Loading State */
.loading { position: relative; pointer-events: none; opacity: 0.6; }
.loading::after { content: \'\'; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.7); border-radius: inherit; display: flex; align-items: center; justify-content: center; animation: smoothSpin 2s linear infinite; }

/* Icon Styling */
[data-lucide] { transition: all 0.3s var(--ease-spring); }
.btn [data-lucide], .nav-link [data-lucide] { transition: transform 0.3s var(--ease-spring); }
.btn:hover [data-lucide] { animation: bounce 0.4s var(--ease-spring); }
i.icon-container { display: inline-flex; align-items: center; justify-content: center; width: 44px; height: 44px; border-radius: var(--r); background: var(--g50); color: var(--red); transition: all 0.3s var(--ease-spring); }
i.icon-container:hover { background: var(--red); color: var(--white); transform: scale(1.08) rotate(8deg); }
i.icon-gold { background: rgba(255, 193, 7, 0.1); color: var(--gold); }
i.icon-gold:hover { background: var(--gold); color: var(--black); }
i.icon-red { background: rgba(204, 0, 0, 0.08); color: var(--red); }
i.icon-red:hover { background: var(--red); color: var(--white); }

/* Button Hover Elevation */
.btn-primary:hover, .btn-gold:hover, .btn-outline:hover, .btn-outline-dark:hover { 
  box-shadow: 0 12px 32px rgba(204, 0, 0, 0.2), 0 0 0 0 rgba(204, 0, 0, 0.1);
}

/* Card Hover Elevation */
.svc-card:hover, .proc-step:hover, .testi-card:hover, .team-card:hover, .blog-card:hover {
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.12);
  transform: translateY(-4px);
}

/* Carousel Enhancements */
.carousel-dots .dot { transition: all 0.3s var(--ease-spring); }
.carousel-dots .dot.active { background: var(--red); box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.1); }
.carousel-btn { box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08); transition: all 0.3s var(--ease-spring); }
.carousel-btn:hover { background: var(--red); color: var(--white); transform: scale(1.1); box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25); }

/* Form Label Enhancement */
.form-label { font-weight: 600; color: var(--black); transition: color 0.3s var(--ease-out); letter-spacing: 0.01em; }
.form-input:focus ~ .form-label, .form-input:focus { color: var(--red); }

/* Input Animations */
.form-input:focus { animation: none; }
.form-input::placeholder { animation: none; transition: color 0.3s var(--ease-out); }
.form-input:focus::placeholder { color: var(--gold); }

/* Eyebrow Enhancement */
.eyebrow { color: var(--red); font-weight: 700; text-transform: uppercase; letter-spacing: 0.15em; font-size: 11px; animation: slideInDown 0.6s var(--ease-spring); }

/* Stat Number Counter Animation */
.stat-num { font-size: 32px; font-weight: 800; color: var(--red); animation: floatUp 0.8s var(--ease-spring) forwards; opacity: 0; }

/* Empty State Styling */
.empty-state { text-align: center; padding: 60px 20px; color: var(--g500); }
.empty-state-icon { font-size: 48px; margin-bottom: 16px; opacity: 0.4; }
.empty-state-text { font-size: 18px; margin-bottom: 20px; }

/* Validation Animations */
.form-input.error { animation: shake 0.3s var(--ease-spring); border-color: var(--red); }
.form-input.success { border-color: #00753f; background: rgba(0, 160, 80, 0.02); }

/* Form Group Enhancements */
.form-group { position: relative; transition: all 0.3s var(--ease-out); }
.form-group.focused .form-label { color: var(--red); font-weight: 700; }
.form-group.focused .form-control-icon { color: var(--red); transform: scale(1.1); }
.form-control-wrap.has-content .form-control-icon { animation: bounce 0.3s var(--ease-spring); }

/* Input placeholder animation */
.form-input::placeholder { opacity: 0.5; transition: opacity 0.3s var(--ease-out); }
.form-input:focus::placeholder { opacity: 0.3; color: var(--gold); }

/* Success/Error Input State */
.form-input.success { border-color: #10b981 !important; background: rgba(16, 185, 129, 0.02); }
.form-input.success:focus { box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15); }
.form-input.error { border-color: var(--red) !important; background: rgba(204, 0, 0, 0.02); }
.form-input.error:focus { box-shadow: 0 0 0 3px rgba(204, 0, 0, 0.15); }

/* Service Card Enhancement */
.svc-card { overflow: hidden; }
.svc-card::before { transition: all 0.35s var(--ease-spring); }
.svc-icon { transition: all 0.35s var(--ease-spring); }
.svc-card:hover .svc-icon { animation: bounce 0.5s var(--ease-spring); }

/* Process Step Enhancement */
.proc-step { overflow: hidden; position: relative; }
.proc-step::after { transition: opacity 0.35s var(--ease-spring); }
.proc-num { transition: all 0.35s var(--ease-spring); }
.proc-step:hover .proc-num { background: var(--red); color: var(--white); transform: scale(1.15) rotate(8deg); }

/* Testimonial Card Enhancement */
.testi-card { position: relative; }
.testi-quote-icon { opacity: 0.15; transition: all 0.35s var(--ease-spring); }
.testi-card:hover .testi-quote-icon { opacity: 0.3; transform: scale(1.2); color: var(--red); }

/* Team Card Enhancement */
.team-card { position: relative; overflow: hidden; }
.team-photo { transition: all 0.5s var(--ease-out); }
.team-card:hover .team-photo { transform: scale(1.08); filter: brightness(1.1); }
.team-info { transition: all 0.3s var(--ease-spring); }
.team-card:hover .team-info { background: var(--g50); }

/* Blog Card Enhancement */
.blog-card { position: relative; overflow: hidden; }
.blog-card-img { transition: all 0.5s var(--ease-out); }
.blog-card:hover .blog-card-img { transform: scale(1.08) rotate(2deg); }
.blog-card-badge { animation: floatUp 0.6s var(--ease-spring); }

/* CTA Band Button Enhancement */
.cta-band { position: relative; overflow: hidden; }
.cta-band .btn { position: relative; overflow: hidden; }
.cta-band .btn::before { content: ''; position: absolute; inset: 0; background: rgba(255, 255, 255, 0.1); opacity: 0; transition: opacity 0.3s var(--ease-out); }
.cta-band .btn:hover::before { opacity: 1; }

/* Footer Link Enhancement */
.footer-lnk { position: relative; }
.footer-lnk::after { content: ''; position: absolute; bottom: -2px; inset-inline-start: 0; width: 0; height: 1px; background: var(--gold); transition: width 0.3s var(--ease-spring); }
.footer-lnk:hover::after { width: 100%; }

/* Page Transition */
.page-view { animation: fadeUp 0.5s var(--ease-spring); }

/* Toast Notification */
.toast-notification { position: fixed; bottom: 24px; right: 24px; background: var(--red); color: white; padding: 14px 20px; border-radius: var(--r-sm); font-size: 14px; z-index: 10001; animation: slideUp 0.4s var(--ease-spring); box-shadow: 0 8px 20px rgba(204, 0, 0, 0.25); }
.toast-notification.success { background: #10b981; }
.toast-notification.error { background: var(--red); }

/* Mobile optimizations */
@media (max-width: 768px) {
  .carousel-btn { width: 40px; height: 40px; }
  .btn { padding: 12px 20px; font-size: 13px; }
  .svc-card, .proc-step, .testi-card, .team-card, .blog-card { transition: all 0.25s var(--ease-spring); }
}
