:root {
  --bg: #06070a;
  --bg-soft: #0d1016;
  --card: #11151d;
  --card-2: #171c25;
  --text: #f7f8fb;
  --muted: #a8b0bd;
  --muted-2: #747d8c;
  --red: #e01f2f;
  --red-dark: #91141e;
  --amber: #f7b733;
  --chrome: #d7dde6;
  --line: rgba(255, 255, 255, 0.11);
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.48);
  --header-height: 82px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 86px;
}

body {
  min-height: 100vh;
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--text);
  overflow-x: hidden;
  cursor: none;
}

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

a,
button {
  color: inherit;
}

a,
button,
input,
select,
textarea {
  font: inherit;
}

a,
button,
.service-card,
.gallery-item,
.video-card,
.package-card,
.review-card,
.direct-link,
.contact-cards a,
.lang-btn {
  cursor: none;
}

::selection {
  background: var(--red);
  color: white;
}

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

::-webkit-scrollbar-track {
  background: var(--bg);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(var(--red), var(--amber));
  border-radius: 99px;
}

.cursor-dot,
.cursor-ring {
  position: fixed;
  left: 0;
  top: 0;
  transform: translate(-50%, -50%);
  pointer-events: none;
  z-index: 99999;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--amber);
}

.cursor-ring {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(247, 183, 51, 0.8);
  border-radius: 50%;
  transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.cursor-ring.hovering {
  width: 58px;
  height: 58px;
  border-color: rgba(224, 31, 47, 0.9);
  background: rgba(224, 31, 47, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-height);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 0 clamp(1rem, 5vw, 4rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(6, 7, 10, 0.72);
  backdrop-filter: blur(18px);
  transition: height 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  height: 66px;
  background: rgba(6, 7, 10, 0.96);
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
  color: var(--text);
  text-decoration: none;
  min-width: 0;
}

.brand-mark {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 183, 51, 0.55);
  background: radial-gradient(circle at 35% 20%, rgba(247, 183, 51, 0.25), transparent 45%), linear-gradient(135deg, #121721, #08090d);
  color: var(--amber);
  font-family: "Orbitron", sans-serif;
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  box-shadow: 0 0 30px rgba(224, 31, 47, 0.17);
}

.brand-text {
  font-family: "Orbitron", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  white-space: nowrap;
}

.brand-text strong {
  color: var(--red);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.1rem);
}

.desktop-nav a,
.footer-links a {
  color: rgba(247, 248, 251, 0.76);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  transition: color 0.25s ease;
  white-space: nowrap;
}

.desktop-nav a:hover,
.footer-links a:hover {
  color: var(--amber);
}

.nav-cta {
  padding: 0.75rem 1.35rem;
  border: 1px solid rgba(224, 31, 47, 0.65);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white !important;
  box-shadow: 0 12px 34px rgba(224, 31, 47, 0.28);
}

.header-actions {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
}

.language-switch {
  display: inline-flex;
  align-items: center;
  padding: 0.22rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
}

.lang-btn {
  min-width: 42px;
  min-height: 32px;
  border: 0;
  background: transparent;
  color: rgba(247, 248, 251, 0.68);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  transition: color 0.25s ease, background 0.25s ease;
}

.lang-btn.active {
  color: #fff;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
}

.menu-toggle,
.mobile-close {
  display: none;
  background: none;
  border: 0;
  color: white;
}

.menu-toggle {
  width: 42px;
  height: 42px;
  flex-direction: column;
  justify-content: center;
  gap: 6px;
}

.menu-toggle span {
  display: block;
  height: 2px;
  width: 28px;
  background: white;
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 1100;
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 1.25rem;
  padding: 5rem 1.25rem 2rem;
  background: rgba(6, 7, 10, 0.98);
  backdrop-filter: blur(20px);
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  color: white;
  font-family: "Orbitron", sans-serif;
  font-size: clamp(1.5rem, 7vw, 3rem);
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-align: center;
}

.mobile-menu .mobile-whatsapp {
  margin-top: 0.5rem;
  padding: 0.9rem 1.2rem;
  width: min(320px, 100%);
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  font-size: 1.1rem;
}

.mobile-close {
  display: block;
  position: absolute;
  right: 1.5rem;
  top: 1rem;
  font-size: 2.5rem;
}

.hero {
  min-height: 100svh;
  position: relative;
  display: grid;
  align-items: center;
  padding: 9rem clamp(1rem, 5vw, 4rem) 5rem;
  overflow: hidden;
}

.hero-video,
.hero-overlay,
.hero-grid {
  position: absolute;
  inset: 0;
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
}

.hero-overlay {
  background:
    radial-gradient(circle at 72% 42%, rgba(224, 31, 47, 0.20), transparent 35%),
    linear-gradient(90deg, rgba(6, 7, 10, 0.96), rgba(6, 7, 10, 0.67), rgba(6, 7, 10, 0.34)),
    linear-gradient(180deg, rgba(6, 7, 10, 0.22), var(--bg) 100%);
  z-index: 1;
}

.hero-grid {
  z-index: 2;
  opacity: 0.11;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.42) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.42) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: linear-gradient(to bottom, black, transparent 78%);
}

