:root {
  --bg: #05080c;
  --panel: rgba(14, 19, 25, 0.9);
  --panel-soft: rgba(19, 25, 32, 0.74);
  --text: #f7f8fb;
  --muted: #c5ccd4;
  --subtle: #8d98a4;
  --red: #ee1721;
  --red-dark: #b60912;
  --gold: #f4b400;
  --line: rgba(255, 255, 255, 0.14);
  --gold-line: rgba(244, 180, 0, 0.72);
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.48);
  --container: min(1320px, calc(100% - 40px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-timeline-name: --page-scroll;
  }
}

body {
  margin: 0;
  font-family: "Cairo", Arial, sans-serif;
  background:
    radial-gradient(circle at 18% 12%, rgba(238, 23, 33, 0.14), transparent 28%),
    linear-gradient(180deg, #030507 0%, #080d12 42%, #05080c 100%);
  color: var(--text);
}

body.nav-open,
body.lightbox-open {
  overflow: hidden;
}

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

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

.site-shell {
  min-height: 100vh;
  overflow: hidden;
}

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

.site-header {
  position: fixed;
  z-index: 20;
  inset: 0 0 auto;
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: max(28px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(1, 3, 5, 0.88), rgba(1, 3, 5, 0.58));
  backdrop-filter: blur(16px);
  direction: ltr;
  transition: height 0.28s ease, background 0.28s ease, box-shadow 0.28s ease;
}

.site-header.is-scrolled {
  height: 72px;
  background: rgba(1, 3, 5, 0.9);
  box-shadow: 0 14px 46px rgba(0, 0, 0, 0.34);
}

.brand {
  width: 150px;
  flex: 0 0 auto;
  transition: width 0.28s ease, transform 0.28s ease;
}

.site-header.is-scrolled .brand {
  width: 128px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 2.8vw, 44px);
  font-size: 15px;
  font-weight: 800;
  direction: rtl;
}

[dir="ltr"] .main-nav {
  direction: ltr;
}

[dir="ltr"] .section-kicker::before,
[dir="ltr"] .eyebrow::before {
  order: 2;
}

.main-nav a {
  position: relative;
  color: #f4f4f5;
  transition: color 0.2s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  right: 0;
  left: 0;
  bottom: -12px;
  height: 2px;
  transform: scaleX(0);
  background: var(--red);
  transition: transform 0.2s ease;
}

.main-nav a:is(:hover, .active) {
  color: var(--red);
}

.main-nav a:is(:hover, .active)::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--text);
  background: rgba(255, 255, 255, 0.05);
}

.menu-toggle svg,
.btn svg,
.service-card svg,
.features svg,
.booking-inner svg,
.socials svg {
  width: 22px;
  height: 22px;
  stroke-width: 2.2;
}

.hero {
  position: relative;
  min-height: 620px;
  display: grid;
  align-items: center;
  padding-block: 120px 180px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

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

.hero-bg {
  background-image: url("back.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.06) translate3d(var(--hero-shift, 0px), var(--hero-rise, 0px), 0);
  transform-origin: center;
  will-change: transform;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.78) 53%, rgba(0, 0, 0, 0.94)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.08) 50%, #05080c 96%);
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(320px, 560px) 1fr;
}

.hero-copy {
  padding-top: 36px;
  animation: heroEntrance 0.9s cubic-bezier(0.2, 0.8, 0.2, 1) both;
}

.eyebrow,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow::before,
.section-kicker::before {
  content: "";
  width: 42px;
  height: 2px;
  background: var(--red);
}

.hero h1 {
  margin: 18px 0 18px;
  max-width: 620px;
  font-size: clamp(38px, 5.2vw, 68px);
  line-height: 1.18;
  font-weight: 900;
}

.hero h1 strong {
  display: block;
  color: var(--red);
}

.hero p {
  margin: 0;
  max-width: 520px;
  color: #eef1f4;
  font-size: clamp(16px, 1.5vw, 20px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin-top: 36px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  min-width: 172px;
  height: 54px;
  padding-inline: 24px;
  border-radius: 8px;
  font-weight: 900;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--red), #ff313a);
  box-shadow: 0 16px 34px rgba(238, 23, 33, 0.25);
}

.btn-outline {
  border: 1px solid var(--gold-line);
  background: rgba(6, 9, 13, 0.58);
}

.services-wrap {
  position: relative;
  z-index: 3;
  margin-top: -92px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 22px;
}

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 150px;
  padding: 24px 18px 20px;
  text-align: center;
  border: 1px solid rgba(244, 180, 0, 0.54);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(21, 27, 35, 0.94), rgba(10, 14, 20, 0.91));
  box-shadow: var(--shadow);
}

.service-card::before,
.review-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.13) 45%, transparent 62%);
  transform: translateX(130%) skewX(-18deg);
  transition: transform 0.9s ease;
  pointer-events: none;
}

.service-card.is-visible::before,
.review-card.is-visible::before {
  transform: translateX(-130%) skewX(-18deg);
}

