/* ============================================================
   Primary: #e94a2f | Dark: #464444 | Light: #f8f9fa
   Font: IBM Plex Sans Arabic (local)
============================================================ */

/* ---- IBM Plex Sans Arabic Font Faces ---- */
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Thin.woff2') format('woff2');
  font-weight: 100;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-ExtraLight.woff2') format('woff2');
  font-weight: 200;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Light.woff2') format('woff2');
  font-weight: 300;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Regular.woff2') format('woff2');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Text.woff2') format('woff2');
  font-weight: 450;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Medium.woff2') format('woff2');
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-SemiBold.woff2') format('woff2');
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'IBM Plex Sans Arabic';
  src: url('../webfonts/IBMPlexSansArabic-Bold.woff2') format('woff2');
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

/* ---- CSS Variables ---- */
:root {
  --primary:    #e94a2f;
  --primary-dark: #cf3f26;
  --primary-rgb: 233,74,47;
  --dark:       #464444;
  --dark-alt:   #5c5959;
  --dark-rgb:   70,68,68;
  --light:      #f8f9fa;
  --white:      #ffffff;
  --gray:       #6f6968;
  --border:     #ebe2df;
  --shadow:     0 8px 32px rgba(var(--dark-rgb),0.10);
  --shadow-hover: 0 16px 48px rgba(var(--primary-rgb),0.18);
  --radius:     12px;
  --transition: all 0.35s cubic-bezier(0.4,0,0.2,1);
  --font:       'IBM Plex Sans Arabic', sans-serif;
}

/* ---- Reset & Base ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; overflow-x: hidden; }

body {
  font-family: var(--font);
  color: #3f3b3b;
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
}

a { color: inherit; text-decoration: none; transition: var(--transition); }
img { max-width: 100%; height: auto; display: block; }
ul { list-style: none; padding: 0; margin: 0; }

/* ---- Utilities ---- */
.section-padding { padding: 100px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-light-custom { background: var(--light); }
.bg-dark-custom { background: var(--dark); }
.text-primary-custom { color: var(--primary); }
.text-dark-custom { color: var(--dark); }

/* ---- Section Heading ---- */
.section-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--primary);
  position: relative;
  padding-left: 40px;
  margin-bottom: 14px;
}
.section-label::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  transform: translateY(-50%);
  width: 28px; height: 2px;
  background: var(--primary);
}

[dir="rtl"] .section-label {
  padding-left: 0;
  padding-right: 40px;
}
[dir="rtl"] .section-label::before {
  left: auto;
  right: 0;
}


.section-title {
  font-size: clamp(2rem, 4vw, 1rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1.2;
  margin-bottom: 20px;
}

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

.section-desc {
  font-size: 1rem;
  color: var(--gray);
  max-width: 600px;
  margin-bottom: 40px;
}

/* ---- Buttons ---- */
.btn-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: var(--primary);
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-primary-custom:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.btn-outline-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 34px;
  background: transparent;
  color: var(--white);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid rgba(255,255,255,0.6);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-custom:hover {
  background: var(--white);
  color: var(--primary);
  border-color: var(--white);
  transform: translateY(-2px);
}

.btn-outline-primary-custom {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 13px 32px;
  background: transparent;
  color: var(--primary);
  border-radius: 50px;
  font-weight: 600;
  font-size: 15px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  cursor: pointer;
}
.btn-outline-primary-custom:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

/* ============================================================
   HEADER / NAVBAR
============================================================ */
#mainHeader {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1080;
  transition: var(--transition);
  padding: 0;
  border-bottom: 1px solid rgba(255,255,255,0.14);
}
#mainHeader.transparent { background: transparent; }
#mainHeader.scrolled {
  background: var(--white);
  box-shadow: 0 10px 30px rgba(11,34,57,0.10);
  padding: 0;
  border-bottom-color: rgba(11,34,57,0.10);
}

#mainHeader .container {
  max-width: 100%;
  padding-left: 24px;
  padding-right: 24px;
}

.navbar-shell {
  width: 100%;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: none;
  box-shadow: none;
  padding: 0;
}

#mainHeader.scrolled .navbar-shell {
  background: transparent;
  box-shadow: none;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--white) !important;
  margin-right: 28px;
  padding: 18px 0;
}

#mainHeader.scrolled .navbar-brand {
  color: var(--dark) !important;
}

.brand-icon {
  width: auto;
  height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 26px;
  flex-shrink: 0;
}

.brand-icon img {
  height: 50px;
  width: auto;
  max-width: 100%;
  display: block;
  object-fit: contain;
}

#mainHeader.scrolled .brand-icon {
  border-color: rgba(11,34,57,0.85);
  color: var(--dark);
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.brand-title {
  font-size: 34px;
  font-weight: 600;
  letter-spacing: 1px;
}

.brand-subtitle {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.8px;
  margin-top: 4px;
}

#mainHeader.scrolled .brand-copy {
  color: var(--dark);
}

