/* landing.css – SONSAI Luxury Dark Edition */

/* ===== בסיס ===== */
:root {
  --page-bg: #050505;

  --surface: rgba(15, 15, 15, 0.92);
  --surface-strong: #111111;

  --text: #ffffff;
  --muted: #d2d2d2;

  --line: rgba(255,255,255,0.08);

  --button: #b98b3c;
  --button-hover: #d4a44d;

  --gold: #b98b3c;

  --shadow: 0 18px 45px rgba(0, 0, 0, 0.45);
}

* {
  box-sizing: border-box;
}

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body.landing-page {
  margin: 0;
  padding: 0;

  font-family: "Heebo", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;

  background:
    linear-gradient(rgba(0,0,0,0.85), rgba(0,0,0,0.85)),
    url("images/logo-bg.png");

  background-size: cover;
  background-position: center;
  background-attachment: fixed;

  color: var(--text);

  overflow-x: hidden;
}

/* ===== Container ===== */

.container {
  width: 100%;
  max-width: 1600px;
  margin: 24px auto 40px;
  padding: 0 18px 32px;
}

/* ===== Hero ===== */

.hero {
  text-align: center;
  background: transparent;
  border-radius: 0;
  box-shadow: none;
  padding: 40px 20px 30px;
  margin-bottom: 32px;
}

.site-logo {
  display: block;
  width: min(100%, 520px);
  height: auto;
  margin: 0 auto 22px;

  filter:
    drop-shadow(0 0 20px rgba(185,139,60,0.18))
    drop-shadow(0 0 40px rgba(185,139,60,0.08));
}

.promo-eyebrow {
  margin: 0 0 14px;
  color: #d8d8d8;
  font-size: 0.95rem;
  line-height: 1.6;
}

.promo-title {
  margin: 0 0 14px;
  font-size: 2.2rem;
  line-height: 1.2;
  font-weight: 700;
  color: #ffffff;
}

.promo-text {
  margin: 0 auto 18px;
  max-width: 900px;
  color: #d0d0d0;
  font-size: 1.02rem;
  line-height: 1.8;
}

/* ===== Treatments ===== */

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 28px;
}

/* ===== Card ===== */

.product-card {
  display: grid;
  grid-template-columns: 360px 1fr;

  background: rgba(15,15,15,0.92);

  border: 1px solid rgba(185,139,60,0.18);

  overflow: hidden;

  box-shadow:
    0 10px 28px rgba(0,0,0,0.38),
    0 0 0 1px rgba(185,139,60,0.08);

  backdrop-filter: blur(6px);

  direction: ltr;
  align-items: stretch;
  height: 100%;
  min-width: 0;

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease,
    border-color 0.25s ease;
}

.product-card:hover {
  transform: translateY(-4px);

  border-color: rgba(185,139,60,0.38);

  box-shadow:
    0 18px 42px rgba(0,0,0,0.45),
    0 0 0 1px rgba(185,139,60,0.14);
}

/* ===== Images ===== */

.product-card__image {
  width: 100%;
  height: 100%;
  overflow: hidden;
  background: #0a0a0a;
}

.product-card__image img {
  width: 100%;
  height: 100%;
  display: block;

  object-fit: cover;
  object-position: center;

  transition: transform 0.5s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.04);
}

/* ===== Content ===== */

.product-card__content {
  display: flex;
  flex-direction: column;
  justify-content: center;

  padding: 28px 26px 24px;

  text-align: center;
  direction: rtl;

  min-width: 0;
}

.product-title {
  margin: 0 0 16px;

  font-size: 1.85rem;
  font-weight: 500;

  line-height: 1.22;

  color: #ffffff;
}

.product-card p {
  margin: 0 0 10px;

  font-size: 0.98rem;

  color: #d8d8d8;

  line-height: 1.8;
}

.price {
  margin-top: 0;
  margin-bottom: 16px;

  font-weight: 700;

  color: #f3d18c;

  font-size: 1rem;

  line-height: 1.9;
}