.service-card:hover {
  transform: translateY(-5px);
  border-color: rgba(244, 180, 0, 0.92);
}

.service-card svg {
  width: 38px;
  height: 38px;
  margin-inline: auto;
  color: var(--gold);
  filter: drop-shadow(0 0 12px rgba(244, 180, 0, 0.24));
}

.service-card:nth-child(2) svg,
.service-card:nth-child(4) svg {
  color: var(--red);
}

.service-card h2 {
  margin: 12px 0 6px;
  font-size: 18px;
  line-height: 1.35;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.brand-showcase {
  position: relative;
  padding-block: 46px 30px;
  isolation: isolate;
}

.brand-showcase::before {
  content: "";
  position: absolute;
  inset: 8px 0 auto;
  height: min(440px, 58vw);
  background:
    linear-gradient(90deg, rgba(5, 8, 12, 0.96), rgba(5, 8, 12, 0.58), rgba(5, 8, 12, 0.96)),
    linear-gradient(180deg, rgba(5, 8, 12, 0.28), var(--bg)),
    url("866ccec4-e243-470f-8b00-e6cb40069d93.png") center / cover no-repeat;
  opacity: 0.34;
  filter: saturate(0.84) contrast(1.08);
  z-index: -1;
}

.brand-showcase .section-head {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.brand-showcase .section-head h2 {
  margin-bottom: 12px;
}

.brand-showcase .section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.brand-marquee {
  position: relative;
  overflow: hidden;
  margin-top: 26px;
  padding: 18px 0;
  border-block: 1px solid rgba(244, 180, 0, 0.34);
  background:
    linear-gradient(90deg, rgba(238, 23, 33, 0.1), transparent 24%, transparent 76%, rgba(244, 180, 0, 0.1)),
    rgba(4, 7, 11, 0.58);
  box-shadow: 0 20px 70px rgba(0, 0, 0, 0.34);
  direction: ltr;
  mask-image: linear-gradient(90deg, transparent, #000 9%, #000 91%, transparent);
}

.brand-marquee-track {
  display: flex;
  width: max-content;
  gap: 16px;
  animation: brandMarquee 36s linear infinite;
}

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

.brand-logo-card {
  position: relative;
  display: grid;
  place-items: center;
  width: 204px;
  min-height: 154px;
  padding: 20px 16px 16px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 0%, rgba(244, 180, 0, 0.16), transparent 46%),
    linear-gradient(180deg, rgba(22, 28, 35, 0.9), rgba(8, 12, 17, 0.92));
  color: var(--text);
  text-align: center;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.32);
  transform: translateZ(0);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease;
}

.brand-logo-card::before {
  content: "";
  position: absolute;
  inset: -40% auto -40% -70%;
  width: 70%;
  background: linear-gradient(100deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-18deg);
  animation: brandShine 5.6s ease-in-out infinite;
}

.brand-logo-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: rgba(244, 180, 0, 0.72);
  box-shadow: 0 24px 58px rgba(0, 0, 0, 0.46), 0 0 0 1px rgba(244, 180, 0, 0.16);
}

.brand-logo-frame {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 118px;
  height: 68px;
  margin-bottom: 14px;
  padding: 8px;
  border: 1px solid rgba(244, 180, 0, 0.7);
  border-radius: 8px;
  background:
    radial-gradient(circle at 50% 20%, rgba(255, 255, 255, 0.16), transparent 62%),
    rgba(0, 0, 0, 0.34);
  box-shadow: inset 0 0 24px rgba(244, 180, 0, 0.08), 0 0 24px rgba(244, 180, 0, 0.12);
}

.brand-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 14px rgba(255, 255, 255, 0.18));
  opacity: 0.94;
  transform: scale(0.96);
  transition: transform 0.28s ease, opacity 0.28s ease, filter 0.28s ease;
}

.brand-logo-card:hover .brand-logo-frame img {
  opacity: 1;
  transform: scale(1.04);
  filter: grayscale(1) brightness(0) invert(1) drop-shadow(0 0 18px rgba(244, 180, 0, 0.28));
}

.brand-logo-card strong {
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 18px;
  line-height: 1.2;
  letter-spacing: 0;
}

.brand-logo-card small {
  margin-top: 7px;
  color: var(--subtle);
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  text-transform: uppercase;
}

@keyframes brandMarquee {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@keyframes brandShine {
  0%,
  55% {
    transform: translateX(0) skewX(-18deg);
  }

  100% {
    transform: translateX(320%) skewX(-18deg);
  }
}

.about-section {
  padding-block: 34px 18px;
}

.seo-section,
.inner-section {
  padding-block: 54px;
}

.seo-grid,
.inner-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr);
  gap: 34px;
  align-items: start;
}

.seo-section h2,
.inner-hero h1,
.inner-section h2 {
  margin: 12px 0 14px;
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.3;
  font-weight: 900;
}

