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

:root {
  --main-color: #F18A1D;
  --second-color: #F18A1D;
  --white-color: #ffffff;
  --accent: var(--main-color);
  --accent-ink: #ffffff;

  --section-bg: #ffffff;
  --section-bg-alt: #f8f9fa;
  --cream: #f4efe8;
  --body-bg: var(--section-bg);
  --curve-bg: var(--section-bg);

  --text-color: #232323;
  --text-muted: #6c757d;
  --border-color: #e9ecef;
  --input-bg: #f7f3ee;
  --input-border: #e6e1da;

  --radius: 12px;
  --transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.05);
  --shadow-premium: 0 30px 60px rgba(22, 22, 27, 0.08);
}

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

ul li {
  list-style: none !important;
}

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

html,
body {
  scroll-behavior: smooth !important;
  font-family: "Outfit", sans-serif;
  overflow-x: hidden;
  background-color: var(--body-bg);
  color: var(--text-color);
}

[dir="rtl"] {
  body {
    font-family: "Cairo", sans-serif;
  }

  .section-label,
  .contact-eyebrow,
  .contact-card-form label {
    letter-spacing: 0.4px;
    text-transform: none;
  }
}

::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-thumb {
  background: var(--main-color);
  border-radius: 4px;
}

.text-main {
  color: var(--main-color);
}

.text-primary {
  color: var(--main-color) !important;
}

/* ========================================
   Shared surfaces
======================================== */
.about-section,
.about-intro-section,
.services-section,
.services-page-section,
.why-section,
.blogs-section,
.blogs-page-section,
.contact-section,
.details-section {
  padding: 90px 0;
}

.about-section,
.about-intro-section,
.why-section,
.services-page-section,
.blogs-page-section,
.contact-section,
.details-section {
  background-color: var(--section-bg);
  --curve-bg: var(--section-bg);
}

.services-section,
.blogs-section {
  background-color: var(--cream);
  --curve-bg: var(--cream);
}

/* ========================================
   Section helpers
======================================== */
.section-desc {
  max-width: 640px;
  margin-inline: auto;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ========================================
   Loader
======================================== */
.loading {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  background: var(--white-color);
  z-index: 99999;
  transition: opacity 0.5s ease;

  &.loaded {
    opacity: 0;
    pointer-events: none;
  }

  .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid var(--border-color);
    border-top-color: var(--main-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
  }
}

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

/* ========================================
   Header
======================================== */
.header {
  background: rgba(255, 255, 255, 0.4);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border-bottom: 1px solid rgba(22, 22, 27, 0.05);
  transition: var(--transition);
  z-index: 1030;

  &.scrolled {
    background: var(--white-color);
    box-shadow: var(--shadow-sm);
    padding: 5px 0;
  }

  .navbar {
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
  }

  .navbar-toggler {
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    border-radius: 12px;
    background: rgba(241, 138, 29, 0.12);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: none;

    &:focus,
    &:focus-visible {
      box-shadow: none;
      outline: none;
    }
  }

  .nav-link {
    font-weight: 500;
    color: var(--text-color) !important;
    font-size: 15px;
    position: relative;
    padding: 8px 16px !important;
    transition: var(--transition);

    &::after {
      content: "";
      position: absolute;
      bottom: 0;
      left: 50%;
      transform: translateX(-50%);
      width: 0;
      height: 2px;
      background-color: var(--main-color);
      transition: var(--transition);
    }

    &:hover::after,
    &.active::after {
      width: 70%;
    }

    &:hover,
    &.active {
      color: var(--main-color) !important;
    }
  }
}

.lang-switch {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 6px 14px 6px 8px;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
  color: #fff !important;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-decoration: none;
  box-shadow: 0 8px 18px rgba(241, 138, 29, 0.35);
  transition: var(--transition);

  i {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: #fff;
    color: #16161b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
  }

  .lang-code {
    min-width: 22px;
    text-align: center;
  }

  &:hover {
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 12px 26px rgba(241, 138, 29, 0.5);
  }
}

[dir="rtl"] .lang-switch {
  padding: 6px 8px 6px 14px;
  letter-spacing: 0;
}

#mobileMenu {
  --bs-offcanvas-width: min(360px, 92vw);
  --bs-offcanvas-bg: #fff;
  --bs-offcanvas-border-color: rgba(22, 22, 27, 0.06);
  --bs-offcanvas-padding-x: 1.35rem;
  --bs-offcanvas-padding-y: 1rem;
  z-index: 1046;

  .offcanvas-header {
    width: 100%;
    align-items: center;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
  }

  .navbar-brand {
    margin: 0;
    width: 100%;
  }

  .logo-img {
    height: 42px;
    max-width: 180px;
    width: auto;
    object-fit: contain;
  }

  .mobile-menu-close {
    width: 42px;
    height: 42px;
    border: 0;
    border-radius: 12px;
    background: rgba(241, 138, 29, 0.12);
    color: var(--text-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
  }

  .offcanvas-body {
    padding-top: 1.4rem;
    padding-bottom: 1.6rem;
    gap: 0;
  }

  .nav-link {
    position: relative;
    display: block;
    width: fit-content;
    max-width: 100%;
    padding: 10px 20px !important;
    margin-bottom: 4px;
    border-radius: 999px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-color) !important;
    overflow: hidden;
    z-index: 1;
    transition: color 0.3s ease;

    &::before {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      top: 0;
      width: 0;
      height: 100%;
      background: var(--main-color);
      transition: width 0.35s ease;
      z-index: -1;
    }

    &::after {
      display: none;
    }

    &:hover,
    &.active {
      color: #fff !important;

      &::before {
        width: 100%;
      }
    }
  }

  .list-contact {
    padding-top: 1.25rem;
    border-top: 1px solid var(--border-color);

    li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      margin-bottom: 16px;

      &:last-child {
        margin-bottom: 0;
      }
    }

    i {
      width: 36px;
      height: 36px;
      border-radius: 10px;
      background: rgba(241, 138, 29, 0.12);
      color: var(--main-color);
      display: inline-flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    strong {
      display: block;
      font-size: 12px;
      color: var(--text-color);
      margin-bottom: 2px;
    }

    a,
    span {
      color: var(--text-muted);
      font-size: 14px;
      line-height: 1.5;
    }

    a:hover {
      color: var(--main-color);
    }
  }

  .mobile-menu-social a {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: rgba(241, 138, 29, 0.1);
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);

    &:hover {
      background: var(--main-color);
      color: #fff;
    }
  }

  .btn-learn-more-creative {
    margin-top: 28px;
    width: 100%;
    justify-content: center;
  }
}

