/* ======================================================
   ROOT VARIABLES (COLOR SYSTEM)
====================================================== */

:root {
    --deep-blue: #1f2a44;
    --gold-start: #d4af37;
    --gold-end: #f2d16b;
    --light-bg: #f8f9fa;
}

/* ======================================================
   BASE RESET
====================================================== */

* {
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", Arial, sans-serif;
    background-color: #f9f8f6;
    color: #333;
    line-height: 1.6;
}

/* =========================
   NAVBAR
========================= */

.main-nav {
    background-color: #1f2a44;
    padding: 10px 0;
}

.navbar-brand {
    font-weight: 600;
    color: #ffffff !important;
}

.navbar-nav .nav-link {
    color: #dcdcdc !important;
    margin-left: 15px;
    font-weight: 500;
}

.navbar-nav .nav-link:hover {
    color: #ffffff !important;
}

.btn-gold {
    background-color: #c9a24d;
    color: #ffffff;
    border: none;
    padding: 8px 18px;
    border-radius: 4px;
    font-weight: 500;
}

.btn-gold:hover {
    background-color: #b8923f;
    color: #ffffff;
}

/* =========================
   HERO SLIDER (FIXED)
========================= */

#heroSlider {
    width: 100%;
}

#heroSlider,
#heroSlider .carousel-inner,
#heroSlider .carousel-item {
    height: 85vh;
    min-height: 600px;
}

#heroSlider .carousel-item {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

/* Dark overlay for readability */
#heroSlider .carousel-item::before {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

/* Caption */
.hero-caption {
    position: absolute;
    bottom: 22%;
    left: 10%;
    z-index: 2;
    color: #ffffff;
    font-size: 2.2rem;
    max-width: 650px;
    line-height: 1.4;
    background: rgba(0, 0, 0, 0.35);
    padding: 18px 28px;
    border-radius: 6px;
}

/* =========================
   ABOUT BRIEF (HOME)
========================= */

.about-brief {
    padding: 80px 0;
    background-color: #ffffff;
    text-align: left;
}

.about-brief h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: #1f2a44;
}

.about-brief p {
    font-size: 1.1rem;
    max-width: 700px;
    margin-bottom: 20px;
}

.about-brief .btn-outline-primary {
    border-color: #1f2a44;
    color: #1f2a44;
}

.about-brief .btn-outline-primary:hover {
    background-color: #1f2a44;
    color: #ffffff;
}

/* =========================
   INNER PAGE BANNER
========================= */

.inner-banner {
    height: 450px;
    background-size: cover;
    background-position: center;
    position: relative;
}

.inner-banner .overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.55);
}

.inner-banner .container {
    position: relative;
    z-index: 2;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.inner-banner h1 {
    color: #ffffff;
    font-size: 2.8rem;
    margin-bottom: 10px;
}

.inner-banner p {
    color: #e6e6e6;
    font-size: 1.1rem;
}

/* =========================
   FOOTER
========================= */

.main-footer {
    background-color: #1f2a44;
    color: #cccccc;
    padding: 30px 0;
    font-size: 0.95rem;
}

.main-footer a {
    color: #c9a24d;
    text-decoration: none;
}

.main-footer a:hover {
    text-decoration: underline;
}

.main-footer small {
    display: block;
    margin-top: 5px;
    color: #aaaaaa;
}

/* =========================
   RESPONSIVE
========================= */

@media (max-width: 768px) {
    .hero-caption {
        font-size: 1.5rem;
        left: 5%;
        right: 5%;
    }

    .about-brief {
        text-align: center;
    }
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
}

button {
    cursor: pointer;
}

/* ======================================================
   HEADINGS
====================================================== */

h1, h2, h3, h4, h5 {
    color: var(--deep-blue);
    font-weight: 700;
}

/* ======================================================
   NAVBAR (PUBLIC)
====================================================== */

.navbar {
    height: 70px;
    background: #ffffff;
    z-index: 1050;
}

.navbar-brand {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--deep-blue) !important;
}

.navbar-nav .nav-link {
    color: var(--deep-blue) !important;
    font-weight: 600;
    padding: 8px 14px;
}

