/* Spa La Vierra — UAE · Al Barsha · MD Hotel */
:root {
  --color-bg: #f8f6f3;
  --color-bg-dark: #1c2331;
  --color-text: #1c2331;
  --color-text-soft: #5a6578;
  --color-gold: #c9a962;
  --color-gold-light: #ddc48a;
  --color-gold-dark: #a68b4b;
  --color-cream: #f0ede8;
  --color-white: #ffffff;
  --font-display: 'Playfair Display', Georgia, serif;
  --font-body: 'DM Sans', -apple-system, sans-serif;
  --radius: 8px;
  --radius-lg: 12px;
  --header-h: 4.5rem;
  --shadow: 0 4px 24px rgba(28, 35, 49, 0.06);
  --shadow-hover: 0 12px 40px rgba(28, 35, 49, 0.1);
  --ease-out-expo: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
  --ease-out-sine: cubic-bezier(0.33, 1, 0.68, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-text);
  background: var(--color-bg);
}

.skip-link {
  position: absolute;
  top: -3rem;
  left: 1rem;
  z-index: 200;
  padding: 0.6rem 1rem;
  font-size: 0.9rem;
  font-weight: 500;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border-radius: var(--radius);
  transition: top 0.2s;
}

.skip-link:focus {
  top: 1rem;
  outline: 2px solid var(--color-bg-dark);
  outline-offset: 2px;
}

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

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

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 0 1.5rem 0 2rem;
  background: rgba(28, 35, 49, 0.96);
  backdrop-filter: blur(12px);
  z-index: 100;
  border-bottom: 1px solid rgba(201, 169, 98, 0.2);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.header.is-scrolled {
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.15);
}

.header .logo {
  flex-shrink: 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  color: var(--color-white);
}

.logo-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
}

.logo-text {
  white-space: nowrap;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  margin-right: 0.25rem;
}

/* WhatsApp button only in header – clean green CTA */
.header-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem 1rem;
  font-size: 0.85rem;
  font-weight: 600;
  color: #fff;
  background: #25d366;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  white-space: nowrap;
}

.header-whatsapp:hover {
  background: #20bd5a;
  color: #fff;
  transform: translateY(-1px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.75rem;
  flex: 1 1 auto;
  flex-wrap: nowrap;
  min-width: 0;
  padding: 0 1rem;
}

.nav a {
  display: inline-block;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  transition: color 0.2s;
  white-space: nowrap;
  padding: 0.25rem 0;
}

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

/* Location links (Maps, Waze) – same as nav links, subtle separator before first */
.nav-link-maps {
  margin-inline-start: 0.5rem;
  padding-inline-start: 0.75rem;
  border-inline-start: 1px solid rgba(255, 255, 255, 0.2);
}

.nav a:focus-visible,
.lang-trigger:focus-visible,
.lang-option:focus-visible,
.menu-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

/* Language dropdown – compact icon + current lang. Always LTR so icon stays in place when switching EN/AR/RU. */
.lang-dropdown {
  position: relative;
  flex-shrink: 0;
  direction: ltr;
}

.lang-trigger {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.4rem 0.6rem;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 6px;
  cursor: pointer;
  transition: color 0.2s, border-color 0.2s, background 0.2s;
}

.lang-trigger:hover {
  border-color: rgba(201, 169, 98, 0.5);
  color: var(--color-gold-light);
}

.lang-trigger-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 0;
}

.lang-trigger-icon svg {
  display: block;
}

.lang-trigger-text {
  min-width: 1.6em;
}

.lang-trigger-chevron {
  font-size: 0.6rem;
  opacity: 0.8;
  transition: transform 0.2s;
}

.lang-dropdown.is-open .lang-trigger-chevron {
  transform: rotate(180deg);
}

.lang-dropdown-menu {
  position: absolute;
  top: 100%;
  right: 0;
  margin-top: 0.35rem;
  min-width: 10rem;
  padding: 0.35rem 0;
  background: var(--color-bg-dark);
  border: 1px solid rgba(201, 169, 98, 0.3);
  border-radius: 8px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.35);
  z-index: 110;
  display: none;
}

.lang-dropdown.is-open .lang-dropdown-menu {
  display: block;
}

