/* SLR Business Support - shared styles */

:root {
  --purple-dark: #2e0a4f;
  --purple: #4b1580;
  --purple-light: #7b3fb5;
  --gold: #d4af37;
  --gold-light: #f3e2a9;
  --off-white: #f8f6fb;
  --text-dark: #241533;
  --radius: 10px;
  --shadow: 0 4px 14px rgba(46, 10, 79, 0.15);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--text-dark);
  background: var(--off-white);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
}

.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* Top contact strip */
.top-strip {
  background: var(--purple-dark);
  color: var(--gold-light);
  font-size: 0.85rem;
}

.top-strip .container {
  display: flex;
  justify-content: flex-end;
  gap: 1.5rem;
  padding-top: 0.4rem;
  padding-bottom: 0.4rem;
  flex-wrap: wrap;
}

.top-strip a:hover {
  color: var(--gold);
}

/* Header / nav */
.site-header {
  background: linear-gradient(135deg, var(--purple) 0%, var(--purple-dark) 100%);
  color: #fff;
  box-shadow: var(--shadow);
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1rem 1.25rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.4rem;
  letter-spacing: 0.5px;
}

.logo .logo-mark {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--purple-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  font-weight: 800;
  border: 2px solid var(--gold-light);
}

.logo .logo-sub {
  display: block;
  font-size: 0.65rem;
  font-weight: 400;
  color: var(--gold-light);
  letter-spacing: 1px;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.6rem;
  cursor: pointer;
}

.nav-links {
  display: flex;
  gap: 1.75rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  font-weight: 600;
  padding: 0.35rem 0;
  border-bottom: 2px solid transparent;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--gold-light);
  border-color: var(--gold);
}

/* Hero */
.hero {
  background: linear-gradient(135deg, var(--purple-dark), var(--purple));
  color: #fff;
  text-align: center;
  padding: 4rem 1.25rem;
}

.hero .badge {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-dark);
  font-weight: 700;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  margin-bottom: 1rem;
  font-size: 0.85rem;
}

.hero h1 {
  font-size: 2.4rem;
  margin: 0.3rem 0;
}

.hero p.tagline {
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
  max-width: 640px;
  margin: 0.75rem auto 1.75rem;
}

.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--purple-dark);
  font-weight: 700;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: transform 0.15s ease, background 0.2s ease;
}

.btn:hover {
  background: var(--gold-light);
  transform: translateY(-2px);
}

/* Trust strip */
.trust-strip {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1.25rem;
  background: #fff;
  border-bottom: 1px solid #eee;
}

.trust-strip span {
  background: var(--off-white);
  border: 1px solid var(--purple-light);
  color: var(--purple);
  font-weight: 600;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.9rem;
}

/* Sections */
section {
  padding: 3.5rem 0;
}

section h2 {
  text-align: center;
  color: var(--purple-dark);
  font-size: 2rem;
  margin-bottom: 0.5rem;
}

.section-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 2.5rem;
  color: #555;
}

/* Cards / grid */
.grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 1.5rem;
}

.card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 1.75rem;
  border-top: 4px solid var(--gold);
}

.card .icon {
  font-size: 1.8rem;
  margin-bottom: 0.75rem;
}

.card h3 {
  color: var(--purple-dark);
  margin: 0 0 0.5rem;
}

/* CTA banner */
.cta-banner {
  background: var(--purple-dark);
  color: #fff;
  text-align: center;
  padding: 3rem 1.25rem;
}

.cta-banner h2 {
  color: #fff;
}

/* About page */
.about-values {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.value-pill {
  background: var(--purple);
  color: #fff;
  padding: 0.6rem 1.4rem;
  border-radius: 999px;
  font-weight: 600;
}

/* Contact page */
.contact-card {
  background: #fff;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  padding: 2rem;
  max-width: 480px;
  margin: 0 auto;
  text-align: center;
  border-top: 4px solid var(--gold);
}

.contact-card a {
  display: block;
  margin: 0.75rem 0;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--purple);
}

.contact-card a:hover {
  color: var(--gold);
}

/* Footer */
.site-footer {
  background: var(--purple-dark);
  color: var(--gold-light);
  text-align: center;
  padding: 2rem 1.25rem;
  font-size: 0.9rem;
}

.site-footer .footer-links {
  margin-top: 0.5rem;
}

.site-footer a:hover {
  color: var(--gold);
}

/* Mobile nav */
@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    background: var(--purple-dark);
    padding: 1rem 1.25rem;
    gap: 1rem;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-bar {
    position: relative;
  }

  .top-strip .container {
    justify-content: center;
  }
}
