/* ═══════════════════════════════════════════════
   BAJETI — Shared Stylesheet  (bajeti.css)
   ═══════════════════════════════════════════════ */

/* ── RESET & BASE ─────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --blue:        #1e6ab8;
  --blue-dark:   #154f8a;
  --blue-mid:    #2a7fcf;
  --blue-light:  #e8f0fb;
  --bg:          #eef2f7;
  --white:       #ffffff;
  --text:        #1a1a2e;
  --muted:       #5a6a7a;
  --border:      #d0dae6;
  --card-shadow: 0 4px 24px rgba(30,106,184,0.11);
  --card-radius: 18px;
  --transition:  0.25s cubic-bezier(.4,0,.2,1);

  /* Sub-page accent colours */
  --edu-accent:   #2563eb;
  --biz-accent:   #0d9488;
  --rent-accent:  #16a34a;
  --est-accent:   #d97706;
  --com-accent:   #7c3aed;
  --del-accent:   #dc2626;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }

/* ── NAV ───────────────────────────────────────── */
.bj-nav {
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 40px;
  height: 64px;
  box-shadow: 0 2px 8px rgba(0,0,0,0.06);
  position: sticky;
  top: 0;
  z-index: 200;
}

.bj-nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.bj-nav__icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, #1e6ab8, #3a9bd5);
  border-radius: 9px;
  display: flex; align-items: center; justify-content: center;
  color: white; font-size: 18px; font-weight: 900;
  font-family: 'Nunito', sans-serif;
  flex-shrink: 0;
}

.bj-nav__name {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 20px;
  color: var(--text);
}

.bj-nav__links {
  display: flex; align-items: center; gap: 28px;
  list-style: none;
}

.bj-nav__links a {
  font-size: 14px; font-weight: 600;
  color: var(--muted);
  padding-bottom: 2px;
  border-bottom: 2px solid transparent;
  transition: color var(--transition), border-color var(--transition);
}

.bj-nav__links a:hover,
.bj-nav__links a.active { color: var(--blue); }
.bj-nav__links a.active  { border-bottom-color: var(--blue); }

.bj-nav__login {
  padding: 8px 22px;
  border: 2px solid var(--text);
  border-radius: 100px;
  background: transparent;
  color: var(--text);
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 700; font-size: 14px;
  cursor: pointer;
  transition: background var(--transition), color var(--transition);
}
.bj-nav__login:hover { background: var(--text); color: var(--white); }

/* Hamburger (mobile) */
.bj-nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.bj-nav__hamburger span {
  display: block; width: 24px; height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

/* ── HERO BANNER ───────────────────────────────── */
.bj-hero {
  position: relative;
  min-height: 220px;
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 40px 48px 0;
  background: linear-gradient(120deg, #1a4fa0 0%, #1e6ab8 40%, #3a9bd5 70%, #6ec6f5 100%);
}

.bj-hero__content {
  position: relative; z-index: 2;
  padding-bottom: 36px;
}

.bj-hero__eyebrow {
  display: inline-block;
  background: rgba(255,255,255,0.18);
  color: rgba(255,255,255,0.92);
  font-size: 11px; font-weight: 700;
  letter-spacing: .1em; text-transform: uppercase;
  padding: 4px 14px; border-radius: 100px;
  margin-bottom: 14px;
}

.bj-hero__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900;
  font-size: clamp(26px, 3.5vw, 40px);
  color: white;
  line-height: 1.15;
  margin-bottom: 10px;
}

.bj-hero__sub {
  font-size: 15px;
  color: rgba(255,255,255,0.82);
  max-width: 440px;
  margin-bottom: 24px;
}

.bj-hero__btn {
  display: inline-block;
  padding: 12px 30px;
  background: var(--white);
  color: var(--blue);
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 14px;
  box-shadow: 0 4px 16px rgba(0,0,0,0.15);
  transition: transform var(--transition), box-shadow var(--transition);
}
.bj-hero__btn:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.2); }

.bj-hero__art {
  position: absolute; right: 0; bottom: 0;
  width: 52%; height: 100%; z-index: 1;
}

