/* ============================================
   ASSOCIATION CORE — Brand Standards Stylesheet
   Colors: Teal #008D93, Charcoal #2E3333
   Typography: Arial primary, Georgia secondary
   ============================================ */

:root {
  --teal: #008D93;
  --teal-dark: #007278;
  --charcoal: #2E3333;
  --light-teal: #E6F4F5;
  --mid-teal: #66C2C6;
  --white: #FFFFFF;
  --light-gray: #F5F5F5;
  --mid-gray: #9A9A9A;
  --font-primary: Arial, 'Helvetica Neue', Helvetica, sans-serif;
  --font-secondary: Georgia, 'Times New Roman', serif;
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--font-primary);
  color: var(--charcoal);
  line-height: 1.6;
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

a { color: var(--teal); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--teal-dark); }

img { max-width: 100%; height: auto; display: block; }

h1, h2, h3, h4, h5, h6 { line-height: 1.2; font-weight: 700; }
h1 { font-size: 2.75rem; color: var(--charcoal); }
h2 { font-size: 2rem; color: var(--charcoal); }
h3 { font-size: 1.35rem; color: var(--teal); }
h4 { font-size: 1.1rem; color: var(--charcoal); }

p { margin-bottom: 1rem; }

.container { max-width: 1180px; margin: 0 auto; padding: 0 2rem; }

/* ---- UTILITY ---- */
.text-teal { color: var(--teal); }
.text-charcoal { color: var(--charcoal); }
.text-center { text-align: center; }
.bg-charcoal { background-color: var(--charcoal); color: var(--white); }
.bg-light-teal { background-color: var(--light-teal); }
.bg-light-gray { background-color: var(--light-gray); }
.bg-white { background-color: var(--white); }

/* ---- BUTTONS ---- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 3px;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 2px solid transparent;
  letter-spacing: 0.03em;
}
.btn-primary {
  background: var(--teal);
  color: var(--white);
  border-color: var(--teal);
}
.btn-primary:hover {
  background: var(--teal-dark);
  border-color: var(--teal-dark);
  color: var(--white);
}
.btn-outline {
  background: transparent;
  color: var(--teal);
  border-color: var(--teal);
}
.btn-outline:hover {
  background: var(--teal);
  color: var(--white);
}
.btn-white {
  background: var(--white);
  color: var(--teal);
  border-color: var(--white);
}
.btn-white:hover {
  background: var(--light-teal);
  border-color: var(--light-teal);
  color: var(--teal-dark);
}

/* ============================================
   NAVIGATION
   ============================================ */
.site-nav {
  background: var(--charcoal);
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2rem;
  max-width: 1260px;
  margin: 0 auto;
  height: 72px;
}
.nav-logo img { height: 42px; width: auto; }
.nav-links { display: flex; align-items: center; gap: 0; list-style: none; }
.nav-links li { position: relative; }
.nav-links a {
  color: var(--white);
  font-size: 0.9rem;
  font-weight: 600;
  padding: 0.5rem 1.15rem;
  display: block;
  letter-spacing: 0.02em;
  transition: color 0.2s;
}
.nav-links a:hover,
.nav-links a.active { color: var(--mid-teal); }
.nav-cta {
  margin-left: 0.75rem;
}
.nav-cta .btn {
  padding: 0.6rem 1.5rem;
  font-size: 0.85rem;
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 6px 0;
  transition: 0.3s;
}

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--charcoal);
    flex-direction: column;
    padding: 1rem 0;
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
  }
  .nav-links.open { display: flex; }
  .nav-links a { padding: 0.85rem 2rem; }
  .nav-cta { margin: 0.5rem 1.5rem; }
}

/* ============================================
   HERO SECTIONS
   ============================================ */
