/* ============================================================
   ORA TOUBUL – PODOLOGUE JÉRUSALEM
   Design Premium · Mobile-First · Accessible
   ============================================================ */

/* ---- RESET & BASE ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --blue-900: #1e3a5f;
  --blue-800: #1a4a8a;
  --blue-700: #1a56db;
  --blue-600: #2563eb;
  --blue-500: #3b82f6;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --green-500: #22c55e;
  --green-600: #16a34a;
  --green-wa:  #25d366;
  --green-wa-dark: #128c7e;
  --gray-900: #111827;
  --gray-800: #1f2937;
  --gray-700: #374151;
  --gray-600: #4b5563;
  --gray-400: #9ca3af;
  --gray-200: #e5e7eb;
  --gray-100: #f3f4f6;
  --gray-50:  #f9fafb;
  --white: #ffffff;
  --shadow-sm: 0 2px 4px rgba(0,0,0,.05);
  --shadow-md: 0 4px 20px rgba(0,0,0,.08);
  --shadow-lg: 0 12px 48px rgba(0,0,0,.12);
  --shadow-xl: 0 24px 64px rgba(0,0,0,.16);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-xl: 28px;
  --radius-full: 9999px;
  --transition: 0.3s cubic-bezier(.4,0,.2,1);
  --transition-smooth: 0.5s cubic-bezier(.16,1,.3,1);
  --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
  --font-serif: 'Playfair Display', Georgia, serif;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-sans);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

/* RTL support */
body.lang-he { direction: rtl; font-family: 'Arial Hebrew', 'David', var(--font-sans); }
body.lang-he .hero-text { text-align: right; }
body.lang-he .nav-links { flex-direction: row-reverse; }

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ---- UTILITY ---- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.section {
  padding: 5rem 0;
}

.section-header {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 3.5rem;
}

.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--blue-800);
  background: var(--blue-100);
  padding: .35rem .9rem;
  border-radius: var(--radius-full);
  margin-bottom: 1rem;
  border: 1px solid var(--blue-200);
}

.section-header h2 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.2;
  margin-bottom: .75rem;
}

.section-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.7;
}

/* ---- BUTTONS ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: .9375rem;
  transition: var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}

.btn-whatsapp, .btn-whatsapp-hero, .btn-whatsapp-about,
.btn-whatsapp-contact, .btn-whatsapp-inline, .btn-whatsapp-cta {
  background: var(--green-wa);
  color: var(--white);
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-whatsapp:hover, .btn-whatsapp-hero:hover, .btn-whatsapp-about:hover,
.btn-whatsapp-contact:hover, .btn-whatsapp-inline:hover, .btn-whatsapp-cta:hover {
  background: var(--green-wa-dark);
  box-shadow: 0 6px 20px rgba(37,211,102,.45);
  transform: translateY(-2px);
}

.btn-primary svg { width: 1.125rem; height: 1.125rem; flex-shrink: 0; }

.btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  padding: .875rem 1.75rem;
  border-radius: var(--radius-full);
  font-weight: 600;
  font-size: .9375rem;
  border: 2px solid var(--blue-700);
  color: var(--blue-700);
  transition: var(--transition);
  background: transparent;
}
.btn-secondary:hover {
  background: var(--blue-700);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: 1rem 2rem;
  border-radius: var(--radius-full);
  font-weight: 700;
  font-size: 1rem;
  transition: var(--transition);
  background: var(--white);
  color: var(--green-wa-dark);
  box-shadow: var(--shadow-md);
}
.btn-cta:hover { transform: translateY(-2px); box-shadow: var(--shadow-lg); }
.btn-cta svg { width: 1.25rem; height: 1.25rem; }

/* ---- HEADER / NAVBAR ---- */
#header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.75);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.3);
  transition: box-shadow var(--transition);
}
#header.scrolled { box-shadow: var(--shadow-md); }

.navbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.nav-brand {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
  text-decoration: none;
}

.brand-icon svg { width: 40px; height: 40px; }
.brand-icon-sm svg { width: 32px; height: 32px; }

.brand-text { display: flex; flex-direction: column; }
.brand-name { font-weight: 800; font-size: 1.0625rem; color: var(--blue-900); line-height: 1.2; }
.brand-title { font-size: .75rem; color: var(--gray-600); font-weight: 500; }