.lang-option {
  display: block;
  width: 100%;
  padding: 0.5rem 1rem;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 500;
  text-align: left;
  border: none;
  background: none;
  color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
  transition: background 0.15s, color 0.15s;
}

.lang-option:hover {
  background: rgba(201, 169, 98, 0.15);
  color: var(--color-gold-light);
}

.lang-option[data-lang].is-active {
  color: var(--color-gold);
  background: rgba(201, 169, 98, 0.1);
}

html[dir="rtl"] .lang-dropdown-menu {
  right: 0;
  left: auto;
}

.lang-dropdown .lang-option {
  text-align: left;
}

html[dir="rtl"] .lang-dropdown .lang-option {
  text-align: left;
}

html[dir="rtl"] .lang-option {
  text-align: right;
}

.nav a:focus-visible,
.lang-trigger:focus-visible,
.lang-option:focus-visible,
.menu-btn:focus-visible {
  outline: 2px solid var(--color-gold);
  outline-offset: 3px;
}

.menu-btn {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-shrink: 0;
  margin-left: 0.5rem;
}

.menu-btn span {
  width: 22px;
  height: 2px;
  background: var(--color-white);
}

html[dir="rtl"] .header {
  flex-direction: row-reverse;
}

html[dir="rtl"] .nav {
  flex-direction: row-reverse;
}

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--header-h) 2rem 4rem;
  text-align: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background: linear-gradient(180deg, rgba(28, 35, 49, 0.6) 0%, rgba(28, 35, 49, 0.45) 30%, rgba(28, 35, 49, 0.3) 100%);
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -1;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 36rem;
}

/* Hero intro lines – strong contrast for Arabic / light backgrounds */
.hero-location,
.hero-tag,
.hero-trust {
  position: relative;
  padding: 0.15rem 0;
}

.hero-location {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #e8d5a3;
  margin-bottom: 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2);
}

.hero-tag {
  font-family: var(--font-display);
  font-size: 1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.98);
  margin-bottom: 0.25rem;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.5), 0 2px 10px rgba(0, 0, 0, 0.35);
}

.hero-trust {
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #e8d5a3;
  margin: 0 0 0.75rem;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5), 0 2px 8px rgba(0, 0, 0, 0.4), 0 0 20px rgba(0, 0, 0, 0.2);
}

/* RTL/Arabic – even stronger readability */
html[dir="rtl"] .hero-location,
html[dir="rtl"] .hero-tag,
html[dir="rtl"] .hero-trust {
  color: #f0e4b8;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.65), 0 2px 10px rgba(0, 0, 0, 0.5), 0 0 24px rgba(0, 0, 0, 0.25);
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 7vw, 4.5rem);
  font-weight: 500;
  line-height: 1.1;
  margin: 0 0 1rem;
  color: var(--color-white);
  letter-spacing: 0.02em;
  text-shadow: 0 2px 8px rgba(0, 0, 0, 0.4), 0 4px 20px rgba(0, 0, 0, 0.25);
}

.hero-desc {
  color: rgba(255, 255, 255, 0.95);
  margin-bottom: 2rem;
  font-size: 1.05rem;
  line-height: 1.65;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35), 0 2px 12px rgba(0, 0, 0, 0.2);
}

/* Hero content always visible; animation enhances on load */
.hero-content {
  opacity: 1;
}
.hero-content .hero-location,
.hero-content .hero-tag,
.hero-content .hero-trust,
.hero-content h1,
.hero-content .hero-desc,
.hero-content .btn-primary {
  opacity: 1;
}
/* Hero load animation – staggered slide-up; text visible from start so page is never empty */
.hero-animate .hero-location { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.1s both; }
.hero-animate .hero-tag { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.2s both; }
.hero-animate .hero-trust { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.3s both; }
.hero-animate .hero h1 { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.35s both; }
.hero-animate .hero-desc { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.45s both; }
.hero-animate .btn-primary { animation: heroFadeUp 0.9s var(--ease-out-expo) 0.55s both; }

