/*
Theme Name: Anglican Care
Theme URI: https://anglicancare.org
Author: Anglican Care
Description: Custom theme for Anglican Care Health Care Sharing Ministry
Version: 1.2.2
*/

/*
 * Anglican Care Brand Stylesheet
 * Site-wide shared CSS — enqueued via anglican-care-brand plugin
 * Mobile-first responsive design
 */

/* ============================================
   CSS VARIABLES — Brand Design System
   ============================================ */
:root {
  /* Primary Colors */
  --ac-red: #B22234;          /* Old Glory Red */
  --ac-blue: #0A3161;          /* Old Glory Blue */
  --ac-white: #FFFFFF;         /* Pure White */
  
  /* Secondary Colors */
  --ac-gold: #C4A747;          /* Patriot Gold */
  --ac-cream: #F8F5F0;         /* Soft Cream */
  --ac-navy: #1B2A4A;          /* Midnight Navy */
  --ac-grey: #6B7280;          /* Heritage Grey */
  
  /* Functional Colors */
  --ac-cta: #D44E5C;           /* Soft Red — primary CTAs */
  --ac-cta-hover: #B83A47;    /* CTA hover state */
  --ac-light-blue: #E8EEF5;   /* Light Blue — alt section backgrounds */
  
  /* Typography */
  --ac-font-heading: 'Merriweather', 'Lora', Georgia, serif;
  --ac-font-body: 'Inter', 'Source Sans Pro', -apple-system, BlinkMacSystemFont, sans-serif;
  --ac-font-scripture: 'Playfair Display', Georgia, serif;
  
  /* Spacing */
  --ac-section-padding: 4rem 1.5rem;
  --ac-container-max: 1140px;
  --ac-container-narrow: 800px;
  
  /* Borders */
  --ac-border: 1px solid #e5e7eb;
  --ac-border-gold: 2px solid var(--ac-gold);
  
  /* Shadows */
  --ac-shadow: 0 2px 8px rgba(0,0,0,0.08);
  --ac-shadow-lg: 0 4px 20px rgba(0,0,0,0.12);
}

/* ============================================
   RESET & BASE
   ============================================ */
* { box-sizing: border-box; margin: 0; padding: 0; }

body {
  font-family: var(--ac-font-body);
  color: var(--ac-navy);
  background: var(--ac-white);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--ac-blue); text-decoration: none; transition: color 0.2s; }
a:hover { color: var(--ac-cta); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--ac-font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--ac-navy);
  margin-bottom: 0.75em;
}

h1 { font-size: 2.25rem; }
h2 { font-size: 1.875rem; }
h3 { font-size: 1.5rem; }
h4 { font-size: 1.25rem; }
h5 { font-size: 1.125rem; }
h6 { font-size: 1rem; }

p { margin-bottom: 1em; }

.scripture {
  font-family: var(--ac-font-scripture);
  font-style: italic;
  color: var(--ac-gold);
  font-size: 1.15rem;
  line-height: 1.5;
  text-align: center;
  margin: 1.5rem 0;
}

.scripture-ref {
  display: block;
  font-size: 0.9rem;
  font-style: normal;
  color: var(--ac-grey);
  margin-top: 0.5rem;
}

/* ============================================
   LAYOUT
   ============================================ */