/* ========================================
   Titles & Buttons
======================================== */
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
  padding-block: 6px;
  padding-inline: 6px 16px;
  color: var(--main-color);
  background: rgba(241, 138, 29, 0.1);
  border: 1px solid rgba(241, 138, 29, 0.18);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  line-height: 1;
  width: fit-content;
  .section-label-text {
    white-space: nowrap;
  }
  .section-label-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    border-radius: 50%;
    background: var(--main-color);
    color: var(--white-color);
    font-size: 11px;
    line-height: 0;
    i {
      display: block;
      line-height: 1;
    }
    img {
      width: 13px;
      height: auto;
      display: none;
    }
    &--flip {
      display: none;
    }
  }
  &::after {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--main-color);
  }
}

.header-section {
  .section-label::before {
    content: "";
    width: 28px;
    height: 2px;
    border-radius: 99px;
    background: var(--main-color);
  }

  .section-title {
    margin-bottom: 0;

    &::after {
      content: "";
      display: block;
      width: 56px;
      height: 3px;
      margin: 18px auto 0;
      border-radius: 99px;
      background: var(--main-color);
    }
  }
}

.section-title {
  position: relative;
  font-weight: 800;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  color: var(--text-color);
  margin-bottom: 20px;

  span {
    color: var(--main-color);
  }
}

.btn-primary-custom,
.btn-more {
  background-color: var(--main-color);
  color: var(--white-color);
  border: 1px solid var(--main-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 15px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;

  &:hover {
    background-color: var(--text-color);
    border-color: var(--text-color);
    color: var(--white-color);
    transform: translateY(-2px);
  }
}

.btn-secondary-custom {
  background-color: transparent;
  color: var(--text-color);
  border: 1px solid var(--text-color);
  padding: 12px 30px;
  font-weight: 600;
  border-radius: 4px;
  font-size: 15px;
  transition: var(--transition);

  &:hover {
    background-color: var(--text-color);
    color: var(--white-color);
    transform: translateY(-2px);
  }
}

/* ========================================
   Hero
======================================== */
.hero-video-section {
  position: relative;
  width: 100%;
  height: 100vh;
  height: 100svh;
  overflow: hidden;

  .hero-video-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
  }

  .hero-scroll {
    position: absolute;
    left: 50%;
    bottom: 36px;
    transform: translateX(-50%);
    z-index: 3;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--white-color);
    text-decoration: none;

    .hero-scroll-mouse {
      width: 24px;
      height: 38px;
      border: 2px solid var(--white-color);
      border-radius: 16px;
      display: flex;
      justify-content: center;
      padding-top: 7px;

      span {
        width: 4px;
        height: 8px;
        border-radius: 4px;
        background: var(--white-color);
        animation: hero-scroll-wheel 1.6s ease-in-out infinite;
      }
    }

    i {
      font-size: 14px;
      animation: hero-scroll-chevron 1.6s ease-in-out infinite;
    }
  }
}

@keyframes hero-scroll-wheel {
  0% {
    opacity: 1;
    transform: translateY(0);
  }

  80%,
  100% {
    opacity: 0;
    transform: translateY(10px);
  }
}

@keyframes hero-scroll-chevron {
  0%,
  100% {
    transform: translateY(0);
    opacity: 0.6;
  }

  50% {
    transform: translateY(6px);
    opacity: 1;
  }
}

.hero-pages {
  position: relative;
  min-height: 42vh;
  padding: 160px 0 90px;
  background-image: url('../images/banner/hero-pages-bg.jpg');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-pages::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(17, 17, 22, 0.88) 0%,
    rgba(17, 17, 22, 0.70) 50%,
    rgba(241, 138, 29, 0.18) 100%
  );
  z-index: 0;
}

.hero-pages .hero-content,
.hero-pages .container {
  position: relative;
  z-index: 1;
}

.hero-pages h1 {
  font-weight: 800;
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  color: #ffffff;
  margin-bottom: 15px;
  text-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
}

.hero-pages .breadcrumb {
  font-size: 14px;
  font-weight: 600;
  background: transparent;
  padding: 0;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.hero-pages .breadcrumb a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  transition: color 0.3s ease;
}

.hero-pages .breadcrumb a:hover,
.hero-pages .breadcrumb .active {
  color: #F18A1D;
}

/* ========================================
   About
======================================== */
.about-section,
.about-intro-section {
  position: relative;
  overflow: hidden;
}

.about-single-img {
  border-radius: 28px;
  overflow: hidden;
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.12);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.5s ease;

  img {
    width: 100%;
    height: 480px;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }

  &:hover {
    transform: translateY(-6px);
    box-shadow: 0 32px 72px rgba(0, 0, 0, 0.16);
  }

  &:hover img {
    transform: scale(1.04);
  }

  @media (max-width: 991.98px) {
    img {
      height: 340px;
    }
  }

  @media (max-width: 575.98px) {
    border-radius: 20px;

    img {
      height: 260px;
    }
  }
}

