/* ========== global.css ========== */
@import url('https://fonts.googleapis.com/css2?family=Almarai:wght@300;400;700;800&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Archivo+Black&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

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

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  
}

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

a {
  text-decoration: none;
  color: inherit;
}

button,
input,
textarea {
  font: inherit;
  color: inherit;
}

ul, ol {
  list-style: none;
}

:root {
  /* Colors */
  --primary-color: #b5de4c;
  --primary-dark: #161616;
  --dark-bg: #191919;
  --card-bg: #272727;
  --text-dark: #0a0a0a;
  --text-white: #ffffff;
  --text-muted: #717182;
  --required: #d4183d;
  --white: #ffffff;
  --black: #0a0a0a;

  /* Typography — English: Archivo Black (titles), Montserrat (body) */
  --font-heading: "Archivo Black", sans-serif;
  --font-body: "Montserrat", sans-serif;
  --font-system: "Montserrat", sans-serif;
  --font-archivo-black: "Archivo Black", sans-serif;

  /* Spacing */
  --container-max: 1274px;
  --section-padding-y: 80px;
  --gap-sm: 10px;
  --gap-md: 14px;
  --gap-lg: 21px;

  /* Border radius */
  --radius-sm: 6.75px;
  --radius-md: 10px;
  --radius-lg: 20px;
  --radius-xl: 30px;

  /* Breakpoints (for reference in media queries) */
  --bp-mobile: 576px;
  --bp-tablet: 768px;
  --bp-laptop: 992px;
  --bp-desktop: 1200px;
  --bp-wide: 1440px;
}

/* Arabic: Almarai only (headings + body) */
html[dir="rtl"] {
  --font-heading: "Almarai", sans-serif;
  --font-body: "Almarai", sans-serif;
  --font-system: "Almarai", sans-serif;
}

/* ---------- Container ---------- */
.container-custom {
  max-width: var(--container-max);
  margin-left: auto;
  margin-right: auto;
  padding-left: 16px;
  padding-right: 16px;
}

.container-wide {
  max-width: 1540px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 24px;
  padding-right: 24px;
}

/* ---------- Typography ---------- */
html {
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.5;
  color: var(--text-dark);
  overflow: hidden;
}

html[dir="rtl"] body {
  font-family: var(--font-body);
}

h1, h2, h3, h4, h5, h6,
.h1, .h2, .h3, .h4, .h5, .h6 {
  font-family: var(--font-heading);
  font-weight: 400;
  line-height: normal;
}

/* Section titles — Archivo Black (EN) / Almarai (AR) */
.section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 0;
}

/* Large heading — Archivo Black (EN) / Almarai (AR) */
.heading-lg {
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  text-transform: uppercase;
}

@media (min-width: 992px) {
  .heading-lg {
    font-size: 40px;
  }
}

/* Body text */
.text-body {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.4;
}

.text-body-lg {
  font-family: var(--font-body);
  font-size: 25px;
  line-height: 1.4;
}

/* Label / small */
.text-label {
  font-family: var(--font-heading);
  font-size: 12.25px;
  font-weight: 500;
  letter-spacing: -0.018em;
}

/* ---------- RTL/LTR ---------- */
[dir="rtl"] {
  text-align: right;
  font-family: var(--font-body);
}

[dir="rtl"] .container-custom,
[dir="rtl"] .container-wide {
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Reusable utilities ---------- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--gap-sm);
  background: var(--primary-color);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 23px 10px 10px;
  border: none;
  border-radius: var(--radius-xl);
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-primary:hover {
  opacity: 0.9;
  color: var(--primary-dark);
}

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

.input-custom {
  width: 100%;
  background: var(--card-bg);
  border: 1px solid transparent;
  border-radius: var(--radius-sm);
  padding: 3.5px 10.5px;
  font-family: var(--font-body);
  font-size: 12.25px;
  color: var(--text-white);
  letter-spacing: -0.018em;
}

.input-custom::placeholder {
  color: var(--text-muted);
}

.input-custom:focus {
  outline: none;
  border-color: var(--primary-color);
}

textarea.input-custom {
  min-height: 120px;
  padding: 7px 10.5px;
  resize: vertical;
}


/* ========== style.css ========== */
html[dir='rtl'] .header .nav-links a,
html[dir='rtl'] .header .nav-cta,
html[dir='rtl'] .nav-sidebar-links a,
html[dir='rtl'] .nav-sidebar .nav-sidebar-cta,
html[dir='rtl'] .nav-lang,
html[dir='rtl'] .nav-sidebar-lang {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw, 20px);
}

html[dir='rtl'] .nav-links {
  gap: 16px;
}

.content-align {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 96px;
  padding-right: 96px;
}

/* ---------- Header / Nav ---------- */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding-top: 24px;
  padding-bottom: 16px;
  background: transparent;
  transition: all 0.3s !important;
}

.header.scrolled {
  background: rgba(22, 22, 22, 0.95);
}

/* Contact page: header dark from start (no hero) */
body.contact-page .header {
  background: #161616;
}


/* Contact page: push content below fixed navbar */
body.contact-page .contact-section {
  padding-top: 220px;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 60px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 1002;
  position: fixed;
  top: 28px;
  right: 24px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-white);
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.active span:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

.nav-logo {
  width: 128px;
  height: 90px;
  object-fit: contain;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-links a {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw , 16px);
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 10px;
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  padding: 10px 23px 10px 10px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
}

.nav-cta img {
  width: 25px;
  height: 25px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: clamp(16px, 2vw, 28px);
  flex-shrink: 0;
}


.nav-lang {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: var(--text-white);
  text-decoration: none;
  font-family: var(--font-body) !important;
  font-size: 13px !important;
  font-weight: 400;
  line-height: 1.2;
  padding: 4px 2px;
  transition: opacity 0.2s ease;
}

.nav-lang:hover {
  opacity: 0.9;
  color: var(--text-white);
}

.nav-lang-icon {
  display: flex;
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}

.nav-lang-icon svg {
  width: 100%;
  height: 100%;
  display: block;
}


.nav-sidebar-lang .nav-lang-icon {
  width: 19px;
  height: 19px;
  flex-shrink: 0;
}


/* ---------- Mobile Sidebar ---------- */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.3s ease;
}
.nav-overlay.active {
  opacity: 1;
  pointer-events: auto;
}

.nav-sidebar {
  display: none;
  position: fixed;
  top: 0;
  right: 0;
  width: 280px;
  max-width: 95vw;
  height: 100vh;
  background: var(--primary-dark);
  z-index: 1002;
  padding: 100px 24px 24px;
  transform: translateX(100%);
  pointer-events: none;
  transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: -8px 0 32px rgba(0, 0, 0, 0.4);
}
.nav-sidebar.active {
  transform: translateX(0);
  pointer-events: auto;
}

.nav-sidebar-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.nav-sidebar-links a {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 400;
  text-transform: uppercase;
  color: var(--text-white);
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  transition: color 0.2s;
}

.nav-sidebar-links a.nav-sidebar-lang {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-transform: none;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 400;
  color: var(--text-white);
  text-decoration: none;
  padding: 0 0 16px;
  margin-bottom: 8px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}
.nav-sidebar-links a:hover {
  color: var(--primary-color);
}
.nav-sidebar-cta {
  margin-top: 24px;
  padding: 14px 20px !important;
  background: var(--primary-color) !important;
  color: var(--primary-dark) !important;
  border-radius: var(--radius-xl);
  border: none !important;
  text-align: center;
}

/* ---------- Hero Section ---------- */
.hero-section {
  position: relative;
  min-height: 820px;
  display: flex;
  align-items: flex-end;
  padding: 0 0 100px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 4vw + 1rem, 60px);
  font-weight: 400;
  line-height: 1.1;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 24px;
  letter-spacing: 0;
}

html[dir='rtl'] .hero-title {
  font-family: var(--font-heading);
  font-size: clamp(24px, 6vw + 1rem, 70px);
}

.hero-title .highlight {
  color: var(--primary-color);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--white);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.5vw + 0.5rem, 18px);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px;
  border-radius: var(--radius-xl);
  border: none;
  cursor: pointer;
}

.hero-cta img {
  width: 25px;
  height: 25px;
}

/* ---------- About Us Section ---------- */
.about-section {
  background: var(--white);
  padding: 115px 16px 115px;
}

.about-header {
  text-align: center;
  margin-bottom: 40px;
}

.about-section-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 67px;
}

.about-section-badge .icon-wrap {
  width: 55px;
  height: 55px;
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.about-section-badge .icon-wrap img {
  width: 30px;
  height: 30px;
}

.about-section-badge .badge-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.75vw + 0.5rem, 28px);
  font-weight: 600;
  color: var(--primary-dark);
}

.about-heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw + 1rem, 30px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  max-width: 1012px;
  margin: 0 auto 45px;
  line-height: 1.2;
}

.about-desc {
  font-family: var(--font-body);
  font-size: clamp(16px, 1.5vw + 0.75rem, 25px);
  line-height: 1.4;
  color: var(--text-dark);
  max-width: 1041px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-stats {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-around;
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto 72px;
  text-align: center;
}

.about-stat-number {
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw + 1.5rem, 60px);
  font-weight: 500;
  color: var(--black);
  line-height: 1;
  margin-bottom: 8px;
}

.about-stat-label {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.5vw + 0.5rem, 25px);
  color: var(--text-dark);
  max-width: 160px;
  text-align: center;
  margin: 0 auto;
}

.about-learn-more {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.25vw + 0.5rem, 20px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  text-decoration: underline;
}

.about-learn-more img {
  width: 22px;
  height: 17px;
}

/* ---------- Advantages Section ---------- */
.advantages-section {
  background: var(--dark-bg);
  padding: 98px 92px 180px;
}

.advantages-header {
  margin-bottom: 48px;
}

.advantages-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
}

.advantages-badge .icon-wrap {
  width: 55px;
  height: 55px;
  background: var(--primary-color);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.advantages-badge .icon-wrap img {
  width: 30px;
  height: 30px;
}

.advantages-badge .badge-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.75vw + 0.5rem, 28px);
  font-weight: 600;
  color: var(--primary-color);
}

.advantages-heading {
  font-family: var(--font-heading);
  font-size: clamp(24px, 3vw + 1rem, 40px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  max-width: 660px;
  margin-bottom: 68px;
}

.advantages-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1122px;
}

.advantage-card {
  background: var(--card-bg);
  border-radius: var(--radius-md);
  padding: 35px 34px;
  min-height: 245px;
}

.advantage-card .card-icon {
  width: 34px;
  height: 34px;
  margin-bottom: 31px;
}

