:root {
  --bg: #050505;
  --bg-soft: #0d0d0d;
  --panel: rgba(15, 15, 15, 0.88);
  --panel-strong: #121212;
  --text: #f7f2e8;
  --muted: #ccc2af;
  --gold: #c79714;
  --gold-soft: #f1d17a;
  --accent: #d84e30;
  --line: rgba(255, 255, 255, 0.08);
  --success: #33a06f;
  --shadow: 0 25px 60px rgba(0, 0, 0, 0.45);
  --radius: 26px;
  --radius-sm: 18px;
  --container: min(1180px, calc(100vw - 32px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: "Cairo", "Tajawal", system-ui, sans-serif;
  background:
    radial-gradient(circle at top right, rgba(199, 151, 20, 0.22), transparent 28%),
    radial-gradient(circle at left center, rgba(216, 78, 48, 0.11), transparent 30%),
    linear-gradient(180deg, #020202 0%, #080808 40%, #040404 100%);
  line-height: 1.75;
}

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

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

button,
.button {
  font: inherit;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.page-shell {
  position: relative;
  overflow-x: clip;
}

.glow {
  position: absolute;
  inset: 0 auto auto 0;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(199, 151, 20, 0.18), transparent 65%);
  filter: blur(18px);
  pointer-events: none;
}

.glow.right {
  inset: 280px 0 auto auto;
  background: radial-gradient(circle, rgba(216, 78, 48, 0.14), transparent 65%);
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(5, 5, 5, 0.72);
  border-bottom: 1px solid var(--line);
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand img {
  width: 60px;
  height: 60px;
  border-radius: 18px;
  border: 1px solid rgba(199, 151, 20, 0.2);
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.3);
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong {
  font-family: "Syncopate", "Cairo", sans-serif;
  font-size: 1rem;
  color: var(--gold-soft);
  letter-spacing: 1px;
}

.brand-copy span {
  font-size: 0.87rem;
  color: var(--muted);
}

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

.nav-links a {
  color: var(--muted);
  font-weight: 700;
  transition: color 0.25s ease, transform 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 999px;
  color: #120c00;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 14px 28px rgba(199, 151, 20, 0.24);
  font-weight: 800;
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
}

.nav-toggle svg {
  width: 22px;
  height: 22px;
}

.hero {
  padding: 72px 0 34px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(320px, 0.92fr);
  gap: 42px;
  align-items: center;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border: 1px solid rgba(199, 151, 20, 0.18);
  border-radius: 999px;
  color: var(--gold-soft);
  background: rgba(199, 151, 20, 0.08);
  font-size: 0.92rem;
  font-weight: 800;
}

.hero h1,
.page-hero h1 {
  margin: 18px 0 16px;
  font-size: clamp(2.4rem, 5vw, 4.7rem);
  line-height: 1.06;
  letter-spacing: -0.03em;
}

.hero p,
.page-hero p,
.section-lead {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 68ch;
}

.hero-actions,
.contact-buttons,
.page-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 52px;
  padding: 12px 20px;
  border: 1px solid transparent;
  border-radius: 18px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button-primary {
  color: #130d00;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 30px rgba(199, 151, 20, 0.22);
}

.button-secondary {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
  border-color: rgba(255, 255, 255, 0.08);
}

.button-accent {
  color: white;
  background: linear-gradient(135deg, #d84e30, #a22716);
  box-shadow: 0 18px 30px rgba(168, 39, 22, 0.24);
}

.hero-notes,
.feature-points,
.area-bullets,
.page-list,
.footer-list {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 24px 0 0;
  list-style: none;
}

.hero-notes li,
.feature-points li,
.area-bullets li,
.page-list li {
  position: relative;
  padding-inline-start: 20px;
  color: var(--muted);
}

.hero-notes li::before,
.feature-points li::before,
.area-bullets li::before,
.page-list li::before {
  content: "";
  position: absolute;
  top: 0.8em;
  inset-inline-start: 0;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 0 18px rgba(199, 151, 20, 0.35);
}

.hero-visual {
  position: relative;
}

.visual-card {
  position: relative;
  border-radius: calc(var(--radius) + 8px);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background: var(--panel);
}

.visual-card img {
  aspect-ratio: 16 / 11;
  object-fit: cover;
}

.visual-overlay {
  position: absolute;
  inset: auto 18px 18px 18px;
  padding: 18px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(5, 5, 5, 0), rgba(5, 5, 5, 0.88));
}

.visual-overlay strong {
  display: block;
  font-size: 1.05rem;
}

.floating-badge {
  position: absolute;
  top: 18px;
  inset-inline-end: -10px;
  padding: 14px 16px;
  border-radius: 22px;
  background: rgba(12, 12, 12, 0.92);
  border: 1px solid rgba(199, 151, 20, 0.22);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.36);
}

.floating-badge strong {
  display: block;
  color: var(--gold-soft);
  font-size: 1.45rem;
}

.floating-badge span {
  color: var(--muted);
  font-size: 0.9rem;
}

.stats {
  padding: 12px 0 32px;
}

.stats-grid,
.services-grid,
.article-grid,
.areas-grid,
.gallery-grid,
.review-grid,
.faq-grid,
.footer-grid,
.subgrid,
.contact-grid {
  display: grid;
  gap: 18px;
}

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

.stat-card,
.service-card,
.article-card,
.area-card,
.review-card,
.faq-card,
.contact-card,
.info-panel {
  padding: 22px;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  background: linear-gradient(180deg, rgba(19, 19, 19, 0.92), rgba(10, 10, 10, 0.98));
  box-shadow: 0 14px 38px rgba(0, 0, 0, 0.18);
}

.stat-card strong,
.service-card h3,
.article-card h3,
.area-card h3,
.review-card h3,
.contact-card h3,
.faq-card h3 {
  margin: 0;
}

.stat-card strong {
  display: block;
  margin-bottom: 6px;
  color: var(--gold-soft);
  font-size: clamp(1.2rem, 3vw, 2rem);
}

.section {
  padding: 58px 0;
}

.section-title {
  margin: 12px 0 10px;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.15;
}

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

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

.service-card,
.article-card,
.area-card,
.review-card {
  position: relative;
  overflow: hidden;
}

.service-card::after,
.article-card::after,
.area-card::after,
.review-card::after {
  content: "";
  position: absolute;
  inset: auto auto 0 0;
  width: 120px;
  height: 120px;
  background: radial-gradient(circle, rgba(199, 151, 20, 0.12), transparent 70%);
  pointer-events: none;
}

.service-card p,
.article-card p,
.area-card p,
.review-card p,
.contact-card p,
.info-panel p,
.faq-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.service-icon,
.article-tag,
.area-tag {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 48px;
  min-height: 48px;
  margin-bottom: 18px;
  padding: 10px 14px;
  border-radius: 16px;
  color: var(--gold-soft);
  background: rgba(199, 151, 20, 0.08);
  border: 1px solid rgba(199, 151, 20, 0.12);
  font-weight: 800;
}

.article-link,
.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 16px;
  color: var(--gold-soft);
  font-weight: 800;
}

.article-link:hover,
.inline-link:hover {
  color: var(--text);
}

.gallery-grid {
  grid-template-columns: 1.3fr 1fr 1fr;
}

.gallery-item {
  position: relative;
  min-height: 260px;
  border-radius: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.gallery-item:hover img {
  transform: scale(1.03);
}

.gallery-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 16px 18px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.84));
}

