@import url('https://fonts.googleapis.com/css2?family=Heebo:wght@300;400;500;700;900&display=swap');

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

/* ══ BRAND COLORS
   --pink-light : #FFCDC8  (backgrounds, nav, hero cards)
   --pink-dark  : #B67168  (forms, cards accent, buttons)
   --text-dark  : #2a0a0a  (headings)
   --text-body  : #5a1a1a  (body text)
══ */

body {
  font-family: 'Heebo', sans-serif;
  direction: rtl;
  background: #FFCDC8;
  color: #2a0a0a;
  -webkit-font-smoothing: antialiased;
}

/* ══ LAYOUT ══ */
.page-wrap {
  max-width: 1080px;
  margin: 0 auto;
  padding: 0 40px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.page-top-pad { padding-top: 24px; }

/* ══ NAV ══ */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #FFCDC8;
  border-bottom: 1px solid rgba(182,113,104,.2);
  padding: 0 24px;
  height: 64px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 46px; }
.nav-links { display: flex; gap: 24px; list-style: none; }
.nav-links a {
  color: #5a1a1a;
  text-decoration: none;
  font-size: .87rem;
  font-weight: 500;
}
.nav-links a:hover { color: #B67168; }
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: #5a1a1a;
  border-radius: 2px;
}

/* ══ HERO CARD ══ */
.hero-card {
  border-radius: 28px;
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  min-height: 520px;
  justify-content: flex-start;
  padding: 52px 20px 48px;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('images/hero-bg-777.png');
  background-size: cover;
  background-position: center center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(0,0,0,.32);
}
.hero-content {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 100%;
}
.hero-logo {
  width: 100%;
  max-width: 400px;
  height: auto;
  margin-bottom: 16px;
  filter: brightness(1.1);
}
.hero-title {
  font-size: clamp(2rem,5.5vw,3rem);
  font-weight: 900;
  color: #fff;
  line-height: 1.25;
  margin-bottom: 14px;
}
.hero-sub {
  font-size: clamp(.88rem,2vw,1rem);
  font-weight: 300;
  color: rgba(255,240,238,.85);
  letter-spacing: .04em;
  margin-bottom: 28px;
}
.hero-arrows {
  font-size: .95rem;
  color: rgba(255,210,200,.6);
  letter-spacing: .35em;
  margin-bottom: 24px;
}

/* ══ HERO FORM — glass over dark bg ══ */
.hero-form-card {
  background: #B67168;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 24px;
  padding: 28px 24px;
  width: 100%;
  max-width: 400px;
  box-shadow: 0 8px 40px rgba(0,0,0,.22), 0 2px 8px rgba(0,0,0,.1);
}

/* ══ GUIDE HERO (pink card) ══ */
.guide-hero {
  background: #FFCDC8;
  border-radius: 28px;
  padding: 56px 48px;
  text-align: center;
  border: 1px solid rgba(182,113,104,.15);
}