/* ── MAIN WRAPPER ─────────────────────────────── */
.bj-main {
  max-width: 960px;
  margin: 0 auto;
  padding: 48px 24px 72px;
}

/* ── SECTION HEADINGS ─────────────────────────── */
.bj-section-label {
  font-size: 11px; font-weight: 700;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--blue); margin-bottom: 8px;
}

.bj-section-title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: clamp(22px,3vw,30px);
  color: var(--text); margin-bottom: 8px;
}

.bj-section-sub {
  font-size: 15px; color: var(--muted);
  max-width: 560px;
}

.bj-section-header {
  margin-bottom: 36px;
}
.bj-section-header--center {
  text-align: center;
}
.bj-section-header--center .bj-section-sub {
  margin: 0 auto;
}

/* ── CARDS ────────────────────────────────────── */
.bj-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bj-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(30,106,184,0.16);
}

.bj-card--padded { padding: 28px; }

/* ── GRID LAYOUTS ─────────────────────────────── */
.bj-grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.bj-grid-3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.bj-grid-4 { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; }

/* ── BUTTONS ──────────────────────────────────── */
.bj-btn {
  display: inline-block;
  padding: 11px 28px;
  border-radius: 100px;
  font-family: 'Nunito', sans-serif;
  font-weight: 700; font-size: 14px;
  cursor: pointer; border: none;
  transition: all var(--transition);
}
.bj-btn--primary {
  background: var(--blue); color: var(--white);
}
.bj-btn--primary:hover { background: var(--blue-dark); transform: translateY(-1px); }

.bj-btn--outline {
  background: transparent;
  border: 2px solid var(--blue);
  color: var(--blue);
}
.bj-btn--outline:hover { background: var(--blue); color: var(--white); }

.bj-btn--white {
  background: var(--white); color: var(--blue);
  box-shadow: 0 4px 16px rgba(0,0,0,0.12);
}
.bj-btn--white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.18); }

/* ── STAT BAR ─────────────────────────────────── */
.bj-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  overflow: hidden;
  margin-bottom: 40px;
}

.bj-stat {
  padding: 28px 24px;
  text-align: center;
  border-right: 1px solid var(--border);
}
.bj-stat:last-child { border-right: none; }

.bj-stat__num {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 32px;
  line-height: 1; margin-bottom: 4px;
}

.bj-stat__label {
  font-size: 13px; color: var(--muted); font-weight: 600;
}

/* ── FEATURE ROW ──────────────────────────────── */
.bj-feature-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.bj-feature-row--reverse { direction: rtl; }
.bj-feature-row--reverse > * { direction: ltr; }

.bj-feature-row__art {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: var(--card-shadow);
}

.bj-feature-row__body { }
.bj-feature-row__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 22px;
  margin-bottom: 12px;
}
.bj-feature-row__text {
  font-size: 15px; color: var(--muted); line-height: 1.72; margin-bottom: 20px;
}

/* ── ICON FEATURE CARDS ───────────────────────── */
.bj-icon-card {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px 22px;
  text-align: center;
  transition: transform var(--transition), box-shadow var(--transition);
}
.bj-icon-card:hover { transform: translateY(-4px); box-shadow: 0 12px 36px rgba(30,106,184,0.15); }

.bj-icon-card__icon {
  width: 68px; height: 68px;
  border-radius: 50%;
  margin: 0 auto 16px;
  display: flex; align-items: center; justify-content: center;
  font-size: 32px;
}

.bj-icon-card__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 16px;
  margin-bottom: 8px;
}

.bj-icon-card__text {
  font-size: 13px; color: var(--muted); line-height: 1.6;
}

/* ── CTA STRIP ────────────────────────────────── */
.bj-cta {
  border-radius: var(--card-radius);
  padding: 48px 40px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 56px;
  color: var(--white);
}

.bj-cta__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 24px;
  margin-bottom: 6px;
}
.bj-cta__sub { font-size: 15px; opacity: .85; }

/* ── FOOTER ───────────────────────────────────── */
.bj-footer {
  background: var(--white);
  border-top: 1px solid rgba(0,0,0,0.07);
  padding: 20px 40px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
}

.bj-footer__brand {
  display: flex; align-items: center; gap: 8px;
}