.advantage-card .card-title {
  font-family: var(--font-heading);
  font-size: clamp(15px, 1.25vw + 0.5rem, 18px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-white);
  margin-bottom: 16px;
}

.advantage-card .card-desc {
  font-family: var(--font-body);
  font-size: 15px;
  line-height: 1.5;
  color: var(--text-white);
  text-align: justify;
}

/* ---------- Services Section ---------- */
.services-section {
  background: var(--white);
  padding: 136px 16px 106px;
}

.services-header {
  text-align: center;
  margin-bottom: 82px;
}

.services-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 60px;
}

.services-badge .icon-wrap {
  width: 55px;
  height: 55px;
  background: var(--primary-dark);
  border-radius: var(--radius-xl);
  display: flex;
  align-items: center;
  justify-content: center;
}

.services-badge .icon-wrap img {
  width: 30px;
  height: 30px;
}

.services-badge .badge-text {
  font-family: var(--font-heading);
  font-size: clamp(20px, 1.75vw + 0.5rem, 28px);
  font-weight: 600;
  color: var(--text-dark);
}

.services-heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 2.5vw + 1rem, 30px);
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-dark);
  max-width: 1062px;
  margin: 0 auto;
  line-height: 1.2;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  max-width: 1274px;
  margin: 0 auto;
}

.service-card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  height: 404px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.service-card img.service-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card-caption {
  position: absolute;
  bottom: 23px;
  left: 23px;
  right: 24px;
  height: 45px;
  background: var(--primary-color);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 10px 10px 10px;
}

.service-card-caption span {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  color: var(--text-dark);
}

.service-card-caption img {
  width: 25px;
  height: 25px;
}

.contact-section {
  background: #161616;
  padding: 119px 96px 160px;
}

.contact-section-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 415px 1fr;
  gap: 108px;
  align-items: start;
}

.contact-image-wrap {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  width: 415px;
  height: 495px;
}

.contact-image-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.contact-section-title {
  font-family: var(--font-heading);
  font-size: 28px;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 24px;
  text-transform: uppercase;
  text-align: center;
}

.contact-form-card {
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12.75px;
  padding: 24px 21px;
  background: transparent;
}

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 21px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 12.25px;
  font-weight: 500;
  color: #ffffff;
  letter-spacing: -0.018em;
  line-height: 12.25px;
}

.form-group label .required {
  color: #d4183d;
}

.contact-form .input-custom {
  background: #272727;
  border: 1px solid transparent;
  border-radius: 6.75px;
  padding: 3.5px 10.5px;
  height: 31.5px;
  font-family: var(--font-body);
  font-size: 12.25px;
  color: #ffffff;
  letter-spacing: -0.018em;
}

.contact-form .input-custom::placeholder {
  color: #717182;
}

.contact-form .input-textarea {
  height: 120px;
  min-height: 120px;
  padding: 7px 10.5px;
  resize: none;
}

.contact-form .btn-submit {
  width: 148px;
  height: 45px;
  background: #b5de4c;
  color: #0a0a0a;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: 20px;
  cursor: pointer;
  padding: 0 28px;
  place-self: center;
}

.contact-form .form-disclaimer {
  font-family: var(--font-system);
  font-size: 12.25px;
  color: #717182;
  text-align: center;
  line-height: 17.5px;
  margin: 0;
}

.footer {
  background: #161616;
  padding: 0px 96px 40px;
}

.footer-inner {
  max-width: 1284px;
  margin: 0 auto;
  padding-top: 89px;
  border-top: 1px solid #B5DE4C;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  gap: 32px;
  margin-bottom: 48px;
}

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 500;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 26.4px;
}

.footer-col ul {
  margin: 0;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 10px;
}

.footer-col ul a {
  font-family: var(--font-body);
  font-size: 14px;
  color: #ffffff;
  opacity: 0.75;
  line-height: 20px;
}

.footer-col a:hover {
  opacity: 1;
}

.footer-contact .footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 20px;
  font-family: var(--font-body);
  font-size: 14px;
  color: #ffffff;
  opacity: 0.75;
  line-height: 20px;
}

.footer-contact .footer-contact-item span:last-child {
  flex: 1;
}

.footer-contact .footer-contact-link {
  text-decoration: underline;
}

.footer-contact .footer-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
}

.footer-contact .footer-icon img {
  width: 100%;
  height: 100%;
}

/* Subpages (about, services) - content below fixed header */
.page-main {
  padding-top: 110px;
  min-height: 50vh;
}

.footer-mid {
  text-align: center;
  margin-bottom: 32px;
}

.footer-logo {
  width: 128px;
  height: 90px;
  margin: 0 auto 28px;
  object-fit: contain;
}

.footer-powered {
  font-family: var(--font-heading);
  font-size: 16px;
  color: #ffffff;
  text-decoration: underline;
  margin-bottom: 36px;
  line-height: 26px;
  display: inline-block;
}

.footer-partners {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.footer-partners img {
  height: 57px;
  width: auto;
  object-fit: contain;
}

.footer-partners img[width="254"] {
  width: 254px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-copyright {
  font-family: var(--font-system);
  font-size: 16px;
  color: #ffffff;
  line-height: 26px;
  margin: 0;
  margin-bottom: 19px;
}

.footer-social {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-social a {
  display: block;
  width: 16px;
  height: 17px;
}

.footer-social img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}


/* ========== design-system.css ========== */


/* ---------- Extended Variables ---------- */
:root {
  --ds-dark: #191919;
  --ds-dark-alt: #161616;
  --ds-primary: #b5de4c;
  --ds-accent-yellow: #d6fb03;
  --ds-gray: #555555;
  --ds-card-bg: #272727;

  /* Typography scale */
  --ds-hero-title: clamp(28px, 4vw, 45px);
  --ds-hero-line: clamp(48px, 6vw, 80px);
  --ds-section-title: clamp(32px, 3.5vw, 48px);
  --ds-section-line: 52.8px;
  --ds-card-title: clamp(18px, 2vw, 22px);
  --ds-body: 16px;
  --ds-body-line: 27.2px;
  --ds-body-lg: 20px;
  --ds-body-lg-line: 30px;
  --ds-feature-title: clamp(22px, 2.5vw, 30px);
  --ds-nav: 16px;

  /* Spacing */
  --ds-section-pad: clamp(48px, 6vw, 96px);
  --ds-content-pad-x: clamp(24px, 5vw, 99px);
  --ds-gap-sm: 4px;
  --ds-gap-md: 20px;
  --ds-gap-lg: 90px;
  --ds-card-pad: 30px;
  --ds-block-pad: 25px;

  /* Sizing */
  --ds-hero-min-h: 600px;
  --ds-btn-h: 52px;
  --ds-btn-radius: 30px;
  --ds-card-radius: 10px;
}

/* ---------- Reusable Components ---------- */

/* Section badge (icon + label) */
.ds-section-badge {
  display: flex;
  align-items: center;
  gap: var(--ds-gap-sm);
}

.ds-section-badge .ds-badge-icon {
  width: 26px;
  height: 26px;
  background: var(--ds-dark);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.ds-section-badge .ds-badge-label {
  font-family: var(--font-heading);
  font-size: var(--ds-nav);
  font-weight: 600;
  color: var(--ds-dark);
  text-transform: uppercase;
}

/* Primary CTA (green) */
.ds-btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--ds-btn-h);
  padding: 10px 10px 7px;
  background: var(--ds-primary);
  color: var(--ds-dark-alt);
  font-family: var(--font-heading);
  font-size: var(--ds-nav);
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ds-btn-radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ds-btn-primary:hover {
  opacity: 0.9;
  transform: translateY(-1px);
}

/* Secondary CTA (dark) */
.ds-btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: var(--ds-btn-h);
  padding: 10px;
  background: var(--ds-dark);
  color: var(--text-white);
  font-family: var(--font-heading);
  font-size: var(--ds-nav);
  font-weight: 600;
  text-transform: uppercase;
  border: none;
  border-radius: var(--ds-btn-radius);
  cursor: pointer;
  text-decoration: none;
  transition: all 0.3s ease;
}

.ds-btn-secondary:hover {
  background: var(--ds-dark-alt);
  transform: translateY(-1px);
}

/* Hero title */
.ds-hero-title {
  font-family: var(--font-heading);
  font-size: var(--ds-hero-title);
  font-weight: 600;
  line-height: var(--ds-hero-line);
  color: var(--text-white);
  text-transform: uppercase;
}

/* Section title */
.ds-section-title {
  font-family: var(--font-heading);
  font-size: var(--ds-section-title);
  font-weight: 600;
  line-height: var(--ds-section-line);
  color: var(--ds-dark);
  text-transform: uppercase;
}

/* Body text */
.ds-body-text {
  font-family: var(--font-body);
  font-size: var(--ds-body);
  line-height: var(--ds-body-line);
  color: inherit;
}

.ds-body-text-lg {
  font-family: var(--font-body);
  font-size: var(--ds-body-lg);
  line-height: var(--ds-body-lg-line);
}

/* Info card (dark or white) */
.ds-info-card {
  padding: 20px;
  border-radius: var(--ds-card-radius);
  max-width: 260px;
}

.ds-info-card-dark {
  background: var(--ds-dark);
}

.ds-info-card-white {
  background: var(--text-white);
}

.ds-info-card .ds-card-number {
  font-family: var(--font-heading);
  font-size: var(--ds-card-title);
  font-weight: 600;
  text-transform: uppercase;
}

.ds-info-card-dark .ds-card-number { color: var(--ds-accent-yellow); }
.ds-info-card-white .ds-card-number { color: var(--ds-dark); }

.ds-info-card .ds-card-label {
  font-family: var(--font-body);
  font-size: var(--ds-body);
  line-height: var(--ds-body-line);
}

.ds-info-card-dark .ds-card-label { color: rgba(255,255,255,0.75); }
.ds-info-card-white .ds-card-label { color: var(--ds-dark); }

/* Solution / content card (white) */
.ds-content-card {
  background: var(--text-white);
  padding: var(--ds-card-pad);
  border-radius: var(--ds-card-radius);
  gap: var(--ds-gap-lg);
}

/* Feature card (green) */
.ds-feature-card {
  background: var(--ds-primary);
  padding: var(--ds-card-pad);
  border-radius: var(--ds-card-radius);
  min-height: 193px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.ds-feature-card .ds-feature-title {
  font-family: var(--font-heading);
  font-size: var(--ds-feature-title);
  font-weight: 400;
  color: var(--ds-dark);
  line-height: 1.15;
}


/* ========== services-page.css ========== */


.services-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.services-hero {
  position: relative;
  height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.services-hero-bg {
  position: absolute;
  inset: 0;
}

.services-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.services-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.services-hero-title {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

/* ---------- Cards section ---------- */
.services-cards-section {
  background: #ffffff;
  padding: 72px 71px 80px;
}

.services-cards-container {
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 0;
  padding-right: 0;
}

.services-cards-grid {
  margin-left: -10px;
  margin-right: -10px;
}

.services-cards-grid .col-lg-6 {
  padding-left: 10px;
  padding-right: 10px;
}

/* ---------- Card ---------- */
.services-card {
  display: block;
  background: #272727;
  border-radius: 10px;
  padding: 20px 20px 20px 24px;
  height: 100%;
  min-height: 443px;
  transition: all 0.3s ease;
  text-decoration: none;
  color: inherit;
}

.services-card-content {
  display: flex;
  flex-direction: column;
  gap: 20px;
  height: 100%;
}

.services-card-header {
  display: flex;
  flex-direction: column;
  gap: 23px;
}

.services-card-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}

.services-card-icon img {
  width: 48px;
  height: 48px;
  object-fit: contain;
}

.services-card#mid .services-card-icon img {
  width: 34px;
  height: 34px;
}

.services-card#home .services-card-icon img {
  width: 33px;
  height: 48px;
}

.services-card-text {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.services-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1.3;
  margin: 0;
  letter-spacing: 0;
}

.services-card-desc {
  font-family: var(--font-body);
  font-size: 16px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  line-height: 1.7;
  margin: 0;
}

.services-card-image {
  width: 100%;
  height: 192px;
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  margin-top: auto;
}

.services-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- CTA button ---------- */
.services-cta-wrap {
  text-align: center;
  padding: 0 0 84px;
  margin-top: 66px;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #b5de4c;
  color: #191919;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  padding: 17px 36px 18px;
  border-radius: 100px;
  transition: all 0.3s ease;
  text-decoration: none;
}

.services-cta-btn:hover {
  background: #c5e85c;
  color: #191919;
}

/* ---------- Nav active state ---------- */
.nav-link-active {
  color: var(--primary-color) !important;
}

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] .services-card {
  padding: 20px 24px 20px 20px;
}