.navbar-nav .nav-link:hover {
    color: #c9a24d !important;
}

.nav-link:focus,
.nav-link:active,
.navbar-brand:focus {
    outline: none;
    box-shadow: none;
    background: transparent;
}

/* ======================================================
   GOLDEN GRADIENT BUTTON (GLOBAL CTA)
====================================================== */

.btn-warning,
.btn-gold {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    border: none;
    color: var(--deep-blue);
    font-weight: 600;
    padding: 10px 18px;
    border-radius: 25px;
    box-shadow: 0 6px 14px rgba(0,0,0,0.15);
    transition: all 0.3s ease;
}

.btn-warning:hover,
.btn-gold:hover {
    transform: translateY(-1px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.2);
    color: var(--deep-blue);
}

/* ======================================================
   HOMEPAGE HERO SLIDER (BOOTSTRAP CAROUSEL)
====================================================== */

.carousel,
.carousel-inner,
.carousel-item {
    height: calc(100vh - 70px);
}

.carousel-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-caption {
    bottom: 20%;
    background: rgba(31, 42, 68, 0.65);
    padding: 22px;
    border-radius: 6px;
    border-left: 5px solid var(--gold-start);
}

.carousel-caption h1,
.carousel-caption p {
    color: #ffffff;
}

/* ======================================================
   INNER BANNER (ALL INNER PAGES)
====================================================== */

.inner-banner {
    position: relative;
    height: 260px;
    background-size: cover;
    background-position: center;
}

.inner-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 68, 0.55);
}

.inner-banner .content {
    position: relative;
    z-index: 2;
    color: #ffffff;
    text-align: center;
    padding: 80px 15px;
}

.inner-banner h1 {
    color: #ffffff;
}

.inner-banner p {
    color: #f1f1f1;
}

/* ======================================================
   GALLERY
====================================================== */

.gallery-filters {
    text-align: center;
    margin-bottom: 25px;
}

.filter-btn {
    margin: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--gold-start);
    background: transparent;
    color: var(--gold-start);
    font-size: 0.9rem;
}

.filter-btn.active,
.filter-btn:hover {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--deep-blue);
}

.gallery-card {
    position: relative;
    overflow: hidden;
    border-radius: 8px;
    cursor: pointer;
}

.gallery-card img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-card:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(31, 42, 68, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
}

.gallery-card:hover .gallery-overlay {
    opacity: 1;
}

.view-text,
.play-icon {
    color: #ffffff;
    font-size: 1.6rem;
}

.play-icon {
    font-size: 2.8rem;
}

.gallery-title {
    text-align: center;
    font-size: 0.95rem;
    margin-top: 8px;
    color: var(--deep-blue);
}

/* ======================================================
   TESTIMONIALS
====================================================== */

.testimonial-tabs {
    text-align: center;
    margin-bottom: 30px;
}

.tab-btn {
    margin: 6px;
    padding: 8px 18px;
    border-radius: 20px;
    border: 1px solid var(--gold-start);
    background: transparent;
    color: var(--gold-start);
}

.tab-btn.active,
.tab-btn:hover {
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--deep-blue);
}

.testimonial-card,
.testimonial-image-card,
.testimonial-video-card {
    background: var(--light-bg);
    border-radius: 8px;
    padding: 16px;
    height: 100%;
    cursor: pointer;
}

.testimonial-card p {
    font-size: 0.95rem;
}

.testimonial-footer {
    margin-top: 10px;
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
}

.read-more-btn {
    color: var(--gold-start);
    font-weight: 600;
}

/* Video thumbnail */
.video-thumb {
    width: 100%;
    aspect-ratio: 16 / 9;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 6px;
}

.video-thumb .play-icon {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ======================================================
   MODALS (TEXT / IMAGE / VIDEO)
====================================================== */

.testimonial-modal {
    position: fixed;
    inset: 0;
    z-index: 9999;
}

.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.65);
}

