/* ═══════════════════════════════════════════
   ALMASAYEL – WIDGETS CSS
   All Elementor widget styles
   ═══════════════════════════════════════════ */

/* ──────────────────────────────────────────
   1. HERO SLIDER
────────────────────────────────────────── */
.alm-hero {
  position: relative;
  overflow: hidden;
  background: var(--alm-off-white);
  min-height: var(--alm-hero-min-h, 580px);
}

/* Swiper fade stacks slides absolutely — wrapper needs explicit height */
.alm-hero-swiper {
  width: 100%;
  height: var(--alm-hero-min-h, 580px);
  min-height: var(--alm-hero-min-h, 580px);
}

.alm-hero-swiper .swiper-wrapper {
  height: 100%;
  min-height: 100%;
}

.alm-hero-swiper .swiper-slide {
  height: 100% !important;
  min-height: 100%;
}

.alm-hero-slide {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 100%;
  min-height: 100%;
  overflow: hidden;
}

.alm-hero-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  min-height: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  transition: transform 6s ease;
  z-index: 0;
  transform-origin: center center;
}

.alm-hero-swiper .swiper-slide-active .alm-hero-bg {
  transform: scale(1.06);
}

/*
.alm-hero-title,
.alm-hero-desc,
.alm-hero-eyebrow {
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.92), 0 1px 3px rgba(0, 0, 0, 0.35);
}
*/

.alm-hero-content-wrap {
  position: relative;
  z-index: 2;
  width: 100%;
}

.alm-hero-inner {
  max-width: var(--alm-max-w);
  margin: 0 auto;
  padding: 130px var(--alm-px) 80px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 60px;
}

.alm-hero-text {}

.alm-hero-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
    color: #E8C97A;
background: rgb(249 242 223);
padding: 5px 14px;
  border-radius: 20px;
  margin-bottom: 20px;
}

.alm-hero-title {
  font-size: 30px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 20px;
}

.alm-hero-title em {
  font-style: normal;
    color: #3359A5;
    
}

.alm-hero-desc {
  font-size: 1rem;
    color: #c9c9c9;
    line-height: 1.7;
  margin-bottom: 36px;
  max-width: 480px;
}

.alm-hero-btns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.alm-hero-image {
  display: flex;
  align-items: center;
  justify-content: center;
}

.alm-hero-image img {
  max-height: 420px;
  width: auto;
  object-fit: contain;
  filter: drop-shadow(0 20px 60px rgba(27,60,107,0.15));
  animation: alm-float 5s ease-in-out infinite;
}

@keyframes alm-float {
  0%, 100% { transform: translateY(0); }
  50%       { transform: translateY(-12px); }
}

/* Swiper Dots */
.alm-hero .swiper-pagination {
  bottom: 24px;
}

.alm-hero .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--alm-primary);
  opacity: 0.3;
  transition: var(--alm-transition);
}

.alm-hero .swiper-pagination-bullet-active {
  opacity: 1;
  width: 28px;
  border-radius: 4px;
}

/* Swiper Nav */
.alm-hero .swiper-button-next,
.alm-hero .swiper-button-prev {
  width: 44px;
  height: 44px;
  background: var(--alm-white);
  border-radius: 50%;
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
  color: var(--alm-primary);
  transition: var(--alm-transition);
}

.alm-hero .swiper-button-next:hover,
.alm-hero .swiper-button-prev:hover {
  background: var(--alm-primary);
  color: var(--alm-white);
}

.alm-hero .swiper-button-next::after,
.alm-hero .swiper-button-prev::after {
  font-size: 14px;
  font-weight: 700;
}

/* ──────────────────────────────────────────
   2. ABOUT SECTION
────────────────────────────────────────── */
.alm-about {
  background: var(--alm-white);
  padding-bottom: 0;
}

.alm-about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
  align-items: start;
}

/* Reverse order – image on the right */
.alm-about-inner--reverse .alm-about-images { order: 2; }
.alm-about-inner--reverse .alm-about-text   { order: 1; }

/* Single image */
.alm-about-images {
  position: relative;
}



/* Option: make the image match the text column height */
.alm-about-inner--match-height {
  align-items: stretch;
}

.alm-about-inner--match-height .alm-about-images {
  height: 100%;
}

.alm-about-inner--match-height .alm-about-images--single {
  aspect-ratio: auto;
  height: 100%;
  min-height: 360px;
}

