/* ════════════════════════════════════════
   BRAND TOKENS
════════════════════════════════════════ */
:root {
  /* ── 3 Brand Colors ── */
  --brand:       #04304B;   /* כחול כהה ראשי */
  --brand-mid:   #0a5278;   /* כחול בינוני (hover/glow) */
  --brand-light: #1a7aad;   /* כחול בהיר (links) */
  --brand-dim:   rgba(180,191,200,0.22);

  --light1:      #F1F1F1;   /* אפור בהיר 1 - טקסט ראשי */
  --light2:      #B4BFC8;   /* אפור בהיר 2 - טקסט משני */

  /* ── Dark Backgrounds (navy-tinted toward #04304B) ── */
  --ink:        #010d16;
  --navy:       #011828;
  --navy-mid:   #022030;
  --navy-soft:  #032840;
  --slate:      #04304B;    /* = brand עצמו כרקע section */
  --slate-mid:  #053a58;
  --card:       #021620;

  /* ── Aliases ── */
  --cream:      #F1F1F1;
  --text-muted: #B4BFC8;
  --gray-100:   #F1F1F1;
  --gray-300:   #B4BFC8;
  --gray-400:   #8a9bab;
  --gray-500:   #5a7080;
  --gray-700:   #1a3448;
  --gray-800:   #021620;
  --gray-900:   #010c14;

  /* ── Borders → use light colors at low opacity ── */
  --border:      rgba(180,191,200,0.18);
  --border-blue: rgba(180,191,200,0.12);

  /* ── Glow ── */
  --blue-glow:  rgba(10,82,120,0.15);

  --font-display: 'Google Sans', 'Heebo', sans-serif;
  --font-body:    'Google Sans', 'Heebo', sans-serif;
}

/* ════════════════════════════════════════
   RESET
════════════════════════════════════════ */
*{margin:0;padding:0;box-sizing:border-box;}
html{scroll-behavior:smooth;}
body{
  background: var(--ink);
  color: var(--cream);
  font-family: var(--font-body);
  direction: rtl;
  overflow-x: hidden;
  line-height: 1.7;
}

/* ════════════════════════════════════════
   ADMIN BAR (top ribbon)
════════════════════════════════════════ */
#admin-bar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 9999;
  height: 40px;
  background: #010b14;
  border-bottom: 1px solid rgba(180,191,200,0.18);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 20px;
  font-size: .78rem;
  font-family: var(--font-body);
}
#admin-bar.hidden { display: none; }
.admin-bar-logo {
  color: var(--brand);
  font-weight: 700;
  letter-spacing: .08em;
  display: flex; align-items: center; gap: 8px;
}
.admin-bar-logo::before {
  content: '⚙';
  font-size: .9rem;
}
.admin-bar-actions { display: flex; gap: 8px; }
.ab-btn {
  padding: 4px 14px;
  border-radius: 2px;
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  border: none;
  letter-spacing: .04em;
  transition: all .15s;
}
.ab-btn-edit {
  background: var(--brand);
  color: #07090f;
}
.ab-btn-edit:hover { background: var(--brand-light); }
.ab-btn-save {
  background: #22c55e;
  color: #07090f;
}
.ab-btn-save:hover { background: #16a34a; }
.ab-btn-preview {
  background: transparent;
  color: var(--gray-300);
  border: 1px solid var(--gray-700);
}
.ab-btn-preview:hover { border-color: var(--brand); color: var(--brand); }

/* ════════════════════════════════════════
   ADMIN PANEL (sidebar)
════════════════════════════════════════ */
#admin-panel {
  position: fixed;
  top: 40px; left: 0;
  width: 380px;
  height: calc(100vh - 40px);
  background: #010d18;
  border-left: 1px solid rgba(10,82,120,0.28);
  z-index: 9998;
  overflow-y: auto;
  transform: translateX(-100%);
  transition: transform .3s cubic-bezier(.4,0,.2,1);
  font-size: .85rem;
}
#admin-panel.open { transform: translateX(0); }
body.admin-open { margin-right: 0; }

.panel-header {
  background: #031826;
  border-bottom: 1px solid rgba(10,82,120,0.28);
  padding: 20px;
  position: sticky; top: 0; z-index: 1;
}
.panel-header h2 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  color: var(--cream);
  margin-bottom: 4px;
}
.panel-header p { color: var(--text-muted); font-size: .78rem; }

.panel-tabs {
  display: flex;
  border-bottom: 1px solid rgba(180,191,200,0.14);
  background: #021420;
  position: sticky; top: 82px; z-index: 1;
}
.tab-btn {
  flex: 1;
  padding: 12px 8px;
  background: none;
  border: none;
  color: var(--text-muted);
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  border-bottom: 2px solid transparent;
  transition: all .2s;
}
.tab-btn.active {
  color: var(--brand-light);
  border-bottom-color: var(--brand-light);
  background: rgba(180,191,200,0.08);
}
.tab-btn:hover:not(.active) { color: var(--gray-100); }

.tab-content { display: none; padding: 20px; }
.tab-content.active { display: block; }

/* field groups */
.field-group {
  margin-bottom: 20px;
  background: #031a28;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  overflow: hidden;
}
.field-group-title {
  background: #042030;
  padding: 10px 14px;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .08em;
  color: var(--steel-light);
  text-transform: uppercase;
  display: flex; align-items: center; gap: 8px;
  cursor: pointer;
  user-select: none;
}
.field-group-title::after { content: '▾'; margin-right: auto; color: var(--text-muted); }
.field-group-title.collapsed::after { content: '▸'; }
.field-group-body { padding: 14px; }
.field-group-body.collapsed { display: none; }

.field {
  margin-bottom: 14px;
}
.field:last-child { margin-bottom: 0; }
.field label {
  display: block;
  font-size: .72rem;
  font-weight: 700;
  color: var(--gray-300);
  letter-spacing: .06em;
  margin-bottom: 5px;
  text-transform: uppercase;
}
.field input[type=text],
.field input[type=tel],
.field input[type=email],
.field input[type=url],
.field textarea,
.field select {
  width: 100%;
  background: #010e1a;
  border: 1px solid rgba(10,82,120,0.28);
  border-radius: 3px;
  padding: 9px 12px;
  color: var(--cream);
  font-family: var(--font-body);
  font-size: .85rem;
  direction: rtl;
  transition: border-color .2s, box-shadow .2s;
}
.field input:focus,
.field textarea:focus,
.field select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(180,191,200,0.12);
}
.field textarea { min-height: 80px; resize: vertical; }
.field input[type=color] {
  width: 100%; height: 36px;
  padding: 2px;
  background: #010e1a;
  border: 1px solid rgba(10,82,120,0.28);
  border-radius: 3px;
  cursor: pointer;
}
.field-row { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }

.image-picker {
  border: 2px dashed rgba(10,82,120,0.28);
  border-radius: 4px;
  padding: 16px;
  text-align: center;
  cursor: pointer;
  transition: border-color .2s;
}
.image-picker:hover { border-color: var(--brand); }
.image-picker-thumb {
  width: 100%; height: 80px;
  object-fit: cover;
  border-radius: 3px;
  margin-bottom: 8px;
  display: block;
}
.image-picker p {
  font-size: .75rem;
  color: var(--text-muted);
}
.image-picker input { display: none; }

.toggle-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid rgba(80,120,220,0.1);
}
.toggle-row:last-child { border-bottom: none; }
.toggle-row span { font-size: .82rem; color: var(--gray-100); }
.toggle {
  width: 36px; height: 20px;
  background: var(--gray-700);
  border-radius: 20px;
  position: relative;
  cursor: pointer;
  border: none;
  transition: background .2s;
}
.toggle.on { background: var(--brand); }
.toggle::after {
  content: '';
  position: absolute;
  top: 3px; right: 3px;
  width: 14px; height: 14px;
  background: white;
  border-radius: 50%;
  transition: right .2s;
}
.toggle.on::after { right: calc(100% - 17px); }

.badge-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.badge-item {
  display: flex;
  gap: 6px;
  align-items: center;
}
.badge-item input { flex: 1; }
.badge-item .del-btn {
  width: 26px; height: 26px;
  background: rgba(239,68,68,0.1);
  border: 1px solid rgba(239,68,68,0.2);
  border-radius: 3px;
  color: #f87171;
  cursor: pointer;
  font-size: .8rem;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.badge-item .del-btn:hover { background: rgba(239,68,68,0.2); }
.add-btn {
  width: 100%; margin-top: 8px;
  padding: 7px;
  background: rgba(46,107,230,0.1);
  border: 1px dashed var(--brand-dark);
  border-radius: 3px;
  color: var(--brand);
  font-size: .78rem;
  font-weight: 700;
  cursor: pointer;
  letter-spacing: .04em;
  transition: background .2s;
}
.add-btn:hover { background: rgba(10,82,120,0.28); }

.service-item {
  background: #010e1a;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.service-item summary {
  cursor: pointer;
  font-weight: 700;
  font-size: .82rem;
  color: var(--gray-100);
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.service-item summary::after { content: '▾'; color: var(--brand); }
.service-item[open] summary::after { content: '▴'; }
.service-inner { padding-top: 12px; }
.service-inner .field { margin-bottom: 10px; }

.stat-item-edit {
  background: #010e1a;
  border: 1px solid rgba(180,191,200,0.14);
  border-radius: 4px;
  padding: 12px;
  margin-bottom: 10px;
}
.stat-item-edit .field-row .field { margin: 0; }

/* save notification */
.save-toast {
  position: fixed;
  bottom: 30px; left: 50%;
  transform: translateX(-50%) translateY(100px);
  background: #22c55e;
  color: #07090f;
  padding: 12px 28px;
  border-radius: 4px;
  font-weight: 700;
  font-size: .9rem;
  z-index: 99999;
  transition: transform .3s ease;
}
.save-toast.show { transform: translateX(-50%) translateY(0); }

/* ════════════════════════════════════════
   MAIN SITE LAYOUT
════════════════════════════════════════ */
#site-wrap {
  transition: margin-right .3s;
}
body.admin-open #site-wrap {
  /* keep visible, just shifted */
}

/* ════════════════════════════════════════
   NAV
════════════════════════════════════════ */
.top-bar {
  position: fixed;
  left: 0; right: 0;
  z-index: 1000;
  top: 0;
  background: rgba(7,9,15,0.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--border);
  padding: 0 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: top .3s;
}
body.has-admin .top-bar { top: 40px; }
.logo {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--cream);
}
.logo span { color: var(--brand-light); }
nav { display: flex; gap: 32px; }
nav a {
  font-size: .87rem;
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 600;
  letter-spacing: .03em;
  transition: color .2s;
}
nav a:hover { color: var(--brand); }
.nav-cta {
  background: var(--brand);
  color: #ffffff !important;
  padding: 10px 22px;
  border-radius: 2px;
  font-weight: 700 !important;
  letter-spacing: .04em;
  border: 1px solid rgba(241,241,241,0.2);
}
.nav-cta:hover { background: var(--brand-mid) !important; color: #ffffff !important; border-color: rgba(241,241,241,0.4) !important; }

/* ════════════════════════════════════════
   HERO — DARK INK + BLUE GLOW
════════════════════════════════════════ */
.hero {
  min-height: 100vh;
  position: relative;
  display: grid;
  grid-template-columns: 55% 45%;
  align-items: stretch;
  overflow: hidden;
}
body.has-admin .hero { padding-top: 112px; }
.hero:not(.no-pad) { padding-top: 72px; }

.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 25% 45%, rgba(10,82,120,0.45) 0%, transparent 60%),
    radial-gradient(ellipse 45% 55% at 80% 65%, rgba(10,82,120,0.22) 0%, transparent 55%),
    radial-gradient(ellipse 30% 40% at 50% 0%, rgba(10,82,120,0.28) 0%, transparent 50%),
    linear-gradient(160deg, var(--ink) 0%, var(--navy) 40%, var(--navy-mid) 100%);
}
.hero-bg::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
/* diagonal split line */
.hero-bg::after {
  content: '';
  position: absolute;
  top: 0; bottom: 0;
  left: 55%;
  width: 1px;
  background: linear-gradient(to bottom, transparent 5%, var(--brand-dark) 30%, var(--brand-dark) 70%, transparent 95%);
  opacity: .35;
}

.hero-content {
  position: relative; z-index: 2;
  padding: 80px 60px 80px 40px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .75rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--brand); margin-bottom: 28px;
}
.eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--brand); }

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(3rem, 5vw, 5.5rem);
  font-weight: 900;
  line-height: 1.05;
  color: var(--cream);
  margin-bottom: 10px;
}
.hero-title .accent { color: var(--brand-light); }

.hero-sub {
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.5rem);
  font-weight: 300;
  color: var(--gray-300);
  margin-bottom: 40px;
  padding-right: 18px;
  border-right: 2px solid var(--brand);
}