.btn-learn-more-creative {
  position: relative;
  display: inline-flex;
  align-items: center;
  width: fit-content;
  gap: 16px;
  padding: 10px 10px 10px 28px;
  border-radius: 50px;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
  color: #ffffff;
  font-size: 15.5px;
  font-weight: 700;
  text-decoration: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 10px 26px rgba(241, 138, 29, 0.35);
  border: none;
  overflow: hidden;
  z-index: 1;
  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #111116 0%, #22222a 100%);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.4s ease;
  }
  .btn-icon-wrapper {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #16161b;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 15px;
    transition: all 0.4s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  }
  &:hover {
    color: #ffffff;
    transform: translateY(-4px) scale(1.03);
    box-shadow: 0 16px 36px rgba(241, 138, 29, 0.5);
    &::before {
      opacity: 1;
    }
    .btn-icon-wrapper {
      background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
      color: #ffffff;
      transform: translateX(4px);
      box-shadow: 0 0 18px rgba(255, 158, 27, 0.6);
    }
  }
}

[dir="rtl"] {
  .btn-learn-more-creative {
    padding: 10px 28px 10px 10px;
    .btn-icon-wrapper i {
      transform: scaleX(-1);
    }
    &:hover .btn-icon-wrapper {
      transform: scaleX(-1) translateX(4px);
    }
  }
}

/* Animated Counters Strip (Unique to About Us) */
.about-counters-strip {
  background: var(--white-color);
  border-radius: 20px;
  border: 1px solid rgba(0, 0, 0, 0.07);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);

  .about-counter-box {
    padding: 18px 12px;
    gap: 4px;

    .counter-num {
      font-size: 28px;
      font-weight: 800;
      color: var(--main-color);
      line-height: 1;
      display: block;
      background: linear-gradient(135deg, #FF9E1B 0%, #E65100 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
    }

    span {
      font-size: 11.5px;
      font-weight: 600;
      color: #666670;
      line-height: 1.3;
    }
  }

  .about-counter-divider {
    width: 1px;
    height: 50px;
    background: rgba(0, 0, 0, 0.08);
    flex-shrink: 0;
  }

  @media (max-width: 575.98px) {
    .about-counter-divider {
      width: 60%;
      height: 1px;
    }

    .about-counter-box {
      padding: 16px;
    }
  }
}

/* 2-Photo Overlapping Collage (Unique to About Us) */
.about-photo-collage {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 500px;
  padding-bottom: 44px;
  padding-inline-end: 44px;

  img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }

  &:hover {
    .about-photo-main img {
      transform: scale(1.05);
    }

    .about-photo-sub {
      transform: translateY(-10px) rotate(-1.5deg);

      img {
        transform: scale(1.08);
      }
    }
  }

  @media (max-width: 991.98px) {
    min-height: 380px;
    padding-bottom: 36px;
    padding-inline-end: 36px;

    .about-photo-main {
      min-height: 340px;
    }

    .about-photo-sub {
      height: 48%;
    }
  }

  @media (max-width: 575.98px) {
    min-height: 300px;
    padding-bottom: 24px;
    padding-inline-end: 20px;

    .about-photo-main {
      width: 100%;
      min-height: 260px;
      border-radius: 22px;
    }

    .about-photo-sub {
      width: 58%;
      height: 42%;
      border-width: 4px;
      border-radius: 18px;
    }
  }

  .about-photo-main {
    position: relative;
    width: 88%;
    height: 100%;
    min-height: 100%;
    border-radius: 32px;
    overflow: hidden;
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.14);
    border: 1px solid rgba(0, 0, 0, 0.06);
    img {
      transition: transform 0.9s ease;
    }
  }

  .about-photo-shimmer {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      135deg,
      transparent 40%,
      rgba(241, 138, 29, 0.12) 70%,
      transparent 100%
    );
    pointer-events: none;
  }

  .about-photo-sub {
    position: absolute;
    bottom: 0;
    inset-inline-end: 0;
    width: 54%;
    height: 52%;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 24px 44px rgba(0, 0, 0, 0.2);
    border: 5px solid #ffffff;
    z-index: 2;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
    img {
      transition: transform 0.9s ease;
    }
  }

  .about-collage-accent-badge {
    position: absolute;
    top: 32px;
    inset-inline-start: -10px;
    z-index: 3;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
    color: #ffffff;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.5px;
    box-shadow: 0 10px 24px rgba(241, 138, 29, 0.45);
    animation: floatSlow1 5s ease-in-out infinite;
    i {
      font-size: 13px;
    }
    @media (max-width: 575.98px) {
      inset-inline-start: 12px;
      top: 16px;
      font-size: 10px;
      padding: 8px 12px;
    }
  }
}