.alm-about-img-item {
  border-radius: var(--alm-radius-lg);
  overflow: hidden;
  width: 100%;
  height: 100%;
}

.alm-about-img-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alm-about-img-item:hover img {
  transform: scale(1.05);
}

/* About text */
.alm-about-text {}

.alm-about-body {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.alm-about-body p {
  font-size: 0.95rem;
  color: var(--alm-gray-600);
  line-height: 1.75;
}

.alm-about-divider {
  border: none;
  border-top: 1.5px dashed var(--alm-gray-200);
  margin: 6px 0;
  width: 100%;
}

/* About Us page only (page ID 73) */
.page-id-73 .alm-about-body p {
  font-size: 13px;
}

.page-id-73 .alm-about-body {
  gap: 16px;
}

.alm-about-cta {
  margin-top: 12px;
}

/* ──────────────────────────────────────────
   VISION & MISSION
────────────────────────────────────────── */
.alm-vm {
  background: #FAFAFA;
  width: 99vw;
  max-width: 100vw;
  margin-left: calc(50% - 49.5vw);
  margin-right: calc(50% - 49.5vw);
}

.alm-vm-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}

.alm-vm-header .alm-eyebrow {
  margin-bottom: 14px;
}

.alm-vm-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 920px;
  margin: 0 auto;
}

.alm-vm-card {
  background: #FFFFFF;
  border: 1.5px solid var(--alm-gray-200);
  border-radius: var(--alm-radius-lg);
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: var(--alm-transition);
}

.alm-vm-card:hover {
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--alm-primary);
}

.alm-vm-icon {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.alm-vm-icon svg {
  width: 26px;
  height: 26px;
}

.alm-vm-icon img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

.alm-vm-icon--primary {
  background: var(--alm-primary);
  color: var(--alm-white);
}

.alm-vm-icon--accent {
  background: rgba(212,168,67,0.15);
  color: var(--alm-accent);
}

.alm-vm-card-title {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--alm-dark);
}

.alm-vm-card-text {
  font-size: 0.9rem;
  line-height: 1.75;
  color: var(--alm-gray-600);
}

/* ──────────────────────────────────────────
   TARGET CUSTOMERS
────────────────────────────────────────── */
.alm-target-customers {
  background: var(--alm-white);
}

.alm-target-customers-header {
  margin-bottom: 40px;
}

.alm-target-customers-title {
  font-size: clamp(1.5rem, 2.8vw, 2rem);
  font-weight: 700;
  color: var(--alm-dark);
  line-height: 1.3;
  max-width: 100%;
}

.alm-target-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.alm-target-card {
  background: var(--alm-white);
  border: 1px solid var(--alm-gray-200);
  border-radius: var(--alm-radius-lg);
  padding: 28px 26px 30px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  gap: 14px;
  box-shadow: 0 2px 14px rgba(27, 60, 107, 0.04);
  transition: var(--alm-transition);
  height: 100%;
}

.alm-target-card:hover {
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-3px);
  border-color: rgba(27, 60, 107, 0.15);
}

.alm-target-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--alm-primary);
  border: 1.5px solid var(--alm-primary);
  border-radius: 50%;
  padding: 8px;
}

.alm-target-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}

.alm-target-icon img {
  width: 22px;
  height: 22px;
  object-fit: contain;
}

.alm-target-card-title {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--alm-dark);
  line-height: 1.35;
}

.alm-target-card-text {
  font-size: 0.875rem;
  line-height: 1.7;
  color: var(--alm-gray-600);
  margin: 0;
}

/* ──────────────────────────────────────────
   3. BRANDS SECTION
────────────────────────────────────────── */
.alm-brands {
  background: var(--alm-white);
  padding: 0 0 40px;

}


@media (max-width: 767px) {
  .alm-brands {

  margin-top: 30px;
  }
}

.alm-brands-header {
  text-align: center;
  margin-bottom: 40px;
}

.alm-brands-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 24px;
}

.alm-brand-item {
  flex: 0 0 auto;
  background: var(--alm-white);
  border: 1.5px solid var(--alm-gray-200);
  border-radius: var(--alm-radius-lg);
  padding: 28px 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 180px;
  transition: var(--alm-transition);
  box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.alm-brand-item:hover {
  border-color: var(--alm-primary);
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-4px);
}

