@import url('https://fonts.googleapis.com/css2?family=IBM+Plex+Sans+Arabic:wght@300;400;500;600;700&display=swap');

:root {
  --bg: #F7F5F0;
  --white: #FFFFFF;
  --text: #161616;
  --muted: #5E5E5E;
  --border: #E5DED4;
  --accent: #2E3532;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: 'IBM Plex Sans Arabic', sans-serif;
  background: var(--bg);
  color: var(--text);
  direction: rtl;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

/* NAVBAR */

.navbar {
  background: var(--bg);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  height: 82px;
  display: grid;
  grid-template-columns: 260px 1fr auto;
  align-items: center;
  gap: 24px;
}

.brand {
  justify-self: start;
  display: block;
}

.brand-en {
  font-size: 20px;
  font-weight: 700;
  direction: ltr;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.brand-ar {
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
  line-height: 1.2;
}

.nav-links {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: 28px;
  font-size: 15px;
  color: var(--muted);
  white-space: nowrap;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-actions {
  justify-self: end;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}

.language-link {
  direction: ltr;
  color: var(--muted);
  font-size: 14px;
  border: 1px solid var(--border);
  padding: 10px 14px;
  border-radius: 8px;
  background: transparent;
  white-space: nowrap;
}

.language-link:hover {
  color: var(--text);
  border-color: var(--accent);
}

.nav-cta {
  background: var(--accent);
  color: white;
  padding: 12px 20px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

/* BUTTONS */

.button-primary {
  background: var(--accent);
  color: white;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
  white-space: nowrap;
}

.button-secondary {
  border: 1px solid var(--border);
  color: var(--text);
  background: transparent;
  padding: 13px 22px;
  border-radius: 8px;
  font-size: 15px;
  font-weight: 500;
}

/* HERO */

.hero {
  padding: 125px 0 110px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.hero-content {
  max-width: 560px;
}

.eyebrow {
  font-size: 15px;
  color: var(--muted);
  margin: 0 0 18px;
}

h1 {
  font-size: 56px;
  line-height: 1.25;
  letter-spacing: -0.04em;
  margin: 0;
  font-weight: 700;
  max-width: 620px;
}

.hero-text {
  font-size: 18px;
  line-height: 1.9;
  color: var(--muted);
  max-width: 540px;
  margin: 24px 0 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  margin-top: 32px;
}

.trust-note {
  margin-top: 22px;
  color: var(--muted);
  font-size: 14px;
}

/* HERO VISUAL CARD */

.hero-visual {
  min-height: 420px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 24px;
}

.visual-card {
  height: 100%;
  border-radius: 20px;
  background: linear-gradient(180deg, #FAF8F3, #FFFFFF);
  padding: 38px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.visual-kicker {
  font-size: 15px;
  font-weight: 700;
  color: var(--text);
  margin: 0 0 14px;
  direction: rtl;
}

.visual-text {
  font-size: 17px;
  line-height: 1.8;
  color: var(--muted);
  margin: 0;
  max-width: 360px;
}

.visual-list {
  margin-top: 28px;
  display: grid;
  gap: 12px;
  color: var(--text);
  font-size: 15px;
}

.visual-list div {
  padding: 12px 0;
  border-top: 1px solid var(--border);
}

.visual-list div::before {
  content: "✓";
  margin-left: 8px;
  color: var(--accent);
  font-weight: 700;
}

/* SECTIONS */

.section {
  padding: 100px 0;
}

.section-head {
  margin-bottom: 42px;
  max-width: 650px;
}

h2 {
  font-size: 42px;
  line-height: 1.3;
  margin: 10px 0 0;
}

h3 {
  margin: 0 0 14px;
  font-size: 22px;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

.info-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 34px;
}

.info-card p {
  margin: 0;
  line-height: 1.9;
  color: var(--muted);
}

.cta-section {
  text-align: center;
}

.cta-wrap {
  max-width: 700px;
}

.cta-text {
  margin: 18px auto 28px;
  color: var(--muted);
  font-size: 18px;
}

/* PAGE HERO */

.page-hero {
  padding: 120px 0 80px;
}

.page-hero-wrap {
  max-width: 760px;
}

.page-hero h1 {
  max-width: 760px;
}

/* CONTENT PAGES */

.content-section {
  padding: 40px 0 110px;
}

.content-grid {
  display: grid;
  grid-template-columns: 1fr 340px;
  gap: 72px;
  align-items: start;
}

.content-main {
  max-width: 760px;
}

.content-main h2 {
  font-size: 32px;
  margin: 0 0 18px;
}

.content-main p {
  font-size: 18px;
  line-height: 2;
  color: var(--muted);
  margin: 0 0 46px;
}

.content-side {
  position: sticky;
  top: 110px;
}

.side-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 30px;
}

.side-list {
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
}

.side-list div {
  border-top: 1px solid var(--border);
  padding-top: 12px;
}

.full-button {
  display: block;
  text-align: center;
}

/* PRICING */

.pricing-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.pricing-grid-extended {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}

.pricing-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
}

.low-fee-card {
  background: #FAF8F3;
}

.pricing-label {
  color: var(--muted);
  margin: 0 0 10px;
}

.pricing-card h2 {
  font-size: 52px;
  margin: 0;
}

.pricing-note {
  color: var(--muted);
  margin: 12px 0 0;
}

.pricing-text h2 {
  font-size: 32px;
  margin: 0 0 18px;
}

.pricing-text p {
  font-size: 18px;
  line-height: 2;
  color: var(--muted);
  margin: 0 0 42px;
}

.pricing-info-block {
  margin-top: 70px;
  max-width: 820px;
}

/* BOOKING */

.booking-wrap {
  display: grid;
  grid-template-columns: 420px 1fr;
  gap: 72px;
  align-items: start;
}

.booking-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 38px;
}

.booking-card h2 {
  margin-top: 0;
}

.booking-text h2 {
  font-size: 32px;
  margin: 0 0 18px;
}

.booking-text p {
  font-size: 18px;
  line-height: 2;
  color: var(--muted);
  margin: 0 0 42px;
}

.booking-form-section {
  padding-top: 20px;
}

.form-intro {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
  margin-top: 14px;
}

.google-form-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 26px;
  padding: 20px;
}

.google-form-card iframe {
  width: 100%;
  display: block;
  border: 0;
}

/* TEAM */

.team-wrap {
  max-width: 920px;
}

.therapist-card {
  background: white;
  border: 1px solid var(--border);
  border-radius: 28px;
  padding: 44px;
}

.therapist-card + .therapist-card {
  margin-top: 34px;
}

.therapist-header {
  border-bottom: 1px solid var(--border);
  padding-bottom: 28px;
  margin-bottom: 32px;
}

.therapist-header h2 {
  font-size: 42px;
  margin: 8px 0 0;
}

.therapist-profile-grid {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 42px;
  align-items: start;
}

.therapist-photo-wrap {
  background: #F7F5F0;
  border: 1px solid var(--border);
  border-radius: 22px;
  overflow: hidden;
}

.therapist-photo {
  width: 100%;
  height: 340px;
  object-fit: cover;
  display: block;
}

.therapist-subtitle {
  color: var(--muted);
  direction: ltr;
  text-align: right;
  margin: 8px 0 0;
}

.therapist-content p {
  font-size: 18px;
  line-height: 2;
  color: var(--muted);
  margin: 0 0 26px;
}

.therapist-details {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  margin-top: 36px;
  border-top: 1px solid var(--border);
  padding-top: 28px;
}

.therapist-details h3 {
  font-size: 18px;
  margin: 0 0 8px;
}

.therapist-details p {
  color: var(--muted);
  line-height: 1.8;
  margin: 0;
}

.therapist-button {
  display: inline-block;
  margin-top: 34px;
}

/* CERTIFICATES */

.certificates-block {
  border-top: 1px solid var(--border);
  margin-top: 34px;
  padding-top: 28px;
}

.certificates-block h3 {
  margin-bottom: 18px;
}

.certificates-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}

.certificate-card {
  background: #F7F5F0;
  border: 1px solid var(--border);
  border-radius: 16px;
  overflow: hidden;
  display: block;
}

.certificate-card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--border);
}