.bj-footer__brand-icon {
  width: 28px; height: 28px;
  background: linear-gradient(135deg,#1e6ab8,#3a9bd5);
  border-radius: 7px;
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 900; font-size: 13px;
  font-family: 'Nunito', sans-serif;
}

.bj-footer__brand-text {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 14px;
  color: var(--text);
}

.bj-footer__copy { font-size: 12.5px; color: var(--muted); }

.bj-footer__links {
  display: flex; gap: 20px;
}
.bj-footer__links a {
  font-size: 12.5px; color: var(--muted);
  transition: color var(--transition);
}
.bj-footer__links a:hover { color: var(--blue); }

/* ── BADGE PILL ───────────────────────────────── */
.bj-badge {
  display: inline-block;
  padding: 4px 14px;
  border-radius: 100px;
  font-size: 11px; font-weight: 700;
  letter-spacing: .06em; text-transform: uppercase;
}

/* ── TESTIMONIAL ──────────────────────────────── */
.bj-testimonial {
  background: var(--white);
  border-radius: var(--card-radius);
  box-shadow: var(--card-shadow);
  padding: 28px;
}
.bj-testimonial__text {
  font-size: 15px; color: var(--muted); line-height: 1.7;
  font-style: italic; margin-bottom: 16px;
}
.bj-testimonial__author {
  display: flex; align-items: center; gap: 12px;
}
.bj-testimonial__avatar {
  width: 40px; height: 40px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 20px;
}
.bj-testimonial__name {
  font-weight: 700; font-size: 14px;
}
.bj-testimonial__role {
  font-size: 12px; color: var(--muted);
}

/* ── STEPS ────────────────────────────────────── */
.bj-steps {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.bj-step {
  display: flex; gap: 20px;
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}
.bj-step:first-child { padding-top: 0; }
.bj-step:last-child  { border-bottom: none; }

.bj-step__num {
  width: 36px; height: 36px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Nunito', sans-serif;
  font-weight: 900; font-size: 15px;
  color: white; flex-shrink: 0;
}

.bj-step__title {
  font-family: 'Nunito', sans-serif;
  font-weight: 800; font-size: 15px; margin-bottom: 4px;
}
.bj-step__text { font-size: 13.5px; color: var(--muted); line-height: 1.55; }

/* ── SPACER ───────────────────────────────────── */
.bj-spacer-sm { margin-bottom: 24px; }
.bj-spacer    { margin-bottom: 48px; }
.bj-spacer-lg { margin-bottom: 72px; }

/* ── RESPONSIVE ───────────────────────────────── */
@media (max-width: 860px) {
  .bj-grid-3 { grid-template-columns: 1fr 1fr; }
  .bj-grid-4 { grid-template-columns: 1fr 1fr; }
  .bj-feature-row { grid-template-columns: 1fr; gap: 28px; }
  .bj-feature-row--reverse { direction: ltr; }
  .bj-cta { flex-direction: column; text-align: center; }
  .bj-stats { grid-template-columns: 1fr; }
  .bj-stat { border-right: none; border-bottom: 1px solid var(--border); }
  .bj-stat:last-child { border-bottom: none; }
}

@media (max-width: 640px) {
  .bj-nav { padding: 0 16px; }
  .bj-nav__links { display: none; }
  .bj-nav__login { display: none; }
  .bj-nav__hamburger { display: flex; }
  .bj-nav__links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 64px; left: 0; right: 0;
    background: var(--white); padding: 20px 24px 28px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.1);
    gap: 16px; z-index: 199;
  }
  .bj-nav__links.open .bj-nav__login {
    display: block; margin-top: 8px;
  }
  .bj-hero { padding: 32px 20px 0; }
  .bj-hero__art { width: 45%; opacity: .6; }
  .bj-main { padding: 32px 16px 56px; }
  .bj-grid-2 { grid-template-columns: 1fr; }
  .bj-grid-3 { grid-template-columns: 1fr; }
  .bj-grid-4 { grid-template-columns: 1fr 1fr; }
  .bj-cta { padding: 32px 24px; }
  .bj-footer { padding: 16px 20px; }
}