.ac-container {
  max-width: var(--ac-container-max);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ac-container-narrow {
  max-width: var(--ac-container-narrow);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.ac-section {
  padding: var(--ac-section-padding);
}

.ac-section-cream { background: var(--ac-cream); }
.ac-section-light-blue { background: var(--ac-light-blue); }
.ac-section-white { background: var(--ac-white); }

.ac-section-title {
  text-align: center;
  margin-bottom: 2.5rem;
}

.ac-section-title h2 {
  margin-bottom: 0.5rem;
}

.ac-section-title p {
  color: var(--ac-grey);
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto;
}

/* ============================================
   NAVIGATION — with Dropdown Submenus
   ============================================ */
.ac-nav {
  background: var(--ac-blue);
  padding: 0;
  position: sticky;
  top: 0;
  z-index: 1000;
  box-shadow: 0 2px 12px rgba(0,0,0,0.15);
}

.ac-nav-inner {
  max-width: var(--ac-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 1.5rem;
  flex-wrap: wrap;
  position: relative;
}

.ac-nav-logo {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  padding: 0.7rem 0;
  flex-shrink: 0;
}

.ac-nav-logo-icon {
  flex-shrink: 0;
}

.ac-nav-logo-type {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.ac-nav-logo-text {
  font-family: var(--ac-font-heading);
  font-weight: 700;
  font-size: 1.3rem;
  color: var(--ac-white);
  letter-spacing: 0.2px;
  white-space: nowrap;
}

.ac-nav-logo-sub {
  font-size: 0.62rem;
  color: var(--ac-gold);
  text-transform: uppercase;
  letter-spacing: 0.8px;
  white-space: nowrap;
  margin-top: 1px;
}

/* Nav links container */
.ac-nav-links {
  display: flex;
  gap: 0.35rem;
  list-style: none;
  align-items: center;
}

/* Top-level links */
.ac-nav-links > li > a {
  color: var(--ac-white);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 1.1rem 0.5rem;
  position: relative;
  display: inline-block;
  transition: color 0.2s;
}

.ac-nav-links > li > a:hover {
  color: var(--ac-gold);
}

/* Gold underline indicator on hover */
.ac-nav-links > li > a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0.6rem;
  right: 0.6rem;
  height: 3px;
  background: var(--ac-gold);
  border-radius: 3px 3px 0 0;
  transform: scaleX(0);
  transition: transform 0.2s ease;
}

.ac-nav-links > li > a:hover::after {
  transform: scaleX(1);
}

/* Dropdown parent indicator (chevron) — sits after the label with clear breathing room */
.ac-nav-has-children {
  position: relative;
}

.ac-nav-has-children > a {
  display: inline-flex;
  align-items: center;
}

.ac-nav-has-children > a::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  margin-left: 0.45rem;
  vertical-align: middle;
  transition: transform 0.2s;
  opacity: 0.75;
  flex-shrink: 0;
}

.ac-nav-has-children:hover > a::after {
  transform: rotate(180deg);
}

/* Dropdown panel */
.ac-nav-dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  min-width: 220px;
  background: var(--ac-white);
  border-radius: 0 0 8px 8px;
  box-shadow: 0 8px 24px rgba(0,0,0,0.15);
  list-style: none;
  padding: 0.5rem 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: opacity 0.2s, transform 0.2s, visibility 0.2s;
  z-index: 1001;
}

.ac-nav-has-children:hover > .ac-nav-dropdown,
.ac-nav-has-children:focus-within > .ac-nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

/* Dropdown links */
.ac-nav-dropdown li a {
  display: block;
  padding: 0.65rem 1.25rem;
  color: var(--ac-navy);
  font-size: 0.88rem;
  font-weight: 500;
  transition: background 0.15s, color 0.15s;
  border-left: 3px solid transparent;
}

.ac-nav-dropdown li a:hover {
  background: var(--ac-cream);
  color: var(--ac-blue);
  border-left-color: var(--ac-gold);
}

/* CTA button in nav */
.ac-nav-links a.ac-nav-cta {
  background: var(--ac-cta);
  color: var(--ac-white);
  padding: 0.55rem 1.4rem;
  border-radius: 6px;
  transition: background 0.2s, transform 0.15s;
  font-weight: 600;
}

.ac-nav-links a.ac-nav-cta:hover {
  background: var(--ac-cta-hover);
  color: var(--ac-white);
  transform: translateY(-1px);
}

.ac-nav-cta-item {
  margin-left: 0.5rem;
}

/* Hamburger toggle */
.ac-nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.65rem;
  flex-direction: column;
  gap: 5px;
  width: 44px;
  height: 44px;
  justify-content: center;
  align-items: center;
}