/* ========================================
   Media Cards
======================================== */
.media-card {
  --card-accent: var(--main-color);
  --card-curve-bg: var(--curve-bg, var(--body-bg));
  --card-icon-hover: var(--white-color);
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  isolation: isolate;
  height: 100%;
  min-height: 320px;
  display: block;

  > img {
    width: 100%;
    height: 100%;
    min-height: 320px;
    object-fit: cover;
    display: block;
    transform: scale(1);
    transition: transform 500ms ease;
  }

  &:hover > img {
    transform: scale(1.05);
  }

  .media-card-fade {
    width: 100%;
    top: 41%;
    height: 60%;
    position: absolute;
    left: 0;
    background: linear-gradient(to top,
        #000000 0%,
        rgba(0, 0, 0, 0.738) 19%,
        rgba(0, 0, 0, 0.541) 34%,
        rgba(0, 0, 0, 0.382) 47%,
        rgba(0, 0, 0, 0.278) 56.5%,
        rgba(0, 0, 0, 0.194) 65%,
        rgba(0, 0, 0, 0.126) 73%,
        rgba(0, 0, 0, 0.075) 80.2%,
        rgba(0, 0, 0, 0.042) 86.1%,
        rgba(0, 0, 0, 0.021) 91%,
        rgba(0, 0, 0, 0.008) 95.2%,
        rgba(0, 0, 0, 0.002) 98.2%,
        transparent 100%);
    pointer-events: none;
    z-index: 1;
  }

  .media-card-title {
    position: absolute;
    bottom: 0;
    padding: 30px 15px 30px 110px;
    width: 100%;
    text-align: start;
    z-index: 2;

    h6 {
      color: var(--second-color);
      font-size: 10px;
      line-height: 10px;
      font-weight: 500;
      letter-spacing: 6px;
      text-transform: uppercase;
      margin-bottom: 10px;
    }

    h4,
    h4 a {
      color: #fff;
      font-size: 21px;
      font-weight: 700;
      margin-bottom: 0;
      line-height: 1.35;
      text-decoration: none;
      transition: color 0.3s ease;
    }

    h4 a:hover {
      color: var(--card-accent);
    }
  }

  .card-corner-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 90px;
    height: 90px;
    line-height: 90px;
    text-align: center;
    border-radius: 0 40px 0 20px;
    z-index: 3;
    background: var(--card-curve-bg);
    color: var(--card-curve-bg);

    .card-corner-link {
      position: absolute;
      inset: 15px;
      border-radius: 100%;
      background: transparent;
      color: #fff;
      display: flex;
      align-items: center;
      justify-content: center;
      text-decoration: none;
    }

    .card-corner-curve-top {
      position: absolute;
      top: -24px;
      left: -1px;
      transform: rotate(270deg);
      line-height: 1;
      color: var(--card-curve-bg);

      svg {
        width: 24px;
        height: 24px;
        display: block;
      }
    }

    .card-corner-curve-side {
      position: absolute;
      bottom: -1px;
      right: -24px;
      transform: rotate(270deg);
      line-height: 1;
      color: var(--card-curve-bg);

      svg {
        width: 24px;
        height: 24px;
        display: block;
      }
    }

    .card-corner-icon {
      width: 60px;
      height: 60px;
      line-height: 60px;
      color: var(--text-color);
      border: 1px solid var(--card-accent);
      background: transparent;
      border-radius: 100%;
      font-size: 18px;
      font-weight: 700;
      display: flex;
      align-items: center;
      justify-content: center;
      transition: all 0.2s linear;
    }
  }

  &:hover .card-corner-btn .card-corner-icon {
    background-color: var(--card-accent);
    color: var(--card-icon-hover);
    border-color: var(--card-accent);
  }
}

.media-card--blog {
  .card-corner-btn {
    width: 100px;
    height: 100px;
    line-height: 100px;
    border-radius: 0 45px 0 0;

    .card-corner-icon {
      width: 70px;
      height: 70px;
      line-height: 70px;
      position: relative;
      transform: rotate(-45deg);
      font-size: 18px;
    }
  }

  .media-card-title {
    padding: 0 20px 25px 110px;
  }

  &:hover .card-corner-btn .card-corner-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    transform: rotate(0deg);
  }
}

[dir="rtl"] {
  .media-card-title {
    padding: 30px 110px 30px 15px;
  }

  .card-corner-btn {
    left: auto;
    right: 0;
    border-radius: 40px 0 20px 0;
  }

  .card-corner-curve-top {
    left: auto;
    right: -1px;
    transform: rotate(0deg);
  }

  .card-corner-curve-side {
    right: auto;
    left: -24px;
    transform: rotate(0deg);
  }

  .media-card--blog {
    .media-card-title {
      padding: 0 110px 25px 20px;
    }

    .card-corner-btn {
      border-radius: 45px 0 20px 0;
    }
  }
}

/* ========================================
   Service Cards
======================================== */
.service-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  isolation: isolate;
  min-height: 300px;
  height: 100%;
  border-radius: 28px;
  text-decoration: none;
  color: #fff;
  background: #1a1a1a;
  box-shadow: 0 18px 40px rgba(22, 22, 27, 0.08);
  transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1),
    box-shadow 0.5s cubic-bezier(0.16, 1, 0.3, 1);

  img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.04);
    transition: transform 0.8s ease;
  }

  &::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(12, 12, 14, 0.88) 0%,
      rgba(12, 12, 14, 0.42) 42%,
      rgba(12, 12, 14, 0.08) 100%
    );
    z-index: 1;
    pointer-events: none;
  }

  &:hover,
  &:focus-visible {
    transform: translateY(-6px);
    box-shadow: 0 28px 50px rgba(22, 22, 27, 0.16);
    color: #fff;

    img {
      transform: scale(1.1);
    }
  }

  &--featured {
    min-height: 420px;

    .service-card-content {
      padding: 36px;

      h4 {
        font-size: clamp(2rem, 3vw, 3.1rem);
        max-width: 12ch;
      }

      p {
        display: block;
        max-width: 42ch;
      }
    }

    @media (min-width: 992px) {
      min-height: 640px;
    }
  }

  &.flex-fill {
    @media (min-width: 992px) {
      min-height: 0;
    }
  }

  .service-card-content {
    position: relative;
    z-index: 2;
    padding: 28px;
    h4 {
      margin: 0;
      color: #fff;
      font-size: 26px;
      font-weight: 700;
      line-height: 1.2;
      letter-spacing: -0.03em;
    }
    p {
      display: none;
      margin: 12px 0 0;
      color: rgba(255, 255, 255, 0.78);
      font-size: 15px;
      line-height: 1.65;
    }
  }

  .service-card-tag {
    display: inline-flex;
    align-self: flex-start;
    margin-bottom: 14px;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(12, 12, 14, 0.55);
    backdrop-filter: blur(10px);
    color: rgba(255, 255, 255, 0.88);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    line-height: 1;
  }

  .service-card-metrics {
    margin-top: 22px;
  }

  .service-metric {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 120px;
    padding: 12px 14px;
    border-radius: 16px;
    background: rgba(18, 18, 20, 0.58);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    strong {
      color: #fff;
      font-size: 22px;
      font-weight: 800;
      line-height: 1;
      letter-spacing: -0.03em;
    }
    span {
      color: rgba(255, 255, 255, 0.7);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }
  }
}

[dir="rtl"] {
  .service-card-content h4 {
    letter-spacing: 0;
  }
  .service-card-tag,
  .service-metric span {
    letter-spacing: 0.04em;
    text-transform: none;
  }
}

/* ========================================
   Why Choose Us
======================================== */
.why-section {
  position: relative;
  background-color: var(--section-bg-alt);
  overflow: hidden;
}