.nav-links {
  display: flex;
  align-items: center;
  gap: .25rem;
}
.nav-links a {
  padding: .5rem .875rem;
  border-radius: var(--radius-sm);
  font-size: .9rem;
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.nav-links a:hover { color: var(--blue-700); background: var(--blue-50); }

.nav-actions {
  display: flex;
  align-items: center;
  gap: .75rem;
  flex-shrink: 0;
}

.lang-switcher {
  display: flex;
  align-items: center;
  gap: .25rem;
  background: var(--gray-100);
  border-radius: var(--radius-full);
  padding: .25rem;
}
.lang-btn {
  padding: .3rem .65rem;
  border-radius: var(--radius-full);
  font-size: .8rem;
  font-weight: 600;
  color: var(--gray-600);
  transition: var(--transition);
}
.lang-btn.active, .lang-btn:hover {
  background: var(--white);
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}

.nav-cta { font-size: .875rem; padding: .625rem 1.25rem; }
.nav-cta svg { width: 1rem; height: 1rem; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: .5rem;
  border-radius: var(--radius-sm);
}
.hamburger span {
  display: block;
  width: 22px; height: 2px;
  background: var(--gray-700);
  border-radius: 2px;
  transition: var(--transition);
}
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile Menu */
.mobile-menu {
  display: none;
  position: absolute;
  top: 100%; left: 0; right: 0;
  background: var(--white);
  border-bottom: 1px solid var(--gray-200);
  padding: 1rem 1.5rem 1.5rem;
  box-shadow: var(--shadow-lg);
}
.mobile-menu.open { display: block; }
.mobile-menu ul { display: flex; flex-direction: column; gap: .25rem; margin-bottom: 1rem; }
.mobile-menu a {
  display: block;
  padding: .75rem 1rem;
  border-radius: var(--radius-sm);
  font-weight: 500;
  color: var(--gray-700);
  transition: var(--transition);
}
.mobile-menu a:hover { background: var(--blue-50); color: var(--blue-700); }
.mobile-cta { display: flex; justify-content: center; }

/* ---- HERO ---- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--blue-50) 0%, #f0f9ff 40%, #ecfdf5 100%);
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 1px 1px, rgba(26,86,219,.08) 1px, transparent 0);
  background-size: 32px 32px;
}

.hero-content {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding-top: 3rem;
  padding-bottom: 5rem;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue-700);
  background: var(--white);
  border: 1px solid var(--blue-100);
  padding: .4rem 1rem;
  border-radius: var(--radius-full);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
}
.hero-badge::before {
  content: '';
  display: inline-block;
  width: 8px; height: 8px;
  background: var(--green-500);
  border-radius: 50%;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .7; transform: scale(1.2); }
}

.hero-text h1 {
  font-size: clamp(2rem, 5vw, 3.25rem);
  font-weight: 900;
  color: var(--blue-900);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}

.hero-desc {
  font-size: 1.0625rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 2rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.stat { text-align: center; }
.stat strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 900;
  color: var(--blue-700);
  line-height: 1;
}
.stat span { font-size: .8125rem; color: var(--gray-600); font-weight: 500; }
.stat-divider { width: 1px; height: 36px; background: var(--gray-200); }

/* Hero Visual */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
  max-width: 280px;
  width: 100%;
  position: relative;
  z-index: 1;
}