/* ===== Duration ===== */

.duration-options {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px;

  margin: 0 0 18px;
}

.duration-options label {
  display: inline-flex;
  align-items: center;
  gap: 4px;

  padding: 6px 10px;

  border-radius: 999px;

  border: 1px solid rgba(255,255,255,0.12);

  font-size: 0.9rem;

  cursor: pointer;

  background: rgba(255,255,255,0.04);

  color: #ffffff;

  line-height: 1.2;
}

.duration-options input[type="radio"] {
  accent-color: #b98b3c;
}

/* ===== Buttons ===== */

.button,
.booking-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 8px;

  padding: 12px 22px;

  border-radius: 12px;

  border: none;

  cursor: pointer;

  font-size: 0.98rem;
  font-weight: 700;

  background:
    linear-gradient(
      135deg,
      #b98b3c 0%,
      #d9b36a 100%
    );

  color: #050505;

  box-shadow:
    0 10px 25px rgba(185,139,60,0.28);

  transition: all 0.22s ease;

  text-decoration: none;

  min-height: 48px;
}

.button:hover,
.booking-submit:hover {
  transform: translateY(-2px);
  filter: brightness(1.08);
}

.button:active,
.booking-submit:active {
  transform: translateY(0);
}

/* ===== WhatsApp ===== */

.wa-float {
  position: fixed;

  right: 22px;
  bottom: 22px;

  width: 58px;
  height: 58px;

  border-radius: 999px;

  background: #ffffff;

  border: 2px solid #25d366;

  display: flex;
  align-items: center;
  justify-content: center;

  box-shadow:
    0 12px 30px rgba(37,211,102,0.35);

  z-index: 999;
}

.wa-float img {
  width: 30px !important;
  height: 30px !important;
  object-fit: contain;
}

/* ===== Language ===== */

.lang-switch {
  display: inline-flex !important;

  align-items: center !important;
  justify-content: center !important;

  gap: 10px !important;

  margin-top: 14px !important;

  padding: 8px 12px !important;

  border-radius: 999px !important;

  background: rgba(255,255,255,0.05) !important;

  backdrop-filter: blur(6px) !important;

  border: 1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 6px 18px rgba(0,0,0,0.18) !important;
}

.lang-btn {
  border: none !important;
  background: transparent !important;

  padding: 0 !important;
  margin: 0 !important;

  cursor: pointer !important;

  transition: transform 0.22s ease !important;
}

.lang-btn img {
  width: 34px !important;
  height: 22px !important;

  display: block !important;

  object-fit: cover !important;

  border-radius: 6px !important;

  box-shadow:
    0 4px 14px rgba(0,0,0,0.22);
}

.lang-btn:hover {
  transform: translateY(-2px) scale(1.05) !important;
}

/* ===== Titles ===== */

.section-title {
  text-align: center;

  margin-bottom: 12px;

  font-weight: 700;

  color: #ffffff;
}

.section-subtitle {
  text-align: center;

  max-width: 700px;

  margin: 0 auto 30px;

  color: #cfcfcf;
}

/* ===== Footer ===== */

.lux-footer {
  margin-top: 70px;

  background:
    linear-gradient(
      180deg,
      #080808 0%,
      #111111 100%
    );

  border-top:
    1px solid rgba(185,139,60,0.15);

  padding: 56px 20px 22px;
}

.lux-footer__inner {
  max-width: 1400px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 54px;

  align-items: start;
}

.lux-footer__title {
  margin: 0 0 18px;

  padding-bottom: 12px;

  font-size: 1.15rem;

  font-weight: 700;

  color: #ffffff;

  display: flex;

  align-items: center;

  gap: 8px;

  border-bottom:
    1px solid rgba(255,255,255,0.08);
}

.lux-footer__text {
  margin: 0 0 10px;

  font-size: 0.96rem;

  color: #d2d2d2;

  line-height: 1.9;
}

.lux-footer__text strong {
  color: #ffffff;
}