/* Left Visual Composition */
.why-visual-card {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 480px;
  border-radius: 36px;
  overflow: hidden;
  box-shadow: 0 25px 60px rgba(22, 22, 27, 0.12);
  border: 1px solid rgba(0, 0, 0, 0.05);
  .why-visual-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.03);
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
  }
  .why-visual-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(17, 17, 22, 0.75) 0%,
      rgba(17, 17, 22, 0.2) 50%,
      transparent 100%
    );
    pointer-events: none;
  }
  &:hover .why-visual-img {
    transform: scale(1.08);
  }
  @media (max-width: 991.98px) {
    min-height: 380px;
  }
  @media (max-width: 575.98px) {
    min-height: 300px;
    border-radius: 24px;
  }
}

/* Floating Glass Badges on Image */
.why-floating-badge {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 12px 20px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.8);
  transition: all 0.4s ease;
  &.badge-top {
    top: 30px;
    inset-inline-start: 30px;
    animation: floatSlow1 4s ease-in-out infinite;
  }
  &.badge-bottom {
    bottom: 30px;
    inset-inline-end: 30px;
    animation: floatSlow2 4.5s ease-in-out infinite;
  }
  .badge-icon-box {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 6px 16px rgba(241, 138, 29, 0.35);
    flex-shrink: 0;
    &.success {
      background: linear-gradient(135deg, #10b981 0%, #059669 100%);
      box-shadow: 0 6px 16px rgba(16, 185, 129, 0.35);
    }
  }
  .badge-text-box {
    display: flex;
    flex-direction: column;
    strong {
      font-size: 16px;
      font-weight: 800;
      color: #16161b;
      line-height: 1.2;
    }
    span {
      font-size: 12px;
      color: #666670;
      font-weight: 500;
    }
  }
  @media (max-width: 575.98px) {
    gap: 10px;
    padding: 8px 12px;
    &.badge-top,
    &.badge-bottom {
      inset-inline-start: 12px;
      inset-inline-end: auto;
    }
    &.badge-top {
      top: 12px;
    }
    &.badge-bottom {
      bottom: 12px;
    }
  }
}

@keyframes floatSlow1 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

@keyframes floatSlow2 {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Right Feature Bento Cards */
.why-feature-card {
  position: relative;
  height: 100%;
  padding: 34px 28px;
  background: var(--white-color);
  border-radius: 28px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.03);
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;

  &::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 10% 10%, rgba(241, 138, 29, 0.08) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
  }

  &:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 45px rgba(241, 138, 29, 0.12);
    border-color: rgba(241, 138, 29, 0.3);

    &::before {
      opacity: 1;
    }

    .why-feature-icon {
      background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
      color: #ffffff;
      transform: scale(1.1) rotate(6deg);
      box-shadow: 0 10px 24px rgba(241, 138, 29, 0.4);
    }
  }

  h4 {
    font-size: 19px;
    font-weight: 700;
    color: #16161b;
    margin-bottom: 12px;
    line-height: 1.3;
  }
  p {
    font-size: 14.5px;
    color: #666670;
    line-height: 1.65;
    margin: 0;
  }
  .why-feature-icon {
    width: 58px;
    height: 58px;
    border-radius: 18px;
    background: #f4efe8;
    color: var(--main-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 22px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  }
}

/* ========================================
   Contact
======================================== */
.contact-card {
  position: relative;
  border-radius: 36px;
  background-color: var(--cream);
  overflow: hidden;
  box-shadow: 0 25px 65px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(0, 0, 0, 0.1);
  > .row {
    --bs-gutter-x: 0;
  }
  .contact-card-info {
    position: relative;
    background: #152028;
    padding: 64px 52px;
    overflow: hidden;
    border-radius: 36px;
    &::after {
      content: "";
      position: absolute;
      bottom: -25%;
      left: -20%;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      border: 36px solid rgba(255, 255, 255, 0.04);
      pointer-events: none;
    }
    h2 {
      font-weight: 800;
      font-size: clamp(2.1rem, 3.5vw, 2.9rem);
      line-height: 1.15;
      color: var(--white-color);
      margin-bottom: 22px;
      letter-spacing: -0.5px;
    }
    > p {
      color: rgba(255, 255, 255, 0.72);
      font-size: 15.5px;
      line-height: 1.65;
      margin-bottom: 38px;
      max-width: 440px;
    }
  }
  .contact-eyebrow {
    color: #F18A1D;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 2.2px;
    text-transform: uppercase;
  }
  .contact-eyebrow-line {
    width: 26px;
    height: 2px;
    background: #F18A1D;
    flex-shrink: 0;
  }
  .contact-checks {
    li {
      color: rgba(255, 255, 255, 0.92);
      font-size: 15px;
      font-weight: 500;
    }
    i {
      color: #F18A1D;
      font-size: 14px;
      width: 18px;
      flex-shrink: 0;
    }
  }
  .contact-card-form {
    padding: 64px 56px;
    border-radius: 36px 0 36px 0;
    label {
      display: block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 1.4px;
      text-transform: uppercase;
      color: #2c2c34;
      margin-bottom: 10px;
    }
    .form-control,
    .form-select {
      width: 100%;
      padding: 16px 20px;
      border: 1px solid transparent;
      border-radius: 14px;
      outline: none;
      background: white;
      color: #16161b;
      font-size: 14.5px;
      font-family: inherit;
      box-shadow: none;
      transition: all 0.3s ease;
    }
    .form-control::placeholder {
      color: #8e8e96;
    }
    .form-control:focus,
    .form-select:focus {
      border-color: #F18A1D;
      background: var(--white-color);
      box-shadow: 0 0 0 4px rgba(241, 138, 29, 0.15);
    }
    .form-select {
      min-height: 54px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%2316161b' d='M1.4 0L6 4.6 10.6 0 12 1.4 6 7.4 0 1.4z'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: right 20px center;
      padding-inline-end: 44px;
    }
    textarea.form-control {
      min-height: 125px;
      resize: vertical;
    }
  }
  .contact-submit-button {
    margin-top: 10px;
    padding: 18px 36px;
    border: none;
    border-radius: 50px;
    background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
    color: var(--white-color);
    font-size: 16px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    box-shadow: 0 12px 28px rgba(241, 138, 29, 0.35);
    i {
      font-size: 14px;
      transition: transform 0.3s ease;
    }
    &:hover {
      transform: translateY(-3px) scale(1.01);
      box-shadow: 0 18px 40px rgba(241, 138, 29, 0.5);
      color: var(--white-color);
      i {
        transform: translateX(4px);
      }
    }
  }
  .contact-disclaimer {
    font-size: 13px;
    color: var(--text-muted);
  }
}