[dir="rtl"] .services-card-header {
  align-items: flex-end;
}

[dir="rtl"] .services-card-text {
  text-align: right;
}

[dir="rtl"] .services-card-icon {
  align-self: flex-start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .services-cards-section {
    padding: 56px 48px 64px;
  }
}

@media (max-width: 991px) {
  .services-hero {
    height: 500px;
  }

  .services-hero-title {
    padding-bottom: 60px;
    font-size: clamp(36px, 8vw, 56px);
  }

  .services-cards-section {
    padding: 48px 24px 56px;
  }

  .services-card {
    min-height: auto;
  }
}

@media (max-width: 767px) {
  .services-cards-section {
    padding: 40px 16px 48px;
  }

  .services-card-title {
    font-size: 18px;
  }

  .services-card-desc {
    font-size: 15px;
  }

  .services-card-image {
    height: 160px;
  }

  .services-cta-wrap {
    padding-bottom: 56px;
  }

  .services-cta-btn {
    padding: 14px 28px 15px;
    font-size: 13px;
  }
}


/* ========== about-page.css ========== */


.about-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.about-hero {
  position: relative;
  min-height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;

  @media (max-width: 768px) {
    min-height: 400px;
  }
}

.about-hero-bg {
  position: absolute;
  inset: 0;
}

.about-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.about-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.about-hero-title {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
}

/* ---------- Legacy & Commitment ---------- */
.about-legacy {
  background: rgba(241, 241, 241, 0.75);
  padding: clamp(48px, 6.7vw, 97px) clamp(24px, 5vw, 121px) clamp(56px, 7.9vw, 114px);
}

.about-legacy-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr minmax(280px, 567px);
  gap: clamp(24px, 3.5vw, 50px);
  align-items: start;
}

.about-legacy-content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1.35vw, 19px);
}

.about-legacy-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-legacy-icon {
  width: 26px;
  height: 26px;
  background: var(--dark-bg);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-legacy-icon img {
  width: 12px;
  height: 16px;
  object-fit: contain;
}

.about-legacy-badge span {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
}

.about-legacy-heading {
  font-family: var(--font-heading);
  font-size: clamp(18px, 1.74vw, 25px);
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
  line-height: 1.48;
  margin: 0;
  margin-bottom: 16px;
}

.about-legacy-sub {
  font-family: var(--font-heading);
  font-size: clamp(13px, 1.04vw, 15px);
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
  line-height: 1.5;
  margin: 0;
}

.about-legacy-head-pane {
  display: none;
}

.about-legacy-head-pane.active {
  display: block;
}

.about-legacy-tabs {
  position: relative;
  display: flex;
  gap: 40px;
  margin-top: clamp(4px, 0.5vw, 8px);
}

.about-tab {
  background: none;
  border: none;
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  color: #555;
  text-transform: uppercase;
  cursor: pointer;
  padding: 0;
}

.about-tab.active {
  color: var(--dark-bg);
}

/* direction: ltr isolates layout so the indicator’s translateX matches physical
   coordinates from getBoundingClientRect (RTL pages inherit dir=rtl and would
   otherwise place the block from the right, breaking the underline). */
.about-tab-line {
  position: absolute;
  bottom: -10px;
  left: 0;
  right: 0;
  height: 1px;
  background: rgba(25, 25, 25, 0.16);
  direction: ltr;
  unicode-bidi: isolate;
}

.about-tab-indicator {
  display: block;
  width: 88px; /* overridden by JS to match active tab width (LTR + RTL) */
  height: 2px;
  background: var(--dark-bg);
  transition: transform 0.3s ease, width 0.3s ease;
  transform-origin: left center;
}

.about-legacy-text {
  margin-top: clamp(8px, 1vw, 12px);
}

.about-tab-pane {
  display: none;
}

.about-tab-pane.active {
  display: block;
}

.about-legacy-text p,
.about-tab-pane p {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.39vw, 20px);
  color: #555;
  line-height: 1.45;
  text-align: justify;
  margin: 0;
}

.about-tab-pane p + p {
  margin-top: clamp(10px, 1vw, 14px);
}

.about-legacy-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--primary-color);
  color: var(--primary-dark);
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  text-transform: uppercase;
  padding: 10px 23px 10px 10px;
  border-radius: 30px;
  margin-top: clamp(16px, 2vw, 24px);
  width: fit-content;
}

.about-legacy-cta img {
  width: 25px;
  height: 25px;
}

/* About page – Arabic (RTL): Almarai, tab indicator, mixed EN/AR */
html[dir="rtl"] .about-hero-title {
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
}

html[dir="rtl"] .about-legacy-badge span,
html[dir="rtl"] .about-legacy-heading,
html[dir="rtl"] .about-legacy-sub,
html[dir="rtl"] .about-legacy-tabs .about-tab {
  font-family: var(--font-heading);
  text-transform: none;
  letter-spacing: 0;
}

html[dir="rtl"] .about-legacy-heading,
html[dir="rtl"] .about-legacy-sub {
  text-align: right;
}

html[dir="rtl"] .about-legacy-cta {
  font-family: var(--font-heading);
  text-transform: none;
}

html[dir="rtl"] .about-legacy-cta img {
  transform: scaleX(-1);
}

html[dir="rtl"] .about-tab-pane p,
html[dir="rtl"] .about-legacy-text p {
  font-family: var(--font-body);
  text-align: right;
}

html[dir="rtl"] .about-distinction-badge span,
html[dir="rtl"] .about-distinction-heading {
  font-family: var(--font-heading);
  text-transform: none;
}

html[dir="rtl"] .about-distinction-text {
  font-family: var(--font-body);
  text-align: right;
}

html[dir="rtl"] .about-scc-heading {
  font-family: var(--font-heading);
  text-align: right;
}

html[dir="rtl"] .about-scc-label {
  font-family: var(--font-body);
}

.about-brand-en {
  unicode-bidi: embed;
}

.about-legacy-image {
  position: relative;
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 567 / 687;
  max-height: 687px;
}

.about-legacy-image .about-legacy-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 0.35s ease, transform 0.5s ease;
  pointer-events: none;
}

.about-legacy-image .about-legacy-img.active {
  opacity: 1;
  pointer-events: auto;
}

/* ---------- Distinction ---------- */
.about-distinction {
  background: var(--dark-bg);
  padding: 93px clamp(24px, 3.5vw, 116px) 90px;
}

.about-distinction-inner {
  max-width: 1440px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(280px, 705px) 1fr;
  gap: clamp(24px, 3.5vw, 84px);
  align-items: center;
}

.about-distinction-image {
  border-radius: var(--radius-md);
  overflow: hidden;
  aspect-ratio: 705 / 470;
}

.about-distinction-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-distinction-content {
  display: flex;
  flex-direction: column;
  gap: clamp(12px, 1vw, 14px);
}

.about-distinction-badge {
  display: flex;
  align-items: center;
  gap: 4px;
}

.about-distinction-icon {
  width: 26px;
  height: 26px;
  background: var(--primary-color);
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-distinction-icon img {
  width: 12px;
  height: 16px;
  object-fit: contain;
}

.about-distinction-badge span {
  font-family: var(--font-heading);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
}

.about-distinction-heading {
  font-family: var(--font-heading);
  font-size: clamp(16px, 1.39vw, 20px);
  font-weight: 600;
  color: var(--text-white);
  text-transform: uppercase;
  line-height: 1.28;
  margin: 0;
}

.about-distinction-text {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.39vw, 20px);
  color: var(--text-white);
  line-height: 1.36;
  text-align: justify;
  margin: 0;
}

/* ---------- SCC at a Glance ---------- */
.about-scc {
  background: #f5f5f5;
  padding: clamp(48px, 6.9vw, 100px) clamp(24px, 2.4vw, 35px) clamp(80px, 10vw, 118px);
}

.about-scc-heading {
  font-family: var(--font-heading);
  font-size: clamp(22px, 2.08vw, 30px);
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
  margin: 0 0 clamp(32px, 4.5vw, 64px);
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding-left: clamp(24px, 3.3vw, 48px);
}

.about-scc-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: clamp(16px, 1.4vw, 20px);
  max-width: 1370px;
  margin: 0 auto;

  @media (max-width: 768px) {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }
}

