/*
  Intro site — modern landing redesign
  Load after style.css. Uses --main / --hover from settings.
*/

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

:root {
  --intro-bg: #f5f6f8;
  --intro-surface: #ffffff;
  --intro-text: #3d4454;
  --intro-muted: #7b8499;
  --intro-border: rgba(15, 23, 42, 0.08);
  --intro-shadow: 0 18px 50px rgba(15, 23, 42, 0.08);
  --intro-shadow-hover: 0 28px 60px rgba(15, 23, 42, 0.14);
  --intro-radius: 22px;
  --intro-radius-sm: 14px;
  --intro-ease: cubic-bezier(0.22, 1, 0.36, 1);
  --intro-header-h: 88px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Tajawal', 'myFont', sans-serif !important;
  background: var(--intro-bg);
  color: var(--intro-text);
  overflow-x: hidden;
}

.intro-page {
  position: relative;
  isolation: isolate;
}

.intro-page::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: -1;
  background:
    radial-gradient(900px 500px at 10% -5%, color-mix(in srgb, var(--main) 14%, transparent), transparent 60%),
    radial-gradient(700px 420px at 95% 15%, color-mix(in srgb, var(--hover) 12%, transparent), transparent 55%),
    linear-gradient(180deg, #f7f8fa 0%, var(--intro-bg) 40%, #eceef2 100%);
}

/* ==================== HEADER ==================== */
.intro-header {
  padding: 14px 0 !important;
  background: rgba(255, 255, 255, 0.72) !important;
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 8px 32px rgba(15, 23, 42, 0.06) !important;
  transition: padding 0.35s var(--intro-ease), background 0.35s var(--intro-ease), box-shadow 0.35s var(--intro-ease);
}

.intro-header.is-scrolled {
  padding: 8px 0 !important;
  background: rgba(255, 255, 255, 0.92) !important;
  box-shadow: 0 10px 40px rgba(15, 23, 42, 0.1) !important;
}

.intro-header .the-logo {
  max-height: 58px;
  transition: transform 0.35s var(--intro-ease);
}

.intro-header .the-logo:hover {
  transform: scale(1.04);
}

.intro-header .nav_bar {
  gap: 6px;
}

.intro-header .nav_bar a {
  position: relative;
  padding: 10px 14px;
  border-radius: 999px;
  font-weight: 600;
  color: var(--intro-text) !important;
}

.intro-header .nav_bar a::after {
  content: '';
  position: absolute;
  inset-inline: 14px;
  bottom: 6px;
  height: 2px;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--main), var(--hover));
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.35s var(--intro-ease);
}

.intro-header .nav_bar a:hover,
.intro-header .nav_bar a.active {
  color: var(--main) !important;
  background: color-mix(in srgb, var(--main) 8%, transparent);
}

.intro-header .nav_bar a.active::after,
.intro-header .nav_bar a:hover::after {
  transform: scaleX(1);
}

.intro-header .dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid var(--intro-border);
  background: var(--intro-surface);
  color: var(--intro-text);
  font-weight: 600;
  transition: all 0.3s var(--intro-ease);
}

.intro-header .dropdown-toggle:hover {
  border-color: color-mix(in srgb, var(--main) 35%, transparent);
  color: var(--main);
  box-shadow: 0 8px 24px color-mix(in srgb, var(--main) 12%, transparent);
}

.intro-header .dropdown-menu {
  border: 1px solid var(--intro-border) !important;
  box-shadow: var(--intro-shadow);
  padding: 8px !important;
}

.intro-header .dropdown-menu .dropdown-item {
  border-radius: 10px;
  font-weight: 600;
  transition: all 0.25s var(--intro-ease);
}

.intro-header .dropdown-menu .dropdown-item:hover {
  background: color-mix(in srgb, var(--main) 10%, transparent);
  color: var(--main) !important;
}

.body-content {
  margin-top: var(--intro-header-h) !important;
}

/* ==================== HERO / SLIDER ==================== */
.intro-hero.owl-index {
  position: relative;
}

.intro-hero .item {
  overflow: hidden;
}

.intro-hero .info_owl {
  height: min(88vh, 760px);
  min-height: 520px;
  align-items: center;
  background:
    linear-gradient(135deg, var(--main) 0%, var(--hover) 100%);
}

.intro-hero .info_owl::before,
.intro-hero .info_owl::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(2px);
}