.seo-section p,
.inner-section p,
.inner-hero p,
.specialty-card p,
.faq-item p {
  color: var(--muted);
  line-height: 1.85;
}

.seo-list,
.info-panel {
  padding: 24px;
  border: 1px solid rgba(244, 180, 0, 0.44);
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(17, 22, 29, 0.82), rgba(8, 12, 17, 0.78));
  box-shadow: var(--shadow);
}

.seo-list h3,
.info-panel h2,
.specialty-card h2,
.faq-item h3 {
  margin: 0 0 12px;
}

.seo-list ul,
.info-panel ul,
.content-list {
  margin: 0;
  padding: 0 20px 0 0;
  color: var(--muted);
  line-height: 1.9;
}

.inner-hero {
  position: relative;
  min-height: 430px;
  display: grid;
  align-items: center;
  padding-block: 128px 72px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.inner-hero::before,
.inner-hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.inner-hero::before {
  background: url("back.png") center / cover;
  opacity: 0.42;
  transform: scale(1.04);
}

.inner-hero::after {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.84)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.3), #05080c 96%);
}

.inner-hero .container {
  position: relative;
  z-index: 1;
}

.inner-hero h1 {
  max-width: 880px;
}

.inner-hero p {
  max-width: 760px;
  font-size: 18px;
}

.brand-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  max-width: 980px;
  margin-top: 28px;
}

.brand-strip span {
  display: inline-flex;
  align-items: center;
  min-height: 38px;
  padding: 8px 16px;
  border: 1px solid rgba(244, 180, 0, 0.34);
  border-radius: 8px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02)),
    rgba(6, 10, 14, 0.72);
  color: #f5f7fa;
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.24);
}

.specialties-grid,
.cars-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.specialty-card,
.faq-item {
  position: relative;
  overflow: hidden;
  min-height: 100%;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.015)),
    var(--panel-soft);
  transition: border-color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
}

.specialty-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(244, 180, 0, 0.16), transparent 30%);
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.specialty-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 180, 0, 0.72);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.42);
}

.specialty-card:hover::before {
  opacity: 1;
}

.luxury-card {
  border-color: rgba(244, 180, 0, 0.58);
  background:
    linear-gradient(145deg, rgba(244, 180, 0, 0.1), rgba(238, 23, 33, 0.045)),
    linear-gradient(180deg, rgba(23, 29, 37, 0.92), rgba(8, 12, 17, 0.86));
}

.specialty-card svg {
  position: relative;
  width: 34px;
  height: 34px;
  color: var(--gold);
  margin-bottom: 12px;
}

.specialty-card h2,
.specialty-card p {
  position: relative;
}

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

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

.directory-grid {
  display: grid;
  gap: 18px;
}

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

.directory-card {
  display: grid;
  align-content: start;
  gap: 10px;
  min-height: 190px;
  padding: 22px;
  border: 1px solid rgba(244, 180, 0, 0.36);
  border-radius: 8px;
  background:
    linear-gradient(145deg, rgba(244, 180, 0, 0.08), rgba(238, 23, 33, 0.035)),
    rgba(255, 255, 255, 0.035);
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.directory-card:hover {
  transform: translateY(-4px);
  border-color: rgba(244, 180, 0, 0.72);
  background:
    linear-gradient(145deg, rgba(244, 180, 0, 0.12), rgba(238, 23, 33, 0.06)),
    rgba(255, 255, 255, 0.05);
}

.directory-card svg {
  width: 34px;
  height: 34px;
  color: var(--gold);
}

.directory-card strong {
  color: #fff;
  font-size: 18px;
  line-height: 1.45;
}

.directory-card span {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.landing-links {
  display: grid;
  gap: 10px;
}

.landing-links a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 11px 13px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.035);
  color: var(--muted);
  line-height: 1.55;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.landing-links a::after {
  content: "‹";
  color: var(--gold);
  font-size: 20px;
  line-height: 1;
}

.landing-links a:hover {
  color: #fff;
  border-color: rgba(244, 180, 0, 0.56);
  background: rgba(244, 180, 0, 0.07);
}

.landing-panel > svg {
  width: 42px;
  height: 42px;
  color: var(--gold);
  margin-bottom: 12px;
}

.landing-photo-row {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 16px;
}

.landing-photo-row img {
  width: 100%;
  height: clamp(220px, 26vw, 360px);
  object-fit: cover;
  border: 1px solid rgba(244, 180, 0, 0.42);
  border-radius: 8px;
  filter: saturate(0.95) contrast(1.04);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.34);
}

.breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  color: var(--muted);
  font-size: 14px;
}

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

[dir="ltr"] .seo-list ul,
[dir="ltr"] .info-panel ul,
[dir="ltr"] .content-list {
  padding: 0 0 0 20px;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 1fr) minmax(360px, 1fr);
  gap: 34px;
  align-items: center;
}