.alm-brand-item img {
  max-height: 92px;
  max-width: 140px;
  width: auto;
  object-fit: contain;
  filter: grayscale(20%);
  transition: filter var(--alm-transition);
}

.alm-brand-item:hover img {
  filter: grayscale(0%);
}

.alm-brand-item {
  flex-direction: column;
  gap: 12px;
}

.alm-brand-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--alm-primary);
  text-align: center;
}

/* ──────────────────────────────────────────
   3b. CATEGORIES SECTION (square cards + carousel)
────────────────────────────────────────── */
.alm-categories {
  background: var(--alm-white);
  padding: 0 0 40px;
}

.alm-categories-header {
  text-align: center;
  margin-bottom: 40px;
}

.alm-categories-grid {
  display: grid;
  gap: 20px;
}

.alm-categories-wrap {
  position: relative;
}

.alm-categories-wrap--carousel {
  padding: 0 52px;
}

.alm-categories-swiper {
  overflow: hidden;
  padding: 4px 0 8px;
}

.alm-categories-swiper .swiper-slide {
  height: auto;
}

.alm-categories-swiper .swiper-pagination {
  position: relative;
  margin-top: 20px;
}

.alm-categories-swiper .swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  background: var(--alm-gray-300, #d1d5db);
  opacity: 1;
}

.alm-categories-swiper .swiper-pagination-bullet-active {
  background: var(--alm-primary);
  width: 22px;
  border-radius: 4px;
}

.alm-categories-nav {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 2;
}

.alm-categories-nav .alm-swiper-prev,
.alm-categories-nav .alm-swiper-next {
  pointer-events: auto;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
}

.alm-categories-nav .alm-swiper-prev { left: 0; }
.alm-categories-nav .alm-swiper-next { right: 0; }

.alm-cat-card {
  display: block;
  position: relative;
  aspect-ratio: 1 / 1.1;
  border-radius: var(--alm-radius-lg);
  overflow: hidden;
  border: 1.5px solid var(--alm-gray-200);
  background: var(--alm-light-gray);
  transition: var(--alm-transition);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.04);
}

.alm-cat-card:hover {
  border-color: var(--alm-primary);
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-4px);
}

.alm-cat-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.45s ease;
}

.alm-cat-card:hover img {
  transform: scale(1.05);
}

.alm-cat-card-fallback {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  padding: 16px;
  text-align: center;
  font-size: 1rem;
  font-weight: 700;
  color: var(--alm-primary);
}

.alm-cat-card-name {
  position: absolute;
  inset-inline: 0;
  bottom: 0;
  padding: 18px 14px 14px;
  background: linear-gradient(to top, rgba(17, 24, 39, 0.78) 0%, transparent 100%);
  color: var(--alm-white);
  font-size: 0.875rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-align: center;
  line-height: 1.3;
}

/* ──────────────────────────────────────────
   4. SERVICES SECTION
────────────────────────────────────────── */
.alm-services {
  background: var(--alm-white);
}

.alm-services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 48px;
}

.alm-services-header-right {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
}

.alm-services-slider-wrap {
  position: relative;
}

.alm-services-slider-wrap--carousel {
  padding: 0;
}

.alm-services-swiper {
  overflow: hidden;
  padding-bottom: 8px;
}

.alm-services-slider-wrap--carousel .alm-services-swiper {
  overflow: hidden;
}

/* Services grid (Services Page widget) */
.alm-services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.alm-service-card {
  position: relative;
  background: #FAFAFA;
  border-radius: var(--alm-radius-lg);
    padding: 24px 25px 28px;
    box-shadow: 0 2px 16px rgba(27,60,107,0.04);
  transition: var(--alm-transition);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 18px;
  border: none;
}

.alm-service-card::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1.5px dashed #D9E6FF;
  border-radius: var(--alm-radius);
  pointer-events: none;
  transition: var(--alm-transition);
}

.alm-service-card:hover {
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-4px);
}

.alm-service-card:hover::before {
  border-color: var(--alm-primary);
  border-style: solid;
}

.alm-service-icon {
  width: 110px;
  height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--alm-primary);
  margin-bottom: 4px;
}

.alm-service-icon img,
.alm-service-icon svg {
  width: 100%;
  height: 100%;
  max-width: 110px;
  max-height: 76px;
  object-fit: contain;
}

.alm-service-card h3 {
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--alm-primary);
  line-height: 1.35;
}