.intro-hero .info_owl::before {
  width: 420px;
  height: 420px;
  top: -120px;
  inset-inline-end: 8%;
  background: rgba(255, 255, 255, 0.12);
  animation: introFloat 8s ease-in-out infinite;
}

.intro-hero .info_owl::after {
  width: 280px;
  height: 280px;
  bottom: -80px;
  inset-inline-start: 12%;
  background: rgba(255, 255, 255, 0.08);
  animation: introFloat 10s ease-in-out infinite reverse;
}

.intro-hero .ads_wol {
  max-width: 560px;
  animation: introFadeUp 0.9s var(--intro-ease) both;
}

.intro-hero .hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  backdrop-filter: blur(8px);
}

.intro-hero .hero-badge i {
  color: #ffe082;
}

.intro-hero .ads_wol h3 {
  color: #fff !important;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 18px;
  text-shadow: 0 8px 30px rgba(0, 0, 0, 0.18);
}

.intro-hero .ads_wol p {
  color: rgba(255, 255, 255, 0.88) !important;
  font-size: 1.05rem;
  line-height: 1.9;
  margin-bottom: 28px;
}

.intro-hero .hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.intro-hero .hero-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 160px;
  height: 50px;
  padding: 0 22px;
  border-radius: 14px;
  font-weight: 700;
  transition: transform 0.3s var(--intro-ease), box-shadow 0.3s var(--intro-ease), background 0.3s var(--intro-ease);
}

.intro-hero .hero-btn--primary {
  background: #fff;
  color: var(--main) !important;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.16);
}

.intro-hero .hero-btn--primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.22);
}

.intro-hero .hero-btn--ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff !important;
  border: 1px solid rgba(255, 255, 255, 0.28);
  backdrop-filter: blur(8px);
}

.intro-hero .hero-btn--ghost:hover {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.2);
}

.intro-hero .img_owl_index {
  width: min(52vw, 620px);
  height: min(52vw, 620px);
  border-radius: 50%;
  left: auto;
  inset-inline-end: -6%;
  bottom: auto;
  top: 50%;
  transform: translateY(-50%) rotate(-8deg);
  border: 6px solid rgba(255, 255, 255, 0.22);
  box-shadow: 0 30px 80px rgba(0, 0, 0, 0.28);
  animation: introHeroImage 1.1s var(--intro-ease) 0.15s both;
}

.intro-hero .img_owl_index::after {
  background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.18));
}

.intro-hero .img_owl_index img {
  transform: rotate(8deg) scale(1.08);
}

.intro-hero .owl-nav > div {
  background: rgba(255, 255, 255, 0.92);
  border: none;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.intro-hero .owl-nav > div:hover {
  transform: scale(1.08);
}

.intro-hero .owl-carousel .owl-dot {
  background: rgba(255, 255, 255, 0.35);
}

.intro-hero .owl-carousel .owl-dot.active {
  background: #fff;
}

/* ==================== SECTIONS ==================== */
.intro-section {
  position: relative;
  padding-top: 90px !important;
  padding-bottom: 90px !important;
}

.intro-section--alt {
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.65), rgba(255, 255, 255, 0.2));
}

.intro-section--gradient {
  background: var(--main2);
  color: #fff;
}