.hero-content,
.hero-stats {
  position: relative;
  z-index: 3;
}

.hero-content {
  max-width: 800px;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--amber);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow span:first-child {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--red);
  box-shadow: 0 0 22px var(--red);
  flex: 0 0 10px;
}

h1,
h2 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 1200px;
  margin: 1.4rem 0 1.3rem;
  font-size: clamp(3.1rem, 8.8vw, 8.7rem);
  line-height: 0.92;
  text-shadow: 0 28px 80px rgba(0, 0, 0, 0.55);
}

h1 em,
h2 em {
  color: var(--red);
  font-style: normal;
}

.hero-content p {
  max-width: 640px;
  color: var(--muted);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2.4rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0.9rem 1.55rem;
  text-decoration: none;
  border: 1px solid transparent;
  color: white;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.82rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.btn:hover {
  transform: translateY(-3px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  box-shadow: 0 18px 44px rgba(224, 31, 47, 0.30);
}

.btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(12px);
}

.btn-secondary:hover {
  border-color: rgba(247, 183, 51, 0.8);
  box-shadow: 0 18px 44px rgba(247, 183, 51, 0.10);
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(120px, 1fr));
  gap: 1px;
  width: min(720px, 100%);
  margin-top: 4.2rem;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-stats div {
  padding: 1.3rem;
  background: rgba(13, 16, 22, 0.78);
  backdrop-filter: blur(16px);
}

.hero-stats strong {
  display: block;
  color: white;
  font-family: "Orbitron", sans-serif;
  font-size: 1.55rem;
  margin-bottom: 0.35rem;
}

.hero-stats span {
  color: var(--muted);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.section,
.split-section,
.contact {
  padding: 6.5rem clamp(1rem, 5vw, 4rem);
}

.section-header {
  max-width: 900px;
  margin-bottom: 3rem;
}

.section-header h2,
.split-content h2,
.contact-info h2 {
  margin-top: 0.8rem;
  font-size: clamp(2.1rem, 5vw, 4.7rem);
  line-height: 1.02;
}

.services {
  background: linear-gradient(180deg, var(--bg), #0a0d12);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.09);
}

.service-card {
  min-height: 280px;
  padding: 2rem;
  background: linear-gradient(180deg, rgba(23, 28, 37, 0.95), rgba(13, 16, 22, 0.95));
  position: relative;
  overflow: hidden;
  transition: transform 0.25s ease, background 0.25s ease;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--red), var(--amber), transparent);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  background: linear-gradient(180deg, rgba(35, 41, 54, 0.98), rgba(13, 16, 22, 0.96));
}

.service-card:hover::after {
  transform: scaleX(1);
}

.service-icon {
  width: 56px;
  height: 56px;
  display: grid;
  place-items: center;
  margin-bottom: 1.35rem;
  border: 1px solid rgba(247, 183, 51, 0.32);
  background: rgba(247, 183, 51, 0.07);
  font-size: 1.4rem;
}

.service-card h3,
.video-card h3,
.package-card h3,
.contact-panel h3 {
  font-size: 1.18rem;
  margin-bottom: 0.8rem;
}

.service-card p,
.video-card p,
.package-card p,
.split-content p,
.contact-info p,
.review-card p,
.contact-panel p {
  color: var(--muted);
  line-height: 1.75;
}

.split-section {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 4rem;
  align-items: center;
  background: radial-gradient(circle at 20% 40%, rgba(224, 31, 47, 0.15), transparent 34%), var(--bg-soft);
}

.split-image {
  position: relative;
  min-height: 560px;
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.split-image img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(1.12) contrast(1.08);
}

.split-image::after {
  content: "ALSHAHOUD";
  position: absolute;
  left: 1.5rem;
  bottom: 1.2rem;
  font-family: "Orbitron", sans-serif;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.18em;
  font-weight: 800;
}

.split-content p {
  margin: 1.3rem 0 2rem;
  max-width: 640px;
}

.feature-list {
  display: grid;
  gap: 0.9rem;
}

.feature-list div {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.045);
}