.about-scc-card {
  width: 100%;
  max-width: min(253px, calc(100% - 32px));
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.about-scc-card-text {
  padding: clamp(20px, 2.08vw, 30px);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.about-scc-number {
  font-family: var(--font-heading);
  font-size: clamp(20px, 3.3vw, 48px);
  font-weight: 600;
  color: var(--dark-bg);
  text-transform: uppercase;
  line-height: 1.1;
}

.about-scc-number-sm {
  font-size: clamp(16px, 1.87vw, 27px);
}

.about-scc-label {
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  color: #555;
  line-height: 1.7;
}

.about-scc-card-img {
  aspect-ratio: 310 / 200;
  overflow: hidden;
}

.about-scc-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Responsive: Legacy & Distinction ---------- */
@media (max-width: 991px) {
  .about-legacy-inner,
  .about-distinction-inner {
    grid-template-columns: 1fr;
  }

  .about-legacy-image {
    max-height: none;
  }

  .about-legacy-image,
  .about-distinction-image {
    order: -1;
  }
}

@media (max-width: 575px) {
  .about-scc-card {
    max-width: 100%;
  }
}


/* ========== corporate-wellness.css ========== */


.corporate-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.corporate-hero {
  position: relative;
  height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.corporate-hero-bg {
  position: absolute;
  inset: 0;
}

.corporate-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.corporate-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 1;
}

.corporate-hero-title {
  position: relative;
  z-index: 2;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(48px, 6vw, 80px);
  font-weight: 600;
  line-height: 1;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

/* ---------- Content ---------- */
.corporate-content {
  background: #fff;
  padding: 72px 96px 100px;
  max-width: 1440px;
  margin: 0 auto;
}

.corporate-intro {
  text-align: center;
  margin-bottom: 0;
}

.corporate-intro h2 {
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.575;
  color: #000;
  text-transform: uppercase;
  margin: 0 auto 32px;
  max-width: 882px;
}

.corporate-intro-para {
  font-family: var(--font-body);
  font-size: 25px;
  line-height: 1.52;
  color: #555;
  max-width: 1114px;
  margin: 0 auto 40px;
  text-align: justify;
}

.corporate-cta-banner {
  display: inline-flex;
  align-items: center;
  gap: 19px;
  padding: 10px 10px 10px 35px;
  background: #b5de4c;
  color: #161616;
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
  margin: 0 auto 83px;
}

.corporate-cta-banner:hover {
  background: #c5e85c;
  color: #161616;
  transform: translateY(-2px);
}

/* Section title (above block) */
.corporate-section-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.31;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 42px;
}

.corporate-section-title .line2 {
  font-size: 40px;
  display: block;
}

/* ---------- Block with image ---------- */
.corporate-block-with-image {
  display: grid;
  grid-template-columns: 1fr 556px;
  grid-template-rows: auto 1fr;
  gap: 42px 32px;
  align-items: start;
  margin-bottom: 0;
}

.corporate-block-title {
  grid-column: 1 / -1;
  font-family: var(--font-heading);
  font-size: clamp(28px, 2.5vw + 1rem, 48px);
  font-weight: 600;
  line-height: 1.31;
  color: #000;
  text-transform: uppercase;
  text-align: center;
  margin: 0;
}

.corporate-block-title .line2 {
  display: block;
  font-size: clamp(20px, 1.5vw + 0.5rem, 40px);
  margin-top: 4px;
}

.corporate-block-text {
  grid-column: 1;
}

.corporate-block-text p {
  font-family: var(--font-body);
  font-size: 25px;
  line-height: 1.52;
  color: #555555;
  margin: 0 0 16px;
  text-align: justify;
}

.corporate-block-text p:last-child { margin-bottom: 0; }

.corporate-block-image {
  grid-column: 2;
  grid-row: 2;
  overflow: hidden;
  width: 556px;
  height: 456px;
  border-radius: 0 10px 10px 0;
}

.corporate-block-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ---------- Benefits ---------- */
.corporate-benefits {
  margin-top: 0;
  padding-top: 160px;
}

.corporate-benefits-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  margin-bottom: 26px;
}

.corporate-benefits-badge .badge-icon {
  width: 26px;
  height: 26px;
  background: #191919;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4px;
}

.corporate-benefits-label {
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 500;
  color: #191919;
  text-transform: uppercase;
}

.corporate-benefits-title {
  font-family: var(--font-archivo-black);
  font-size: 40px;
  font-weight: 600;
  line-height: 1.32;
  color: #191919;
  text-align: center;
  text-transform: uppercase;
  margin: 0 auto 54px;
  max-width: 672px;
}

.corporate-benefits-sub {
  font-family: var(--font-archivo-black);
  font-size: 22px;
  font-weight: 600;
  color: #191919;
  text-align: start;
  margin: 0 0 16px;
}

.corporate-benefits-intro {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  text-align: justify;
  max-width: 1200px;
  margin: 0 auto 40px;
}

/* ---------- Accordion (Faq cards) ---------- */
.corporate-accordion {
  max-width: 1157px;
  margin: 0 auto 64px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.corporate-accordion-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: box-shadow 0.25s ease;
}

.corporate-accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 12px 10px 10px;
  cursor: pointer;
  transition: background 0.3s ease;
}

.corporate-accordion-header:hover {
  background: rgba(241, 241, 241, 0.5);
}

.accordion-icon-wrap {
  width: 40px;
  height: 40px;
  background: rgba(241, 241, 241, 0.75);
  border-radius: 8px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.25s ease, transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.corporate-accordion-item.is-open .accordion-icon-wrap,
.corporate-accordion-item[open] .accordion-icon-wrap {
  background: rgba(220, 220, 220, 0.9);
}

.corporate-accordion-header:hover .accordion-icon-wrap {
  background: rgba(230, 230, 230, 0.9);
}

.accordion-icon {
  width: 16px;
  height: 2px;
  background: #191919;
  border-radius: 10px;
  position: relative;
}

.accordion-icon::after {
  content: '';
  position: absolute;
  left: 7px;
  top: -7px;
  width: 2px;
  height: 16px;
  background: #191919;
  border-radius: 10px;
}

.corporate-accordion-item.is-open .accordion-icon::after,
.corporate-accordion-item[open] .accordion-icon::after {
  display: none;
}

.accordion-icon.plus::after { display: block; }

.corporate-accordion-item.is-open .accordion-icon.plus::after,
.corporate-accordion-item[open] .accordion-icon.plus::after { display: none; }

.corporate-accordion-header h4 {
  font-family: var(--font-archivo-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: #191919;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}

.accordion-num { margin-right: 8px; }

.corporate-accordion-item summary::-webkit-details-marker { display: none; }

.corporate-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  border-top: 1px solid rgba(25, 25, 25, 0.16);
  transition: grid-template-rows 0.2s cubic-bezier(0.32, 0.72, 0, 1);
}

.corporate-accordion-item.is-open .corporate-accordion-body {
  grid-template-rows: 1fr;
}

.corporate-accordion-body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 10px 10px 10px 0;
}

.corporate-accordion-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: #555;
  margin: 0;
}

/* ---------- CTA buttons ---------- */
.corporate-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 25px;
}

.corporate-cta-back {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 36px 18px;
  background: #191919;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.corporate-cta-back:hover {
  background: #161616;
  color: #fff;
  transform: translateY(-2px);
}

.corporate-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 36px 18px;
  background: #b5de4c;
  color: #000;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.3s ease;
}

.corporate-cta-contact:hover {
  background: #c5e85c;
  color: #000;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .corporate-content { padding: 48px 48px 80px; }
  .corporate-block-with-image { grid-template-columns: 1fr !important; grid-template-rows: auto !important; }
  .corporate-block-text { grid-column: 1 !important; }
  .corporate-block-image { grid-column: 1 !important; grid-row: auto !important; width: 100% !important; max-width: 556px !important; height: 400px !important; border-radius: 10px !important; }
  .corporate-accordion-body-inner { padding-left: 70px; padding-right: 24px; }
}


@media (max-width: 767px) {
  .corporate-hero { height: 400px; }
  .corporate-hero-title { font-size: clamp(36px, 8vw, 64px); padding-bottom: 60px; }
  .corporate-content { padding: 40px 24px 64px; }
  .corporate-intro h2 { font-size: 28px; }
  .corporate-intro-para { font-size: 18px; }
  .corporate-block-text h3 { font-size: 28px; }
  .corporate-block-text p { font-size: 18px; }
  .corporate-block-image { height: 280px; }
  .corporate-benefits-title { font-size: 28px; }
  .corporate-benefits-sub { font-size: 18px; }
  .corporate-accordion-body-inner { padding: 0 24px 20px 70px; }
}

/* ---------- RTL (AR) ---------- */
[dir="rtl"] .corporate-block-with-image { direction: rtl; grid-template-columns: 556px 1fr; }
[dir="rtl"] .corporate-block-text { grid-column: 2; }
[dir="rtl"] .corporate-block-image { grid-column: 1; border-radius: 10px 0 0 10px; }
[dir="rtl"] .corporate-block-text { text-align: right; }
[dir="rtl"] .corporate-block-text p { text-align: right; }
[dir="rtl"] .corporate-accordion-body-inner { padding: 10px 0px 10px 10px; }
[dir="rtl"] .accordion-num { margin-right: 0; margin-left: 8px; }
[dir="rtl"] .corporate-benefits-intro { text-align: right; }
[dir="rtl"] .corporate-cta-banner { flex-direction: row-reverse; padding: 10px 35px 10px 10px; }
[dir="rtl"] .corporate-cta-banner img { transform: scaleX(-1); }


/* ========== home-gyms.css ========== */


.home-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.home-hero {
  position: relative;
  height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.home-hero-bg {
  position: absolute;
  inset: 0;
}

.home-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.home-hero-title {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

/* ---------- Content section ---------- */
.home-content {
  background: #ffffff;
  padding: 72px 100px 100px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.home-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  margin: 0 0 24px;
}

.home-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  max-width: 1123px;
  margin: 0 auto 48px;
  padding-top: 0;
}

.home-block {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.home-block-1,
.home-block-2 {
  margin-bottom: 69px;
}

.home-text {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.52;
  color: #555555;
  text-align: justify;
  margin: 0;
}

.home-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 22px);
}

/* ---------- Block with image: text left, image right (LTR) ---------- */
.home-block-with-image {
  display: grid;
  grid-template-columns: 1fr 675px;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 109px;
}

.home-text-wrap {
  min-width: 0;
  max-width: 521px;
}

.home-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 675px;
}

.home-content-image {
  width: 100%;
  height: auto;
  min-height: 342px;
  object-fit: cover;
  display: block;
}

.home-block-with-image .home-text {
  margin: 0;
}

/* ---------- CTAs ---------- */
.home-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.home-cta-back,
.home-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 36px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.home-cta-back {
  background: #191919;
  color: #ffffff;
}