.about-media {
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.about-media img {
  width: 100%;
  aspect-ratio: 1.95 / 1;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
  transition: transform 0.8s ease;
}

.about-media:hover img {
  transform: scale(1.07);
}

.about-copy {
  text-align: center;
}

.about-copy h2,
.reviews-section h2 {
  margin: 10px 0;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 900;
}

.latin {
  margin: 0 0 8px;
  color: var(--muted);
  direction: ltr;
  font-weight: 800;
}

.about-copy > p:not(.latin) {
  margin: 0 auto;
  max-width: 620px;
  color: var(--muted);
  line-height: 1.8;
}

.features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 26px;
}

.features div {
  min-height: 126px;
  padding: 12px 8px;
}

.features svg {
  width: 38px;
  height: 38px;
  color: var(--gold);
  animation: iconPulse 2.8s ease-in-out infinite;
}

.features h3 {
  margin: 8px 0 4px;
  font-size: 15px;
}

.features p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.65;
}

.booking-band {
  padding-block: 28px 20px;
}

.booking-page-section {
  padding-block: 42px 68px;
}

.booking-hero {
  min-height: 520px;
}

.booking-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(320px, 1.15fr);
  gap: 28px;
  align-items: stretch;
  padding: 26px;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background:
    radial-gradient(circle at 16% 0%, rgba(238, 23, 33, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(17, 22, 29, 0.96), rgba(6, 10, 15, 0.94));
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.42);
}

.booking-page-panel {
  margin-top: -92px;
  position: relative;
  z-index: 4;
}

.booking-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.booking-copy h2 {
  margin: 0;
  font-size: clamp(28px, 4vw, 46px);
  line-height: 1.25;
}

.booking-copy p {
  margin: 0;
  color: var(--muted);
  line-height: 1.9;
}

.booking-copy address {
  margin: 0;
  color: #fff;
  font-style: normal;
  font-weight: 800;
  line-height: 1.7;
}

.booking-contact-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.booking-contact-row .contact-pill {
  min-height: 62px;
  border: 1px solid rgba(244, 180, 0, 0.38);
  border-radius: 8px;
  background: rgba(3, 7, 11, 0.58);
}

.booking-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px 18px;
  align-items: end;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(0, 0, 0, 0.24);
}

.booking-form label {
  display: grid;
  grid-template-rows: 32px 52px 22px;
  gap: 8px;
  align-items: start;
  min-width: 0;
}

.booking-captcha,
.booking-message {
  grid-column: 1 / -1;
}

.booking-form label > span {
  display: flex;
  align-items: end;
  min-height: 32px;
  color: #fff;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.25;
}

.booking-form input,
.booking-form select {
  width: 100%;
  min-height: 52px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: #fff;
  font: inherit;
  font-size: 16px;
  font-weight: 700;
  padding: 0 14px;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.booking-form select {
  appearance: auto;
}

.booking-form option {
  background: #111820;
  color: #fff;
}

.booking-form input:focus,
.booking-form select:focus {
  border-color: rgba(244, 180, 0, 0.88);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 3px rgba(244, 180, 0, 0.14);
}

.booking-form input.is-invalid,
.booking-form select.is-invalid {
  border-color: rgba(238, 23, 33, 0.9);
  box-shadow: 0 0 0 3px rgba(238, 23, 33, 0.13);
}

.booking-form small {
  min-height: 22px;
  color: var(--subtle);
  line-height: 1.5;
}

.booking-submit {
  justify-self: end;
  align-self: start;
  min-width: 190px;
  border: 0;
  cursor: pointer;
}

.booking-submit:disabled {
  cursor: wait;
  opacity: 0.72;
}

.booking-submit.is-loading {
  transform: none;
}

@media (min-width: 861px) {
  .booking-captcha {
    grid-column: auto;
  }

  .booking-submit {
    min-height: 52px;
    align-self: center;
    justify-self: stretch;
    margin-top: 40px;
  }
}

.booking-message {
  min-height: 30px;
  margin: 0;
  padding: 0;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.7;
}

.booking-message.is-success {
  color: #23d366;
}

.booking-message.is-error {
  color: #ff7178;
}

.booking-message a {
  color: #fff;
  text-decoration: underline;
  text-decoration-color: rgba(244, 180, 0, 0.76);
  text-underline-offset: 4px;
}

.booking-inner {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1.25fr;
  min-height: 68px;
  overflow: hidden;
  border: 1px solid var(--gold-line);
  border-radius: 8px;
  background: rgba(3, 7, 11, 0.86);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.36);
  transform-style: preserve-3d;
}

.booking-inner .booking-cta:hover,
.booking-inner .contact-pill:hover {
  transform: translateY(-2px);
}

.booking-cta,
.contact-pill {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 14px 24px;
}

.booking-cta {
  position: relative;
  justify-content: space-between;
  background: linear-gradient(135deg, #ff1e27 0%, #df0f18 68%, transparent 69%);
  font-size: 18px;
  font-weight: 900;
  isolation: isolate;
}

.booking-cta::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.18), transparent);
  transform: translateX(120%);
  animation: ctaSweep 3.2s ease-in-out infinite;
}