.ac-nav-toggle-bar {
  display: block;
  width: 24px;
  height: 3px;
  background: var(--ac-white);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.ac-nav-toggle.active .ac-nav-toggle-bar:nth-child(1) {
  transform: translateY(8px) rotate(45deg);
}
.ac-nav-toggle.active .ac-nav-toggle-bar:nth-child(2) {
  opacity: 0;
}
.ac-nav-toggle.active .ac-nav-toggle-bar:nth-child(3) {
  transform: translateY(-8px) rotate(-45deg);
}

/* ============================================
   BUTTONS
   ============================================ */
.ac-btn {
  display: inline-block;
  padding: 0.75rem 1.75rem;
  border-radius: 6px;
  font-family: var(--ac-font-body);
  font-size: 1rem;
  font-weight: 600;
  text-align: center;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  text-decoration: none;
}

.ac-btn-primary {
  background: var(--ac-cta);
  color: var(--ac-white);
}

.ac-btn-primary:hover {
  background: var(--ac-cta-hover);
  color: var(--ac-white);
}

.ac-btn-secondary {
  background: transparent;
  color: var(--ac-blue);
  border: 2px solid var(--ac-blue);
}

.ac-btn-secondary:hover {
  background: var(--ac-blue);
  color: var(--ac-white);
}

.ac-btn-gold {
  background: var(--ac-gold);
  color: var(--ac-white);
}

.ac-btn-gold:hover {
  background: #B08F3A;
  color: var(--ac-white);
}

.ac-btn-lg {
  padding: 1rem 2.5rem;
  font-size: 1.1rem;
}

/* ============================================
   HERO
   ============================================ */
.ac-hero {
  background: var(--ac-cream);
  padding: 4rem 1.5rem;
  text-align: center;
}

.ac-hero-inner {
  max-width: 800px;
  margin: 0 auto;
}

.ac-hero h1 {
  font-size: 2.75rem;
  margin-bottom: 1rem;
  color: var(--ac-white);
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
}

.ac-hero p {
  font-size: 1.2rem;
  color: rgba(255,255,255,0.9);
  margin-bottom: 2rem;
  text-shadow: 0 1px 4px rgba(0,0,0,0.3);
}

.ac-hero-cta {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.ac-hero-scripture {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: var(--ac-border-gold);
}

/* Hero-specific button override — white on dark overlay */
.ac-hero .ac-btn-secondary {
  color: var(--ac-white);
  border-color: rgba(255,255,255,0.8);
}
.ac-hero .ac-btn-secondary:hover {
  background: rgba(255,255,255,0.15);
  color: var(--ac-white);
  border-color: var(--ac-white);
}

/* Hero scripture text — gold already, just ensure readability */
.ac-hero .scripture {
  text-shadow: 0 1px 4px rgba(0,0,0,0.4);
}

/* ============================================
   CARDS
   ============================================ */
.ac-card {
  background: var(--ac-white);
  border: var(--ac-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--ac-shadow);
  transition: box-shadow 0.3s;
}

.ac-card:hover {
  box-shadow: var(--ac-shadow-lg);
}

.ac-card-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ac-light-blue);
  border-radius: 50%;
  font-size: 1.5rem;
}

.ac-card h3 {
  margin-bottom: 0.5rem;
}

.ac-card p {
  color: var(--ac-grey);
  font-size: 0.95rem;
}

/* ============================================
   GRID
   ============================================ */
.ac-grid {
  display: grid;
  gap: 1.5rem;
}

.ac-grid-2 { grid-template-columns: repeat(2, 1fr); }
.ac-grid-3 { grid-template-columns: repeat(3, 1fr); }
.ac-grid-4 { grid-template-columns: repeat(4, 1fr); }

/* ============================================
   PRICING TABLES
   ============================================ */
.ac-pricing-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ac-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ac-shadow);
}

.ac-pricing-table th {
  background: var(--ac-blue);
  color: var(--ac-white);
  padding: 1rem;
  text-align: left;
  font-family: var(--ac-font-heading);
  font-size: 0.95rem;
}

.ac-pricing-table td {
  padding: 0.875rem 1rem;
  border-bottom: var(--ac-border);
  font-size: 0.95rem;
}

.ac-pricing-table tr:last-child td {
  border-bottom: none;
}

.ac-pricing-table tr:nth-child(even) td {
  background: var(--ac-cream);
}

.ac-pricing-table .ac-price {
  font-weight: 700;
  color: var(--ac-navy);
}

/* ============================================
   TIER CARDS
   ============================================ */
.ac-tier-card {
  background: var(--ac-white);
  border: var(--ac-border);
  border-radius: 12px;
  padding: 2rem;
  text-align: center;
  box-shadow: var(--ac-shadow);
  position: relative;
}

.ac-tier-card.featured {
  border-color: var(--ac-gold);
  border-width: 2px;
}

