@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Cairo";
  src: url("../fonts/Cairo-ExtraBold.woff2") format("woff2");
  font-weight: 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --bg: #050505;
  --bg-soft: #111111;
  --card: #151515;
  --card-2: #1b1b1b;
  --gold: #d6a84f;
  --gold-bright: #f2c96d;
  --white: #ffffff;
  --muted: #c9c9c9;
  --dim: #8e8e8e;
  --border-color: rgba(214, 168, 79, 0.22);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  direction: rtl;
  font-family: "Cairo", Arial, sans-serif;
  color: var(--white);
  background:
    radial-gradient(circle at 14% 8%, rgba(214, 168, 79, 0.12), transparent 28rem),
    radial-gradient(circle at 86% 24%, rgba(242, 201, 109, 0.08), transparent 24rem),
    linear-gradient(180deg, #050505 0%, #0b0b0b 44%, #050505 100%);
  line-height: 1.85;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

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

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

p {
  margin: 0;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.35;
}

h1,
h2 {
  font-weight: 800;
}

h3,
.btn,
.nav-link {
  font-weight: 700;
}

.container {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
}

.section {
  padding: 92px 0;
  position: relative;
}

.section.tight {
  padding: 64px 0;
}

.section-head {
  width: min(760px, 100%);
  margin-bottom: 34px;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.95rem;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-bright));
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.35rem);
  letter-spacing: 0;
}

.section-copy {
  margin-top: 14px;
  font-size: 1.06rem;
}

.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.site-header.is-scrolled,
.site-header.nav-active {
  background: rgba(5, 5, 5, 0.88);
  border-color: var(--border-color);
  backdrop-filter: blur(14px);
}

.nav {
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 190px;
}

.brand img {
  width: 62px;
  height: auto;
}

.brand-name {
  display: grid;
  gap: 0;
  line-height: 1.2;
}

.brand-name strong {
  color: var(--white);
  font-size: 1.05rem;
  font-weight: 800;
}

.brand-name span {
  color: var(--gold-bright);
  font-size: 0.72rem;
  font-weight: 700;
}

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

.nav-link {
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.98rem;
  transition: color 0.2s ease;
}

.nav-link:hover,
.nav-link.active {
  color: var(--gold-bright);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--border-color);
  background: rgba(17, 17, 17, 0.82);
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--gold-bright);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.nav-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.nav-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.btn {
  position: relative;
  isolation: isolate;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 20px;
  border: 1px solid rgba(242, 201, 109, 0.42);
  border-radius: var(--radius);
  overflow: hidden;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.btn svg,
.floating-whatsapp svg {
  width: 20px;
  height: 20px;
  flex: 0 0 auto;
}

.btn[href^="tel:"]::before,
.btn[href*="wa.me"]::before,
.floating-whatsapp::before {
  content: "";
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
  background: currentColor;
  mask-repeat: no-repeat;
  mask-position: center;
  mask-size: contain;
  -webkit-mask-repeat: no-repeat;
  -webkit-mask-position: center;
  -webkit-mask-size: contain;
}

.btn[href^="tel:"]::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4 .6.7 0 1.2.5 1.2 1.2v3.6c0 .7-.5 1.2-1.2 1.2C10.6 21.5 2.5 13.4 2.5 3.4c0-.7.5-1.2 1.2-1.2h3.6c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24'%3E%3Cpath d='M6.6 10.8c1.4 2.8 3.8 5.2 6.6 6.6l2.2-2.2c.3-.3.8-.4 1.2-.3 1.3.4 2.7.6 4 .6.7 0 1.2.5 1.2 1.2v3.6c0 .7-.5 1.2-1.2 1.2C10.6 21.5 2.5 13.4 2.5 3.4c0-.7.5-1.2 1.2-1.2h3.6c.7 0 1.2.5 1.2 1.2 0 1.4.2 2.7.6 4 .1.4 0 .9-.3 1.2l-2.2 2.2z'/%3E%3C/svg%3E");
}