.booking-cta span,
.contact-pill span {
  display: grid;
  line-height: 1.45;
}

.booking-cta span {
  flex: 1;
}

.booking-cta small,
.contact-pill b {
  color: #fff;
}

.contact-pill {
  border-right: 1px solid rgba(244, 180, 0, 0.55);
  color: #fff;
}

.contact-pill svg {
  width: 34px;
  height: 34px;
  color: var(--red);
}

.contact-pill.whatsapp svg {
  color: #23d366;
}

.contact-pill:last-child svg {
  color: var(--gold);
}

.contact-pill span {
  color: #f8fafc;
  direction: ltr;
  text-align: right;
  font-size: 14px;
}

.contact-pill b,
.contact-pill small {
  direction: rtl;
}

.contact-pill b {
  font-size: 13px;
}

.contact-pill small {
  color: var(--muted);
  font-size: 12px;
  line-height: 1.45;
}

.gallery-section {
  position: relative;
  padding-block: 34px 12px;
}

.gallery-section::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.38)),
    radial-gradient(circle at 72% 20%, rgba(244, 180, 0, 0.08), transparent 28%);
}

.section-head {
  display: grid;
  justify-items: center;
  gap: 8px;
  margin-bottom: 24px;
  text-align: center;
}

.section-head h2 {
  margin: 0;
  max-width: 100%;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.35;
  font-weight: 900;
  text-wrap: balance;
}

.gallery-slider {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(244, 180, 0, 0.45);
  border-radius: 8px;
  background: rgba(7, 10, 14, 0.88);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.32);
}

.gallery-track {
  position: relative;
  height: clamp(360px, 48vw, 620px);
}

.gallery-slide {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: #05080c;
  cursor: zoom-in;
  opacity: 0;
  transform: translateX(32px) scale(1.02);
  transition: opacity 0.55s ease, transform 0.55s ease;
  pointer-events: none;
}

.gallery-slide.is-active {
  opacity: 1;
  transform: translateX(0) scale(1);
  pointer-events: auto;
}

.gallery-slider::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.54), transparent 22%, transparent 72%, rgba(0, 0, 0, 0.5)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.42)),
    radial-gradient(circle at center, transparent 34%, rgba(0, 0, 0, 0.22));
  pointer-events: none;
}

.gallery-slider::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 6px;
  pointer-events: none;
}

.gallery-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(0.94) contrast(1.04);
  transform: scale(1.04);
  transition: transform 1.15s ease, filter 0.55s ease;
}

.gallery-slider:hover {
  border-color: rgba(244, 180, 0, 0.9);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.46);
}

.gallery-slider:hover .gallery-slide.is-active img {
  transform: scale(1.08);
  filter: saturate(1.08) contrast(1.08);
}

.gallery-nav {
  position: absolute;
  z-index: 4;
  top: 50%;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(244, 180, 0, 0.62);
  border-radius: 8px;
  color: #fff;
  background: rgba(5, 8, 12, 0.72);
  backdrop-filter: blur(10px);
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.gallery-nav:hover {
  border-color: rgba(244, 180, 0, 0.96);
  background: rgba(238, 23, 33, 0.86);
  transform: translateY(-50%) scale(1.04);
}

.gallery-prev {
  right: 22px;
}

.gallery-next {
  left: 22px;
}

.gallery-dots {
  position: absolute;
  z-index: 4;
  right: 50%;
  bottom: 18px;
  display: flex;
  gap: 9px;
  transform: translateX(50%);
}

.gallery-dots button {
  width: 34px;
  height: 4px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
  cursor: pointer;
  transition: width 0.22s ease, background 0.22s ease;
}

.gallery-dots button.is-active {
  width: 54px;
  background: var(--gold);
}

.gallery-lightbox {
  position: fixed;
  inset: 0;
  z-index: 50;
  display: grid;
  place-items: center;
  padding: 28px;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(14px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.24s ease;
}

.gallery-lightbox.is-open {
  opacity: 1;
  pointer-events: auto;
}

.gallery-lightbox img {
  max-width: min(1080px, 94vw);
  max-height: 86vh;
  border: 1px solid rgba(244, 180, 0, 0.62);
  border-radius: 8px;
  object-fit: contain;
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.65);
  transform: scale(0.96);
  transition: transform 0.24s ease;
}

.gallery-lightbox.is-open img {
  transform: scale(1);
}

.gallery-lightbox-close {
  position: absolute;
  top: 22px;
  left: 22px;
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  color: #fff;
  background: rgba(10, 14, 19, 0.88);
  cursor: pointer;
}

.reviews-section {
  padding-block: 6px 14px;
}

.reviews-section h2 {
  text-align: center;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 36px;
}

.review-card {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  padding: 16px 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 8px;
  background: var(--panel-soft);
}

.stars {
  color: var(--gold);
  line-height: 1;
  letter-spacing: 2px;
}

.review-card p {
  margin: 10px 0;
  color: #eef1f4;
  line-height: 1.7;
}

.reviewer {
  display: grid;
  gap: 2px;
  color: #fff;
  font-weight: 800;
}

.reviewer small {
  color: var(--muted);
  font-weight: 600;
}

.site-footer {
  border-top: 2px solid var(--red);
  background: linear-gradient(180deg, rgba(8, 12, 17, 0.96), #030507);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 42px;
  padding-block: 28px 24px;
}

.footer-brand img {
  width: 150px;
  margin-bottom: 14px;
}

.footer-grid h2 {
  margin: 0 0 12px;
  font-size: 17px;
}

.footer-grid p,
.footer-grid a,
.footer-hours {
  color: var(--muted);
  line-height: 1.8;
}

.footer-grid a,
.footer-hours {
  display: block;
  width: fit-content;
}

.footer-grid a {
  transition: color 0.2s ease;
}

.footer-hours {
  margin-block: 4px;
}

.footer-grid a:hover {
  color: var(--red);
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
}

.footer-bottom {
  padding: 10px 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  border-bottom: 3px solid var(--gold);
  color: var(--muted);
  text-align: center;
  font-size: 13px;
}

.whatsapp-widget {
  position: fixed;
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 30;
  display: grid;
  justify-items: end;
  gap: 10px;
  pointer-events: none;
}

.whatsapp-widget-card,
.whatsapp-widget-bubble {
  pointer-events: auto;
}

.whatsapp-widget-card {
  position: relative;
  width: min(270px, calc(100vw - 36px));
  max-height: min(420px, calc(100vh - 96px));
  overflow: visible;
  border-radius: 8px;
  background: #f7f7f7;
  color: #111;
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.44);
  opacity: 0;
  transform: translate3d(0, 18px, 0) scale(0.96);
  transform-origin: bottom right;
  visibility: hidden;
  transition: opacity 0.35s ease, transform 0.35s ease, visibility 0.35s ease;
}

.whatsapp-widget-card::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: -8px;
  width: 18px;
  height: 18px;
  background: #f7f7f7;
  transform: rotate(45deg);
}

