/* ─────────────────────────────────────────────
   Baat Brand CSS — Global component styles
   Loaded on every page
───────────────────────────────────────────── */

/* ─── Site Header / Nav ────────────────────── */
.site-header,
#site-header {
  background: #fff;
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}

.site-header.scrolled {
  box-shadow: 0 2px 12px rgba(0,0,0,.08);
}

/* GeneratePress nav overrides */
.main-navigation a,
.nav-primary a {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-700);
  padding: 8px 14px;
  transition: color 0.15s;
}
.main-navigation a:hover,
.nav-primary a:hover,
.main-navigation .current-menu-item > a {
  color: var(--brand);
  text-decoration: none;
}

/* CTA button in nav */
.nav-cta-btn {
  background: var(--brand) !important;
  color: #fff !important;
  border-radius: var(--radius-md) !important;
  padding: 8px 18px !important;
  font-weight: 600 !important;
  transition: background 0.18s, box-shadow 0.18s !important;
}
.nav-cta-btn:hover {
  background: var(--brand-dark) !important;
  box-shadow: 0 3px 10px rgba(0,87,255,.25) !important;
}

/* Logo */
.site-logo img,
.custom-logo {
  height: 32px;
  width: auto;
}

/* Mobile menu toggle */
.menu-toggle {
  color: var(--text-700);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 6px 10px;
}

/* ─── Footer ───────────────────────────────── */
.site-footer,
#site-footer {
  background: var(--text-800);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}

.baat-footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

@media (max-width: 768px) {
  .baat-footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 480px) {
  .baat-footer__grid {
    grid-template-columns: 1fr;
  }
}

.baat-footer__brand p {
  color: rgba(255,255,255,0.55);
  font-size: 14px;
  line-height: 1.6;
  margin-top: 12px;
  max-width: 280px;
}

.baat-footer__col h4 {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 16px;
}

.baat-footer__col ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.baat-footer__col li {
  margin-bottom: 10px;
}

.baat-footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.15s;
}
.baat-footer__col a:hover {
  color: #fff;
  text-decoration: none;
}

.baat-footer__bottom {
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.baat-footer__bottom p {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin: 0;
}

.baat-footer__legal a {
  font-size: 13px;
  color: rgba(255,255,255,0.4);
  margin-left: 20px;
  text-decoration: none;
}
.baat-footer__legal a:hover {
  color: rgba(255,255,255,0.7);
}

/* ─── Feature Icon Circle ──────────────────── */
.baat-icon-wrap {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.baat-icon-wrap--brand   { background: var(--brand-light); color: var(--brand); }
.baat-icon-wrap--green   { background: var(--success-light); color: var(--success); }
.baat-icon-wrap--purple  { background: #F3F0FF; color: #7C3AED; }
.baat-icon-wrap--orange  { background: #FFF7ED; color: #EA580C; }
.baat-icon-wrap--teal    { background: #F0FDFA; color: #0D9488; }
.baat-icon-wrap--pink    { background: #FFF1F2; color: #E11D48; }

.baat-icon-wrap svg {
  width: 22px;
  height: 22px;
}

/* ─── Divider ──────────────────────────────── */
.baat-divider {
  border: none;
  border-top: 1px solid var(--border);
  margin: 0;
}

/* ─── Section Label / Eyebrow ──────────────── */
.baat-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--brand);
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 16px;
}

/* ─── Pricing CTA strip ────────────────────── */
.baat-cta-strip {
  background: var(--brand);
  padding: 64px 0;
  text-align: center;
}

.baat-cta-strip h2 {
  color: #fff;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  margin-bottom: 12px;
}

.baat-cta-strip p {
  color: rgba(255,255,255,0.8);
  font-size: 17px;
  margin-bottom: 28px;
}

.baat-cta-strip__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ─── Breadcrumbs ──────────────────────────── */
.baat-breadcrumb {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  color: var(--text-400);
  margin-bottom: 24px;
}

.baat-breadcrumb a {
  color: var(--text-500);
  text-decoration: none;
}
.baat-breadcrumb a:hover { color: var(--brand); }

.baat-breadcrumb__sep {
  color: var(--border-mid);
}

/* ─── Page Header ──────────────────────────── */
.baat-page-header {
  padding: 56px 0 40px;
  border-bottom: 1px solid var(--border);
  margin-bottom: 48px;
}

.baat-page-header h1 {
  font-size: clamp(1.75rem, 4vw, 2.75rem);
  margin-bottom: 12px;
}

.baat-page-header p {
  font-size: 17px;
  color: var(--text-500);
  max-width: 600px;
}

/* ─── WPForms overrides ─────────────────────── */
.wpforms-form .wpforms-field-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-700);
  margin-bottom: 6px;
}

.wpforms-form input[type="text"],
.wpforms-form input[type="email"],
.wpforms-form input[type="tel"],
.wpforms-form textarea,
.wpforms-form select {
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 10px 14px;
  font-family: inherit;
  font-size: 14px;
  color: var(--text-900);
  transition: border-color 0.15s, box-shadow 0.15s;
}

.wpforms-form input:focus,
.wpforms-form textarea:focus,
.wpforms-form select:focus {
  outline: none;
  border-color: var(--brand);
  box-shadow: 0 0 0 3px rgba(0,87,255,.12);
}

.wpforms-submit {
  background: var(--brand) !important;
  color: #fff !important;
  border: none !important;
  border-radius: var(--radius-md) !important;
  padding: 12px 28px !important;
  font-size: 14px !important;
  font-weight: 600 !important;
  cursor: pointer;
  transition: background 0.18s !important;
}
.wpforms-submit:hover {
  background: var(--brand-dark) !important;
}

/* ─── Utility classes ──────────────────────── */
.text-brand   { color: var(--brand); }
.text-muted   { color: var(--text-500); }
.text-center  { text-align: center; }
.text-sm      { font-size: 13px; }
.fw-600       { font-weight: 600; }
.mb-0         { margin-bottom: 0; }
.mt-0         { margin-top: 0; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
}