.feature-list strong {
  color: var(--amber);
  font-family: "Orbitron", sans-serif;
}

.gallery {
  background: #080a0e;
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  grid-auto-rows: 260px;
  gap: 1rem;
}

.gallery-item {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
}

.gallery-item.large {
  grid-row: span 2;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(1.1) contrast(1.05);
  transition: transform 0.55s ease;
}

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

.gallery-item figcaption {
  position: absolute;
  left: 1rem;
  bottom: 1rem;
  padding: 0.55rem 0.8rem;
  background: rgba(6, 7, 10, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: white;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-size: 0.73rem;
  font-weight: 800;
  backdrop-filter: blur(12px);
}

.videos {
  background: radial-gradient(circle at 70% 20%, rgba(247, 183, 51, 0.08), transparent 30%), var(--bg);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.25rem;
}

.video-card {
  border: 1px solid var(--line);
  background: var(--card);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.video-card video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  background: black;
}

.video-card div {
  padding: 1.35rem;
}

.packages {
  background: var(--bg-soft);
}

.package-grid,
.review-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.package-card,
.review-card {
  min-height: 300px;
  padding: 2rem;
  border: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(23, 28, 37, 0.98), rgba(10, 13, 18, 0.98));
  box-shadow: var(--shadow);
}

.package-card.featured {
  border-color: rgba(224, 31, 47, 0.65);
  background: radial-gradient(circle at 35% 5%, rgba(224, 31, 47, 0.22), transparent 35%), linear-gradient(180deg, rgba(23, 28, 37, 0.98), rgba(10, 13, 18, 0.98));
}

.package-card span {
  display: inline-block;
  margin-bottom: 1.2rem;
  color: var(--amber);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 900;
}

.package-card a {
  display: inline-flex;
  margin-top: 1.4rem;
  color: white;
  text-decoration: none;
  border-bottom: 1px solid var(--red);
  padding-bottom: 0.3rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.78rem;
}

.reviews {
  background: #080a0e;
}

.review-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin: -1rem 0 2rem;
}

.review-card {
  min-height: 230px;
}

.stars {
  color: var(--amber);
  letter-spacing: 0.1em;
  font-size: 1.15rem;
  margin-bottom: 1rem;
}

.review-card span {
  display: block;
  color: var(--muted-2);
  margin-top: 1.4rem;
}

.contact {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3rem;
  align-items: start;
  background:
    linear-gradient(rgba(6, 7, 10, 0.88), rgba(6, 7, 10, 0.96)),
    url("../assets/al10.avif") center / cover fixed;
}

