:root {
  --brand-navy: #0b3a6d;
  --brand-royal: #1e5aa8;
  --brand-white: #ffffff;
  --brand-mist: #f5f7fa;
  --brand-green: #2bb673;
  --text-primary: #123154;
  --shadow-soft: 0 18px 50px rgba(11, 58, 109, 0.14);
  --shadow-deep: 0 24px 60px rgba(11, 58, 109, 0.2);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--text-primary);
  background:
    radial-gradient(circle at top right, rgba(30, 90, 168, 0.08), transparent 24%),
    linear-gradient(180deg, #f9fbff 0%, #f5f7fa 100%);
}

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

section[id] {
  scroll-margin-top: 110px;
}

a,
button,
input,
textarea {
  transition:
    color 0.3s ease,
    background-color 0.3s ease,
    border-color 0.3s ease,
    box-shadow 0.3s ease,
    transform 0.3s ease;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(43, 182, 115, 0.4);
  outline-offset: 3px;
}

.nav-shell {
  position: relative;
  overflow: visible;
  display: flex;
  justify-content: flex-start;
  width: 100%;
  max-width: 100%;
  padding-left: 0 !important;
}

.nav-shell > div {
  justify-content: flex-start;
}

#site-header {
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.35) 0%, transparent 100%);
  transition: background 0.4s ease, box-shadow 0.4s ease;
}

#site-header a,
#site-header button,
#site-header span,
#site-header i,
#site-header svg {
  transition: color 0.3s ease, border-color 0.3s ease;
}

.navbar-logo {
  display: block;
  height: 76px;
  width: auto;
  object-fit: contain;
  image-rendering: -webkit-optimize-contrast;
  filter: none;
  transition: filter 0.3s ease;
}

.header-logo {
  display: block;
}

#site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.97);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(10px);
}

#site-header.is-scrolled .navbar-logo {
  filter: none;
  height: 76px;
}

#site-header.is-scrolled .nav-link,
#site-header.is-scrolled #menu-toggle,
#site-header.is-scrolled .lang-toggle {
  color: #1a2e4a;
}

.nav-link {
  position: relative;
  display: inline-flex;
  padding-bottom: 4px;
  color: #ffffff;
}

.nav-link::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: right;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--brand-green), #9ee6c4);
  transition: transform 0.3s ease;
}

.nav-link:hover,
.nav-link:focus-visible {
  color: #7dd3fc;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.45);
}

#site-header.is-scrolled .nav-link:hover,
#site-header.is-scrolled .nav-link:focus-visible {
  color: #005f8f;
  text-shadow: none;
}

.nav-link:hover::after,
.nav-link:focus-visible::after {
  transform: scaleX(1);
}

html[dir="ltr"] .nav-link::after {
  left: 0;
  right: auto;
  transform-origin: left;
}

.lang-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255, 255, 255, 0.7);
  border-radius: 20px;
  padding: 6px 16px;
  background: transparent;
  color: #ffffff;
}

#language-toggle {
  background: transparent;
}

.lang-toggle:hover,
.lang-toggle:focus-visible {
  transform: translateY(-1px);
  color: #0077b6;
  border-color: #0077b6;
  background: transparent;
}

#site-header.is-scrolled .lang-toggle {
  border: 1.5px solid #1a2e4a;
  border-radius: 20px;
  padding: 6px 16px;
  background: transparent;
  color: #1a2e4a;
}

#site-header .header-actions > a {
  border: none;
  border-radius: 25px;
  padding: 8px 22px;
  background: #0077b6;
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(0, 119, 182, 0.24);
}

#site-header .header-actions > a:hover,
#site-header .header-actions > a:focus-visible,
#site-header.is-scrolled .header-actions > a:hover,
#site-header.is-scrolled .header-actions > a:focus-visible {
  background: #0077b6;
  color: #ffffff;
}

#site-header.is-scrolled .header-actions > a {
  background: #0077b6;
  color: #ffffff;
  border: none;
}

#menu-toggle {
  color: #ffffff;
}

#menu-toggle:hover,
#menu-toggle:focus-visible,
#site-header.is-scrolled #menu-toggle:hover,
#site-header.is-scrolled #menu-toggle:focus-visible {
  color: #0077b6;
  border-color: #0077b6;
}