.ac-tier-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--ac-gold);
  color: var(--ac-white);
  padding: 0.25rem 1rem;
  border-radius: 20px;
  font-size: 0.8rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.ac-tier-card h3 {
  color: var(--ac-blue);
  margin-bottom: 0.25rem;
}

.ac-tier-price {
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--ac-navy);
  margin: 1rem 0;
}

.ac-tier-price span {
  font-size: 1rem;
  color: var(--ac-grey);
  font-weight: 400;
}

.ac-tier-details {
  text-align: left;
  margin: 1.5rem 0;
  padding: 1.5rem 0;
  border-top: var(--ac-border);
  border-bottom: var(--ac-border);
}

.ac-tier-details dt {
  font-size: 0.85rem;
  color: var(--ac-grey);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 0.25rem;
}

.ac-tier-details dd {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ac-navy);
  margin-bottom: 1rem;
}

.ac-tier-features {
  text-align: left;
  list-style: none;
}

.ac-tier-features li {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  color: var(--ac-navy);
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
}

.ac-tier-features li::before {
  content: "✓";
  color: var(--ac-gold);
  font-weight: 700;
  flex-shrink: 0;
}

/* ============================================
   COMPARISON TABLE
   ============================================ */
.ac-comparison-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--ac-white);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--ac-shadow);
}

.ac-comparison-table th {
  background: var(--ac-navy);
  color: var(--ac-white);
  padding: 1rem;
  text-align: center;
  font-family: var(--ac-font-heading);
  font-size: 0.9rem;
}

.ac-comparison-table th:first-child {
  text-align: left;
}

.ac-comparison-table td {
  padding: 0.875rem 1rem;
  border-bottom: var(--ac-border);
  text-align: center;
  font-size: 0.95rem;
}

.ac-comparison-table td:first-child {
  text-align: left;
  font-weight: 600;
}

.ac-comparison-table tr.ac-highlight {
  background: var(--ac-cream);
}

.ac-comparison-table tr.ac-highlight td {
  font-weight: 700;
  color: var(--ac-blue);
}

/* ============================================
   FAQ ACCORDION (native details/summary)
   ============================================ */
.ac-faq {
  max-width: var(--ac-container-narrow);
  margin: 0 auto;
}

.ac-faq details {
  background: var(--ac-white);
  border: var(--ac-border);
  border-radius: 8px;
  margin-bottom: 0.75rem;
  padding: 0;
  box-shadow: var(--ac-shadow);
  overflow: hidden;
}