.home-cta-contact {
  background: #b5de4c;
  color: #000000;
}

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] .home-content {
  padding-left: 100px;
  padding-right: 100px;
}

[dir="rtl"] .home-text {
  text-align: right;
}

[dir="rtl"] .home-block-with-image {
  grid-template-columns: 675px 1fr;
}

[dir="rtl"] .home-text-wrap {
  order: 2;
  justify-self: end;
}

[dir="rtl"] .home-image-wrap {
  order: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .home-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .home-block-with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .home-image-wrap {
    max-width: 100%;
  }

  .home-text-wrap {
    max-width: 100%;
  }

  [dir="rtl"] .home-block-with-image {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .home-image-wrap,
  [dir="rtl"] .home-text-wrap {
    order: unset;
    justify-self: unset;
  }
}

@media (max-width: 991px) {
  .home-hero {
    height: 480px;
  }

  .home-content {
    padding: 48px 24px 64px;
  }

  [dir="rtl"] .home-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .home-hero {
    height: 400px;
  }

  .home-hero-title {
    padding-bottom: 60px;
  }

  .home-content {
    padding: 32px 16px 48px;
  }

  .home-block,
  .home-block-1,
  .home-block-2 {
    margin-bottom: 32px;
  }

  .home-block-with-image {
    margin-bottom: 40px;
  }

  .home-cta-wrap {
    margin-top: 32px;
    gap: 16px;
  }

  .home-cta-back,
  .home-cta-contact {
    width: 100%;
    max-width: 280px;
  }

  [dir="rtl"] .home-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ========== home2.css ========== */



/* ---------- Hero ---------- */
.home2-hero {
  position: relative;
  min-height: 700px;
  display: flex;
  align-items: flex-end;
  justify-content: flex-start;
  padding: 120px 0 100px;
}

.home2-hero-bg {
  position: absolute;
  inset: 0;
}

.home2-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.home2-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.home2-hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

.home2-hero-title {
  font-family: var(--font-heading);
  font-size: clamp(22px, 3vw, 30px);
  font-weight: 600;
  line-height: 1.15;
  color: #fff;
  text-transform: uppercase;
  margin: 0 0 32px;
  max-width: 700px;
}

.home2-hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  height: 52px;
  padding: 10px 24px;
  background: #b5de4c;
  color: #161616;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: all 0.3s ease;
}

html[dir="rtl"] .home2-hero-cta {
  img{
    transform: scaleX(-1);
  }
}

.home2-hero-cta:hover {
  background: #c5e85c;
  color: #161616;
  transform: translateY(-2px);
}

/* ---------- Info section (white) ---------- */
.home2-info {
  background: #fff;
  padding: 80px 0 96px;
}

.home2-info-inner { 
  max-width: 1440px;
  padding-left: 96px;
  padding-right: 96px;
}

.home2-info-grid {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 60px;
  align-items: start;
}

.home2-info-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.home2-info-title {
  font-family: var(--font-heading);
  font-size: clamp(20px, 2vw, 28px);
  font-weight: 600;
  line-height: 1.25;
  color: #191919;
  text-transform: uppercase;
  margin: 0;
}

.home2-info-para {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.65;
  color: #555555;
  margin: 0;
  margin-bottom: 30px;
}

.home2-info-image-wrap {
  position: sticky;
  top: 100px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.12);
  transition: box-shadow 0.3s ease, transform 0.3s ease;
}

.home2-info-image-wrap:hover {
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.16);
  transform: translateY(-4px);
}

.home2-info-image {
  width: 100%;
  height: 100%;
  min-height: 560px;
  object-fit: cover;
  object-position: center;
}

/* ---------- Expertise (dark) ---------- */
.home2-expertise {
  background: #191919;
  padding: 80px 0 100px;
}

.home2-expertise-inner {
  max-width: 1440px;
  padding-left: 96px;
  padding-right: 96px;
  margin: 0 auto;
}

.home2-expertise-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 1.2;
  color: #fff;
  text-transform: uppercase;
  text-align: center;
  margin: 0 0 24px;
}

.home2-expertise-intro {
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.9);
  text-align: start;
  margin: 0 0 48px;
}

/* Accordion */
.home2-accordion {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 800px;
  margin: 220px auto;
}

.home2-accordion-item {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease;
}

.home2-accordion-item:hover {
  background: rgba(243, 243, 243, 0.9);
  border-color: rgba(255, 255, 255, 0.25);
}

.home2-accordion-item[open] {
  background: rgba(255, 255, 255, 0.95);
  border-color: rgba(181, 222, 76, 0.4);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.home2-accordion-header {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 18px 24px;
  cursor: pointer;
  list-style: none;
  transition: background 0.25s ease;
}

.home2-accordion-header::-webkit-details-marker {
  display: none;
}

.home2-accordion-header:hover {
  background: rgba(255, 255, 255, 0.03);
}

.home2-accordion-icon {
  width: 40px;
  height: 40px;
  min-width: 40px;
  background: #b5de4c;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  transition: background 0.3s ease, transform 0.3s ease;
}

.home2-accordion-icon::before,
.home2-accordion-icon::after {
  content: '';
  position: absolute;
  background: #161616;
  border-radius: 2px;
}

.home2-accordion-icon::before {
  width: 14px;
  height: 2px;
}

.home2-accordion-icon::after {
  width: 2px;
  height: 14px;
}

.home2-accordion-item[open] .home2-accordion-icon::after {
  display: none;
}

.home2-accordion-header:hover .home2-accordion-icon {
  background: #c5e85c;
  transform: scale(1.05);
}

.home2-accordion-label {
  font-family: var(--font-archivo-black);
  font-size: 16px;
  font-weight: 600;
  color: #191919;
  text-transform: uppercase;
}

.home2-accordion-body {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.25s cubic-bezier(0.32, 0.72, 0, 1);
}

.home2-accordion-item.is-open .home2-accordion-body {
  grid-template-rows: 1fr;
}

.home2-accordion-body-inner {
  overflow: hidden;
  min-height: 0;
  padding: 0 24px 20px 84px;
}

.home2-accordion-body p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: #555555;
  margin: 0;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .home2-hero { min-height: 600px; padding: 100px 0 80px; }
  .home2-hero-title { font-size: clamp(32px, 4.5vw, 48px); }
  .home2-info-grid { grid-template-columns: 1fr; gap: 48px; }
  .home2-info-image-wrap { position: static; max-width: 560px; margin: 0 auto; }
  .home2-info-image { min-height: 420px; }
  .home2-expertise-title { font-size: 40px; }
  .home2-expertise-intro { font-size: 17px; margin-bottom: 40px; }
}

@media (max-width: 767px) {
  .home2-hero { min-height: 500px; padding: 80px 0 60px; }
  .home2-hero-title { font-size: 28px; margin-bottom: 24px; }
  .home2-hero-cta { height: 48px; font-size: 14px; padding: 10px 20px; }
  .home2-info { padding: 48px 0 64px; }
  .home2-info-text { gap: 32px; }
  .home2-info-title { font-size: 24px; }
  .home2-info-para { font-size: 16px; }
  .home2-info-image { min-height: 320px; }
  .home2-expertise { padding: 48px 0 64px; }
  .home2-expertise-title { font-size: 28px; margin-bottom: 20px; }
  .home2-expertise-intro { font-size: 16px; margin-bottom: 32px; }
  .home2-accordion-header { padding: 14px 20px; gap: 16px; }
  .home2-accordion-icon { width: 36px; height: 36px; min-width: 36px; }
  .home2-accordion-body-inner { padding: 0 20px 16px 72px; }
}

/* ---------- RTL (AR) ---------- */
[dir="rtl"] .home2-hero-content { text-align: right; }
[dir="rtl"] .home2-info-grid { direction: rtl; }
[dir="rtl"] .home2-info-text { text-align: right; }
[dir="rtl"] .home2-accordion-body-inner { padding: 0 84px 20px 24px; }
[dir="rtl"] .home2-expertise-title { text-align: center; }
[dir="rtl"] .home2-expertise-intro { text-align: center; }

@media (max-width: 767px) {
  [dir="rtl"] .home2-accordion-body-inner { padding: 0 72px 16px 20px; }
}


/* ========== mega-sized-gyms.css ========== */


.mega-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.mega-hero {
  position: relative;
  height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.mega-hero-bg {
  position: absolute;
  inset: 0;
}

.mega-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mega-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.mega-hero-title {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

/* ---------- Content section ---------- */
.mega-content {
  background: #ffffff;
  padding: 72px 100px 100px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.mega-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  margin: 0 0 24px;
}

.mega-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  max-width: 1123px;
  margin: 0 auto 48px;
  padding-top: 0;
}

.mega-block {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.mega-block-1,
.mega-block-2 {
  margin-bottom: 68px;
}

.mega-text {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.52;
  color: #555555;
  text-align: justify;
  margin: 0;
}

.mega-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 22px);
}

/* ---------- Block with image: image left, text right (LTR) ---------- */
.mega-block-with-image {
  display: grid;
  grid-template-columns: 675px 1fr;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 112px;
}

.mega-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 675px;
}

.mega-content-image {
  width: 100%;
  height: auto;
  aspect-ratio: 675 / 533;
  object-fit: cover;
  display: block;
}

.mega-text-wrap {
  min-width: 0;
  max-width: 505px;
}

.mega-block-with-image .mega-text {
  margin: 0;
}

/* ---------- CTAs ---------- */
.mega-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.mega-cta-back,
.mega-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 36px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.mega-cta-back {
  background: #191919;
  color: #ffffff;
}

.mega-cta-contact {
  background: #b5de4c;
  color: #000000;
}

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] .mega-content {
  padding-left: 100px;
  padding-right: 100px;
}

[dir="rtl"] .mega-text {
  text-align: right;
}

[dir="rtl"] .mega-block-with-image {
  grid-template-columns: 1fr 675px;
}

[dir="rtl"] .mega-image-wrap {
  order: 2;
}

