/* ── Reset & Base ─────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --black:   #111111;
  --white:   #ffffff;
  --cream:   #f5f0e8;
  --purple:  #b39ddb;
  --lavender-bg: #a78bcf;
  --yellow:  #f5c130;
  --blue:    #8ecfdb;
  --text-dark: #111111;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  background: var(--black);
  color: var(--white);
  direction: rtl;
}

body.ltr {
  direction: ltr;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }

/* ── Buttons ─────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 14px 40px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.2s;
  background: var(--white);
  color: var(--black);
  border: none;
}
.btn:hover { opacity: 0.85; }

.btn-outline {
  background: var(--cream);
  color: var(--black);
}

.btn-dark {
  background: var(--white);
  color: var(--black);
  width: 100%;
  padding: 14px;
  font-size: 1rem;
}

/* ══════════════════════════════════════════════
   SECTION 1 – HERO
══════════════════════════════════════════════ */
.hero {
  background: var(--black);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

/* Nav */
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 40px;
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 10;
}

.logo {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.logo-img {
  width: 110px;
  height: auto;
  display: block;
}

.about-logo-img {
  width: 140px;
  filter: brightness(0);
}

.nav-links {
  display: flex;
  gap: 12px;
  align-items: center;
  font-size: 1rem;
  font-weight: 400;
  color: var(--white);
}
.nav-links a:hover { opacity: 0.75; }
.nav-links span { opacity: 0.5; }

.lang-toggle {
  background: transparent;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 20px;
  font-size: 0.8rem;
  font-family: 'Heebo', sans-serif;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
}
.lang-toggle:hover { background: var(--white); color: var(--black); }

/* Hero body */
.hero-inner {
  display: flex;
  flex: 1;
  min-height: 100vh;
}

.hero-photo {
  width: 42%;
  flex-shrink: 0;
  overflow: hidden;
}
.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 120px 60px 60px 40px;
  text-align: right;
}

.hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 5rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 24px;
}

.hero-sub {
  font-size: clamp(1rem, 1.8vw, 1.4rem);
  font-weight: 400;
  color: var(--purple);
  margin-bottom: 40px;
  max-width: 460px;
  line-height: 1.5;
}

/* ══════════════════════════════════════════════
   SECTION 2 – ABOUT
══════════════════════════════════════════════ */
.about {
  background: var(--yellow);
  color: var(--white);
}

.about-inner {
  display: flex;
  align-items: stretch;
  min-height: 600px;
}

.about-video {
  width: 40%;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 32px;
  background: var(--yellow);
}

/* Thumbnail trigger */
.video-trigger {
  position: relative;
  width: 100%;
  border: none;
  padding: 0;
  cursor: pointer;
  background: none;
  border-radius: 8px;
  overflow: hidden;
  display: block;
  box-shadow: 0 8px 32px rgba(0,0,0,0.25);
}
.video-trigger img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}
.video-trigger:hover img { transform: scale(1.03); }

.play-btn {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.2s;
}
.play-btn svg { width: 72px; height: 72px; filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4)); }
.video-trigger:hover .play-btn { opacity: 0.85; }

/* Lightbox */
.video-lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 1000;
  align-items: center;
  justify-content: center;
}
.video-lightbox.open { display: flex; }

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: none;
  color: var(--white);
  font-size: 1.8rem;
  cursor: pointer;
  line-height: 1;
  opacity: 0.7;
  transition: opacity 0.2s;
  z-index: 10;
}
.lightbox-close:hover { opacity: 1; }

.lightbox-inner {
  width: 90vw;
  max-width: 1000px;
}

.vimeo-wrap {
  width: 100%;
  position: relative;
  padding-top: 56.25%;
  border-radius: 8px;
  overflow: hidden;
}

.vimeo-wrap iframe {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 100%;
  border: none;
}

.about-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-end;
  padding: 60px 60px 60px 40px;
  text-align: right;
}

.about-logo {
  margin-bottom: 40px;
}

.about-name {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.1;
  color: var(--white);
  margin-bottom: 8px;
}

.about-title {
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--white);
  margin-bottom: 24px;
  text-transform: uppercase;
}