.badges { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 44px; }
.badge {
  background: rgba(10,82,120,0.25);
  border: 1px solid var(--border-blue);
  border-radius: 2px;
  padding: 7px 14px;
  font-size: .8rem; font-weight: 600;
  color: var(--gray-100);
  display: flex; align-items: center; gap: 8px;
}
.badge::before { content: '◆'; color: var(--steel); font-size: .5rem; }

.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }

.btn-primary {
  background: var(--brand);
  color: #ffffff;
  padding: 15px 34px;
  border-radius: 2px;
  font-weight: 700; font-size: .97rem;
  text-decoration: none;
  letter-spacing: .05em;
  border: 1px solid rgba(241,241,241,0.2); cursor: pointer;
  transition: all .2s;
  display: inline-block;
}
.btn-primary:hover {
  background: var(--brand-mid);
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(10,82,120,0.5);
  border-color: rgba(241,241,241,0.35);
}
.btn-outline {
  border: 1px solid rgba(241,241,241,0.25);
  color: var(--light1);
  padding: 14px 28px;
  border-radius: 2px;
  font-weight: 600; font-size: .9rem;
  text-decoration: none;
  letter-spacing: .04em;
  transition: all .2s;
  display: inline-block;
}
.btn-outline:hover { border-color: var(--light1); color: var(--light1); background: rgba(241,241,241,0.06); }

/* HERO IMAGE SIDE */
.hero-image {
  position: relative; z-index: 2;
  overflow: hidden;
}
.hero-image img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  filter: grayscale(15%) contrast(1.05) brightness(0.9);
  display: block;
}
.hero-image::before {
  content: '';
  position: absolute; inset: 0; z-index: 1;
  background:
    linear-gradient(to right, rgba(7,9,15,0.7) 0%, transparent 35%),
    linear-gradient(to top, rgba(7,9,15,0.85) 0%, transparent 45%),
    linear-gradient(to bottom, rgba(7,9,15,0.3) 0%, transparent 25%);
}

.years-badge {
  position: absolute; bottom: 44px; left: 44px; z-index: 2;
  background: var(--brand);
  color: #ffffff;
  width: 96px; height: 96px;
  border-radius: 50%;
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  font-family: var(--font-display);
  font-weight: 900; line-height: 1.1;
  box-shadow: 0 0 50px rgba(10,82,120,0.45);
}
.years-badge .num { font-size: 2.1rem; }
.years-badge .lbl { font-size: .62rem; letter-spacing: .04em; font-weight: 600; }

/* ════════════════════════════════════════
   STATS STRIP — NAVY
════════════════════════════════════════ */
.stats-strip {
  background: var(--navy-mid);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 0;
}
.stats-inner {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(4,1fr);
}
.stat {
  text-align: center; padding: 44px 24px;
  border-left: 1px solid rgba(180,191,200,0.12);
  position: relative;
}
.stat:last-child { border-left: none; }
.stat-num {
  font-family: var(--font-display);
  font-size: clamp(2.2rem,3.5vw,3rem);
  font-weight: 900;
  color: var(--brand-light); line-height: 1;
  margin-bottom: 8px;
}
.stat-lbl { font-size: .84rem; color: var(--text-muted); font-weight: 600; }

/* ════════════════════════════════════════
   SECTION UTILITIES
════════════════════════════════════════ */
.section-label {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: .72rem; font-weight: 700;
  letter-spacing: .16em; text-transform: uppercase;
  color: var(--steel-light); margin-bottom: 16px;
}
.section-label::before { content: ''; width: 28px; height: 1px; background: var(--steel); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.8rem,3vw,2.8rem);
  font-weight: 700; line-height: 1.2;
  color: var(--cream); margin-bottom: 18px;
}
.section-title .accent { color: var(--brand-light); }
.section-text { color: var(--text-muted); font-size: .97rem; line-height: 1.85; margin-bottom: 28px; }

/* ════════════════════════════════════════
   CONTACT SECTION — SLATE/GRAY
════════════════════════════════════════ */
.contact-section {
  background: var(--slate);
  border-bottom: 1px solid var(--border);
  padding: 90px 60px;
}
.contact-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.1fr;
  gap: 70px; align-items: start;
}
.emergency-box {
  background: var(--navy-soft);
  border: 1px solid var(--border);
  border-right: 3px solid var(--brand);
  border-radius: 3px;
  padding: 26px;
  margin-top: 32px;
}
.emergency-box strong { color: var(--steel-light); display: block; font-size: .85rem; letter-spacing: .05em; margin-bottom: 8px; }
.emergency-box a {
  color: var(--cream);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 2.1rem; font-weight: 700;
  letter-spacing: .04em;
}
.emergency-box a:hover { color: var(--brand); }

