/* ================================================
   מיכאל שירותי אינסטלציה — Global Styles
   ================================================ */

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

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

/* ================================================
   VARIABLES
   ================================================ */
:root {
  /* Colors */
  --blue-dark:   #0a1e3d;
  --blue:        #1565C0;
  --blue-mid:    #1976D2;
  --blue-bright: #2196F3;
  --blue-light:  #e3f2fd;
  --white:       #ffffff;
  --text:        #0d1b3e;
  --text-muted:  #546e7a;
  --gray-light:  #f0f4f8;
  --gray-border: #dbeafe;
  --success:     #16a34a;
  --red:         #dc2626;

  /* Typography */
  --font:        'Heebo', Arial, sans-serif;
  --text-xs:     0.75rem;   /* 12px */
  --text-sm:     0.875rem;  /* 14px */
  --text-base:   1rem;      /* 16px */
  --text-lg:     1.125rem;  /* 18px */
  --text-xl:     1.25rem;   /* 20px */
  --text-2xl:    1.5rem;    /* 24px */
  --text-3xl:    1.875rem;  /* 30px */
  --text-4xl:    2.25rem;   /* 36px */
  --text-5xl:    3rem;      /* 48px */

  /* Spacing */
  --space-1:  0.25rem;
  --space-2:  0.5rem;
  --space-3:  0.75rem;
  --space-4:  1rem;
  --space-5:  1.25rem;
  --space-6:  1.5rem;
  --space-8:  2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;

  /* Layout */
  --container: 1200px;
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;
  --radius-xl: 16px;
  --radius-full: 9999px;

  /* Shadows */
  --shadow-sm: 0 1px 4px rgba(0,0,0,.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,.08);
  --shadow-lg: 0 8px 32px rgba(0,0,0,.12);
  --shadow-blue: 0 4px 20px rgba(33,150,243,.35);

  /* Transitions */
  --transition: all 0.2s ease;
}

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

body {
  font-family: var(--font);
  direction: rtl;
  background: var(--white);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
  transition: var(--transition);
}

ul, ol { list-style: none; }

button {
  font-family: var(--font);
  cursor: pointer;
  border: none;
  background: none;
}

/* ================================================
   TYPOGRAPHY
   ================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font);
  font-weight: 800;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: var(--text-5xl); }
h2 { font-size: var(--text-4xl); }
h3 { font-size: var(--text-3xl); }
h4 { font-size: var(--text-2xl); }
h5 { font-size: var(--text-xl); }
h6 { font-size: var(--text-lg); }

p {
  font-size: var(--text-base);
  color: var(--text-muted);
  line-height: 1.75;
}

strong { font-weight: 700; }

/* ================================================
   CONTAINER
   ================================================ */
.container {
  width: 100%;
  max-width: var(--container);
  margin-right: auto;
  margin-left: auto;
  padding-right: var(--space-6);
  padding-left: var(--space-6);
}

/* ================================================
   SECTION SPACING
   ================================================ */
section {
  padding-top: var(--space-20);
  padding-bottom: var(--space-20);
}

.section-tag {
  display: inline-block;
  background: var(--blue-light);
  color: var(--blue);
  font-size: var(--text-xs);
  font-weight: 800;
  padding: var(--space-1) var(--space-4);
  border-radius: var(--radius-full);
  margin-bottom: var(--space-3);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.section-title {
  font-size: var(--text-4xl);
  font-weight: 900;
  color: var(--text);
  margin-bottom: var(--space-3);
  line-height: 1.15;
}

.section-sub {
  font-size: var(--text-lg);
  color: var(--text-muted);
  margin-bottom: var(--space-12);
  line-height: 1.7;
}

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

/* ================================================
   BUTTONS
   ================================================ */

/* Primary — כחול */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  font-family: var(--font);
  font-size: var(--text-base);
  font-weight: 800;
  padding: var(--space-4) var(--space-8);
  border-radius: var(--radius);
  border: 2px solid transparent;
  cursor: pointer;
  transition: var(--transition);
  white-space: nowrap;
  text-decoration: none;
  line-height: 1;
}

.btn-primary {
  background: var(--blue-bright);
  color: var(--white);
  border-color: var(--blue-bright);
  box-shadow: var(--shadow-blue);
}
.btn-primary:hover {
  background: var(--blue-mid);
  border-color: var(--blue-mid);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(33,150,243,.45);
}

/* Secondary — מסגרת */
.btn-secondary {
  background: transparent;
  color: var(--blue-bright);
  border-color: var(--blue-bright);
}
.btn-secondary:hover {
  background: var(--blue-light);
  transform: translateY(-2px);
}

/* White — על רקע כהה: שקוף עם מסגרת וטקסט לבנים */
.btn-white {
  background: transparent;
  color: var(--white);
  border: 2px solid var(--white);
  box-shadow: none;
}
.btn-white:hover {
  background: rgba(255,255,255,.15);
  transform: translateY(-2px);
}

/* WhatsApp — ירוק/לבן בסגנון ווטסאפ */
.btn-wa {
  background: #25D366;
  color: var(--white);
  border-color: #25D366;
  box-shadow: 0 4px 14px rgba(37,211,102,.35);
}
.btn-wa:hover {
  background: #1EBE5A;
  border-color: #1EBE5A;
  transform: translateY(-2px);
}

/* Sizes */
.btn-sm {
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-5);
}
.btn-lg {
  font-size: var(--text-lg);
  padding: var(--space-5) var(--space-10);
}
.btn-full { width: 100%; }

/* ================================================
   CARD
   ================================================ */
.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  padding: var(--space-8);
  transition: var(--transition);
}
.card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* ================================================
   ACCESSIBILITY
   ================================================ */
.skip-link {
  position: absolute;
  top: -999px;
  right: 0;
  background: var(--blue);
  color: var(--white);
  padding: var(--space-3) var(--space-5);
  font-weight: 700;
  z-index: 9999;
  border-radius: 0 0 var(--radius) 0;
}
.skip-link:focus { top: 0; }