.intro-section--soft {
  background: linear-gradient(180deg, #fff 0%, #f7f9fd 100%);
}

.intro-section__head {
  max-width: 720px;
  margin: 0 auto 48px;
  text-align: center;
}

.intro-section__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  margin-bottom: 14px;
  border-radius: 999px;
  background: color-mix(in srgb, var(--main) 10%, #fff);
  color: var(--main);
  font-size: 13px;
  font-weight: 700;
  border: 1px solid color-mix(in srgb, var(--main) 18%, transparent);
}

.intro-section--gradient .intro-section__badge {
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  border-color: rgba(255, 255, 255, 0.22);
}

.intro-section__title {
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.35;
  margin-bottom: 14px;
  color: #1f2430;
}

.intro-section--gradient .intro-section__title,
.intro-section--gradient .intro-section__desc {
  color: #fff;
}

.intro-section__desc {
  color: var(--intro-muted);
  font-size: 1.02rem;
  line-height: 1.85;
  margin: 0;
}

.intro-section--gradient .intro-section__desc {
  color: rgba(255, 255, 255, 0.86);
}

/* ==================== ABOUT ==================== */
.intro-about .info_JM {
  padding-inline-end: 20px;
}

.intro-about .main-color {
  color: var(--main) !important;
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
}

.intro-about .grey-color {
  color: var(--intro-muted) !important;
  line-height: 1.95;
  font-size: 1.02rem;
}

.intro-about .intro-app-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.intro-about .link-app {
  display: block;
  border-radius: 16px;
  overflow: hidden;
  transition: transform 0.35s var(--intro-ease), box-shadow 0.35s var(--intro-ease);
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.intro-about .link-app:hover {
  transform: translateY(-6px) scale(1.02);
  box-shadow: var(--intro-shadow-hover);
}

.intro-about .link-app img {
  display: block;
  max-width: 180px;
}

.intro-about .img_info_JM {
  min-height: 420px;
}

.intro-about .img_info_JM img:first-of-type {
  width: min(100%, 300px);
  height: auto;
  aspect-ratio: 9/16;
  box-shadow: var(--intro-shadow-hover);
  border: 4px solid #fff;
}

.intro-about .img_info_JM img:last-of-type {
  width: min(100%, 240px);
  height: auto;
  aspect-ratio: 9/16;
  inset-inline-start: 0;
  border: 4px solid #fff;
  box-shadow: var(--intro-shadow);
  opacity: 0.95;
}

/* ==================== SERVICES ==================== */
.intro-services .intro-service-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  border-radius: var(--intro-radius);
  padding: 32px 26px;
  position: relative;
  overflow: hidden;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s var(--intro-ease), box-shadow 0.4s var(--intro-ease), border-color 0.4s var(--intro-ease);
}

.intro-services .intro-service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, color-mix(in srgb, var(--main) 8%, transparent), transparent 55%);
  opacity: 0;
  transition: opacity 0.4s var(--intro-ease);
}

.intro-services .intro-service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.16);
  border-color: rgba(255, 255, 255, 0.9);
}

.intro-services .intro-service-card:hover::before {
  opacity: 1;
}

.intro-services .intro-service-card__icon {
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 18px;
  margin-bottom: 22px;
  background: linear-gradient(135deg, var(--main), var(--hover));
  box-shadow: 0 12px 28px color-mix(in srgb, var(--main) 28%, transparent);
  transition: transform 0.4s var(--intro-ease);
}

.intro-services .intro-service-card:hover .intro-service-card__icon {
  transform: scale(1.08) rotate(-4deg);
}

.intro-services .intro-service-card__icon img {
  max-width: 38px;
  filter: brightness(0) invert(1);
}

.intro-services .intro-service-card h6 {
  font-size: 1.15rem;
  font-weight: 800;
  margin-bottom: 12px;
  color: #1f2430;
  position: relative;
}

.intro-services .intro-service-card p {
  color: var(--intro-muted) !important;
  line-height: 1.85;
  margin: 0;
  position: relative;
}

/* ==================== HOW IT WORKS ==================== */
.intro-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  position: relative;
  padding-top: 20px;
}

.intro-steps::before {
  content: '';
  position: absolute;
  top: 58px;
  inset-inline: 8%;
  height: 2px;
  background: linear-gradient(90deg, transparent, color-mix(in srgb, var(--main) 35%, transparent), transparent);
  pointer-events: none;
}

.intro-step {
  text-align: center;
  padding: 24px 18px;
  border-radius: var(--intro-radius);
  background: var(--intro-surface);
  border: 1px solid var(--intro-border);
  box-shadow: var(--intro-shadow);
  transition: transform 0.35s var(--intro-ease), box-shadow 0.35s var(--intro-ease), border-color 0.35s var(--intro-ease);
}

.intro-step:hover {
  transform: translateY(-8px);
  box-shadow: var(--intro-shadow-hover);
  border-color: color-mix(in srgb, var(--main) 22%, transparent);
}

.intro-step__num {
  width: 34px;
  height: 34px;
  margin: 0 auto 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--main), var(--hover));
  color: #fff;
  font-weight: 800;
  font-size: 14px;
  box-shadow: 0 8px 20px color-mix(in srgb, var(--main) 25%, transparent);
}

.intro-step img {
  width: 96px !important;
  height: 96px !important;
  object-fit: contain;
  margin: 0 auto 16px;
  transition: transform 0.35s var(--intro-ease);
}

.intro-step:hover img {
  transform: scale(1.08);
}

.intro-step div {
  font-weight: 700;
  color: #1f2430;
  line-height: 1.6;
}