[dir="rtl"] .mega-text-wrap {
  order: 1;
  max-width: 505px;
  justify-self: start;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .mega-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .mega-block-with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mega-image-wrap {
    max-width: 100%;
  }

  .mega-text-wrap {
    max-width: 100%;
  }

  [dir="rtl"] .mega-block-with-image {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .mega-image-wrap,
  [dir="rtl"] .mega-text-wrap {
    order: unset;
  }
}

@media (max-width: 991px) {
  .mega-hero {
    height: 480px;
  }

  .mega-content {
    padding: 48px 24px 64px;
  }

  [dir="rtl"] .mega-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .mega-hero {
    height: 400px;
  }

  .mega-hero-title {
    padding-bottom: 60px;
  }

  .mega-content {
    padding: 32px 16px 48px;
  }

  .mega-block,
  .mega-block-1,
  .mega-block-2 {
    margin-bottom: 32px;
  }

  .mega-block-with-image {
    margin-bottom: 40px;
  }

  .mega-cta-wrap {
    margin-top: 32px;
    gap: 16px;
  }

  .mega-cta-back,
  .mega-cta-contact {
    width: 100%;
    max-width: 280px;
  }

  [dir="rtl"] .mega-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ========== mid-sized-gyms.css ========== */


.mid-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.mid-hero {
  position: relative;
  height: 628px;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  overflow: hidden;
}

.mid-hero-bg {
  position: absolute;
  inset: 0;
}

.mid-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.mid-hero-overlay {
  position: absolute;
  inset: 0;
  background: #000;
  opacity: 0.4;
  z-index: 1;
}

.mid-hero-title {
  position: relative;
  z-index: 2;
  align-self: flex-end;
  padding-bottom: 100px;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5.5vw, 80px);
  font-weight: 600;
  color: #ffffff;
  text-transform: uppercase;
  letter-spacing: 0;
  text-align: center;
  margin: 0;
  line-height: 1.1;
}

/* ---------- Content section ---------- */
.mid-content {
  background: #ffffff;
  padding: 72px 100px 100px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
}

.mid-title {
  font-family: var(--font-heading);
  font-size: clamp(32px, 3.3vw, 48px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  margin: 0 0 24px;
}

.mid-subtitle {
  font-family: var(--font-heading);
  font-size: clamp(24px, 2.8vw, 40px);
  font-weight: 600;
  color: #000000;
  text-align: center;
  text-transform: uppercase;
  line-height: 1.31;
  max-width: 783px;
  margin: 0 auto 48px;
  padding-top: 0;
}

.mid-block {
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 48px;
}

.mid-block-1,
.mid-block-2 {
  margin-bottom: 68px;
}

.mid-text {
  font-family: var(--font-body);
  font-size: clamp(18px, 1.6vw, 25px);
  line-height: 1.52;
  color: #555555;
  text-align: justify;
  margin: 0;
}


.mid-text strong {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: clamp(18px, 1.4vw, 22px);
}

/* ---------- Block with image: text left, image right (LTR) ---------- */
.mid-block-with-image {
  display: grid;
  grid-template-columns: 1fr 675px;
  gap: 60px;
  align-items: start;
  max-width: 1240px;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 109px;
}

.mid-text-wrap {
  min-width: 0;
  max-width: 521px;
}

.mid-image-wrap {
  border-radius: 10px;
  overflow: hidden;
  flex-shrink: 0;
  width: 100%;
  max-width: 675px;
}

.mid-content-image {
  width: 100%;
  height: auto;
  min-height: 380px;
  object-fit: cover;
  display: block;
}

.mid-block-with-image .mid-text {
  margin: 0;
}

/* ---------- CTAs ---------- */
.mid-cta-wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
  margin-top: 48px;
}

.mid-cta-back,
.mid-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 17px 36px 18px;
  border-radius: 100px;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 500;
  text-transform: uppercase;
  text-decoration: none;
  transition: all 0.3s ease;
  min-width: 200px;
}

.mid-cta-back {
  background: #191919;
  color: #ffffff;
}

.mid-cta-contact {
  background: #b5de4c;
  color: #000000;
}

/* ---------- RTL (Arabic) ---------- */
[dir="rtl"] .mid-content {
  padding-left: 100px;
  padding-right: 100px;
}

[dir="rtl"] .mid-text {
  text-align: right;
}

[dir="rtl"] .mid-block-with-image {
  grid-template-columns: 675px 1fr;
}

[dir="rtl"] .mid-text-wrap {
  order: 2;
  justify-self: end;
}

[dir="rtl"] .mid-image-wrap {
  order: 1;
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .mid-content {
    padding-left: 48px;
    padding-right: 48px;
  }

  .mid-block-with-image {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .mid-image-wrap {
    max-width: 100%;
  }

  .mid-text-wrap {
    max-width: 100%;
  }

  [dir="rtl"] .mid-block-with-image {
    grid-template-columns: 1fr;
  }

  [dir="rtl"] .mid-image-wrap,
  [dir="rtl"] .mid-text-wrap {
    order: unset;
    justify-self: unset;
  }
}

@media (max-width: 991px) {
  .mid-hero {
    height: 480px;
  }

  .mid-content {
    padding: 48px 24px 64px;
  }

  [dir="rtl"] .mid-content {
    padding-left: 24px;
    padding-right: 24px;
  }
}

@media (max-width: 767px) {
  .mid-hero {
    height: 400px;
  }

  .mid-hero-title {
    padding-bottom: 60px;
  }

  .mid-content {
    padding: 32px 16px 48px;
  }

  .mid-block,
  .mid-block-1,
  .mid-block-2 {
    margin-bottom: 32px;
  }

  .mid-block-with-image {
    margin-bottom: 40px;
  }

  .mid-cta-wrap {
    margin-top: 32px;
    gap: 16px;
  }

  .mid-cta-back,
  .mid-cta-contact {
    width: 100%;
    max-width: 280px;
  }

  [dir="rtl"] .mid-content {
    padding-left: 16px;
    padding-right: 16px;
  }
}


/* ========== why-body-experts.css ========== */


.why-page {
  padding-top: 0;
}

/* ---------- Hero ---------- */
.why-hero {
  background: #191919;
  min-height: 973px;
  display: flex;
  align-items: center;
  padding: 80px 0;
}

.why-hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(40px, 6vw, 58px);
  width: 100%;

  @media (max-width: 1199px) {
    padding-top: 50px;
}

}

.why-hero-content {
  display: grid;
  grid-template-columns: 1fr 630px;
  gap: clamp(40px, 6vw, 58px);
  align-items: center;
  width: 100%;
  max-width: 1440px;
  margin: 0 auto;
  box-sizing: border-box;
}

.why-hero-text {
  display: flex;
  flex-direction: column;
  gap: 30px;
  max-width: 550px;
}

.why-hero-title {
  font-family: var(--font-heading);
  font-size: 45px;
  font-weight: 600;
  line-height: 80px;
  color: #fff;
  text-transform: uppercase;
  margin: 0;
}

.why-hero-para {
  font-family: "Montserrat", var(--font-body);
  font-size: 16px;
  font-weight: 400;
  line-height: 27.2px;
  color: #fff;
  margin: 0;
}

.why-cta-hero {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 233px;
  height: 52px;
  padding: 10px;
  background: #b5de4c;
  color: #161616;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.why-cta-hero:hover {
  background: #c5e85c;
  color: #161616;
  transform: translateY(-2px);
}

.why-hero-image-wrap {
  position: relative;
  width: 100%;
  max-width: 630px;
  min-height: 600px;
}

.why-hero-image {
  position: relative;
  width: 100%;
  max-width: 500px;
  height: 600px;
  border-radius: 10px;
  overflow: hidden;
  margin: 0 auto;
}

.why-hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-info-card {
  position: absolute;
  padding: 20px;
  border-radius: 10px;
  max-width: 191px;
  min-width: 200px;
}

.why-info-dark {
  background: #191919;
  right: 0px;
  top: 80px;
}

.why-info-white {
  background: #fff;
  right: 0px;
  top: 188px;
}

.why-info-card .ds-card-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 22px;
  font-weight: 600;
  line-height: 25.52px;
  margin-bottom: 4px;
}

