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

:root {
  --cream:        #F7F2EC;
  --cream-dark:   #EDE6DB;
  --green:        #A8B89A;
  --green-dark:   #7A9468;
  --rose:         #E7B8A4;
  --peach:        #F2C9BB;
  --brown:        #6B5040;
  --brown-light:  #8A6F5A;
  --text:         #3A2E26;
  --text-muted:   #7A6A5E;
}

html { scroll-behavior: smooth; }
body {
  font-family: 'Heebo', sans-serif;
  background: var(--cream);
  color: var(--text);
  direction: rtl;
  text-align: right;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; right: 0; left: 0; z-index: 100;
  background: rgba(247,242,236,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(168,184,154,0.2);
  padding: 0 48px;
  display: flex; align-items: center; justify-content: space-between;
  height: 68px;
}
.nav-logo { display: flex; align-items: center; gap: 12px; }
.nav-brand {
  font-family: 'Rubik', sans-serif;
  font-size: 17px; font-weight: 700;
  color: var(--brown); line-height: 1.2; letter-spacing: -0.01em;
}
.nav-brand span { display: block; font-size: 11px; font-weight: 400; color: var(--green-dark); letter-spacing: 0.05em; }
.nav-links { display: flex; gap: 32px; list-style: none; margin-top: 16px; }
.nav-links a { text-decoration: none; font-size: 15px; color: var(--text-muted); font-weight: 400; transition: color 0.2s; }
.nav-links a:hover { color: #7a9468; }
.nav-cta {
  background: var(--green); color: white;
  border: none; cursor: pointer;
  padding: 10px 24px; border-radius: 50px; margin-top: -8px;
  font-family: 'Heebo', sans-serif; font-size: 14px; font-weight: 600;
  transition: background 0.2s, transform 0.15s;
  text-decoration: none;
}
.nav-cta:hover { background: var(--green-dark); transform: translateY(-1px); }

/* ── HERO ── */
.hero {
  min-height: 100vh;
  padding-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  position: relative;
  overflow: hidden;
}
.hero-content {
  display: flex; flex-direction: column; justify-content: center;
  padding: 80px 64px 80px 48px;
  position: relative; z-index: 2;
}
.hero-logo-big {
  width: 380px; height: 380px; object-fit: contain;
  margin: 0 auto 16px; display: block;
}
.hero-desc {
  font-size: 17px; line-height: 1.8; color: var(--text-muted);
  max-width: 460px; margin: 0 0 48px;
  text-align: right; font-weight: 300;
}
.hero-actions { display: flex; gap: 16px; align-items: center; }
.btn-primary {
  background: var(--green); color: white;
  padding: 14px 36px; border-radius: 50px;
  font-family: 'Heebo', sans-serif; font-size: 16px; font-weight: 600;
  text-decoration: none; transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(120,148,104,0.3);
}
.btn-primary:hover { background: var(--green-dark); transform: translateY(-2px); box-shadow: 0 6px 24px rgba(120,148,104,0.4); }
.btn-secondary {
  color: var(--brown); font-size: 15px; font-weight: 500;
  text-decoration: none; display: flex; align-items: center; gap: 6px;
  transition: gap 0.2s;
}
.btn-secondary:hover { gap: 10px; }
.hero-image {
  position: relative; overflow: hidden;
  background: linear-gradient(135deg, var(--peach) 0%, var(--rose) 100%);
}
.hero-image img {
  width: 100%; height: 100%; object-fit: cover; object-position: center top; display: block;
}

/* ── SECTIONS SHARED ── */
section { padding: 96px 48px; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 12px; font-weight: 600; letter-spacing: 0.12em;
  color: var(--green-dark); text-transform: uppercase; margin-bottom: 12px;
}
.section-title {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(30px, 3.5vw, 44px); font-weight: 700;
  color: var(--brown); line-height: 1.2; margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.section-subtitle {
  font-size: 17px; color: var(--text-muted); line-height: 1.8;
  font-weight: 300; max-width: 560px;
}

/* ── ABOUT ── */
.about-section { background: #EDEEE8; padding: 80px 48px; }
.about-section .section-inner {
  background: white; border-radius: 12px;
  padding: 56px 64px;
  box-shadow: 0 8px 32px rgba(107,80,64,0.06);
  max-width: 1200px; margin: 0 auto;
}
.about-grid {
  display: grid; grid-template-columns: 1.9fr 1fr; gap: 48px; align-items: center;
}
.about-image-col {
  position: relative;
  display: flex; align-items: center; justify-content: center;
  min-height: 460px; overflow: hidden;
}
.about-image-col::after {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  background: #A8B89A; border-radius: 50%;
  left: -160px; top: 20px; z-index: 0;
}
.about-image-col::before {
  content: '';
  position: absolute;
  width: 250px; height: 250px;
  background: #FAEFE5; border-radius: 50%;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  z-index: 1;
}
.about-image-col img {
  position: absolute; z-index: 2;
  width: 240px; height: auto;
  object-fit: contain; display: block;
  left: calc(50% + 60px); top: 50%;
  transform: translate(-50%, -50%);
}
.about-heading {
  font-family: 'Rubik', sans-serif;
  font-size: clamp(24px, 2.6vw, 32px); font-weight: 500;
  color: #000; line-height: 1.3; margin-bottom: 6px; letter-spacing: -0.01em;
}
.about-heading strong { font-weight: 700; color: #000; }
.about-heading .divider-bar { color: #C9CDB5; font-weight: 300; margin: 0 6px; }
.about-subtitle { font-size: 15px; color: #000; font-weight: 600; margin-bottom: 28px; letter-spacing: 0.02em; }
.about-text p,
.about-body p {
  font-size: 15px; line-height: 1.85; color: #000; margin-bottom: 18px; font-weight: 400;
}
.about-text p strong,
.about-body p strong { color: #000; font-weight: 700; }
.about-body { margin-bottom: 0; }

.faq-answer p { margin: 0 0 8px; }
.faq-answer p:last-child { margin-bottom: 0; }
.about-tags { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 28px; }
.tag {
  background: var(--green); border: 1.5px solid var(--green);
  color: white; padding: 8px 18px; border-radius: 4px;
  font-size: 13px; font-weight: 500; font-family: 'Heebo', sans-serif;
  letter-spacing: 0.01em; transition: all 0.2s;
}
.tag:hover { background: var(--green-dark); border-color: var(--green-dark); }

/* ── SERVICES ── */
.services-section { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 56px; }
.service-card {
  background: white; border-radius: 20px;
  padding: 36px 28px; text-align: center;
  box-shadow: 0 4px 24px rgba(107,80,64,0.06);
  transition: transform 0.25s, box-shadow 0.25s; cursor: default;
}
.service-card:hover { transform: translateY(-6px); box-shadow: 0 12px 36px rgba(107,80,64,0.12); }
.service-icon {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 28px;
}
.service-card h3 { font-size: 18px; font-weight: 700; color: var(--brown); margin-bottom: 10px; }
.service-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; font-weight: 300; white-space: pre-line; }

/* ── PROCESS ── */
.process-section { background: var(--green); }
.process-section .section-title { color: white; }
.process-section .section-label { color: rgba(255,255,255,0.7); }
.process-section .section-subtitle { color: rgba(255,255,255,0.8); }
.process-steps {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px;
  margin-top: 60px; position: relative;
}
.process-steps::before {
  content: '';
  position: absolute; top: 32px; right: 16.66%; left: 16.66%;
  height: 2px; background: rgba(255,255,255,0.25);
}
.process-step { text-align: center; position: relative; }
.step-number {
  width: 64px; height: 64px; border-radius: 50%;
  background: white; color: var(--green-dark);
  font-size: 22px; font-weight: 800;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 24px;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
}
.process-step h3 { color: white; font-size: 18px; font-weight: 700; margin-bottom: 10px; }
.process-step p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; font-weight: 300; }

/* ── FAQ ── */
.faq-section { background: white; }
.faq-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: stretch; margin-top: 56px; }
.faq-list { display: flex; flex-direction: column; justify-content: space-between; gap: 0; }
.faq-item {
  border: 1px solid var(--cream-dark); border-radius: 14px;
  overflow: hidden; cursor: pointer; transition: border-color 0.2s;
}
.faq-item.open { border-color: var(--green); }
.faq-question {
  padding: 20px 24px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 15px; font-weight: 600; color: var(--text); user-select: none;
}
.faq-arrow { color: var(--green-dark); font-size: 18px; transition: transform 0.3s; flex-shrink: 0; }
.faq-item.open .faq-arrow { transform: rotate(180deg); }
.faq-answer {
  padding: 0 24px; max-height: 0; overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  font-size: 14px; color: var(--text-muted); line-height: 1.8; font-weight: 300;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 20px; }
.faq-image { position: relative; }
.faq-image img { width: 100%; border-radius: 20px; display: block; }
.faq-quote {
  margin-top: 20px;
  background: white; border-radius: 14px; padding: 20px 24px;
  text-align: center;
  box-shadow: 0 8px 32px rgba(107,80,64,0.12);
  border: 1px solid var(--cream-dark);
}
.faq-quote p { font-size: 15px; color: var(--brown); line-height: 1.7; font-style: italic; font-weight: 400; }

/* ── CONTACT ── */
.contact-section { background: linear-gradient(160deg, var(--cream) 0%, var(--peach) 100%); }
.contact-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: stretch; }
.contact-info { display: flex; flex-direction: column; }
.contact-info h2 {
  font-family: 'Rubik', sans-serif; font-size: 38px; font-weight: 700;
  color: var(--brown); margin-bottom: 16px; line-height: 1.2; letter-spacing: -0.02em;
}
.contact-info > p { font-size: 16px; color: var(--text-muted); line-height: 1.8; margin-bottom: 28px; font-weight: 300; max-width: 420px; }
.contact-image {
  border-radius: 24px; overflow: hidden;
  box-shadow: 0 16px 48px rgba(107,80,64,0.14);
  flex: 1; min-height: 360px; position: relative;
}
.contact-image img { width: 100%; height: 100%; display: block; object-fit: cover; object-position: center 30%; }
.contact-image::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(107,80,64,0.18) 100%);
  pointer-events: none;
}
.contact-details { display: flex; flex-direction: column; gap: 16px; margin-bottom: 24px; }
.contact-detail { display: flex; align-items: center; gap: 14px; }
.contact-detail-icon {
  width: 44px; height: 44px; border-radius: 12px;
  background: white; display: flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 2px 12px rgba(107,80,64,0.1); flex-shrink: 0;
}
.contact-detail span { font-size: 15px; color: var(--text); font-weight: 500; }
.contact-form {
  background: white; border-radius: 24px; padding: 44px 40px;
  box-shadow: 0 16px 48px rgba(107,80,64,0.1); align-self: stretch;
}
.contact-form h3 { font-size: 22px; font-weight: 700; color: var(--brown); margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--brown-light); margin-bottom: 6px; }
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  border: 1.5px solid var(--cream-dark); border-radius: 12px;
  font-family: 'Heebo', sans-serif; font-size: 15px; color: var(--text);
  background: var(--cream); outline: none;
  transition: border-color 0.2s; direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { border-color: var(--green); background: white; }
.form-group textarea { resize: none; height: 100px; }
.form-submit {
  width: 100%; padding: 14px;
  background: var(--green); color: white; border: none;
  border-radius: 12px; font-family: 'Heebo', sans-serif;
  font-size: 16px; font-weight: 700; cursor: pointer;
  transition: all 0.2s;
  box-shadow: 0 4px 16px rgba(120,148,104,0.3);
}
.form-submit:hover { background: var(--green-dark); transform: translateY(-1px); }
.form-success { text-align: center; padding: 60px 20px; }
.form-success .check { font-size: 48px; margin-bottom: 16px; }
.form-success h4 { font-size: 20px; font-weight: 700; color: var(--green-dark); margin-bottom: 8px; }
.form-success p { font-size: 15px; color: var(--text-muted); }

/* ── CONTACT FORM 7 overrides ── */
.wpcf7 { margin: 0; }
.wpcf7 .wpcf7-form { margin: 0; }

/* Make CF7 inputs match our design */
.wpcf7 input[type="text"],
.wpcf7 input[type="tel"],
.wpcf7 input[type="email"],
.wpcf7 select,
.wpcf7 textarea {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--cream-dark);
  border-radius: 12px;
  font-family: 'Heebo', sans-serif;
  font-size: 15px;
  color: var(--text);
  background: var(--cream);
  outline: none;
  transition: border-color 0.2s;
  direction: rtl;
  display: block;
}
.wpcf7 input[type="text"]:focus,
.wpcf7 input[type="tel"]:focus,
.wpcf7 input[type="email"]:focus,
.wpcf7 select:focus,
.wpcf7 textarea:focus { border-color: var(--green); background: white; }
.wpcf7 textarea { resize: none; height: 100px; }