/* ══ FORM ELEMENTS ══ */
.form-select-wrap {
  position: relative;
  margin-bottom: 10px;
}
.form-select-wrap::after {
  content: '▾';
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: #fff;
  pointer-events: none;
  font-size: .8rem;
}
.form-select,
.form-input {
  width: 100%;
  background: rgba(255,255,255,.18);
  border: 1px solid rgba(255,255,255,.35);
  border-radius: 50px;
  padding: 13px 20px;
  font-family: 'Heebo', sans-serif;
  font-size: .95rem;
  color: #fff;
  direction: rtl;
  outline: none;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
  margin-bottom: 10px;
  display: block;
}
.form-select option { color: #2a0a0a; background: #fff; }
.form-select:focus,
.form-input:focus { border-color: rgba(255,255,255,.7); }
.form-input::placeholder { color: rgba(255,255,255,.7); }

/* ══ BUTTON ══ */
.btn-rg {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 15px 32px;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  text-decoration: none;
  text-align: center;
  letter-spacing: .02em;
  margin-top: 4px;
  background: #2a0a0a;
  box-shadow: 0 6px 20px rgba(0,0,0,.25);
  transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.btn-rg:hover {
  transform: translateY(-2px);
  background: #3d1010;
  box-shadow: 0 10px 28px rgba(0,0,0,.3);
}
.btn-rg:active { transform: translateY(0); }
.btn-rg-inline {
  display: inline-flex;
  width: auto;
  padding: 14px 40px;
}

/* ══ SECTION CARDS ══ */
.card-section {
  background: #fff;
  border-radius: 28px;
  padding: 44px 36px;
  border: 1px solid rgba(182,113,104,.12);
  box-shadow: 0 2px 16px rgba(182,113,104,.08);
}
.card-section.soft-pink {
  background: #FFCDC8;
  border-color: rgba(182,113,104,.18);
}
.card-section.dark {
  background: #2a0a0a;
}

/* ══ TYPE ══ */
.sec-tag {
  display: inline-block;
  padding: 5px 18px;
  border-radius: 50px;
  border: 1px solid rgba(182,113,104,.4);
  color: #B67168;
  font-size: .75rem;
  font-weight: 500;
  letter-spacing: .07em;
  margin-bottom: 14px;
}
.sec-tag.light {
  color: rgba(255,205,200,.8);
  border-color: rgba(255,205,200,.3);
}
.sec-title {
  font-size: clamp(1.6rem,3.5vw,2.2rem);
  font-weight: 900;
  color: #2a0a0a;
  line-height: 1.2;
  margin-bottom: 8px;
}
.sec-title.white { color: #fff; }
.sec-body {
  font-size: .95rem;
  color: #5a1a1a;
  line-height: 1.95;
}
.sec-body.soft { color: rgba(255,205,200,.75); }
.gline {
  width: 44px;
  height: 2px;
  background: linear-gradient(90deg, #B67168, #FFCDC8);
  border-radius: 2px;
  margin: 18px 0;
}
.gline.center { margin: 18px auto; }

/* ══ ABOUT ══ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 56px;
  align-items: center;
}
.about-photo {
  width: 240px;
  height: 300px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
  border: 1px solid rgba(182,113,104,.2);
  box-shadow: 0 20px 56px rgba(182,113,104,.2);
  flex-shrink: 0;
}

/* ══ MINI CARDS ══ */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 16px;
}
.mini-card {
  background: #fff;
  border: 1px solid rgba(182,113,104,.15);
  border-radius: 22px;
  padding: 24px 20px;
  box-shadow: 0 2px 12px rgba(182,113,104,.07);
  transition: transform .2s, box-shadow .2s;
}
.mini-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 28px rgba(182,113,104,.15);
}
.mini-card.featured {
  border-color: rgba(182,113,104,.4);
  position: relative;
  overflow: hidden;
}
.mini-card.featured::before {
  content: '';
  position: absolute;
  top: 0; right: 0; left: 0;
  height: 3px;
  background: linear-gradient(90deg,#FFCDC8,#B67168,#FFCDC8);
}
.mini-icon { font-size: 1.6rem; margin-bottom: 10px; }
.mini-badge {
  display: inline-block;
  font-size: .7rem;
  color: #B67168;
  background: #FFCDC8;
  padding: 2px 10px;
  border-radius: 50px;
  margin-bottom: 6px;
  font-weight: 500;
}
.mini-title { font-size: .92rem; font-weight: 700; color: #2a0a0a; margin-bottom: 4px; }
.mini-soon { font-size: .75rem; color: #B67168; margin-bottom: 6px; }
.mini-text { font-size: .83rem; color: #5a1a1a; line-height: 1.65; margin-bottom: 14px; }
.btn-soon-sm {
  display: inline-block;
  padding: 7px 18px;
  border-radius: 50px;
  border: 1px solid rgba(182,113,104,.3);
  color: #B67168;
  font-size: .8rem;
  font-family: 'Heebo',sans-serif;
  background: transparent;
  cursor: default;
}

/* ══ DARK MINI CARDS ══ */
.dark-mini-card {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,205,200,.12);
  border-radius: 20px;
  padding: 24px 20px;
}

/* ══ GALLERY ══ */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
}
.gallery-img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 18px;
  width: 100%;
}

/* ══ TESTIMONIALS ══ */
.test-card {
  background: #fff;
  border: 1px solid rgba(182,113,104,.12);
  border-radius: 22px;
  padding: 26px;
  box-shadow: 0 2px 12px rgba(182,113,104,.07);
}
.card-section.dark .test-card {
  background: rgba(255,255,255,.06);
  border-color: rgba(255,205,200,.12);
}
.test-name { font-weight: 700; color: #B67168; font-size: .88rem; margin-bottom: 2px; }
.test-role { font-size: .76rem; color: #B67168; opacity: .7; margin-bottom: 12px; }
.test-body { font-size: .9rem; color: #5a1a1a; line-height: 1.75; }
.card-section.dark .test-body { color: rgba(255,205,200,.75); }
.tests-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 16px;
  margin-bottom: 16px;
}
.tests-grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

/* ══ CONTACT BOX ══ */
.contact-box {
  max-width: 480px;
  margin: 0 auto;
  background: #B67168;
  border-radius: 28px;
  padding: 40px 36px;
  border: 1px solid rgba(255,255,255,.15);
  box-shadow: 0 8px 32px rgba(182,113,104,.25);
}
.contact-box .sec-title { color: #fff; }
.contact-box .sec-body { color: rgba(255,255,255,.85); }
.contact-box .sec-tag { color: rgba(255,255,255,.8); border-color: rgba(255,255,255,.3); }
.contact-box .gline { background: linear-gradient(90deg,rgba(255,255,255,.6),rgba(255,255,255,.2)); }
.contact-box .form-input {
  background: rgba(255,255,255,.18);
  border-color: rgba(255,255,255,.35);
  color: #fff;
}
.contact-box .form-input::placeholder { color: rgba(255,255,255,.65); }
.contact-box .btn-rg { background: #2a0a0a; color: #fff; }

/* ══ FAQ ══ */
.faq-item {
  padding: 20px 0;
  border-bottom: 1px solid rgba(182,113,104,.15);
}
.faq-q { font-weight: 700; font-size: .97rem; color: #2a0a0a; margin-bottom: 8px; }
.faq-a { font-size: .9rem; color: #5a1a1a; line-height: 1.8; }

/* ══ QUOTE CARDS ══ */
.quote-card {
  background: #fff;
  border-radius: 16px;
  padding: 18px 24px;
  font-size: .97rem;
  color: #5a1a1a;
  font-style: italic;
  border-right: 3px solid #B67168;
  line-height: 1.6;
  box-shadow: 0 2px 10px rgba(182,113,104,.08);
}

/* ══ FOOTER ══ */
footer {
  background: #fff;
  border-radius: 28px;
  border: 1px solid rgba(182,113,104,.12);
  padding: 36px 24px;
  text-align: center;
  margin-bottom: 24px;
  box-shadow: 0 2px 16px rgba(182,113,104,.07);
}
footer img { height: 42px; margin: 0 auto 12px; display: block; }
footer p { font-size: .82rem; color: #B67168; }

/* ══ STICKY CTA ══ */
.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0; right: 0; left: 0;
  z-index: 90;
  padding: 12px 16px;
  background: rgba(255,205,200,.97);
  border-top: 1px solid rgba(182,113,104,.2);
  justify-content: center;
}

/* ══ CONFIRM ══ */
.form-confirm { display: none; text-align: center; padding: 16px 0; }

/* ══ REVEAL ══ */
.rev { opacity: 0; transform: translateY(16px); transition: opacity .65s ease, transform .65s ease; }
.rev.on { opacity: 1; transform: none; }

/* ══ DESKTOP ══ */
@media (min-width: 701px) {
  .card-section { padding: 56px 52px; }
  .guide-hero { padding: 64px 64px; }
  .hero-title .mobile-br { display: none; }
}

/* ══ MOBILE ══ */
@media (max-width: 700px) {
  .page-wrap { padding: 0 14px; gap: 16px; }
  .card-section { padding: 32px 22px; }
  .guide-hero { padding: 36px 24px; }
  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-photo { width: 100%; height: auto; max-height: none; object-fit: contain; border-radius: 22px; margin: 0 auto; }
  .cards-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2,1fr); }
  .tests-grid { grid-template-columns: 1fr; }
  .tests-grid-2 { grid-template-columns: 1fr; }
  .contact-box { padding: 28px 20px; }
  .hero-form-card { padding: 22px 18px; }
  .hero-logo { max-width: 340px; }
  .hero-form-row { display: flex; gap: 8px; }
  .hero-form-row .form-input { margin-bottom: 10px; flex: 1; }
  .hero-email-field { display: none; }
  .hero-bg { background-position: center center; }
  .hero-title .desktop-br { display: none; }
  .hero-title .mobile-br { display: inline; }
  .hide-mobile { display: none; }
  .hero-card { min-height: 0; padding: 36px 16px 32px; }
  nav { padding: 0 16px; }
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 64px; right: 0; left: 0;
    background: #FFCDC8;
    padding: 24px;
    gap: 18px;
    z-index: 99;
    border-bottom: 1px solid rgba(182,113,104,.2);
  }
  .sticky-cta { display: flex; }
  .mini-card .btn-rg { display: inline-flex; width: auto; padding: 10px 22px; font-size: .85rem; }
  /* Guide page — single column grids */
  [style*="grid-template-columns:repeat(3"],
  [style*="grid-template-columns: repeat(3"] { grid-template-columns: 1fr !important; }
  [style*="grid-template-columns:1fr 1fr"],
  [style*="grid-template-columns: 1fr 1fr"] { grid-template-columns: 1fr !important; }
}