.alm-service-card p {
  font-size: 0.875rem;
  color: var(--alm-gray-600);
  line-height: 1.7;
  flex: 1;
}

/* Services slider nav – arrows on the sides, vertically centered */
.alm-services-nav {
  pointer-events: none;
}

.alm-services-nav .alm-swiper-prev,
.alm-services-nav .alm-swiper-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 5;
  pointer-events: auto;
}

.alm-services-nav .alm-swiper-prev {
  left: -56px;
}

.alm-services-nav .alm-swiper-next {
  right: -56px;
}

.alm-swiper-prev,
.alm-swiper-next {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--alm-primary);
  border: none;
  color: var(--alm-white);
  cursor: pointer;
  transition: var(--alm-transition);
  flex-shrink: 0;
  box-shadow: 0 4px 14px rgba(27,60,107,0.18);
}

.alm-swiper-prev:hover,
.alm-swiper-next:hover {
  background: #15305a;
  color: var(--alm-white);
}

/* Disabled = grey (e.g. prev at start / next at end) */
.alm-swiper-prev.swiper-button-disabled,
.alm-swiper-next.swiper-button-disabled {
  background: #e5e7eb;
  color: #9aa3b2;
  box-shadow: none;
  cursor: not-allowed;
  pointer-events: none;
  opacity: 1;
}

/* Hide arrows entirely when all slides fit (4 or fewer) */
.alm-swiper-prev.swiper-button-lock,
.alm-swiper-next.swiper-button-lock {
  display: none;
}

.alm-swiper-prev svg,
.alm-swiper-next svg {
  width: 18px;
  height: 18px;
}

/* ──────────────────────────────────────────
   5. PRODUCTS SECTION
────────────────────────────────────────── */
.alm-products {
  background: #FAFAFA;
}

.alm-products-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: end;
  margin-bottom: 32px;
}

/* Brand tabs */
.alm-products-tabs {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 32px;
}

.alm-tab-btn {
  padding: 8px 22px;
  border-radius: 50px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--alm-gray-700);
  background: var(--alm-light-gray);
  border: 1.5px solid var(--alm-gray-200);
  cursor: pointer;
  transition: var(--alm-transition);
}

.alm-tab-btn:hover,
.alm-tab-btn.active {
  background: var(--alm-primary);
  color: var(--alm-white);
  border-color: var(--alm-primary);
}

/* Products grid (Products Last widget) */
.alm-products-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  transition: opacity 0.25s ease;
}

.alm-products-grid.is-loading {
  opacity: 0.45;
  pointer-events: none;
}

.alm-products-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--alm-gray-600);
  padding: 48px 0;
}

/* Products slider */
.alm-products-slider-wrap {
  position: relative;
}

/* Vertical padding so the hover lift (+ shadow) isn't clipped by Swiper's overflow:hidden */
.alm-products-swiper {
  padding-top: 14px;
  padding-bottom: 20px;
}

/* Equal-height slides regardless of content */
.alm-products-swiper .swiper-wrapper {
  align-items: stretch;
}

.alm-products-swiper .swiper-slide {
  height: auto;
  display: flex;
}

.alm-products-swiper .swiper-slide > .alm-product-card {
  width: 100%;
      margin: 5px 0px;
}

.alm-product-card {
  background: var(--alm-white);
  border-radius: var(--alm-radius-lg);
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(27,60,107,0.06);
  transition: var(--alm-transition);
  border: 1.5px solid var(--alm-gray-200);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.alm-product-card:hover {
  box-shadow: var(--alm-shadow-hover);
  transform: translateY(-4px);
  border-color: var(--alm-primary);
}

.alm-product-img {
  overflow: hidden;
  background: var(--alm-light-gray);
  flex-shrink: 0;
}

.alm-product-img img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.alm-product-card:hover .alm-product-img img {
  transform: scale(1.06);
}

.alm-product-body {
  padding: 12px 20px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.alm-product-body h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--alm-dark);
  line-height: 1.3;
}

.alm-product-body p {
  font-size: 0.8rem;
  color: var(--alm-gray-600);
  line-height: 1.6;
  flex: 1;
}

.alm-product-explore {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 24px;
  border-radius: 50px;
  background: var(--alm-primary);
  color: var(--alm-white);
  font-size: 0.8rem;
  font-weight: 600;
  transition: var(--alm-transition);
  width: 100%;
  justify-content: center;
}

