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

:root {
  --navy: #1b2a4a;
  --navy-dark: #111e35;
  --navy-light: #243660;
  --gold: #c9a84c;
  --gold-dark: #a88535;
  --gold-bg: rgba(201, 168, 76, 0.12);
  --light-bg: #f8f7f4;
  --white: #ffffff;
  --text-dark: #1a1a1a;
  --text-medium: #555;
  --text-light: #888;
  --border: #e0d8cc;
  --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
  --shadow: 0 4px 20px rgba(0,0,0,0.10);
  --shadow-lg: 0 8px 40px rgba(0,0,0,0.16);
  --radius: 10px;
  --radius-lg: 16px;
  --transition: 0.28s ease;
}

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

html { direction: rtl; scroll-behavior: smooth; }

body {
  font-family: 'Heebo', sans-serif;
  font-size: 1.05rem;
  line-height: 1.75;
  color: var(--text-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 { font-weight: 700; line-height: 1.3; color: var(--navy); }
h1 { font-size: clamp(2rem, 5vw, 3.2rem); }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.2rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.35rem); }
p { margin-bottom: 1rem; }
p:last-child { margin-bottom: 0; }
a { color: var(--gold); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--gold-dark); }
ul { list-style: none; }

/* ─── LAYOUT ─── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 80px 0; }
.section--light { background: var(--light-bg); }
.section--navy { background: var(--navy); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header .label {
  display: inline-block;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { color: var(--text-medium); max-width: 620px; margin: 0 auto; }
.divider { width: 52px; height: 3px; background: var(--gold); margin: 14px auto; border-radius: 2px; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-block;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: 'Heebo', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all var(--transition);
  text-align: center;
  text-decoration: none;
  line-height: 1.4;
}
.btn--primary { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201, 168, 76, 0.35);
}
.btn--outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn--outline:hover { background: var(--white); color: var(--navy); border-color: var(--white); transform: translateY(-2px); }
.btn--navy { background: var(--navy); color: var(--white); border-color: var(--navy); }
.btn--navy:hover { background: var(--navy-light); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn--gold-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn--gold-outline:hover { background: var(--gold); color: var(--navy); transform: translateY(-2px); }

/* ─── HEADER ─── */
.header {
  position: fixed; top: 0; right: 0; left: 0; z-index: 1000;
  background: var(--navy);
  box-shadow: 0 2px 20px rgba(0,0,0,0.25);
  transition: box-shadow var(--transition);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between; height: 74px;
}
.logo { display: flex; flex-direction: column; text-decoration: none; }
.logo-name { font-size: 1.25rem; font-weight: 800; color: var(--white); line-height: 1.2; }
.logo-sub { font-size: 0.72rem; color: var(--gold); font-weight: 400; letter-spacing: 0.3px; }

.nav { display: flex; align-items: center; gap: 4px; }
.nav__link {
  padding: 8px 13px; border-radius: 7px;
  font-size: 0.93rem; font-weight: 500;
  color: rgba(255,255,255,0.82);
  text-decoration: none; transition: all var(--transition);
}
.nav__link:hover, .nav__link.active {
  color: var(--gold); background: rgba(201, 168, 76, 0.12);
}
.nav__cta { margin-right: 10px; }

.menu-toggle {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; padding: 8px; background: none; border: none;
}
.menu-toggle span {
  display: block; width: 24px; height: 2px;
  background: var(--white); border-radius: 2px; transition: var(--transition);
}

/* ─── HERO (homepage) ─── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 55%, var(--navy-light) 100%);
  position: relative; overflow: hidden; padding-top: 74px;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle at 15% 80%, rgba(201,168,76,0.09) 0%, transparent 50%),
    radial-gradient(circle at 85% 15%, rgba(201,168,76,0.06) 0%, transparent 45%);
}
.hero__decor {
  position: absolute; top: 0; left: -10%; width: 55%; height: 100%;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.015) 50%, transparent 60%);
  transform: skewX(-8deg);
}
.hero__content { position: relative; z-index: 1; max-width: 740px; }

.hero__badge {
  display: inline-flex; align-items: center; gap: 8px;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 50px; padding: 7px 20px;
  font-size: 0.85rem; color: var(--gold); font-weight: 500; margin-bottom: 28px;
}
.hero__title {
  font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 900;
  color: var(--white); margin-bottom: 22px; line-height: 1.22;
}
.hero__title span { color: var(--gold); }
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.18rem);
  color: rgba(255,255,255,0.78); margin-bottom: 40px;
  max-width: 570px; line-height: 1.82;
}
.hero__actions { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 36px; }
.hero__note {
  font-size: 0.93rem; color: rgba(255,255,255,0.6);
  border-right: 3px solid var(--gold); padding-right: 14px;
  max-width: 470px; line-height: 1.65;
}

/* ─── CARDS GRID ─── */
.cards-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(256px, 1fr)); gap: 24px;
}
.card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all var(--transition);
  position: relative; overflow: hidden;
}
.card::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 4px; height: 100%; background: var(--gold);
  transform: scaleY(0); transition: transform var(--transition); transform-origin: top;
}
.card:hover { box-shadow: var(--shadow-lg); transform: translateY(-5px); border-color: var(--gold); }
.card:hover::after { transform: scaleY(1); }
.card__icon {
  width: 52px; height: 52px; background: var(--gold-bg);
  border-radius: 13px; display: flex; align-items: center;
  justify-content: center; margin-bottom: 18px; font-size: 1.5rem;
}
.card__title { font-size: 1.1rem; font-weight: 700; color: var(--navy); margin-bottom: 10px; }
.card__text { font-size: 0.93rem; color: var(--text-medium); line-height: 1.72; }