.whatsapp-widget.is-open .whatsapp-widget-card {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
  visibility: visible;
}

.whatsapp-widget-close {
  position: absolute;
  top: -10px;
  right: -8px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  border: 0;
  border-radius: 999px;
  background: #fff;
  color: #8d8d8d;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  cursor: pointer;
  transition: transform 0.2s ease, color 0.2s ease;
}

.whatsapp-widget-close:hover {
  color: var(--red);
  transform: rotate(90deg);
}

.whatsapp-widget-head {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 10px;
  align-items: center;
  min-height: 72px;
  padding: 14px 16px;
  border-radius: 8px 8px 0 0;
  background: #05c807;
  color: #fff;
}

.whatsapp-widget-head svg {
  width: 32px;
  height: 32px;
  stroke-width: 1.8;
  filter: drop-shadow(0 8px 18px rgba(0, 0, 0, 0.18));
}

.whatsapp-widget-head strong {
  display: block;
  font-size: 22px;
  line-height: 1.1;
  font-weight: 900;
}

.whatsapp-widget-head span {
  display: block;
  margin-top: 4px;
  font-size: 13px;
  line-height: 1.35;
}

.whatsapp-widget-agent {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 11px;
  align-items: center;
  margin: 10px;
  padding: 10px 12px;
  background: #fff;
  color: #111;
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.04);
}

.whatsapp-widget-agent img {
  width: 44px;
  height: 44px;
  padding: 6px;
  border: 2px solid #05c807;
  border-radius: 999px;
  background: #0a0d11;
  object-fit: contain;
}

.whatsapp-widget-agent small {
  display: block;
  color: #05c807;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 11px;
  line-height: 1;
}

.whatsapp-widget-agent b {
  display: block;
  margin-top: 4px;
  font-size: 19px;
  line-height: 1.05;
  color: #111;
}

.whatsapp-widget-card p {
  margin: 0;
  padding: 9px 12px 12px;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
  color: #7a7a7a;
  text-align: center;
  font-size: 12px;
  line-height: 1.5;
}

.whatsapp-widget-bubble {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-width: 152px;
  min-height: 46px;
  padding: 9px 15px;
  border-radius: 999px;
  background: #05c807;
  color: #fff;
  font-size: 17px;
  font-weight: 900;
  box-shadow: 0 18px 44px rgba(5, 200, 7, 0.26), 0 18px 58px rgba(0, 0, 0, 0.42);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.whatsapp-widget-bubble:hover {
  transform: translateY(-4px);
  box-shadow: 0 24px 54px rgba(5, 200, 7, 0.32), 0 22px 66px rgba(0, 0, 0, 0.5);
}

.whatsapp-widget-bubble svg {
  width: 23px;
  height: 23px;
  stroke-width: 2.1;
}

.whatsapp-widget-alert {
  position: absolute;
  top: -6px;
  right: -4px;
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--red);
  color: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 12px;
  line-height: 1;
  box-shadow: 0 8px 18px rgba(238, 23, 33, 0.34);
}