@keyframes heroFadeUp {
  from {
    opacity: 1;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.btn {
  display: inline-block;
  padding: 1rem 2.25rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.4s var(--ease-out-quart), color 0.3s, transform 0.4s var(--ease-out-quart);
}

.btn-primary {
  background: var(--color-gold);
  color: var(--color-bg-dark);
}

.btn-primary:hover {
  background: var(--color-gold-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 169, 98, 0.35);
}

.btn-block {
  width: 100%;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.6);
}

/* Floating CTA (appears after scrolling past hero) */
.floating-cta {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%) translateY(80px);
  z-index: 90;
  padding: 0.75rem 1.5rem;
  font-family: var(--font-body);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--color-gold);
  color: var(--color-bg-dark);
  border: none;
  border-radius: 999px;
  box-shadow: 0 8px 32px rgba(28, 35, 49, 0.2);
  text-decoration: none;
  opacity: 0;
  visibility: hidden;
  transition: transform 0.5s var(--ease-out-expo), opacity 0.5s var(--ease-out-expo), visibility 0.5s ease, box-shadow 0.3s var(--ease-out-quart);
}

.floating-cta.is-visible {
  transform: translateX(-50%) translateY(0);
  opacity: 1;
  visibility: visible;
}

.floating-cta:hover {
  box-shadow: 0 12px 40px rgba(201, 169, 98, 0.4);
}

.floating-cta:focus-visible {
  outline: 2px solid var(--color-bg-dark);
  outline-offset: 3px;
}

.scroll-line {
  width: 1px;
  height: 36px;
  background: linear-gradient(to bottom, var(--color-gold), transparent);
  animation: scroll-pulse 2s ease-in-out infinite;
}

@keyframes scroll-pulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* Fallback: ensure hero text is visible after load (e.g. if animation fails or is slow) */
body.hero-ready .hero-content .hero-location,
body.hero-ready .hero-content .hero-tag,
body.hero-ready .hero-content .hero-trust,
body.hero-ready .hero-content h1,
body.hero-ready .hero-content .hero-desc,
body.hero-ready .hero-content .btn-primary {
  animation: none;
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  .hero-animate .hero-location,
  .hero-animate .hero-tag,
  .hero-animate .hero-trust,
  .hero-animate .hero h1,
  .hero-animate .hero-desc,
  .hero-animate .btn-primary {
    animation: none;
  }
  .animate-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .animate-on-scroll.is-visible {
    transform: none;
  }
  .floating-cta,
  .floating-cta.is-visible {
    transition: opacity 0.2s ease, visibility 0.2s ease;
  }
}

/* Section scroll animation – content visible by default so page is never empty */
.animate-on-scroll {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
}

.animate-on-scroll.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Sections – pro spacing */
.section {
  padding: 5.5rem 2rem;
}

.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 0.5rem;
}

.container.narrow {
  max-width: 540px;
}

.section-tag {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin-bottom: 0.5rem;
  font-weight: 600;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 2.85rem);
  font-weight: 500;
  margin: 0 0 2.5rem;
  color: var(--color-text);
  letter-spacing: 0.01em;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.75rem;
}

.services-loading {
  grid-column: 1 / -1;
  text-align: center;
  color: var(--color-text-soft);
  margin: 0;
  padding: 1rem;
}

.hidden {
  display: none !important;
}

.service-card {
  padding: 0;
  background: var(--color-white);
  border: 1px solid rgba(28, 35, 49, 0.08);
  border-radius: var(--radius-lg);
  transition: box-shadow 0.25s, transform 0.25s;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.service-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: rgba(201, 169, 98, 0.25);
}

.service-img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  margin: 0;
}

.service-icon {
  display: none;
}

.service-card h3,
.service-card p {
  padding: 0 1.5rem;
}

.service-card h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  margin: 1.25rem 0 0.5rem;
  color: var(--color-text);
}

.service-card p {
  margin: 0 0 1.5rem;
  color: var(--color-text-soft);
  font-size: 0.95rem;
  line-height: 1.55;
}

/* Offers – dark, gold theme (LAVIERA-style) */
.section.offers {
  background: var(--color-bg-dark);
  color: var(--color-white);
  padding: 5.5rem 2rem;
}

.section.offers .section-tag {
  color: var(--color-gold-light);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.section.offers .section-title {
  color: var(--color-white);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.25);
  margin-bottom: 2.5rem;
}

.offers-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
  align-items: start;
}