.hero-card-icon svg { width: 80px; height: 80px; }
.hero-card-content { text-align: center; }
.hero-card-name { font-weight: 800; font-size: 1.125rem; color: var(--blue-900); }
.hero-card-role { font-size: .875rem; color: var(--gray-600); margin-bottom: .5rem; }
.hero-card-stars { color: #f59e0b; font-size: 1.125rem; letter-spacing: 2px; }

.hero-floating-badge {
  position: absolute;
  background: var(--white);
  border-radius: var(--radius-md);
  padding: .625rem 1rem;
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8125rem;
  font-weight: 700;
  color: var(--blue-800);
  white-space: nowrap;
  z-index: 2;
  will-change: transform;
  backface-visibility: hidden;
}
.hero-floating-badge svg { width: 1rem; height: 1rem; color: var(--green-500); flex-shrink: 0; }
.badge-1 { top: 5%; right: -5%; animation: float 4s ease-in-out infinite; }
.badge-2 { bottom: 10%; left: -8%; animation: float 4s ease-in-out infinite 2s; }

@keyframes float {
  0%, 100% { transform: translate3d(0, 0, 0); }
  50% { transform: translate3d(0, -8px, 0); }
}

.hero-wave {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  line-height: 0;
}
.hero-wave svg { width: 100%; height: 80px; }

/* ---- SERVICES ---- */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  outline: none;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--blue-700), var(--blue-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.service-card:hover, .service-card:focus {
  border-color: var(--blue-200, #bfdbfe);
  box-shadow: var(--shadow-xl);
  transform: translateY(-8px);
}
.service-card:hover::before, .service-card:focus::before { transform: scaleX(1); }

.service-card-featured {
  background: linear-gradient(135deg, var(--blue-900) 0%, var(--blue-700) 100%);
  border-color: transparent;
  color: var(--white);
}
.service-card-featured h3 { color: var(--white); }
.service-card-featured p { color: rgba(255,255,255,.8); }
.service-card-featured .service-link { color: rgba(255,255,255,.9); }
.service-card-featured::before { background: linear-gradient(90deg, var(--green-500), var(--green-wa)); }

.service-badge {
  position: absolute;
  top: 1rem; right: 1rem;
  background: var(--green-500);
  color: var(--white);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .25rem .625rem;
  border-radius: var(--radius-full);
}
body.lang-he .service-badge { right: auto; left: 1rem; }

.service-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}
.service-icon svg { width: 26px; height: 26px; }
.service-icon-1 { background: #eff6ff; color: var(--blue-700); }
.service-icon-2 { background: rgba(255,255,255,.15); color: var(--white); }
.service-icon-3 { background: #f0fdf4; color: var(--green-600); }
.service-icon-4 { background: #fefce8; color: #ca8a04; }
.service-icon-5 { background: #fdf4ff; color: #9333ea; }

.service-card h3 {
  font-size: 1.0625rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: .625rem;
  line-height: 1.3;
}
.service-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1.25rem;
}
.service-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-700);
  transition: var(--transition);
}
.service-link:hover { color: var(--blue-900); }

.service-card-cta {
  background: var(--gray-50);
  border: 2px dashed var(--gray-200);
  display: flex;
  align-items: center;
  justify-content: center;
}
.service-cta-content { text-align: center; }
.service-cta-content h3 { color: var(--blue-900); margin-bottom: .5rem; }
.service-cta-content p { color: var(--gray-600); margin-bottom: 1.25rem; font-size: .9rem; }

/* ---- ABOUT ---- */
.about-section { background: var(--gray-50); }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.about-image-frame {
  position: relative;
  max-width: 380px;
}
.about-image-placeholder {
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow-xl);
  aspect-ratio: 4/5;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-image-placeholder svg { width: 60%; height: 60%; }

.about-badge-exp {
  position: absolute;
  bottom: -1.5rem;
  right: -1.5rem;
  background: var(--blue-700);
  color: var(--white);
  border-radius: var(--radius-lg);
  padding: 1rem 1.5rem;
  text-align: center;
  box-shadow: var(--shadow-lg);
}
.about-badge-exp strong { display: block; font-size: 2rem; font-weight: 900; line-height: 1; }
.about-badge-exp span { font-size: .8125rem; font-weight: 500; opacity: .9; }

.about-content .section-label { margin-bottom: .75rem; }
.about-content h2 {
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 800;
  color: var(--blue-900);
  line-height: 1.25;
  margin-bottom: 1.25rem;
}
.about-content p {
  font-size: 1rem;
  color: var(--gray-600);
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
  margin: 1.75rem 0;
}
.about-feature {
  display: flex;
  align-items: flex-start;
  gap: .625rem;
  font-size: .9rem;
  color: var(--gray-700);
  font-weight: 500;
}
.about-feature-icon {
  width: 20px; height: 20px;
  color: var(--green-500);
  flex-shrink: 0;
  margin-top: 1px;
}
.about-feature-icon svg { width: 100%; height: 100%; }

/* ---- QUALIFICATIONS ---- */
.qualifications-section { background: var(--white); }

.qual-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.qual-card {
  background: var(--blue-50);
  border: 1px solid var(--blue-100);
  border-radius: var(--radius-lg);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: var(--transition);
}
.qual-card:hover {
  background: var(--blue-700);
  border-color: var(--blue-700);
  transform: translateY(-8px) scale(1.02);
  box-shadow: var(--shadow-xl);
}
.qual-card:hover .qual-icon { background: rgba(255,255,255,.15); color: var(--white); }
.qual-card:hover h3 { color: var(--white); }
.qual-card:hover p { color: rgba(255,255,255,.8); }

.qual-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue-700);
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}
.qual-icon svg { width: 28px; height: 28px; }
.qual-card h3 {
  font-size: .9375rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: .625rem;
  line-height: 1.3;
  transition: var(--transition);
}
.qual-card p {
  font-size: .85rem;
  color: var(--gray-600);
  line-height: 1.6;
  transition: var(--transition);
}