.alm-product-explore:hover {
  background: var(--alm-primary-dark);
}

/* ──────────────────────────────────────────
   6. NUMBERS SECTION
────────────────────────────────────────── */
.alm-numbers {
  background: var(--alm-white);
}

.alm-numbers-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.alm-numbers-text {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alm-numbers-text .alm-eyebrow {
  align-self: flex-start;
}

.alm-numbers-text .alm-subtitle {
  max-width: 420px;
}

.alm-numbers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.alm-number-card {
  border-radius: var(--alm-radius-lg);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--alm-white);
}

.alm-number-card .alm-number-value,
.alm-number-card .alm-number-label,
.alm-number-card .alm-number-desc {
  color: var(--alm-white);
}

.alm-number-card--blue {
  background: var(--alm-primary);
  color: var(--alm-white);
}

.alm-number-card--gold {
  background: var(--alm-accent);
  color: var(--alm-white);
}

.alm-number-card--teal {
  background: #1a6b7a;
  color: var(--alm-white);
}

.alm-number-card--brown {
  background: #5a3a1a;
  color: var(--alm-white);
}

.alm-number-value {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
}

.alm-number-desc {
  font-size: 0.8rem;
  opacity: 0.75;
  line-height: 1.5;
}

.alm-number-label {
  font-size: 0.875rem;
  opacity: 0.85;
  line-height: 1.4;
}

/* ──────────────────────────────────────────
   7. FOOTER
────────────────────────────────────────── */
.alm-footer {
  background: #1a2a3a;
  color: rgba(255,255,255,0.75);
}

.alm-footer-top {
  padding: 64px 0;
}

.alm-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1fr;
  gap: 40px;
}

.alm-footer-col {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alm-footer-brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.alm-footer-logo {
  display: block;
}

.alm-footer-logo img {
  height: 64px;
  width: auto;
  margin-bottom: 16px;
}

.alm-footer-logo .alm-logo-text {
  color: var(--alm-white);
  font-size: 1.5rem;
}

.alm-footer-desc {
  font-size: 0.875rem;
  line-height: 1.75;
  color: rgba(255,255,255,0.6);
  margin-bottom: 20px;
}

.alm-footer-social {
  display: flex;
  gap: 12px;
  margin-top: 4px;
}

.alm-footer-social a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.75);
  transition: var(--alm-transition);
}

.alm-footer-social a:hover {
  background: var(--alm-primary);
  border-color: var(--alm-primary);
  color: var(--alm-white);
}

.alm-footer-social svg {
  width: 16px;
  height: 16px;
}

.alm-footer-heading {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--alm-white);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.alm-footer-nav {
  width: 100%;
}

.alm-footer-links {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.alm-footer-links li {
  width: 100%;
}
.alm-footer-links a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: var(--alm-transition);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.alm-footer-links a::before {
  content: '→';
  font-size: 0.75rem;
  opacity: 0;
  transform: translateX(-4px);
  transition: var(--alm-transition);
}

.alm-footer-links a:hover {
  color: var(--alm-white);
  padding-left: 4px;
}

.alm-footer-links a:hover::before {
  opacity: 1;
  transform: translateX(0);
}

.alm-footer-contact {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
  margin: 0;
  padding: 0;
  list-style: none;
  width: 100%;
}

.alm-footer-contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}

.alm-footer-contact-ico {
  font-size: 1.05rem;
  line-height: 1.4;
  flex-shrink: 0;
}

.alm-footer-contact-ico--black {
    filter: grayscale(77%) brightness(101%);
    
}

.alm-footer-contact svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  margin-top: 2px;
  stroke: var(--alm-accent);
}

.alm-footer-contact a {
  color: rgba(255,255,255,0.6);
}
.alm-footer-contact a:hover {
  color: var(--alm-white);
}

.alm-footer-map {
  border-radius: var(--alm-radius-lg);
  overflow: hidden;
}

.alm-footer-map iframe {
  display: block;
  border-radius: var(--alm-radius-lg);
  filter: grayscale(20%);
}

/* Footer Bottom */
.alm-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
}

.alm-footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ──────────────────────────────────────────
   CONTACT US
────────────────────────────────────────── */
.alm-contact {
  background: var(--alm-white);
}

.alm-contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: stretch;
}