.why-info-dark .ds-card-number { color: #d6fb03; }
.why-info-white .ds-card-number { color: #191919; }

.why-info-card .ds-card-label {
  display: block;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 27.2px;
}

.why-info-dark .ds-card-label { color: rgba(255, 255, 255, 0.75); }
.why-info-white .ds-card-label { color: #191919; }

/* ---------- Solutions ---------- */
.why-solutions {
  background: #fff;
  padding: 72px 0 80px;
}

.why-solutions .content-align {
  margin: 0 auto;
  padding: 0 83px;
  box-sizing: border-box;
}

.why-badge {
  margin-bottom: 53px;
}

.why-solutions-title {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 52.8px;
  color: #191919;
  text-transform: uppercase;
  margin: 0 0 28px;
  max-width: 883px;
}

.why-cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 420px);
  gap: 20px;
  justify-content: center;
}

.why-solution-card {
  background: #fff;
  padding: 30px;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.why-card-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #191919;
  text-transform: uppercase;
  margin: 0;
}

.why-card-desc {
  font-family: "Montserrat", var(--font-body);
  font-size: 16px;
  font-weight: 600;
  line-height: 26px;
  color: #191919;
  margin: 0;
}

/* ---------- Image section ---------- */
.why-image-section {
  position: relative;
  min-height: 980px;
  padding: 85px 0 120px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.why-image-bg {
  position: absolute;
  inset: 0;
}

.why-image-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.why-image-overlay {
  position: absolute;
  inset: 0;
  background: rgba(25, 25, 25, 0.55);
}

.why-image-blocks {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 66px;
  max-width: 1440px;
  margin-left: auto;
  margin-right: auto;
  padding: 0 96px;
  box-sizing: border-box;
  align-items: start;
  height: 700px;
}

.why-block {
  padding: 25px;
  border-radius: 10px;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.why-block-dark {
  background: #191919;
  color: #fff;
  align-self: end;
  margin-top: 80px;
}

.why-block-white {
  background: #fff;
  color: #191919;
}

.why-block-title {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}

.why-block-text {
  font-family: var(--font-body);
  font-size: clamp(16px, 2vw, 20px);
  font-weight: 400;
  line-height: 30px;
  margin: 0;
}

.why-block-text-gray { color: #555; }

.why-cta-center {
  position: relative;
  text-align: center;
  z-index: 2;

  @media (max-width: 767px) {
    max-width: 320px;
    margin: auto;
  }
}

.why-cta-design {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 409px;
  height: 52px;
  padding: 10px 24px;
  background: #b5de4c;
  color: #161616;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 100px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
  letter-spacing: 0.02em;
}

.why-cta-design:hover {
  background: #c5e85c;
  color: #161616;
  transform: translateY(-2px);
}

/* ---------- Features (Trusted Partner) ---------- */
.why-features {
  background: #fff;
  padding: 80px 0 100px;
}

.why-features .content-align {
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 96px;
  box-sizing: border-box;
}

.why-features-main {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  line-height: 52.8px;
  color: #191919;
  text-transform: uppercase;
  margin: 0 0 75px;
}

.why-features-sub {
  font-family: var(--font-body);
  font-size: 32px;
  font-weight: 400;
  line-height: 30px;
  color: #555;
  margin: 0 0 115px;
}

.why-features-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 50px;
  justify-content: center;
  margin-bottom: 80px;
}

.why-feature-card {
  background: #b5de4c;
  color: #191919;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  text-align: center;
  font-family: var(--font-heading);
  font-size: 30px;
  font-weight: 400;
  line-height: 34px;
  width: 301px;
  min-height: 193px;
}

.why-features-grid .why-feature-card:nth-child(1) { grid-column: 1; grid-row: 1; }
.why-features-grid .why-feature-card:nth-child(2) { grid-column: 2; grid-row: 1; }
.why-features-grid .why-feature-card:nth-child(3) { grid-column: 3; grid-row: 1; }
.why-features-grid .why-feature-card:nth-child(4) { grid-column: 2; grid-row: 2; }
.why-features-grid .why-feature-card:nth-child(5) { grid-column: 1; grid-row: 2; font-size: 25px; line-height: 27.2px; }

.why-cta-contact-wrap {
  text-align: center;
}

.why-cta-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 10px 24px;
  background: #191919;
  color: #fff;
  font-family: var(--font-heading);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  border-radius: 30px;
  text-decoration: none;
  transition: background 0.3s ease, transform 0.2s ease;
}

.why-cta-contact:hover {
  background: #161616;
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Responsive ---------- */
@media (max-width: 1199px) {
  .why-hero-content {
    grid-template-columns: 1fr;
    padding: 0 48px;
  }
  .why-hero-text { max-width: 100%; }
  .why-hero-image-wrap { max-width: 100%; min-height: 450px; }
  .why-hero-image { height: 450px; }
  .why-info-dark { right: 24px; top: 40px; }
  .why-info-white { right: 24px; top: 130px; }
  .why-solutions .content-align { padding: 0 48px; }
  .why-cards-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .why-image-blocks { padding: 0 48px; grid-template-columns: 1fr; }
  .why-features .content-align { padding: 0 48px; }
  .why-features-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: auto;
  }
  .why-features-grid .why-feature-card:nth-child(n) { grid-column: auto; grid-row: auto; }
}

@media (max-width: 767px) {
  .why-hero { min-height: auto; padding: 48px 0; }
  .why-hero-content { padding: 50px 24px; }
  .why-hero-title { font-size: clamp(28px, 6vw, 40px); line-height: 1.2; }
  .why-hero-para { font-size: 12px; }
  .why-cta-hero { width: 100%; max-width: 233px; }
  .why-hero-image-wrap { min-height: 350px; }
  .why-hero-image { height: 350px; }
  .why-info-card { max-width: 160px; padding: 16px; right: -30px !important; }
  .why-info-white{top: 145px !important;}
  .why-solutions { padding: 48px 0 64px; }
  .why-solutions .content-align { padding: 0 24px; }
  .why-solutions-title { font-size: clamp(28px, 5vw, 40px); line-height: 1.2; }
  .why-solution-card { padding: 24px; }
  .why-card-title { font-size: 18px; }
  .why-image-section { min-height: auto; padding: 48px 0 80px; }
  .why-image-blocks { padding: 0 24px; margin-bottom: 40px; }
  .why-cta-design { min-width: fit-content; max-width: 320px; }
  .why-features { padding: 48px 0 64px; }
  .why-features .content-align { padding: 0 24px; }
  .why-features-main { font-size: clamp(28px, 5vw, 40px); line-height: 1.2; }
  .why-features-sub { font-size: 20px; margin-bottom: 32px; }
  .why-features-grid { grid-template-columns: 1fr; gap: 16px; margin-bottom: 48px; }
  .why-feature-card { font-size: 22px; min-height: 120px; }
  .why-features-grid .why-feature-card:nth-child(5) { font-size: 20px; }
}

/* ---------- RTL (AR) ---------- */
[dir="rtl"] .why-hero-content { direction: rtl; }
[dir="rtl"] .why-hero-text { text-align: right; }
[dir="rtl"] .why-info-dark { right: auto; left: 0px; }
[dir="rtl"] .why-info-white { right: auto; left: 0px; }
[dir="rtl"] .why-solutions-title { text-align: right; }
[dir="rtl"] .why-solution-card { text-align: right; }
[dir="rtl"] .why-image-blocks { direction: rtl; }
[dir="rtl"] .why-block { text-align: right; }
[dir="rtl"] .why-block-dark { order: 2; }
[dir="rtl"] .why-block-white { order: 1; align-self: start; margin-top: 0; }
[dir="rtl"] .why-features-main { text-align: center; }
[dir="rtl"] .why-features-sub { text-align: center; }

@media (max-width: 1199px) {
  [dir="rtl"] .why-info-dark { left: 24px; right: auto; }
  [dir="rtl"] .why-info-white { left: 24px; right: auto; }
}

@media (max-width: 767px) {
  [dir="rtl"] .why-info-card { left: -30px !important; right: auto !important; }
}


/* ========== responsive.css ========== */


/* ---------- Laptop (992px - 1199px) ---------- */
@media (max-width: 1199px) {
  .content-align {
    padding-left: 48px;
    padding-right: 48px;
  }

  .hero-section {
    padding: 0 0 80px;
  }

  .advantages-section {
    padding: 60px 48px 80px;
  }

  .advantages-grid {
    gap: 24px;
  }

  .services-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    height: 360px;
  }

  .contact-section {
    padding: 80px 48px 0;
  }

  body.contact-page .contact-section {
    padding-top: 180px;
  }

  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-image-wrap {
    width: 100%;
    max-width: 500px;
    height: 400px;
    margin: 0 auto;
  }

  .contact-form-wrap {
    max-width: 100%;
  }

  .footer {
    padding: 60px 48px 32px;
  }

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

/* ---------- Tablet (768px - 991px) ---------- */
@media (max-width: 991px) {
  .nav-toggle {
    display: flex;
    top: 28px;
    right: 24px;
  }
  .header .nav-links,
  .header .nav-cta,
  .header .nav-actions {
    display: none;
  }
  .nav-overlay,
  .nav-sidebar {
    display: block;
  }

  .content-align {
    padding-left: 24px;
    padding-right: 24px;
  }

  .hero-section {
    min-height: 600px;
    padding: 0 0 60px;
    align-items: flex-end;
  }

  .about-stats {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
  }

  .advantages-section {
    padding: 48px 24px 60px;
  }

  .advantages-grid {
    grid-template-columns: 1fr;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
  }

  .services-section {
    padding: 48px 16px 60px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
  }

  .service-card {
    height: 340px;
  }

  .contact-section {
    padding: 60px 24px 0;
  }

  body.contact-page .contact-section {
    padding-top: 160px;
  }

  .contact-section-inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact-image-wrap {
    width: 100%;
    max-width: 500px;
    height: 320px;
    margin: 0 auto;
  }

  .contact-form-wrap {
    max-width: 100%;
  }

  .footer {
    padding: 60px 24px 32px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-col h4 {
    margin-top: 24px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
  }
}

/* ---------- Mobile (576px and below) ---------- */
@media (max-width: 767px) {
  .content-align {
    padding-left: 16px;
    padding-right: 16px;
  }
  .nav-toggle {
    right: 16px;
    top: 24px;
  }

  .nav-logo {
    width: 100px;
    height: auto;
  }

  .hero-section {
    min-height: 500px;
    padding: 0 0 40px;
  }

  .hero-title {
    margin-bottom: 20px;
  }

  .hero-cta {
    padding: 8px 16px;
  }

  .about-section {
    padding: 40px 16px 60px;
  }

  .about-desc {
    margin-bottom: 40px;
  }

  .about-stats {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 32px;
  }

  .advantages-section {
    padding: 40px 16px 48px;
  }

  .advantage-card {
    padding: 24px 20px;
    min-height: auto;
  }

  .advantage-card .card-desc {
    font-size: clamp(13px, 1vw + 0.5rem, 15px);
  }

  .services-section {
    padding: 40px 16px 48px;
  }

  .service-card {
    height: 300px;
  }

  .service-card-caption {
    bottom: 16px;
    left: 16px;
    right: 16px;
    padding: 8px 12px;
  }

  .service-card-caption span {
    font-size: 16px;
  }

  .contact-section {
    padding: 48px 16px 0;
  }

  body.contact-page .contact-section {
    padding-top: 150px;
  }

  .contact-section-inner {
    gap: 32px;
  }

  .contact-image-wrap {
    height: 260px;
  }

  .form-row {
    grid-template-columns: 1fr;
  }

  .footer {
    padding: 40px 16px 24px;
  }

  .footer-partners {
    flex-direction: column;
    gap: 16px;
  }

  .footer-partners img {
    height: 48px;
  }
}

/* ---------- Small mobile ---------- */
@media (max-width: 575px) {
  /* clamp handles fine-tuning for smallest screens */
}

/* ---------- RTL overrides ---------- */
[dir="rtl"] .hero-content {
  margin-right: auto;
}


/* Buttons: text first, then arrow - RTL keeps text right, arrow left */
[dir="rtl"] .nav-cta,
[dir="rtl"] .hero-cta,
[dir="rtl"] .about-legacy-cta {
  flex-direction: row;
  padding: 10px 10px 10px 23px;
}
[dir="rtl"] .nav-cta img,
[dir="rtl"] .hero-cta img,
[dir="rtl"] .about-legacy-cta img {
  transform: scaleX(-1);
}

[dir="rtl"] .about-learn-more {
  flex-direction: row-reverse;
}
[dir="rtl"] .about-learn-more img {
  transform: scaleX(-1);
}

[dir="rtl"] .service-card-caption {
  left: 24px;
  right: 23px;
  flex-direction: row-reverse;
}

[dir="rtl"] .contact-section {
  direction: rtl;
}

[dir="rtl"] .contact-section .contact-form-wrap {
  text-align: right;
}

[dir="rtl"] .footer-col {
  text-align: right;
}

[dir="rtl"] .footer-mid {
  direction: rtl;
}

/* Footer – Arabic (Figma): Almarai, lime email */
html[dir="rtl"] .footer-col h4 {
  font-family: var(--font-heading);
  font-weight: 700;
}
html[dir="rtl"] .footer-col ul a {
  font-family: var(--font-body);
  font-weight: 300;
}
html[dir="rtl"] .footer-contact .footer-contact-item,
html[dir="rtl"] .footer-contact .footer-contact-link {
  font-family: var(--font-body);
  font-weight: 300;
}
html[dir="rtl"] .footer-contact .footer-contact-link span:last-child {
  color: var(--primary-color);
  opacity: 1;
  text-decoration-color: var(--primary-color);
}

/* RTL: Sidebar from left, toggle on left */
[dir="rtl"] .nav-sidebar {
  right: auto;
  left: 0;
  transform: translateX(-100%);
  box-shadow: 8px 0 32px rgba(0, 0, 0, 0.4);
}
[dir="rtl"] .nav-sidebar.active {
  transform: translateX(0);
}

[dir="rtl"] .nav-toggle {
  right: auto;
  left: 24px;
}
@media (max-width: 767px) {
  [dir="rtl"] .nav-toggle {
    left: 16px;
  }
}

/* RTL: About page */
[dir="rtl"] .about-legacy-inner {
  direction: rtl;
}
[dir="rtl"] .about-distinction-inner {
  direction: rtl;
}
[dir="rtl"] .about-scc,
[dir="rtl"] .about-scc-heading {
  direction: rtl;
  text-align: right;
}
[dir="rtl"] .about-scc-heading {
  padding-left: 0;
  padding-right: clamp(24px, 3.3vw, 48px);
}


/* ========== hovers.css ========== */
/* ============================================
   HOVERS.CSS - Modern Professional Hover Effects
   Body Experts
   ============================================ */

/* ---------- Header / Nav ---------- */
.nav-logo-link {
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav-logo-link:hover {
  transform: scale(1.05);
  opacity: 0.9;
}

.nav-links a {
  position: relative;
  transition: color 0.25s ease;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 10px;
  right: 10px;
  height: 2px;
  background: var(--primary-color);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}
.nav-links a:hover {
  color: var(--primary-color);
}
.nav-links a:hover::after {
  transform: scaleX(1);
}

.nav-cta {
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.nav-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
  background: #c5e85c;
}

/* ---------- Hero CTA ---------- */
.hero-cta {
  transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.hero-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 24px rgba(255, 255, 255, 0.25);
  background: #f5f5f5;
}

/* ---------- About Learn More ---------- */
.about-learn-more {
  transition: color 0.25s ease, transform 0.25s ease;
}
.about-learn-more img {
  transition: transform 0.3s ease;
}
.about-learn-more:hover {
  color: var(--primary-color);
}
.about-learn-more:hover img {
  transform: translateX(4px);
}

/* ---------- Advantage Cards ---------- */
.advantage-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.advantage-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.4);
  background: #2e2e2e;
}
.advantage-card:hover .card-icon {
  transform: scale(1.08);
}
.advantage-card .card-icon {
  transition: transform 0.3s ease;
}

/* ---------- Service Cards ---------- */
.service-card {
  transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}
.service-card:hover .service-image {
  transform: scale(1.05);
}
.service-card .service-image {
  transition: transform 0.5s ease;
}
.service-card:hover .service-card-caption {
  background: #c5e85c;
}
.service-card-caption {
  transition: background 0.3s ease;
}
.service-card-caption img {
  transition: transform 0.3s ease;
}
.service-card:hover .service-card-caption img {
  transform: translateX(4px);
}

/* ---------- Contact Form ---------- */
.input-custom {
  transition: border-color 0.25s ease, background 0.25s ease;
}
.input-custom:focus {
  border-color: var(--primary-color);
  background: #333;
}

.btn-submit {
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.45);
  background: #c5e85c;
}

/* ---------- Footer ---------- */
.footer-col a {
  transition: color 0.25s ease, opacity 0.25s ease;
}
.footer-col a:hover {
  color: var(--primary-color);
  opacity: 1;
}

.footer-powered:hover {
  color: var(--primary-color);
}

.footer-partners img {
  transition: opacity 0.3s ease, transform 0.3s ease;
}
.footer-partners img:hover {
  opacity: 1;
  transform: scale(1.05);
}

.footer-social a {
  transition: transform 0.25s ease, opacity 0.25s ease;
}
.footer-social a:hover {
  transform: scale(1.15);
  opacity: 1;
}
.footer-social a:hover img {
  filter: brightness(0) invert(1);
}
.footer-social img {
  transition: filter 0.25s ease;
}

/* ---------- About Stats (subtle) ---------- */
.about-stat {
  transition: transform 0.3s ease;
}
.about-stat:hover {
  transform: scale(1.03);
}

/* ---------- About Page – Legacy & Commitment ---------- */
.about-legacy-cta {
  transition: transform 0.25s ease, box-shadow 0.3s ease, background 0.3s ease;
}
.about-legacy-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
  background: #c5e85c;
  opacity: 1;
  color: var(--primary-dark);
}
.about-legacy-cta img {
  transition: transform 0.3s ease;
}
.about-legacy-cta:hover img {
  transform: translateX(4px);
}
[dir="rtl"] .about-legacy-cta:hover img {
  transform: scaleX(-1) translateX(-4px);
}