.contact-info p {
  max-width: 580px;
  margin: 1.2rem 0 2rem;
}

.contact-cards {
  display: grid;
  gap: 0.8rem;
}

.contact-cards div,
.contact-cards a {
  display: grid;
  gap: 0.35rem;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  backdrop-filter: blur(12px);
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.contact-cards a:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 183, 51, 0.6);
  background: rgba(247, 183, 51, 0.075);
}

.contact-cards strong {
  color: white;
}

.contact-cards span {
  color: var(--muted);
}

.contact-panel {
  padding: 2rem;
  border: 1px solid var(--line);
  background: rgba(13, 16, 22, 0.88);
  backdrop-filter: blur(16px);
  box-shadow: var(--shadow);
}

.contact-panel h3 {
  font-family: "Orbitron", sans-serif;
  text-transform: uppercase;
}

.contact-panel > p {
  margin-bottom: 1.3rem;
}

.direct-links {
  display: grid;
  gap: 0.9rem;
}

.direct-link {
  display: flex;
  gap: 1rem;
  align-items: center;
  min-height: 82px;
  padding: 1rem;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.055);
  color: white;
  text-decoration: none;
  transition: transform 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.direct-link:hover {
  transform: translateY(-3px);
  border-color: rgba(247, 183, 51, 0.6);
  background: rgba(247, 183, 51, 0.075);
}

.direct-link.whatsapp {
  border-color: rgba(37, 211, 102, 0.32);
  background: linear-gradient(135deg, rgba(37, 211, 102, 0.18), rgba(255, 255, 255, 0.055));
}

.direct-link > span {
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(247, 183, 51, 0.28);
  background: rgba(247, 183, 51, 0.07);
  font-size: 1.3rem;
}

.direct-link strong,
.direct-link small {
  display: block;
}

.direct-link strong {
  margin-bottom: 0.25rem;
  font-size: 0.95rem;
}

.direct-link small {
  color: var(--muted);
  line-height: 1.4;
}

.footer {
  display: grid;
  gap: 1.1rem;
  padding: 3rem clamp(1rem, 5vw, 4rem);
  border-top: 1px solid var(--line);
  background: #040508;
}

.footer p,
.footer small {
  color: var(--muted-2);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1.2rem;
}

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

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

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 1280px) {
  .desktop-nav {
    gap: 1.15rem;
  }

  .desktop-nav a {
    font-size: 0.72rem;
  }

  .brand-text {
    font-size: 0.82rem;
  }
}

@media (max-width: 1180px) {
  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .gallery-item.large {
    grid-column: span 2;
    grid-row: span 1;
  }
}

@media (max-width: 1040px) {
  body,
  .service-card,
  .gallery-item,
  .video-card,
  .package-card,
  .review-card {
    cursor: auto;
  }

  a,
  a *,
  button,
  button *,
  .btn,
  .btn *,
  .direct-link,
  .direct-link *,
  .contact-cards a,
  .contact-cards a *,
  .lang-btn,
  .lang-btn *,
  .menu-toggle,
  .menu-toggle *,
  .mobile-menu a,
  .mobile-menu a * {
    cursor: pointer;
    user-select: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none;
  }

  .desktop-nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .hero-stats,
  .split-section,
  .video-grid,
  .package-grid,
  .review-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .split-image {
    min-height: 420px;
  }

  .contact {
    background-attachment: scroll;
  }
}