.hero {
  background: linear-gradient(135deg, var(--light-teal) 0%, var(--white) 60%);
  padding: 6rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: '';
  position: absolute;
  top: -80px;
  right: -120px;
  width: 500px;
  height: 500px;
  border: 60px solid rgba(0,141,147,0.06);
  border-radius: 50%;
  pointer-events: none;
}
.hero .container {
  display: flex;
  align-items: center;
  gap: 4rem;
}
.hero-content { flex: 1; max-width: 600px; }
.hero-content h1 { margin-bottom: 1.25rem; font-size: 2.85rem; }
.hero-content h1 span { color: var(--teal); }
.hero-content p {
  font-size: 1.15rem;
  color: #4a5555;
  margin-bottom: 2rem;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 1rem; flex-wrap: wrap; }
.hero-image { flex: 0 0 340px; text-align: center; }
.hero-image img { max-width: 320px; }

@media (max-width: 900px) {
  .hero .container { flex-direction: column-reverse; text-align: center; gap: 2rem; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero-image { flex: none; }
  .hero-image img { max-width: 220px; margin: 0 auto; }
  .hero-ctas { justify-content: center; }
}

/* Page hero (inner pages) */
.page-hero {
  background: var(--charcoal);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  bottom: -60px;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  border: 50px solid rgba(0,141,147,0.08);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero h1 { color: var(--white); font-size: 2.5rem; margin-bottom: 0.75rem; position: relative; }
.page-hero p { color: var(--mid-teal); font-size: 1.15rem; max-width: 640px; margin: 0 auto; position: relative; }

/* ============================================
   SECTIONS
   ============================================ */
.section { padding: 5rem 0; }
.section-sm { padding: 3.5rem 0; }
.section-header { text-align: center; max-width: 700px; margin: 0 auto 3rem; }
.section-header h2 { margin-bottom: 0.75rem; }
.section-header p { color: #5a6565; font-size: 1.05rem; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: 0.75rem;
}

/* ---- STATS BAR ---- */
.stats-bar {
  background: var(--charcoal);
  padding: 3.5rem 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  text-align: center;
}
.stat-item .stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--mid-teal);
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.7);
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

@media (max-width: 700px) {
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
}