.nav-link {
  font-size: 17px;
  font-weight: 600;
  text-transform: uppercase;
  color: rgba(255,255,255,0.92) !important;
  padding: 26px 18px !important;
  transition: var(--transition);
  letter-spacing: 0.3px;
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 18px; left: 18px;
  width: 0; height: 2px;
  background: var(--primary);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after { width: calc(100% - 32px); }
.nav-link:hover,
.nav-link.active { color: var(--primary) !important; }

.dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

#mainHeader.scrolled .nav-link {
  color: var(--dark) !important;
}

#mainHeader.scrolled .nav-link:hover,
#mainHeader.scrolled .nav-link.active {
  color: var(--primary) !important;
}

.navbar-nav {
  gap: 4px;
}

.dropdown-toggle::after {
  border: none;
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  line-height: 1;
  margin-left: 0;
  position: relative;
  top: 1px;
}

/* Dropdown */
.dropdown-menu {
  border: none;
  border-radius: 0;
  box-shadow: 0 18px 40px rgba(11,34,57,0.14);
  padding: 14px 0;
  min-width: 200px;
  background: var(--white);
  animation: dropdownFade 0.25s ease;
}
@keyframes dropdownFade {
  from { opacity: 0; transform: translateY(-10px); }
  to   { opacity: 1; transform: translateY(0); }
}
.dropdown-item {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--dark);
  padding: 10px 20px;
  transition: var(--transition);
}
.dropdown-item:hover {
  background: #f5f7fa;
  color: var(--primary);
  padding-left: 26px;
}

.nav-extra {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-left: 20px;
}

.nav-icon {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 20px;
  position: relative;
}

#mainHeader.scrolled .nav-icon {
  color: var(--dark);
}

.nav-icon:hover {
  color: var(--primary);
}

.lang-dropdown .dropdown-toggle::after {
  display: none;
}

.lang-pill-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 999px;
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.55);
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: .04em;
  text-decoration: none;
  transition: background .2s, border-color .2s, color .2s;
  cursor: pointer;
  white-space: nowrap;
}

.lang-pill-toggle:hover,
.lang-pill-toggle:focus {
  border-color: rgba(255,255,255,0.9);
  color: #fff;
  text-decoration: none;
}

#mainHeader.scrolled .lang-pill-toggle {
  background: transparent;
  border-color: rgba(11,34,57,0.35);
  color: var(--dark);
}

#mainHeader.scrolled .lang-pill-toggle:hover,
#mainHeader.scrolled .lang-pill-toggle:focus {
  border-color: rgba(11,34,57,0.7);
  color: var(--dark);
}

.lang-pill-code {
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  letter-spacing: .06em;
}

.lang-pill-arrow {
  font-size: 10px;
  opacity: .8;
  transition: transform .2s;
}

.lang-pill-toggle[aria-expanded="true"] .lang-pill-arrow {
  transform: rotate(180deg);
}

.lang-flag {
  font-size: 18px;
  line-height: 1;
}

.lang-flag-kurdish {
  width: 22px;
  height: 16px;
  display: inline-block;
  border-radius: 2px;
  background:
    radial-gradient(circle at center, #f7d117 0 18%, transparent 19%),
    linear-gradient(to bottom, #d62828 0 33.33%, #ffffff 33.33% 66.66%, #2a9d3f 66.66% 100%);
  box-shadow: inset 0 0 0 1px rgba(11,34,57,0.08);
}

.lang-flag-english {
  width: 22px;
  height: 16px;
  display: inline-block;
  border-radius: 2px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 60 30'%3E%3Crect width='60' height='30' fill='%23012169'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23fff' stroke-width='6'/%3E%3Cpath d='M0,0 L60,30 M60,0 L0,30' stroke='%23C8102E' stroke-width='4'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23fff' stroke-width='10'/%3E%3Cpath d='M30,0 V30 M0,15 H60' stroke='%23C8102E' stroke-width='6'/%3E%3C/svg%3E") no-repeat center / cover;
  box-shadow: inset 0 0 0 1px rgba(0,0,0,0.08);
}

.lang-label,
.lang-name {
  font-size: 14px;
  font-weight: 600;
  text-transform: none;
}

.lang-menu {
  min-width: 170px;
  padding: 10px 0;

}

.lang-option {
  display: flex;
  align-items: center;
  gap: 10px;
  text-transform: none;
}

.lang-option.active,
.lang-option:hover {
  color: var(--primary);
  background: transparent !important;
}

.nav-icon-badge {
  position: absolute;
  left: 1px;
  bottom: 2px;
  min-width: 22px;
  height: 22px;
  padding: 0 4px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 700;
  border: 2px solid rgba(255,255,255,0.88);
}

#mainHeader.scrolled .nav-icon-badge {
  border-color: var(--white);
}

.nav-quote-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 16px 36px;
  background: var(--primary);
  color: var(--white);
  font-size: 17px;
  font-weight: 700;
  text-transform: uppercase;
  border-radius: 2px;
  letter-spacing: 0.2px;
}

.nav-quote-btn:hover {
  background: var(--primary-dark);
  color: var(--white);
}

