/* Site-specific styles extending sba-base.css */

/* ── Navigation ── */
.sba-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid var(--sba-border);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.sba-nav-inner {
  max-width: var(--sba-max-width);
  margin: 0 auto;
  padding: 0 var(--sba-padding-x);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
}
.sba-nav-brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}
.sba-nav-brand img {
  height: 40px;
  width: auto;
}
.sba-nav-brand span {
  font-size: 16px;
  font-weight: 400;
  color: var(--sba-heading);
}
.sba-nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
  padding: 0;
  margin: 0;
}
.sba-nav-links a {
  font-size: 14px;
  color: var(--sba-text);
  text-decoration: none;
  transition: color 0.2s;
}
.sba-nav-links a:hover,
.sba-nav-links a.active {
  color: var(--sba-heading);
}
.sba-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.sba-nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--sba-heading);
  margin: 5px 0;
  transition: 0.3s;
}

/* ── Hero Section ── */
.sba-hero {
  margin-top: 64px;
  background: linear-gradient(135deg, #2C3E50 0%, #3D6789 60%, #4a7a9e 100%);
  position: relative;
  overflow: hidden;
}
.sba-hero-inner {
  max-width: var(--sba-max-width);
  margin: 0 auto;
  padding: 72px var(--sba-padding-x) 64px;
  display: flex;
  align-items: center;
  gap: 48px;
}
.sba-hero-text {
  flex: 1;
  min-width: 0;
}
.sba-hero-tagline {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}
.sba-hero h1 {
  color: #FFFFFF;
  font-size: 36px;
  font-weight: 400;
  line-height: 1.3;
  margin-bottom: 16px;
}
.sba-hero-sub {
  font-size: 16px;
  color: rgba(255, 255, 255, 0.85);
  line-height: 1.7;
  margin-bottom: 28px;
  max-width: 520px;
}
.sba-hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.sba-hero .sba-btn-primary {
  background: #FFFFFF;
  color: var(--sba-heading);
  font-weight: 700;
}
.sba-hero .sba-btn-primary:hover {
  background: #F0F4F8;
}
.sba-hero .sba-btn-secondary {
  border-color: rgba(255, 255, 255, 0.5);
  color: #FFFFFF;
}
.sba-hero .sba-btn-secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.8);
}
.sba-hero-image {
  flex-shrink: 0;
}
.sba-hero-image img {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  object-fit: cover;
  object-position: center top;
  border: 4px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── Content Sections ── */
.sba-section {
  padding: var(--sba-section-py) 0;
}
.sba-section-header {
  text-align: center;
  margin-bottom: 36px;
}
.sba-section-header p {
  max-width: 600px;
  margin: 0 auto;
}

/* ── Service Cards ── */
.sba-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--sba-bg-alt);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  font-size: 24px;
  color: var(--sba-heading);
}

/* ── Trust / Qualifications ── */
.sba-trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}
.sba-trust-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--sba-bg-alt);
  border: 1px solid var(--sba-border);
  border-radius: 20px;
  padding: 8px 18px;
  font-size: 13px;
  color: var(--sba-text);
}
.sba-trust-badge svg {
  width: 16px;
  height: 16px;
  color: var(--sba-heading);
}

/* ── CTA Section ── */
.sba-cta-section {
  background: var(--sba-heading);
  color: #FFFFFF;
  text-align: center;
  padding: 56px 0;
}
.sba-cta-section h2 {
  color: #FFFFFF;
  margin-bottom: 12px;
}
.sba-cta-section p {
  color: rgba(255, 255, 255, 0.8);
  max-width: 500px;
  margin: 0 auto 24px;
}
.sba-cta-section .sba-btn-primary {
  background: #FFFFFF;
  color: var(--sba-heading);
}
.sba-cta-section .sba-btn-primary:hover {
  background: #F0F4F8;
}

/* ── Footer ── */
.sba-footer-inner {
  max-width: var(--sba-max-width);
  margin: 0 auto;
  padding: 0 var(--sba-padding-x);
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.sba-footer-links {
  display: flex;
  gap: 24px;
}

/* ── Legal Pages ── */
.sba-legal {
  margin-top: 64px;
  padding: 48px 0 64px;
}
.sba-legal h1 {
  margin-bottom: 32px;
}
.sba-legal h2 {
  font-size: 22px;
  margin-top: 32px;
  margin-bottom: 12px;
}
.sba-legal h3 {
  margin-top: 20px;
}
.sba-legal p {
  margin-bottom: 10px;
}
.sba-legal ul {
  margin-bottom: 16px;
}

/* ── Responsive ── */
@media (max-width: 1023px) {
  .sba-hero-inner {
    padding: 56px var(--sba-padding-x) 48px;
    gap: 32px;
  }
  .sba-hero-image img {
    width: 220px;
    height: 220px;
  }
}

@media (max-width: 767px) {
  .sba-nav-links {
    display: none;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: #FFFFFF;
    flex-direction: column;
    padding: 16px var(--sba-padding-x) 24px;
    border-bottom: 1px solid var(--sba-border);
    gap: 16px;
  }
  .sba-nav-links.open {
    display: flex;
  }
  .sba-nav-toggle {
    display: block;
  }
  .sba-hero h1 {
    font-size: 28px;
  }
  .sba-hero-inner {
    flex-direction: column-reverse;
    text-align: center;
    padding: 40px var(--sba-padding-x);
  }
  .sba-hero-sub {
    margin-left: auto;
    margin-right: auto;
  }
  .sba-hero-actions {
    justify-content: center;
  }
  .sba-hero-image img {
    width: 180px;
    height: 180px;
  }
  .sba-footer-inner {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}