/* ---- CARDS GRID ---- */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}
.card {
  background: var(--white);
  border: 1px solid #e8eded;
  border-radius: 6px;
  padding: 2.25rem 2rem;
  transition: box-shadow 0.3s, transform 0.25s;
}
.card:hover {
  box-shadow: 0 8px 30px rgba(0,0,0,0.08);
  transform: translateY(-3px);
}
.card-icon {
  width: 52px;
  height: 52px;
  background: var(--light-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--teal);
  font-size: 1.4rem;
}
.card h3 { margin-bottom: 0.75rem; font-size: 1.2rem; }
.card p { color: #5a6565; font-size: 0.95rem; margin-bottom: 0; }

/* ---- TWO-COL LAYOUT ---- */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
@media (max-width: 800px) {
  .two-col { grid-template-columns: 1fr; gap: 2rem; }
}

/* ---- VALUES GRID ---- */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 1.5rem;
}
.value-item {
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--white);
  border-radius: 6px;
  border: 1px solid #e8eded;
}
.value-item .value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--light-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--teal);
}
.value-item h4 { margin-bottom: 0.5rem; color: var(--charcoal); }
.value-item p { font-size: 0.9rem; color: #5a6565; margin-bottom: 0; }

/* ---- BENEFITS LIST ---- */
.benefits-list { list-style: none; }
.benefits-list li {
  padding: 1.25rem 0;
  border-bottom: 1px solid #e8eded;
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.benefits-list li:last-child { border-bottom: none; }
.benefit-check {
  flex-shrink: 0;
  width: 28px;
  height: 28px;
  background: var(--teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 0.85rem;
  margin-top: 0.15rem;
}
.benefit-text h4 { margin-bottom: 0.3rem; }
.benefit-text p { color: #5a6565; font-size: 0.95rem; margin-bottom: 0; }

/* ---- COMPARISON TABLE ---- */
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 1.5rem;
  font-size: 0.95rem;
}
.comparison-table thead th {
  background: var(--charcoal);
  color: var(--white);
  padding: 1rem 1.25rem;
  text-align: left;
  font-weight: 700;
}
.comparison-table thead th:first-child { border-radius: 6px 0 0 0; }
.comparison-table thead th:last-child { border-radius: 0 6px 0 0; }
.comparison-table tbody td {
  padding: 1rem 1.25rem;
  border-bottom: 1px solid #e8eded;
  vertical-align: top;
}
.comparison-table tbody tr:nth-child(even) { background: var(--light-gray); }
.comparison-table .highlight-col {
  background: var(--light-teal) !important;
  font-weight: 600;
}

/* ---- CTA BANNER ---- */
.cta-banner {
  background: var(--teal);
  padding: 4rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  border: 50px solid rgba(255,255,255,0.06);
  border-radius: 50%;
}
.cta-banner h2 { color: var(--white); margin-bottom: 0.75rem; position: relative; }
.cta-banner p { color: rgba(255,255,255,0.85); margin-bottom: 2rem; font-size: 1.1rem; position: relative; }

/* ---- FORM STYLES ---- */
.form-group { margin-bottom: 1.5rem; }
.form-group label {
  display: block;
  font-weight: 700;
  font-size: 0.9rem;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1px solid #cdd5d5;
  border-radius: 4px;
  font-family: var(--font-primary);
  font-size: 0.95rem;
  color: var(--charcoal);
  transition: border-color 0.2s;
  background: var(--white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(0,141,147,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
}

/* ---- PROCESS STEPS ---- */
.process-steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  counter-reset: step;
}
.process-step {
  text-align: center;
  padding: 2rem 1.5rem;
  position: relative;
}
.process-step::before {
  counter-increment: step;
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--teal);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: 1.2rem;
  margin: 0 auto 1.25rem;
}
.process-step h4 { margin-bottom: 0.5rem; }
.process-step p { font-size: 0.9rem; color: #5a6565; margin-bottom: 0; }

/* ---- ACCORDION (FAQ) ---- */
.accordion-item { border-bottom: 1px solid #e8eded; }
.accordion-btn {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  padding: 1.25rem 0;
  font-family: var(--font-primary);
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--charcoal);
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.accordion-btn::after {
  content: '+';
  font-size: 1.4rem;
  color: var(--teal);
  transition: transform 0.3s;
}
.accordion-btn.active::after { content: '−'; }
.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
}
.accordion-body-inner {
  padding: 0 0 1.5rem;
  color: #5a6565;
  line-height: 1.7;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--charcoal);
  color: rgba(255,255,255,0.7);
  padding: 4rem 0 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img { height: 52px; margin-bottom: 1rem; }
.footer-brand p { font-size: 0.9rem; line-height: 1.6; max-width: 280px; }
.footer-col h4 {
  color: var(--white);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.6rem; }
.footer-col a {
  color: rgba(255,255,255,0.65);
  font-size: 0.9rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--mid-teal); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
}
.footer-bottom a { color: rgba(255,255,255,0.5); }
.footer-bottom a:hover { color: var(--mid-teal); }

@media (max-width: 800px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
}
@media (max-width: 500px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ---- ANIMATIONS ---- */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-in-up {
  animation: fadeInUp 0.7s ease forwards;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.25s; }
.delay-3 { animation-delay: 0.4s; }

/* ---- TAGLINE BAR ---- */
.tagline-bar {
  background: var(--teal);
  text-align: center;
  padding: 0.5rem 1rem;
  font-size: 0.78rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* ---- SERVICE DETAIL BLOCKS ---- */
.service-detail {
  padding: 3.5rem 0;
  border-bottom: 1px solid #e8eded;
}
.service-detail:last-child { border-bottom: none; }
.service-detail .service-header {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.service-detail .service-icon {
  width: 48px;
  height: 48px;
  background: var(--light-teal);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  color: var(--teal);
  flex-shrink: 0;
}
.service-detail h3 { margin-bottom: 0; }
.service-scope {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem 2rem;
  margin-top: 1rem;
}
.service-scope li {
  list-style: none;
  padding-left: 1.25rem;
  position: relative;
  color: #5a6565;
  font-size: 0.95rem;
}
.service-scope li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 6px;
  height: 6px;
  background: var(--teal);
  border-radius: 50%;
}
@media (max-width: 600px) {
  .service-scope { grid-template-columns: 1fr; }
}