/* contact form */
.cf-wrap {
  background: var(--card);
  border: 1px solid var(--border-blue);
  border-radius: 4px;
  padding: 44px;
}
.cf-wrap h3 {
  font-family: var(--font-display);
  font-size: 1.45rem; font-weight: 700;
  color: var(--cream); margin-bottom: 6px;
}
.cf-wrap > p { color: var(--text-muted); font-size: .86rem; margin-bottom: 28px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group label { font-size: .78rem; font-weight: 700; color: var(--text-muted); letter-spacing: .04em; }
.form-group input,
.form-group textarea,
.form-group select {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px; padding: 12px 16px;
  color: var(--cream); font-family: var(--font-body);
  font-size: .93rem; direction: rtl; width: 100%;
  transition: border-color .2s;
}
.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus { outline: none; border-color: var(--brand); }
.form-group textarea { min-height: 96px; resize: vertical; }
.submit-btn {
  width: 100%; background: var(--brand); color: #ffffff;
  border: 1px solid rgba(241,241,241,0.2); padding: 15px;
  font-family: var(--font-body); font-size: .97rem; font-weight: 700;
  border-radius: 2px; cursor: pointer; letter-spacing: .05em;
  transition: all .2s; margin-top: 6px;
}
.submit-btn:hover { background: var(--brand-mid); transform: translateY(-1px); box-shadow: 0 8px 24px rgba(10,82,120,0.45); border-color: rgba(241,241,241,0.35); }

/* ════════════════════════════════════════
   ABOUT — DARK NAVY
════════════════════════════════════════ */
.about-section {
  background: var(--navy);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.about-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1.3fr;
  gap: 80px; align-items: center;
}
.about-img-wrap {
  position: relative;
}
.about-img-wrap img {
  width: 100%; border-radius: 2px;
  filter: grayscale(15%); display: block;
}
.about-img-wrap::before {
  content: '';
  position: absolute; top: -20px; right: -20px;
  width: 60%; height: 60%;
  border: 1px solid var(--brand-dark); border-radius: 2px; opacity: .5;
}
.about-img-wrap::after {
  content: '';
  position: absolute; bottom: -20px; left: -20px;
  width: 50%; height: 50%;
  background: var(--blue-glow); border-radius: 2px;
}
.about-list { list-style: none; margin: 28px 0; display: flex; flex-direction: column; gap: 13px; }
.about-list li { display: flex; gap: 14px; align-items: flex-start; font-size: .95rem; color: var(--cream); }
.about-list li::before { content: '◆'; color: var(--steel); font-size: .5rem; margin-top: 8px; flex-shrink: 0; }

/* ════════════════════════════════════════
   SERVICES — INK (darkest)
════════════════════════════════════════ */
.services-section {
  background: var(--ink);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.services-header {
  max-width: 1200px; margin: 0 auto 56px;
  display: flex; justify-content: space-between; align-items: flex-end;
}
.services-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr);
  gap: 2px;
}
.svc-card {
  background: var(--gray-800);
  border: 1px solid transparent;
  padding: 38px 30px;
  position: relative; overflow: hidden;
  transition: all .3s;
}
.svc-card:hover {
  border-color: var(--border);
  transform: translateY(-4px);
  box-shadow: 0 20px 60px rgba(0,0,0,.45);
  background: var(--slate-mid);
}
.svc-card:hover::after { opacity: 1; }
.svc-card::after {
  content: '';
  position: absolute; bottom: 0; right: 0; left: 0; height: 2px;
  background: linear-gradient(to right, transparent, var(--light2), transparent);
  opacity: 0; transition: opacity .3s;
}
.svc-icon { font-size: 1.9rem; margin-bottom: 20px; display: block; }
.svc-card h3 {
  font-family: var(--font-display); font-size: 1.15rem; font-weight: 700;
  color: var(--cream); margin-bottom: 12px;
}
.svc-card p { font-size: .87rem; color: var(--text-muted); line-height: 1.72; }
.svc-link {
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 18px; font-size: .8rem; font-weight: 700;
  color: var(--brand-light); text-decoration: none; letter-spacing: .04em;
}
.svc-link::after { content: '←'; }
.svc-link:hover { color: var(--brand-light); }