/* ==================== FAQ ==================== */
.intro-faq__tabs-wrap {
  position: relative;
  z-index: 3;
  margin-bottom: 36px;
  padding-bottom: 8px;
  clear: both;
}

.intro-faq__content {
  position: relative;
  z-index: 1;
  clear: both;
  margin-top: 0;
}

.intro-faq .tab-pane:not(.show) {
  display: none !important;
}

.intro-faq .tab-pane.show {
  display: block !important;
}

.intro-faq .nav-pills {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-bottom: 0 !important;
}

.intro-faq .nav-pills .nav-item {
  margin: 0;
}

.intro-faq .nav-pills .nav-link {
  width: auto !important;
  min-width: 120px;
  max-width: 100%;
  height: auto !important;
  min-height: 44px;
  line-height: 1.35 !important;
  padding: 11px 22px !important;
  margin: 0 !important;
  border-radius: 999px !important;
  font-weight: 700;
  color: var(--intro-muted);
  background: #fff !important;
  background-image: none !important;
  border: 1px solid var(--intro-border);
  white-space: normal;
  text-align: center;
  transition: all 0.3s var(--intro-ease);
}

.intro-faq .nav-pills .nav-link:hover {
  color: var(--main);
  border-color: color-mix(in srgb, var(--main) 25%, transparent);
}

.intro-faq .nav-pills .nav-link.active {
  background: var(--main2) !important;
  background-image: var(--main2) !important;
  color: #fff !important;
  border-color: transparent !important;
  box-shadow: 0 10px 28px rgba(16, 22, 58, 0.22);
}

.intro-faq .accordion .card {
  border: 1px solid var(--intro-border) !important;
  border-radius: var(--intro-radius-sm) !important;
  margin: 0 0 12px !important;
  overflow: hidden;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
  transition: box-shadow 0.3s var(--intro-ease), border-color 0.3s var(--intro-ease);
}

.intro-faq .accordion .card:hover {
  box-shadow: 0 14px 34px rgba(15, 23, 42, 0.08);
  border-color: color-mix(in srgb, var(--main) 18%, transparent) !important;
}

.intro-faq .accordion .card-header {
  background: #fff !important;
  border: none !important;
  padding: 0 !important;
  position: relative;
  z-index: 0;
}

.intro-faq .accordion .card-header button {
  width: 100%;
  text-align: inherit;
  padding: 18px 20px !important;
  font-weight: 700;
  color: #1f2430;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.intro-faq .accordion .card-header button::after {
  content: '\f078';
  font-family: 'Font Awesome 5 Free';
  font-weight: 900;
  color: var(--main);
  transition: transform 0.3s var(--intro-ease);
}

.intro-faq .accordion .card-header button[aria-expanded="true"] {
  color: var(--main) !important;
  background: color-mix(in srgb, var(--main) 6%, #fff) !important;
}

.intro-faq .accordion .card-header button[aria-expanded="true"]::after {
  transform: rotate(180deg);
}

.intro-faq .accordion .card-body {
  padding: 0 20px 18px !important;
  color: var(--intro-muted);
  line-height: 1.85;
}

/* ==================== PARTNERS ==================== */
.intro-partners .owl-brands .item {
  padding: 18px;
}

.intro-partners .partner-card {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 110px;
  padding: 20px;
  border-radius: var(--intro-radius-sm);
  background: #fff;
  border: 1px solid var(--intro-border);
  box-shadow: var(--intro-shadow);
  transition: transform 0.35s var(--intro-ease), box-shadow 0.35s var(--intro-ease), filter 0.35s var(--intro-ease);
}

.intro-partners .partner-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--intro-shadow-hover);
}

.intro-partners .partner-card img {
  max-height: 56px;
  width: auto;
  object-fit: contain;
  filter: grayscale(1) opacity(0.72);
  transition: filter 0.35s var(--intro-ease), transform 0.35s var(--intro-ease);
}

.intro-partners .partner-card:hover img {
  filter: grayscale(0) opacity(1);
  transform: scale(1.06);
}

/* ==================== CONTACT ==================== */
.intro-contact .form-content {
  background: #fff;
  border: 1px solid var(--intro-border);
  border-radius: calc(var(--intro-radius) + 4px);
  padding: 36px 32px;
  box-shadow: var(--intro-shadow);
  position: relative;
  overflow: hidden;
}

.intro-contact .form-content::before {
  content: '';
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--main), var(--hover));
}