[dir="rtl"] {
  .contact-card-form .form-select {
    background-position: left 18px center;
  }
  .contact-submit-button {
    i {
      transform: scaleX(-1);
    }
    &:hover i {
      transform: scaleX(-1) translateX(4px);
    }
  }
}

/* ========================================
   Footer
======================================== */
.footer-cta-section {
  position: relative;
  z-index: 3;
  margin-bottom: -115px;
}

.footer-cta {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  min-height: 286px;
  padding: 28px 68px;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 42%, #E65100 100%);
  border-radius: 32px;
  overflow: hidden;
  color: var(--white-color);
  box-shadow: 0 25px 50px -10px rgba(241, 138, 29, 0.45), 0 12px 24px -6px rgba(230, 81, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.28);
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  
  &::before {
    content: "";
    position: absolute;
    top: -40%;
    left: -20%;
    width: 70%;
    height: 180%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.22) 0%, transparent 65%);
    pointer-events: none;
  }
  .footer-cta-content {
    position: relative;
    z-index: 2;
    max-width: 540px;
    h2 {
      color: var(--white-color);
      font-size: clamp(2.1rem, 3.8vw, 3.4rem);
      font-weight: 800;
      line-height: 1.12;
      letter-spacing: -0.5px;
      margin-bottom: 32px;
      text-shadow: 0 2px 10px rgba(0, 0, 0, 0.08);
    }
  }
  .footer-cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 18px;
    border-radius: 50px;
    background: rgba(255, 255, 255, 0.16);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    font-size: 13px;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 22px;
  }
  .footer-cta-badge-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #ffffff;
    box-shadow: 0 0 10px #ffffff;
    animation: pulseDot 2s infinite ease-in-out;
  }
  .footer-cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 16px;
    background: #ffffff;
    color: #16161b;
    border-radius: 60px;
    padding: 10px 10px 10px 30px;
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 0.2px;
    transition: all 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 14px 35px rgba(0, 0, 0, 0.22), 0 0 0 4px rgba(255, 255, 255, 0.25);
    border: 2px solid rgba(255, 255, 255, 0.9);
    overflow: hidden;
    z-index: 1;
    &::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(135deg, #16161b 0%, #252530 100%);
      opacity: 0;
      z-index: -1;
      transition: opacity 0.4s ease;
    }
    .footer-cta-btn-icon {
      width: 48px;
      height: 48px;
      border-radius: 50%;
      background: #16161b;
      color: #ffffff;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
      box-shadow: 0 4px 14px rgba(0, 0, 0, 0.2);
      i {
        font-size: 16px;
        transform: rotate(45deg);
        transition: transform 0.4s ease;
      }
    }
    &:hover {
      color: #ffffff;
      transform: translateY(-5px) scale(1.04);
      box-shadow: 0 20px 45px rgba(0, 0, 0, 0.35), 0 0 0 6px rgba(255, 255, 255, 0.4);
      border-color: #ffffff;
      &::before {
        opacity: 1;
      }
      .footer-cta-btn-icon {
        background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
        color: #ffffff;
        transform: rotate(45deg) scale(1.12);
        box-shadow: 0 0 20px rgba(255, 158, 27, 0.7);
      }
    }
  }
  .footer-cta-visual {
    position: absolute;
    inset-inline-end: 0;
    top: 0;
    bottom: 0;
    width: 48%;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    pointer-events: none;
  }
  .footer-cta-gradient-glow {
    position: absolute;
    inset: -10%;
    background: radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.25) 0%, transparent 60%);
  }
  .footer-cta-waves {
    position: absolute;
    inset: 0;
    opacity: 0.9;
    svg {
      width: 100%;
      height: 100%;
    }
  }
  .footer-cta-logo-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-inline-end: 40px;
  }
  .footer-cta-logo-card {
    width: 240px;
    height: 130px;
    padding: 18px 22px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(16px);
    border-radius: 24px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15), inset 0 1px 0 rgba(255, 255, 255, 1);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-3deg);
    transition: var(--transition);
    img {
      max-width: 100%;
      max-height: 100%;
      object-fit: contain;
    }
  }
  .footer-cta-floating-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    border-radius: 50px;
    background: #ffffff;
    color: #16161b;
    font-size: 12.5px;
    font-weight: 700;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.15);
    white-space: nowrap;
    i {
      color: var(--main-color);
      font-size: 14px;
    }
    &.badge-1 {
      top: -24px;
      left: -40px;
      animation: floatBadge1 3.5s ease-in-out infinite;
    }
    &.badge-2 {
      bottom: -24px;
      right: -30px;
      animation: floatBadge2 4s ease-in-out infinite;
    }
  }
}

@keyframes pulseDot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.4); opacity: 0.6; }
}

@keyframes floatBadge1 {
  0%, 100% { transform: translateY(0) rotate(-2deg); }
  50% { transform: translateY(-8px) rotate(2deg); }
}

@keyframes floatBadge2 {
  0%, 100% { transform: translateY(0) rotate(2deg); }
  50% { transform: translateY(-10px) rotate(-2deg); }
}

.footer {
  position: relative;
  background-color: #f8f9fa;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(241, 138, 29, 0.1),
    rgba(241, 138, 29, 0.1) 1px,
    transparent 1px,
    transparent 14px
  );
  color: #4a4a52;
  padding: 170px 0 28px;
  font-size: 15px;
  overflow: hidden;
}