.about-bio {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.7;
  color: var(--white);
  max-width: 520px;
}

/* ══════════════════════════════════════════════
   SECTION 3 – APPROACH
══════════════════════════════════════════════ */
.approach {
  background: var(--black);
  padding: 80px 60px;
}

.approach-inner {
  max-width: 1400px;
  margin: 0 auto;
}

.approach h2 {
  font-size: clamp(2rem, 4vw, 3.5rem);
  font-weight: 900;
  text-align: right;
  margin-bottom: 48px;
  color: var(--white);
}

.approach-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 48px;
}

.approach-card {
  display: flex;
  flex-direction: column;
}

.approach-card img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: 4px;
}


.approach-card p {
  margin-top: 16px;
  font-size: 0.95rem;
  font-weight: 400;
  line-height: 1.5;
  color: var(--white);
  text-align: center;
}

.approach-inner > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SECTION 4 – WHY
══════════════════════════════════════════════ */
.why {
  background: var(--blue);
  padding: 80px 60px;
  color: var(--white);
}

.why-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.why h2 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}

.why-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-bottom: 48px;
}

.why-card {
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 32px 40px;
  display: flex;
  align-items: flex-start;
  gap: 40px;
}

.why-card h3 {
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 900;
  color: var(--cream);
  flex-shrink: 0;
  min-width: 200px;
  text-align: right;
  line-height: 1.1;
}

.why-card p {
  font-size: 1rem;
  line-height: 1.6;
  color: var(--white);
  flex: 1;
  text-align: right;
}

.why-inner > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SECTION 5 – SERVICES
══════════════════════════════════════════════ */
.services {
  background: var(--lavender-bg);
  padding: 80px 60px;
  color: var(--white);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 900;
  text-align: center;
  margin-bottom: 48px;
  color: var(--white);
}

.services-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 48px;
}

.service-card {
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 8px;
  padding: 40px 32px;
  text-align: center;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card h3 {
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  font-weight: 900;
  color: var(--cream);
  line-height: 1.2;
}

.service-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--white);
}

.services-inner > .btn {
  display: block;
  width: fit-content;
  margin: 0 auto;
}

/* ══════════════════════════════════════════════
   SECTION 6 – CONTACT
══════════════════════════════════════════════ */
.contact {
  background: var(--black);
  padding: 100px 60px 60px;
  color: var(--white);
}

.contact-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  gap: 80px;
  align-items: flex-start;
}

.contact-form-wrap {
  flex-shrink: 0;
  width: 420px;
  border: 2px solid var(--white);
  border-radius: 8px;
  padding: 36px 32px;
}

.form-title {
  text-align: center;
  font-size: 0.9rem;
  font-weight: 400;
  opacity: 0.7;
  margin-bottom: 32px;
}

.form-field {
  margin-bottom: 28px;
}

.form-field label {
  display: block;
  font-size: 1rem;
  font-weight: 600;
  text-align: right;
  margin-bottom: 4px;
}

.form-field input {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--white);
  color: var(--white);
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  padding: 6px 0;
  outline: none;
  text-align: right;
  direction: rtl;
}

.form-field input:focus { border-bottom-color: var(--purple); }

.contact-text {
  flex: 1;
  text-align: right;
  padding-top: 20px;
}

.contact-text h2 {
  font-size: clamp(2rem, 3.5vw, 3.2rem);
  font-weight: 900;
  line-height: 1.15;
  margin-bottom: 28px;
  color: var(--white);
}