/* ════════════════════════════════════════
   PROCESS — SLATE-MID
════════════════════════════════════════ */
.process-section {
  background: var(--slate-mid);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.process-center { max-width: 1200px; margin: 0 auto; }
.process-head { text-align: center; margin-bottom: 60px; }
.steps {
  display: grid; grid-template-columns: repeat(5,1fr); gap: 0;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute;
  top: 27px; right: 8%; left: 8%; height: 1px;
  background: linear-gradient(to left, transparent, var(--brand-dark), transparent);
  opacity: .35;
}
.step { text-align: center; padding: 0 14px; position: relative; }
.step-n {
  width: 54px; height: 54px;
  background: var(--navy-mid);
  border: 1px solid var(--border);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 1.1rem; font-weight: 700;
  color: var(--brand-light); position: relative; z-index: 1;
}
.step-title { font-weight: 700; font-size: .92rem; color: var(--cream); margin-bottom: 8px; }
.step-desc { font-size: .78rem; color: var(--text-muted); line-height: 1.65; }

/* ════════════════════════════════════════
   TESTIMONIALS — NAVY-MID
════════════════════════════════════════ */
.testimonials-section {
  background: var(--navy-mid);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.testi-header { max-width: 1200px; margin: 0 auto 56px; }
.testi-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 20px;
}
.testi-card {
  background: var(--slate);
  border: 1px solid var(--border);
  border-radius: 4px; padding: 36px;
  position: relative; transition: transform .3s;
}
.testi-card:hover { transform: translateY(-4px); }
.testi-card::before {
  content: '"';
  position: absolute; top: -8px; right: 22px;
  font-family: var(--font-display);
  font-size: 4.5rem; color: var(--brand-light); opacity: .25; line-height: 1;
}
.stars { color: var(--brand-light); font-size: .82rem; margin-bottom: 14px; letter-spacing: 3px; }
.testi-text { font-size: .9rem; color: var(--cream); line-height: 1.82; margin-bottom: 22px; font-style: italic; }
.testi-author { font-weight: 700; font-size: .86rem; color: var(--brand-light); }
.testi-role { font-size: .78rem; color: var(--text-muted); margin-top: 3px; }

/* ════════════════════════════════════════
   FAQ — GRAY-800
════════════════════════════════════════ */
.faq-section {
  background: var(--gray-800);
  border-bottom: 1px solid var(--border);
  padding: 100px 60px;
}
.faq-inner { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-q {
  width: 100%; background: none; border: none;
  text-align: right; padding: 22px 0; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 14px;
  font-family: var(--font-body); font-size: .98rem; font-weight: 700;
  color: var(--cream); transition: color .2s;
}
.faq-q:hover { color: var(--brand); }
.faq-ic {
  width: 24px; height: 24px;
  border: 1px solid var(--border); border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: .68rem; color: var(--brand); flex-shrink: 0;
  transition: all .2s;
}
.faq-item.open .faq-ic { background: var(--brand); color: #ffffff; transform: rotate(45deg); }
.faq-a { display: none; padding-bottom: 22px; font-size: .92rem; color: var(--text-muted); line-height: 1.82; }
.faq-item.open .faq-a { display: block; }

/* ════════════════════════════════════════
   FOOTER — INK
════════════════════════════════════════ */
footer {
  background: var(--ink);
  border-top: 1px solid var(--border);
  padding: 68px 60px 30px;
}
.footer-grid {
  max-width: 1200px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px; margin-bottom: 48px;
}
.footer-brand .logo { font-size: 1.45rem; margin-bottom: 14px; display: block; }
.footer-brand p { color: var(--text-muted); font-size: .87rem; line-height: 1.7; margin-bottom: 22px; }
.footer-col h4 { font-size: .72rem; font-weight: 700; letter-spacing: .12em; color: var(--steel-light); text-transform: uppercase; margin-bottom: 18px; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 9px; }
.footer-col a { color: var(--text-muted); text-decoration: none; font-size: .87rem; transition: color .2s; }
.footer-col a:hover { color: var(--cream); }
.footer-bottom {
  max-width: 1200px; margin: 0 auto;
  padding-top: 22px; border-top: 1px solid var(--border);
  display: flex; justify-content: space-between; align-items: center;
  font-size: .78rem; color: var(--text-muted);
}

/* whatsapp float */
.wa-float {
  position: fixed; bottom: 28px; left: 28px; z-index: 997;
  width: 54px; height: 54px; background: #25d366; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 20px rgba(37,211,102,.4); text-decoration: none;
  transition: transform .2s;
}
.wa-float:hover { transform: scale(1.1); }
.wa-float svg { width: 26px; height: 26px; fill: white; }

/* editable highlight */
[data-editable]:hover {
  outline: 2px dashed rgba(180,191,200,0.25);
  outline-offset: 3px;
  cursor: text;
}
body:not(.edit-mode) [data-editable]:hover { outline: none; cursor: inherit; }

/* ════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════ */
@media(max-width:1100px){
  .hero{grid-template-columns:1fr;}
  .hero-image{display:none;}
  .about-grid{grid-template-columns:1fr;}
  .services-grid{grid-template-columns:repeat(2,1fr);}
  .stats-inner{grid-template-columns:repeat(2,1fr);}
  .steps{grid-template-columns:repeat(2,1fr);}
  .steps::before{display:none;}
  .testi-grid{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr 1fr;}
  .contact-grid{grid-template-columns:1fr;}
}
@media(max-width:768px){
  .top-bar{padding:0 20px;}
  nav{display:none;}
  .hero-content,.contact-section,.about-section,.services-section,
  .process-section,.testimonials-section,.faq-section,footer{padding-left:22px;padding-right:22px;}
  .services-grid{grid-template-columns:1fr;}
  .form-row{grid-template-columns:1fr;}
  .footer-grid{grid-template-columns:1fr;}
  .footer-bottom{flex-direction:column;gap:8px;text-align:center;}
  .services-header{flex-direction:column;gap:16px;align-items:flex-start;}
  #admin-panel{width:100%;}
}

/* animation */
@keyframes fadeUp{from{opacity:0;transform:translateY(28px);}to{opacity:1;transform:translateY(0);}}
.hero-content>*{animation:fadeUp .8s ease both;}
.eyebrow{animation-delay:.1s;}
.hero-title{animation-delay:.2s;}
.hero-sub{animation-delay:.3s;}
.badges{animation-delay:.4s;}
.hero-cta{animation-delay:.5s;}

/* ════════════════════════════════════════
   HERO LOGO (above heading)
════════════════════════════════════════ */

/* ═══════════════════════════════════════════
   GLOBAL SVG RESET
═══════════════════════════════════════════ */
svg { overflow: visible; }
button svg, a svg, span svg { display:block; flex-shrink:0; }

/* ═══════════════════════════════════════════
   SITE HEADER — 2 rows
   Row 1: logo (right) | phone (left)
   Row 2: nav menu | WA button
═══════════════════════════════════════════ */
.site-header {
  position: fixed;
  top: 0; right: 0; left: 0;
  z-index: 9000;
  background: rgba(1,13,22,.96);
  backdrop-filter: blur(10px);
  direction: rtl;
  box-shadow: 0 2px 20px rgba(0,0,0,.35);
}
.site-header * { box-sizing: border-box; }

/* ── Row 1 ── */
.header-top {
  border-bottom: 1px solid rgba(180,191,200,0.08);
}
.header-top-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 12px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

/* Logo */
.header-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.header-logo img {
  display: block;
  height: 50px;
  width: auto;
  max-width: 170px;
  object-fit: contain;
}
.header-logo-text {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  line-height: 1.1;
}
.header-logo-text strong {
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--cream);
}
.header-logo-text em {
  font-style: normal;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--brand-light);
}
.header-logo-text small {
  font-size: .65rem;
  color: var(--text-muted);
  letter-spacing: .08em;
}

/* Phone */
.header-phone-wrap { display:flex; flex-direction:column; gap:2px; }
.header-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1.3rem;
  font-weight: 800;
  color: var(--cream);
  text-decoration: none;
  direction: ltr;
}
.header-phone svg {
  width: 17px !important;
  height: 17px !important;
  stroke: var(--brand-light);
  fill: none;
  flex-shrink: 0;
}
.header-phone:hover { color: var(--brand-light); }
.header-tagline { font-size: .7rem; color: var(--text-muted); padding-right: 24px; }

/* ── Row 2 ── */
.header-nav-bar { background: rgba(2,20,32,0.7); backdrop-filter: blur(8px); }
.header-nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  min-height: 50px;
}

/* Nav links */
.main-nav-links {
  display: flex;
  list-style: none;
  margin: 0; padding: 0;
  gap: 0;
  flex: 1;
  align-items: center;
  min-width: 0;
}
.main-nav-links > li { position: relative; }
.main-nav-links > li > a {
  display: block;
  padding: 13px 13px;
  font-size: .87rem;
  font-weight: 500;
  color: var(--text-muted);
  text-decoration: none;
  white-space: nowrap;
  transition: color .2s;
}
.main-nav-links > li > a:hover,
.main-nav-links > li.current-menu-item > a { color: var(--cream); }

/* WA button in nav */
.header-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: #25D366;
  color: #fff;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 3px;
  font-size: .82rem;
  font-weight: 700;
  white-space: nowrap;
  flex-shrink: 0;
}
.header-wa-btn svg {
  width: 15px !important;
  height: 15px !important;
  fill: #fff !important;
  flex-shrink: 0;
}
.header-wa-btn:hover { background: #1db954; color: #fff; }

/* Mobile hamburger */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display:block; width:22px; height:2px; background:var(--cream); border-radius:2px; }

@media (max-width: 900px) {
  .header-top-inner { padding: 10px 16px; gap: 12px; }
  .header-nav-inner { padding: 0 16px; position: relative; min-height: 56px; }
  .header-logo img { max-width: 140px; max-height: 44px; height: auto; }
  .header-phone-wrap { min-width: 0; }
  .header-phone { font-size: 1rem; }
  .header-tagline { display: none; }
  .header-wa-btn { order: 1; padding: 8px 10px; }
  .nav-toggle { display: flex !important; order: 2; margin-right: auto; }
  .main-nav-links {
    display: none;
    position: absolute;
    top: calc(100% + 1px); right: 16px; left: 16px;
    background: rgba(2,20,32,.98);
    flex-direction: column;
    align-items: stretch;
    border: 1px solid rgba(180,191,200,0.1);
    border-radius: 10px;
    box-shadow: 0 16px 40px rgba(0,0,0,.45);
    overflow: hidden;
    z-index: 999;
  }
  .main-nav-links.open { display: flex !important; }
  .main-nav-links > li > a { padding: 12px 18px; border-bottom: 1px solid rgba(180,191,200,0.08); }
  .main-nav-links > li:last-child > a { border-bottom: 0; }
}

