* { box-sizing: border-box; }

html, body {
  margin: 0;
  min-height: 100%;
}

body {
  background:
    radial-gradient(circle at 12% 20%, rgba(255, 214, 230, 0.28), transparent 42%),
    radial-gradient(circle at 82% 8%, rgba(149, 75, 114, 0.42), transparent 45%),
    linear-gradient(140deg, #2d0d1b 0%, #5a1833 44%, #12040a 100%);
  color: #f9f8fb;
  font-family: 'Heebo', sans-serif;
  text-align: center;
  direction: rtl;
  position: relative;
  overflow-x: hidden;
}

body::before,
body::after {
  content: '';
  position: fixed;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  filter: blur(120px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -2;
}

body::before {
  top: -160px;
  right: -120px;
  background: rgba(255, 170, 206, 0.65);
}

body::after {
  bottom: -200px;
  left: -120px;
  background: rgba(124, 34, 66, 0.7);
}

main {
  padding: 60px 20px 100px;
  position: relative;
  z-index: 1;
}

.hero {
  position: relative;
  min-height: 60vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 140px 20px 120px;
  background:
    linear-gradient(160deg, rgba(32, 6, 18, 0.72), rgba(46, 14, 26, 0.88));
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 20% 20%, rgba(255, 198, 221, 0.3), transparent 60%),
              linear-gradient(180deg, rgba(26, 8, 16, 0.6), rgba(26, 8, 16, 0.95));
  mix-blend-mode: soft-light;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 620px;
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 22px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(4px);
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0.3px;
  color: #f9f8fb;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.hero-kicker:hover,
.hero-kicker:focus {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.18);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.22);
}

.hero-subtitle {
  margin: 0;
  font-size: clamp(18px, 3vw, 22px);
  opacity: 0.9;
}

.hero.hero-gallery {
  min-height: 50vh;
  padding-top: 120px;
}

.hero h1 {
  margin: 0;
  font-size: clamp(42px, 7vw, 62px);
  font-weight: 600;
  letter-spacing: 0.6px;
  text-shadow: 0 20px 45px rgba(0, 0, 0, 0.45);
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  justify-content: center;
}

.cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 18px;
  font-weight: 600;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, opacity 0.2s ease;
  color: #1f0720;
  background: #f7f2f6;
  box-shadow: 0 18px 35px rgba(0, 0, 0, 0.25);
}

.logo-img {
  --size: 28px;
  width: var(--size);
  height: var(--size);
  object-fit: contain;
  display: block;
  filter: drop-shadow(0 10px 24px rgba(0, 0, 0, 0.35));
}

.cta.primary {
  background: linear-gradient(135deg, #25d366, #128c7e);
  color: #0e231f;
  box-shadow: 0 22px 42px rgba(18, 140, 126, 0.35);
}

.cta.primary .logo-img {
  --size: 30px;
}

.cta.secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #f9f8fb;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.12);
}

.cta:hover,
.cta:focus {
  transform: translateY(-3px);
  opacity: 0.92;
}

.cta.primary:hover,
.cta.primary:focus-visible {
  box-shadow: 0 8px 28px rgba(37, 211, 102, 0.4);
}

.services {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 32px;
  margin: 0 auto 70px;
  max-width: 1040px;
}

.service-category {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.16), rgba(255, 255, 255, 0.05));
  color: #fdfafb;
  border-radius: 24px;
  padding: 32px 28px;
  box-shadow: 0 25px 55px rgba(4, 0, 10, 0.32);
  backdrop-filter: blur(18px);
  text-align: right;
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.service-category h2 {
  margin: 0 0 18px;
  font-size: 26px;
  font-weight: 600;
}

.price-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 16px;
}

.price-item {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  padding-bottom: 12px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.price-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.item-name {
  font-size: 18px;
  font-weight: 500;
  opacity: 0.92;
}

.item-price {
  font-size: 18px;
  font-weight: 600;
  direction: rtl;
  text-align: right;
  unicode-bidi: plaintext;
}

/* ===== Contact Card v2 ===== */
.contact-card {
  margin: 0 auto;
  max-width: 560px;
  padding: 32px 34px;
  border-radius: 32px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.14);
  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  position: relative;
}

.contact-card::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.35), transparent);
  opacity: 0.6;
  pointer-events: none;
}

.contact-head {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.contact-card h2 {
  margin: 0;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 0.3px;
}


.contact-info {
  display: grid;
  gap: 10px;
  margin: 14px 0 20px;
}

.info-row {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.08);
  color: inherit;
  transition: transform 0.15s ease, background 0.15s ease, box-shadow 0.15s ease;
  cursor: default;
}