.alm-contact-inner--reverse .alm-contact-form-col { order: 2; }
.alm-contact-inner--reverse .alm-contact-image-col { order: 1; }

.alm-contact-title {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--alm-dark);
  margin-bottom: 28px;
}

.alm-contact-form {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.alm-contact-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.alm-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.alm-field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--alm-gray-800);
}

.alm-field input,
.alm-field select,
.alm-field textarea {
  width: 100%;
  font-family: inherit;
  font-size: 0.9rem;
  color: var(--alm-gray-800);
  background: var(--alm-off-white, #f7f7f7);
  border: 1px solid var(--alm-gray-200);
  border-radius: 14px;
  padding: 13px 16px;
  transition: var(--alm-transition);
}

.alm-field textarea {
  resize: vertical;
  min-height: 120px;
  border-radius: 16px;
}

.alm-field input::placeholder,
.alm-field textarea::placeholder {
  color: var(--alm-gray-600);
  opacity: 0.7;
}

.alm-field input:focus,
.alm-field select:focus,
.alm-field textarea:focus {
  outline: none;
  border-color: var(--alm-primary);
  box-shadow: 0 0 0 3px rgba(27,60,107,0.08);
}

.alm-contact-submit {
  width: 100%;
  justify-content: center;
  padding: 15px 24px;
  border-radius: 14px;
  font-size: 0.95rem;
}

.alm-contact-submit:disabled {
  opacity: 0.7;
  cursor: not-allowed;
}

.alm-contact-feedback {
  font-size: 0.875rem;
  line-height: 1.5;
}

.alm-contact-feedback.is-success {
  color: #1a7a3a;
}

.alm-contact-feedback.is-error {
  color: #c0392b;
}

.alm-contact-image-col {
  border-radius: var(--alm-radius-lg);
  overflow: hidden;
  min-height: 320px;
}

.alm-contact-image-col img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ──────────────────────────────────────────
   INTERNAL PAGE BANNER
────────────────────────────────────────── */
.alm-page-banner {
  position: relative;
  background-color: var(--alm-primary);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  text-align: center;
  overflow: hidden;
}

.alm-page-banner-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(15,28,48,0.62) 0%, rgba(15,28,48,0.78) 100%);
}

.alm-page-banner-inner {
  position: relative;
  z-index: 2;
  padding: 170px 0 80px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
}

.alm-page-banner-eyebrow {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.5);
  border-radius: 24px;
  padding: 9px 22px;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.alm-page-banner-title {
  font-size: clamp(2rem, 4.5vw, 3rem);
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin: 0;
}

.alm-page-banner-crumbs {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
}

.alm-page-banner-crumbs a {
  color: rgba(255,255,255,0.85);
  transition: var(--alm-transition);
}

.alm-page-banner-crumbs a:hover {
  color: #fff;
}

.alm-page-banner-sep {
  opacity: 0.55;
}

.alm-page-banner-current {
  color: var(--alm-accent);
}

/* ──────────────────────────────────────────
   RESPONSIVE
────────────────────────────────────────── */
/* Below this width there's no page margin for the arrows,
   so reserve a small inner gutter and pull them back inside. */
@media (max-width: 1300px) {
  .alm-services-slider-wrap--carousel,
  .alm-products-slider-wrap { padding: 0 52px; }
  .alm-services-nav .alm-swiper-prev { left: 0; }
  .alm-services-nav .alm-swiper-next { right: 0; }
}