.mobile-menu[data-open="true"] {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.mobile-menu[data-open="false"] {
  transform: translateY(-8px);
}

.mobile-link {
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-radius: 16px;
  padding: 12px 14px;
  background: rgba(11, 58, 109, 0.04);
}

.mobile-link:hover,
.mobile-link:focus-visible {
  background: rgba(30, 90, 168, 0.1);
  color: var(--brand-royal);
}

.glass-panel {
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 100%);
  backdrop-filter: blur(20px);
}

.hero-sunbeam {
  background: radial-gradient(circle, rgba(255, 255, 255, 0.18) 0%, rgba(255, 255, 255, 0.08) 36%, rgba(255, 255, 255, 0) 72%);
  animation: pulse-glow 8s ease-in-out infinite;
  opacity: 0.45;
  pointer-events: none;
}

#home {
  background: #dbe4ee;
}

.hero-background {
  object-fit: contain;
  object-position: center bottom;
}

.hero-bottles {
  animation: float-bottles 6.4s ease-in-out infinite;
  will-change: transform;
}

#hero-media {
  transform: translateY(var(--hero-shift, 0px));
  transition: transform 0.2s linear;
}

.floating-note {
  position: absolute;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
  min-width: 92px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 18px;
  padding: 12px 14px;
  background: rgba(255, 255, 255, 0.14);
  color: white;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
  animation: float-badges 7s ease-in-out infinite;
}

.floating-note.delay-200 {
  animation-delay: 0.2s;
}

.floating-note.delay-500 {
  animation-delay: 0.5s;
}

.floating-note span {
  font-size: 0.75rem;
  opacity: 0.72;
}

.floating-note strong {
  font-size: 1.05rem;
  font-weight: 800;
}

.section-shell {
  padding-top: 96px;
  padding-bottom: 96px;
}

.section-heading {
  text-wrap: balance;
}

.section-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.section-eyebrow::before {
  width: 32px;
  height: 2px;
  border-radius: 999px;
  content: "";
  background: currentColor;
  opacity: 0.5;
}

.section-title {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  line-height: 1.65;
}

.interactive-solutions-title {
  transition:
    transform 0.3s ease,
    color 0.3s ease,
    text-shadow 0.3s ease,
    filter 0.3s ease;
  cursor: pointer;
  color: #38bdf8;
  font-size: clamp(1rem, 1.6vw, 1.25rem);
  line-height: 1.1;
}

.interactive-solutions-title .solutions-title-line1 {
  display: block;
  font-size: 1em;
  letter-spacing: 0.08em;
  color: #38bdf8;
}

.interactive-solutions-title .solutions-title-line2 {
  display: block;
  font-size: 2em;
  line-height: 1.15;
  letter-spacing: 0.01em;
  color: var(--brand-navy);
}

.interactive-solutions-title:hover,
.interactive-solutions-title:focus-visible {
  color: #38bdf8;
  transform: translateY(-3px) scale(1.02);
  text-shadow: 0 10px 24px rgba(30, 90, 168, 0.18);
  filter: drop-shadow(0 6px 18px rgba(30, 90, 168, 0.14));
}

.interactive-solutions-title:active {
  transform: translateY(-1px) scale(1.01);
}

.section-copy {
  max-width: 42rem;
  font-size: 1rem;
  line-height: 2;
  color: rgba(18, 49, 84, 0.72);
}

.about-grid {
  align-items: start;
}

.about-media-frame {
  width: min(100%, 500px);
  align-self: start;
  justify-self: center;
  margin-inline: auto;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(239, 246, 255, 0.92) 100%);
}

.about-media-image {
  display: block;
  height: auto;
  width: 100%;
  max-height: 560px;
  object-fit: cover;
  object-position: center center;
  image-rendering: auto;
}

.about-media-caption-wrap {
  padding: 16px 20px 20px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.96) 0%, rgba(241, 247, 255, 0.98) 100%);
  border-top: 1px solid rgba(11, 58, 109, 0.08);
  text-align: center;
}

.about-media-caption {
  display: inline-block;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
  color: var(--brand-navy);
}

html[dir="ltr"] .about-media-caption {
  font-family: "Inter", "Segoe UI", Tahoma, Geneva, sans-serif;
  letter-spacing: 0.02em;
}