/* Hamburger */
/* .navbar-toggler {
  border: 2px solid rgba(255,255,255,0.5);
  border-radius: 0;
  padding: 8px 10px;
  transition: var(--transition);
}
.navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28255,255,255,0.9%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
}

#mainHeader.scrolled .navbar-toggler {
  border-color: rgba(11,34,57,0.28);
}

#mainHeader.scrolled .navbar-toggler-icon {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%2811,34,57,0.88%29' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
} */

/* Top bar */
.top-bar {
  display: none;
}

/* ============================================================
   HERO SECTION
============================================================ */
#hero {
  position: relative;
  overflow: hidden;
  background: var(--dark);
}

/* Per-slide background image (inside each swiper-slide) */
.hero-slide-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center top;
  transform: scale(1.06);
  transition: transform 7s ease-out;
  will-change: transform;
}
.swiper-slide-active .hero-slide-bg { transform: scale(1); }

/* Dark gradient overlay stays global */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    105deg,
    rgba(11,34,57,0.96) 0%,
    rgba(11,34,57,0.82) 50%,
    rgba(11,34,57,0.55) 100%
  );
}

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

.hero-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  gap: 14px;
}
.hero-label::before {
  content: '';
  width: 40px; height: 2px;
  background: var(--primary);
  display: block;
  flex-shrink: 0;
}

.hero-label,
.hero-title,
.hero-bottom-row .btn-primary-custom,
.hero-bottom-row .hero-sep,
.hero-bottom-row .hero-tagline-text {
  opacity: 0;
  transform: translateY(34px);
  will-change: transform, opacity;
}

.swiper-slide-active .hero-label {
  animation: heroReveal 0.75s ease forwards;
  animation-delay: 0.2s;
}

.swiper-slide-active .hero-title {
  animation: heroReveal 0.85s ease forwards;
  animation-delay: 0.48s;
}

.swiper-slide-active .hero-bottom-row .btn-primary-custom {
  animation: heroReveal 0.8s ease forwards;
  animation-delay: 0.82s;
}

.swiper-slide-active .hero-bottom-row .hero-sep,
.swiper-slide-active .hero-bottom-row .hero-tagline-text {
  animation: heroReveal 0.8s ease forwards;
  animation-delay: 1s;
}

@keyframes heroReveal {
  0% {
    opacity: 0;
    transform: translateY(34px);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero-title {
  font-size: clamp(1.6rem, 1.5vw, 2.4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1.08;
  margin-bottom: 44px;
  letter-spacing: -1px;
}
.hero-title span { color: var(--primary); }

/* Button + tagline row (matching reference layout) */
.hero-bottom-row {
  display: flex;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.hero-sep {
  width: 1px;
  height: 36px;
  background: rgba(255,255,255,0.25);
  flex-shrink: 0;
}
.hero-tagline-text {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
}

/* Keep compatibility with old .hero-actions */
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

/* Scroll indicator */
.scroll-indicator {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  color: rgba(255,255,255,0.5);
  font-size: 11px;
  letter-spacing: 2px;
  text-transform: uppercase;
}
.scroll-dot {
  width: 28px; height: 44px;
  border: 2px solid rgba(255,255,255,0.3);
  border-radius: 14px;
  position: relative;
}
.scroll-dot::after {
  content: '';
  position: absolute;
  top: 6px; left: 50%;
  transform: translateX(-50%);
  width: 5px; height: 5px;
  background: var(--primary);
  border-radius: 50%;
  animation: scrollAnim 2s infinite;
}
@keyframes scrollAnim {
  0%   { top: 6px; opacity: 1; }
  100% { top: 26px; opacity: 0; }
}

/* Hero statistics strip */
.hero-stats {
  position: relative;
  z-index: 2;
  margin-top: 80px;
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 40px;
  display: flex;
  gap: 48px;
  flex-wrap: wrap;
}
.hero-stat-item h3 {
  font-size: 2.4rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}
.hero-stat-item h3 span { color: var(--primary); }
.hero-stat-item p {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Swiper hero */
.hero-swiper { width: 100%; height: 100%; overflow: hidden; }
.hero-swiper .swiper-wrapper { overflow: hidden; }
.hero-swiper .swiper-slide {
  position: relative;
  overflow: hidden;
  display: flex;
  align-items: center;
  min-height: 100vh;
  padding: 160px 0 120px;
}

/* ---- Hero numbered pagination ---- */
.hero-controls {
  position: absolute;
  bottom: 52px;
  right: 60px;
  z-index: 10;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(9, 26, 44, 0.38);
  border: 1px solid rgba(255,255,255,0.10);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: 0 18px 45px rgba(0,0,0,0.22);
}
.hero-nav-btn {
  /* width: 54px; height: 54px; */
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.18);
  background: rgba(255,255,255,0.09);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  color: var(--white);
  font-size: 16px;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.04);
}

.hero-prev {
  color: rgba(255,255,255,0.92);
}

.hero-next {
  background: var(--primary);
  border-color: var(--primary);
  box-shadow: 0 10px 28px rgba(var(--primary-rgb),0.38);
}

.hero-nav-btn:hover {
  transform: translateY(-2px) scale(1.04);
  border-color: rgba(255,255,255,0.36);
  background: rgba(255,255,255,0.16);
}

.hero-nav-btn.hero-next:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
}

.hero-nav-btn i {
  transition: transform 0.25s ease;
}

.hero-nav-btn:hover i {
  transform: scale(1.08);
}
.hero-pagination-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-left: 10px;
}
.hero-pagination-wrap .swiper-pagination-bullet {
  width: auto;
  height: auto;
  background: none !important;
  border-radius: 0;
  opacity: 1;
  font-size: 14px;
  font-weight: 700;
  color: rgba(255,255,255,0.38);
  padding: 2px 1px;
  letter-spacing: 1px;
  transition: color 0.3s;
  cursor: pointer;
}
.hero-pagination-wrap .swiper-pagination-bullet-active {
  color: var(--white);
}

/* Progress bar under hero */
.hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(255,255,255,0.08);
  z-index: 10;
  overflow: hidden;
}
.hero-progress-bar {
  height: 100%;
  width: 0;
  background: var(--primary);
  transition: width 0.1s linear;
}