/* ─── PRACTICE AREA CARDS ─── */
.practice-areas { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 28px; }
.practice-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 40px 32px; border: 1px solid var(--border);
  transition: all var(--transition); text-decoration: none; display: block;
}
.practice-card:hover {
  border-color: var(--gold); box-shadow: var(--shadow-lg); transform: translateY(-6px);
}
.practice-card__num {
  font-size: 3rem; font-weight: 900; color: rgba(201,168,76,0.18);
  line-height: 1; margin-bottom: 14px;
}
.practice-card__title { font-size: 1.3rem; font-weight: 700; color: var(--navy); margin-bottom: 14px; }
.practice-card__text { font-size: 0.95rem; color: var(--text-medium); line-height: 1.72; margin-bottom: 22px; }
.practice-card__link { font-size: 0.9rem; font-weight: 600; color: var(--gold); }

/* ─── WHY LIST ─── */
.why-list { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 28px; }
.why-item { display: flex; gap: 18px; }
.why-item__icon {
  flex-shrink: 0; width: 46px; height: 46px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.1rem;
}
.why-item__body h3 { font-size: 1rem; color: var(--white); margin-bottom: 6px; }
.why-item__body p { font-size: 0.9rem; color: rgba(255,255,255,0.68); line-height: 1.65; }

/* ─── AI NOTE ─── */
.ai-note {
  background: var(--light-bg); border-radius: var(--radius-lg);
  padding: 40px 44px; border-right: 5px solid var(--gold);
  max-width: 880px; margin: 0 auto;
}
.ai-note__text { color: var(--text-medium); line-height: 1.82; margin-bottom: 24px; }
.ai-note__disclaimer {
  font-size: 0.84rem; color: var(--text-light); font-style: italic;
  border-top: 1px solid var(--border); padding-top: 16px;
}

/* ─── CONTACT SECTION ─── */
.contact-section { background: var(--navy); padding: 84px 0; }
.contact-inner {
  display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: start;
}
.contact-info h2 { color: var(--white); margin-bottom: 14px; }
.contact-info > p { color: rgba(255,255,255,0.72); margin-bottom: 36px; font-size: 1.05rem; }
.contact-detail {
  display: flex; align-items: center; gap: 14px;
  margin-bottom: 18px; color: rgba(255,255,255,0.82);
}
.contact-detail__icon {
  flex-shrink: 0; width: 42px; height: 42px;
  background: rgba(201,168,76,0.18); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; font-size: 1.1rem;
}
.contact-form {
  background: rgba(255,255,255,0.05); border: 1px solid rgba(255,255,255,0.1);
  border-radius: var(--radius-lg); padding: 36px;
}
.form-group { margin-bottom: 20px; }
.form-group label {
  display: block; font-size: 0.88rem; font-weight: 600;
  color: rgba(255,255,255,0.78); margin-bottom: 8px;
}
.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 16px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.15); border-radius: 8px;
  color: var(--white); font-family: 'Heebo', sans-serif;
  font-size: 1rem; transition: border-color var(--transition);
  text-align: right; direction: rtl;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  outline: none; border-color: var(--gold);
  background: rgba(255,255,255,0.11);
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: rgba(255,255,255,0.38); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-group select option { background: var(--navy-dark); color: var(--white); }
.form-success {
  text-align: center; padding: 48px 20px;
}
.form-success__icon { font-size: 3rem; margin-bottom: 16px; }
.form-success h3 { color: var(--white); margin-bottom: 10px; }
.form-success p { color: rgba(255,255,255,0.72); }