.lux-footer__text a {
  color: #f3d18c;

  text-decoration: none;

  font-weight: 600;
}

.lux-footer__text a:hover {
  text-decoration: underline;
}

.lux-footer__map {
  width: 100%;

  height: 210px;

  border-radius: 14px;

  overflow: hidden;

  margin-bottom: 14px;

  border:
    1px solid rgba(255,255,255,0.06);

  box-shadow:
    0 10px 26px rgba(0,0,0,0.28);
}

.lux-footer__map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

.lux-footer__bottom {
  text-align: center;

  margin-top: 34px;

  padding-top: 18px;

  border-top:
    1px solid rgba(255,255,255,0.08);
}

.lux-footer__bottom p {
  margin: 0;

  font-size: 0.85rem;

  color: #9f9f9f;
}

/* ===== Responsive ===== */

@media (max-width: 1200px) {
  .treatments-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 900px) {

  .product-card {
    grid-template-columns: 1fr;
  }

  .product-card__image {
    height: 320px;
  }

  .button,
  .booking-submit {
    width: 100%;
  }

  .site-logo {
    width: min(100%, 380px);
  }
}

@media (max-width: 640px) {

  .site-logo {
    width: min(100%, 300px);
  }

  .promo-title {
    font-size: 1.38rem;
  }

  .product-card__image {
    height: 240px;
  }

  .product-title {
    font-size: 1.2rem;
  }

  .wa-float {
    right: 14px;
    bottom: 14px;
  }
}
/* ==========================================
   LUXURY SPA TREATMENT CARDS
   ========================================== */

.product-card {
  position: relative;
  overflow: hidden;

  border-radius: 40px;

  background: linear-gradient(
    180deg,
    rgba(18, 18, 18, 0.96) 0%,
    rgba(8, 8, 8, 0.99) 100%
  );

  border: 1px solid rgba(212, 175, 55, 0.18);

  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.55),
    0 0 25px rgba(212, 175, 55, 0.08);

  transition:
    transform 0.4s ease,
    box-shadow 0.4s ease,
    border-color 0.4s ease;
}

/* Gold frame glow */
.product-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 40px;
  padding: 1px;

  background: linear-gradient(
    135deg,
    rgba(212, 175, 55, 0.35),
    rgba(255, 223, 128, 0.08),
    rgba(212, 175, 55, 0.35)
  );

  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);

  -webkit-mask-composite: xor;
  mask-composite: exclude;

  pointer-events: none;
}

/* Hover Effect */
.product-card:hover {
  transform: translateY(-10px);

  border-color: rgba(212, 175, 55, 0.45);

  box-shadow:
    0 30px 80px rgba(0, 0, 0, 0.65),
    0 0 40px rgba(212, 175, 55, 0.18);
}

/* Image Container */
.product-card__image {
  overflow: hidden;
}

/* Image Animation */
.product-card__image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;

  transition:
    transform 0.8s ease,
    filter 0.8s ease;
}

.product-card:hover .product-card__image img {
  transform: scale(1.05);
  filter: brightness(1.05);
}

/* Content Area */
.product-card__content {
  position: relative;
  z-index: 2;
}

/* Treatment Title */
.product-title {
  font-weight: 700;
  letter-spacing: 0.3px;
}

/* Price */
.product-card .price {
  font-weight: 700;
}

/* Duration Selector */
.duration-options label {
  border-radius: 999px;
}

/* Luxury Button */
.product-card .button {
  border-radius: 18px;

  box-shadow:
    0 10px 25px rgba(212, 175, 55, 0.25);

  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.product-card .button:hover {
  transform: translateY(-2px);

  box-shadow:
    0 15px 35px rgba(212, 175, 55, 0.35);
}
.video-slider {
  width: 100%;
  max-width: 1600px;
  margin: 0 auto 40px;
}

.video-slider__viewport {
  width: 100%;
}

.video-slide__video {
  width: 100%;
  height: 450px;
  object-fit: cover;
  border-radius: 32px;
}