@media (max-width: 760px) {
  :root {
    --header-height: 72px;
  }

  .site-header {
    height: var(--header-height);
  }

  .brand-text {
    font-size: 0.72rem;
    letter-spacing: 0.09em;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
  }

  .language-switch {
    transform: scale(0.92);
    transform-origin: right center;
  }

  .hero {
    padding-top: 7.5rem;
    padding-bottom: 3rem;
  }

  h1 {
    font-size: clamp(2.55rem, 14vw, 4.8rem);
  }

  .section,
  .split-section,
  .contact {
    padding-top: 4.4rem;
    padding-bottom: 4.4rem;
  }

  .section-header {
    margin-bottom: 2rem;
  }

  .section-header h2,
  .split-content h2,
  .contact-info h2 {
    font-size: clamp(2rem, 11vw, 3.4rem);
  }

  .hero-actions,
  .review-actions {
    flex-direction: column;
  }

  .btn {
    width: 100%;
  }

  .hero-stats {
    margin-top: 3rem;
  }

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

  .gallery-item.large {
    grid-column: auto;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
  }

  .service-card,
  .package-card,
  .review-card,
  .contact-panel {
    padding: 1.35rem;
  }

  .direct-link {
    align-items: flex-start;
  }
}

@media (max-width: 480px) {
  .site-header {
    gap: 0.65rem;
    padding-inline: 0.85rem;
  }

  .brand {
    gap: 0.55rem;
  }

  .brand-text {
    max-width: 145px;
    white-space: normal;
    line-height: 1.15;
  }

  .header-actions {
    gap: 0.35rem;
  }

  .lang-btn {
    min-width: 36px;
    min-height: 30px;
    font-size: 0.68rem;
  }

  .menu-toggle {
    width: 36px;
  }

  .menu-toggle span {
    width: 24px;
  }

  .eyebrow,
  .section-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.13em;
  }

  .hero-content p,
  .service-card p,
  .video-card p,
  .package-card p,
  .split-content p,
  .contact-info p,
  .review-card p,
  .contact-panel p {
    font-size: 0.95rem;
  }

  .hero-stats div {
    padding: 1rem;
  }

  .split-image {
    min-height: 300px;
  }

  .feature-list div,
  .direct-link,
  .contact-cards div,
  .contact-cards a {
    padding: 0.9rem;
  }
}

/* =========================================================
   EXTRA RESPONSIVE HARDENING
   Safe down to 324px width: no horizontal overflow.
   ========================================================= */

html,
body {
  width: 100%;
  max-width: 100%;
  overflow-x: clip;
}

body {
  -webkit-text-size-adjust: 100%;
  text-size-adjust: 100%;
}

main,
section,
header,
footer,
.site-header,
.hero,
.section,
.split-section,
.contact,
.footer,
.services-grid,
.gallery-grid,
.video-grid,
.package-grid,
.review-grid,
.contact-cards,
.direct-links,
.hero-stats,
.hero-content,
.section-header,
.split-content,
.contact-info,
.contact-panel,
.footer-links,
.feature-list,
.review-actions,
.hero-actions {
  max-width: 100%;
  min-width: 0;
}

h1,
h2,
h3,
p,
a,
span,
strong,
small,
figcaption,
.btn,
.direct-link,
.service-card,
.package-card,
.review-card,
.contact-cards div,
.contact-cards a {
  overflow-wrap: anywhere;
  word-break: normal;
}

.btn,
.direct-link,
.contact-cards a,
.contact-cards div,
.package-card a {
  max-width: 100%;
}

@media (max-width: 900px) {
  .hero-overlay {
    background:
      radial-gradient(circle at 70% 30%, rgba(224, 31, 47, 0.18), transparent 38%),
      linear-gradient(90deg, rgba(6, 7, 10, 0.98), rgba(6, 7, 10, 0.76)),
      linear-gradient(180deg, rgba(6, 7, 10, 0.28), var(--bg) 100%);
  }
}