.sport-tow-section {
  position: relative;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0)),
    rgba(4, 4, 4, 0.62);
  border-block: 1px solid var(--line);
}

.sport-tow-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.14fr) minmax(320px, 0.86fr);
  gap: 18px;
  margin-top: 26px;
}

.sport-tow-feature,
.sport-tow-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(199, 151, 20, 0.14);
  background: var(--panel-strong);
  box-shadow: var(--shadow);
}

.sport-tow-feature {
  min-height: 580px;
  border-radius: 30px;
}

.sport-tow-feature img,
.sport-tow-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.sport-tow-feature:hover img,
.sport-tow-card:hover img {
  transform: scale(1.025);
}

.sport-tow-feature figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 24px;
  color: var(--text);
  font-weight: 800;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.86));
}

.sport-tow-stack {
  display: grid;
  gap: 18px;
}

.sport-tow-card {
  min-height: 180px;
  border-radius: 24px;
}

.sport-tow-note {
  margin-top: 18px;
  padding: 26px;
  border-radius: 28px;
  border: 1px solid rgba(199, 151, 20, 0.18);
  background:
    linear-gradient(135deg, rgba(199, 151, 20, 0.16), rgba(216, 78, 48, 0.08)),
    rgba(13, 13, 13, 0.94);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.sport-tow-note h3 {
  margin: 0 0 10px;
  color: var(--gold-soft);
  font-size: clamp(1.35rem, 3vw, 2rem);
}

.sport-tow-note p {
  max-width: 86ch;
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.06fr) minmax(320px, 0.94fr);
  gap: 22px;
  align-items: start;
}

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