/* ============================================================
   PARTNERS STRIP
============================================================ */
.partners-strip {
  background: var(--white);
  padding: 40px 0;
  border-bottom: 1px solid var(--border);
}
.partner-logo {
  opacity: 0.45;
  filter: grayscale(100%);
  transition: var(--transition);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  font-weight: 800;
  color: var(--dark);
  letter-spacing: -0.5px;
}
.partner-logo:hover { opacity: 1; filter: none; }

/* ============================================================
   SERVICES SECTION
============================================================ */
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 32px;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: var(--primary);
  transition: var(--transition);
}
.service-card:hover::before { width: 100%; }
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
  border-color: transparent;
}

.service-icon {
  width: 68px; height: 68px;
  border-radius: 16px;
  background: rgba(var(--primary-rgb),0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
  transition: var(--transition);
}
.service-icon i {
  font-size: 28px;
  color: var(--primary);
  transition: var(--transition);
}
.service-card:hover .service-icon {
  background: var(--primary);
}
.service-card:hover .service-icon i { color: var(--white); }

.service-card h4 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
}
.service-card p {
  font-size: 14px;
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 1.7;
}
.service-link {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  letter-spacing: 0.5px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-link:hover { gap: 12px; }

/* ============================================================
   ABOUT SECTION
============================================================ */
.about-image-wrap {
  position: relative;
  display: inline-block;
  width: 100%;
}
.about-main-img {
  border-radius: 20px;
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 5/5;
}
.about-badge {
  position: absolute;
  bottom: 40px;
  right: -20px;
  background: var(--primary);
  color: var(--white);
  border-radius: 16px;
  padding: 20px 28px;
  text-align: center;
  box-shadow: var(--shadow-hover);
}
.about-badge-number {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  display: block;
}
.about-badge-text {
  font-size: 12px;
  opacity: 0.85;
  font-weight: 500;
}
.about-shape {
  position: absolute;
  top: -20px; left: -20px;
  width: 120px; height: 120px;
  border: 10px solid rgba(var(--primary-rgb),0.12);
  border-radius: 20px;
  z-index: -1;
}
.about-shape-2 {
  position: absolute;
  bottom: 80px; left: -30px;
  width: 80px; height: 80px;
  background: rgba(var(--primary-rgb),0.08);
  border-radius: 50%;
  z-index: -1;
}

.about-feature-list { margin: 24px 0 32px; }
.about-feature-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 16px;
}
.about-feature-item .icon {
  width: 36px; height: 36px;
  background: rgba(var(--primary-rgb),0.1);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.about-feature-item .icon i { color: var(--primary); font-size: 15px; }
.about-feature-item p { margin: 0; font-size: 15px; color: #4a5568; font-weight: 500; }

/* ============================================================
   WHY CHOOSE US
============================================================ */
.why-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  text-align: center;
  border: 1px solid var(--border);
  transition: var(--transition);
  height: 100%;
}
.why-card:hover {
  border-color: var(--primary);
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}
.why-icon {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: rgba(var(--primary-rgb),0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}
.why-icon i { font-size: 28px; color: var(--primary); }
.why-card h5 { font-size: 1.05rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.why-card p { font-size: 13.5px; color: var(--gray); margin: 0; }

/* ============================================================
   STATS / COUNTERS
============================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.stats-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="20" cy="20" r="30" fill="rgba(233,74,47,0.05)"/><circle cx="80" cy="80" r="40" fill="rgba(233,74,47,0.04)"/></svg>');
  background-size: cover;
}
.stat-card {
  text-align: center;
  padding: 20px;
  position: relative;
  z-index: 1;
}
.stat-number {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 8px;
  display: block;
}
.stat-plus { color: var(--primary); }
.stat-label {
  font-size: 13px;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 500;
}
.stat-icon {
  font-size: 36px;
  color: rgba(255,255,255,0.1);
  margin-bottom: 12px;
}

/* ============================================================
   PROCESS SECTION
============================================================ */
.process-step {
  text-align: center;
  padding: 20px;
  position: relative;
}
.process-step::after {
  content: '';
  position: absolute;
  top: 36px;
  right: -20%;
  width: 40%;
  height: 2px;
  background: linear-gradient(to right, var(--primary), rgba(var(--primary-rgb),0.2));
}
.process-step:last-child::after { display: none; }
.process-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--primary);
  color: var(--white);
  font-size: 1.4rem;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 12px rgba(var(--primary-rgb),0.1);
}
.process-step h5 { font-size: 1rem; font-weight: 700; color: var(--dark); margin-bottom: 10px; }
.process-step p { font-size: 13.5px; color: var(--gray); margin: 0; }

/* ============================================================
   TEAM SECTION
============================================================ */
.team-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
}
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-hover); }
.team-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  display: block;
}
.team-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(11,34,57,0.95) 0%, transparent 55%);
  transition: var(--transition);
}
.team-info {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: 28px 24px;
  transform: translateY(0);
  transition: var(--transition);
}
.team-info h5 { font-size: 1.05rem; font-weight: 700; color: var(--white); margin-bottom: 4px; }
.team-info span { font-size: 12px; color: var(--primary); font-weight: 600; text-transform: uppercase; letter-spacing: 1px; }
.team-social {
  display: flex;
  gap: 10px;
  margin-top: 14px;
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
}
.team-card:hover .team-social { opacity: 1; transform: translateY(0); }
.team-social a {
  width: 34px; height: 34px;
  border-radius: 8px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 14px;
  transition: var(--transition);
}
.team-social a:hover { background: var(--primary); }