.btn[href*="wa.me"]::before,
.floating-whatsapp::before {
  mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C8.8 3 3 8.8 3 15.9c0 2.3.6 4.5 1.8 6.5L3.6 29l6.8-1.8c1.8 1 3.7 1.5 5.7 1.5 7.1 0 12.9-5.8 12.9-12.9C29 8.8 23.2 3 16 3zm0 23.4c-1.8 0-3.5-.5-5-1.4l-.4-.2-4 1.1 1.1-3.9-.3-.4c-1.1-1.7-1.7-3.6-1.7-5.7C5.7 10.3 10.3 5.7 16 5.7s10.3 4.6 10.3 10.2S21.7 26.4 16 26.4zm5.7-7.7c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.2-1.3-.5-2.5-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.2 3.2c.2.2 2.2 3.4 5.4 4.8.8.3 1.4.5 1.8.7.8.2 1.5.2 2.1.1.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5 0-.1-.3-.2-.6-.4z'/%3E%3C/svg%3E");
  -webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 32 32'%3E%3Cpath d='M16 3C8.8 3 3 8.8 3 15.9c0 2.3.6 4.5 1.8 6.5L3.6 29l6.8-1.8c1.8 1 3.7 1.5 5.7 1.5 7.1 0 12.9-5.8 12.9-12.9C29 8.8 23.2 3 16 3zm0 23.4c-1.8 0-3.5-.5-5-1.4l-.4-.2-4 1.1 1.1-3.9-.3-.4c-1.1-1.7-1.7-3.6-1.7-5.7C5.7 10.3 10.3 5.7 16 5.7s10.3 4.6 10.3 10.2S21.7 26.4 16 26.4zm5.7-7.7c-.3-.2-1.8-.9-2.1-1-.3-.1-.5-.2-.7.2-.2.3-.8 1-.9 1.1-.2.2-.3.2-.6.1-.3-.2-1.3-.5-2.5-1.5-.9-.8-1.5-1.8-1.7-2.1-.2-.3 0-.5.1-.6.1-.1.3-.3.4-.5.1-.2.2-.3.3-.5.1-.2 0-.4 0-.5-.1-.2-.7-1.7-1-2.3-.3-.6-.5-.5-.7-.5h-.6c-.2 0-.5.1-.8.4-.3.3-1.1 1.1-1.1 2.6s1.1 3 1.2 3.2c.2.2 2.2 3.4 5.4 4.8.8.3 1.4.5 1.8.7.8.2 1.5.2 2.1.1.6-.1 1.8-.7 2.1-1.5.3-.7.3-1.4.2-1.5 0-.1-.3-.2-.6-.4z'/%3E%3C/svg%3E");
}

.btn::after {
  content: "";
  position: absolute;
  inset: 0 auto 0 -55%;
  width: 42%;
  transform: skewX(-20deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transition: inset 0.5s ease;
  z-index: -1;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 38px rgba(214, 168, 79, 0.18);
  border-color: rgba(242, 201, 109, 0.72);
}

.btn:hover::after {
  inset-inline-start: 115%;
}

.btn-primary {
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
}

.btn-dark {
  color: var(--white);
  background: rgba(17, 17, 17, 0.82);
}

.hero {
  height: 100svh;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding: 104px 0 38px;
  position: relative;
  overflow: hidden;
  box-sizing: border-box;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.98) 0%, rgba(5, 5, 5, 0.84) 46%, rgba(5, 5, 5, 0.42) 100%),
    radial-gradient(circle at 68% 50%, rgba(214, 168, 79, 0.16), transparent 28rem),
    url("../images/واقف بضهره وخلفية جراش.webp") center left / cover no-repeat;
  opacity: 1;
}

.hero::after,
.steam-band::after {
  content: "";
  position: absolute;
  width: 60vw;
  height: 18vh;
  right: 8%;
  bottom: 9%;
  background: radial-gradient(ellipse, rgba(255, 255, 255, 0.12), transparent 70%);
  filter: blur(20px);
  animation: steam 7s ease-in-out infinite alternate;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 410px);
  align-items: center;
  gap: 42px;
}

.hero-content {
  width: min(720px, 100%);
}

.hero h1 {
  font-size: clamp(2.25rem, 4.7vw, 4.45rem);
  max-width: 720px;
}

.hero h2 {
  margin-top: 10px;
  color: var(--gold-bright);
  font-size: clamp(1.1rem, 2vw, 1.65rem);
}