:focus-visible {
  outline: 3px solid var(--blue-bright);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* ================================================
   RESPONSIVE — MOBILE FIRST
   ================================================ */

/* Small — 480px */
@media (max-width: 480px) {
  h1 { font-size: var(--text-3xl); }
  h2 { font-size: var(--text-2xl); }
  h3 { font-size: var(--text-xl); }
  .section-title { font-size: var(--text-2xl); }
  .section-sub { font-size: var(--text-base); }
  section { padding-top: var(--space-12); padding-bottom: var(--space-12); }
  .container { padding-right: var(--space-4); padding-left: var(--space-4); }
  .btn { padding: var(--space-3) var(--space-6); font-size: var(--text-sm); }
  .btn-lg { padding: var(--space-4) var(--space-8); font-size: var(--text-base); }
}

/* Medium — 768px */
@media (max-width: 768px) {
  h1 { font-size: var(--text-4xl); }
  h2 { font-size: var(--text-3xl); }
  .section-title { font-size: var(--text-3xl); }
  section { padding-top: var(--space-16); padding-bottom: var(--space-16); }
}

/* Large — 1024px */
@media (max-width: 1024px) {
  .container {
    padding-right: var(--space-5);
    padding-left: var(--space-5);
  }
}

/* ================================================
   HERO
   ================================================ */

@keyframes pulse {
  0%,100% { box-shadow: 0 0 0 3px rgba(125,211,252,.3); }
  50%      { box-shadow: 0 0 0 6px rgba(125,211,252,.08); }
}

/* ================================================
   SERVICES
   ================================================ */
.services-section { background: var(--gray-light); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--space-5);
}
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  border-top: 3px solid var(--blue);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: var(--transition);
}
.service-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.service-icon {
  width: 60px; height: 60px;
  background: var(--blue-light);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-4);
  color: var(--blue);
  transition: var(--transition);
}
.service-card:hover .service-icon { background: var(--blue); color: var(--white); }
.service-card h3 { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-3); color: var(--text); }
.service-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

/* ================================================
   WHY US
   ================================================ */
.why-section { }
.why-text h3 { font-size: var(--text-lg); font-weight: 800; margin-bottom: var(--space-2); }
.why-text p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.65; }

/* ================================================
   ABOUT
   ================================================ */
.about-section { background: var(--blue-dark); }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-16);
  align-items: center;
}
.about-image { border-radius: var(--radius-xl); overflow: hidden; }
.about-image img { width: 100%; height: 100%; object-fit: cover; }
.about-content .section-tag { background: rgba(255,255,255,.12); color: rgba(255,255,255,.8); }
.about-content .section-title { color: var(--white); }
.about-content p { color: rgba(255,255,255,.75); }
.about-stats {
  display: flex; gap: var(--space-8);
  margin-top: var(--space-8);
  padding-top: var(--space-8);
  border-top: 1px solid rgba(255,255,255,.15);
}
.about-stat { text-align: center; }
.stat-num { display: block; font-size: var(--text-4xl); font-weight: 900; color: #3b9eff; line-height: 1; }
.stat-label { display: block; font-size: var(--text-sm); color: rgba(255,255,255,.6); margin-top: var(--space-1); font-weight: 600; }

/* ================================================
   REVIEWS
   ================================================ */
.reviews-section { }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
}
.review-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  border: 1px solid var(--gray-border);
  border-right: 4px solid var(--blue);
  border-left: 4px solid var(--blue);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-md); }
.review-top { display: flex; align-items: center; gap: var(--space-3); margin-bottom: var(--space-4); }
.review-avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: linear-gradient(135deg, var(--blue), var(--blue-bright));
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-lg); font-weight: 900; color: var(--white); flex-shrink: 0;
}
.review-name { font-weight: 800; color: var(--text); font-size: var(--text-sm); }
.review-stars { color: #f59e0b; font-size: var(--text-sm); margin-top: 2px; }
.review-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.75; }

/* ================================================
   AREAS
   ================================================ */
.areas-section { background: var(--white); }
.areas-grid {
  display: flex; flex-wrap: wrap; gap: var(--space-3);
  justify-content: center; max-width: 700px; margin: 0 auto;
}
.area-tag {
  background: var(--white);
  color: var(--text);
  border: 2px solid var(--blue);
  border-radius: var(--radius-full);
  padding: var(--space-3) var(--space-6);
  font-weight: 700;
  font-size: var(--text-base);
  transition: var(--transition);
  cursor: default;
}
.area-tag:hover { background: var(--blue); color: var(--white); }

/* ================================================
   FAQ
   ================================================ */
.faq-section { background: var(--gray-light); }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: var(--space-3); }
.faq-item { background: var(--white); border-radius: var(--radius-lg); border: 1px solid var(--gray-border); overflow: hidden; }
.faq-q {
  width: 100%; background: none; border: none; padding: var(--space-5) var(--space-6);
  display: flex; justify-content: space-between; align-items: center;
  cursor: pointer; font-family: var(--font); font-size: var(--text-base);
  font-weight: 800; color: var(--text); text-align: right; gap: var(--space-4);
  transition: var(--transition);
}
.faq-q:hover { background: var(--blue-light); }
.faq-icon {
  width: 26px; height: 26px; border-radius: 50%;
  background: var(--blue-light); color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  font-size: var(--text-xl); font-weight: 900; flex-shrink: 0;
  transition: transform .3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-a {
  padding: 0 var(--space-6) var(--space-5);
  font-size: var(--text-sm); color: var(--text-muted);
  line-height: 1.8; border-top: 1px solid var(--gray-border);
  padding-top: var(--space-4);
}

/* ================================================
   CTA
   ================================================ */
.cta-section { background: linear-gradient(135deg, var(--blue-dark), var(--blue), #0288D1); }
.cta-inner { text-align: center; }
.cta-inner h2 { color: var(--white); font-size: var(--text-4xl); margin-bottom: var(--space-3); }
.cta-inner > p { color: rgba(255,255,255,.8); font-size: var(--text-lg); margin-bottom: var(--space-8); }
.cta-buttons { display: flex; gap: var(--space-4); justify-content: center; flex-wrap: wrap; }
.cta-note { font-size: var(--text-xs); color: rgba(255,255,255,.45); margin-top: var(--space-5); }

/* ================================================
   RESPONSIVE — SECTIONS
   ================================================ */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-height: 360px; }
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .about-stats { gap: var(--space-4); }
  .cta-inner h2 { font-size: var(--text-3xl); }
  .cta-section .cta-buttons { flex-direction: column; align-items: center; }
}

@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
  .areas-grid { gap: var(--space-2); }
  .area-tag { padding: var(--space-2) var(--space-4); font-size: var(--text-sm); }
}