.certificate-card span {
  display: block;
  padding: 12px;
  font-size: 13px;
  color: var(--muted);
  direction: ltr;
  text-align: left;
}

/* FAQ */

.faq-wrap {
  max-width: 900px;
}

.faq-head {
  margin-bottom: 30px;
}

.faq-list {
  display: grid;
  gap: 16px;
}

.faq-item {
  background: white;
  border: 1px solid var(--border);
  border-radius: 20px;
  padding: 24px 28px;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  font-size: 20px;
  font-weight: 600;
  color: var(--text);
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  margin: 18px 0 0;
  line-height: 2;
  color: var(--muted);
  font-size: 17px;
}

/* WHATSAPP FLOAT */

.whatsapp-float {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: white;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 500;
  z-index: 50;
  display: flex;
  align-items: center;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0,0,0,0.08);
}

.whatsapp-icon {
  width: 22px;
  height: 22px;
  object-fit: contain;
  display: block;
}

/* FOOTER */

.site-footer {
  border-top: 1px solid var(--border);
  padding: 54px 0 28px;
  background: var(--bg);
}

.footer-top {
  text-align: center;
}

.footer-brand {
  margin-bottom: 26px;
}

.footer-logo {
  width: 90px;
  height: auto;
  display: block;
  margin: 0 auto 14px;
}