.hero p {
  margin-top: 14px;
  width: min(660px, 100%);
  font-size: 1.02rem;
}

.hero-actions,
.cta-actions,
.card-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 22px;
}

.badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 7px 13px;
  border: 1px solid var(--border-color);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(17, 17, 17, 0.68);
  backdrop-filter: blur(10px);
}

.hero-panel {
  align-self: center;
  min-height: 0;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(214, 168, 79, 0.12), rgba(17, 17, 17, 0.48));
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  padding: 14px;
}

.hero-visual {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 430px;
  background: #090909;
}

.hero-visual > img {
  width: 100%;
  height: 430px;
  object-fit: cover;
  object-position: center top;
  opacity: 0.86;
}

.hero-service-card {
  position: absolute;
  inset: auto 16px 16px 16px;
  padding: 18px;
  border: 1px solid rgba(242, 201, 109, 0.26);
  border-radius: var(--radius);
  background: rgba(5, 5, 5, 0.78);
  backdrop-filter: blur(12px);
}

.hero-service-card span {
  color: var(--gold-bright);
  font-weight: 700;
  font-size: 0.9rem;
}

.hero-service-card strong {
  display: block;
  color: var(--gold-bright);
  margin-top: 5px;
  font-size: 1.2rem;
}

.hero-service-card p {
  margin-top: 6px;
  font-size: 0.92rem;
}

.hero-service-card .btn {
  width: 100%;
  margin-top: 14px;
}

.grid {
  display: grid;
  gap: 20px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

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

.feature,
.service-card,
.reason,
.article-card,
.faq-item,
.contact-box {
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.012));
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.26);
}

.feature,
.reason,
.contact-box {
  padding: 24px;
}

.feature:hover,
.service-card:hover,
.article-card:hover,
.reason:hover {
  transform: translateY(-5px);
  border-color: rgba(242, 201, 109, 0.5);
  box-shadow: 0 22px 58px rgba(214, 168, 79, 0.12);
}

.feature,
.service-card,
.article-card,
.reason {
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.icon-mark {
  min-width: 42px;
  height: 42px;
  padding: 0 12px;
  display: grid;
  place-items: center;
  margin-bottom: 16px;
  border-radius: var(--radius);
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  font-weight: 800;
  font-size: 0.86rem;
}

.feature h3,
.reason h3,
.contact-box h3 {
  font-size: 1.25rem;
}

.feature p,
.reason p,
.contact-box p {
  margin-top: 9px;
}

.contact-section {
  padding-top: 74px;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
  gap: 24px;
  align-items: stretch;
}

.contact-main {
  position: relative;
  overflow: hidden;
  padding: clamp(28px, 5vw, 54px);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.14), rgba(21, 21, 21, 0.84)),
    url("../images/غسيل خارجي بالبخار.webp") center / cover no-repeat;
  box-shadow: var(--shadow);
}

.contact-main::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5, 5, 5, 0.94), rgba(5, 5, 5, 0.58));
}

.contact-main > * {
  position: relative;
  z-index: 1;
}

.contact-main h2 {
  width: min(680px, 100%);
  font-size: clamp(2rem, 4vw, 3.35rem);
}

.contact-main p {
  margin-top: 14px;
  width: min(650px, 100%);
  font-size: 1.06rem;
}

.contact-info {
  display: grid;
  gap: 16px;
}

.contact-info .contact-box {
  display: grid;
  align-content: center;
}

.service-card,
.article-card {
  overflow: hidden;
}

.service-card img,
.article-card img {
  width: 100%;
  height: 245px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-card img {
  object-position: center top;
}

.service-card:hover img,
.article-card:hover img {
  transform: scale(1.05);
}

.card-body {
  padding: 24px;
}

.card-body h3 {
  font-size: 1.35rem;
}

.card-body p {
  margin-top: 10px;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  align-items: center;
  gap: 44px;
}

.split-image {
  position: relative;
  overflow: hidden;
  min-height: 380px;
  max-height: 520px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  min-height: 380px;
  max-height: 520px;
  object-fit: cover;
}

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

.list li {
  position: relative;
  padding: 12px 44px 12px 14px;
  border: 1px solid rgba(214, 168, 79, 0.15);
  border-radius: var(--radius);
  color: rgba(255, 255, 255, 0.88);
  background: rgba(17, 17, 17, 0.54);
}

.list li::before {
  content: "";
  position: absolute;
  right: 16px;
  top: 19px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gold-bright);
  box-shadow: 0 0 18px rgba(242, 201, 109, 0.52);
}