/* ============================================================
   TESTIMONIALS
============================================================ */
.testimonials-section { background: var(--light); }
.testimonial-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  position: absolute;
  top: 20px; left: 32px;
  font-size: 80px;
  color: rgba(var(--primary-rgb),0.12);
  font-family: Georgia, serif;
  line-height: 1;
}
.testimonial-text {
  font-size: 1rem;
  color: #4a5568;
  line-height: 1.8;
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 16px;
}
.testimonial-author img {
  width: 54px; height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 3px solid rgba(var(--primary-rgb),0.15);
}
.testimonial-author h6 { font-size: 14px; font-weight: 700; color: var(--dark); margin: 0; }
.testimonial-author small { color: var(--primary); font-size: 12px; font-weight: 600; }
.star-rating { color: #fbbf24; font-size: 13px; margin-bottom: 4px; }

/* Swiper pagination */
.swiper-pagination-bullet { background: var(--primary); opacity: 0.3; }
.swiper-pagination-bullet-active { opacity: 1; }

/* ============================================================
   BLOG SECTION
============================================================ */
.blog-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  height: 100%;
  display: flex;
  flex-direction: column;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-hover); }
.blog-img-wrap { position: relative; overflow: hidden; }
.blog-img-wrap img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-img-wrap img { transform: scale(1.06); }
.blog-cat {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--primary);
  color: var(--white);
  font-size: 11px;
  font-weight: 700;
  padding: 4px 14px;
  border-radius: 50px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