.offers-loading,
.offers-empty {
  grid-column: 1 / -1;
  text-align: center;
  color: rgba(255, 255, 255, 0.7);
  padding: 2rem;
}

.offer-card {
  display: flex;
  flex-direction: column;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(201, 169, 98, 0.25);
  border-radius: var(--radius-lg);
  padding: 0;
  overflow: hidden;
  min-height: 0;
  transition: transform 0.4s var(--ease-out-quart), box-shadow 0.4s var(--ease-out-quart), border-color 0.3s;
}

.offer-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35), 0 0 0 1px rgba(201, 169, 98, 0.2);
  border-color: rgba(201, 169, 98, 0.4);
}

.offer-card.offer-day {
  border-color: rgba(201, 169, 98, 0.45);
  background: rgba(201, 169, 98, 0.06);
}

.offer-card.offer-royal {
  border-color: rgba(201, 169, 98, 0.5);
  background: linear-gradient(145deg, rgba(201, 169, 98, 0.08) 0%, rgba(255, 255, 255, 0.04) 100%);
}

/* Offer card image – shows what the package includes */
.offer-img-wrap {
  position: relative;
  width: 100%;
  height: 200px;
  overflow: hidden;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.offer-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s var(--ease-out-quart);
}

.offer-card:hover .offer-img {
  transform: scale(1.04);
}

.offer-img-label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 0.6rem 1rem;
  font-family: var(--font-display);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--color-gold-light);
  background: linear-gradient(to top, rgba(0, 0, 0, 0.75), transparent);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.5);
}

.offer-card .offer-title {
  padding: 1.25rem 1.75rem 0;
}

.offer-card .offer-main {
  padding: 0 1.75rem;
}

.offer-card .offer-free-intro {
  padding: 0 1.75rem;
}

.offer-card .offer-free {
  padding: 0 1.75rem;
}

.offer-card .offer-price {
  padding: 0 1.75rem 1rem;
}

.offer-card .btn {
  margin-top: 0.5rem;
  margin-left: 0;
  margin-right: 0;
  width: 100%;
  border-radius: 0 0 var(--radius-lg) var(--radius-lg);
  box-sizing: border-box;
  padding: 1rem 1.75rem;
}

.offer-title {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin: 0 0 1rem;
  letter-spacing: 0.02em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-main {
  list-style: none;
  margin: 0 0 1rem;
  padding: 0;
}

.offer-main li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.5rem;
  font-size: 0.9rem;
  line-height: 1.5;
  color: rgba(255, 255, 255, 0.92);
}

.offer-main li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.95rem;
}

html[dir="rtl"] .offer-main li {
  padding-left: 0;
  padding-right: 1.25rem;
}

html[dir="rtl"] .offer-main li::before {
  left: auto;
  right: 0;
}

.offer-free-intro {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--color-gold-light);
  margin: 0.5rem 0 0.5rem;
  letter-spacing: 0.03em;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-free {
  list-style: none;
  margin: 0 0 1.25rem;
  padding: 0;
}

.offer-free li {
  position: relative;
  padding-left: 1.25rem;
  margin-bottom: 0.35rem;
  font-size: 0.85rem;
  line-height: 1.45;
  color: rgba(255, 255, 255, 0.88);
}

.offer-free li::before {
  content: '+';
  position: absolute;
  left: 0;
  color: var(--color-gold);
  font-weight: 600;
  font-size: 0.9rem;
}

html[dir="rtl"] .offer-free li {
  padding-left: 0;
  padding-right: 1.25rem;
}

html[dir="rtl"] .offer-free li::before {
  left: auto;
  right: 0;
}

.offer-price {
  font-size: 1.1rem;
  margin: 0 0 1.25rem;
  color: var(--color-gold-light);
}

.offer-price strong {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--color-gold);
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.offer-card .btn-primary {
  width: 100%;
  margin: 0;
}

@media (max-width: 768px) {
  .section.offers {
    padding: 3.5rem 1.25rem;
  }
  .offers-grid {
    gap: 1.5rem;
  }
  .offer-card .offer-title {
    font-size: 1.2rem;
  }
  .offer-card .offer-price strong {
    font-size: 1.35rem;
  }
}