.footer h4 {
  color: #16161b;
  font-weight: 700;
  font-size: 19px;
  margin-bottom: 24px;
}

.footer-main {
  position: relative;
  z-index: 1;
  padding-bottom: 48px;
}

.footer-brand {
  display: inline-block;
  margin-bottom: 12px;
}

.footer-logo {
  height: 56px;
  width: auto;
  max-width: 220px;
  object-fit: contain;
  margin-bottom: 16px;
}

.footer-text {
  max-width: 320px;
  margin: 0 0 24px;
  color: #55555e;
  font-size: 14px;
  line-height: 1.7;
}

/* Award Wreath Badges */
.footer-awards {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-award-badge {
  position: relative;
  width: 100px;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--main-color);
}

.award-wreath-svg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  color: var(--main-color);
  opacity: 0.9;
}

.award-info {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 4px;
}

.award-num {
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
  color: #16161b;
}

.award-text {
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  color: #55555e;
  line-height: 1.2;
  margin-top: 2px;
}

.footer-links-list li {
  margin-bottom: 14px;
}

.footer-links-list a {
  color: #55555e;
  font-size: 14.5px;
  font-weight: 400;
  transition: var(--transition);
}

.footer-links-list a:hover {
  color: var(--main-color);
  padding-inline-start: 4px;
}