.whatsapp-widget-en {
  right: auto;
  left: max(18px, env(safe-area-inset-left));
  justify-items: start;
}

.whatsapp-widget-en .whatsapp-widget-card {
  transform-origin: bottom left;
}

.whatsapp-widget-en .whatsapp-widget-card::after {
  right: auto;
  left: 24px;
}

.whatsapp-widget-en .whatsapp-widget-close {
  right: auto;
  left: -12px;
}

.whatsapp-widget-en .whatsapp-widget-alert {
  right: auto;
  left: -5px;
}

.reveal-target {
  opacity: 0;
  transform: translate3d(0, 34px, 0) scale(0.98);
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}

.reveal-target.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0) scale(1);
}

.gallery-section .reveal-target {
  filter: none;
}

.service-card,
.brand-logo-card,
.review-card,
.gallery-slider,
.contact-pill,
.booking-cta,
.features div {
  transition:
    opacity 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    transform 0.75s cubic-bezier(0.2, 0.8, 0.2, 1),
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

@keyframes heroEntrance {
  from {
    opacity: 0;
    transform: translate3d(0, 26px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}

@keyframes iconPulse {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-4px);
  }
}

@keyframes ctaSweep {
  0%,
  42% {
    transform: translateX(120%);
  }
  70%,
  100% {
    transform: translateX(-120%);
  }
}

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

  .reveal-target {
    opacity: 1;
    transform: none;
    filter: none;
  }
}

@media (max-width: 1120px) {
  .service-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .about-grid,
  .seo-grid,
  .inner-grid,
  .booking-panel,
  .booking-inner {
    grid-template-columns: 1fr;
  }

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

  .contact-pill {
    border-right: 0;
    border-top: 1px solid rgba(244, 180, 0, 0.45);
  }

  .booking-contact-row .contact-pill {
    border: 1px solid rgba(244, 180, 0, 0.38);
  }
}