.footer-text {
  color: var(--muted);
  margin: 16px auto 0;
  line-height: 1.8;
  max-width: 420px;
}

.footer-nav {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--text);
}

.footer-location {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 15px;
}

.footer-location a {
  color: var(--text);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  margin-top: 36px;
  padding-top: 22px;
  text-align: center;
  color: var(--muted);
  font-size: 14px;
}

/* MOBILE */

@media (max-width: 900px) {
  .container {
    width: min(100% - 32px, 1180px);
  }

  .nav-inner {
    height: auto;
    padding: 18px 0;
    grid-template-columns: 1fr auto;
    gap: 16px;
  }

  .nav-links {
    display: none;
  }

  .brand-en {
    font-size: 18px;
  }

  .nav-actions {
    gap: 8px;
  }

  .language-link {
    font-size: 13px;
    padding: 9px 11px;
  }

  .nav-cta {
    font-size: 14px;
    padding: 10px 14px;
  }

  .hero {
    padding: 72px 0 60px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  h1 {
    font-size: 38px;
  }

  h2 {
    font-size: 32px;
  }

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

  .hero-actions {
    flex-direction: column;
  }

  .button-primary,
  .button-secondary {
    text-align: center;
  }

  .hero-visual {
    min-height: 340px;
  }

  .section {
    padding: 70px 0;
  }

  .cards-grid {
    grid-template-columns: 1fr;
  }

  .page-hero {
    padding: 72px 0 50px;
  }

  .content-section {
    padding: 35px 0 80px;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .content-side {
    position: static;
  }

  .content-main h2,
  .pricing-text h2,
  .booking-text h2 {
    font-size: 26px;
  }

  .content-main p,
  .pricing-text p,
  .booking-text p {
    font-size: 16px;
  }

  .pricing-wrap,
  .booking-wrap {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .pricing-grid-extended {
    grid-template-columns: 1fr;
  }

  .pricing-card h2 {
    font-size: 42px;
  }

  .therapist-card {
    padding: 28px;
  }

  .therapist-header h2 {
    font-size: 32px;
  }

  .therapist-profile-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .therapist-photo {
  height: 360px;
  object-fit: cover;
  object-position: center top;
}

  .therapist-content p {
    font-size: 16px;
  }

  .certificates-grid {
    grid-template-columns: 1fr 1fr;
  }

  .google-form-card {
    padding: 10px;
    border-radius: 20px;
  }

  .faq-item {
    padding: 22px;
  }

  .faq-item summary {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 16px;
  }

  .whatsapp-float {
    left: 16px;
    bottom: 16px;
    padding: 11px 16px;
    font-size: 14px;
  }

  .whatsapp-icon {
    width: 20px;
    height: 20px;
  }

  .footer-nav,
  .footer-location {
    gap: 8px;
    font-size: 14px;
  }
}

@media (max-width: 430px) {
  .brand-en {
    font-size: 15px;
  }

  .brand-ar {
    font-size: 10px;
  }

  .nav-actions {
    gap: 6px;
  }

  .language-link {
    display: inline-block;
    font-size: 12px;
    padding: 8px 9px;
  }

  .nav-cta {
    font-size: 13px;
    padding: 9px 10px;
  }

  h1 {
    font-size: 34px;
  }

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

  .certificates-grid {
    grid-template-columns: 1fr;
  }
}
@media (max-width: 430px) {
.therapist-photo {
  height: 320px;
  object-fit: cover;
  object-position: center top;
}
/* Individual therapist photo positioning */

.photo-fatima {
  object-position: center 15%;
}