.blog-body {
  padding: 28px 24px;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.blog-meta {
  font-size: 12px;
  color: var(--gray);
  margin-bottom: 12px;
  display: flex;
  gap: 16px;
  align-items: center;
}
.blog-meta i { color: var(--primary); }
.blog-card h4 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 12px;
  line-height: 1.5;
  transition: var(--transition);
}
.blog-card:hover h4 { color: var(--primary); }
.blog-card p {
  font-size: 13.5px;
  color: var(--gray);
  line-height: 1.7;
  flex: 1;
  margin-bottom: 20px;
}
.read-more {
  font-size: 13px;
  font-weight: 700;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.read-more:hover { gap: 12px; color: var(--primary-dark); }

/* ============================================================
   CONTACT SECTION
============================================================ */
.contact-info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px 28px;
  box-shadow: var(--shadow);
  height: 100%;
}
.contact-info-item {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  margin-bottom: 28px;
}
.contact-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: rgba(var(--primary-rgb),0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon i { color: var(--primary); font-size: 18px; }
.contact-info-item h6 { font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: 1px; color: var(--gray); margin-bottom: 4px; }
.contact-info-item p { font-size: 14px; font-weight: 600; color: var(--dark); margin: 0; }

.contact-form { background: var(--light); border-radius: var(--radius); padding: 40px 36px; }
.form-control-custom {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 10px;
  font-family: var(--font);
  font-size: 14px;
  color: var(--dark);
  background: var(--white);
  transition: var(--transition);
  outline: none;
  margin-bottom: 18px;
}
.form-control-custom:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(var(--primary-rgb),0.1);
}
.form-control-custom::placeholder { color: #aab; }
textarea.form-control-custom { resize: vertical; min-height: 120px; }
.form-error { display: none; color: #e53e3e; font-size: 12px; margin-top: -14px; margin-bottom: 10px; }

.map-placeholder {
  width: 100%;
  height: 300px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--border);
  position: relative;
}
.map-placeholder iframe {
  width: 100%;
  height: 100%;
  border: none;
}

/* ============================================================
   CTA BANNER
============================================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 80px 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%; right: -10%;
  width: 500px; height: 500px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}
.cta-banner h2 {
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
}
.cta-banner p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 0;
}

/* ============================================================
   NEWSLETTER
============================================================ */
.newsletter-section {
  background: var(--dark);
  padding: 60px 0;
}
.newsletter-input-wrap {
  display: flex;
  gap: 12px;
  max-width: 480px;
}
.newsletter-input {
  flex: 1;
  padding: 14px 18px;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: 50px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
}
.newsletter-input::placeholder { color: rgba(255,255,255,0.4); }
.newsletter-input:focus { border-color: var(--primary); background: rgba(255,255,255,0.12); }

/* ============================================================
   FOOTER
============================================================ */
.main-footer {
  background: var(--dark);
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 80px 0 0;
}
.footer-brand {
  font-size: 24px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 16px;
  display: inline-block;
}
.footer-brand span { color: var(--primary); }
.footer-desc {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  line-height: 1.8;
  margin-bottom: 24px;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 38px; height: 38px;
  border-radius: 10px;
  background: rgba(255,255,255,0.07);
  display: flex;
  align-items: center;
  justify-content: center;
  /* color: rgba(255,255,255,0.6); */
  font-size: 15px;
  transition: var(--transition);
}
.footer-social a:hover { background: var(--primary); color: var(--white); transform: translateY(-3px); }

.footer-heading {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--white);
  /* margin-bottom: 24px; */
  position: relative;
  padding-bottom: 12px;
}
.footer-heading::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 32px; height: 2px;
  /* background: var(--primary); */
}
[dir="rtl"] .footer-heading::after {
  left: auto;
  right: 0;
}

.footer-links { padding: 0; margin: 0; list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a {
  font-size: 14px;
  /* color: rgba(255,255,255,0.55); */
  color: white;
  display: flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
}
.footer-links a::before {
  /* content: ''; */
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--primary);
  flex-shrink: 0;
}
.footer-links a:hover { color: var(--white); padding-left: 6px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.35);
  padding: 24px 0;
  margin-top: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,0.4); margin: 0; }
.footer-bottom-links { display: flex; gap: 24px; }
.footer-bottom-links a {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.4);
  transition: var(--transition);
}
.footer-bottom-links a:hover { color: var(--primary); }

/* ============================================================
   BACK TO TOP
============================================================ */
#backToTop {
  position: fixed;
  bottom: 32px; right: 32px;
  width: 44px; height: 44px;
  background: var(--primary);
  color: var(--white);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
  z-index: 999;
  border: none;
}
#backToTop.visible { opacity: 1; visibility: visible; }
#backToTop:hover { background: var(--primary-dark); transform: translateY(-3px); }

/* ============================================================
   PAGE HERO (inner pages)
============================================================ */
.page-hero {
  background: linear-gradient(135deg, var(--dark) 0%, var(--dark-alt) 100%);
  padding: 160px 0 80px;
  position: relative;
  overflow: hidden;
}

/* ============================================================
   SPLIT HERO (new light-bg design)
============================================================ */

/* Override the dark #hero background */
#hero {
  background: #e8e8e8 !important;
}

/* Outer wrapper */
.hero-split-wrap {
  position: relative;
  width: 100%;
  min-height: 88vh;
  background: #e8e8e8;
  overflow: hidden;
}

/* Swiper must not fix height */
.hero-split-wrap .hero-swiper {
  width: 100%;
  height: auto !important;
}

.hero-split-wrap .hero-swiper .swiper-slide {
  min-height: 88vh;
  padding: 0;
  background: #e8e8e8;
  display: flex;
  align-items: stretch;
}

/* Inner: overlapping layout — image sits on top of text area */
.hero-split-inner {
  position: relative;
  width: 100%;
  min-height: 88vh;
  display: flex;
  align-items: center;
}

/* —— Left column (full width, right padding reserves space for image) —— */
.hero-split-left {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 160px 46% 210px 90px;
  background: transparent !important;
}

.hero-split-title {
  font-size: clamp(1.4rem, 1.8vw, 1.4rem) !important;
  font-weight: 400 !important;
  color: #1a1a1a !important;
  line-height: 1.08 !important;
  margin-bottom: 34px !important;
  letter-spacing: 0px !important;
  opacity: 1 !important;
  transform: none !important;
  animation: none !important;
}

/* "Discover More" pill button */
.hero-split-discover {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary);
  color: #fff !important;
  border-radius: 999px;
  padding: 11px 26px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.3px;
  text-decoration: none !important;
  border: 2px solid var(--primary);
  transition: var(--transition);
  width: fit-content;
}
.hero-split-discover:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  color: #fff !important;
  transform: translateY(-2px);
}
.hero-split-inf {
  font-size: 20px;
  line-height: 1;
}