.modal-content {
    position: relative;
    background: #ffffff;
    max-width: 900px;
    width: 95%;
    max-height: 90vh;
    margin: 5vh auto;
    border-radius: 10px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.modal-body {
    padding: 20px;
    overflow-y: auto;
}

.modal-body iframe {
    width: 100%;
    height: 100%;
}

.modal-close {
    position: absolute;
    top: 10px;
    right: 12px;
    background: #d9534f;
    border: none;
    color: #ffffff;
    border-radius: 50%;
    width: 36px;
    height: 36px;
    font-size: 18px;
    z-index: 10;
}

/* ======================================================
   ADMIN PANEL
====================================================== */

.admin-nav {
    background-color: var(--deep-blue);
}

.admin-nav .nav-link,
.admin-nav .navbar-brand {
    color: #ffffff !important;
}

.admin-nav .nav-link:hover {
    color: var(--gold-start) !important;
}

.admin-container {
    padding: 20px;
}

.table-responsive {
    overflow-x: auto;
}

/* ======================================================
   RESPONSIVE BREAKPOINTS
====================================================== */

@media (max-width: 992px) {
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 65vh;
    }

    .inner-banner {
        height: 220px;
    }
}

@media (max-width: 768px) {
    body {
        padding-top: 65px;
    }

    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 55vh;
    }

    .inner-banner {
        height: 200px;
    }

    .testimonial-footer {
        flex-direction: column;
        gap: 6px;
    }
}

@media (max-width: 576px) {
    .carousel,
    .carousel-inner,
    .carousel-item {
        height: 45vh;
    }

    .modal-body {
        padding: 15px;
    }

    .modal-close {
        width: 32px;
        height: 32px;
    }
}


.about-highlights {
    list-style: none;
    padding-left: 0;
    margin: 25px 0;
}

.about-highlights li {
    padding-left: 28px;
    margin-bottom: 10px;
    position: relative;
    font-size: 1.05rem;
}

.about-highlights li::before {
    content: "✝";
    position: absolute;
    left: 0;
    color: #c9a24d;
}
/* ===== ABOUT TIMELINE ===== */

.timeline-section {
    padding: 80px 0;
    background: #f5f4f2;
}

.timeline-title {
    text-align: center;
    margin-bottom: 40px;
    color: #1f2a44;
}

.timeline-wrapper {
    display: flex;
    overflow-x: auto;
    gap: 30px;
    padding-bottom: 20px;
    scroll-behavior: smooth;
}

.timeline-wrapper::-webkit-scrollbar {
    height: 8px;
}

.timeline-wrapper::-webkit-scrollbar-thumb {
    background: #c9a24d;
    border-radius: 4px;
}

.timeline-card {
    min-width: 280px;
    background: #ffffff;
    border-radius: 8px;
    padding: 20px;
    border-top: 4px solid #c9a24d;
    box-shadow: 0 4px 10px rgba(0,0,0,0.08);
}