.footer-new {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 2px 7px;
  border-radius: 10px;
  background: var(--main-color);
  color: #ffffff;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

/* Social Media Column (Replacing Newsletter) */
.footer-social-list li {
  margin-bottom: 12px;
}

.footer-social-list a {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 8px 18px 8px 10px;
  border-radius: 40px;
  background: #ffffff;
  border: 1px solid rgba(0, 0, 0, 0.07);
  color: #3d3d46;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
  overflow: hidden;
  z-index: 1;
}

.footer-social-list a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.footer-social-list a:hover {
  color: #ffffff;
  transform: translateX(6px) translateY(-2px);
  box-shadow: 0 10px 24px rgba(241, 138, 29, 0.35);
  border-color: transparent;
}

.footer-social-list a:hover::before {
  opacity: 1;
}

.footer-social-badge {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  background: #f4efe8;
  color: var(--main-color);
  transition: all 0.4s ease;
  flex-shrink: 0;
}

.footer-social-list a:hover .footer-social-badge {
  background: #ffffff;
  color: var(--main-color);
  transform: scale(1.12) rotate(10deg);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.footer-social-list a:hover .footer-social-badge.facebook { color: #1877f2 !important; }
.footer-social-list a:hover .footer-social-badge.instagram { color: #e4405f !important; }
.footer-social-list a:hover .footer-social-badge.twitter { color: #000000 !important; }
.footer-social-list a:hover .footer-social-badge.linkedin { color: #0a66c2 !important; }
.footer-social-list a:hover .footer-social-badge.whatsapp { color: #25d366 !important; }

/* Footer Bottom Bar */
.footer-bottom {
  position: relative;
  z-index: 1;
  padding-top: 28px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
  font-size: 14px;
}

.footer-contact-item {
  color: #16161b;
  font-weight: 600;
  font-size: 14.5px;
  transition: var(--transition);
}

.footer-contact-item:hover {
  color: var(--main-color);
}

.footer-bottom-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--main-color);
  background-image: linear-gradient(135deg, #FF9E1B 0%, #E65100 100%);
  color: var(--white-color);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  box-shadow: 0 4px 10px rgba(241, 138, 29, 0.3);
}

.footer-copy {
  color: #55555e;
  font-size: 13.5px;
}

.footer-top-btn {
  position: relative;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #ffffff;
  border: 1px solid #e2e4e8;
  color: #16161b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  cursor: pointer;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.05);
  overflow: hidden;
  z-index: 1;
}

.footer-top-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
  opacity: 0;
  z-index: -1;
  transition: opacity 0.4s ease;
}

.footer-top-btn:hover {
  color: #ffffff;
  border-color: transparent;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 10px 25px rgba(241, 138, 29, 0.45);
}

.footer-top-btn:hover::before {
  opacity: 1;
}

/* RTL overrides for Footer */
[dir="rtl"] {
  .footer-cta-btn {
    padding: 8px 24px 8px 8px;
    .footer-cta-btn-icon i {
      transform: rotate(-45deg);
    }
  }
  .footer-links-list a:hover {
    padding-inline-start: 0;
    padding-inline-end: 4px;
  }
  .footer-social-list a:hover {
    transform: translateX(-4px);
  }
}

/* ========================================
   Floating UI
======================================== */
.back-to-top {
  position: fixed;
  bottom: 30px;
  inset-inline-end: 30px;
  z-index: 999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);

  &.show {
    opacity: 1;
    visibility: visible;
  }

  .back-to-top-btn {
    width: 52px;
    height: 52px;
    background-color: var(--main-color);
    color: var(--white-color);
    border: 3px solid var(--white-color);
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(241, 138, 29, 0.35);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    cursor: pointer;
    transition: var(--transition);

    &:hover {
      background-color: #ff7f3a;
      color: var(--white-color);
      transform: translateY(-3px);
      box-shadow: 0 12px 28px rgba(241, 138, 29, 0.45);
    }
  }
}

.floating-actions {
  position: fixed;
  inset-inline-start: 30px;
  bottom: 30px;
  z-index: 999;
}

.floating-btn {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  background-color: var(--main-color);
  color: var(--white-color);
  border: 3px solid var(--white-color);
  box-shadow: 0 8px 22px rgba(241, 138, 29, 0.35);
  transition: var(--transition);

  &:hover {
    background-color: #e65100;
    color: var(--white-color);
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 12px 28px rgba(241, 138, 29, 0.45);
  }

  &.floating-btn-whatsapp,
  &.floating-btn-phone {
    background-color: var(--main-color);
    color: var(--white-color);
  }
}

.pagination {
  .page-item.active .page-link {
    background: var(--main-color);
    border-color: var(--main-color);
    color: var(--white-color);
  }
}

/* ========================================
   Clients / Trusted By
======================================== */
.clients-section {
  background-color: #111116;
  background-image: repeating-linear-gradient(
    -45deg,
    rgba(241, 138, 29, 0.03),
    rgba(241, 138, 29, 0.03) 1px,
    transparent 1px,
    transparent 14px
  );
  padding: 85px 0 0;
  overflow: hidden;
  color: var(--white-color);
  .clients-title {
    color: var(--white-color);
    font-size: clamp(1.4rem, 2.8vw, 2.2rem);
    font-weight: 700;
    line-height: 1.4;
  }
  .clients-badge {
    background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
    color: #ffffff;
    padding: 4px 18px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 0.88em;
    box-shadow: 0 6px 20px rgba(241, 138, 29, 0.4);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    letter-spacing: 0.5px;
  }
  .clients-slider-container {
    width: 100%;
    overflow: hidden;
    position: relative;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 10px 0;
    &::before,
    &::after {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      width: 120px;
      z-index: 2;
      pointer-events: none;
    }
    &::before {
      left: 0;
      background: linear-gradient(to right, #111116 0%, transparent 100%);
    }
    &::after {
      right: 0;
      background: linear-gradient(to left, #111116 0%, transparent 100%);
    }
    &:hover .clients-slider-track {
      animation-play-state: paused;
    }
  }
  .clients-slider-track {
    display: flex;
    align-items: center;
    width: max-content;
    animation: marqueeScroll 20s linear infinite;
  }
  .client-slider-item {
    flex: 0 0 240px;
    width: 240px;
    height: 130px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px 32px;
    border-inline-end: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    background: transparent;
    img {
      max-width: 100%;
      max-height: 52px;
      object-fit: contain;
      filter: brightness(0) invert(1);
      opacity: 0.65;
      transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    }
    &:hover {
      background: rgba(241, 138, 29, 0.08);
      img {
        opacity: 1;
        filter: none;
        transform: scale(1.12);
      }
    }
  }
}

@keyframes marqueeScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

[dir="rtl"] {
  .clients-slider-track {
    animation: marqueeScrollRtl 20s linear infinite;
  }
}

@keyframes marqueeScrollRtl {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(50%);
  }
}

/* ========================================
   Service & Blog details
======================================== */
.details-article {
  background: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 28px;
  box-shadow: var(--shadow-premium);
}

.details-hero {
  img {
    width: 100%;
    height: clamp(240px, 38vw, 420px);
    object-fit: cover;
    display: block;
  }
}

.details-pill {
  position: absolute;
  inset-inline-start: 24px;
  bottom: 24px;
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, #FF9E1B 0%, #F18A1D 50%, #E65100 100%);
  color: #fff;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.details-body {
  padding: 2rem 2rem 2.2rem;

  p {
    color: var(--text-muted);
    line-height: 1.85;
    margin-bottom: 1rem;
  }

  h3 {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 1.5rem 0 0.8rem;
    color: var(--text-color);
  }

  @media (max-width: 575.98px) {
    padding: 1.4rem 1.2rem 1.6rem;
  }
}

.details-title {
  font-size: clamp(1.6rem, 2.4vw, 2.15rem);
  font-weight: 800;
  margin-bottom: 1rem;
  line-height: 1.25;
}

.details-quote {
  margin: 1.4rem 0;
  padding: 1.1rem 1.2rem;
  border-radius: 18px;
  background: rgba(241, 138, 29, 0.08);
  border: 1px solid rgba(241, 138, 29, 0.18);

  .details-quote-label {
    display: block;
    color: var(--main-color);
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
  }

  p {
    margin: 0;
    color: var(--text-color);
    font-weight: 500;
  }
}

.details-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0 0 0.5rem;

  li {
    position: relative;
    padding-inline-start: 28px;
    color: var(--text-muted);
    line-height: 1.7;
    list-style: none !important;

    &::before {
      content: "";
      position: absolute;
      inset-inline-start: 0;
      top: 9px;
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--main-color);
    }
  }
}

.details-step {
  padding: 1.1rem 1.15rem;
  border-radius: 18px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--section-bg-alt);

  h4 {
    font-size: 1rem;
    font-weight: 700;
    margin: 0 0 0.4rem;
  }

  p {
    margin: 0;
    font-size: 0.92rem;
  }
}

.details-step-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  margin-bottom: 0.7rem;
  color: var(--main-color);
  background: rgba(241, 138, 29, 0.12);
}

.details-cta {
  margin-top: 2rem;
  padding: 1.3rem 1.4rem;
  border-radius: 22px;
  background: #111116;
  color: #fff;

  h3 {
    color: #fff;
    margin: 0;
  }

  p {
    color: rgba(255, 255, 255, 0.72);
  }
}

.details-side-card {
  padding: 1.4rem 1.35rem;
  border-radius: 24px;
  background: var(--white-color);
  border: 1px solid rgba(0, 0, 0, 0.06);
  box-shadow: var(--shadow-sm);

  h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1rem;
  }

  p {
    color: var(--text-muted);
    line-height: 1.7;
  }
}

.details-related {
  padding: 10px 0;
  border-bottom: 1px solid var(--border-color);
  color: var(--text-color);
  font-weight: 600;
  transition: var(--transition);

  img {
    width: 64px;
    height: 52px;
    object-fit: cover;
    border-radius: 12px;
    flex-shrink: 0;
  }

  &:last-child {
    border-bottom: 0;
    padding-bottom: 0;
  }

  &:hover {
    color: var(--main-color);
  }
}

.details-chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 12px;
  border-radius: 999px;
  background: var(--section-bg-alt);
  color: var(--text-muted);
  font-size: 0.82rem;
  font-weight: 600;

  i {
    color: var(--main-color);
  }
}

[dir="rtl"] {
  .details-quote-label {
    letter-spacing: 0.4px;
    text-transform: none;
  }
}