.proof-section {
  overflow: hidden;
  background: linear-gradient(180deg, rgba(17, 17, 17, 0.72), rgba(5, 5, 5, 0.9));
}

.gallery {
  position: relative;
  overflow: hidden;
  margin-top: 18px;
}

.gallery::before,
.gallery::after {
  content: "";
  position: absolute;
  inset-block: 0;
  width: 90px;
  z-index: 2;
  pointer-events: none;
}

.gallery::before {
  right: 0;
  background: linear-gradient(90deg, transparent, var(--bg));
}

.gallery::after {
  left: 0;
  background: linear-gradient(270deg, transparent, var(--bg));
}

.gallery-track {
  display: flex;
  gap: 18px;
  width: max-content;
  animation: gallery-scroll 34s linear infinite;
}

.gallery:hover .gallery-track {
  animation-play-state: paused;
}

.proof {
  width: auto;
  flex: 0 0 auto;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(242, 201, 109, 0.36);
  border-radius: var(--radius);
  background: #0a0a0a;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.38);
}

.proof img {
  width: auto;
  height: 360px;
  max-width: none;
  object-fit: contain;
  transition: transform 0.35s ease;
}

.proof:hover img {
  transform: scale(1.05);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-item {
  overflow: hidden;
}

.faq-question {
  width: 100%;
  min-height: 64px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  border: 0;
  background: transparent;
  color: var(--white);
  font-family: inherit;
  font-size: 1.05rem;
  font-weight: 700;
  text-align: right;
  cursor: pointer;
}

.faq-question::after {
  content: "+";
  color: var(--gold-bright);
  font-size: 1.5rem;
}

.faq-item.is-open .faq-question::after {
  content: "-";
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.25s ease;
}

.faq-answer p {
  padding: 0 20px 20px;
}

.page-hero {
  padding: 150px 0 74px;
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.72)),
    url("../images/واقف بوشه.webp") center / cover no-repeat;
}

.page-hero.compact {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.96), rgba(5, 5, 5, 0.75)),
    url("../images/main_logo_squared.webp") left center / 420px auto no-repeat;
}

.contact-hero {
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.97), rgba(5, 5, 5, 0.78)),
    radial-gradient(circle at 18% 40%, rgba(214, 168, 79, 0.16), transparent 22rem),
    url("../images/واقف بضهره وخلفية جراش.webp") center / cover no-repeat;
}

.page-hero h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
  width: min(860px, 100%);
}

.page-hero p {
  margin-top: 16px;
  width: min(760px, 100%);
}

.service-detail {
  padding: 34px;
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  background: rgba(21, 21, 21, 0.72);
  display: grid;
  grid-template-columns: 310px minmax(0, 1fr);
  gap: 28px;
  align-items: center;
}

.service-detail-media {
  overflow: hidden;
  border: 1px solid rgba(242, 201, 109, 0.24);
  border-radius: var(--radius);
  background: #080808;
}