/* ================================================
   NAV
   ================================================ */
nav {
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: var(--shadow-md);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--space-6);
  height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-img { height: 76px; width: auto; display: block; }
.nav-menu {
  display: flex;
  align-items: center;
  gap: var(--space-6);
  list-style: none;
}
.nav-menu a {
  color: var(--text);
  font-size: var(--text-sm);
  font-weight: 700;
  transition: var(--transition);
  position: relative;
  padding-bottom: 4px;
  white-space: nowrap;
}
.nav-menu a::after {
  content: '';
  position: absolute;
  bottom: 0; right: 0;
  width: 0; height: 2px;
  background: var(--blue);
  transition: width .25s;
}
.nav-menu a:hover { color: var(--blue); }
.nav-menu a:hover::after { width: 100%; }
.nav-cta {
  background: var(--blue) !important;
  color: var(--white) !important;
  padding: var(--space-2) var(--space-5) !important;
  border-radius: var(--radius) !important;
  font-weight: 800 !important;
}
.nav-cta:hover { background: var(--blue-dark) !important; }
.nav-cta::after { display: none !important; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 6px;
}
.hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: var(--transition);
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 64px; right: 0; left: 0;
  background: var(--white);
  border-bottom: 3px solid var(--blue);
  box-shadow: var(--shadow-lg);
  z-index: 200;
  flex-direction: column;
  direction: rtl;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  color: var(--text);
  font-size: var(--text-base);
  font-weight: 700;
  padding: var(--space-4) var(--space-6);
  border-bottom: 1px solid var(--gray-light);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: var(--space-3);
  background: var(--white);
  width: 100%;
  transition: var(--transition);
  text-align: right;
  direction: rtl;
}
.mobile-menu a:hover { background: var(--blue-light); color: var(--blue); }
.mob-icon { color: var(--blue); flex-shrink: 0; }
.mobile-menu a:last-child {
  background: var(--blue);
  color: var(--white);
  justify-content: center;
  border-bottom: none;
}
.mobile-menu a:last-child .mob-icon { color: var(--white); }
.mobile-menu a:last-child:hover { background: var(--blue-dark); }

/* Hero — טקסט בצד שמאל */

@media (max-width: 768px) {
  .nav-menu { display: none; }
  .hamburger { display: flex; }
  .nav-inner { padding: 0 var(--space-4); }
}

/* ================================================
   SERVICES — PHOTO GRID
   ================================================ */
.services-section { background: #f0f4f8; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}
.service-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 24px rgba(21,101,192,.15); }
.service-card--featured { border: 2px solid var(--blue); }
.service-img {
  height: 190px;
  overflow: hidden;
  background: var(--blue-light);
}
.service-img img {
  width: 100%; height: 100%;
  object-fit: cover; display: block;
  transition: transform .3s ease;
}
.service-card:hover .service-img img { transform: scale(1.05); }
.service-label {
  background: #0a1e3d;
  padding: 13px 16px;
}
.service-label span {
  color: var(--white);
  font-size: var(--text-base);
  font-weight: 800;
}
.service-label--blue { background: var(--blue); }

.services-badges {
  display: flex;
  justify-content: center;
  gap: var(--space-8);
  flex-wrap: wrap;
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--gray-border);
  padding: var(--space-6) var(--space-8);
}
.services-badge {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.services-badge-icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.services-badge span {
  font-size: var(--text-sm);
  font-weight: 800;
  color: var(--text);
}

@media (max-width: 768px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .services-badges { gap: var(--space-5); }
}
@media (max-width: 480px) {
  .services-grid { grid-template-columns: 1fr; }
}

/* ================================================
   WHY US — NEW DESIGN
   ================================================ */
.why-section {
  background: #f0f6ff url('../assets/images/why-bg.jpg') center/cover no-repeat;
  padding: var(--space-20) var(--space-12);
}
.why-divider {
  width: 60px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto var(--space-12);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 960px;
  margin: 0 auto;
}
.why-card {
  background: rgba(255,255,255,.92);
  border-radius: var(--radius-xl);
  border: 1px solid var(--gray-border);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  align-items: center;
}
.why-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.why-icon {
  width: 70px; height: 70px;
  border-radius: 50%;
  background: var(--blue-light);
  color: var(--blue);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-4);
}
.why-card h3 {
  font-size: var(--text-lg);
  font-weight: 900;
  color: var(--text);
  margin-bottom: var(--space-3);
}
.why-line {
  width: 36px;
  height: 3px;
  background: var(--blue);
  margin: 0 auto var(--space-3);
}
.why-card p {
  font-size: var(--text-sm);
  color: var(--text-muted);
  line-height: 1.75;
}

@media (max-width: 768px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 480px) {
  .why-grid { grid-template-columns: 1fr; }
}

/* ================================================
   REVIEWS — NEW DESIGN
   ================================================ */