@media (max-width: 640px) {
  .mobile-menu {
    gap: 1rem;
    padding-inline: 1rem;
  }

  .mobile-menu a {
    max-width: 100%;
    font-size: clamp(1.25rem, 8vw, 2.35rem);
    line-height: 1.12;
  }

  .hero {
    min-height: auto;
    padding-inline: 1rem;
  }

  h1 {
    font-size: clamp(2.2rem, 13vw, 4rem);
    line-height: 0.98;
    letter-spacing: -0.055em;
  }

  .section-header h2,
  .split-content h2,
  .contact-info h2 {
    font-size: clamp(1.85rem, 10vw, 3rem);
    line-height: 1.08;
    letter-spacing: -0.05em;
  }

  .service-card,
  .package-card,
  .review-card,
  .contact-panel,
  .video-card div {
    padding: 1.15rem;
  }

  .service-card {
    min-height: auto;
  }

  .package-card,
  .review-card {
    min-height: auto;
  }

  .gallery-grid {
    grid-auto-rows: 210px;
    gap: 0.8rem;
  }

  .direct-link {
    gap: 0.8rem;
    min-height: auto;
  }

  .direct-link > span {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
  }

  .footer-links {
    gap: 0.85rem;
  }
}

@media (max-width: 420px) {
  :root {
    --header-height: 66px;
  }

  html {
    scroll-padding-top: 70px;
  }

  .site-header {
    height: var(--header-height);
    padding-inline: 0.7rem;
    gap: 0.45rem;
  }

  .brand {
    gap: 0.45rem;
    flex: 1 1 auto;
    min-width: 0;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    flex: 0 0 36px;
    font-size: 0.72rem;
  }

  .brand-text {
    max-width: 112px;
    font-size: 0.64rem;
    letter-spacing: 0.07em;
    line-height: 1.08;
  }

  .header-actions {
    flex: 0 0 auto;
    gap: 0.25rem;
  }

  .language-switch {
    padding: 0.16rem;
    transform: none;
  }

  .lang-btn {
    min-width: 31px;
    min-height: 28px;
    font-size: 0.62rem;
    letter-spacing: 0.04em;
  }

  .menu-toggle {
    width: 32px;
    height: 36px;
  }

  .menu-toggle span {
    width: 22px;
  }

  .hero {
    padding: 6.2rem 0.85rem 2.6rem;
  }

  .eyebrow,
  .section-kicker {
    gap: 0.45rem;
    font-size: 0.58rem;
    letter-spacing: 0.105em;
    line-height: 1.45;
  }

  .eyebrow span:first-child {
    width: 8px;
    height: 8px;
    flex-basis: 8px;
  }

  h1 {
    margin: 1rem 0;
    font-size: clamp(2rem, 12.5vw, 3.1rem);
    line-height: 1.02;
  }

  .hero-content p,
  .service-card p,
  .video-card p,
  .package-card p,
  .split-content p,
  .contact-info p,
  .review-card p,
  .contact-panel p,
  .contact-cards span,
  .direct-link small {
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .hero-actions,
  .review-actions {
    gap: 0.75rem;
    margin-top: 1.65rem;
  }

  .btn {
    min-height: 48px;
    padding: 0.82rem 0.9rem;
    font-size: 0.72rem;
    letter-spacing: 0.055em;
  }

  .hero-stats {
    margin-top: 2.2rem;
  }

  .hero-stats div {
    padding: 0.9rem;
  }

  .hero-stats strong {
    font-size: 1.25rem;
  }

  .hero-stats span {
    font-size: 0.66rem;
    letter-spacing: 0.065em;
  }

  .section,
  .split-section,
  .contact {
    padding: 3.6rem 0.85rem;
  }

  .section-header {
    margin-bottom: 1.55rem;
  }

  .section-header h2,
  .split-content h2,
  .contact-info h2 {
    margin-top: 0.65rem;
    font-size: clamp(1.65rem, 9.7vw, 2.45rem);
    line-height: 1.12;
  }

  .service-card,
  .package-card,
  .review-card,
  .contact-panel,
  .video-card div {
    padding: 1rem;
  }

  .service-icon {
    width: 48px;
    height: 48px;
    font-size: 1.3rem;
    margin-bottom: 1.1rem;
  }

  .split-image {
    min-height: 250px;
  }

  .split-image::after {
    left: 0.9rem;
    bottom: 0.8rem;
    font-size: 0.68rem;
    letter-spacing: 0.12em;
  }

  .feature-list div {
    align-items: flex-start;
    padding: 0.85rem;
    gap: 0.75rem;
  }

  .gallery-grid {
    grid-auto-rows: 190px;
  }

  .gallery-item figcaption {
    left: 0.7rem;
    right: 0.7rem;
    bottom: 0.7rem;
    width: auto;
    font-size: 0.64rem;
    letter-spacing: 0.075em;
  }

  .video-card video {
    aspect-ratio: 4 / 3;
  }

  .package-card a {
    font-size: 0.69rem;
    letter-spacing: 0.055em;
  }

  .stars {
    font-size: 1rem;
  }

  .contact-cards {
    gap: 0.65rem;
  }

  .contact-cards div,
  .contact-cards a {
    padding: 0.82rem;
  }

  .direct-links {
    gap: 0.68rem;
  }

  .direct-link {
    padding: 0.82rem;
    gap: 0.68rem;
  }

  .direct-link > span {
    width: 38px;
    height: 38px;
    flex-basis: 38px;
    font-size: 1.05rem;
  }

  .direct-link strong {
    font-size: 0.88rem;
  }

  .footer {
    padding: 2.2rem 0.85rem;
  }

  .footer-brand {
    gap: 0.55rem;
  }

  .footer .brand-text {
    max-width: none;
  }
}

@media (max-width: 360px) {
  .site-header {
    padding-inline: 0.55rem;
  }

  .brand-text {
    max-width: 94px;
    font-size: 0.58rem;
    letter-spacing: 0.055em;
  }

  .brand-mark {
    width: 34px;
    height: 34px;
    flex-basis: 34px;
    font-size: 0.68rem;
  }

  .lang-btn {
    min-width: 29px;
    min-height: 27px;
    font-size: 0.58rem;
  }

  .menu-toggle {
    width: 30px;
  }

  .menu-toggle span {
    width: 20px;
  }

  h1 {
    font-size: clamp(1.82rem, 12vw, 2.55rem);
    letter-spacing: -0.06em;
  }

  .section-header h2,
  .split-content h2,
  .contact-info h2 {
    font-size: clamp(1.5rem, 9.3vw, 2.15rem);
    letter-spacing: -0.055em;
  }

  .mobile-menu a {
    font-size: clamp(1.08rem, 7.2vw, 1.85rem);
  }

  .mobile-menu .mobile-whatsapp {
    font-size: 0.95rem;
  }

  .hero,
  .section,
  .split-section,
  .contact,
  .footer {
    padding-inline: 0.75rem;
  }
}


@media (max-width: 335px) {
  .brand-text {
    max-width: 84px;
    font-size: 0.54rem;
  }

  .brand-mark {
    width: 32px;
    height: 32px;
    flex-basis: 32px;
  }

  .lang-btn {
    min-width: 27px;
    min-height: 26px;
  }

  .menu-toggle {
    width: 28px;
  }

  .menu-toggle span {
    width: 18px;
  }

  .btn {
    font-size: 0.68rem;
    padding-inline: 0.75rem;
  }
}



@media (max-width: 1024px) {
  html,
  body,
  * {
    cursor: auto !important;
  }

  a,
  a *,
  button,
  button *,
  .btn,
  .btn *,
  .lang-btn,
  .lang-btn *,
  .menu-toggle,
  .menu-toggle *,
  .mobile-close,
  .mobile-close *,
  .mobile-menu a,
  .mobile-menu a *,
  .direct-link,
  .direct-link *,
  .contact-cards a,
  .contact-cards a * {
    cursor: pointer !important;
    user-select: none;
  }

  .cursor-dot,
  .cursor-ring {
    display: none !important;
    opacity: 0 !important;
    visibility: hidden !important;
    pointer-events: none !important;
  }
}