.about-tab {
  transition: color 0.25s ease, opacity 0.25s ease;
}
.about-tab:hover {
  color: var(--dark-bg);
  opacity: 0.9;
}
.about-tab.active:hover {
  opacity: 1;
}

.about-legacy-image,
.about-distinction-image {
  overflow: hidden;
}
.about-legacy-image .about-legacy-img,
.about-distinction-image img {
  transition: transform 0.5s ease, opacity 0.35s ease;
}
.about-legacy-image:hover .about-legacy-img.active,
.about-distinction-image:hover img {
  transform: scale(1.05);
}

/* ---------- About Page – SCC Cards ---------- */
.about-scc-card {
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}
.about-scc-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
}
.about-scc-card:hover .about-scc-card-img img {
  transform: scale(1.06);
}
.about-scc-card-img img {
  transition: transform 0.5s ease;
}

/* ---------- Services Page – Cards ---------- */
.services-card {
  transition: all 0.3s ease;
}
.services-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.25);
}
.services-card .services-card-icon img {
  transition: transform 0.3s ease;
}
.services-card:hover .services-card-icon img {
  transform: scale(1.08);
}
.services-card .services-card-image img {
  transition: transform 0.4s ease;
}
.services-card:hover .services-card-image img {
  transform: scale(1.05);
}
.services-cta-btn {
  transition: all 0.3s ease;
}
.services-cta-btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}

/* ---------- Sidebar CTA (used on about page) ---------- */
.nav-sidebar-cta {
  transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
}
.nav-sidebar-cta:hover {
  background: #c5e85c !important;
  color: var(--primary-dark);
  transform: translateX(-2px);
  box-shadow: 0 4px 16px rgba(181, 222, 76, 0.35);
}

/* ---------- Mega-Sized Gyms subpage ---------- */
.mega-cta-back {
  transition: all 0.3s ease;
}
.mega-cta-back:hover {
  background: #2a2a2a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mega-cta-contact {
  transition: all 0.3s ease;
}
.mega-cta-contact:hover {
  background: #c5e85c;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}

.mega-image-wrap {
  overflow: hidden;
  border-radius: 10px;
}
.mega-content-image {
  transition: transform 0.5s ease;
}
.mega-image-wrap:hover .mega-content-image {
  transform: scale(1.05);
}

/* ---------- Mid-Sized Gyms subpage ---------- */
.mid-cta-back {
  transition: all 0.3s ease;
}
.mid-cta-back:hover {
  background: #2a2a2a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.mid-cta-contact {
  transition: all 0.3s ease;
}
.mid-cta-contact:hover {
  background: #c5e85c;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}

.mid-image-wrap {
  overflow: hidden;
  border-radius: 10px;
}
.mid-content-image {
  transition: transform 0.5s ease;
}
.mid-image-wrap:hover .mid-content-image {
  transform: scale(1.05);
}

/* ---------- Home Gyms subpage ---------- */
.home-cta-back {
  transition: all 0.3s ease;
}
.home-cta-back:hover {
  background: #2a2a2a;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.home-cta-contact {
  transition: all 0.3s ease;
}
.home-cta-contact:hover {
  background: #c5e85c;
  color: #000;
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}

.home-image-wrap {
  overflow: hidden;
  border-radius: 10px;
}
.home-content-image {
  transition: transform 0.5s ease;
}
.home-image-wrap:hover .home-content-image {
  transform: scale(1.05);
}

/* ---------- Why Body Experts / Home2 / Design System ---------- */
.ds-btn-primary,
.ds-btn-secondary,
.why-cta-hero,
.why-cta-design,
.why-cta-contact-wrap .ds-btn-secondary {
  transition: all 0.3s ease;
}
.ds-btn-primary:hover,
.why-cta-hero:hover,
.why-cta-design:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}
.ds-btn-secondary:hover,
.why-cta-contact-wrap .ds-btn-secondary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}

.why-solution-card,
.ds-content-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.why-solution-card:hover,
.ds-content-card:hover {
  transform: translateY(-4px);
}

.ds-feature-card {
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}
.ds-feature-card:hover {
  transform: translateY(-4px) scale(1.02);
  box-shadow: 0 8px 24px rgba(25, 25, 25, 0.15);
}

.why-info-card {
  transition: transform 0.3s ease;
}
.why-info-card:hover {
  transform: translateY(-2px);
}

.why-hero-image {
  overflow: hidden;
}
.why-hero-image img {
  transition: transform 0.5s ease;
}
.why-hero-image-wrap:hover .why-hero-image img {
  transform: scale(1.05);
}

/* Corporate Wellness */
.corporate-cta-back,
.corporate-cta-contact {
  transition: all 0.3s ease;
}
.corporate-cta-back:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
}
.corporate-cta-contact:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(181, 222, 76, 0.4);
}

.corporate-block-image {
  overflow: hidden;
  border-radius: 10px;
}
.corporate-block-image img {
  transition: transform 0.5s ease;
}
.corporate-block-with-image:hover .corporate-block-image img {
  transform: scale(1.05);
}
.corporate-accordion-header-span {
  font-family: var(--font-archivo-black);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.1;
  color: #191919;
  text-transform: uppercase;
  margin: 0;
  flex: 1;
}
.footer-grid{
  grid-template-columns: 1fr 1fr 1fr;
}
.service-card-caption span{
  font-size: 16px;
}
.link-active{
  color: var(--primary-color) !important;
}
.link-active::after{
  transform: scaleX(1) !important;
}
.input-checkbox{width: 18px !important;display: inline-block;height: 18px !important;margin: 0;margin-top: 3px;}
.privacy{display: inline-block;margin: 0 5px;color: #fff;text-decoration: underline;}
.marketing{display: inline-block;margin: 0 5px;color: #fff;}
.div-checkbox{display: flex;
  align-items: flex-start;}
@media (max-width: 991px) {
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
  }
}