.about-content {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.about-title {
  position: relative;
  display: inline-block;
  font-size: 26px;
  line-height: 1.45;
  transition:
    color 0.3s ease,
    transform 0.3s ease,
    text-shadow 0.3s ease;
}

.about-title::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 56px;
  height: 3px;
  border-radius: 999px;
  content: "";
  background: linear-gradient(90deg, var(--brand-green), var(--brand-royal));
  transition:
    width 0.3s ease,
    transform 0.3s ease,
    opacity 0.3s ease;
}

.about-title:hover {
  color: var(--brand-royal);
  transform: translateY(-2px);
  text-shadow: 0 8px 22px rgba(30, 90, 168, 0.16);
}

.about-title:hover::after {
  width: 82px;
  transform: translateY(1px);
}

html[dir="ltr"] .about-title::after {
  left: 0;
  right: auto;
}

.about-message-body {
  display: inline-block;
  font-size: 20px;
  width: min(100%, 700px);
  line-height: 1.5;
}

.about-pillars {
  display: grid;
  gap: 14px;
}

@media (min-width: 640px) {
  .about-pillars {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.about-pillar-card {
  border: 1px solid rgba(11, 58, 109, 0.08);
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(236, 248, 255, 0.96) 55%, rgba(230, 244, 255, 0.94) 100%);
  padding: 18px;
  box-shadow: 0 12px 28px rgba(11, 58, 109, 0.08);
}

.about-pillar-title {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1rem;
  font-weight: 800;
  color: var(--brand-navy);
}

.about-pillar-copy {
  margin: 10px 0 0;
  font-size: 0.95rem;
  line-height: 1.8;
  color: rgba(18, 49, 84, 0.74);
}

@media (max-width: 767px) {
  .about-media-frame {
    width: 100%;
  }

  .about-media-image {
    height: auto;
    max-height: none;
  }

  .about-message-body {
    width: 100%;
  }
}

@media (min-width: 1024px) {
  .about-media-frame {
    margin-top: 4.75rem;
  }
}

.premium-button {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 22px;
  font-size: 0.98rem;
  font-weight: 700;
  color: white;
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-navy));
  box-shadow: 0 14px 30px rgba(11, 58, 109, 0.24);
}

.premium-button:hover,
.premium-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(11, 58, 109, 0.32);
}

.premium-button-outline {
  color: white;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.28);
  box-shadow: none;
}

.premium-button-outline:hover,
.premium-button-outline:focus-visible {
  background: rgba(255, 255, 255, 0.16);
}

.stat-chip {
  display: flex;
  flex-direction: column;
  gap: 6px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  padding: 16px 18px;
}

.stat-chip-label {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.72);
}

.stat-chip-value {
  font-size: 1.35rem;
  font-weight: 800;
  color: white;
}

.solution-card {
  display: flex;
  flex-direction: column;
  height: 100%;
  overflow: hidden;
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow-soft);
  transform: translateY(0);
}

.solution-card:hover,
.solution-card:focus-within {
  transform: translateY(-8px);
  box-shadow: var(--shadow-deep);
}

.solution-image-wrap {
  position: relative;
  overflow: hidden;
  height: 250px;
}

.solution-card > .p-6 {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
}

.solution-description-wrap {
  width: 100%;
}

.solution-description {
  display: block;
  font-size: 20px;
  text-align: start;
}

.solution-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.solution-card:hover .solution-image,
.solution-card:focus-within .solution-image {
  transform: scale(1.08);
}

.icon-badge {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 1;
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 999px;
  background: white;
  color: var(--brand-royal);
  box-shadow: var(--shadow-soft);
}

.solution-link {
  margin-top: auto;
  display: inline-flex;
  width: clamp(42px, 4vw, 46px);
  height: clamp(42px, 4vw, 46px);
  min-width: 42px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  align-self: flex-start;
  border-radius: 999px;
  background: rgba(30, 90, 168, 0.08);
  color: var(--brand-royal);
  box-shadow: 0 8px 20px rgba(11, 58, 109, 0.08);
}

.solution-link svg {
  width: clamp(18px, 1.8vw, 20px);
  height: clamp(18px, 1.8vw, 20px);
}

.solution-link:hover,
.solution-link:focus-visible {
  background: var(--brand-royal);
  color: white;
}

.feature-tile {
  display: inline-flex;
  min-width: 168px;
  flex-direction: column;
  align-items: center;
  gap: 14px;
  border-radius: 24px;
  border: 1px solid rgba(11, 58, 109, 0.08);
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 28px 22px;
  box-shadow: var(--shadow-soft);
  color: var(--brand-royal);
}