.faq-card details {
  padding-block: 14px;
  border-top: 1px solid var(--line);
}

.faq-card details:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.faq-card summary {
  cursor: pointer;
  font-weight: 800;
  list-style: none;
}

.faq-card summary::-webkit-details-marker {
  display: none;
}

.faq-card details p {
  margin: 10px 0 0;
}

.cta-band {
  margin-top: 14px;
  padding: 28px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(199, 151, 20, 0.18), rgba(216, 78, 48, 0.12)),
    rgba(12, 12, 12, 0.95);
  border: 1px solid rgba(199, 151, 20, 0.16);
  box-shadow: var(--shadow);
}

.page-hero {
  padding: 54px 0 24px;
}

.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  color: var(--muted);
  font-size: 0.94rem;
}

.breadcrumb a {
  color: var(--gold-soft);
}

.pillar-section {
  display: grid;
  gap: 18px;
}

.local-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.service-cover {
  margin-top: 18px;
}

.service-cover img {
  width: 100%;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: var(--shadow);
}

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

.site-footer {
  padding: 34px 0 22px;
  border-top: 1px solid var(--line);
  background: rgba(4, 4, 4, 0.9);
}

.footer-grid {
  grid-template-columns: 1.1fr 0.9fr 0.9fr;
}

.footer-list {
  margin-top: 16px;
}

.footer-list a {
  color: var(--muted);
}

.footer-list a:hover {
  color: var(--text);
}

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  margin-top: 18px;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 0.92rem;
}

.floating-call {
  position: fixed;
  inset: auto 18px 18px auto;
  z-index: 50;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 18px;
  border-radius: 999px;
  color: #130d00;
  background: linear-gradient(135deg, var(--gold-soft), var(--gold));
  box-shadow: 0 18px 35px rgba(199, 151, 20, 0.32);
  font-weight: 900;
  animation: pulse 2.2s infinite;
}

.floating-call small {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
}

.floating-call strong {
  display: block;
  font-size: 0.95rem;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

@keyframes pulse {
  0%,
  100% {
    transform: translateY(0) scale(1);
  }

  50% {
    transform: translateY(-2px) scale(1.02);
  }
}

@media (max-width: 1080px) {
  .hero-grid,
  .split,
  .page-hero,
  .footer-grid,
  .contact-grid,
  .local-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid,
  .services-grid,
  .article-grid,
  .areas-grid,
  .review-grid,
  .faq-grid,
  .gallery-grid,
  .sport-tow-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .sport-tow-feature {
    min-height: 440px;
  }
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .nav-links {
    position: absolute;
    top: calc(100% + 8px);
    inset-inline: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border-radius: 22px;
    background: rgba(10, 10, 10, 0.97);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .nav-links.is-open {
    display: flex;
  }

  .nav-cta {
    display: none;
  }

  .hero {
    padding-top: 52px;
  }

  .floating-badge {
    position: static;
    margin-top: 14px;
    inset: auto;
  }
}

@media (max-width: 640px) {
  .stats-grid,
  .services-grid,
  .article-grid,
  .areas-grid,
  .review-grid,
  .faq-grid,
  .gallery-grid,
  .sport-tow-grid {
    grid-template-columns: 1fr;
  }

  .sport-tow-feature,
  .sport-tow-card {
    min-height: 260px;
  }

  .section {
    padding: 46px 0;
  }

  .hero h1,
  .page-hero h1 {
    font-size: clamp(2rem, 10vw, 3rem);
  }

  .button,
  .nav-cta,
  .floating-call {
    width: 100%;
  }

  .hero-actions,
  .contact-buttons,
  .page-hero-actions {
    flex-direction: column;
  }

  .floating-call {
    inset-inline: 16px;
    justify-content: center;
  }
}