/* ═══════════════════════════════════════════
   HERO2 — full-screen bg photo
═══════════════════════════════════════════ */
.hero2 {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  padding-top: 128px;
  overflow: hidden;
}
.hero2-photo {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}
.hero2-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(to left,  rgba(1,13,22,0.85) 38%, rgba(1,13,22,0.35) 70%, rgba(1,13,22,0.1) 100%),
    linear-gradient(to top,   rgba(1,13,22,0.97) 0%,  transparent 40%);
}
.hero2-inner {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 48px 40px 36px;
}
.hero2-content { max-width: 540px; width: 100%; }

.hero2-title {
  font-size: clamp(2.2rem, 4vw, 3.8rem);
  font-weight: 800;
  color: var(--cream);
  line-height: 1.1;
  margin-bottom: 14px;
}
.hero2-sub {
  font-size: clamp(.9rem, 1.5vw, 1.1rem);
  color: var(--gray-300);
  line-height: 1.7;
  margin-bottom: 24px;
  padding-right: 14px;
  border-right: 2px solid var(--brand-light);
}
.hero2-bullets {
  list-style: none;
  padding: 0; margin: 0 0 30px;
  display: flex; flex-direction: column; gap: 8px;
}
.hero2-bullets li {
  display: flex; align-items: baseline; gap: 9px;
  font-size: .88rem; color: var(--gray-100); line-height: 1.5;
}
.hero2-bullets li::before { content: '◆'; color: var(--brand-light); font-size: .45rem; flex-shrink:0; margin-top:5px; }

.hero2-cta { display: flex; gap: 10px; flex-wrap: wrap; align-items: center; }