.feature-tile span {
  color: var(--brand-navy);
  font-weight: 700;
}

.quality-placeholder-grid {
  display: grid;
  align-items: stretch;
  gap: 18px;
}

.quality-section {
  padding-top: 56px;
  padding-bottom: 56px;
}

.quality-placeholder-card {
  display: flex;
  height: 100%;
  min-height: 100%;
  flex-direction: column;
  gap: 18px;
  overflow: hidden;
  border: 1px solid rgba(11, 58, 109, 0.08);
  border-radius: 24px;
  background: linear-gradient(180deg, #ffffff 0%, #f9fbff 100%);
  padding: 18px;
  box-shadow: 0 12px 30px rgba(11, 58, 109, 0.1);
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease,
    border-color 0.3s ease;
}

.quality-placeholder-media {
  display: block;
  width: 100%;
  aspect-ratio: 5 / 3;
  height: auto;
  min-height: 0;
  border-radius: 16px;
  object-fit: cover;
  object-position: center;
  background: linear-gradient(180deg, rgba(248, 251, 255, 0.95) 0%, rgba(236, 244, 255, 0.9) 100%);
  border: 1px solid rgba(30, 90, 168, 0.1);
  box-sizing: border-box;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.quality-placeholder-card:hover,
.quality-placeholder-card:focus-within {
  transform: translateY(-8px);
  border-color: rgba(30, 90, 168, 0.18);
  box-shadow: 0 22px 45px rgba(11, 58, 109, 0.16);
}

.quality-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.quality-card-heading {
  display: flex;
  width: 100%;
  align-items: flex-start;
  gap: 12px;
}

.quality-card-heading-copy {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 10px;
}

.quality-card-icon {
  display: inline-flex;
  height: 44px;
  width: 44px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  box-shadow: 0 10px 22px rgba(11, 58, 109, 0.12);
}

.quality-card-icon-green {
  background: linear-gradient(135deg, rgba(43, 182, 115, 0.18), rgba(43, 182, 115, 0.08));
  color: var(--brand-green);
}

.quality-card-icon-navy {
  background: linear-gradient(135deg, rgba(30, 90, 168, 0.16), rgba(11, 58, 109, 0.08));
  color: var(--brand-navy);
}

.quality-card-title {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.2rem;
  font-weight: 800;
  line-height: 1.65;
  text-align: start;
}

.quality-card-title-green {
  color: var(--brand-green);
}

.quality-card-title-navy {
  color: var(--brand-navy);
}

.quality-card-accent {
  display: block;
  width: 58px;
  height: 4px;
  border-radius: 999px;
}

.quality-card-accent-green {
  background: linear-gradient(90deg, var(--brand-green), rgba(43, 182, 115, 0.24));
}

.quality-card-accent-navy {
  background: linear-gradient(90deg, var(--brand-royal), rgba(30, 90, 168, 0.22));
}

.quality-card-copy,
.quality-card-list {
  margin: 0;
  color: rgba(71, 85, 105, 0.95);
  font-size: 0.98rem;
  line-height: 1.95;
}

.quality-card-list {
  display: grid;
  gap: 12px;
  padding: 0;
  list-style: none;
}

.quality-card-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.quality-card-check {
  display: inline-flex;
  height: 24px;
  width: 24px;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--brand-green);
  color: #ffffff;
  font-size: 0.82rem;
  font-weight: 800;
  box-shadow: 0 8px 16px rgba(43, 182, 115, 0.24);
}

.quality-card-button {
  margin-top: auto;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 10px;
  align-self: flex-start;
  border-radius: 999px;
  padding: 12px 18px;
  background: linear-gradient(135deg, var(--brand-royal), var(--brand-navy));
  color: #ffffff;
  font-weight: 700;
  box-shadow: 0 14px 28px rgba(11, 58, 109, 0.2);
}

.quality-card-button:hover,
.quality-card-button:focus-visible {
  transform: translateY(-2px);
  box-shadow: 0 18px 34px rgba(11, 58, 109, 0.26);
}

.quality-placeholder-card .premium-button,
.quality-card-button {
  margin-top: auto;
}

.quality-placeholder-line {
  height: 12px;
  border-radius: 999px;
  background: rgba(11, 58, 109, 0.1);
}

.quality-placeholder-line-lg {
  width: 68%;
}

.quality-placeholder-line-sm {
  width: 42%;
}

@media (min-width: 768px) {
  .quality-placeholder-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 767px) {
  .quality-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .quality-placeholder-card {
    gap: 16px;
    padding: 16px;
  }

  .quality-placeholder-media {
    border-radius: 16px;
  }

  .quality-card-icon {
    height: 40px;
    width: 40px;
  }

  .quality-card-title {
    font-size: 1.08rem;
  }

  .quality-card-copy,
  .quality-card-list {
    font-size: 0.94rem;
  }
}

.promo-card {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  border-radius: 30px;
  background: white;
  box-shadow: var(--shadow-soft);
}

.promo-image {
  height: 250px;
  width: 100%;
  object-fit: cover;
}

.promo-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}

