/* ===== NAVBAR ===== */
.navbar {
  position: sticky; top: 0; z-index: 200;
  background: #fff;
  border-bottom: 1px solid var(--border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.nav-inner {
  max-width: 1180px; margin: 0 auto; padding: 0 28px;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px; gap: 2rem;
}
.logo { display: flex; align-items: center; flex-shrink: 0; overflow: hidden; max-height: 72px; }
.logo img { height: 52px !important; width: auto !important; max-width: none !important; display: block; object-fit: contain; flex-shrink: 0; }

.nav-links { display: flex; align-items: center; gap: 2rem; list-style: none; }
.nav-item {
  font-size: .88rem; font-weight: 500; color: #2d3748;
  display: inline-flex; align-items: center; gap: .3rem; transition: color .2s;
}
.nav-item:hover, .nav-item.nav-active { color: var(--navy); }
.nav-item.nav-active { font-weight: 600; }

.btn-consult {
  display: inline-flex; align-items: center; gap: .5rem;
  background: var(--navy2); color: #fff;
  font-size: .85rem; font-weight: 600;
  padding: .7rem 1.4rem; border-radius: 50px;
  transition: background .2s, transform .2s; flex-shrink: 0;
}
.btn-consult:hover { background: var(--steel); transform: translateY(-1px); }
.btn-consult svg { width: 15px; height: 15px; }

/* ===== HAMBURGER BUTTON ===== */
.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none; cursor: pointer;
  padding: 6px; border-radius: 8px; flex-shrink: 0;
  transition: background .2s; z-index: 210;
}
.nav-toggle:hover { background: rgba(0,0,0,.06); }
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #243054; border-radius: 2px;
  transition: transform .3s ease, opacity .3s ease, width .3s ease;
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; width: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ===== MOBILE MENU DRAWER ===== */
.mobile-menu {
  display: none; position: fixed;
  top: 72px; left: 0; right: 0;
  background: #fff; z-index: 190;
  border-top: 1px solid #e8ecf4;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  transform: translateY(-12px); opacity: 0; pointer-events: none;
  transition: transform .3s ease, opacity .3s ease;
}
.mobile-menu.open { transform: translateY(0); opacity: 1; pointer-events: all; }
.mobile-menu-inner { padding: 8px 0 24px; }
.mobile-menu-inner a.mob-link {
  display: block; font-size: .95rem; font-weight: 500; color: #2d3748;
  padding: 14px 28px; border-bottom: 1px solid #f1f5f9;
  transition: background .15s, color .15s;
}
.mobile-menu-inner a.mob-link:last-of-type { border-bottom: none; }
.mobile-menu-inner a.mob-link:hover,
.mobile-menu-inner a.mob-link.nav-active { color: #009EE3; background: #f0f9ff; }
.mob-cta-wrap { padding: 16px 28px 0; }
.mob-cta-wrap a {
  display: flex; align-items: center; justify-content: center; gap: .5rem;
  background: #243054; color: #fff;
  font-size: .88rem; font-weight: 600;
  padding: .85rem 2rem; border-radius: 50px; transition: background .2s;
}
.mob-cta-wrap a:hover { background: #009EE3; }

/* ===== SHARED BUTTONS ===== */
.btn-navy {
  display: inline-flex; align-items: center;
  background: var(--navy2); color: #fff;
  font-size: .88rem; font-weight: 600;
  padding: .82rem 1.7rem; border-radius: 8px;
  transition: background .2s, transform .2s;
}
.btn-navy:hover { background: var(--steel); transform: translateY(-2px); }

.btn-outline-white {
  display: inline-flex; align-items: center; gap: .5rem;
  background: transparent; color: #fff;
  font-size: .88rem; font-weight: 600;
  padding: .82rem 1.7rem; border-radius: 8px;
  border: 1.5px solid rgba(255,255,255,.55);
  transition: all .2s;
}
.btn-outline-white:hover { background: rgba(255,255,255,.1); border-color: #fff; transform: translateY(-2px); }

.btn-white-navy {
  display: inline-flex; align-items: center;
  background: #fff; color: var(--navy);
  width: 16rem;
  font-size: .88rem; font-weight: 600;
  padding: .82rem 1.7rem; border-radius: 8px; transition: all .2s;
}
.btn-white-navy:hover { background: var(--off); transform: translateY(-2px); }

/* ===== SHARED REVIEW / CTA SECTION ===== */
.review {
  position: relative; overflow: hidden;
  padding: 6rem 0; text-align: center;
}
.review-bg {
  position: absolute; inset: 0;
  background: url('../assets/images/img_111.webp') center / cover no-repeat;
  z-index: 0;
}
.review-overlay { position: absolute; inset: 0; z-index: 1; }
.review-body { position: relative; z-index: 2; }
.review-body h2 { font-size: clamp(1.9rem, 3.5vw, 2.7rem); font-weight: 600; color: #fff; margin-bottom: 1rem; }
.review-body p  { font-size: 1rem; color: rgba(255,255,255,.82); margin-bottom: 2.2rem; max-width: 500px; margin-left: auto; margin-right: auto; line-height: 1.7; }
.review-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }

/* ===== FOOTER ===== */
footer.footer { background: #000000; padding: 3.5rem 0 0; }
.footer-inner {
  display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 2.5rem; padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.foot-brand img { height: 56px; width: auto; object-fit: contain; margin-bottom: 1.2rem; }
.foot-brand p { font-size: .85rem; color: rgba(255,255,255,.55); line-height: 1.75; margin-bottom: 1.2rem; }
.social-links { display: flex; gap: .6rem; }
.social-links a {
  width: 34px; height: 34px; border-radius: 50%;
  background: rgba(255,255,255,.1);
  display: flex; align-items: center; justify-content: center;
  font-size: .72rem; font-weight: 600; color: rgba(255,255,255,.65);
  transition: background .2s, color .2s;
}
.social-links a:hover { background: var(--steel); color: #fff; }

.foot-col h4 {
  font-size: .76rem; font-weight: 600; color: #fff;
  text-transform: uppercase; letter-spacing: .14em; margin-bottom: 1.2rem;
}
.foot-col ul { list-style: none; display: grid; gap: .65rem; }
.foot-col li, .foot-col a { font-size: .85rem; color: rgba(255,255,255,.55); transition: color .2s; }
.foot-col a:hover { color: rgba(255,255,255,.9); padding-left: 3px; }

.foot-bottom { padding: 1.4rem 0; }
.foot-bottom-inner {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: .78rem; color: rgba(255,255,255,.35);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .mobile-menu { display: block; }
  .nav-links { display: none !important; }
  .btn-consult { display: none; }
  .wrap { padding: 0 18px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2rem; }
  .foot-bottom-inner { flex-direction: column; text-align: center; gap: .5rem; }
  .review { padding: 4rem 0; }
  .review-btns { flex-direction: column; align-items: center; }
  .review-btns > a { width: 100%; max-width: 320px; justify-content: center; }
}
@media (max-width: 980px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
}