.hero2-btn-phone {
  display: inline-flex; align-items: center; gap: 7px;
  background: var(--brand); color: #fff;
  text-decoration: none; padding: 12px 22px;
  border-radius: 3px; font-size: 1rem; font-weight: 800;
  direction: ltr; transition: background .2s;
  border: 1px solid rgba(255,255,255,.15);
}
.hero2-btn-phone:hover { background: var(--brand-mid); color:#fff; }
.hero2-btn-phone svg { width:16px!important; height:16px!important; stroke:#fff; fill:none; flex-shrink:0; }

.hero2-btn-wa {
  display: inline-flex; align-items: center; gap: 7px;
  background: #25D366; color: #fff;
  text-decoration: none; padding: 12px 20px;
  border-radius: 3px; font-size: .88rem; font-weight: 700;
  transition: background .2s;
}
.hero2-btn-wa:hover { background: #1db954; color:#fff; }
.hero2-btn-wa svg { width:16px!important; height:16px!important; fill:#fff!important; stroke:none!important; flex-shrink:0; }

/* Form bar */
.hero2-form-bar {
  position: relative; z-index: 3;
  background: rgba(4,48,75,0.92);
  backdrop-filter: blur(10px);
  border-top: 1px solid rgba(180,191,200,0.12);
  padding: 18px 0;
}
.hero2-form-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 40px;
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
}
.hero2-form-title { display:flex; flex-direction:column; gap:3px; flex-shrink:0; white-space:nowrap; }
.hero2-form-title strong { color:var(--cream); font-size:.92rem; font-weight:700; }
.hero2-form-title span { color:var(--brand-light); font-size:.88rem; font-weight:700; direction:ltr; display:block; }
.hero2-form {
  display: flex; gap: 8px; flex: 1;
  flex-wrap: nowrap; align-items: center;
}
.hero2-form input,
.hero2-form select {
  flex:1; min-width:90px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(180,191,200,0.18);
  border-radius: 3px;
  color: var(--cream); padding: 9px 12px;
  font-family: var(--font-body); font-size:.84rem;
}
.hero2-form input:focus, .hero2-form select:focus { border-color: var(--brand-light); outline:none; }
.hero2-form input::placeholder { color:var(--text-muted); }
.hero2-form select option { background:var(--navy); color:var(--cream); }
.hero2-form button {
  background: var(--brand); color:#fff; border:none;
  padding: 9px 20px; border-radius:3px;
  font-family:var(--font-body); font-size:.86rem; font-weight:700;
  cursor:pointer; white-space:nowrap; flex-shrink:0; transition:background .2s;
}
.hero2-form button:hover { background: var(--brand-mid); }

@media (max-width:900px) {
  .hero2 { padding-top: 142px; min-height: auto; }
  .hero2-inner { justify-content:center; padding:36px 20px 28px; min-height: 72vh; }
  .hero2-content { max-width:100%; }
  .hero2-title { font-size: clamp(1.9rem, 8vw, 2.8rem); }
  .hero2-sub { font-size: 1rem; }
  .hero2-overlay {
    background: linear-gradient(to bottom, rgba(1,13,22,0.55) 0%, rgba(1,13,22,0.9) 100%);
  }
  .hero2-form { flex-wrap:wrap; }
  .hero2-form input, .hero2-form select, .hero2-form button { width: 100%; flex: 1 1 100%; }
  .hero2-form-inner { flex-direction:column; align-items:stretch; padding:0 20px; gap:12px; }
  .hero2-form-title { white-space:normal; }
}

/* ═══════════════════════════════════════════
   FOOTER — 4 columns
═══════════════════════════════════════════ */
.footer-inner {
  max-width: 1200px; margin: 0 auto;
  padding: 56px 32px 40px;
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px 32px;
  align-items: start;
}
.footer-brand .header-logo img { height:34px!important; opacity:.82; margin-bottom:14px; }
.footer-brand .footer-logo { font-size:1.1rem; margin-bottom:12px; display:block; }
.footer-brand p { color:var(--text-muted); font-size:.83rem; line-height:1.65; margin-bottom:18px; }
.footer-col h4 {
  font-size:.68rem; font-weight:700; letter-spacing:.12em;
  color:var(--light2); text-transform:uppercase;
  margin-bottom:14px; padding-bottom:8px;
  border-bottom:1px solid rgba(180,191,200,0.1);
}
.footer-col ul { list-style:none; padding:0; margin:0; }
.footer-col ul li { margin-bottom:7px; }
.footer-col ul li a { color:var(--text-muted); text-decoration:none; font-size:.83rem; transition:color .2s; }
.footer-col ul li a:hover { color:var(--cream); }
.footer-col ul li:not(:has(a)) { color:var(--text-muted); font-size:.83rem; }
@media (max-width:900px) {
  .footer-inner { grid-template-columns:1fr 1fr; gap:28px 20px; }
  .footer-brand { grid-column:1/-1; }
}
@media (max-width:480px) { .footer-inner { grid-template-columns:1fr; } }

/* ═══════════════════════════════════════════
   WA FLOAT BUTTON
═══════════════════════════════════════════ */
.wa-float {
  position:fixed; bottom:20px; left:16px; z-index:9990;
  display:inline-flex; align-items:center; gap:6px;
  background:#25D366; color:#fff;
  text-decoration:none; padding:8px 14px 8px 10px;
  border-radius:40px; font-size:.8rem; font-weight:700;
  box-shadow:0 3px 14px rgba(37,211,102,.45);
  white-space:nowrap; max-width:160px; overflow:hidden;
  direction:ltr; transition:transform .2s, box-shadow .2s;
}
.wa-float:hover { transform:translateY(-2px); box-shadow:0 6px 22px rgba(37,211,102,.6); color:#fff; }
.wa-float svg { width:16px!important; height:16px!important; fill:#fff!important; flex-shrink:0; }
.wa-float span { overflow:hidden; text-overflow:ellipsis; white-space:nowrap; }

/* ═══════════════════════════════════════════
   WA DIRECT IN FORM
═══════════════════════════════════════════ */
.wa-form-divider {
  display:flex; align-items:center; gap:12px;
  margin:14px 0; color:var(--text-muted); font-size:.78rem;
}
.wa-form-divider::before,.wa-form-divider::after {
  content:''; flex:1; height:1px; background:rgba(180,191,200,0.12);
}
.wa-direct-btn {
  display:flex!important; align-items:center!important; justify-content:center!important;
  gap:7px!important; width:100%!important; padding:11px 16px!important;
  background:#25D366!important; color:#fff!important;
  border-radius:3px!important; font-weight:700!important; font-size:.88rem!important;
  text-decoration:none!important;
}
.wa-direct-btn:hover { background:#1db954!important; }
.wa-direct-btn svg { width:17px!important; height:17px!important; fill:#fff!important; flex-shrink:0!important; }

/* ═══════════════════════════════════════════
   STEPS ROW — one horizontal line
═══════════════════════════════════════════ */
.steps-row {
  display: flex !important;
  flex-direction: row !important;
  flex-wrap: nowrap !important;
  overflow-x: auto !important;
  scrollbar-width: none;
  gap: 0 !important;
}
.steps-row::-webkit-scrollbar { display:none; }
.steps-row .step { flex:1 0 0 !important; min-width:110px !important; padding:16px 10px 14px !important; text-align:center; }
.steps-row .step-n { width:40px!important; height:40px!important; font-size:.9rem!important; margin:0 auto 10px!important; }
.steps-row .step-title { font-size:.76rem!important; }
.steps-row .step-desc { font-size:.68rem!important; line-height:1.4; }
.step-arrow { align-self:flex-start!important; padding-top:18px!important; color:var(--light2); font-size:.85rem; opacity:.3; flex-shrink:0; }

/* ═══════════════════════════════════════════
   HERO LOGO (in hero section)
═══════════════════════════════════════════ */
.hero-logo-wrap { margin-bottom:16px; }
.hero-logo-wrap img { height:54px; width:auto; max-width:180px; object-fit:contain; display:block; filter:brightness(0) invert(1); opacity:.9; }

/* hide old nav */
.top-nav { display:none !important; }

/* HTML overflow */
html,body { overflow-x:hidden; max-width:100vw; }


/* === v1.0.3 targeted hero/header/footer layout fixes === */
.header-top-inner {
  direction: rtl;
}
.header-logo {
  order: 1;
  margin-left: 0;
}
.header-phone-wrap {
  order: 2;
  margin-right: auto;
  align-items: flex-start;
}

.hero2 {
  background: linear-gradient(135deg, #071522 0%, #0c2235 100%);
  min-height: auto;
  padding-top: 146px;
}
.hero2-inner {
  display: grid;
  grid-template-columns: minmax(320px, 470px) minmax(320px, 560px);
  align-items: center;
  gap: clamp(28px, 4vw, 56px);
  justify-content: center;
  max-width: 1180px;
  padding: 44px 40px 36px;
}
.hero2-media {
  grid-column: 1;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  width: 100%;
}
.hero2-photo-img {
  display: block;
  width: min(100%, 470px);
  aspect-ratio: 4 / 5;
  height: auto;
  max-height: 580px;
  object-fit: cover;
  object-position: center top;
  border-radius: 22px;
  box-shadow: 0 24px 70px rgba(0,0,0,.38);
  border: 1px solid rgba(255,255,255,.08);
}
.hero2-content {
  grid-column: 2;
  max-width: 560px;
  width: 100%;
  justify-self: start;
  text-align: right;
}
.hero2-title {
  margin-bottom: 18px;
}
.hero2-sub {
  max-width: 44ch;
  margin-bottom: 22px;
}
.hero2-bullets {
  max-width: 46ch;
}
.hero2-bullets li {
  align-items: flex-start;
}
.hero2-form-bar {
  background: rgba(4,48,75,0.96);
}

.footer-brand .nav-logo {
  display: inline-flex;
  align-items: center;
  max-width: 180px;
  margin-bottom: 14px;
}
.footer-brand .nav-logo img {
  display: block;
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 54px;
  object-fit: contain;
}

@media (max-width: 1100px) {
  .hero2-inner {
    grid-template-columns: minmax(280px, 420px) minmax(320px, 1fr);
    gap: 28px;
    padding: 38px 28px 32px;
  }
  .hero2-content {
    max-width: 500px;
  }
  .hero2-title {
    font-size: clamp(2rem, 3.3vw, 3.2rem);
  }
}

@media (max-width: 900px) {
  .header-logo { order: 1; }
  .header-phone-wrap {
    order: 2;
    margin-right: 0;
    align-items: flex-start;
  }
  .hero2 {
    padding-top: 142px;
  }
  .hero2-inner {
    grid-template-columns: 1fr;
    gap: 24px;
    padding: 34px 20px 30px;
  }
  .hero2-content {
    grid-column: auto;
    max-width: 100%;
    justify-self: stretch;
    order: 1;
  }
  .hero2-media {
    grid-column: auto;
    order: 2;
    justify-content: center;
  }
  .hero2-photo-img {
    max-width: 320px;
    width: min(100%, 320px);
    max-height: none;
  }
}


/* === v1.0.4 header + hero proportion refinements === */
.site-header { background: rgba(1,13,22,.94); }
.header-top { border-bottom: 1px solid rgba(180,191,200,0.06); }
.header-top-inner {
  max-width: 1240px;
  padding: 10px 28px 8px;
  min-height: 68px;
  gap: 18px;
}
.header-logo img { height: 44px; max-width: 160px; }
.header-phone { font-size: 1.08rem; font-weight: 700; }
.header-tagline { font-size: .72rem; opacity: .9; }
.header-nav-bar { background: rgba(2,20,32,.82); }
.header-nav-inner {
  max-width: 1240px;
  min-height: 46px;
  padding: 0 28px;
}
.main-nav-links { justify-content: center; }
.main-nav-links > li > a {
  padding: 12px 14px;
  font-size: .9rem;
}
.header-wa-btn { padding: 8px 14px; font-size: .8rem; }

.hero2 {
  padding-top: 118px;
  background: linear-gradient(180deg, #071522 0%, #091a29 100%);
}
.hero2-inner {
  max-width: 1240px;
  grid-template-columns: minmax(300px, 480px) minmax(380px, 560px);
  gap: clamp(34px, 4vw, 70px);
  padding: 34px 28px 26px;
  align-items: center;
}
.hero2-media { justify-content: flex-start; }
.hero2-photo-img {
  width: min(100%, 430px);
  max-height: 520px;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
}
.hero2-content {
  max-width: 540px;
  padding-top: 6px;
}
.hero2-title {
  font-size: clamp(2.2rem, 3.8vw, 3.7rem);
  margin-bottom: 14px;
}
.hero2-sub {
  max-width: 46ch;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 18px;
}
.hero2-bullets { gap: 10px; margin-bottom: 26px; }
.hero2-bullets li { font-size: .95rem; line-height: 1.6; }
.hero2-cta { gap: 12px; }
.hero2-btn-phone, .hero2-btn-wa { min-height: 46px; }

.hero2-form-bar {
  padding: 14px 0 18px;
  background: transparent;
  border-top: 0;
}
.hero2-form-inner {
  max-width: 1240px;
  padding: 0 28px;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(0,0,0,.18);
  padding-top: 18px;
  padding-bottom: 18px;
}
.hero2-form-title strong { font-size: 1rem; }
.hero2-form-title span { color: var(--text-muted); font-size: .84rem; direction: rtl; }
.hero2-form { gap: 10px; }
.hero2-form input,
.hero2-form select {
  min-height: 46px;
  background: rgba(255,255,255,.06);
  border-radius: 10px;
  font-size: .9rem;
}
.hero2-form button {
  min-height: 46px;
  border-radius: 10px;
  padding: 10px 18px;
}

@media (max-width: 1100px) {
  .hero2 { padding-top: 116px; }
  .hero2-inner {
    grid-template-columns: minmax(280px, 390px) minmax(320px, 1fr);
    gap: 28px;
    padding: 30px 24px 24px;
  }
  .hero2-photo-img { width: min(100%, 360px); max-height: 470px; }
}

@media (max-width: 900px) {
  .header-top-inner { padding: 10px 16px 8px; min-height: 62px; }
  .header-logo img { height: 38px; max-width: 138px; }
  .header-phone { font-size: .96rem; }
  .header-nav-inner { padding: 0 16px; min-height: 52px; }
  .hero2 { padding-top: 128px; }
  .hero2-inner {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px 18px;
  }
  .hero2-content { order: 1; max-width: 100%; }
  .hero2-media { order: 2; justify-content: center; }
  .hero2-photo-img { width: min(100%, 320px); max-height: none; }
  .hero2-form-inner { padding: 16px; gap: 12px; }
}


/* === v1.0.5 hero organization fix === */
.hero2 {
  padding-top: 116px;
}
.hero2-inner {
  direction: ltr;
  grid-template-columns: minmax(360px, 520px) minmax(320px, 500px);
  gap: clamp(32px, 4vw, 72px);
  align-items: center;
  padding: 34px 28px 18px;
}
.hero2-media {
  grid-column: 1;
  justify-content: flex-start;
}
.hero2-content {
  grid-column: 2;
  direction: rtl;
  text-align: right;
  justify-self: stretch;
  max-width: 500px;
}
.hero2-photo-img {
  width: min(100%, 500px);
  max-height: 620px;
  aspect-ratio: 4 / 4.8;
  object-position: center top;
  border-radius: 20px;
}
.hero2-title {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
  line-height: 1.04;
  margin-bottom: 16px;
}
.hero2-sub {
  max-width: 42ch;
  margin-bottom: 20px;
}
.hero2-bullets {
  max-width: 43ch;
  gap: 9px;
  margin-bottom: 24px;
}
.hero2-cta {
  margin-top: 2px;
}
.hero2-form-bar {
  padding: 10px 0 26px;
}
.hero2-form-inner {
  max-width: 1120px;
  gap: 14px 16px;
  align-items: center;
}
.hero2-form-title {
  min-width: 220px;
}
.hero2-form {
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 1fr) minmax(170px, 1fr) auto;
  gap: 10px;
  width: 100%;
  align-items: center;
}
.hero2-form input,
.hero2-form select,
.hero2-form button {
  width: 100%;
}
@media (max-width: 1100px) {
  .hero2-inner {
    grid-template-columns: minmax(300px, 430px) minmax(300px, 1fr);
    gap: 26px;
  }
  .hero2-photo-img {
    width: min(100%, 420px);
    max-height: 540px;
  }
  .hero2-title {
    font-size: clamp(2.1rem, 3.6vw, 3.5rem);
  }
  .hero2-form {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 900px) {
  .hero2 {
    padding-top: 126px;
  }
  .hero2-inner {
    direction: rtl;
    grid-template-columns: 1fr;
    padding: 20px 18px 12px;
  }
  .hero2-content {
    grid-column: auto;
    order: 1;
    max-width: 100%;
  }
  .hero2-media {
    grid-column: auto;
    order: 2;
    justify-content: center;
  }
  .hero2-photo-img {
    width: min(100%, 340px);
    max-height: none;
  }
  .hero2-form-inner {
    padding: 16px;
    align-items: stretch;
  }
  .hero2-form-title {
    min-width: 0;
  }
  .hero2-form {
    grid-template-columns: 1fr;
  }
}