.reviews-section {
  background: #e8f4ff url('../assets/images/reviews-bg.jpg') center/cover no-repeat;
  padding: var(--space-20) var(--space-12);
}
.reviews-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-3);
  margin-bottom: var(--space-12);
}
.reviews-line { width: 60px; height: 1px; background: var(--blue); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-5);
  max-width: 960px;
  margin: 0 auto var(--space-8);
}
.review-card {
  background: rgba(255,255,255,.95);
  border-radius: 20px;
  padding: var(--space-8) var(--space-6);
  text-align: center;
  border: 1px solid var(--gray-border);
  transition: var(--transition);
}
.review-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.review-avatar {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--blue-light);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
}
.review-name { font-size: var(--text-xl); font-weight: 900; color: var(--text); margin-bottom: var(--space-2); }
.review-stars { color: var(--blue); font-size: var(--text-xl); letter-spacing: 2px; margin-bottom: var(--space-4); }
.review-card p { font-size: var(--text-sm); color: var(--text-muted); line-height: 1.8; margin-bottom: var(--space-5); }
.review-quote { font-size: 40px; color: var(--blue-light); font-weight: 900; line-height: 1; }
.reviews-rating {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 340px;
  margin: 0 auto;
  background: rgba(255,255,255,.95);
  border-radius: 50px;
  border: 1.5px solid var(--gray-border);
  overflow: hidden;
}
.rating-num {
  padding: var(--space-4) var(--space-6);
  border-left: 1.5px solid var(--gray-border);
}
.rating-num span { font-size: var(--text-4xl); font-weight: 900; color: var(--blue); }
.rating-num span small { font-size: var(--text-base); color: var(--text-muted); font-weight: 400; }
.rating-info { padding: var(--space-4) var(--space-6); }
.rating-stars { color: var(--blue); font-size: var(--text-lg); letter-spacing: 2px; }
.rating-label { font-size: var(--text-xs); color: var(--text-muted); font-weight: 600; margin-top: var(--space-1); }

@media (max-width: 768px) {
  .reviews-grid { grid-template-columns: 1fr; max-width: 480px; }
}

/* ================================================
   AREAS — NEW DESIGN
   ================================================ */
.areas-section {
  background: url('../assets/images/areas-bg.jpg') center/cover no-repeat;
}
.areas-divider {
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-3); margin-bottom: var(--space-3);
}
.areas-line { width: 50px; height: 1.5px; background: var(--blue); }

.areas-map { display: none; }
.area-card {
  background: rgba(255,255,255,.92);
  border: 1.5px solid #c5dcf5;
  border-radius: var(--radius-lg);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-4);
  transition: var(--transition);
  backdrop-filter: blur(4px);
}
.areas-cta { display: flex; justify-content: center; }
.areas-cta-btn {
  display: inline-flex; align-items: center; gap: var(--space-3);
  background: #fff; border: 2px solid var(--blue);
  border-radius: var(--radius-full);
  padding: var(--space-4) var(--space-10);
  font-size: var(--text-base); font-weight: 800; color: var(--blue);
  font-family: var(--font);
}

@media (max-width: 768px) {
  
  .areas-map { order: -1; }
  .areas-map img { width: 140px; }
}

/* ================================================
   AREAS — RESPONSIVE UPDATE
   ================================================ */