.contact-text p {
  font-size: 1rem;
  line-height: 1.7;
  color: rgba(255,255,255,0.85);
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.footer {
  background: var(--black);
  border-top: 1px solid rgba(255,255,255,0.15);
  display: flex;
  justify-content: center;
  padding: 28px 60px;
  gap: 80px;
}

.footer-col {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.footer-label {
  font-size: 0.75rem;
  font-weight: 400;
  opacity: 0.6;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer-val {
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--white);
  text-transform: uppercase;
}

.footer-socials {
  display: flex;
  gap: 16px;
  margin-top: 4px;
}

.social-icon {
  color: var(--white);
  transition: opacity 0.2s;
}
.social-icon:hover { opacity: 0.7; }
.social-icon svg {
  width: 22px;
  height: 22px;
}

/* ══════════════════════════════════════════════
   FORM SUCCESS STATE
══════════════════════════════════════════════ */
.form-success {
  text-align: center;
  padding: 40px 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
}

/* ══════════════════════════════════════════════
   MOBILE – Hamburger menu
══════════════════════════════════════════════ */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 20;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}
.hamburger.open span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ══════════════════════════════════════════════
   RESPONSIVE – TABLET (max 1024px)
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .approach-grid { grid-template-columns: repeat(2, 1fr); }
  .services-cards { grid-template-columns: repeat(2, 1fr); }

  .contact-inner { flex-direction: column; gap: 48px; }
  .contact-form-wrap { width: 100%; max-width: 480px; }
  .contact-text { text-align: center; }
  .contact-text h2 { text-align: center; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE – MOBILE (max 768px)
══════════════════════════════════════════════ */
@media (max-width: 768px) {
  /* Nav */
  .nav { padding: 20px 24px; }
  .nav-links { display: none; flex-direction: column; gap: 16px; position: fixed; top: 0; left: 0; right: 0; background: var(--black); padding: 80px 24px 40px; z-index: 15; }
  .nav-links.open { display: flex; }
  .nav-links span { display: none; }
  .nav-links a { font-size: 1.3rem; }
  .hamburger { display: flex; }

  /* Hero */
  .hero { min-height: auto; }
  .hero-inner { flex-direction: column; }
  .hero-photo { width: 100%; height: 60vw; min-height: 320px; }
  .hero-photo img { height: 100%; }
  .hero-content { padding: 40px 24px; align-items: center; text-align: center; }
  .hero-content h1 { text-align: center; }
  .hero-sub { text-align: center; }

  /* About */
  .about-inner { flex-direction: column; }
  .about-video { width: 100%; padding: 32px 24px 8px; }
  .about-content { padding: 40px 24px; align-items: center; text-align: center; }
  .about-logo { align-items: center; }
  .about-bio { text-align: center; }

  /* Approach */
  .approach { padding: 60px 24px; }
  .approach h2 { text-align: center; }
  .approach-grid { grid-template-columns: 1fr; gap: 40px; }

  /* Why */
  .why { padding: 60px 24px; }
  .why-card { flex-direction: column; gap: 12px; padding: 24px; }
  .why-card h3 { min-width: unset; font-size: 2rem; text-align: right; }
  .why-card p { text-align: right; }

  /* Services */
  .services { padding: 60px 24px; }
  .services-cards { grid-template-columns: 1fr; }

  /* Contact */
  .contact { padding: 60px 24px; }
  .contact-form-wrap { width: 100%; }

  /* Footer */
  .footer { flex-direction: column; padding: 32px 24px; gap: 24px; }
}

/* ══════════════════════════════════════════════
   LTR OVERRIDES (English mode)
══════════════════════════════════════════════ */
body.ltr .hero-content { align-items: flex-start; text-align: left; }
body.ltr .hero-content h1 { text-align: left; }
body.ltr .hero-sub { text-align: left; }
body.ltr .about-content { align-items: flex-start; text-align: left; }
body.ltr .about-bio { text-align: left; }
body.ltr .about-name { text-align: left; }
body.ltr .about-title { text-align: left; }
body.ltr .approach h2 { text-align: left; }
body.ltr .why-card h3 { text-align: left; }
body.ltr .why-card p { text-align: left; }
body.ltr .contact-text { text-align: left; }
body.ltr .contact-text h2 { text-align: left; }
body.ltr .form-field label { text-align: left; }
body.ltr .form-field input { text-align: left; direction: ltr; }
body.ltr .nav-links { flex-direction: row-reverse; }

@media (max-width: 768px) {
  body.ltr .hero-content { align-items: center; text-align: center; }
  body.ltr .hero-content h1 { text-align: center; }
  body.ltr .about-content { align-items: center; text-align: center; }
  body.ltr .contact-text { text-align: center; }
  body.ltr .contact-text h2 { text-align: center; }
}
