:root {
  --navy: #003366;
  --navyDark: #002244;
  --green: #1a6b2a;
  --greenDark: #145520;
  --gold: #FFD700;
  --goldDark: #b8860b;
  --bg: #f6f8fb;
  --white: #ffffff;
  --text: #0f172a;
  --muted: #5b6476;
  --border: #e6ebf2;
  --shadow: 0 2px 12px rgba(0,0,0,.08);
  --shadow2: 0 8px 32px rgba(0,0,0,.13);
  --radius: 16px;
}

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

html { scroll-behavior: smooth; }

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

/* ── TYPOGRAPHY ── */
h1, h2, h3, h4 { font-weight: 900; line-height: 1.25; }
p { color: var(--muted); }
a { color: var(--green); text-decoration: none; font-weight: 700; }
a:hover { text-decoration: underline; }

/* ── LAYOUT ── */
.container { width: min(1100px, calc(100% - 32px)); margin: 0 auto; }
.section { padding: 72px 0; }
.section-title { font-size: clamp(1.6em, 3vw, 2.2em); color: var(--navy); text-align: center; margin-bottom: 10px; }
.section-sub { text-align: center; color: var(--muted); font-size: 1.05em; margin-bottom: 40px; }

/* ── HEADER ── */
.site-header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 9999;
  box-shadow: 0 3px 12px rgba(0,0,0,.10);
}
.header-top {
  background: var(--navy);
  padding: 14px 0;
  text-align: center;
}
.header-nav {
  background: #fff;
  border-bottom: 1px solid var(--border);
}
.logo-wrap { display: inline-flex; justify-content: center; text-decoration: none; }
.logo-frame {
  display: inline-block;
  background: #fff;
  border-radius: 14px;
  padding: 8px 28px;
  line-height: 0;
  position: relative;
  overflow: hidden;
  border: 3px solid var(--gold);
  animation: logoPulse 2.5s ease-in-out infinite;
}
.logo-frame::before {
  content: '';
  position: absolute;
  top: 0; left: -75%;
  width: 50%; height: 100%;
  background: linear-gradient(120deg, transparent 0%, rgba(255,215,0,.55) 50%, transparent 100%);
  animation: logoShimmer 2.8s ease-in-out infinite;
  pointer-events: none;
}
@keyframes logoPulse {
  0%,100% { box-shadow: 0 4px 18px rgba(0,0,0,.2), 0 0 0 4px rgba(255,215,0,.2), 0 0 14px rgba(255,215,0,.3); }
  50%      { box-shadow: 0 4px 24px rgba(0,0,0,.25), 0 0 0 7px rgba(255,215,0,.35), 0 0 32px rgba(255,215,0,.55); }
}
@keyframes logoShimmer {
  0%   { left: -75%; opacity: 0; }
  20%  { opacity: 1; }
  60%  { left: 130%; opacity: 1; }
  61%,100% { left: 130%; opacity: 0; }
}
.logo-img { height: 140px; width: auto; min-width: 320px; display: block; object-fit: contain; }
.nav-links { display: flex; gap: 20px; list-style: none; align-items: center; justify-content: center; padding: 10px 0; }
.nav-links a { color: var(--text); font-weight: 700; font-size: .95em; transition: color .2s; }
.nav-links a:hover { color: var(--green); text-decoration: none; }
.nav-cta { background: var(--green); color: #fff !important; border-radius: 999px; padding: 8px 18px; font-size: .9em !important; }
.nav-cta:hover { background: var(--greenDark); }
.hamburger { display: none; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--navy); margin: 5px 0; border-radius: 2px; transition: .3s; }
.mobile-menu { display: none; background: #fff; border-top: 1px solid var(--border); padding: 16px 0; }
.mobile-menu a { display: block; padding: 12px 20px; color: var(--text); font-weight: 700; border-bottom: 1px solid var(--border); }
.mobile-menu a:hover { color: var(--green); text-decoration: none; }
.mobile-menu.open { display: block; }
@media(max-width:768px) {
  .logo-img { height: 80px; }
  .logo-frame { padding: 5px 10px; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .header-nav .container { display: flex; justify-content: flex-start; }
}

/* ── HERO ── */
.hero {
  background: linear-gradient(135deg, var(--navy) 0%, #005580 50%, var(--green) 100%);
  color: #fff;
  padding: 80px 0 70px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 60% 40%, rgba(255,215,0,.08) 0%, transparent 70%);
  pointer-events: none;
}
.hero h1 { font-size: clamp(1.9em, 4.5vw, 3em); margin-bottom: 16px; text-shadow: 0 2px 12px rgba(0,0,0,.2); }
.hero p { font-size: clamp(1em, 2vw, 1.2em); opacity: .92; margin-bottom: 32px; color: rgba(255,255,255,.9); max-width: 600px; margin-inline: auto; }
.hero-actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.breadcrumb { display: flex; gap: 6px; align-items: center; justify-content: center; font-size: .9em; margin-bottom: 18px; color: rgba(255,255,255,.75); }
.breadcrumb a { color: rgba(255,255,255,.9); text-decoration: none; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  border-radius: 999px;
  font-weight: 900;
  font-size: 1em;
  cursor: pointer;
  border: none;
  transition: transform .15s, box-shadow .15s;
  text-decoration: none;
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 4px 16px rgba(0,0,0,.18); text-decoration: none; }
.btn--call { background: var(--gold); color: #1a0a00; }
.btn--call:hover { background: #ffe033; }
.btn--wa { background: #25D366; color: #fff; }
.btn--wa:hover { background: #1da851; }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navyDark); }
.btn--outline { background: transparent; color: var(--navy); border: 2px solid var(--navy); }
.btn--outline:hover { background: var(--navy); color: #fff; }
.btn--green { background: var(--green); color: #fff; }
.btn--green:hover { background: var(--greenDark); }

/* ── CARDS ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: box-shadow .18s, transform .18s;
}
.card:hover { box-shadow: var(--shadow2); transform: translateY(-3px); }

/* ── TRUST CHIPS ── */
.trust-row { display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; margin: 24px 0; }
.trust-chip { background: rgba(255,255,255,.18); color: #fff; border-radius: 999px; padding: 6px 16px; font-size: .88em; font-weight: 700; border: 1px solid rgba(255,255,255,.3); }
.trust-chip-green { background: #eaf6ee; color: var(--greenDark); border-radius: 999px; padding: 6px 16px; font-size: .88em; font-weight: 700; }

/* ── SKIP LINK ── */
.skip-link { position: absolute; top: -100px; right: 0; background: var(--navy); color: #fff; padding: 8px 16px; border-radius: 0 0 8px 8px; font-weight: 700; transition: top .2s; z-index: 99999; }
.skip-link:focus { top: 0; }

/* ── FOOTER ── */
footer {
  background: var(--navy);
  color: #fff;
  padding: 56px 0 0;
}
.foot-grid { display: grid; grid-template-columns: 2fr 1.5fr 1fr; gap: 40px; padding-bottom: 40px; }
.foot-title { font-size: 1.05em; font-weight: 900; margin-bottom: 14px; color: var(--gold); }
.foot-list { list-style: none; }
.foot-list li { margin-bottom: 8px; }
.foot-list a { color: rgba(255,255,255,.82); font-weight: 600; font-size: .95em; }
.foot-list a:hover { color: #fff; }
.foot-bottom { border-top: 1px solid rgba(255,255,255,.15); padding: 18px 0; display: flex; gap: 16px; align-items: center; flex-wrap: wrap; font-size: .88em; color: rgba(255,255,255,.6); }
.foot-bottom a { color: rgba(255,255,255,.7); }

/* ── FLOATING WHATSAPP ── */
.float-wa {
  position: fixed;
  bottom: 24px;
  left: 24px;
  width: 58px;
  height: 58px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6em;
  box-shadow: 0 4px 20px rgba(37,211,102,.45);
  z-index: 9000;
  transition: transform .2s;
  text-decoration: none;
}
.float-wa:hover { transform: scale(1.1); }
.float-wa-bubble {
  position: fixed;
  bottom: 36px;
  left: 92px;
  background: #fff;
  color: var(--text);
  border-radius: 999px;
  padding: 8px 16px;
  font-size: .85em;
  font-weight: 700;
  box-shadow: var(--shadow2);
  z-index: 8999;
  white-space: nowrap;
  animation: bubbleFade 3s ease-in-out 1.5s forwards;
  opacity: 1;
}
@keyframes bubbleFade { 0%{opacity:1} 80%{opacity:1} 100%{opacity:0} }

/* ── HERO GRADIENT ANIMATION ── */
@keyframes heroGrad {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
.hero-animated {
  background: linear-gradient(135deg, #001e4a, #003366, #005580, #1a6b2a, #003366);
  background-size: 300% 300%;
  animation: heroGrad 8s ease infinite;
}

/* ── HIGHLIGHT BOX ── */
.highlight-box {
  background: linear-gradient(135deg, #eaf6ee, #f0f8ff);
  border-right: 4px solid var(--green);
  border-radius: 10px;
  padding: 20px 24px;
  margin: 24px 0;
}
.highlight-box p { color: #1a3d2a; margin: 0; }

/* ── CTA BANNER ── */
.cta-banner {
  background: linear-gradient(135deg, var(--navy), var(--green));
  border-radius: 24px;
  padding: 48px 32px;
  text-align: center;
  color: #fff;
  box-shadow: var(--shadow2);
}
.cta-banner h2 { font-size: 1.8em; margin-bottom: 12px; }
.cta-banner p { opacity: .92; margin-bottom: 28px; font-size: 1.05em; color: rgba(255,255,255,.9); }
.cta-banner .actions { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* ── FAQ ── */
details { border: 1px solid var(--border); border-radius: 12px; background: #fff; margin-bottom: 12px; overflow: hidden; }
details summary { padding: 18px 22px; font-weight: 800; color: var(--navy); cursor: pointer; list-style: none; display: flex; justify-content: space-between; align-items: center; }
details summary::after { content: '+'; font-size: 1.4em; color: var(--green); transition: .2s; }
details[open] summary::after { content: '−'; }
details p { padding: 0 22px 18px; color: var(--muted); line-height: 1.8; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .foot-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .foot-grid { grid-template-columns: 1fr; }
  .nav-links { display: none; }
  .hamburger { display: block; }
  .section { padding: 48px 0; }
  .hero { padding: 56px 0 48px; }
}