@media (max-width: 860px) {
  :root {
    --container: min(100% - 28px, 720px);
  }

  .site-header {
    height: 76px;
    padding-inline: 16px;
  }

  .brand {
    width: 118px;
  }

  .menu-toggle {
    display: grid;
  }

  .main-nav {
    position: fixed;
    inset: 76px 14px auto;
    display: grid;
    gap: 0;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(5, 8, 12, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-16px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease, transform 0.2s ease;
  }

  body.nav-open .main-nav {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .main-nav a {
    padding: 13px 12px;
  }

  .main-nav a::after {
    display: none;
  }

  .hero {
    min-height: 720px;
    padding-block: 104px 160px;
    align-items: start;
  }

  .hero-bg {
    background-position: 40% center;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(0, 0, 0, 0.46), rgba(0, 0, 0, 0.14) 42%, #05080c 95%),
      linear-gradient(90deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.88));
  }

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

  .hero-copy {
    padding-top: 38px;
  }

  .hero-actions {
    gap: 12px;
  }

  .btn {
    flex: 1 1 160px;
    min-width: 0;
  }

  .services-wrap {
    margin-top: -118px;
  }

  .brand-showcase {
    padding-block: 36px 22px;
  }

  .brand-showcase::before {
    height: 520px;
    opacity: 0.24;
  }

  .brand-marquee {
    margin-inline: -14px;
    padding-block: 14px;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  }

  .brand-marquee-track {
    gap: 12px;
    animation-duration: 30s;
  }

  .brand-logo-card {
    width: 162px;
    min-height: 132px;
    padding: 16px 12px 13px;
  }

  .brand-logo-frame {
    width: 98px;
    height: 58px;
    margin-bottom: 11px;
    padding: 7px;
  }

  .brand-logo-card strong {
    font-size: 15px;
  }

  .brand-logo-card small {
    font-size: 10px;
  }

  .whatsapp-widget,
  .whatsapp-widget-en {
    right: 12px;
    left: auto;
    bottom: 12px;
    justify-items: end;
  }

  .whatsapp-widget-en {
    right: auto;
    left: 12px;
    justify-items: start;
  }

  .whatsapp-widget-card {
    width: min(255px, calc(100vw - 24px));
  }

  .whatsapp-widget-head {
    grid-template-columns: 30px 1fr;
    gap: 9px;
    min-height: 66px;
    padding: 12px 14px;
  }

  .whatsapp-widget-head svg {
    width: 28px;
    height: 28px;
  }

  .whatsapp-widget-head strong {
    font-size: 20px;
  }

  .whatsapp-widget-head span {
    font-size: 12px;
  }

  .whatsapp-widget-agent {
    grid-template-columns: 42px 1fr;
    gap: 10px;
    margin: 9px;
    padding: 9px 10px;
  }

  .whatsapp-widget-agent img {
    width: 40px;
    height: 40px;
  }

  .whatsapp-widget-agent b {
    font-size: 18px;
  }

  .whatsapp-widget-card p {
    padding: 8px 12px 11px;
    font-size: 12px;
  }

  .whatsapp-widget-bubble {
    min-width: 0;
    min-height: 44px;
    padding: 8px 14px;
    font-size: 16px;
  }

  .service-grid,
  .features,
  .reviews-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .specialties-grid,
  .cars-grid,
  .directory-grid-3,
  .landing-directory-grid,
  .landing-photo-row,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .inner-hero {
    min-height: 500px;
    padding-block: 112px 64px;
  }

  .gallery-track {
    height: 420px;
  }

  .about-section {
    padding-top: 28px;
  }

  .about-copy {
    text-align: right;
  }

  .about-copy > p:not(.latin) {
    margin-right: 0;
  }

  .features {
    gap: 8px;
  }

  .features div {
    display: grid;
    grid-template-columns: 44px 1fr;
    column-gap: 12px;
    min-height: 0;
    text-align: right;
  }

  .features svg {
    grid-row: span 2;
  }

  .booking-cta {
    background: linear-gradient(135deg, #ff1e27, #df0f18);
  }

  .booking-panel {
    padding: 18px;
  }

  .booking-form,
  .booking-contact-row {
    grid-template-columns: 1fr;
  }

  .booking-submit {
    width: 100%;
  }

  .reviews-grid {
    gap: 14px;
  }
}

@media (max-width: 520px) {
  .hero h1 {
    font-size: 34px;
  }

  .hero p {
    font-size: 15px;
  }

  .service-card {
    min-height: 132px;
  }

  .about-media img {
    aspect-ratio: 1.2 / 1;
  }

  .booking-cta,
  .contact-pill {
    padding-inline: 16px;
  }

  .booking-band {
    padding-block: 20px 14px;
  }

  .booking-panel {
    padding: 14px;
  }

  .booking-form {
    padding: 12px;
  }

  .booking-cta {
    font-size: 16px;
  }

  .section-head h2 {
    font-size: 24px;
  }

  .gallery-section {
    padding-top: 28px;
  }

  .gallery-track {
    height: 300px;
  }

  .gallery-nav {
    width: 40px;
    height: 40px;
  }

  .gallery-prev {
    right: 12px;
  }

  .gallery-next {
    left: 12px;
  }

  .gallery-dots {
    bottom: 14px;
  }

  .gallery-dots button {
    width: 24px;
  }

  .gallery-dots button.is-active {
    width: 38px;
  }

  .gallery-lightbox {
    padding: 16px;
  }

  .whatsapp-widget,
  .whatsapp-widget-en {
    right: max(10px, env(safe-area-inset-right));
    bottom: max(10px, env(safe-area-inset-bottom));
    gap: 8px;
  }

  .whatsapp-widget-en {
    right: auto;
    left: max(10px, env(safe-area-inset-left));
  }

  .whatsapp-widget-card {
    width: min(232px, calc(100vw - 20px));
    max-height: calc(100vh - 86px);
  }

  .whatsapp-widget-close {
    width: 28px;
    height: 28px;
    top: -8px;
    right: -6px;
  }

  .whatsapp-widget-en .whatsapp-widget-close {
    right: auto;
    left: -6px;
  }

  .whatsapp-widget-head {
    grid-template-columns: 26px 1fr;
    min-height: 58px;
    padding: 10px 12px;
  }

  .whatsapp-widget-head svg {
    width: 24px;
    height: 24px;
  }

  .whatsapp-widget-head strong {
    font-size: 18px;
  }

  .whatsapp-widget-head span {
    font-size: 11px;
  }

  .whatsapp-widget-agent {
    grid-template-columns: 36px 1fr;
    margin: 8px;
    padding: 8px 9px;
  }

  .whatsapp-widget-agent img {
    width: 34px;
    height: 34px;
    padding: 5px;
  }

  .whatsapp-widget-agent b {
    font-size: 16px;
  }

  .whatsapp-widget-agent small,
  .whatsapp-widget-card p {
    font-size: 11px;
  }

  .whatsapp-widget-card p {
    padding: 7px 10px 10px;
  }

  .whatsapp-widget-bubble {
    min-height: 42px;
    min-width: 138px;
    padding: 8px 12px;
    font-size: 15px;
  }

  .whatsapp-widget-bubble svg {
    width: 21px;
    height: 21px;
  }
}

@media (max-width: 360px), (max-height: 560px) {
  .whatsapp-widget-card {
    width: min(210px, calc(100vw - 20px));
  }

  .whatsapp-widget-head span,
  .whatsapp-widget-card p {
    display: none;
  }

  .whatsapp-widget-head {
    min-height: 50px;
  }

  .whatsapp-widget-agent {
    margin: 7px;
  }

  .whatsapp-widget-bubble {
    min-width: 44px;
    width: 44px;
    height: 44px;
    padding: 0;
    border-radius: 999px;
  }

  .whatsapp-widget-bubble > span:not(.whatsapp-widget-alert) {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }
}