.areas-col { display: flex; flex-direction: column; gap: var(--space-3); }
.area-card {
  background: rgba(255,255,255,.88);
  border: 1.5px solid #c5dcf5;
  border-radius: var(--radius-lg);
  padding: 10px 14px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  backdrop-filter: blur(4px);
  transition: var(--transition);
}
.area-card:hover { background: #fff; border-color: var(--blue); box-shadow: var(--shadow-md); }
.area-pin {
  width: 34px; height: 34px; border-radius: 50%;
  background: var(--blue-light); border: 1.5px solid var(--blue);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.area-name { font-size: var(--text-base); font-weight: 900; color: var(--text); }
.area-badge {
  display: inline-flex; align-items: center; gap: 3px;
  background: var(--blue-light); color: var(--blue);
  font-size: 10px; font-weight: 700;
  padding: 2px 8px; border-radius: var(--radius-full);
  margin-top: 2px;
}
.areas-map {
  display: flex; align-items: center; justify-content: center;
}
.areas-map img { width: 180px; object-fit: contain; }

/* מובייל — גריד 2 עמודות ללא מפה */
@media (max-width: 768px) {
  
  .areas-map { display: none; }
  .area-name { font-size: var(--text-sm); }
  .area-pin { width: 28px; height: 28px; }
}
@media (max-width: 480px) {
  .area-name { font-size: 13px; }
}

/* ================================================
   PRICING
   ================================================ */
.pricing-section { background: #f0f7ff; }
.pricing-table-wrap {
  max-width: 860px;
  margin: 0 auto var(--space-5);
  border-radius: var(--radius-xl);
  overflow: hidden;
  border: 1px solid var(--gray-border);
  box-shadow: 0 4px 20px rgba(21,101,192,.08);
}
.pricing-table { width: 100%; border-collapse: collapse; background: var(--white); }
.pricing-table thead th {
  background: #0a1e3d;
  color: var(--white);
  padding: 14px 20px;
  font-size: var(--text-sm);
  font-weight: 800;
  text-align: right;
}
.pricing-table thead th:last-child { text-align: center; min-width: 140px; }
.pricing-table tbody tr { border-bottom: 1px solid var(--blue-light); }
.pricing-table tbody tr:last-child { border-bottom: none; }
.pricing-table tbody tr:hover { background: #f0f7ff; }
.pricing-table tbody td { padding: 13px 20px; font-size: var(--text-sm); color: var(--text); vertical-align: middle; }
.pricing-table tbody td:first-child { font-weight: 800; }
.p-note { font-size: var(--text-xs); color: var(--text-muted); }
.p-price { text-align: center; font-weight: 900; color: var(--blue); font-size: var(--text-base); white-space: nowrap; }
.pricing-disclaimer {
  text-align: center;
  font-size: var(--text-xs);
  color: var(--text-muted);
  max-width: 860px;
  margin: 0 auto;
  line-height: 1.7;
}

@media (max-width: 768px) {
  .pricing-table-wrap { overflow-x: auto; }
  .pricing-table { min-width: 560px; }
}

/* ================================================
   UPDATES — שינויים 1-11
   ================================================ */

/* 1 — לוגו גדול פי 1.5 */
.logo-img { height: 114px !important; }

/* 2 — תפריט דסקטופ ימינה */
.nav-inner { flex-direction: row-reverse; }
.nav-menu { flex-direction: row; }

/* 3 — מובייל: לוגו שמאל, המבורגר ימין */
@media (max-width: 768px) {
  .nav-inner { flex-direction: row !important; justify-content: space-between; }
  .logo-img { height: 114px !important; }
}

/* 9 — Hero מובייל — רקע מכסה טוב יותר */

/* 10 — אזורי שירות ללא מפה: גריד 2 עמודות תמיד */

.areas-map { display: none !important; }

/* 11 — סטטיסטיקות אודות בעיגולים */
.about-stats {
  display: flex !important;
  gap: 0 !important;
  justify-content: center;
  border-top: 1px solid rgba(255,255,255,.15);
  padding-top: var(--space-8);
  margin-top: var(--space-8);
}
.about-stat {
  flex: 1;
  text-align: center;
  position: relative;
}
.about-stat + .about-stat::before {
  content: '';
  position: absolute;
  right: 0; top: 15%; bottom: 15%;
  width: 1px;
  background: rgba(255,255,255,.15);
}
.stat-circle {
  width: 80px; height: 80px;
  border-radius: 50%;
  border: 2px solid #3b9eff;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto var(--space-3);
  background: rgba(59,158,255,.08);
}
.stat-num { font-size: 1.4rem; font-weight: 900; color: #fff; line-height: 1; }
.stat-label { font-size: 12px; color: #fff; font-weight: 700; }

/* Hero stats — עיגולים */
.stat {
  background: none !important;
  border: none !important;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
}
.stat .stat-num { font-size: 1.3rem; font-weight: 900; color: #fff; }
.stat .stat-label { font-size: 12px; color: #fff; font-weight: 700; }

/* ================================================
   AREAS — DIAMOND LAYOUT
   ================================================ */

.areas-col { display: flex; flex-direction: column; gap: var(--space-3); }
.area-card {
  background: rgba(255,255,255,.9);
  border: 1.5px solid #c5dcf5;
  border-radius: var(--radius-lg);
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: var(--space-3);
  white-space: nowrap;
  transition: var(--transition);
  box-shadow: 0 2px 8px rgba(21,101,192,.06);
}
.area-card:hover { background: #fff; border-color: var(--blue); box-shadow: var(--shadow-md); }
.area-pin { width: 32px; height: 32px; border-radius: 50%; background: var(--blue-light); border: 1.5px solid var(--blue); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.area-name { font-size: var(--text-base); font-weight: 800; color: var(--text); }

/* Desktop diamond — right col */
@media (min-width: 769px) {
  .areas-col--right { align-items: flex-end; }
  .areas-col--right .area-r1 { margin-left: 20px; }
  .areas-col--right .area-r2 { margin-left: 60px; }
  .areas-col--right .area-r3 { margin-left: 60px; }
  .areas-col--right .area-r4 { margin-left: 20px; }

  .areas-col--left { align-items: flex-start; }
  .areas-col--left .area-l1 { margin-right: 20px; }
  .areas-col--left .area-l2 { margin-right: 60px; }
  .areas-col--left .area-l3 { margin-right: 60px; }
  .areas-col--left .area-l4 { margin-right: 20px; }
}

/* Mobile — reset diamond */
@media (max-width: 768px) {
  .areas-col--right, .areas-col--left { align-items: stretch; }
  .area-r1,.area-r2,.area-r3,.area-r4 { margin-left: 0 !important; }
  .area-l1,.area-l2,.area-l3,.area-l4 { margin-right: 0 !important; }
}

/* ================================================
   FOOTER
   ================================================ */
.footer { background: #05111f; color: rgba(255,255,255,.75); }
.footer-main { padding: var(--space-16) 0; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--space-10);
}
.footer-logo-img { height: 70px; width: auto; margin-bottom: var(--space-4); filter: brightness(1.1); }
.footer-desc { font-size: var(--text-sm); line-height: 1.75; color: rgba(255,255,255,.6); margin-bottom: var(--space-5); }
.footer-contact { display: flex; flex-direction: column; gap: var(--space-3); }
.footer-phone, .footer-wa {
  display: inline-flex; align-items: center; gap: var(--space-2);
  font-size: var(--text-sm); font-weight: 700; color: rgba(255,255,255,.85);
  transition: var(--transition);
}
.footer-phone:hover { color: #3b9eff; }
.footer-wa:hover { color: #25D366; }
.footer-heading {
  font-size: var(--text-sm); font-weight: 800; color: #fff;
  margin-bottom: var(--space-4); letter-spacing: .02em;
  padding-bottom: var(--space-2); border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-links { display: flex; flex-direction: column; gap: var(--space-2); }
.footer-links a {
  font-size: var(--text-sm); color: rgba(255,255,255,.6);
  transition: var(--transition); display: block; padding: 2px 0;
}
.footer-links a:hover { color: #3b9eff; padding-right: 4px; }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: var(--space-4) 0;
}
.footer-bottom-inner {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: var(--space-3);
}
.footer-bottom p { font-size: var(--text-xs); color: rgba(255,255,255,.4); }
.footer-legal { display: flex; gap: var(--space-5); }
.footer-legal a { font-size: var(--text-xs); color: rgba(255,255,255,.4); }
.footer-legal a:hover { color: rgba(255,255,255,.8); }

@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: var(--space-8); }
}

/* ================================================
   COOKIE BANNER
   ================================================ */
.cookie-banner {
  position: fixed; bottom: 0; right: 0; left: 0; z-index: 9999;
  background: #0a1e3d; color: #fff;
  padding: var(--space-4) var(--space-6);
  display: flex; align-items: center; justify-content: center;
  gap: var(--space-6); flex-wrap: wrap;
  box-shadow: 0 -4px 20px rgba(0,0,0,.2);
}
.cookie-content { display: flex; align-items: center; gap: var(--space-5); flex-wrap: wrap; justify-content: center; }
.cookie-content p { font-size: var(--text-sm); color: rgba(255,255,255,.8); }
.cookie-content a { color: #3b9eff; text-decoration: underline; }
.cookie-btns { display: flex; gap: var(--space-3); }
.cookie-accept {
  background: var(--blue); color: #fff;
  border: none; border-radius: var(--radius); padding: 8px 20px;
  font-family: var(--font); font-weight: 800; cursor: pointer; font-size: var(--text-sm);
}
.cookie-reject {
  background: transparent; color: rgba(255,255,255,.7);
  border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius);
  padding: 8px 20px; font-family: var(--font); font-weight: 700;
  cursor: pointer; font-size: var(--text-sm);
}

/* ================================================
   ACCESSIBILITY WIDGET
   ================================================ */
.access-btn {
  position: fixed; bottom: 80px; left: 20px; z-index: 9998;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--blue); color: #fff;
  border: none; cursor: pointer; box-shadow: var(--shadow-lg);
  display: flex; align-items: center; justify-content: center;
  transition: var(--transition);
}
.access-btn:hover { background: var(--blue-dark); transform: scale(1.1); }
.access-panel {
  position: fixed; bottom: 140px; left: 20px; z-index: 9998;
  background: #fff; border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg); padding: var(--space-4);
  display: flex; flex-direction: column; gap: var(--space-2);
  border: 1px solid var(--gray-border); min-width: 180px;
}
.access-panel h3 { font-size: var(--text-sm); font-weight: 800; color: var(--text); margin-bottom: var(--space-2); }
.access-panel button {
  background: var(--gray-light); border: 1px solid var(--gray-border);
  border-radius: var(--radius); padding: 6px 12px;
  font-family: var(--font); font-size: var(--text-xs); font-weight: 700;
  color: var(--text); cursor: pointer; text-align: right;
}
.access-panel button:hover { background: var(--blue-light); color: var(--blue); }

/* High contrast mode */
body.high-contrast { filter: contrast(1.5); }

/* Service label as link */
a.service-label {
  display: block;
  text-decoration: none;
  transition: var(--transition);
}
a.service-label:hover { background: var(--blue) !important; }
a.service-label:hover span { color: #fff; }

/* ================================================
   UPDATES BATCH 2
   ================================================ */

/* 1 — NAV desktop: לוגו ימין, קישורים באמצע, כפתור טלפון שמאל */
.nav-inner {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  justify-content: space-between;
  height: 86px;
  padding: 0 var(--space-6);
  max-width: var(--container);
  margin: 0 auto;
  width: 100%;
}
nav { max-width: 100%; }
.nav-menu {
  flex: 1;
  justify-content: center !important;
  gap: var(--space-5) !important;
  order: 0;
}
.nav-logo { order: -1; flex-shrink: 0; }
.nav-cta-wrap { order: 1; flex-shrink: 0; }
.nav-cta {
  display: inline-flex !important;
  align-items: center !important;
  gap: 8px !important;
  background: var(--blue) !important;
  color: #fff !important;
  padding: 10px 20px !important;
  border-radius: var(--radius) !important;
  font-weight: 800 !important;
  font-size: var(--text-sm) !important;
  white-space: nowrap;
}

/* 2 — Accessibility panel — תיקון toggle */
.access-panel { display: none; }
.access-panel:not([hidden]) { display: flex; }

/* ================================================
   MOBILE HERO — SINGLE CLEAN BLOCK
   ================================================ */
.toc { position: static !important; }

/* Desktop: hide mobile-only elements */
@media (min-width: 769px) {
  .mobile-nav-bar { display: none !important; }
  
}

@media (max-width: 768px) {

  /* NAV */
  .nav-inner { display: none !important; }
  .mobile-nav-bar {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    direction: rtl !important;
    padding: 0 14px !important;
    height: 64px !important;
    background: #fff !important;
    border-bottom: 3px solid #1565C0 !important;
    position: sticky !important;
    top: 0 !important;
    z-index: 200 !important;
  }
  .mobile-menu { top: 64px !important; direction: rtl !important; text-align: right !important; }
  .mobile-menu a { direction: rtl !important; text-align: right !important; justify-content: flex-start !important; }

  /* HERO — override all global hero CSS */
}

/* Mobile menu: icon RIGHT (RTL start), text follows to its left */
.mobile-menu a {
  flex-direction: row !important;
  justify-content: flex-start !important;
  gap: 12px !important;
  direction: rtl !important;
}

/* STEP 25: Desktop hero — text 100px right, scale 1.25 */

/* ================================================
   ACCESSIBILITY — WCAG 2.1 AA
   ================================================ */
/* Skip link */
.skip-link {
  position: absolute !important;
  top: -100px;
  right: 0;
  background: #1565C0;
  color: #fff !important;
  padding: 8px 16px;
  font-weight: 700;
  font-size: 14px;
  z-index: 9999;
  text-decoration: none;
  border-radius: 0 0 8px 8px;
  transition: top .2s;
}
.skip-link:focus {
  top: 0 !important;
}

/* Focus visible — all interactive elements */
*:focus-visible {
  outline: 3px solid #2684ff !important;
  outline-offset: 2px !important;
  border-radius: 4px;
}

/* Color contrast improvements */

/* FAQ buttons keyboard accessible */
.faq-q, .guide-faq-q, .city-faq-q, .svc-faq-q {
  cursor: pointer;
}
.faq-q:focus-visible, .guide-faq-q:focus-visible,
.city-faq-q:focus-visible, .svc-faq-q:focus-visible {
  outline: 3px solid #2684ff !important;
  outline-offset: 2px !important;
}

/* Links must be distinguishable */
a:not([class]) {
  text-decoration: underline;
}

/* Images — ensure alt attributes visible to screen readers */
img:not([alt]) {
  outline: 2px solid red; /* dev warning */
}

/* Form labels */
label { cursor: pointer; }
input:focus, textarea:focus, select:focus {
  outline: 3px solid #2684ff !important;
  outline-offset: 2px !important;
}

/* High contrast mode support */

/* Reduce motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Zoom 200% support */
@media (max-width: 480px) {
  html { font-size: 100%; }
  .container { padding: 0 16px; }
}

/* ================================================
   HERO DESKTOP — shift content 80px left (visually)
   ================================================ */
@media (min-width: 769px) {
  /* Hero sub text white */
  
}

/* ================================================
   MOBILE HERO — question text adjustments
   ================================================ */
@media (max-width: 768px) {
  /* 2. Move question up ~5cm (~190px) and increase font */
  
  /* 5. Answer text — white and 2px up */
  
  /* 3. Change 3rd circle text */
}

/* 6. Fix desktop btn overflow */

/* 8. Restore desktop nav */
@media (min-width: 769px) {
  .nav-inner {
    display: flex !important;
    align-items: center !important;
    justify-content: space-between !important;
    padding: 0 var(--space-6) !important;
    height: 86px !important;
    gap: var(--space-8) !important;
  }
  .nav-menu {
    display: flex !important;
    align-items: center !important;
    gap: var(--space-6) !important;
    list-style: none !important;
    flex-direction: row !important;
    position: static !important;
    background: none !important;
    box-shadow: none !important;
    padding: 0 !important;
  }
  .nav-cta-wrap { display: flex !important; }
  .hamburger { display: none !important; }
  .mobile-nav-bar { display: none !important; }
}

/* 25. CTA box — all text white */
.cta-inner h2,
.cta-inner p,
.cta-inner .cta-note,
.cta-buttons .btn {
  color: #fff !important;
}

/* ================================================
   HERO CIRCLES — STYLE C (minimal + line)
   ================================================ */

/* ================================================
   CITY PAGE — service card images (16:9)
   ================================================ */
.city-service-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  display: block;
  border-radius: 12px;
  margin: 12px 0 14px;
  background: #eef2f7;
}

/* ================================================
   AREAS — flexible grid (11 cities)
   ================================================ */
.areas-main{
  display:grid !important;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr)) !important;
  gap:12px;
  max-width:900px;
  margin:0 auto;
}
.areas-main .area-card{
  display:flex;align-items:center;justify-content:center;gap:8px;
  background:#fff;border:1px solid #dbeafe;border-radius:12px;
  padding:16px 12px;text-decoration:none;transition:all .2s;
  position:static;transform:none;
}
.areas-main .area-card:hover{
  background:#1565C0;border-color:#1565C0;transform:translateY(-3px);
  box-shadow:0 6px 20px rgba(21,101,192,.22);
}
.areas-main .area-card:hover .area-name{color:#fff}
.areas-main .area-card:hover .area-pin svg path{fill:#fff}
.areas-main .area-name{font-size:15px;font-weight:800;color:#0a1e3d;transition:color .2s}
.areas-main .area-pin{display:flex;align-items:center;flex-shrink:0}
@media(max-width:768px){
  .areas-main{grid-template-columns:repeat(auto-fit,minmax(140px,1fr));gap:10px}
  .areas-main .area-card{padding:14px 10px}
  .areas-main .area-name{font-size:14px}
}
@media(max-width:400px){
  .areas-main{grid-template-columns:1fr 1fr}
}
@media (max-width:768px){
  /* מובייל בלבד: הסרת יהוד מרשימת אזורי השירות בדף הבית לצורך אחידות עיצובית */
  .areas-main a[href="/plumber-yehud/"]{display:none !important}
}


/* ================================================================
   HOMEPAGE HERO — desktop
   ================================================================ */
.hero.hero--light{
  display:flex;align-items:center;justify-content:flex-start;
  min-height:min(780px,86vh);
  padding:0;position:relative;overflow:hidden;background:#fff;z-index:1;
}
.hero--light .hero-photo{position:absolute;inset:0;z-index:0;line-height:0;display:block}
.hero--light .hero-photo img{width:100%;height:100%;object-fit:cover;object-position:center;display:block}

.hero--light .hero-panel{
  position:relative;z-index:2;
  width:min(600px,50%);
  margin-inline-start:5.5vw;
  padding:150px 0 44px;                 /* 6 — title sits lower */
  text-align:right;display:flex;flex-direction:column;justify-content:center;
  background:transparent;
}

/* 6 — bigger title, sub matches its width */
.hero.hero--light .hero-title{
  font-size:clamp(2.05rem,3.5vw,3.2rem);
  font-weight:900;color:#0a2a4a;line-height:1.15;
  margin:0 0 15px;text-align:right;text-shadow:none;width:100%;
}
.hero.hero--light .hero-sub{
  font-size:clamp(1.05rem,1.45vw,1.35rem);
  color:#42597a;font-weight:500;line-height:1.55;
  margin:0 0 20px;text-align:right;width:100%;
}
.hero--light .hero-rule{display:block;width:86px;height:3px;background:#1565C0;border-radius:3px;margin:0 0 32px}

/* 7 — USPs: design 1, right-aligned, same width as everything else */
.hero--light .hero-usps{
  display:grid;grid-template-columns:repeat(3,1fr);gap:0;
  width:100%;margin:0 0 32px;
}
.hero--light .hero-usp{
  display:flex;flex-direction:column;align-items:center;text-align:center;
  padding:0 12px;position:relative;
}
.hero--light .hero-usp + .hero-usp::after{
  content:'';position:absolute;right:0;top:4px;bottom:4px;width:1px;background:#d3e0ee;
}
.hero--light .hero-usp-ic{
  width:54px;height:54px;border-radius:50%;
  display:flex;align-items:center;justify-content:center;margin-bottom:10px;color:#1565C0;
}
.hero--light .hero-usp-ic img{width:100%;height:100%;object-fit:contain;display:block}
.hero--light .hero-usp strong{font-size:14px;font-weight:800;color:#0a2a4a;margin-bottom:3px}
.hero--light .hero-usp em{font-size:11.5px;font-style:normal;color:#6b83a0;line-height:1.45}

/* 8 — buttons span the full text width */
.hero.hero--light .hero-cta-group{
  display:flex;gap:12px;width:100%;
  align-items:center;justify-content:flex-start;
  margin:0 0 16px;padding:0;position:static;flex-wrap:nowrap;
}
.hero--light .btn-hero-primary,
.hero--light .btn-hero-ghost{
  flex:1 1 0;
  display:inline-flex;align-items:center;justify-content:center;gap:9px;
  font-weight:800;font-size:1rem;padding:16px 12px;border-radius:10px;
  text-decoration:none;white-space:nowrap;transition:all .2s;
}
.hero--light .btn-hero-primary{background:#1565C0;color:#fff;border:none;box-shadow:0 6px 18px rgba(21,101,192,.28)}
.hero--light .btn-hero-primary:hover{background:#0d4f9e;transform:translateY(-2px)}
.hero--light .btn-hero-ghost{background:rgba(255,255,255,.92);color:#1565C0;border:1.5px solid #bcd6f2}
.hero--light .btn-hero-ghost:hover{background:#fff;border-color:#1565C0}

.hero.hero--light .hero-note{
  position:static;display:flex;align-items:center;gap:6px;flex-wrap:wrap;
  font-size:13px;font-weight:600;color:#6b83a0;margin:0;background:none;padding:0;
  justify-content:flex-start;width:100%;
}
.hero--light .hero-note a{color:#1565C0;font-weight:800;text-decoration:none}
.hero--light .hero-note a:hover{text-decoration:underline}

@media (max-width:1150px) and (min-width:769px){
  .hero--light .hero-panel{width:56%;margin-inline-start:3.5vw}
  .hero--light .hero-usp em{display:none}
}

/* ================================================================
   1-5 — HOMEPAGE NAV: transparent, 90px logo, hover-only underline
   ================================================================ */
@media (min-width:769px){
  header.home-nav{
    position:absolute !important;top:0;right:0;left:0;z-index:60;
    background:transparent !important;
    border-bottom:none !important;
    box-shadow:none !important;
  }
  header.home-nav .nav-desktop{border-bottom:none !important;background:transparent !important}
  header.home-nav .nav-inner{
    max-width:1240px !important;margin:12px auto 0 !important;
    height:104px !important;padding:0 30px !important;
    background:transparent !important;
    border:none !important;border-radius:0 !important;box-shadow:none !important;
  }
  header.home-nav .nav-logo img{height:90px !important;width:auto !important}

  header.home-nav .nav-menu a{
    color:#0a2a4a !important;font-weight:700 !important;font-size:15px !important;
    padding-bottom:8px !important;position:relative !important;
    background:none !important;border:none !important;
    text-decoration:none !important;
  }
  header.home-nav .nav-menu a:hover{color:#1565C0 !important}

  header.home-nav .nav-cta{
    background:#1565C0 !important;color:#fff !important;
    border-radius:999px !important;padding:13px 26px !important;
    font-size:14px !important;font-weight:800 !important;
    box-shadow:0 4px 14px rgba(21,101,192,.3) !important;
  }
  header.home-nav .nav-cta:hover{background:#0d4f9e !important}
}

/* ================================================================
   10-13 — HOMEPAGE HERO: mobile
   photo on top · title+sub over it · USPs below · buttons below
   ================================================================ */
@media (max-width:768px){
  .hero.hero--light{
    display:block !important;position:relative !important;
    min-height:auto !important;padding:0 !important;
    background:#fff !important;overflow:visible !important;
  }
  /* 10 — photo flows first and is never covered */
  .hero--light .hero-photo{position:static !important;width:100%;display:block}
  .hero--light .hero-photo img{width:100%;height:auto;object-fit:contain;display:block}

  .hero--light .hero-panel{
    position:static !important;width:100% !important;
    margin-inline-start:0 !important;
    padding:16px 18px 30px !important;
    background:transparent !important;
    text-align:center;align-items:center;
  }

  /* 11 — title + sub centered over the middle of the photo, uniform centered lines */
  .hero.hero--light .hero-title{
    position:absolute !important;z-index:3;
    top:48.5vw !important;right:6vw !important;left:auto !important;
    transform:none !important;
    width:72vw !important;max-width:360px !important;
    font-size:1.42rem !important;line-height:1.3 !important;
    text-align:right !important;margin:0 !important;
    text-shadow:0 1px 10px rgba(255,255,255,.9);
  }
  .hero.hero--light .hero-sub{
    position:absolute !important;z-index:3;
    top:75.5vw !important;right:6vw !important;left:auto !important;
    transform:none !important;
    width:68vw !important;max-width:340px !important;
    font-size:.9rem !important;line-height:1.55 !important;
    text-align:right !important;margin:0 !important;
    text-shadow:0 1px 10px rgba(255,255,255,.9);
  }
  .hero--light .hero-rule{
    position:absolute !important;z-index:3;
    top:56.5vw !important;right:6vw !important;left:auto !important;
    transform:none !important;
    width:54px !important;margin:0 !important;
  }

  /* 12 — USPs sit below the photo */
  .hero--light .hero-usps{width:100%;margin:4px 0 22px}
  .hero--light .hero-usp{padding:0 5px}
  .hero--light .hero-usp-ic{width:46px;height:46px;margin-bottom:7px}
  .hero--light .hero-usp strong{font-size:11.5px;line-height:1.3}
  .hero--light .hero-usp em{font-size:10px}

  /* 13 — buttons directly under the USPs, equal widths */
  .hero.hero--light .hero-cta-group{
    display:flex !important;flex-direction:row !important;flex-wrap:nowrap !important;
    gap:10px;width:100%;justify-content:center;margin:0 0 12px;
  }
  .hero--light .btn-hero-primary,
  .hero--light .btn-hero-ghost{flex:1 1 0;padding:14px 8px;font-size:.87rem;gap:6px}
  .hero.hero--light .hero-note{justify-content:center;text-align:center;font-size:12px}
}
@media (max-width:400px){
  .hero.hero--light .hero-title{font-size:1.22rem !important}
  .hero.hero--light .hero-sub{font-size:.8rem !important}
  .hero--light .hero-usp em{display:none}
  .hero--light .btn-hero-primary,
  .hero--light .btn-hero-ghost{font-size:.79rem;padding:13px 6px}
}

/* City page CTA — always side-by-side, desktop and mobile */
.city-cta-top .cta-buttons{
  display:flex !important;
  flex-direction:row !important;
  flex-wrap:nowrap !important;
  align-items:center !important;
  justify-content:center !important;
}
.city-cta-top .cta-buttons a{flex:0 1 auto;white-space:nowrap}
@media (max-width:768px){
  .city-cta-top .cta-buttons a{flex:1 1 0;padding:12px 10px;font-size:.82rem}
}