.service-detail-media img {
  width: 100%;
  height: 260px;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.service-detail:hover .service-detail-media img {
  transform: scale(1.04);
}

.service-detail + .service-detail {
  margin-top: 24px;
}

.service-detail h2 {
  font-size: clamp(1.65rem, 3vw, 2.4rem);
}

.service-detail p {
  margin-top: 12px;
}

.article-body {
  width: min(900px, calc(100% - 32px));
  margin: 0 auto;
}

.article-body h2 {
  margin-top: 36px;
  font-size: 1.75rem;
}

.article-body p {
  margin-top: 13px;
  font-size: 1.06rem;
}

.final-cta {
  text-align: center;
  padding: 80px 0;
  background:
    linear-gradient(135deg, rgba(214, 168, 79, 0.18), rgba(5, 5, 5, 0.86)),
    url("../images/غسيل خارجي بالبخار.webp") center / cover no-repeat;
}

.final-cta h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

.final-cta p {
  margin: 14px auto 0;
  width: min(650px, 100%);
}

.cta-actions {
  justify-content: center;
}

.site-footer {
  padding: 54px 0 24px;
  background: #050505;
  border-top: 1px solid var(--border-color);
}

.footer-main {
  text-align: center;
  display: grid;
  justify-items: center;
  gap: 18px;
  padding-bottom: 30px;
}

.footer-main img {
  width: 150px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 16px 24px;
}

.footer-links a:hover {
  color: var(--gold-bright);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid var(--border-color);
  font-size: 1rem;
  color: var(--muted);
}

.footer-bottom p {
  margin-top: 8px;
}

.footer-bottom a {
  color: var(--gold-bright);
  font-weight: 700;
}

.footer-bottom a:hover {
  color: var(--gold);
}

.footer-powered {
  direction: ltr;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}

.footer-powered .line {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 60;
  width: 58px;
  height: 58px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: #111;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold));
  box-shadow: 0 0 0 0 rgba(242, 201, 109, 0.42), 0 18px 42px rgba(0, 0, 0, 0.5);
  animation: pulse 2.2s infinite;
  font-size: 0;
  line-height: 1;
}

.floating-whatsapp::before {
  width: 30px;
  height: 30px;
}

.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
}

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

@keyframes pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(242, 201, 109, 0.42), 0 18px 42px rgba(0, 0, 0, 0.5);
  }
  70% {
    box-shadow: 0 0 0 15px rgba(242, 201, 109, 0), 0 18px 42px rgba(0, 0, 0, 0.5);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(242, 201, 109, 0), 0 18px 42px rgba(0, 0, 0, 0.5);
  }
}

@keyframes steam {
  from {
    transform: translate3d(0, 0, 0) scale(0.95);
    opacity: 0.42;
  }
  to {
    transform: translate3d(-28px, -16px, 0) scale(1.08);
    opacity: 0.75;
  }
}

@keyframes gallery-scroll {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(50%);
  }
}

@media (max-width: 980px) {
  .nav-links,
  .nav-actions .desktop-only {
    display: none;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: fixed;
    inset: 86px 16px auto 16px;
    display: grid;
    gap: 6px;
    padding: 18px;
    border: 1px solid var(--border-color);
    border-radius: var(--radius);
    background: rgba(5, 5, 5, 0.96);
    transform: translateY(-16px);
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .nav-open .nav-links {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .nav-link {
    padding: 12px;
  }

  .hero-inner,
  .split,
  .grid-2 {
    grid-template-columns: 1fr;
  }

  .hero-panel {
    min-height: 260px;
  }

  .hero-visual,
  .hero-visual > img {
    height: 360px;
    min-height: 360px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .section {
    padding: 68px 0;
  }

  .nav {
    height: 76px;
  }

  .brand img {
    width: 54px;
  }

  .brand {
    min-width: auto;
  }

  .brand-name strong {
    font-size: 0.96rem;
  }

  .brand-name span {
    font-size: 0.66rem;
  }

  .nav-links {
    inset-top: 76px;
  }

  .hero {
    min-height: auto;
    height: auto;
    padding: 106px 0 52px;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(5, 5, 5, 0.88), rgba(5, 5, 5, 0.74)),
      url("../images/واقف بضهره وخلفية جراش.webp") center / cover no-repeat;
  }

  .hero-panel {
    display: none;
  }

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
  }

  .service-card img,
  .article-card img {
    height: 230px;
  }

  .proof img {
    height: 270px;
  }

  .split-image,
  .split-image img {
    min-height: 300px;
    max-height: 360px;
  }

  .service-detail {
    grid-template-columns: 1fr;
    padding: 20px;
  }

  .service-detail-media img {
    height: 220px;
  }

  .footer-powered {
    flex-direction: column;
    gap: 4px;
  }

  .footer-powered .sep {
    display: none;
  }
}

@media (max-width: 520px) {
  .container {
    width: min(100% - 24px, 1160px);
  }

  .btn {
    width: 100%;
  }

  .hero-actions,
  .cta-actions,
  .card-actions {
    width: 100%;
  }

  .page-hero {
    padding-top: 124px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