.timeline-card h4 {
    color: #1f2a44;
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.timeline-card span {
    font-size: 0.9rem;
    color: #777;
    display: block;
    margin-bottom: 10px;
}

.timeline-card p {
    font-size: 0.95rem;
}
/* Accordion Styling */
.accordion-button {
  font-weight: 500;
  color: #0D1B2A;
}

.accordion-button:not(.collapsed) {
  background-color: #EEF2F7;
  color: #0D1B2A;
}

.accordion-body {
  color: #1C1C1C;
  line-height: 1.7;
}

/* Subtle Animations */
.fade-in-left {
  animation: fadeLeft 0.8s ease forwards;
}

.fade-in-right {
  animation: fadeRight 0.8s ease forwards;
}

@keyframes fadeLeft {
  from {
    opacity: 0;
    transform: translateX(-40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeRight {
  from {
    opacity: 0;
    transform: translateX(40px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.image-collage{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:10px;
}

.collage-img{
  width:100%;
  aspect-ratio:1/1;
  object-fit:cover;
  cursor:pointer;
  border-radius:6px;
  border:2px solid transparent;
  transition:all .3s ease;
}

.collage-img:hover{
  border-color:#D4AF37;
  transform:scale(1.05);
}

.modal-close{
  position:absolute;
  top:15px;
  right:15px;
  background:#fff;
  opacity:1;
  z-index:10;
}

.modal-caption{
  background:#0D1B2A;
  color:#fff;
  font-weight:700;
  text-transform:uppercase;
  text-align:center;
  padding:12px;
  letter-spacing:1px;
}
/* Table Wrapper */
.education-table-wrapper {
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

/* Table Base */
.education-table {
  margin-bottom: 0;
  font-size: 16px;
}

/* Header */
.education-table thead th {
  background: #0D1B2A; /* Deep Blue */
  color: #ffffff;
  font-weight: 700;
  text-transform: uppercase;
  padding: 16px;
  border: none;
}

/* Body Rows */
.education-table tbody tr {
  background: #ffffff;
  transition: background 0.3s ease;
}

.education-table tbody tr:nth-child(even) {
  background: #F8F9FC;
}

/* Cells */
.education-table td {
  padding: 14px 16px;
  font-weight: 600;
  color: #1C1C1C;
  border-bottom: 1px solid #E2E6EA;
}

/* Gold Accent on Hover */
.education-table tbody tr:hover {
  background: #EEF2F7;
  box-shadow: inset 4px 0 0 #D4AF37;
}

/* Rounded Corners */
.education-table thead th:first-child {
  border-top-left-radius: 14px;
}

.education-table thead th:last-child {
  border-top-right-radius: 14px;
}

.education-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 14px;
}

.education-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 14px;
}

/* Career Timeline */
.career-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #D4AF37; /* Gold line */
}

.career-item {
  position: relative;
  margin-bottom: 40px;
}

.career-item:last-child {
  margin-bottom: 0;
}

/* Year Badge */
.career-year {
  position: absolute;
  left: -90px;
  top: 0;
  background: #0D1B2A; /* Deep Blue */
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* Dot */
.career-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 8px;
  width: 14px;
  height: 14px;
  background: #D4AF37;
  border-radius: 50%;
}

/* Content Box */
.career-content {
  background: #ffffff;
  padding: 20px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.career-content h4 {
  color: #0D1B2A;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-content p,
.career-content li {
  color: #1C1C1C;
  line-height: 1.7;
  font-weight: 500;
}

.career-content ul {
  padding-left: 18px;
  margin-bottom: 0;
}

.career-content li {
  margin-bottom: 8px;
}

/* Mobile */
@media (max-width: 768px) {
  .career-timeline {
    padding-left: 0;
    border-left: none;
  }

  .career-year {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }

  .career-item::before {
    display: none;
  }
}


/* Timeline spine aligned with Life Journey */
.career-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #D4AF37; /* Gold */
}

/* Item */
.career-item {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.7s ease;
}

.career-item.show {
  opacity: 1;
  transform: translateY(0);
}

/* Dot */
.career-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 12px;
  width: 14px;
  height: 14px;
  background: #D4AF37;
  border-radius: 50%;
}

/* Year pill */
.career-year {
  position: absolute;
  left: -95px;
  top: 0;
  background: #0D1B2A;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
  white-space: nowrap;
}

/* Content box */
.career-content {
  background: #fff;
  padding: 22px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.career-content h4 {
  color: #0D1B2A;
  font-weight: 700;
  margin-bottom: 10px;
}

.career-content h4 i {
  color: #D4AF37;
  margin-right: 8px;
}

.career-content p,
.career-content li {
  color: #1C1C1C;
  line-height: 1.7;
  font-weight: 500;
}

.career-content ul {
  padding-left: 18px;
  margin-bottom: 0;
}

/* Mobile */
@media (max-width: 768px) {
  .career-timeline {
    padding-left: 0;
    border-left: none;
  }
  .career-year {
    position: static;
    display: inline-block;
    margin-bottom: 10px;
  }
  .career-item::before {
    display: none;
  }
}


/* Family Timeline */
.family-timeline {
  position: relative;
  padding-left: 30px;
  border-left: 3px solid #D4AF37;
}

.family-item {
  position: relative;
}

.family-item::before {
  content: "";
  position: absolute;
  left: -41px;
  top: 12px;
  width: 14px;
  height: 14px;
  background: #D4AF37;
  border-radius: 50%;
}

.family-year {
  position: absolute;
  left: -90px;
  top: 0;
  background: #0D1B2A;
  color: #fff;
  font-weight: 700;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 14px;
}

.family-content {
  background: #fff;
  padding: 22px 24px;
  border-radius: 12px;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.family-content h4 {
  color: #0D1B2A;
  font-weight: 700;
}

/* Family Cards */
.family-card {
  background: #fff;
  padding: 22px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.family-card h5 {
  color: #0D1B2A;
  font-weight: 700;
  margin-bottom: 6px;
}

.family-date {
  display: block;
  font-size: 14px;
  color: #5F6C7B;
  margin-bottom: 10px;
  font-weight: 600;
}

.family-card p {
  font-weight: 500;
  line-height: 1.7;
  color: #1C1C1C;
}

/* Mobile */
@media (max-width: 768px) {
  .family-timeline {
    padding-left: 0;
    border-left: none;
  }
  .family-item::before,
  .family-year {
    display: none;
  }
}


/* Subtitles */
.sub-title-blue {
  color: #0D1B2A;
  font-weight: 700;
  margin-bottom: 15px;
}

.sub-title-gold {
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Vision Highlight */
.vision-box {
  border-left: 4px solid #D4AF37;
  background: #F8F9FC;
  padding: 16px 20px;
  margin-top: 20px;
  border-radius: 8px;
}

.vision-box h5 {
  color: #D4AF37;
  font-weight: 700;
}

/* Testimony Box */
.testimony-box {
  background: #EEF2F7;
  padding: 20px;
  border-radius: 12px;
  box-shadow: inset 0 0 0 1px #D4AF37;
}

.testimony-label {
  display: inline-block;
  font-size: 13px;
  font-weight: 700;
  color: #0D1B2A;
  margin-bottom: 10px;
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

.note-author {
  color: #D4AF37; /* Gold */
  font-weight: 600;
  margin-top: 10px;
}

.note-content p {
  font-size: 16px;
  line-height: 1.8;
  color: #1C1C1C;
  margin-bottom: 16px;
  font-weight: 500;
}

.note-closing {
  font-style: italic;
  font-weight: 600;
  color: #0D1B2A;
}


/* Ministry Blocks */
.ministry-block {
  background: #F8F9FC;
  padding: 24px 26px;
  border-radius: 14px;
  border-left: 4px solid #D4AF37; /* Gold accent */
  height: 100%;
  box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.ministry-block h4 {
  color: #0D1B2A; /* Deep Blue */
  font-weight: 700;
  margin-bottom: 12px;
}

.ministry-block p {
  color: #1C1C1C;
  line-height: 1.8;
  font-weight: 500;
  margin-bottom: 12px;
}

.ministry-block p:last-child {
  margin-bottom: 0;
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}

/* Wrapper */
.anointed-table-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 10px 28px rgba(0,0,0,0.1);
  background: #ffffff;
}

/* Table Base */
.anointed-table {
  margin-bottom: 0;
  font-size: 16px;
}

/* Header */
.anointed-table thead th {
  background: linear-gradient(135deg, #D4AF37, #F5D76E, #B8962E);
  color: #0D1B2A;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px;
  border: none;
}

/* Body Cells */
.anointed-table td {
  padding: 16px;
  font-weight: 600;
  color: #1C1C1C;
  border-bottom: 1px solid #E6E2D8;
}

/* Location Highlight */
.location-cell {
  color: #0D1B2A;
  font-weight: 800;
  white-space: nowrap;
  position: relative;
}

/* Gold Accent Line */
.anointed-table tbody tr {
  transition: background 0.3s ease;
}

.anointed-table tbody tr:hover {
  background: #FFF8E1;
  box-shadow: inset 6px 0 0 #D4AF37;
}

/* Rounded Corners */
.anointed-table thead th:first-child {
  border-top-left-radius: 16px;
}

.anointed-table thead th:last-child {
  border-top-right-radius: 16px;
}

.anointed-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.anointed-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}
/* Wrapper */
.ministry-places-wrapper {
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 30px rgba(0,0,0,0.1);
  background: #ffffff;
}

/* Table Base */
.ministry-places-table {
  margin-bottom: 0;
  font-size: 16px;
}

/* Header */
.ministry-places-table thead th {
  background: #0D1B2A; /* Deep Blue */
  color: #ffffff;
  font-weight: 800;
  text-transform: uppercase;
  padding: 16px;
  border: none;
}

/* Serial Number */
.ministry-places-table td:first-child {
  width: 70px;
  text-align: center;
  font-weight: 800;
  color: #D4AF37; /* Gold */
}

/* Body Cells */
.ministry-places-table td {
  padding: 14px 16px;
  font-weight: 600;
  color: #1C1C1C;
  border-bottom: 1px solid #E2E6EA;
}

/* Alternating Rows */
.ministry-places-table tbody tr:nth-child(even) {
  background: #F8F9FC;
}

/* Hover Effect */
.ministry-places-table tbody tr:hover {
  background: #EEF2F7;
  box-shadow: inset 6px 0 0 #D4AF37;
}

/* Rounded Corners */
.ministry-places-table thead th:first-child {
  border-top-left-radius: 16px;
}

.ministry-places-table thead th:last-child {
  border-top-right-radius: 16px;
}

.ministry-places-table tbody tr:last-child td:first-child {
  border-bottom-left-radius: 16px;
}

.ministry-places-table tbody tr:last-child td:last-child {
  border-bottom-right-radius: 16px;
}


/* Subtitles */
.sub-title-blue {
  color: #0D1B2A;
  font-weight: 700;
  margin-bottom: 15px;
}

.sub-title-gold {
  color: #D4AF37;
  font-weight: 700;
  margin-bottom: 15px;
}

/* Gold text highlight */
.gold-text {
  color: #D4AF37;
  font-weight: 700;
}

/* Organisation Grid */
.org-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.org-item {
  background: #ffffff;
  padding: 14px 18px;
  border-radius: 10px;
  font-weight: 600;
  color: #0D1B2A;
  border-left: 4px solid #D4AF37;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

/* Holy Spirit Section */
.holy-spirit-section {
  background: #ffffff;
  padding: 30px;
  border-radius: 16px;
  border-left: 5px solid #D4AF37;
  box-shadow: 0 10px 25px rgba(0,0,0,0.1);
}

.holy-spirit-section p {
  line-height: 1.8;
  font-weight: 500;
  color: #1C1C1C;
  margin-bottom: 16px;
}

.closing-line {
  font-style: italic;
  font-weight: 600;
  color: #0D1B2A;
}

/* Scroll Animation */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s ease;
}

.animate-on-scroll.show {
  opacity: 1;
  transform: translateY(0);
}


/* Timeline */
.life-timeline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px,1fr));
  gap: 20px;
}

.timeline-step {
  background: #fff;
  padding: 20px;
  border-radius: 12px;
  border-top: 4px solid #D4AF37;
  text-align: center;
}

.step-title {
  font-weight: 700;
  color: #0D1B2A;
  display: block;
  margin-bottom: 8px;
}

/* Ministry Cards */
.ministry-card {
  background: #F8F9FC;
  padding: 24px;
  border-radius: 14px;
  height: 100%;
  box-shadow: 0 6px 16px rgba(0,0,0,0.08);
}

.ministry-card h4 {
  color: #0D1B2A;
  font-weight: 700;
}

/* Legacy */
.home-legacy {
  background: #0D1B2A;
  color: #fff;
}

.home-legacy h2 {
  color: #D4AF37;
}

.legacy-text {
  max-width: 700px;
  margin: 0 auto;
  font-size: 17px;
  line-height: 1.7;
}


/* =========================
   CONTACT – MAP & HELP GRID
========================= */

.map-wrapper {
    border-radius: 10px;
    overflow: hidden;
    min-height: 350px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
}

.help-card {
    background: #f8f9fa;
    border-radius: 10px;
    padding: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.help-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-start), var(--gold-end));
    color: var(--deep-blue);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 32px;
}