@media (max-width: 700px) {
  .offers-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 600px) {
  .section.offers {
    padding: 2.5rem 1rem;
  }
  .section.offers .section-title {
    margin-bottom: 1.75rem;
  }
  .offers-grid {
    gap: 1.25rem;
  }
  .offer-img-wrap {
    height: 180px;
  }
  .offer-card .offer-title {
    padding: 1rem 1.25rem 0;
    font-size: 1.15rem;
  }
  .offer-card .offer-main,
  .offer-card .offer-free-intro,
  .offer-card .offer-free,
  .offer-card .offer-price {
    padding-left: 1.25rem;
    padding-right: 1.25rem;
  }
  .offer-card .offer-price {
    padding-bottom: 0.75rem;
  }
  .offer-card .offer-price strong {
    font-size: 1.25rem;
  }
  .offer-card .btn {
    padding: 0.9rem 1.25rem;
    min-height: 48px;
  }
}

/* Gallery strip */
.gallery-strip {
  padding: 0;
  overflow: hidden;
}

.gallery-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
}

.gallery-strip-inner img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

@media (max-width: 600px) {
  .gallery-strip-inner {
    grid-template-columns: 1fr;
  }
  .gallery-strip-inner img {
    height: 200px;
  }
}

/* About */
.about {
  background: var(--color-cream);
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
}

.about-text p {
  margin-bottom: 1.25rem;
  color: var(--color-text-soft);
}

.about-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-hover);
}

/* Forms */
.form .form-row {
  margin-bottom: 1.25rem;
}

.form label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--color-text);
}