.promo-tag {
  display: inline-flex;
  width: fit-content;
  border-radius: 999px;
  background: rgba(43, 182, 115, 0.1);
  padding: 8px 14px;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--brand-green);
}

.promo-title {
  margin-top: 18px;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1.35rem;
  font-weight: 800;
  line-height: 1.7;
  color: var(--brand-navy);
}

.promo-copy {
  margin-top: 12px;
  color: rgba(18, 49, 84, 0.72);
  line-height: 1.9;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  border-radius: 24px;
  border: 1px solid rgba(11, 58, 109, 0.06);
  background: white;
  padding: 18px 20px;
  box-shadow: var(--shadow-soft);
}

.contact-card-label {
  display: block;
  font-size: 0.85rem;
  color: rgba(18, 49, 84, 0.58);
}

.contact-card-value {
  margin: 4px 0 0;
  font-size: 1rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.social-link {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(11, 58, 109, 0.08);
  color: var(--brand-navy);
}

.social-link:hover,
.social-link:focus-visible {
  background: var(--brand-royal);
  color: white;
}

.form-label {
  display: inline-block;
  margin-bottom: 10px;
  font-size: 0.95rem;
  font-weight: 700;
  color: var(--brand-navy);
}

.form-input {
  width: 100%;
  border: 1px solid rgba(11, 58, 109, 0.1);
  border-radius: 20px;
  background: white;
  padding: 15px 18px;
  font: inherit;
  color: var(--brand-navy);
  box-shadow: inset 0 1px 2px rgba(11, 58, 109, 0.04);
}

.form-input::placeholder {
  color: rgba(18, 49, 84, 0.42);
}

.form-input:focus {
  border-color: rgba(30, 90, 168, 0.35);
  box-shadow:
    0 0 0 4px rgba(30, 90, 168, 0.1),
    inset 0 1px 2px rgba(11, 58, 109, 0.04);
  outline: none;
}

.footer-title {
  margin: 0;
  font-family: "Noto Kufi Arabic", sans-serif;
  font-size: 1rem;
  font-weight: 700;
}

.footer-list {
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.footer-contact-list {
  margin-top: 8px;
}

.footer-phone {
  direction: ltr;
  unicode-bidi: isolate;
  text-align: start;
}

html[dir="rtl"] .footer-phone {
  text-align: end;
}

html[dir="ltr"] .footer-phone {
  text-align: start;
}

.footer-link {
  color: rgba(255, 255, 255, 0.65);
}

.footer-link:hover,
.footer-link:focus-visible {
  color: white;
}

@keyframes float-bottles {
  0%,
  100% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-14px);
  }
}

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

@keyframes pulse-glow {
  0%,
  100% {
    opacity: 0.35;
    transform: scale(1);
  }
  50% {
    opacity: 0.55;
    transform: scale(1.08);
  }
}

@media (min-width: 768px) and (max-width: 1279px) {
  .hero-background {
    object-position: center bottom;
  }
}

@media (max-width: 767px) {
  .nav-shell {
    width: auto;
    justify-content: flex-end;
  }

  .hero-background {
    object-position: center bottom;
  }

  .section-shell {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  .floating-note {
    min-width: 78px;
    padding: 10px 12px;
  }

  .solution-image-wrap,
  .promo-image {
    height: 220px;
  }

  .feature-tile {
    width: calc(50% - 8px);
    min-width: unset;
  }
}

@media (min-width: 1280px) {
  .hero-background {
    object-position: center bottom;
  }
}

@media (max-width: 479px) {
  .feature-tile {
    width: 100%;
  }

  .premium-button {
    width: 100%;
    justify-content: center;
  }
}