/* —— Right image column (absolute, bleeds left with gradient fade) —— */
.hero-split-right {
  position: absolute;
  right: 0;
  top: 0;
  bottom: 0;
  width: 52%;
  overflow: hidden;
  background: transparent;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 22%, black 42%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 14%, black 34%);
  /* -webkit-mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, black 20%);
  mask-image: linear-gradient(to right, transparent 0%, rgba(0,0,0,0.6) 8%, black 20%); */
}

.hero-split-img {
  width: 100%;
  height: 100%;
  margin-top: 95px;
  object-fit: cover;
  display: block;
  transition: transform 0.9s ease;
}
.hero-split-wrap .swiper-slide-active .hero-split-img {
  transform: scale(1.04);
}
.hero-split-img--logo {
  object-fit: contain;
  padding: 40px;
  background: #d6d6d6;
}

/* —— Prev arrow (left side) —— */
.hero-split-prev-btn {
  position: absolute;
  left: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 30;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  border: 2px solid rgba(0,0,0,0.18);
  background: rgba(255,255,255,0.7);
  color: #1a1a1a;
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
}
.hero-split-prev-btn:hover {
  background: var(--primary);
  border-color: var(--primary);
  color: #fff;
  transform: translateY(-50%) scale(1.07);
}

/* —— Thumbnail strip at bottom-left —— */
.hero-thumb-strip {
  position: absolute;
  bottom: 40px;
  left: 90px;
  right: 40px;
  display: flex;
  gap: 14px;
  z-index: 20;
  overflow-x: auto;
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
  scroll-behavior: smooth;
  /* hide scrollbar but keep functionality */
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding-bottom: 4px;
}
.hero-thumb-strip::-webkit-scrollbar { display: none; }

.hero-thumb-card {
  position: relative;
  width: 250px !important;
  height: 108px;
  border-radius: 14px;
  overflow: hidden;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all 0.3s ease;
  flex-shrink: 0;
  box-shadow: 0 6px 24px rgba(0,0,0,0.2);
}
.hero-thumb-card.active,
.hero-thumb-card:hover {
  border-color: var(--primary);
}
.hero-thumb-card:hover {
  transform: translateY(-4px);
}

.hero-thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.hero-thumb-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.04) 58%);
}

.hero-thumb-info {
  position: absolute;
  bottom: 8px;
  left: 10px;
  right: 26px;
}
.hero-thumb-title {
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  margin: 0 0 2px;
  line-height: 1.28;
}
.hero-thumb-cat {
  color: rgba(255,255,255,0.72);
  font-size: 10px;
  font-weight: 500;
}
.hero-thumb-heart {
  position: absolute;
  top: 8px;
  right: 8px;
  color: rgba(255,255,255,0.82);
  font-size: 12px;
}

/* —— Hide old hero controls for split hero —— */
.hero-split-wrap .hero-controls,
.hero-split-wrap .hero-overlay,
.hero-split-wrap .hero-slide-bg {
  display: none !important;
}

/* Progress bar stays at bottom of the whole wrap */
.hero-split-wrap .hero-progress {
  position: absolute;
  bottom: 0; left: 0;
  width: 100%; height: 3px;
  background: rgba(0,0,0,0.08);
  z-index: 25;
}

/* —— RTL (Kurdish) — flip image to left side —— */
[dir="rtl"] .hero-split-right {
  right: auto;
  left: 0;
  -webkit-mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 22%, black 42%);
  mask-image: linear-gradient(to left, transparent 0%, rgba(0,0,0,0.6) 22%, black 42%);
}
[dir="rtl"] .hero-split-left {
  padding: 160px 90px 210px 46%;
}
[dir="rtl"] .hero-thumb-strip {
  left: 40px;
  right: 90px;
}
[dir="rtl"] .hero-split-prev-btn {
  left: auto;
  right: 20px;
}

/* —— Responsive —— */
@media (max-width: 1199.98px) {
  .hero-split-left             { padding: 160px 44% 200px 60px; }
  [dir="rtl"] .hero-split-left { padding: 160px 60px 200px 44%; }
  .hero-thumb-strip             { left: 60px; right: 30px; }
  [dir="rtl"] .hero-thumb-strip { left: 30px; right: 60px; }
}

