* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Rubik', sans-serif; direction: rtl; color: #333; }

/* HEADER */
header {
  background: #ffffff;
  padding: 10px 20px;
  position: sticky;
  top: 0;
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: space-between;
  box-shadow: 0 2px 10px rgba(0,0,0,0.1);
}
.header-logo img { height: 110px; object-fit: contain; }
nav ul { list-style: none; display: flex; gap: 20px; flex-wrap: wrap; }
nav ul li a { color: #1B2A4A; text-decoration: none; font-size: 14px; font-weight: 500; transition: color 0.2s; }
nav ul li a:hover, nav ul li a.active { color: #C9A84C; }
.btn-contact {
  background: #C9A84C; color: #1B2A4A !important;
  padding: 7px 18px; border-radius: 4px; font-weight: 700; font-size: 14px;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-contact:hover { opacity: 0.85; }

/* PAGE HERO */
.page-hero {
  min-height: 55vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 80px 20px;
  position: relative;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: rgba(27,42,74,0.78); z-index: 1;
}
.page-hero-inner { position: relative; z-index: 2; max-width: 750px; animation: fadeInUp 0.7s ease; }
.page-hero h1 { color: #fff; font-size: 42px; font-weight: 700; margin-bottom: 14px; line-height: 1.2; }
.page-hero p { color: #C9A84C; font-size: 20px; font-weight: 500; }
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(25px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* BREADCRUMB */
.breadcrumb {
  background: #f4f6f9; padding: 12px 40px;
  font-size: 13px; color: #888;
}
.breadcrumb a { color: #1B2A4A; text-decoration: none; }
.breadcrumb a:hover { color: #C9A84C; }
.breadcrumb span { margin: 0 6px; }

/* SECTION STYLES */
.section-white { background: #fff; padding: 70px 20px; }
.section-gray  { background: #f4f6f9; padding: 70px 20px; }
.section-navy  { background: #1B2A4A; padding: 70px 20px; }
.container { max-width: 1100px; margin: 0 auto; }

.section-title {
  color: #1B2A4A; font-size: 30px; font-weight: 700;
  text-align: center; margin-bottom: 12px;
}
.section-title.light { color: #fff; }
.section-sub {
  color: #666; font-size: 16px; text-align: center;
  margin-bottom: 44px; line-height: 1.7;
}
.section-sub.light { color: rgba(255,255,255,0.8); }
.gold-line {
  width: 60px; height: 3px; background: #C9A84C;
  margin: 10px auto 32px; border-radius: 2px;
}

/* SERVICES GRID (דף הבית) */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  max-width: 1100px;
  margin: 0 auto;
}
.service-card {
  border: 1px solid #e8ecf0;
  border-radius: 8px;
  padding: 32px 20px 24px;
  text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
  cursor: pointer;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 30px rgba(27,42,74,0.12);
}
.service-icon {
  width: 64px; height: 64px;
  background: #f4f6f9; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px; font-size: 26px; color: #1B2A4A;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: #1B2A4A; color: #C9A84C; }
.service-card h3 { color: #1B2A4A; font-size: 18px; font-weight: 700; margin-bottom: 12px; }
.service-card p { color: #666; font-size: 14px; line-height: 1.7; margin-bottom: 18px; }
.btn-more {
  display: inline-block; background: #1B2A4A; color: #fff;
  padding: 8px 18px; border-radius: 4px; font-size: 13px;
  font-weight: 600; text-decoration: none; transition: background 0.2s;
}
.btn-more:hover { background: #C9A84C; color: #1B2A4A; }

/* FEATURES GRID */
.features-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 28px; max-width: 1100px; margin: 0 auto;
}
.feature-card {
  background: #fff; border-radius: 10px; padding: 30px 24px;
  border: 1px solid #e8ecf0; text-align: center;
  transition: transform 0.2s, box-shadow 0.2s;
}
.feature-card:hover { transform: translateY(-4px); box-shadow: 0 8px 30px rgba(27,42,74,0.1); }
.feature-card.on-gray { background: #fff; }
.feature-icon {
  width: 60px; height: 60px; background: #f4f6f9;
  border-radius: 50%; display: flex; align-items: center;
  justify-content: center; margin: 0 auto 18px;
  font-size: 24px; color: #1B2A4A; transition: all 0.2s;
}
.feature-card:hover .feature-icon { background: #1B2A4A; color: #C9A84C; }
.feature-card h3 { color: #1B2A4A; font-size: 17px; font-weight: 700; margin-bottom: 10px; }
.feature-card p { color: #666; font-size: 14px; line-height: 1.7; }

/* BENEFITS LIST */
.benefits-list {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 16px; max-width: 900px; margin: 0 auto;
}
.benefit-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: rgba(255,255,255,0.06); border-radius: 8px;
  padding: 18px 20px;
}
.benefit-item i { color: #C9A84C; font-size: 20px; margin-top: 2px; flex-shrink: 0; }
.benefit-item div h4 { color: #fff; font-size: 15px; font-weight: 600; margin-bottom: 4px; }
.benefit-item div p { color: rgba(255,255,255,0.75); font-size: 13px; line-height: 1.6; }

/* PROCESS */
.process-steps {
  display: flex; gap: 0; max-width: 900px; margin: 0 auto;
  position: relative;
}
.process-steps::before {
  content: ''; position: absolute;
  top: 30px; right: 30px; left: 30px; height: 2px;
  background: #e8ecf0; z-index: 0;
}
.step {
  flex: 1; text-align: center; position: relative; z-index: 1;
}
.step-num {
  width: 60px; height: 60px; background: #1B2A4A; color: #C9A84C;
  border-radius: 50%; display: flex; align-items: center; justify-content: center;
  font-size: 22px; font-weight: 700; margin: 0 auto 14px;
  border: 3px solid #C9A84C;
}
.step h4 { color: #1B2A4A; font-size: 15px; font-weight: 700; margin-bottom: 6px; }
.step p { color: #666; font-size: 13px; line-height: 1.6; padding: 0 10px; }

/* CTA SECTION */
.cta-section {
  background: #C9A84C; padding: 60px 20px; text-align: center;
}
.cta-section h2 { color: #1B2A4A; font-size: 28px; font-weight: 700; margin-bottom: 10px; }
.cta-section p { color: #1B2A4A; font-size: 16px; margin-bottom: 28px; }
.cta-btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }
.btn-primary {
  background: #1B2A4A; color: #fff; padding: 13px 30px;
  border-radius: 5px; font-weight: 700; font-size: 15px;
  text-decoration: none; transition: opacity 0.2s;
}
.btn-primary:hover { opacity: 0.85; }
.btn-secondary {
  background: transparent; color: #1B2A4A; padding: 13px 30px;
  border-radius: 5px; font-weight: 700; font-size: 15px;
  text-decoration: none; border: 2px solid #1B2A4A;
  transition: all 0.2s;
}
.btn-secondary:hover { background: #1B2A4A; color: #fff; }

/* FOOTER CONTACT */
.footer-contact {
  background: #1B2A4A; padding: 60px 20px; text-align: center;
}
.footer-contact .fc-title {
  color: #C9A84C; font-size: 32px; font-weight: 700; margin-bottom: 8px;
}
.footer-contact .fc-sub {
  color: #fff; font-size: 16px; margin-bottom: 32px;
}
.contact-form {
  max-width: 750px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr auto;
  gap: 12px; align-items: end;
}
.contact-form input {
  padding: 12px 16px; border: none; border-radius: 4px;
  font-family: 'Rubik', sans-serif; font-size: 14px;
  width: 100%; outline: none; direction: rtl;
}
.contact-form input:focus { box-shadow: 0 0 0 2px #C9A84C; }
.btn-send {
  background: #C9A84C; color: #1B2A4A; border: none;
  padding: 12px 24px; border-radius: 4px;
  font-family: 'Rubik', sans-serif; font-size: 15px; font-weight: 700;
  cursor: pointer; white-space: nowrap; transition: opacity 0.2s;
}
.btn-send:hover { opacity: 0.85; }

/* FOOTER BOTTOM */
.footer-bottom { background: #111827; padding: 50px 20px 40px; }
.footer-bottom-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr 1fr 1fr; gap: 40px;
}
.footer-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}
.footer-logo img {
  height: 80px;
  object-fit: contain;
  background: #fff;
  border-radius: 8px;
  padding: 8px 14px;
}
.footer-logo .brand-text {
  color: #ffffff;
  font-size: 16px;
  font-weight: 700;
  text-align: center;
  line-height: 1.4;
}
.footer-logo .brand-text span {
  display: block;
  color: #C9A84C;
  font-size: 12px;
  font-weight: 400;
  margin-top: 3px;
  letter-spacing: 1px;
}
.footer-col h3 { color: #C9A84C; font-size: 18px; font-weight: 700; margin-bottom: 14px; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 8px; }
.footer-col ul li a, .footer-col ul li span {
  color: rgba(255,255,255,0.8); text-decoration: none;
  font-size: 14px; line-height: 1.6; transition: color 0.2s;
}
.footer-col ul li a:hover { color: #C9A84C; }
.footer-col p { color: rgba(255,255,255,0.8); font-size: 14px; line-height: 1.7; }
.footer-col b { color: #C9A84C; }
.footer-hours-title {
  color: #C9A84C; font-size: 18px; font-weight: 700;
  margin-top: 20px; margin-bottom: 8px;
}
.footer-copy {
  text-align: center; color: rgba(255,255,255,0.4); font-size: 13px;
  padding-top: 30px; border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 30px; max-width: 1100px; margin-left: auto; margin-right: auto;
}

/* HEADER SOCIAL ICONS */
.header-social {
  display: flex;
  align-items: center;
  gap: 14px;
}
.header-social a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 24px;
  text-decoration: none;
  transition: transform 0.2s, background 0.2s;
  background: #f4f6f9;
  color: #1B2A4A;
}
.header-social a:hover { transform: scale(1.12); }
.header-social a[aria-label="WhatsApp"] { background: #25D366; color: #fff; }
.header-social a[aria-label="WhatsApp"]:hover { background: #1da851; }
.header-social a[aria-label="פייסבוק"] { background: #1877F2; color: #fff; }
.header-social a[aria-label="פייסבוק"]:hover { background: #0e5fc0; }
.header-social a[aria-label="אינסטגרם"] {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
  color: #fff;
}
.header-social a[aria-label="אינסטגרם"]:hover { opacity: 0.88; }

/* RESPONSIVE */
/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 26px;
  height: 3px;
  background: #1B2A4A;
  border-radius: 2px;
  transition: all 0.3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ===== TABLET ===== */
@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .benefits-list { grid-template-columns: 1fr; }
  .process-steps { flex-direction: column; gap: 20px; }
  .process-steps::before { display: none; }
  .footer-bottom-grid { grid-template-columns: 1fr 1fr; }
  .contact-form { grid-template-columns: 1fr 1fr; }
  .page-hero h1 { font-size: 28px; }

  /* תפריט המבורגר */
  .nav-toggle { display: flex; }
  nav ul {
    display: none;
    position: fixed;
    top: 0; right: 0; left: 0; bottom: 0;
    background: #fff;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
    z-index: 1000;
    padding: 40px 20px;
  }
  nav ul.open { display: flex; }
  nav ul li a {
    font-size: 18px;
    font-weight: 600;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    text-align: center;
    display: block;
  }
  .btn-contact {
    padding: 12px 30px !important;
    font-size: 16px !important;
    border-radius: 6px !important;
  }
}

/* ===== MOBILE ===== */
@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-bottom-grid { grid-template-columns: 1fr; }
  .contact-form { grid-template-columns: 1fr; }
  .hero h1, .page-hero h1 { font-size: 24px; }
  .hero-sub { font-size: 16px; }
  .hero-list { flex-direction: column; gap: 10px; }
  .section-title { font-size: 24px; }
  .cta-section h2 { font-size: 22px; }
  .stat-num { font-size: 28px; }
  .step-num { width: 48px; height: 48px; font-size: 18px; }
  .footer-logo img { height: 60px; }
  .footer-logo .brand-text { font-size: 14px; }
  .wa-float { bottom: 16px; left: 16px; width: 46px; height: 46px; font-size: 22px; }
  #a11y-btn { bottom: 72px; right: 16px; left: auto; width: 44px; height: 44px; font-size: 20px; }
  .fc-title { font-size: 24px; }
  .contact-form { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
}
