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

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

:root {
  --pink:       #e8b4b8;
  --pink-light: #f5e6e8;
  --pink-mid:   #d9a0a5;
  --sage:       #8fb4b4;
  --sage-dark:  #5a8c8c;
  --sage-deep:  #3d6b6b;
  --gold:       #c4a882;
  --gold-light: #f0ead8;
  --text:       #3a3a3a;
  --text-mid:   #666;
  --text-light: #999;
  --white:      #ffffff;
  --off-white:  #faf8f6;
  --border:     #e8e0d8;
}

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

/* ===== HEADER ===== */
header {
  background: var(--white);
  border-bottom: 1px solid var(--border);
  padding: 16px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.logo-area {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

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

.logo-placeholder {
  height: 60px; width: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--sage));
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 22px; font-weight: 700;
}

nav { display: flex; align-items: center; gap: 6px; }

nav a {
  text-decoration: none;
  color: var(--text-mid);
  font-size: 15px;
  padding: 8px 16px;
  border-radius: 8px;
  transition: background 0.15s, color 0.15s;
}
nav a:hover, nav a.active {
  background: var(--off-white);
  color: var(--sage-deep);
}

.btn-whatsapp {
  background: #25d366;
  color: white;
  padding: 11px 20px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
  margin-right: 8px;
}
.btn-whatsapp:hover { background: #1ebe5d; }

.btn-phone {
  background: var(--sage-deep);
  color: white;
  padding: 11px 24px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 15px;
  font-weight: 600;
  transition: background 0.2s;
  white-space: nowrap;
}
.btn-phone:hover { background: #2d5555; }

/* ===== PAGE HERO ===== */
.page-hero {
  background: linear-gradient(160deg, var(--sage-deep) 0%, #2d5555 100%);
  color: white;
  padding: 70px 48px 60px;
  text-align: center;
}
.page-hero h1 {
  font-size: 40px;
  font-weight: 800;
  margin-bottom: 12px;
  color: white;
}
.page-hero p {
  font-size: 17px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto;
}

/* ===== SECTION HELPERS ===== */
.section { padding: 80px 48px; }
.section-alt { background: var(--off-white); }
.section-pink { background: var(--pink-light); }

.section-header { text-align: center; margin-bottom: 52px; }
.section-tag {
  display: inline-block;
  color: var(--sage-dark);
  font-size: 12px; font-weight: 700;
  letter-spacing: 1.5px; text-transform: uppercase;
  margin-bottom: 12px;
}
.section-header h2 {
  font-size: 32px; font-weight: 700;
  color: var(--sage-deep); line-height: 1.3;
  margin-bottom: 12px;
}
.section-header p {
  font-size: 16px; color: var(--text-mid);
  font-weight: 300; max-width: 540px;
  margin: 0 auto; line-height: 1.8;
}

/* ===== CARDS ===== */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 22px;
  max-width: 1060px;
  margin: 0 auto;
}

.card {
  background: white;
  border-radius: 20px;
  padding: 34px 28px;
  border: 1px solid var(--border);
  transition: box-shadow 0.2s, transform 0.2s;
}
.card:hover {
  box-shadow: 0 8px 28px rgba(90,140,140,0.12);
  transform: translateY(-3px);
}

.card-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: var(--pink-light);
  display: flex; align-items: center;
  justify-content: center;
  font-size: 24px; margin-bottom: 16px;
}

.card h3 {
  font-size: 17px; font-weight: 600;
  color: var(--sage-deep); margin-bottom: 8px;
}
.card p {
  font-size: 14px; color: var(--text-mid);
  font-weight: 300; line-height: 1.75;
}

/* ===== LINK CARDS ===== */
.link-cards {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
  justify-content: center;
  max-width: 860px;
  margin: 0 auto;
}

.link-card {
  background: white;
  border: 2px solid var(--sage);
  border-radius: 20px;
  padding: 36px 40px;
  text-decoration: none;
  flex: 1; min-width: 260px;
  text-align: center;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
}
.link-card:hover {
  background: var(--sage-deep);
  border-color: var(--sage-deep);
  transform: translateY(-3px);
}
.link-card:hover .link-card-icon,
.link-card:hover h3,
.link-card:hover p { color: white; }

.link-card-icon { font-size: 40px; margin-bottom: 14px; }
.link-card h3 {
  font-size: 18px; font-weight: 700;
  color: var(--sage-deep); margin-bottom: 8px;
  transition: color 0.2s;
}
.link-card p {
  font-size: 14px; color: var(--text-mid);
  font-weight: 300; line-height: 1.7;
  transition: color 0.2s;
}

/* ===== CONTACT BAR ===== */
.contact-bar {
  background: var(--sage-deep);
  padding: 50px 48px;
  text-align: center;
}
.contact-bar h2 {
  font-size: 26px; font-weight: 700;
  color: white; margin-bottom: 8px;
}
.contact-bar p {
  font-size: 15px; color: rgba(255,255,255,0.7);
  margin-bottom: 28px; font-weight: 300;
}
.btn-call {
  display: inline-block;
  background: var(--pink);
  color: var(--sage-deep);
  padding: 14px 36px;
  border-radius: 30px;
  font-size: 17px; font-weight: 700;
  text-decoration: none;
  transition: background 0.2s;
}
.btn-call:hover { background: var(--pink-mid); }

/* ===== FOOTER ===== */
footer {
  background: #2a4a4a;
  padding: 28px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-levia {
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255,255,255,0.5);
  font-size: 13px; font-weight: 300;
}

.levia-logo { height: 36px; width: auto; opacity: 0.85; }
.levia-placeholder {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--gold); opacity: 0.75;
  display: flex; align-items: center;
  justify-content: center;
  font-size: 14px; color: white; font-weight: 700;
}

footer p { color: rgba(255,255,255,0.45); font-size: 13px; font-weight: 300; }
footer span { color: rgba(255,255,255,0.75); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  header { padding: 14px 20px; flex-wrap: wrap; gap: 10px; }
  nav a { font-size: 13px; padding: 6px 10px; }
  .page-hero { padding: 50px 20px 44px; }
  .page-hero h1 { font-size: 28px; }
  .section { padding: 52px 20px; }
  .link-cards { flex-direction: column; }
  .contact-bar { padding: 44px 20px; }
  footer { flex-direction: column; text-align: center; padding: 22px 20px; }
}