.ac-faq summary {
  padding: 1.25rem 1.5rem;
  font-family: var(--ac-font-heading);
  font-weight: 700;
  color: var(--ac-navy);
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.ac-faq summary::-webkit-details-marker {
  display: none;
}

.ac-faq summary::after {
  content: "+";
  font-size: 1.5rem;
  color: var(--ac-gold);
  transition: transform 0.2s;
}

.ac-faq details[open] summary::after {
  transform: rotate(45deg);
}

.ac-faq details[open] summary {
  border-bottom: var(--ac-border);
}

.ac-faq-answer {
  padding: 1.25rem 1.5rem;
  color: var(--ac-grey);
  line-height: 1.7;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.ac-testimonial {
  background: var(--ac-white);
  border: var(--ac-border);
  border-radius: 8px;
  padding: 2rem;
  box-shadow: var(--ac-shadow);
  position: relative;
}

.ac-testimonial::before {
  content: """;
  font-family: var(--ac-font-scripture);
  font-size: 4rem;
  color: var(--ac-gold);
  opacity: 0.3;
  position: absolute;
  top: 0.5rem;
  left: 1rem;
  line-height: 1;
}

.ac-testimonial-quote {
  font-size: 1.05rem;
  color: var(--ac-navy);
  line-height: 1.7;
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
}

.ac-testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.ac-testimonial-name {
  font-family: var(--ac-font-heading);
  font-weight: 700;
  color: var(--ac-navy);
  font-size: 0.95rem;
}

.ac-testimonial-meta {
  font-size: 0.85rem;
  color: var(--ac-grey);
}

.ac-testimonial-program {
  display: inline-block;
  background: var(--ac-light-blue);
  color: var(--ac-blue);
  padding: 0.15rem 0.5rem;
  border-radius: 4px;
  font-size: 0.8rem;
  font-weight: 600;
}

.ac-testimonial-stars {
  color: var(--ac-gold);
  font-size: 1rem;
  margin-bottom: 0.5rem;
}

/* ============================================
   STEP PROCESS
   ============================================ */
.ac-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  counter-reset: step;
}

.ac-step {
  text-align: center;
  position: relative;
}

.ac-step-number {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--ac-blue);
  color: var(--ac-white);
  font-family: var(--ac-font-heading);
  font-weight: 700;
  font-size: 1.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
  counter-increment: step;
}

.ac-step h4 {
  font-size: 1rem;
  margin-bottom: 0.5rem;
  color: var(--ac-blue);
}

.ac-step p {
  font-size: 0.9rem;
  color: var(--ac-grey);
}

/* ============================================
   DISCLAIMER
   ============================================ */
.ac-disclaimer {
  color: var(--ac-grey);
  font-size: 0.85rem;
  text-align: center;
  padding: 1.5rem 1rem;
  border-top: var(--ac-border);
  margin-top: 2rem;
  line-height: 1.6;
}

.ac-disclaimer strong {
  color: var(--ac-grey);
}

/* ============================================
   FOOTER
   ============================================ */
.ac-footer {
  background: var(--ac-navy);
  color: var(--ac-white);
  padding: 3rem 1.5rem 1.5rem;
}

.ac-footer-inner {
  max-width: var(--ac-container-max);
  margin: 0 auto;
}

.ac-footer-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2rem;
  margin-bottom: 2rem;
}

.ac-footer h5 {
  color: var(--ac-gold);
  margin-bottom: 1rem;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.ac-footer ul {
  list-style: none;
}

.ac-footer ul li {
  margin-bottom: 0.5rem;
}

.ac-footer a {
  color: rgba(255,255,255,0.8);
  font-size: 0.9rem;
}

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

.ac-footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.15);
  padding-top: 1.5rem;
  text-align: center;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
}

.ac-footer-disclaimer {
  text-align: center;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
  margin-top: 1rem;
  line-height: 1.5;
}

/* ============================================
   VALUE CARDS
   ============================================ */
.ac-value-card {
  text-align: center;
  padding: 2rem 1.5rem;
}

.ac-value-card .ac-value-icon {
  width: 56px;
  height: 56px;
  margin: 0 auto 1rem;
  background: var(--ac-cream);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
}

.ac-value-card h4 {
  color: var(--ac-blue);
  margin-bottom: 0.5rem;
}

.ac-value-card p {
  color: var(--ac-grey);
  font-size: 0.95rem;
}

/* ============================================
   CONTENT BLOCKS
   ============================================ */
.ac-content-block {
  max-width: var(--ac-container-narrow);
  margin: 0 auto;
  padding: 2rem 0;
}

.ac-content-block h2 {
  color: var(--ac-blue);
  margin-bottom: 1rem;
}

.ac-content-block h3 {
  color: var(--ac-navy);
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.ac-content-block ul, .ac-content-block ol {
  margin-left: 1.5rem;
  margin-bottom: 1rem;
}

.ac-content-block li {
  margin-bottom: 0.5rem;
  color: var(--ac-navy);
}

/* ============================================
   INCLUDED FEATURES LIST
   ============================================ */
.ac-included {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1rem;
  max-width: 700px;
  margin: 0 auto;
}

.ac-included-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.75rem;
  background: var(--ac-white);
  border-radius: 6px;
  border: var(--ac-border);
}

.ac-included-check {
  color: var(--ac-gold);
  font-weight: 700;
  font-size: 1.2rem;
  flex-shrink: 0;
}

.ac-included-text strong {
  display: block;
  color: var(--ac-navy);
  font-size: 0.95rem;
}

.ac-included-text span {
  font-size: 0.85rem;
  color: var(--ac-grey);
}

/* ============================================
   CTA BANNER
   ============================================ */
.ac-cta-banner {
  background: var(--ac-blue);
  padding: 3.5rem 1.5rem;
  text-align: center;
  border-radius: 12px;
  margin: 2rem 0;
}

.ac-cta-banner h2 {
  color: var(--ac-white);
  margin-bottom: 1rem;
}

.ac-cta-banner p {
  color: rgba(255,255,255,0.85);
  font-size: 1.1rem;
  margin-bottom: 2rem;
}

/* ============================================
   CONTACT INFO
   ============================================ */
.ac-contact-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  max-width: 700px;
  margin: 0 auto;
}

.ac-contact-item {
  text-align: center;
  padding: 1.5rem;
  background: var(--ac-white);
  border: var(--ac-border);
  border-radius: 8px;
  box-shadow: var(--ac-shadow);
}

.ac-contact-item h4 {
  color: var(--ac-blue);
  margin-bottom: 0.5rem;
}

.ac-contact-item a {
  color: var(--ac-navy);
  font-weight: 600;
}

.ac-contact-item p {
  color: var(--ac-grey);
  font-size: 0.9rem;
  margin: 0;
}

/* ============================================
   RESPONSIVE — Mobile First Overrides
   ============================================ */
@media (max-width: 968px) {
  .ac-grid-4 { grid-template-columns: repeat(2, 1fr); }
  .ac-steps { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
  .ac-footer-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  h1 { font-size: 1.875rem; }
  h2 { font-size: 1.5rem; }
  h3 { font-size: 1.25rem; }
  
  .ac-hero h1 { font-size: 2rem; }
  .ac-hero p { font-size: 1.05rem; }
  
  .ac-grid-2, .ac-grid-3, .ac-grid-4 { grid-template-columns: 1fr; }
  .ac-steps { grid-template-columns: 1fr; }
  .ac-footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .ac-included { grid-template-columns: 1fr; }
  .ac-contact-grid { grid-template-columns: 1fr; }
  
  .ac-nav-toggle { display: flex; }
  .ac-nav-inner { flex-wrap: wrap; }
  .ac-nav-links {
    display: none;
    flex-direction: column;
    width: 100%;
    padding: 0;
    gap: 0;
    order: 3;
    max-height: calc(100vh - 60px);
    overflow-y: auto;
  }
  .ac-nav-links.open { display: flex; }
  .ac-nav-links > li {
    width: 100%;
  }
  .ac-nav-links > li > a {
    padding: 0.85rem 0.5rem;
    border-top: 1px solid rgba(255,255,255,0.12);
    font-size: 0.95rem;
  }
  .ac-nav-links > li > a::after { display: none; }
  /* Mobile dropdown — accordion style */
  .ac-nav-dropdown {
    position: static;
    opacity: 1;
    visibility: visible;
    transform: none;
    box-shadow: none;
    border-radius: 0;
    background: rgba(0,0,0,0.2);
    padding: 0;
    display: none;
    min-width: 100%;
  }
  .ac-nav-has-children.mobile-open > .ac-nav-dropdown {
    display: block;
  }
  .ac-nav-dropdown li a {
    padding: 0.7rem 1.5rem;
    color: rgba(255,255,255,0.85);
    font-size: 0.88rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    border-left: none;
  }
  .ac-nav-dropdown li a:hover {
    background: rgba(255,255,255,0.08);
    color: var(--ac-gold);
  }
  .ac-nav-has-children > a {
    display: flex;
    justify-content: space-between;
    width: 100%;
  }
  .ac-nav-has-children > a::after {
    margin-left: 0;
  }
  .ac-nav-has-children.mobile-open > a::after {
    transform: rotate(180deg);
  }
  .ac-nav-links a.ac-nav-cta {
    margin: 0.75rem 0.5rem;
    padding: 0.6rem 1.25rem;
    text-align: center;
    border-top: none;
  }
  .ac-nav-cta-item { margin-left: 0; width: auto; }
  
  .ac-pricing-table, .ac-comparison-table { font-size: 0.85rem; }
  .ac-pricing-table th, .ac-pricing-table td, .ac-comparison-table th, .ac-comparison-table td { padding: 0.625rem 0.5rem; }
  
  .ac-section { padding: 2.5rem 1rem; }
  .ac-cta-banner { padding: 2rem 1.5rem; }
}

@media (max-width: 480px) {
  h1 { font-size: 1.5rem; }
  .ac-hero { padding: 2.5rem 1rem; }
  .ac-hero h1 { font-size: 1.625rem; }
  .ac-tier-price { font-size: 2rem; }
}


/* ============================================
   BLOG STYLES — native to this theme
   ============================================ */

.site-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 120px 20px 60px;
}

.blog-list .post,
.archive-list .post {
  padding: 2rem 0;
  border-bottom: 1px solid #e5e5e5;
}

.blog-list .post:last-child,
.archive-list .post:last-child {
  border-bottom: none;
}

.blog-list .entry-title,
.archive-list .entry-title {
  font-family: 'Merriweather', 'Lora', serif !important;
  font-size: 1.75rem !important;
  color: #0A3161 !important;
  margin-bottom: 0.5rem !important;
  display: block !important;
}

.blog-list .entry-title a,
.archive-list .entry-title a {
  color: #0A3161;
  text-decoration: none;
}

.blog-list .entry-title a:hover,
.archive-list .entry-title a:hover {
  color: #B22234;
}

.entry-meta {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  font-size: 0.875rem;
  color: #6B7280;
  margin-bottom: 1rem;
}

.entry-meta a {
  color: #0A3161;
  text-decoration: none;
}

.entry-excerpt {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  line-height: 1.7;
  color: #333;
}

.entry-excerpt p {
  margin-bottom: 0.75rem;
}

.read-more {
  color: #D44E5C;
  text-decoration: none;
  font-weight: 600;
}

.read-more:hover {
  text-decoration: underline;
}

/* Single post */
.single .entry-header,
.single .entry-content,
.single .post-navigation {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.single .entry-title {
  font-family: 'Merriweather', 'Lora', serif !important;
  font-size: 2.25rem !important;
  color: #0A3161 !important;
  margin-bottom: 0.75rem !important;
  display: block !important;
}

.single .entry-content {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  line-height: 1.7;
  color: #333;
}

.single .entry-content h2 {
  font-family: 'Merriweather', 'Lora', serif;
  color: #0A3161;
  margin-top: 2rem;
}

.single .entry-content h3 {
  font-family: 'Merriweather', 'Lora', serif;
  color: #0A3161;
}

.single .entry-content p {
  margin-bottom: 1rem;
}

.single .entry-content ul,
.single .entry-content ol {
  margin-bottom: 1rem;
  padding-left: 2rem;
}

.post-navigation {
  display: flex;
  justify-content: space-between;
  padding: 2rem 0;
  border-top: 1px solid #e5e5e5;
  margin-top: 3rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
}

.post-navigation a {
  color: #0A3161;
  text-decoration: none;
  font-family: 'Inter', sans-serif;
}

.post-navigation a:hover {
  color: #D44E5C;
}

/* Pagination */
.pagination {
  margin-top: 3rem;
  text-align: center;
  font-family: 'Inter', sans-serif;
}

.pagination .page-numbers {
  padding: 0.5rem 1rem;
  margin: 0 0.25rem;
  border: 1px solid #e5e5e5;
  border-radius: 4px;
  color: #0A3161;
  text-decoration: none;
}

.pagination .page-numbers.current {
  background: #0A3161;
  color: #fff;
  border-color: #0A3161;
}

.pagination .page-numbers:hover:not(.current) {
  background: #f0f0f0;
}

/* Standard page (legal pages etc.) */
.page-template-default .site-content {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 60px;
}

.page-template-default .entry-title {
  font-family: 'Merriweather', 'Lora', serif !important;
  color: #0A3161 !important;
  font-size: 2rem !important;
  margin-bottom: 1.5rem !important;
  display: block !important;
}

.page-template-default .entry-content h2 {
  font-family: 'Merriweather', 'Lora', serif;
  color: #0A3161;
  margin-top: 1.5rem;
}

.page-template-default .entry-content p {
  font-family: 'Inter', 'Source Sans Pro', sans-serif;
  line-height: 1.7;
  color: #333;
  margin-bottom: 1rem;
}

.page-header-blog {
  max-width: 800px;
  margin: 0 auto;
  padding: 120px 20px 0;
}

.page-header-blog h1 {
  font-family: 'Merriweather', 'Lora', serif;
  font-size: 2.5rem;
  color: #0A3161;
  margin-bottom: 0.5rem;
}

.page-header-blog .archive-description {
  font-family: 'Inter', sans-serif;
  color: #6B7280;
  margin-bottom: 2rem;
}


/* ============================================
 * Theme Component Classes (moved from inline styles)
 * ============================================ */

/* Header logo image (header.php) */
.ac-nav-logo-img {
    height: auto;
    max-height: 45px;
    width: auto;
}

/* Footer (footer.php) */
.ac-footer-tagline {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.ac-footer-legal-bar {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    padding-top: 1rem;
    margin-top: 1rem;
    text-align: center;
}

.ac-footer-legal-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
}

.ac-footer-legal-link {
    color: rgba(255, 255, 255, 0.7);
}

/* 404 page (404.php) */
.ac-404-container {
    text-align: center;
    padding-top: 180px;
    padding-bottom: 80px;
}

.ac-404-title {
    font-family: 'Merriweather', serif;
    font-size: 3rem;
    color: #0A3161;
    margin-bottom: 1rem;
}

.ac-404-text {
    font-family: 'Inter', sans-serif;
    color: #6B7280;
    margin-bottom: 2rem;
}

.ac-404-btn {
    display: inline-block;
    padding: 0.75rem 2rem;
    background: #D44E5C;
    color: #fff;
    text-decoration: none;
    border-radius: 6px;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
}

.ac-404-btn:hover {
    background: #C13D4B;
}


/* ============================================
   HERO V2 — clean split layout (no dark overlay)
   ============================================ */
.ac-hero-v2 {
  background: var(--ac-cream);
  padding: 5rem 1.5rem;
  overflow: hidden;
}

.ac-hero-v2-inner {
  max-width: var(--ac-container-max);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.ac-hero-v2-text {
  text-align: left;
}

.ac-eyebrow {
  display: inline-block;
  font-family: var(--ac-font-body);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ac-red);
  margin-bottom: 1rem;
}

.ac-hero-v2 h1 {
  font-size: 2.75rem;
  line-height: 1.2;
  margin-bottom: 1.25rem;
  color: var(--ac-navy);
}

.ac-hero-v2 h1 .ac-underline {
  text-decoration: underline;
  text-decoration-color: var(--ac-cta);
  text-decoration-thickness: 3px;
  text-underline-offset: 4px;
}

.ac-hero-v2 p {
  font-size: 1.15rem;
  color: var(--ac-grey);
  margin-bottom: 2rem;
  max-width: 480px;
  line-height: 1.6;
}

.ac-hero-v2-image {
  position: relative;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--ac-shadow-lg);
}

.ac-hero-v2-image img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}

@media (max-width: 900px) {
  .ac-hero-v2-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  .ac-hero-v2-text {
    text-align: center;
  }
  .ac-hero-v2 p {
    margin-left: auto;
    margin-right: auto;
  }
  .ac-hero-v2 h1 {
    font-size: 2rem;
  }
  .ac-hero-v2-image {
    order: -1;
    aspect-ratio: 16/9;
  }
  .ac-hero-v2-image img {
    aspect-ratio: 16/9;
  }
}

/* Value band — simple navy strip with dividers, below hero */
.ac-value-band {
  background: var(--ac-navy);
  padding: 2rem 1.5rem;
}

.ac-value-band-inner {
  max-width: var(--ac-container-max);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
  text-align: center;
}

.ac-value-band-item {
  color: var(--ac-white);
  font-family: var(--ac-font-body);
  font-size: 1rem;
  font-weight: 500;
  letter-spacing: 0.02em;
}

.ac-value-band-divider {
  width: 1px;
  height: 1.5rem;
  background: rgba(255,255,255,0.3);
}

@media (max-width: 700px) {
  .ac-value-band-divider { display: none; }
  .ac-value-band-inner { gap: 1rem; }
}

/* Scripture strip — its own clean section, not crammed in hero */
.ac-scripture-band {
  background: var(--ac-white);
  padding: 2.5rem 1.5rem;
  text-align: center;
  border-bottom: 1px solid #eee;
}

.ac-scripture-band .scripture {
  font-family: var(--ac-font-scripture);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--ac-gold);
  max-width: 700px;
  margin: 0 auto;
}

.ac-scripture-band .scripture-ref {
  display: block;
  font-size: 0.95rem;
  color: var(--ac-grey);
  margin-top: 0.5rem;
  font-style: normal;
}

/* Simple inner-page hero — no image, no overlay, just clean text */
.ac-hero-simple {
  background: var(--ac-cream);
  padding: 4rem 1.5rem;
  text-align: center;
}

.ac-hero-simple-inner {
  max-width: 720px;
  margin: 0 auto;
}

.ac-hero-simple h1 {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: var(--ac-navy);
}

.ac-hero-simple p {
  font-size: 1.15rem;
  color: var(--ac-grey);
  line-height: 1.6;
}