/* ---- TESTIMONIALS ---- */
.testimonials-section { background: var(--gray-50); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
  transition: var(--transition);
}
.testimonial-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }

.testimonial-featured {
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  border-color: transparent;
  color: var(--white);
}
.testimonial-featured p { color: rgba(255,255,255,.9); }
.testimonial-featured .testimonial-name { color: var(--white); }
.testimonial-featured .testimonial-role { color: rgba(255,255,255,.7); }
.testimonial-featured .testimonial-stars { color: #fbbf24; }

.testimonial-stars { font-size: 1.125rem; color: #f59e0b; margin-bottom: 1rem; letter-spacing: 2px; }
.testimonial-card p {
  font-size: .9375rem;
  color: var(--gray-700);
  line-height: 1.7;
  margin-bottom: 1.25rem;
  font-style: italic;
}
.testimonial-card footer { display: flex; flex-direction: column; gap: .15rem; }
.testimonial-name { font-weight: 700; font-size: .9375rem; color: var(--blue-900); font-style: normal; }
.testimonial-role { font-size: .8125rem; color: var(--gray-500, #6b7280); }

/* ---- CTA BANNER ---- */
.cta-banner {
  background: linear-gradient(135deg, var(--green-wa-dark) 0%, var(--green-wa) 100%);
  padding: 4rem 0;
}
.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
}
.cta-text h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  color: var(--white);
  margin-bottom: .5rem;
}
.cta-text p { color: rgba(255,255,255,.85); font-size: 1rem; max-width: 560px; }

/* ---- CONTACT ---- */
.contact-section { background: var(--white); }

.contact-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.contact-card {
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  text-align: center;
  transition: var(--transition);
}
.contact-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); }