.intro-contact .form-control {
  height: 54px;
  border-radius: 14px !important;
  border: 1px solid var(--intro-border) !important;
  background: #f8fafc !important;
  padding-inline: 16px;
  font-weight: 500;
  transition: border-color 0.3s var(--intro-ease), box-shadow 0.3s var(--intro-ease), background 0.3s var(--intro-ease);
}

.intro-contact textarea.form-control {
  height: auto;
  min-height: 140px;
  padding-top: 14px;
}

.intro-contact .form-control:focus {
  background: #fff !important;
  border-color: color-mix(in srgb, var(--main) 40%, transparent) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--main) 12%, transparent) !important;
}

.intro-contact .btn-main {
  width: auto;
  min-width: 180px;
  margin: 24px 0 0;
  height: 52px;
  line-height: 52px;
  border-radius: 14px;
  font-weight: 800;
  border: none;
  box-shadow: 0 14px 34px color-mix(in srgb, var(--main) 28%, transparent);
  transition: transform 0.3s var(--intro-ease), box-shadow 0.3s var(--intro-ease);
}

.intro-contact .btn-main:hover {
  transform: translateY(-3px);
  box-shadow: 0 20px 40px color-mix(in srgb, var(--main) 34%, transparent);
}

.intro-contact .btn-main i {
  transition: transform 0.3s var(--intro-ease);
}

.intro-contact .btn-main:hover i {
  transform: translateX(-4px);
}

/* ==================== FOOTER (matches hero / services brand gradient) ==================== */
footer.intro-footer,
.intro-footer {
  position: relative;
  overflow: hidden;
  margin-top: 0;
  padding: 0 !important;
  color: rgba(255, 255, 255, 0.92) !important;
  background-color: var(--main) !important;
  background-image: linear-gradient(180deg, var(--main) 0%, var(--hover) 100%) !important;
}

.intro-footer__accent {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  pointer-events: none;
}

.intro-footer__accent::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.12), transparent);
}

.intro-footer__main {
  position: relative;
  z-index: 1;
  padding: 72px 0 48px;
}

.intro-footer__main .container,
.intro-footer__main .row,
.intro-footer__main [class*="col-"] {
  background: transparent !important;
}

.intro-footer__brand {
  display: inline-block;
  margin-bottom: 18px;
}

.intro-footer__brand .logo_footer {
  max-height: 62px;
  max-width: 140px;
  margin: 0 !important;
  filter: brightness(1.1);
}

.intro-footer__about {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.95rem;
  line-height: 1.85;
  margin-bottom: 22px;
  max-width: 320px;
}

.intro-footer__title {
  color: #fff !important;
  font-size: 1.05rem;
  font-weight: 800;
  margin-bottom: 20px;
  letter-spacing: 0.02em;
}

.intro-footer__links {
  margin: 0;
  padding: 0;
}

.intro-footer__links li {
  margin-bottom: 12px;
  list-style: none;
}

.intro-footer__links a,
.intro-footer__links span {
  color: rgba(255, 255, 255, 0.78) !important;
  font-weight: 500;
  transition: color 0.25s var(--intro-ease), transform 0.25s var(--intro-ease);
}

.intro-footer__links a:hover {
  color: #fff !important;
  transform: translateX(-3px);
}

html[lang="en"] .intro-footer__links a:hover {
  transform: translateX(3px);
}

.intro-footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.intro-footer__contact i {
  width: 18px;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.5) !important;
  flex-shrink: 0;
}

.intro-footer__social {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
  padding: 0;
}

.intro-footer__social li {
  list-style: none;
  width: auto !important;
  margin: 0 !important;
}

.intro-footer__social a {
  width: 42px !important;
  height: 42px !important;
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 11px !important;
  background: rgba(0, 0, 0, 0.22) !important;
  background-image: none !important;
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff !important;
  font-size: 15px !important;
  transition: all 0.3s var(--intro-ease);
}

.intro-footer__social a:hover {
  background: rgba(0, 0, 0, 0.35) !important;
  border-color: rgba(255, 255, 255, 0.28);
  transform: translateY(-3px);
  color: #fff !important;
}

.intro-footer__bar,
footer.intro-footer .under_footer,
.intro-footer .intro-footer__bar {
  position: relative;
  z-index: 1;
  margin-top: 0 !important;
  padding: 18px 0 !important;
  background: rgba(0, 0, 0, 0.28) !important;
  background-image: none !important;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.65) !important;
  text-align: inherit;
}