/* ─── CTA BANNER ─── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy-light) 100%);
  padding: 72px 0; text-align: center; color: var(--white);
}
.cta-banner h2 { color: var(--white); margin-bottom: 14px; }
.cta-banner p { color: rgba(255,255,255,0.72); margin-bottom: 36px; max-width: 540px; margin-right: auto; margin-left: auto; }

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
  padding: 130px 0 70px; color: var(--white); text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(201,168,76,0.10) 0%, transparent 60%);
}
.page-hero__content { position: relative; z-index: 1; }
.page-hero h1 { color: var(--white); margin-bottom: 18px; }
.page-hero p {
  color: rgba(255,255,255,0.78); max-width: 600px;
  margin: 0 auto; font-size: 1.12rem; line-height: 1.78;
}
.page-hero__badge {
  display: inline-block;
  background: rgba(201,168,76,0.18); border: 1px solid rgba(201,168,76,0.35);
  border-radius: 50px; padding: 5px 18px;
  font-size: 0.82rem; color: var(--gold); font-weight: 600;
  margin-bottom: 20px; letter-spacing: 1px;
}

/* ─── PAIN POINTS ─── */
.pain-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); gap: 20px; }
.pain-item {
  background: var(--white); border-radius: var(--radius);
  padding: 26px 24px; border-right: 4px solid var(--gold);
  box-shadow: var(--shadow-sm); font-size: 0.95rem;
  color: var(--text-medium); line-height: 1.72;
}
.pain-item::before {
  content: '—'; color: var(--gold); font-weight: 700;
  display: block; margin-bottom: 8px; font-size: 1rem;
}

/* ─── SERVICES ─── */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
.service-card {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 32px; box-shadow: var(--shadow-sm);
  border: 1px solid var(--border); transition: all var(--transition);
}
.service-card:hover { box-shadow: var(--shadow); border-color: var(--gold); transform: translateY(-3px); }
.service-card__icon {
  width: 48px; height: 48px; background: var(--gold-bg);
  border-radius: 12px; display: flex; align-items: center;
  justify-content: center; font-size: 1.4rem; margin-bottom: 16px;
}
.service-card h3 {
  font-size: 1.08rem; color: var(--navy); margin-bottom: 12px;
  display: flex; align-items: flex-start; gap: 10px;
}
.service-card h3 .dot {
  flex-shrink: 0; width: 8px; height: 8px;
  background: var(--gold); border-radius: 50%; margin-top: 7px;
}
.service-card p { font-size: 0.93rem; color: var(--text-medium); line-height: 1.7; }

/* ─── ABOUT EXPERIENCE ─── */
.exp-list { display: flex; flex-direction: column; gap: 20px; }
.exp-item {
  display: flex; gap: 20px; align-items: flex-start;
  background: var(--white); border-radius: var(--radius);
  padding: 24px 28px; box-shadow: var(--shadow-sm); border: 1px solid var(--border);
}
.exp-item__num {
  flex-shrink: 0; width: 40px; height: 40px;
  background: var(--gold); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: var(--navy); font-size: 0.95rem;
}
.exp-item__text { font-size: 0.97rem; color: var(--text-medium); line-height: 1.72; }
.exp-item__text strong { color: var(--navy); }

/* ─── TWO-COL TEXT ─── */
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }
.two-col--flip .two-col__img { order: -1; }
.two-col__content h2 { margin-bottom: 16px; }
.two-col__content p { color: var(--text-medium); }

/* ─── FOOTER ─── */
.footer { background: var(--navy-dark); color: rgba(255,255,255,0.65); padding: 52px 0 28px; }
.footer-top {
  display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 48px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,0.09); margin-bottom: 28px;
}
.footer-brand p { font-size: 0.9rem; color: rgba(255,255,255,0.55); margin-top: 14px; max-width: 300px; line-height: 1.72; }
.footer-links h4 {
  color: var(--gold); font-size: 0.8rem; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase; margin-bottom: 20px;
}
.footer-links ul { display: flex; flex-direction: column; gap: 10px; }
.footer-links a { color: rgba(255,255,255,0.6); font-size: 0.9rem; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 10px; font-size: 0.83rem; color: rgba(255,255,255,0.45);
}
.footer-disclaimer {
  margin-top: 20px; padding-top: 18px; border-top: 1px solid rgba(255,255,255,0.07);
  font-size: 0.8rem; color: rgba(255,255,255,0.42); text-align: center; line-height: 1.65;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .two-col { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 768px) {
  .section { padding: 56px 0; }
  .menu-toggle { display: flex; }
  .nav {
    position: fixed; top: 74px; right: 0; left: 0;
    background: var(--navy-dark); flex-direction: column;
    padding: 16px; gap: 4px;
    transform: translateY(-130%); transition: transform 0.3s ease;
    box-shadow: var(--shadow-lg); z-index: 999;
  }
  .nav.is-open { transform: translateY(0); }
  .nav__link { width: 100%; text-align: center; padding: 12px; }
  .nav__cta { margin-right: 0; width: 100%; text-align: center; }
  .hero__actions { flex-direction: column; align-items: flex-start; }
  .ai-note { padding: 24px 20px; }
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 110px 0 52px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .card, .practice-card { padding: 24px; }
  .contact-form { padding: 24px 18px; }
}