/* Validation error border */
.wpcf7 .wpcf7-not-valid { border-color: var(--rose) !important; }
.wpcf7-not-valid-tip { font-size: 12px; color: var(--brown); margin-top: 4px; display: block; }

/* Response output (success / error message) */
.wpcf7-response-output {
  margin: 16px 0 0 !important;
  padding: 14px 18px !important;
  border-radius: 12px !important;
  font-size: 14px !important;
  border: 1.5px solid var(--green) !important;
  color: var(--green-dark) !important;
  background: rgba(168,184,154,0.12) !important;
  text-align: center;
}
.wpcf7-response-output.wpcf7-mail-sent-ng,
.wpcf7-response-output.wpcf7-spam-blocked,
.wpcf7-response-output.wpcf7-validation-errors {
  border-color: var(--rose) !important;
  color: var(--brown) !important;
  background: rgba(231,184,164,0.12) !important;
}

/* Hide CF7 spinner */
.wpcf7-spinner { display: none !important; }

/* ── FOOTER ── */
footer {
  background: var(--brown); color: white;
  padding: 40px 48px; text-align: center;
}
footer p { font-size: 14px; opacity: 0.7; margin-top: 8px; }
.footer-brand { font-family: 'Rubik', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 4px; letter-spacing: -0.01em; }

/* ── SCROLL REVEAL ── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-d1 { transition-delay: 0.10s; }
.reveal-d2 { transition-delay: 0.20s; }
.reveal-d3 { transition-delay: 0.30s; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  nav { padding: 0 24px; }
  .nav-links { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-content { padding: 48px 24px; }
  .hero-logo-big { width: 260px; height: 260px; }
  .hero-image { height: 360px; }
  section { padding: 64px 24px; }
  .about-grid,
  .faq-grid,
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .process-steps { grid-template-columns: 1fr; }
  .process-steps::before { display: none; }
}
@media (max-width: 880px) {
  .about-section { padding: 48px 20px; }
  .about-section .section-inner { padding: 32px 24px; }
  .about-image-col { min-height: auto; }
}