  /* ============================================
     COLOR SYSTEM — Light Blue + Yellow + Black
     ============================================ */
  :root {
    --blue-deep: #1B4D6E;       /* Deep navy-blue for headlines */
    --blue-mid: #4A90B8;        /* Mid light blue */
    --blue-light: #B8DCEC;      /* Soft sky blue */
    --blue-pale: #E6F3F9;       /* Pale wash background */
    --yellow: #F5C518;          /* Bold sunshine yellow */
    --yellow-soft: #FCE49A;     /* Soft pale yellow */
    --yellow-deep: #D4A60A;     /* Darker yellow accent */
    --black: #0F0F0F;           /* Body text black */
    --black-soft: #2A2A2A;      /* Softer black */
    --white: #FFFFFF;
    --cream: #FFFCF2;           /* Warm cream for sections */
    --gray: #6B6B6B;
    --gray-light: #E8E8E8;

    --font-display: 'Playfair Display', Georgia, serif;
    --font-bold: 'Bebas Neue', 'Arial Black', sans-serif;
    --font-body: 'Inter', -apple-system, sans-serif;

    --shadow-card: 0 4px 24px rgba(27, 77, 110, 0.08);
    --shadow-hover: 0 12px 40px rgba(27, 77, 110, 0.18);
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--font-body);
    color: var(--black);
    background: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
  }

  /* ============================================
     TYPOGRAPHY
     ============================================ */
  h1, h2, h3, h4 {
    font-family: var(--font-display);
    color: var(--black);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.01em;
  }

  .display {
    font-family: var(--font-bold);
    letter-spacing: 0.02em;
  }

  /* ============================================
     NAVIGATION
     ============================================ */
  .nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: var(--white);
    border-bottom: 3px solid var(--yellow);
    box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  }

  .nav-inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 16px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
  }

  .logo {
    display: flex;
    align-items: center;
    gap: 12px;
    cursor: pointer;
    text-decoration: none;
    color: var(--black);
  }

  .logo-mark {
    width: 56px;
    height: 56px;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
    background-image: url('../img/hero-bg-1.jpeg');
    background-size: cover;
    background-position: center;
    border: 2px solid var(--blue-deep);
  }

  .logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1;
  }
  .logo-text .top {
    font-family: var(--font-bold);
    font-size: 12px;
    letter-spacing: 0.15em;
    color: var(--blue-deep);
  }
  .logo-text .main {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 20px;
    color: var(--black);
  }

  .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
  }

  .nav-link {
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--black);
    padding: 10px 14px;
    border-radius: 6px;
    transition: all 0.2s ease;
    position: relative;
    text-decoration: none;
    display: inline-block;
  }
  .nav-link:hover {
    background: var(--blue-pale);
    color: var(--blue-deep);
  }
  .nav-link.active {
    background: var(--yellow);
    color: var(--black);
  }

  .lang-toggle {
    display: flex;
    background: var(--blue-pale);
    border-radius: 8px;
    padding: 4px;
    border: 2px solid var(--blue-light);
  }
  .lang-btn {
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px 12px;
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.1em;
    border-radius: 5px;
    color: var(--blue-deep);
    transition: all 0.2s ease;
  }
  .lang-btn.active {
    background: var(--yellow);
    color: var(--black);
  }

  .menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
  }
  .menu-toggle span {
    display: block;
    width: 24px;
    height: 3px;
    background: var(--black);
    margin: 5px 0;
    border-radius: 2px;
    transition: all 0.3s ease;
  }

  /* ============================================
     PAGE SYSTEM
     ============================================ */
  .page { display: none; animation: fadeIn 0.4s ease-out; }
  .page.active { display: block; }

  @keyframes fadeIn {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
  }

  /* ============================================
     HERO
     ============================================ */
  .hero {
    position: relative;
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--blue-light) 100%);
    overflow: hidden;
    padding: 100px 32px 120px;
  }
  .hero::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 500px;
    height: 500px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.2;
    filter: blur(20px);
  }
  .hero::after {
    content: "";
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: var(--yellow-soft);
    border-radius: 50%;
    opacity: 0.5;
    filter: blur(40px);
  }

  .hero-inner {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
  }

  .hero-eyebrow {
    display: inline-block;
    background: var(--yellow);
    color: var(--black);
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.2em;
    padding: 8px 18px;
    margin-bottom: 24px;
    border: 2px solid var(--black);
  }

  .hero-title {
    font-size: clamp(48px, 7vw, 88px);
    line-height: 0.95;
    margin-bottom: 24px;
    color: var(--black);
  }
  .hero-title .accent {
    color: var(--blue-deep);
    font-style: italic;
  }

  .hero-verse {
    background: var(--white);
    border-left: 6px solid var(--yellow);
    padding: 24px 28px;
    margin: 32px 0;
    box-shadow: var(--shadow-card);
  }
  .hero-verse p {
    font-family: var(--font-display);
    font-size: 18px;
    font-style: italic;
    color: var(--black-soft);
    margin-bottom: 8px;
  }
  .hero-verse cite {
    font-family: var(--font-bold);
    font-style: normal;
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--blue-deep);
  }

  .hero-cta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-top: 32px;
  }

  .btn {
    display: inline-block;
    padding: 16px 32px;
    font-family: var(--font-bold);
    font-size: 16px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 3px solid var(--black);
    cursor: pointer;
    transition: all 0.2s ease;
    background: none;
    color: var(--black);
  }
  .btn-primary {
    background: var(--yellow);
    color: var(--black);
    box-shadow: 6px 6px 0 var(--black);
  }
  .btn-primary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--black);
  }
  .btn-secondary {
    background: var(--white);
    color: var(--black);
    box-shadow: 6px 6px 0 var(--blue-deep);
  }
  .btn-secondary:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--blue-deep);
  }

  .hero-visual {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .hero-card {
    background: var(--white);
    padding: 48px 40px;
    border: 4px solid var(--black);
    box-shadow: 12px 12px 0 var(--yellow);
    transform: rotate(-2deg);
    text-align: center;
    max-width: 380px;
  }
  .hero-card-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 20px;
    background: var(--blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--yellow);
    font-size: 40px;
    border: 3px solid var(--yellow);
  }
  .hero-card h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .hero-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
  }
  .hero-card .schedule-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--gray-light);
    font-size: 14px;
  }
  .hero-card .schedule-row:last-child { border-bottom: none; }
  .hero-card .schedule-row .day { font-weight: 700; color: var(--blue-deep); }
  .hero-card .schedule-row .time { color: var(--black); font-family: var(--font-bold); letter-spacing: 0.05em; }

  /* ============================================
     SECTIONS
     ============================================ */
  section { padding: 100px 32px; }
  .section-inner { max-width: 1200px; margin: 0 auto; }

  .section-eyebrow {
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.25em;
    color: var(--blue-deep);
    margin-bottom: 16px;
    display: block;
  }

  .section-title {
    font-size: clamp(36px, 5vw, 56px);
    margin-bottom: 24px;
    color: var(--black);
  }

  .section-lead {
    font-size: 19px;
    color: var(--gray);
    max-width: 720px;
    margin-bottom: 48px;
    line-height: 1.7;
  }

  /* About strip */
  .about-strip {
    background: var(--blue-deep);
    color: var(--white);
    padding: 80px 32px;
    position: relative;
  }
  .about-strip .section-title { color: var(--white); }
  .about-strip .section-eyebrow { color: var(--yellow); }
  .about-strip .section-lead { color: rgba(255,255,255,0.8); }
  .about-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 48px;
  }
  .about-card {
    border-top: 4px solid var(--yellow);
    padding-top: 24px;
  }
  .about-card h4 {
    color: var(--white);
    font-size: 22px;
    margin-bottom: 12px;
  }
  .about-card p {
    color: rgba(255,255,255,0.85);
    font-size: 15px;
    line-height: 1.7;
  }
  .about-card .num {
    font-family: var(--font-bold);
    font-size: 14px;
    color: var(--yellow);
    letter-spacing: 0.15em;
    display: block;
    margin-bottom: 12px;
  }

  /* ============================================
     SERVICE CARDS GRID
     ============================================ */
  .services-section {
    background: var(--yellow-soft);
  }
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .service-card {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 32px 28px;
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    text-align: left;
    font-family: inherit;
    color: inherit;
  }
  .service-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--yellow);
    transition: height 0.3s ease;
  }
  .service-card:hover {
    transform: translateY(-6px);
    box-shadow: 8px 8px 0 var(--blue-deep);
  }
  .service-card:hover::before {
    height: 100%;
    opacity: 0.08;
  }
  .service-icon {
    width: 64px;
    height: 64px;
    background: var(--blue-pale);
    border: 2px solid var(--blue-deep);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    font-size: 28px;
    position: relative;
    z-index: 1;
  }
  .service-card h3 {
    font-size: 22px;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
  }
  .service-card p {
    color: var(--gray);
    font-size: 15px;
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
  }
  .service-card .read-more {
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--blue-deep);
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    gap: 6px;
  }
  .service-card .read-more::after {
    content: "→";
    transition: transform 0.2s ease;
  }
  .service-card:hover .read-more::after { transform: translateX(4px); }

  /* ============================================
     PASTORS / TEAM
     ============================================ */
  .team-section { background: var(--blue-pale); }
  .team-card {
    background: linear-gradient(135deg, var(--blue-pale) 0%, var(--white) 100%);
    border: 3px solid var(--black);
    padding: 48px;
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 48px;
    align-items: center;
    box-shadow: 8px 8px 0 var(--yellow);
  }
  .team-portrait {
    width: 200px;
    height: 200px;
    background: var(--cream);
    border-radius: 50%;
    flex-shrink: 0;
    border: 6px solid var(--yellow);
    background-image: url('../img/hero-bg-1.jpeg');
    background-size: cover;
    background-position: center;
    box-shadow: 0 8px 24px rgba(27, 77, 110, 0.2);
  }
  .team-info h3 {
    font-size: 32px;
    margin-bottom: 8px;
  }
  .team-info .role {
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--blue-deep);
    margin-bottom: 16px;
    display: block;
  }

  /* ============================================
     CONTACT / CTA
     ============================================ */
  .contact-section {
    background: var(--yellow);
    color: var(--black);
    padding: 100px 32px;
    border-top: 6px solid var(--black);
    border-bottom: 6px solid var(--black);
  }
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
  }
  .contact-info h3 {
    font-size: 18px;
    font-family: var(--font-bold);
    letter-spacing: 0.2em;
    margin-bottom: 12px;
    margin-top: 24px;
  }
  .contact-info h3:first-child { margin-top: 0; }
  .contact-info p, .contact-info a {
    font-size: 18px;
    color: var(--black);
    text-decoration: none;
    line-height: 1.7;
  }
  .contact-info a:hover { text-decoration: underline; }
  .contact-schedule {
    background: var(--white);
    padding: 32px;
    border: 3px solid var(--black);
  }
  .contact-schedule h3 {
    font-family: var(--font-display);
    font-size: 28px;
    margin-bottom: 24px;
    text-transform: none;
    letter-spacing: 0;
  }
  .schedule-row-full {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 14px 0;
    border-bottom: 2px solid var(--gray-light);
  }
  .schedule-row-full:last-child { border-bottom: none; }
  .schedule-row-full .day {
    font-family: var(--font-bold);
    font-size: 16px;
    letter-spacing: 0.1em;
    color: var(--blue-deep);
  }
  .schedule-row-full .desc {
    font-size: 15px;
    color: var(--black);
    flex: 1;
    text-align: center;
    padding: 0 16px;
  }
  .schedule-row-full .time {
    font-family: var(--font-bold);
    font-size: 16px;
    letter-spacing: 0.05em;
    background: var(--yellow);
    padding: 4px 10px;
    border: 2px solid var(--black);
  }

  /* ============================================
     FOOTER
     ============================================ */
  footer {
    background: var(--black);
    color: var(--white);
    padding: 64px 32px 32px;
  }
  .footer-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 48px;
  }
  .footer-col h4 {
    color: var(--yellow);
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.2em;
    margin-bottom: 20px;
  }
  .footer-col p, .footer-col a {
    color: rgba(255,255,255,0.7);
    font-size: 14px;
    text-decoration: none;
    line-height: 1.9;
    display: block;
    background: none;
    border: none;
    padding: 0;
    cursor: pointer;
    text-align: left;
    font-family: inherit;
  }
  .footer-col a:hover { color: var(--yellow); }
  .footer-brand .main {
    font-family: var(--font-display);
    font-weight: 900;
    font-size: 22px;
    color: var(--white);
    margin-bottom: 8px;
  }
  .footer-brand .sub {
    font-size: 14px;
    color: rgba(255,255,255,0.6);
    margin-bottom: 16px;
  }
  .footer-bottom {
    max-width: 1200px;
    margin: 48px auto 0;
    padding-top: 24px;
    border-top: 1px solid rgba(255,255,255,0.1);
    text-align: center;
    color: rgba(255,255,255,0.5);
    font-size: 13px;
  }

  /* ============================================
     SUPPORT SERVICE DETAIL PAGES
     ============================================ */
  .service-hero {
    background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue-mid) 100%);
    color: var(--white);
    padding: 100px 32px;
    position: relative;
    overflow: hidden;
  }
  .service-hero::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: var(--yellow);
    border-radius: 50%;
    opacity: 0.15;
    filter: blur(60px);
  }
  .service-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
  }
  .breadcrumb {
    font-family: var(--font-bold);
    font-size: 13px;
    letter-spacing: 0.2em;
    color: var(--yellow);
    margin-bottom: 24px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0;
    text-decoration: none;
    display: inline-block;
  }
  .breadcrumb:hover { text-decoration: underline; }
  .service-hero h1 {
    color: var(--white);
    font-size: clamp(40px, 6vw, 72px);
    margin-bottom: 24px;
  }
  .service-hero .lead {
    font-size: 20px;
    color: rgba(255,255,255,0.9);
    max-width: 800px;
    line-height: 1.6;
  }

  .service-content {
    padding: 80px 32px;
    background: var(--white);
  }
  .service-content-inner {
    max-width: 900px;
    margin: 0 auto;
  }
  .service-content h2 {
    font-size: 36px;
    margin: 48px 0 20px;
    color: var(--black);
  }
  .service-content h2:first-child { margin-top: 0; }
  .service-content p {
    font-size: 17px;
    line-height: 1.8;
    color: var(--black-soft);
    margin-bottom: 20px;
  }
  .service-content ul {
    margin: 20px 0;
    padding-left: 0;
    list-style: none;
  }
  .service-content li {
    font-size: 17px;
    line-height: 1.8;
    color: var(--black-soft);
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
  }
  .service-content li::before {
    content: "✦";
    color: var(--yellow-deep);
    position: absolute;
    left: 0;
    top: 0;
    font-size: 18px;
    font-weight: bold;
  }

  .verse-pull {
    background: var(--blue-pale);
    border-left: 6px solid var(--yellow);
    padding: 32px 40px;
    margin: 48px 0;
  }
  .verse-pull p {
    font-family: var(--font-display);
    font-size: 22px !important;
    font-style: italic;
    color: var(--blue-deep);
    margin-bottom: 12px !important;
  }
  .verse-pull cite {
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--blue-deep);
    font-style: normal;
  }

  .help-box {
    background: var(--yellow);
    border: 4px solid var(--black);
    padding: 32px 36px;
    margin: 48px 0;
    box-shadow: 8px 8px 0 var(--black);
  }
  .help-box h3 {
    font-size: 24px;
    margin-bottom: 12px;
  }
  .help-box p {
    color: var(--black) !important;
    margin-bottom: 16px !important;
  }
  .help-box .phone {
    font-family: var(--font-bold);
    font-size: 32px;
    color: var(--black);
    text-decoration: none;
    display: block;
    letter-spacing: 0.05em;
  }
  .help-box .phone:hover { text-decoration: underline; }

  .crisis-alert {
    background: #FEE2E2;
    border-left: 6px solid #DC2626;
    padding: 24px 32px;
    margin: 32px 0;
  }
  .crisis-alert h3 {
    color: #991B1B;
    font-size: 20px;
    margin-bottom: 12px;
  }
  .crisis-alert p {
    color: #7F1D1D;
    margin-bottom: 8px !important;
    font-size: 16px !important;
  }
  .crisis-alert strong { color: #991B1B; }


  /* ============================================
     FAQ PAGE
     ============================================ */
  .faq-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 48px;
    justify-content: center;
  }
  .faq-cat-btn {
    background: var(--white);
    border: 3px solid var(--black);
    padding: 10px 20px;
    font-family: var(--font-bold);
    font-size: 13px;
    letter-spacing: 0.15em;
    cursor: pointer;
    transition: all 0.2s ease;
    color: var(--black);
  }
  .faq-cat-btn:hover { background: var(--blue-pale); }
  .faq-cat-btn.active {
    background: var(--yellow);
    box-shadow: 4px 4px 0 var(--black);
    transform: translate(-2px, -2px);
  }
  .faq-section-title {
    font-family: var(--font-bold);
    font-size: 18px;
    letter-spacing: 0.2em;
    color: var(--blue-deep);
    margin: 48px 0 20px;
    padding-bottom: 12px;
    border-bottom: 3px solid var(--yellow);
  }
  .faq-section-title:first-of-type { margin-top: 0; }
  .faq-item {
    background: var(--white);
    border: 3px solid var(--black);
    margin-bottom: 16px;
    overflow: hidden;
    transition: all 0.2s ease;
  }
  .faq-item:hover {
    box-shadow: 6px 6px 0 var(--yellow);
    transform: translate(-2px, -2px);
  }
  .faq-item.open {
    box-shadow: 6px 6px 0 var(--blue-deep);
    transform: translate(-2px, -2px);
  }
  .faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 22px 28px;
    text-align: left;
    cursor: pointer;
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    color: var(--black);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    line-height: 1.3;
  }
  .faq-question:hover { color: var(--blue-deep); }
  .faq-toggle {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--blue-pale);
    border: 2px solid var(--blue-deep);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue-deep);
    font-family: var(--font-bold);
    font-size: 22px;
    line-height: 1;
    transition: all 0.3s ease;
  }
  .faq-item.open .faq-toggle {
    background: var(--yellow);
    border-color: var(--black);
    transform: rotate(45deg);
  }
  .faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
  }
  .faq-item.open .faq-answer { max-height: 1500px; }
  .faq-answer-inner {
    padding: 20px 28px 24px;
    border-top: 2px solid var(--gray-light);
  }
  .faq-answer-inner p {
    font-size: 16px !important;
    line-height: 1.7 !important;
    color: var(--black-soft) !important;
    margin-bottom: 14px !important;
  }
  .faq-answer-inner p:last-child { margin-bottom: 0 !important; }
  .faq-answer-inner a {
    color: var(--blue-deep);
    font-weight: 600;
    cursor: pointer;
  }
  .faq-answer-inner ul { margin: 12px 0 !important; padding-left: 0; }
  .faq-answer-inner li {
    font-size: 16px !important;
    line-height: 1.7 !important;
    margin-bottom: 8px !important;
  }
  .faq-cta-banner {
    background: var(--blue-deep);
    color: var(--white);
    padding: 48px 40px;
    margin-top: 64px;
    text-align: center;
    border: 4px solid var(--black);
    box-shadow: 10px 10px 0 var(--yellow);
  }
  .faq-cta-banner h3 {
    color: var(--white);
    font-size: 32px;
    margin-bottom: 12px;
  }
  .faq-cta-banner p {
    color: rgba(255,255,255,0.9);
    font-size: 17px;
    margin-bottom: 24px;
  }
  .faq-cta-banner .phone-big {
    font-family: var(--font-bold);
    font-size: 36px;
    color: var(--yellow);
    text-decoration: none;
    letter-spacing: 0.05em;
    display: block;
    margin-top: 8px;
  }
  .faq-cta-banner .phone-big:hover { text-decoration: underline; }


  /* Facebook link / button */
  .fb-link {
    display: inline-flex !important;
    align-items: center;
    gap: 10px;
    background: var(--black);
    color: var(--yellow) !important;
    padding: 12px 22px;
    border: 3px solid var(--black);
    text-decoration: none;
    font-family: var(--font-bold);
    font-size: 15px;
    letter-spacing: 0.15em;
    margin-top: 12px;
    transition: all 0.2s ease;
    box-shadow: 4px 4px 0 var(--blue-deep);
  }
  .fb-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 6px 6px 0 var(--blue-deep);
    background: var(--blue-deep);
    color: var(--yellow) !important;
    text-decoration: none !important;
  }
  .fb-link svg { display: block; }

  /* Facebook icon button (footer) */
  .fb-icon-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--yellow);
    color: var(--black) !important;
    border-radius: 50%;
    transition: all 0.2s ease;
    text-decoration: none !important;
  }
  .fb-icon-btn:hover {
    background: var(--white);
    transform: translateY(-2px);
  }
  .fb-icon-btn svg { display: block; }

  /* ============================================
     RESPONSIVE
     ============================================ */
  @media (max-width: 900px) {
    .nav-links { display: none; position: absolute; top: 100%; right: 0; background: var(--white); flex-direction: column; padding: 16px; min-width: 200px; box-shadow: 0 8px 24px rgba(0,0,0,0.1); border-top: 3px solid var(--yellow); }
    .nav-links.open { display: flex; }
    .menu-toggle { display: block; }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-visual { order: -1; }
    .hero-card { transform: rotate(0deg); max-width: 100%; }
    .about-grid, .services-grid { grid-template-columns: 1fr; }
    .team-card { grid-template-columns: 1fr; text-align: center; padding: 32px; }
    .team-portrait { margin: 0 auto; }
    .contact-grid, .footer-inner { grid-template-columns: 1fr; gap: 32px; }
    section { padding: 64px 24px; }
    .hero { padding: 64px 24px 80px; }
    .schedule-row-full { flex-direction: column; align-items: flex-start; gap: 6px; }
    .schedule-row-full .desc { text-align: left; padding: 0; }
  }
  @media (max-width: 600px) {
    .nav-inner { padding: 12px 20px; }
    .logo-text .top { font-size: 10px; }
    .logo-text .main { font-size: 16px; }
    .services-grid { grid-template-columns: 1fr; }
  }

  /* ============================================
     LIGHT BLUE + LIGHT YELLOW ACCENT PALETTE
     Layered on top of the existing rules to bring
     more of the soft sky-blue and pale-yellow tones
     into section rhythms and interactive states.
     ============================================ */

  /* About-card hover gets a warm yellow wash */
  .about-card { transition: background 0.2s ease, transform 0.2s ease; }
  .about-card:hover {
    background: var(--yellow-soft);
    transform: translateY(-3px);
  }

  /* Service-card hover gets a cool light-blue wash */
  .service-card { transition: background 0.2s ease, transform 0.2s ease; }
  .service-card:hover {
    background: var(--blue-pale);
  }

  /* FAQ item open state gets a layered blue/yellow accent */
  .faq-item.open {
    background: var(--blue-pale);
  }
  .faq-item.open .faq-question {
    background: var(--yellow-soft);
  }

  /* Schedule rows on the home hero card alternate blue/yellow tint */
  .hero-card .schedule-row:nth-child(odd)  { background: rgba(232, 243, 249, 0.6); }
  .hero-card .schedule-row:nth-child(even) { background: rgba(252, 228, 154, 0.4); }

  /* Lang-toggle inactive button shows a light blue chip */
  .lang-btn:not(.active) {
    background: var(--blue-pale);
  }

  /* Section utility classes for the inline FAQ blocks etc. */
  .bg-soft-blue   { background: var(--blue-pale)   !important; }
  .bg-soft-yellow { background: var(--yellow-soft) !important; }

  /* ============================================
     DYNAMIC BUTTON POLISH
     Smooth transitions, hover lift, gradient sweep,
     press feedback, focus-visible outlines, animated
     underlines on text links, pulse on primary CTAs.
     ============================================ */

  /* Universal smooth transition baseline for everything clickable */
  .btn, .nav-link, .lang-btn, .faq-cat-btn, .faq-question,
  .breadcrumb, .learn-more, .fb-link, .phone, .phone-big {
    transition:
      transform 0.2s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.2s ease,
      background-color 0.25s ease,
      color 0.2s ease,
      border-color 0.2s ease;
    will-change: transform;
  }

  /* ---------- Primary buttons (.btn) — pop on hover, settle on press ---------- */
  .btn {
    position: relative;
    overflow: hidden;
    isolation: isolate;
  }
  /* Gradient sweep that wipes across on hover */
  .btn::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(120deg,
      transparent 0%,
      rgba(255, 255, 255, 0.35) 50%,
      transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.55s ease;
    pointer-events: none;
    z-index: 1;
  }
  .btn:hover::after { transform: translateX(100%); }

  /* Override the simpler hover rules with deeper lift + bigger shadow */
  .btn-primary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--black);
  }
  .btn-primary:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--black);
  }
  .btn-secondary:hover {
    transform: translate(-3px, -3px);
    box-shadow: 10px 10px 0 var(--blue-deep);
    background: var(--blue-pale);
  }
  .btn-secondary:active {
    transform: translate(2px, 2px);
    box-shadow: 3px 3px 0 var(--blue-deep);
  }

  /* ---------- Subtle pulse on the most important calls-to-action ---------- */
  @keyframes adv-pulse {
    0%, 100% { box-shadow: 6px 6px 0 var(--black), 0 0 0 0 rgba(245, 197, 24, 0.4); }
    50%      { box-shadow: 6px 6px 0 var(--black), 0 0 0 12px rgba(245, 197, 24, 0); }
  }
  .hero-cta .btn-primary {
    animation: adv-pulse 2.6s ease-in-out infinite;
  }
  .hero-cta .btn-primary:hover {
    animation: none; /* stop pulsing while user is interacting */
  }
  @media (prefers-reduced-motion: reduce) {
    .hero-cta .btn-primary { animation: none; }
  }

  /* ---------- Nav links — animated underline that draws in on hover ---------- */
  .nav-link {
    overflow: hidden;
  }
  .nav-link::after {
    content: "";
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 4px;
    height: 3px;
    background: var(--yellow);
    transform: scaleX(0);
    transform-origin: left center;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 2px;
  }
  .nav-link:hover::after { transform: scaleX(1); }
  .nav-link.active::after { transform: scaleX(1); background: var(--black); }

  /* ---------- Language toggle — smoother spring on the chip ---------- */
  .lang-btn {
    transform-origin: center;
  }
  .lang-btn:hover {
    transform: scale(1.06);
    color: var(--black);
  }
  .lang-btn:active { transform: scale(0.96); }

  /* ---------- FAQ category chips — lift + tilt on hover ---------- */
  .faq-cat-btn {
    transform-origin: center bottom;
  }
  .faq-cat-btn:hover {
    transform: translateY(-2px) rotate(-1deg);
    background: var(--yellow-soft);
  }
  .faq-cat-btn.active {
    transform: translateY(-1px);
  }

  /* ---------- FAQ accordion question — chevron bump + background slide ---------- */
  .faq-question:hover .faq-toggle {
    transform: scale(1.08);
    background: var(--yellow-soft);
  }
  .faq-item.open .faq-toggle {
    /* keep the rotation rule from earlier; add scale up too */
    transform: rotate(45deg) scale(1.05);
  }

  /* ---------- Service cards — depth lift on hover ---------- */
  .service-card {
    transform-origin: center;
    transition:
      transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease,
      background-color 0.25s ease;
  }
  .service-card:hover {
    transform: translateY(-6px) scale(1.02);
    box-shadow: 0 18px 40px rgba(27, 77, 110, 0.18);
  }
  .service-card:hover .learn-more {
    color: var(--blue-deep);
    letter-spacing: 0.18em;
  }
  .service-card .learn-more {
    transition: color 0.25s ease, letter-spacing 0.25s ease;
  }

  /* ---------- About cards — subtle scale boost with hover ---------- */
  .about-card {
    transition:
      background 0.25s ease,
      transform 0.3s cubic-bezier(0.34, 1.56, 0.64, 1),
      box-shadow 0.3s ease;
  }
  .about-card:hover {
    transform: translateY(-4px) scale(1.015);
    box-shadow: 0 16px 32px rgba(27, 77, 110, 0.14);
  }

  /* ---------- "Learn more" text links — animated underline ---------- */
  .learn-more {
    position: relative;
    display: inline-block;
    text-decoration: none;
    padding-bottom: 2px;
    font-family: var(--font-bold);
    color: var(--blue-deep);
    letter-spacing: 0.15em;
  }
  .learn-more::after {
    content: "";
    position: absolute;
    left: 0;
    right: 100%;
    bottom: 0;
    height: 2px;
    background: var(--yellow);
    transition: right 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .learn-more:hover::after { right: 0; }
  .learn-more:hover { color: var(--black); }

  /* ---------- Breadcrumb (← BACK TO HOME) — slide arrow on hover ---------- */
  .breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 4px;
  }
  .breadcrumb:hover {
    transform: translateX(-4px);
    text-decoration: none;
    color: var(--white);
  }

  /* ---------- Facebook link — lift + shadow grow ---------- */
  .fb-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 22px;
    font-family: var(--font-bold);
    font-size: 15px;
    letter-spacing: 0.1em;
    text-decoration: none;
    border: 3px solid var(--black);
    background: var(--blue-deep);
    color: var(--yellow);
  }
  .fb-link:hover {
    transform: translate(-2px, -2px);
    box-shadow: 8px 8px 0 var(--black);
  }
  .fb-link:active {
    transform: translate(1px, 1px);
    box-shadow: 2px 2px 0 var(--black);
  }

  /* ---------- Phone numbers (help-box CTAs) — pulse ring on hover ---------- */
  .phone, .phone-big {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .phone:hover, .phone-big:hover {
    transform: scale(1.04);
    text-decoration: none;
  }

  /* ---------- Focus-visible outlines for keyboard / accessibility ---------- */
  .btn:focus-visible,
  .nav-link:focus-visible,
  .lang-btn:focus-visible,
  .faq-cat-btn:focus-visible,
  .faq-question:focus-visible,
  .breadcrumb:focus-visible,
  .learn-more:focus-visible,
  .fb-link:focus-visible {
    outline: 3px solid var(--blue-deep);
    outline-offset: 3px;
  }

  /* ---------- Service-card icon — subtle bounce on card hover ---------- */
  .service-icon {
    transition: transform 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
  }
  .service-card:hover .service-icon {
    transform: translateY(-2px) rotate(-3deg) scale(1.06);
  }

  /* ---------- Schedule rows — light hover highlight ---------- */
  .schedule-row, .schedule-row-full {
    transition: background-color 0.2s ease, transform 0.2s ease;
  }
  .schedule-row:hover, .schedule-row-full:hover {
    background: rgba(245, 197, 24, 0.18) !important;
    transform: translateX(4px);
  }

  /* ============================================
     TEAM PORTRAIT — fallback gradient + ready for real photo
     When img/pastors-cortes.jpg is dropped in, the inner
     <img> takes over. Until then, a styled placeholder shows.
     ============================================ */
  .team-portrait {
    position: relative;
    background-image: linear-gradient(135deg, var(--blue-pale) 0%, var(--yellow-soft) 100%);
    background-size: cover;
    background-position: center;
    overflow: hidden;
  }
  .team-portrait::before {
    content: "Pastor Giovani & Vasni Cortes";
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 16px;
    font-family: var(--font-bold);
    font-size: 14px;
    letter-spacing: 0.15em;
    color: var(--blue-deep);
    text-shadow: 0 1px 2px rgba(255, 255, 255, 0.6);
    z-index: 1;
  }
  /* When a real img is added inside, hide the placeholder text */
  .team-portrait:has(img)::before { display: none; }
  .team-portrait img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 2;
  }