.contact-card-whatsapp {
  background: linear-gradient(135deg, #ecfdf5, #d1fae5);
  border-color: #a7f3d0;
}

.contact-icon {
  width: 56px; height: 56px;
  background: var(--white);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.25rem;
  color: var(--blue-700);
  box-shadow: var(--shadow-sm);
}
.contact-icon-wa { color: var(--green-wa); }
.contact-icon svg { width: 28px; height: 28px; }

.contact-card h3 {
  font-size: 1rem;
  font-weight: 700;
  color: var(--blue-900);
  margin-bottom: .5rem;
}
.contact-card p {
  font-size: .9rem;
  color: var(--gray-600);
  line-height: 1.65;
  margin-bottom: 1rem;
}
.contact-link {
  font-size: .875rem;
  font-weight: 600;
  color: var(--blue-700);
  transition: var(--transition);
}
.contact-link:hover { color: var(--blue-900); }

.hours-list { text-align: left; }
body.lang-he .hours-list { text-align: right; }
.hours-row {
  display: flex;
  justify-content: space-between;
  padding: .5rem 0;
  border-bottom: 1px solid var(--gray-200);
  font-size: .875rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-row span:first-child { font-weight: 600; color: var(--gray-700); }
.hours-row span:last-child { color: var(--gray-600); }
.hours-closed span { color: var(--gray-400) !important; }

/* ---- FOOTER ---- */
.footer {
  background: var(--gray-900);
  color: var(--gray-400);
  padding-top: 4rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}

.footer-logo {
  display: flex;
  align-items: center;
  gap: .75rem;
  margin-bottom: 1rem;
  color: var(--white);
  font-weight: 800;
  font-size: 1.0625rem;
}
.footer-tagline {
  font-size: .875rem;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}
.footer-wa {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px; height: 40px;
  background: var(--green-wa);
  border-radius: var(--radius-full);
  color: var(--white);
  transition: var(--transition);
}
.footer-wa:hover { background: var(--green-wa-dark); transform: scale(1.1); }
.footer-wa svg { width: 20px; height: 20px; }

.footer-links h4, .footer-contact h4 {
  color: var(--white);
  font-size: .875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 1.25rem;
}
.footer-links ul { display: flex; flex-direction: column; gap: .5rem; }
.footer-links a {
  font-size: .875rem;
  color: var(--gray-400);
  transition: var(--transition);
}
.footer-links a:hover { color: var(--white); }

.footer-contact address { font-style: normal; }
.footer-contact p { font-size: .875rem; margin-bottom: .5rem; }
.footer-contact a { color: var(--gray-400); transition: var(--transition); }
.footer-contact a:hover { color: var(--green-wa); }
.footer-hours { margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255,255,255,.08); }
.footer-hours p { font-size: .8125rem; }

.footer-bottom {
  text-align: center;
  padding: 1.5rem 0;
  font-size: .8125rem;
  color: var(--gray-600, #4b5563);
}

/* ---- FLOATING WHATSAPP ---- */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 999;
  width: 60px; height: 60px;
  background: var(--green-wa);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 4px 20px rgba(37,211,102,.5);
  transition: var(--transition);
  text-decoration: none;
}
.whatsapp-float:hover {
  background: var(--green-wa-dark);
  transform: scale(1.1);
  box-shadow: 0 6px 28px rgba(37,211,102,.6);
}
.whatsapp-float svg { width: 30px; height: 30px; }

.whatsapp-float-tooltip {
  position: absolute;
  right: calc(100% + .75rem);
  background: var(--gray-900);
  color: var(--white);
  font-size: .8125rem;
  font-weight: 600;
  padding: .4rem .875rem;
  border-radius: var(--radius-sm);
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.whatsapp-float:hover .whatsapp-float-tooltip { opacity: 1; }
.whatsapp-float-tooltip::after {
  content: '';
  position: absolute;
  top: 50%; right: -4px;
  transform: translateY(-50%);
  border: 4px solid transparent;
  border-left-color: var(--gray-900);
}

body.lang-he .whatsapp-float { right: auto; left: 2rem; }
body.lang-he .whatsapp-float-tooltip { right: auto; left: calc(100% + .75rem); }
body.lang-he .whatsapp-float-tooltip::after { right: auto; left: -4px; border-left-color: transparent; border-right-color: var(--gray-900); }

/* ---- SCROLL ANIMATIONS ---- */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity .6s ease, transform .6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---- RESPONSIVE ---- */

/* Tablet */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .qual-grid { grid-template-columns: repeat(2, 1fr); }
  .hero-content { gap: 2.5rem; }
  .about-grid { gap: 3rem; }
}

/* Mobile Large */
@media (max-width: 768px) {
  .section { padding: 3.5rem 0; }

  .nav-links { display: none; }
  .hamburger { display: flex; }
  .nav-cta { display: none; }

  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 2rem;
    padding-bottom: 4rem;
  }
  .hero-visual { order: -1; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .hero-stats { justify-content: center; }
  .hero-badge { display: inline-flex; }
  .badge-1 { top: -10px; right: 0; }
  .badge-2 { bottom: -10px; left: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .about-visual { display: none; }
  .qual-grid { grid-template-columns: 1fr 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .cta-content { flex-direction: column; text-align: center; }
  .about-features { grid-template-columns: 1fr; }
  .lang-switcher { display: none; }
}

/* Mobile Small */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .hero-text h1 { font-size: 1.875rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; justify-content: center; }
  .qual-grid { grid-template-columns: 1fr; }
  .whatsapp-float { bottom: 1.25rem; right: 1.25rem; width: 52px; height: 52px; }
  .whatsapp-float svg { width: 26px; height: 26px; }
  .whatsapp-float-tooltip { display: none; }
}

/* Print */
@media print {
  #header, .whatsapp-float, .hero-floating-badge { display: none; }
  .hero { min-height: auto; padding-top: 0; }
  .section { padding: 2rem 0; }
}

/* Focus visible for accessibility */
a:focus-visible, button:focus-visible {
  outline: 3px solid var(--blue-500);
  outline-offset: 3px;
  border-radius: 4px;
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; }
  html { scroll-behavior: auto; }
}