.info-row-dual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.info-item {
  display: flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.info-item .info-text {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.info-row:hover,
.info-row:focus-visible {
  background: rgba(255, 255, 255, 0.1);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.28);
  outline: none;
}

.info-icon {
  font-size: 18px;
  color: #f6c3d9;
}

.info-text {
  font-size: 15px;
}

.contact-actions {
  display: grid;
  gap: 16px;
  margin-top: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 17px;
  text-decoration: none;
  line-height: 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, opacity 0.18s ease;
  backdrop-filter: blur(10px);
  color: #f9f8fb;
}

.btn-logo {
  height: 22px;
  width: auto;
  object-fit: contain;
  display: block;
}

.btn-primary {
  background: linear-gradient(135deg, #25d366 0%, #1fa855 55%, #128c7e 100%);
  color: #061a13;
  box-shadow: 0 18px 38px rgba(18, 140, 126, 0.32);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  transform: translateY(-3px);
  box-shadow: 0 10px 32px rgba(37, 211, 102, 0.38);
}

.btn-ghost {
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
  color: #f9f8fb;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.18), inset 0 0 0 1px rgba(255, 255, 255, 0.16);
}

.btn-google {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.95), rgba(255, 255, 255, 0.82));
  color: #1f1f1f;
  box-shadow: 0 20px 36px rgba(255, 255, 255, 0.22), inset 0 0 0 1px rgba(255, 255, 255, 0.6);
}

.btn-google:hover,
.btn-google:focus-visible {
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.98), rgba(255, 255, 255, 0.88));
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  transform: translateY(-2px);
  background: linear-gradient(150deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.03));
}

.btn-moovit {
  background: #ff6600;
  color: #321107;
  box-shadow: 0 20px 40px rgba(255, 102, 0, 0.32);
}

.btn-moovit:hover,
.btn-moovit:focus-visible {
  background: #ff7a26;
}

.btn-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.btn:focus-visible {
  outline: none;
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.22), 0 18px 34px rgba(0, 0, 0, 0.32);
}

.qr-page {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 60px 20px;
  background:
    radial-gradient(circle at 20% 15%, rgba(255, 214, 230, 0.24), transparent 55%),
    radial-gradient(circle at 78% 82%, rgba(118, 45, 74, 0.32), transparent 50%),
    linear-gradient(150deg, rgba(21, 6, 15, 0.96), rgba(45, 12, 28, 0.92));
}

.qr-container {
  position: relative;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18), rgba(255, 255, 255, 0.08));
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 32px;
  padding: 42px 36px 48px;
  backdrop-filter: blur(12px);
  max-width: 440px;
  width: 100%;
  box-shadow:
    0 28px 60px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25);
}

.qr-container::before {
  content: '';
  position: absolute;
  inset: 0 0 auto 0;
  height: 1px;
  border-radius: inherit;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
  opacity: 0.65;
  pointer-events: none;
}

.qr-container h1 {
  margin: 0 0 26px;
  font-size: clamp(26px, 4vw, 36px);
  font-weight: 600;
  letter-spacing: 0.3px;
}

#qrcode {
  margin: 0 auto;
  width: 260px;
  height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
}

#qrcode canvas,
#qrcode img {
  width: 100% !important;
  height: 100% !important;
  background: rgba(255, 255, 255, 0.96);
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(18, 7, 15, 0.32);
}

@media (max-width: 600px) {
  main {
    padding: 40px 16px 70px;
  }

  .hero {
    padding: 120px 16px 100px;
    min-height: auto;
  }

  .hero-content {
    gap: 20px;
  }

  .cta {
    width: 100%;
    justify-content: center;
    font-size: 16px;
  }

  .service-category {
    padding: 26px 22px;
  }

  .item-name,
  .item-price {
    font-size: 16px;
  }

  .contact-card {
    padding: 26px;
  }

  .contact-info {
    margin: 14px 0 22px;
  }

  .info-row-dual {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .info-text {
    font-size: 16px;
  }

  .btn {
    font-size: 16px;
    padding: 13px 18px;
  }

  .contact-actions {
    gap: 20px;
  }

  .btn-group {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .qr-page {
    padding: 48px 16px;
  }

  .qr-container {
    padding: 36px 26px 40px;
    border-radius: 28px;
  }

  #qrcode {
    width: 220px;
    height: 220px;
  }
}

.gallery-section {
  margin: 0 auto;
  max-width: 1160px;
  padding: 40px 0 20px;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}

.gallery-card {
  background: rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.gallery-card img {
  width: 100%;
  height: auto;
  max-height: 360px;
  object-fit: contain;
  background: rgba(18, 7, 15, 0.6);
  display: block;
}

.gallery-card figcaption {
  margin: 0;
  padding: 16px 18px 20px;
  font-size: 16px;
  font-weight: 500;
  text-align: right;
  color: #fdfafb;
  opacity: 0.92;
}

.gallery-empty {
  margin: 80px auto 0;
  max-width: 360px;
  font-size: 18px;
  opacity: 0.8;
}

@media (max-width: 600px) {
  .gallery-card img {
    max-height: 260px;
  }
}
