/* /var/www/html/css/base.css */

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

html {
  /* Smooth scroll for #anchors like Get in touch */
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #2d2d2d;
  background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  min-height: 100vh;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* ===== Sticky CTA (new block) — old-style glass ===== */
.sticky-cta {
  position: sticky;
  top: 0;
  z-index: 999;
  background: rgba(255,255,255,0.85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.sticky-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
}

.sticky-text {
  color: #1a1a1a;
  font-size: 1.05em;
}

.sticky-actions {
  display: flex;
  gap: 12px;
  align-items: center;
}

/* ===== Buttons (site-wide) ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 12px 22px;
  border-radius: 50px;
  text-decoration: none;
  font-weight: 600;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease, filter 0.25s ease;
}

.btn-sm { padding: 9px 16px; font-size: 0.95em; }

.btn-primary {
  background: #2962ff;
  color: #fff;
  box-shadow: 0 6px 16px rgba(41,98,255,0.25);
}

.btn-primary:hover {
  background: #00b0ff;
  transform: translateY(-2px);
}

.btn-secondary {
  background: #f0f4f8;
  color: #2962ff;
  box-shadow: 0 2px 6px rgba(0,0,0,0.06);
}

.btn-secondary:hover {
  background: #2962ff;
  color: #fff;
  transform: translateY(-2px);
}

.btn-telegram {
  background: #0088cc;
  color: #fff;
}

.btn-telegram:hover {
  background: #00aaff;
  transform: translateY(-2px);
}

.btn-whatsapp {
  background: #25D366;
  color: #fff;
}

.btn-whatsapp:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

.btn-calendly {
  background: #0B5FFF;
  color: #fff;
}

.btn-calendly:hover {
  filter: brightness(1.05);
  transform: translateY(-2px);
}

/* ===== Trust pills ===== */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.trust-pill {
  background: rgba(255,255,255,0.65);
  border: 1px solid rgba(0,0,0,0.06);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.95em;
  color: #2d2d2d;
}

/* ===== Toast ===== */
.toast {
  position: fixed;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  min-width: 280px;
  max-width: 520px;
  padding: 14px 16px;
  border-radius: 14px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(12px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.18);
  border: 1px solid rgba(0,0,0,0.08);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease;
  z-index: 2000;
}

.toast.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(-6px);
}

.toast-title {
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 4px;
}

.toast-text {
  color: #444;
  line-height: 1.5;
}

.toast-success { border-left: 4px solid #2962ff; }
.toast-error { border-left: 4px solid #ff3b30; }