.form input,
.form select,
.form textarea {
  width: 100%;
  padding: 0.85rem 1.1rem;
  font-family: var(--font-body);
  font-size: 1rem;
  border: 1px solid rgba(28, 35, 49, 0.12);
  border-radius: var(--radius);
  background: var(--color-white);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form input:focus,
.form select:focus,
.form textarea:focus {
  outline: none;
  border-color: var(--color-gold);
  box-shadow: 0 0 0 3px rgba(201, 169, 98, 0.15);
}

.phone-input-group {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.phone-input-group .phone-country {
  width: auto;
  min-width: 5rem;
  flex-shrink: 0;
}

.phone-input-group #phone {
  flex: 1;
  min-width: 0;
}

.form-hint {
  display: block;
  margin-top: 0.35rem;
  font-size: 0.8rem;
  color: var(--color-text-soft);
}

.btn:focus-visible {
  outline: 2px solid var(--color-bg-dark);
  outline-offset: 3px;
}

.form-message {
  margin-top: 1rem;
  font-size: 0.9rem;
  min-height: 1.4em;
}

.form-message.success { color: var(--color-gold-dark); }
.form-message.error { color: #b54a4a; }

/* Contact */
.contact-details {
  list-style: none;
  padding: 0;
  margin: 0 0 2rem;
}

.contact-details li {
  margin-bottom: 1.5rem;
  color: var(--color-text-soft);
  line-height: 1.6;
}

.contact-details strong {
  color: var(--color-text);
  font-weight: 600;
}

.link-maps,
.contact-details a {
  color: var(--color-gold);
  font-weight: 500;
  text-underline-offset: 3px;
  transition: color 0.2s, opacity 0.2s;
}

.link-maps:hover,
.contact-details a:hover {
  color: var(--color-gold-dark);
  opacity: 0.9;
}

/* Footer – text shadows for readability (especially Arabic) */
.footer {
  padding: 3.5rem 2rem;
  background: var(--color-bg-dark);
  color: rgba(255, 255, 255, 0.85);
  text-align: center;
  border-top: 1px solid rgba(201, 169, 98, 0.15);
}

.footer-inner {
  max-width: 640px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0;
}

.footer .logo {
  justify-content: center;
  margin-bottom: 0.5rem;
  flex-shrink: 0;
}

.footer .logo-icon {
  width: 32px;
  height: 32px;
}

.footer .logo-text {
  color: var(--color-white);
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-location {
  display: block;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--color-gold);
  margin: 0 0 0.5rem;
  width: 100%;
  text-align: center;
  word-spacing: normal;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.footer-tagline {
  display: block;
  font-family: var(--font-display);
  font-size: 0.95rem;
  letter-spacing: 0.08em;
  color: rgba(255, 255, 255, 0.9);
  margin: 0 0 1.5rem;
  width: 100%;
  text-align: center;
  word-spacing: normal;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.5);
}

.footer-nav {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.25rem 1.75rem;
  margin-bottom: 1.5rem;
  width: 100%;
}

.footer-nav a {
  display: inline-block;
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
  white-space: nowrap;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

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

.footer-hours {
  display: block;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.85);
  margin: 0 0 0.75rem;
  width: 100%;
  text-align: center;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-map-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.25rem;
  margin-bottom: 1.25rem;
}

.footer-maps,
.footer-waze {
  display: inline-block;
  font-size: 0.9rem;
  color: var(--color-gold);
  text-underline-offset: 3px;
  transition: color 0.2s, opacity 0.2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-maps:hover,
.footer-waze:hover {
  color: var(--color-gold-light);
  opacity: 0.95;
}

.footer-social {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.75rem 1.25rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.footer-whatsapp-btn {
  font-size: 0.9rem;
  font-weight: 600;
  color: #25d366;
  padding: 0.4rem 0.75rem;
  background: rgba(37, 211, 102, 0.15);
  border-radius: 6px;
  transition: background 0.2s, color 0.2s;
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-whatsapp-btn:hover {
  background: rgba(37, 211, 102, 0.25);
  color: #25d366;
}

.footer-social-link {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.9);
  transition: color 0.2s;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

.footer-social-link:hover {
  color: var(--color-gold);
}

.footer-copy {
  display: block;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.6);
  margin: 0;
  width: 100%;
  text-align: center;
  word-spacing: normal;
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.4);
}

/* RTL / Arabic footer – stronger shadows for better legibility */
html[dir="rtl"] .footer,
html[dir="rtl"] .footer .logo-text,
html[dir="rtl"] .footer-location,
html[dir="rtl"] .footer-tagline,
html[dir="rtl"] .footer-nav a,
html[dir="rtl"] .footer-hours,
html[dir="rtl"] .footer-maps,
html[dir="rtl"] .footer-waze,
html[dir="rtl"] .footer-social-link,
html[dir="rtl"] .footer-copy,
html[dir="rtl"] .footer-credit {
  text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6), 0 2px 6px rgba(0, 0, 0, 0.4);
}

html[dir="rtl"] .footer-tagline,
html[dir="rtl"] .footer-nav a {
  font-weight: 500;
}

/* RTL (Arabic) */
html[dir="rtl"] body {
  text-align: right;
}

html[dir="rtl"] .hero-content,
html[dir="rtl"] .about-text {
  text-align: right;
}

html[dir="rtl"] .contact-info {
  text-align: right;
}

/* Mobile */
@media (max-width: 768px) {
  .header {
    padding: 0 1.25rem;
    overflow: visible;
  }

  .logo-text {
    font-size: 1.15rem;
  }

  .logo-icon {
    width: 30px;
    height: 30px;
  }

  .nav {
    display: none;
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 2rem 1.5rem;
    background: var(--color-bg-dark);
    border-bottom: 1px solid rgba(201, 169, 98, 0.2);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.3);
    gap: 0.5rem;
    z-index: 101;
    max-height: calc(100vh - var(--header-h));
    overflow-y: auto;
  }

  .nav.open {
    display: flex;
  }

  .nav.open a {
    display: block;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    white-space: normal;
  }

  .nav.open a:last-child {
    border-bottom: none;
  }
  .nav.open .nav-link-maps {
    margin-inline-start: 0;
    padding-inline-start: 0;
    border-inline-start: none;
  }

  .header-right {
    gap: 0.5rem;
  }

  .lang-trigger-text {
    display: none;
  }

  .lang-trigger {
    padding: 0.4rem 0.5rem;
  }

  .lang-dropdown-menu {
    right: 0;
    left: auto;
  }

  .menu-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 44px;
    min-height: 44px;
    margin-left: 0.25rem;
  }

  .menu-btn span {
    width: 22px;
    height: 2px;
  }

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

  .about-image {
    order: -1;
  }

  .section {
    padding: 3.5rem 1.25rem;
  }
}
