/* ══════════════════════════════════════
   SHARED — Nav · Footer · Notify Popup
   ══════════════════════════════════════ */

/* ── NAV ── */
#nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 16px 48px;
  background: rgba(255,255,255,0.82);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
  font-family: 'Quicksand', sans-serif;
  transition: padding .3s;
}
.nav-logo { height: 48px; width: auto; }
#nav ul { list-style: none; display: flex; gap: 32px; margin: 0; padding: 0; }
#nav ul a { color: #717171; text-decoration: none; font-size: 14px; font-weight: 600; transition: color .2s; }
#nav ul a:hover, #nav ul a.active { color: #222; }
.nav-cta {
  background: #FFC400; color: #222;
  padding: 10px 24px; border-radius: 100px;
  font-size: 14px; font-weight: 700; text-decoration: none;
  box-shadow: 0 4px 16px rgba(255,196,0,0.3);
  transition: transform .2s, box-shadow .2s;
  white-space: nowrap;
}
.nav-cta:hover { transform: translateY(-1px); box-shadow: 0 8px 28px rgba(255,196,0,0.4); }

@media (max-width: 1024px) {
  #nav { padding: 14px 24px; }
  #nav ul { display: none; }
}

/* ── FOOTER ── */
footer { background: #222; color: rgba(255,255,255,.5); padding: 56px 48px 32px; font-family: 'Quicksand', sans-serif; }
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-newsletter-strip { margin-bottom: 48px; padding-bottom: 48px; border-bottom: 1px solid rgba(255,255,255,.08); display: flex; align-items: flex-start; justify-content: space-between; gap: 48px; flex-wrap: wrap; }
.footer-newsletter-strip h4 { color: #fff; font-size: 18px; font-weight: 700; margin: 0 0 6px; }
.footer-newsletter-strip p { font-size: 14px; color: rgba(255,255,255,.4); margin: 0; line-height: 1.6; max-width: 320px; }
.footer-newsletter-form { display: flex; gap: 8px; flex-shrink: 0; }
.footer-newsletter-input { width: 280px; padding: 12px 18px; border-radius: 100px; border: 1.5px solid rgba(255,255,255,.2); background: rgba(255,255,255,.08); color: #fff; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.footer-newsletter-input::placeholder { color: rgba(255,255,255,.4); }
.footer-newsletter-input:focus { border-color: #FFC400; }
.footer-newsletter-btn { padding: 12px 22px; border-radius: 100px; background: #FFC400; color: #222; font-size: 14px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; transition: opacity .2s; }
.footer-newsletter-btn:hover { opacity: .85; }
.footer-top { display: flex; gap: 48px; flex-wrap: wrap; margin-bottom: 48px; }
.footer-brand { flex: 0 0 220px; }
.footer-brand img { height: 64px; width: 64px; object-fit: contain; filter: brightness(0) invert(1); margin-bottom: 16px; display: block; }
.footer-brand p { font-size: 14px; max-width: 200px; line-height: 1.65; color: rgba(255,255,255,.4); margin: 0; }
.footer-col { flex: 1; min-width: 120px; }
.footer-col h4 { color: #fff; font-size: 12px; font-weight: 700; margin: 0 0 16px; letter-spacing: .08em; text-transform: uppercase; }
.footer-col a { display: block; color: rgba(255,255,255,.5); font-size: 14px; margin-bottom: 10px; text-decoration: none; transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.08); padding-top: 24px; font-size: 13px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px; color: rgba(255,255,255,.3); }
.footer-bottom a { color: rgba(255,255,255,.4); text-decoration: underline; }
.footer-lang { display: flex; align-items: center; gap: 6px; }
.lang-link { font-size: 13px; font-weight: 700; color: rgba(255,255,255,.3); text-decoration: none !important; letter-spacing: .04em; transition: color .2s; }
.lang-link:hover { color: rgba(255,255,255,.6); }
.lang-link.lang-active { color: #FFC400; }
.lang-sep { color: rgba(255,255,255,.15); font-size: 13px; }

@media (max-width: 768px) {
  footer { padding: 48px 24px 28px; }
  .footer-newsletter-strip { flex-direction: column; gap: 24px; }
  .footer-newsletter-form { width: 100%; }
  .footer-newsletter-input { flex: 1; width: auto; }
  .footer-top { flex-direction: column; gap: 28px; }
  .footer-bottom { flex-direction: column; }
}

/* ── NOTIFY POPUP ── */
.notify-overlay { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(0,0,0,.55); backdrop-filter: blur(6px); align-items: center; justify-content: center; }
.notify-overlay.active { display: flex; }
.notify-box { background: #fff; border-radius: 20px; padding: 48px 40px; max-width: 420px; width: 90%; text-align: center; position: relative; box-shadow: 0 24px 64px rgba(0,0,0,.18); animation: popIn .3s ease; font-family: 'Quicksand', sans-serif; }
@keyframes popIn { from { opacity: 0; transform: scale(.92) translateY(12px); } to { opacity: 1; transform: scale(1) translateY(0); } }
.notify-close { position: absolute; top: 16px; right: 16px; background: none; border: none; font-size: 20px; cursor: pointer; color: #999; transition: color .2s; line-height: 1; }
.notify-close:hover { color: #222; }
.notify-icon { font-size: 48px; margin-bottom: 16px; }
.notify-box h3 { font-size: 22px; font-weight: 700; margin: 0 0 8px; color: #222; }
.notify-box p { font-size: 15px; color: #717171; margin: 0 0 28px; line-height: 1.6; }
.notify-form { display: flex; gap: 8px; }
.notify-input { flex: 1; padding: 14px 18px; border-radius: 100px; border: 1.5px solid #e0e0e0; font-size: 14px; font-family: inherit; outline: none; transition: border-color .2s; }
.notify-input:focus { border-color: #FFC400; }
.notify-submit { padding: 14px 24px; border-radius: 100px; background: #FFC400; color: #222; font-size: 14px; font-weight: 700; border: none; cursor: pointer; white-space: nowrap; transition: opacity .2s; }
.notify-submit:hover { opacity: .85; }
.notify-success { display: none; padding: 20px 0 0; }
.notify-success .check { font-size: 40px; margin-bottom: 8px; }
.notify-success p { color: #222; font-weight: 600; font-size: 16px; }
.hp-field { position: absolute; left: -9999px; }
@media (max-width: 480px) { .notify-box { padding: 36px 24px; } .notify-form { flex-direction: column; } }