@media (max-width: 1024px) {
  .alm-hero-inner { grid-template-columns: 1fr; gap: 32px; }

  /* الموبايل: الصورة تبقى خلفية خفيفة ورا الكلام بدل ما تختفي */
 
 
   .alm-hero-content-wrap {
    align-self: stretch;
    display: flex;
    align-items: center;
  }
  
  .alm-hero-image {
    display: block;
    position: absolute;
    inset: 0;
    z-index: 0;
    margin: 0;
    pointer-events: none;
  }
 .alm-hero-image img {
    width: 100%;
    height: 100%;
    max-height: none;
    object-fit: contain;
    object-position: center bottom;
    opacity: 0.08;
    filter: none;
    animation: none;
  }
  .alm-hero-text {
    position: relative;
    z-index: 2;
  }

  /* الموبايل: ما نظهرش الأسهم الجانبية فوق الكلام (التنقل بالسحب + النقط) */
  .alm-hero .swiper-button-prev,
  .alm-hero .swiper-button-next { display: none; }

  .alm-about-inner { grid-template-columns: 1fr; gap: 20px; }
  .alm-about-images,
  .alm-about-inner--match-height .alm-about-images { max-width: 480px; margin: 0 auto; height: auto; }

  .alm-about-inner--match-height .alm-about-images--single { aspect-ratio: 1 / 1; height: auto; min-height: 0; }

  .alm-services-header { grid-template-columns: 1fr; }




  .alm-services-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .alm-target-grid { grid-template-columns: repeat(2, 1fr) !important; }
  .alm-products-grid { grid-template-columns: repeat(2, 1fr) !important; }

  .alm-contact-inner { grid-template-columns: 1fr; gap: 32px; }
  .alm-contact-inner--reverse .alm-contact-form-col { order: 1; }
  .alm-contact-inner--reverse .alm-contact-image-col { order: 2; }
  .alm-contact-image-col { min-height: 260px; }

  .alm-service-icon { width: 88px; height: 88px; }
  .alm-service-icon img,
  .alm-service-icon svg { max-width: 88px; max-height: 88px; }
  .alm-products-header { grid-template-columns: 1fr; }

  .alm-numbers-inner { grid-template-columns: 1fr; gap: 40px; }

  .alm-footer-grid { grid-template-columns: 1fr 1fr; row-gap: 40px; }
}

@media (max-width: 768px) {
  .alm-vm-grid { grid-template-columns: 1fr; gap: 18px; }

  .alm-page-banner-inner { padding: 130px 0 56px; }

  .alm-brands-grid { gap: 14px; }
  .alm-brand-item { min-width: 130px; padding: 20px 24px; }

  .alm-categories-wrap--carousel { padding: 0 44px; }
  .alm-categories-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 14px; }

  .alm-numbers-grid { gap: 12px; }
  .alm-number-value { font-size: 2rem; }

  /* الموبايل: Links و Contact Us جنب بعض، والبراند والخريطة بعرض كامل */
  .alm-footer-grid { grid-template-columns: 1fr 1fr; gap: 28px 24px; }
  .alm-footer-brand { grid-column: 1 / -1; }
  .alm-footer-grid > .alm-footer-col:last-child { grid-column: 1 / -1; }

  .alm-hero-title { font-size: 1.8rem; }
  .alm-hero-inner { padding: 100px var(--alm-px) 60px; }
}

@media (max-width: 600px) {
  .alm-services-grid { grid-template-columns: 1fr !important; }
  .alm-target-grid { grid-template-columns: 1fr !important; }
  .alm-products-grid { grid-template-columns: 1fr !important; }
  .alm-contact-row { grid-template-columns: 1fr; }

  .alm-services-slider-wrap--carousel,
  .alm-products-slider-wrap { padding: 0 42px; }
  .alm-swiper-prev,
  .alm-swiper-next { width: 38px; height: 38px; }
  .alm-swiper-prev svg,
  .alm-swiper-next svg { width: 16px; height: 16px; }
  .alm-services-nav .alm-swiper-prev { left: 0; }
  .alm-services-nav .alm-swiper-next { right: 0; }
}

@media (max-width: 480px) {
  .alm-hero-btns { flex-direction: column; align-items: flex-start; }
  .alm-hero-btns .alm-btn { width: 100%; justify-content: center; }
}
 
 
 
 
 
 
.alm-about-images--single{
   aspect-ratio:unset !important
}

/* ──────────────────────────────────────────
   HEADER LANGUAGE SWITCHER
────────────────────────────────────────── */
.alm-lang-switch-li {
  display: flex;
  align-items: center;
}

.alm-btn-lang {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.95rem;
  line-height: 1;
  color: var(--alm-primary, #1B3C6B);
  transition: var(--alm-transition, all .25s ease);
}

.alm-btn-lang:hover {
  color: var(--alm-accent, #D4A843);
}

.alm-btn-lang-flag {
  display: inline-flex;
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0, 0, 0, 0.15);
  flex-shrink: 0;
    width: 20px;
    height: 16px;
    border-radius: 50%;
    object-fit: cover !important;
}

.alm-btn-lang-flag svg {
  display: block;
  width: 26px;
  height: 18px;
  object-fit: cover;
}

.alm-btn-lang-label {
  white-space: nowrap;
}