:root{
:  --evg-primary-green:#9ee67b;
:  --evg-dark:#111111;
:  --evg-white:#ffffff;
:  --primary-blue:#0087eb;
:}
/* Header (EverGreen) */
.glass-nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(15px);
  border-radius:50px;
  padding:10px 30px;
  border:1px solid rgba(255,255,255,0.2);
}
.glass-nav .logo{color:#fff;font-weight:800;font-size:22px}
.glass-nav .logo span{color:var(--evg-primary-green)}
.glass-nav .nav-links{list-style:none;display:flex;gap:26px;margin:0;padding:0}
.glass-nav .nav-links a{color:black;text-decoration:none;font-size:14px;opacity:.85}
.glass-nav .nav-links a.active{background:#fff;color:#000;padding:8px 18px;border-radius:20px;opacity:1}
.glass-nav .nav-right{display:flex;align-items:center;gap:16px;color:#fff}
.glass-nav .btn-signup{background:var(--evg-primary-green);border:none;padding:10px 25px;border-radius:20px;font-weight:700;cursor:pointer;color:#000;text-decoration:none;display:inline-block}
.glass-nav .btn-signup:hover{filter:brightness(.95)}
.glass-nav .btn-login{background:transparent;border:1px solid rgba(255,255,255,0.35);padding:10px 18px;border-radius:20px;font-weight:700;cursor:pointer;color:#fff;text-decoration:none;display:inline-block}
.glass-nav .btn-login:hover{background:rgba(255,255,255,0.12)}

/* Auth overlay (Login/Register) */
.auth-overlay {
  position: fixed;
  inset: 0;
  z-index: 2200;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 18px;
}

.auth-overlay.open { display: flex; }

.auth-overlay-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.auth-dialog {
  position: relative;
  width: min(560px, 92vw);
  max-height: calc(100vh - 48px);
  background: white;
  border-radius: 18px;
  border: 1px solid rgba(0,0,0,0.10);
  box-shadow: 0 24px 70px rgba(0,0,0,0.32);
  overflow: hidden;
  overflow-y: auto;
}

.auth-dialog.auth-loading .auth-head,
.auth-dialog.auth-loading .auth-tabs,
.auth-dialog.auth-loading .auth-alert,
.auth-dialog.auth-loading .auth-panels {
  filter: blur(2px);
  opacity: 0.52;
  pointer-events: none;
  user-select: none;
}

.auth-loading-layer {
  position: absolute;
  inset: 0;
  z-index: 5;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
  background: rgba(255, 255, 255, 0.58);
  backdrop-filter: blur(2px);
}

.auth-dialog.auth-loading .auth-loading-layer {
  display: flex;
}

.auth-loading-card {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 18px;
  border-radius: 16px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.16);
  color: #0b1a2a;
  font-size: 14px;
  font-weight: 900;
}

.auth-spinner {
  width: 22px;
  height: 22px;
  border-radius: 999px;
  border: 3px solid rgba(0, 135, 235, 0.20);
  border-top-color: var(--primary-blue);
  animation: authSpin 0.8s linear infinite;
  flex: 0 0 auto;
}

@keyframes authSpin {
  to { transform: rotate(360deg); }
}

.auth-head {
  padding: 18px 20px 14px;
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: start;
  border-bottom: 1px solid rgba(0,0,0,0.08);
  background: linear-gradient(180deg, rgba(0, 135, 235, 0.08), rgba(0, 135, 235, 0.02));
}

.auth-kicker {
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 26, 42, 0.65);
  letter-spacing: 0.4px;
}

.auth-title {
  margin-top: 4px;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.25px;
  color: #0b1a2a;
}

.auth-sub {
  margin-top: 6px;
  font-size: 13px;
  color: rgba(11, 26, 42, 0.65);
}

.auth-x {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  cursor: pointer;
  display: grid;
  place-items: center;
  color: rgba(11, 26, 42, 0.75);
}

.auth-form {
  padding: 16px 20px 18px;
  display: grid;
  gap: 12px;
}

.auth-tabs {
  padding: 10px 20px 0;
  display: flex;
  gap: 10px;
  border-bottom: 1px solid rgba(0,0,0,0.08);
}

.auth-alert {
  margin: 12px 20px 0;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(0, 0, 0, 0.04);
  color: rgba(11, 26, 42, 0.88);
  font-size: 13px;
  font-weight: 800;
}

.auth-alert.info { background: rgba(0, 135, 235, 0.10); border-color: rgba(0, 135, 235, 0.22); }
.auth-alert.ok { background: rgba(76, 175, 80, 0.12); border-color: rgba(76, 175, 80, 0.22); }
.auth-alert.err { background: rgba(255, 77, 77, 0.10); border-color: rgba(255, 77, 77, 0.22); }

.auth-tab {
  background: transparent;
  border: none;
  padding: 10px 12px;
  border-radius: 12px 12px 0 0;
  font-weight: 950;
  font-size: 13px;
  color: rgba(11, 26, 42, 0.65);
  cursor: pointer;
}

.auth-tab.active {
  color: rgba(11, 26, 42, 0.92);
  background: rgba(0, 135, 235, 0.08);
  border: 1px solid rgba(0, 135, 235, 0.18);
  border-bottom-color: rgba(255,255,255,0);
}

.auth-panels { padding: 0; }
.auth-panel { padding: 0; }

.auth-field > span {
  display: block;
  font-size: 12px;
  font-weight: 900;
  color: rgba(11, 26, 42, 0.65);
  margin: 6px 0;
}

.auth-field input,
.auth-phone-row select {
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  padding: 12px 12px;
  font-size: 14px;
  outline: none;
}

.auth-field input:focus,
.auth-phone-row select:focus {
  box-shadow: 0 0 0 5px rgba(0, 135, 235, 0.18);
  border-color: rgba(0, 135, 235, 0.45);
}

.auth-email-row,
.auth-phone-row {
  display: grid;
  grid-template-columns: 1fr 120px;
  gap: 10px;
  align-items: center;
}

.auth-phone-row {
  grid-template-columns: 120px 1fr;
}

.auth-otp-btn {
  height: 44px;
  border-radius: 14px;
  border: 1px solid rgba(0, 135, 235, 0.35);
  background: rgba(0, 135, 235, 0.10);
  color: #0b1a2a;
  font-weight: 900;
  cursor: pointer;
  white-space: nowrap;
}
.auth-otp-btn:disabled { opacity: 0.55; cursor: default; }

.auth-hint { margin-top: 6px; font-size: 11px; color: rgba(11, 26, 42, 0.55); }

.auth-pill {
  margin-top: 4px;
  border: 1px solid rgba(0,0,0,0.10);
  background: rgba(246, 248, 251, 0.9);
  border-radius: 16px;
  padding: 12px 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.auth-pill-title { font-weight: 900; color: rgba(11, 26, 42, 0.85); font-size: 13px; }
.auth-pill-actions { display: inline-flex; align-items: center; gap: 12px; font-weight: 800; font-size: 13px; }
.auth-pill-actions label { display: inline-flex; align-items: center; gap: 6px; cursor: pointer; }

.auth-terms {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 12px;
  color: rgba(11, 26, 42, 0.70);
  padding-top: 2px;
}
.auth-terms a { color: var(--primary-blue); text-decoration: none; font-weight: 900; }
.auth-terms a:hover { text-decoration: underline; }

.auth-actions {
  display: grid;
  grid-template-columns: 1fr 140px;
  gap: 12px;
  margin-top: 6px;
}

.auth-primary {
  height: 48px;
  border-radius: 14px;
  border: none;
  background: var(--primary-blue);
  color: white;
  font-weight: 950;
  cursor: pointer;
}

.auth-secondary {
  height: 48px;
  border-radius: 14px;
  border: 1px solid rgba(0,0,0,0.12);
  background: white;
  color: rgba(11, 26, 42, 0.85);
  font-weight: 900;
  cursor: pointer;
}

.auth-foot {
  text-align: center;
  font-size: 12px;
  color: rgba(11, 26, 42, 0.65);
  padding-top: 6px;
}

@media (max-width: 560px) {
  .auth-head { padding: 14px 14px 12px; }
  .auth-title { font-size: 18px; }
  .auth-email-row,
  .auth-phone-row { grid-template-columns: 1fr; }
  .auth-actions { grid-template-columns: 1fr; }
}

/* Footer (EverGreen) */
.info-bar{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:30px;
  padding:70px 5%;
  background:#fff;
  border-top:1px solid #eee;
}
.info-bar h1{font-size:44px;line-height:1.15;color:var(--evg-dark);margin:0}
.info-right{text-align:right;color:#555}
.info-right address{font-style:normal;line-height:1.6}
.info-right .phone-number{margin-top:10px;font-weight:800;color:var(--evg-dark)}

.site-footer{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:30px;
  padding:30px 5% 60px;
  background:#fff;
}
.site-footer .footer-nav{display:flex;gap:18px;flex-wrap:wrap}
.site-footer .footer-nav a{color:#111;text-decoration:none;font-weight:600;opacity:.85}
.site-footer .footer-nav a:hover{opacity:1}
.site-footer .footer-logo{font-size:24px;font-weight:800;color:#111}
.site-footer .footer-logo span{font-weight:400}

@media (max-width: 992px){
  .glass-nav{flex-wrap:wrap;gap:14px}
  .glass-nav .nav-links{flex-wrap:wrap;gap:12px}
  .info-bar{flex-direction:column;text-align:center}
  .info-right{text-align:center}
  .site-footer{flex-direction:column}
}