@media (max-width: 991.98px) {
  /* Stack text then image vertically */
  .hero-split-wrap { min-height: auto; }
  .hero-split-wrap .hero-swiper .swiper-slide {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }
  .hero-split-inner {
    min-height: auto;
    flex-direction: column;
    align-items: stretch;
  }

  /* Text block – full width, only top padding for navbar */
  .hero-split-left,
  [dir="rtl"] .hero-split-left {
    position: relative;
    width: 100%;
    padding: 120px 28px 28px;
    z-index: 2;
  }

  /* Image block – back in flow, full width, fixed height */
  .hero-split-right,
  [dir="rtl"] .hero-split-right {
    position: relative;
    width: 100%;
    height: 280px;
    top: auto; bottom: auto; right: auto; left: auto;
    -webkit-mask-image: none;
    mask-image: none;
  }
  .hero-split-img { margin-top: 0; }

  /* Thumb strip – full width, scrollable, centered at bottom */
  .hero-thumb-strip,
  [dir="rtl"] .hero-thumb-strip {
    left: 16px;
    right: 16px;
    transform: none;
    bottom: 14px;
    gap: 10px;
  }
  .hero-split-prev-btn,
  [dir="rtl"] .hero-split-prev-btn {
    top: 140px;
    left: 10px;
    right: auto;
    transform: none;
  }

  /* Discover button – smaller on tablet */
  .hero-split-discover {
    padding: 9px 20px;
    font-size: 12px;
    gap: 8px;
  }
  .hero-split-inf { font-size: 16px; }
}

@media (max-width: 767.98px) {
  .hero-split-title  { font-size: 1.05rem !important; letter-spacing: 0px !important; line-height: 1.4 !important; }
  .hero-split-right,
  [dir="rtl"] .hero-split-right { height: 240px; }
  .hero-thumb-card   { width: 100px; height: 64px; }
  .hero-split-left,
  [dir="rtl"] .hero-split-left  { padding: 140px 20px 20px; }
  .hero-split-discover { padding: 8px 16px; font-size: 11px; gap: 6px; }
  .hero-split-inf { font-size: 14px; }
}

@media (max-width: 575.98px) {
  .hero-split-title  { font-size: 1rem !important; letter-spacing: 0px !important; line-height: 1.4 !important; }
  .hero-split-left,
  [dir="rtl"] .hero-split-left  { padding: 130px 16px 16px; }
  .hero-split-right,
  [dir="rtl"] .hero-split-right { height: 210px; }
  .hero-thumb-strip,
  [dir="rtl"] .hero-thumb-strip { gap: 8px; bottom: 10px; }
  .hero-thumb-card   { width: 100px; height: 64px; }
  .hero-split-prev-btn { display: none; }
  .hero-split-discover { padding: 7px 14px; font-size: 11px; gap: 5px; }
  .hero-split-inf { font-size: 13px; }
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* background: url('https://images.unsplash.com/photo-1560179707-f14e90ef3623?w=1200&q=70') center/cover; */
  background: url('../img/bina 1.jpg') center/cover;
  opacity: 0.08;
}
.page-hero-content { position: relative; z-index: 1; }
.page-hero h1 { font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 800; color: var(--white); margin-bottom: 16px; }
.breadcrumb-custom { display: flex; gap: 12px; align-items: center; }
.breadcrumb-custom a { font-size: 14px; color: rgba(255,255,255,0.6); }
.breadcrumb-custom a:hover { color: var(--primary); }
.breadcrumb-custom span { color: rgba(255,255,255,0.3); }
.breadcrumb-custom span.active-crumb { color: var(--primary); font-weight: 600; }

/* ============================================================
   BLOG DETAILS
============================================================ */
.blog-detail-content h2 { font-size: 1.6rem; font-weight: 700; color: var(--dark); margin: 32px 0 16px; }
.blog-detail-content p { font-size: 15px; color: #4a5568; line-height: 1.9; margin-bottom: 20px; }
.blog-detail-content blockquote {
  border-left: 4px solid var(--primary);
  padding: 20px 24px;
  background: rgba(var(--primary-rgb),0.04);
  border-radius: 0 12px 12px 0;
  font-size: 1.05rem;
  color: var(--dark);
  font-style: italic;
  font-weight: 500;
  margin: 32px 0;
}
.blog-detail-tags a {
  display: inline-block;
  padding: 5px 16px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 12px;
  color: var(--gray);
  margin: 4px;
  transition: var(--transition);
}
.blog-detail-tags a:hover { border-color: var(--primary); color: var(--primary); }

/* Sidebar */
.sidebar-widget {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px;
  box-shadow: var(--shadow);
  margin-bottom: 28px;
}
.sidebar-widget h5 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--primary);
  display: inline-block;
}

/* ============================================================
   ANIMATIONS & MISC
============================================================ */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 0.7s ease forwards;
}
@keyframes fadeInUp {
  to { opacity: 1; transform: translateY(0); }
}
.delay-100 { animation-delay: 0.1s; }
.delay-200 { animation-delay: 0.2s; }
.delay-300 { animation-delay: 0.3s; }
.delay-400 { animation-delay: 0.4s; }
.delay-500 { animation-delay: 0.5s; }

.floating {
  animation: floating 4s ease-in-out infinite;
}
@keyframes floating {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* Loading overlay */
#pageLoader {
  position: fixed;
  inset: 0;
  background: var(--dark);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.6s ease;
}
#pageLoader.hide { opacity: 0; pointer-events: none; }
.loader-logo {
  font-size: 32px;
  font-weight: 800;
  color: var(--white);
  animation: pulse 1.2s ease-in-out infinite;
}
.loader-logo span { color: var(--primary); }
@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}