.intro-footer__bar a {
  color: #fff !important;
  font-weight: 700;
}

.intro-footer__bar a:hover {
  color: rgba(255, 255, 255, 0.82) !important;
}

/* Legacy class hooks */
.intro-footer .Tfooter {
  color: #fff !important;
  font-weight: 800;
}

.intro-footer .link-footer li {
  margin-bottom: 12px;
}

/* ==================== LOADER ==================== */
.loader {
  background: linear-gradient(135deg, #f7f8fa, #eceef2) !important;
}

.loader img {
  animation: introPulse 1.2s ease-in-out infinite;
}

/* ==================== REVEAL ANIMATIONS ==================== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--intro-ease), transform 0.8s var(--intro-ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }

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

@keyframes introHeroImage {
  from { opacity: 0; transform: translateY(-46%) scale(0.92) rotate(-8deg); }
  to { opacity: 1; transform: translateY(-50%) rotate(-8deg); }
}

@keyframes introFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(18px); }
}

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

/* ==================== RESPONSIVE ==================== */
@media (max-width: 991.98px) {
  :root { --intro-header-h: 78px; }

  .intro-header .nav_bar {
    background: linear-gradient(180deg, #ffffff 0%, #f5f6f8 100%) !important;
    box-shadow: -12px 0 40px rgba(15, 23, 42, 0.12);
    padding-top: 90px !important;
  }

  .intro-header .nav_bar a {
    display: block;
    border-radius: 12px;
    margin-bottom: 6px;
  }

  .intro-hero .info_owl {
    min-height: 560px;
    padding-bottom: 80px;
  }

  .intro-hero .img_owl_index {
    width: 280px;
    height: 280px;
    inset-inline-end: 50%;
    transform: translate(50%, -50%) rotate(-8deg);
    top: auto;
    bottom: 24px;
    opacity: 0.35;
  }

  .intro-hero .ads_wol {
    max-width: 100%;
    text-align: center;
  }

  .intro-hero .hero-actions {
    justify-content: center;
  }

  .intro-steps::before {
    display: none;
  }

  .intro-about .img_info_JM {
    margin-top: 36px;
    min-height: 320px;
  }
}

@media (max-width: 767.98px) {
  .intro-section {
    padding-top: 64px !important;
    padding-bottom: 64px !important;
  }

  .intro-contact .form-content {
    padding: 28px 20px;
  }
}

/* LTR tweaks */
html[lang="en"] .intro-hero .img_owl_index {
  transform: translateY(-50%) rotate(8deg);
}

html[lang="en"] .intro-hero .img_owl_index img {
  transform: rotate(-8deg) scale(1.08);
}

html[lang="en"] .intro-contact .btn-main:hover i {
  transform: translateX(4px);
}

/* ==================== LEGACY OVERRIDES (no purple) ==================== */
.intro-page .form-control:focus,
.intro-contact .form-control:focus {
  border-color: var(--main) !important;
  box-shadow: 0 0 0 4px color-mix(in srgb, var(--main) 14%, transparent) !important;
}

.intro-page .btn-main {
  background-image: var(--main2) !important;
  background-color: var(--main) !important;
}

.intro-page .nav-link.active {
  background-image: var(--main2) !important;
  background-color: transparent !important;
}

.intro-faq .accordion .card:first-child {
  margin-top: 0 !important;
}

.intro-faq .accordion .card-header button {
  position: relative;
  z-index: 0;
}

/* Footer — force dark brand gradient, block legacy style.css */
body footer.intro-footer,
html body footer.intro-footer {
  background-color: var(--main) !important;
  background-image: linear-gradient(180deg, var(--main) 0%, var(--hover) 100%) !important;
}

footer.intro-footer .container,
footer.intro-footer .row,
footer.intro-footer [class*="col-"],
footer.intro-footer .intro-footer__main,
footer.intro-footer .intro-footer__bar {
  background: transparent !important;
  background-image: none !important;
}

footer.intro-footer .intro-footer__bar,
footer.intro-footer .under_footer {
  background: rgba(0, 0, 0, 0.28) !important;
  background-image: none !important;
}

footer.intro-footer .social-m li a,
footer.intro-footer .intro-footer__social a {
  background: rgba(0, 0, 0, 0.22) !important;
  background-image: none !important;
  color: #fff !important;
}
