/* ============================================================
  Holy Cross Family Ministries Ghana - Main Stylesheet
  Aesthetic: HCFMEA Blue & Orange
  ============================================================ */

:root {
    --navy: #0b4db8;
    --navy-light: #1a66d8;
    --navy-dark: #082e78;
    --gold: #f28c28;
    --gold-rgb: 242, 140, 40;
    --gold-light: #ffab57;
    --gold-pale: #fff1e4;
    --cream: #faf7f0;
    --white: #ffffff;
    --text: #2c2c2c;
    --text-muted: #6b7080;
    --border: #e0d8c8;
    --red-accent: #8b1a1a;

    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Jost', sans-serif;

    --radius: 6px;
    --shadow: 0 4px 24px rgba(11,77,184,0.10);
    --shadow-lg: 0 12px 48px rgba(11,77,184,0.18);
    --transition: 0.3s ease;
}

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

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.7;
    font-size: 1rem;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

/* ---- Container ---- */
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* ============================================================
   TOP BAR
   ============================================================ */
.topbar {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.75);
    font-size: 0.78rem;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0.03em;
    padding: 0.45rem 0;
}
.topbar-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; justify-content: space-between; align-items: center; gap: 1rem;
}
.topbar-left { display: flex; gap: 1.5rem; }
.topbar-left span { display: flex; align-items: center; gap: 0.4rem; }
.topbar-left i { color: var(--gold); }
.social-links { display: flex; gap: 0.75rem; }
.social-links a {
    width: 28px; height: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(255,255,255,0.08); border-radius: 50%;
    color: rgba(255,255,255,0.7);
    transition: var(--transition);
}
.social-links a:hover { background: var(--gold); color: #fff; }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    background: var(--white);
    position: sticky; top: 0; z-index: 1000;
    box-shadow: 0 2px 12px rgba(11,77,184,0.08);
    border-bottom: 3px solid var(--gold);
    transition: all var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: flex; align-items: center; justify-content: space-between;
    height: 72px;
}

.logo { display: flex; align-items: center; gap: 0.85rem; text-decoration: none; }
.logo-icon {
    width: 46px; height: 46px;
    background: linear-gradient(135deg, var(--navy), var(--navy-light));
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.2rem;
    flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; }
.logo-main { font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; color: var(--navy); line-height: 1.1; }
.logo-sub { font-size: 0.68rem; color: var(--gold); letter-spacing: 0.1em; text-transform: uppercase; }

.nav-menu { display: flex; align-items: center; gap: 0.25rem; }
.nav-menu > li { position: relative; }
.nav-menu > li > a {
    display: flex; align-items: center; gap: 0.3rem;
    padding: 0.5rem 0.85rem;
    font-size: 0.88rem; font-weight: 500; letter-spacing: 0.02em;
    text-transform: uppercase;
    color: var(--navy); border-radius: var(--radius);
    transition: var(--transition);
}
.nav-menu > li > a:hover, .nav-menu > li > a.active {
    color: var(--gold); background: var(--gold-pale);
}
.nav-menu .fas.fa-chevron-down { font-size: 0.65rem; }

.btn-nav {
    background: var(--gold) !important;
    color: #fff !important;
    font-weight: 600 !important;
    border-radius: 30px !important;
    padding: 0.45rem 1.1rem !important;
}
.btn-nav:hover { background: var(--gold-light) !important; }

/* Dropdown */
.dropdown {
    position: absolute; top: 100%; left: 0;
    margin-top: 0.5rem;
    background: rgba(255,255,255,0.98); min-width: 240px;
    border: 1px solid rgba(11,77,184,0.10);
    box-shadow: var(--shadow-lg);
    border-radius: 14px;
    padding: 0.55rem;
    opacity: 0; pointer-events: none;
    transform: translateY(-10px) scale(0.98);
    transform-origin: top left;
    transition: all 0.25s ease;
    z-index: 100;
}
.has-dropdown::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 100%;
    height: 12px;
}
.dropdown::before {
    content: '';
    position: absolute;
    top: -7px;
    left: 22px;
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.98);
    border-left: 1px solid rgba(11,77,184,0.10);
    border-top: 1px solid rgba(11,77,184,0.10);
    transform: rotate(45deg);
}
.has-dropdown:hover .dropdown { opacity: 1; pointer-events: all; transform: translateY(0) scale(1); }
.dropdown li a {
    display: block; padding: 0.6rem 0.85rem;
    font-size: 0.86rem; color: var(--text);
    transition: var(--transition);
    border-radius: 10px;
}
.dropdown li a:hover { background: rgba(var(--gold-rgb),0.12); color: var(--navy); }

.dropdown--mega {
    min-width: 360px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.25rem;
}
.dropdown--mega li { min-width: 0; }
.dropdown--mega .dropdown-all {
    grid-column: 1 / -1;
    margin-top: 0.25rem;
    padding-top: 0.45rem;
    border-top: 1px solid rgba(11,77,184,0.10);
}
.dropdown--mega .dropdown-all a {
    background: rgba(var(--gold-rgb),0.12);
    color: var(--navy);
    font-weight: 600;
}
.dropdown--mega .dropdown-all a:hover { background: rgba(var(--gold-rgb),0.18); }

/* Mobile nav toggle */
.nav-toggle { display: none; flex-direction: column; gap: 5px; cursor: pointer; border: none; background: none; padding: 0.3rem; }
.nav-toggle span { width: 24px; height: 2px; background: var(--navy); border-radius: 2px; transition: var(--transition); display: block; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
    position: relative;
    min-height: 88vh;
    display: flex; align-items: center;
    background: linear-gradient(135deg, var(--navy-dark) 0%, var(--navy) 60%, var(--navy-light) 100%);
    overflow: hidden;
}
.hero-pattern {
    position: absolute; inset: 0;
    background-image:
        repeating-linear-gradient(45deg, transparent, transparent 40px, rgba(var(--gold-rgb),0.03) 40px, rgba(var(--gold-rgb),0.03) 80px),
        repeating-linear-gradient(-45deg, transparent, transparent 40px, rgba(var(--gold-rgb),0.03) 40px, rgba(var(--gold-rgb),0.03) 80px);
}
.hero-cross {
    position: absolute; right: -8%; top: 50%; transform: translateY(-50%);
    font-size: 28rem; color: rgba(var(--gold-rgb),0.04);
    font-family: var(--font-display);
    user-select: none; pointer-events: none;
}
.hero-inner {
    position: relative; z-index: 2;
    max-width: 1200px; margin: 0 auto; padding: 4rem 1.5rem;
    display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-badge {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: rgba(var(--gold-rgb),0.15); border: 1px solid rgba(var(--gold-rgb),0.3);
    color: var(--gold); font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
    padding: 0.35rem 0.9rem; border-radius: 30px; margin-bottom: 1.2rem;
    animation: fadeUp 0.6s ease both;
}
.hero-title {
    font-family: var(--font-display); font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 600; color: var(--white); line-height: 1.15;
    margin-bottom: 1rem;
    animation: fadeUp 0.6s 0.1s ease both;
}
.hero-title em { color: var(--gold); font-style: italic; }
.hero-subtitle {
    font-size: 1.1rem; color: rgba(255,255,255,0.7); line-height: 1.7;
    margin-bottom: 2rem;
    animation: fadeUp 0.6s 0.2s ease both;
}
.hero-actions {
    display: flex; gap: 1rem; flex-wrap: wrap;
    animation: fadeUp 0.6s 0.3s ease both;
}
.hero-verse {
    color: rgba(255,255,255,0.45); font-family: var(--font-display);
    font-style: italic; font-size: 1.05rem; margin-top: 2rem;
    border-left: 3px solid var(--gold); padding-left: 1rem;
    animation: fadeUp 0.6s 0.4s ease both;
}
.hero-image-area {
    display: flex; justify-content: center; align-items: center;
    animation: fadeRight 0.8s 0.2s ease both;
}
.hero-emblem {
    width: 340px; height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 40% 40%, rgba(var(--gold-rgb),0.15), transparent 70%);
    border: 2px solid rgba(var(--gold-rgb),0.2);
    display: flex; flex-direction: column; align-items: center; justify-content: center;
    text-align: center; gap: 1rem;
}
.hero-emblem .cross-icon { font-size: 5rem; color: var(--gold); }
.hero-emblem-text {
    font-family: var(--font-display); color: rgba(255,255,255,0.8);
    font-size: 1.1rem; font-style: italic; line-height: 1.4;
    padding: 0 2rem;
}

/* ── HERO SLIDER ────────────────────────────────────────────── */
.hero-slider { background: none; }
.hero-slides { position: relative; width: 100%; }
.hero-slide {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    min-height: 88vh;
    opacity: 0;
    transform: translateX(100%);
    transition: transform 0.9s ease, opacity 0.9s ease;
    background-image: linear-gradient(135deg, rgba(8,46,120,0.90) 0%, rgba(11,77,184,0.70) 55%, rgba(8,46,120,0.60) 100%), var(--hero-bg);
    background-size: cover;
    background-position: center;
    will-change: transform, opacity;
}
.hero-slide.to-left { opacity: 0; transform: translateX(-100%); }
.hero-slide.to-right { opacity: 0; transform: translateX(100%); }
.hero-slide.from-left { opacity: 0; transform: translateX(-100%); }
.hero-slide.from-right { opacity: 0; transform: translateX(100%); }
.hero-slide.active { opacity: 1; transform: translateX(0); position: relative; }

.hero-photo {
    width: 360px;
    max-width: 90%;
    aspect-ratio: 4 / 5;
    border-radius: 16px;
    overflow: hidden;
    border: 2px solid rgba(var(--gold-rgb),0.25);
    background: rgba(255,255,255,0.05);
    box-shadow: 0 20px 80px rgba(0,0,0,0.45);
}
.hero-photo img { width: 100%; height: 100%; object-fit: cover; }

.hero-prev, .hero-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255,255,255,0.10);
    border: 1px solid rgba(255,255,255,0.20);
    color: #fff;
    cursor: pointer;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.hero-prev { left: 1.2rem; }
.hero-next { right: 1.2rem; }
.hero-prev:hover, .hero-next:hover { background: var(--gold); border-color: var(--gold); color: #fff; }

.hero-controls {
    position: absolute;
    bottom: 1.8rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 0.9rem;
    z-index: 10;
}
.hero-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255,255,255,0.35);
    border: none;
    cursor: pointer;
    transition: var(--transition);
}
.hero-dot.active { background: var(--gold); width: 22px; border-radius: 999px; }

@media (max-width: 900px) {
    .hero-prev, .hero-next { display: none; }
    .hero-image-area { display: none; }
    .hero-inner { grid-template-columns: 1fr; padding: 4.5rem 1.5rem 5rem; }
}

@media (prefers-reduced-motion: reduce) {
    .hero-slide { transition: none; transform: none; }
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
    display: inline-flex; align-items: center; gap: 0.5rem;
    padding: 0.75rem 1.8rem; border-radius: 4px;
    font-family: var(--font-body); font-size: 0.9rem; font-weight: 600;
    letter-spacing: 0.04em; text-transform: uppercase;
    cursor: pointer; transition: var(--transition); border: 2px solid transparent;
    text-decoration: none;
}
.btn-primary { background: var(--gold); color: #fff; border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline:hover { border-color: var(--white); background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: var(--white); }
.btn-navy:hover { background: var(--navy-light); }
.btn-sm { padding: 0.5rem 1.2rem; font-size: 0.82rem; }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding: 5rem 0; }
.section-alt { background: var(--cream); }
.section-dark { background: var(--navy); }

.section-label {
    font-size: 0.75rem; letter-spacing: 0.2em; text-transform: uppercase;
    color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
    display: flex; align-items: center; gap: 0.5rem;
}
.section-label::before {
    content: ''; width: 24px; height: 2px; background: var(--gold);
}
.section-title {
    font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 600; color: var(--navy); line-height: 1.2;
    margin-bottom: 1rem;
}
.section-dark .section-title { color: var(--white); }
.section-subtitle { color: var(--text-muted); max-width: 600px; line-height: 1.8; }
.section-header { margin-bottom: 3rem; }
.section-header.centered { text-align: center; }
.section-header.centered .section-label { justify-content: center; }
.section-header.centered .section-label::before { display: none; }
.section-header.centered .section-subtitle { margin: 0 auto; }

/* ============================================================
   DECOR STRIP
   ============================================================ */
.decor-strip {
    position: relative;
    height: 58px;
    background: linear-gradient(135deg, var(--navy) 0%, var(--navy-dark) 100%);
    overflow: hidden;
}
.decor-strip::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(circle at 18% 30%, rgba(var(--gold-rgb),0.16), transparent 46%),
        radial-gradient(circle at 82% 70%, rgba(var(--gold-rgb),0.12), transparent 54%);
    opacity: 0.9;
}
.decor-strip-wave {
    position: absolute;
    left: 0;
    bottom: -1px;
    width: 100%;
    height: 38px;
}
.decor-strip-wave path { fill: var(--white); }

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
    background: var(--gold);
    padding: 2rem 0;
}
.stats-grid {
    max-width: 1200px; margin: 0 auto; padding: 0 1.5rem;
    display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem;
    text-align: center;
}
.stat-item { color: var(--navy-dark); }
.stat-num {
    font-family: var(--font-display); font-size: 2.8rem; font-weight: 700;
    line-height: 1; display: block;
}
.stat-label { font-size: 0.82rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.08em; opacity: 0.75; }

/* ============================================================
   MINISTRIES GRID
   ============================================================ */
.ministries-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.ministry-card {
    background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius);
    padding: 2rem;
    transition: var(--transition);
    position: relative; overflow: hidden;
}
.ministry-card::before {
    content: ''; position: absolute; top: 0; left: 0; right: 0;
    height: 4px; background: var(--gold);
    transform: scaleX(0); transform-origin: left;
    transition: transform 0.3s ease;
}
.ministry-card:hover::before { transform: scaleX(1); }
.ministry-card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }
.ministry-icon {
    width: 56px; height: 56px;
    background: var(--gold-pale); border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.4rem;
    margin-bottom: 1.2rem;
}
.ministry-card h3 { font-family: var(--font-display); font-size: 1.3rem; color: var(--navy); margin-bottom: 0.6rem; }
.ministry-card p { color: var(--text-muted); font-size: 0.9rem; line-height: 1.7; }
.ministry-link {
    display: inline-flex; align-items: center; gap: 0.4rem;
    color: var(--gold); font-size: 0.85rem; font-weight: 600;
    margin-top: 1rem; transition: var(--transition);
}
.ministry-link:hover { gap: 0.7rem; }

/* ============================================================
   EVENTS
   ============================================================ */
.events-list { display: flex; flex-direction: column; gap: 1rem; }
.event-card {
    display: flex; gap: 1.5rem; align-items: flex-start;
    padding: 1.5rem; background: var(--white);
    border: 1px solid var(--border); border-radius: var(--radius);
    transition: var(--transition);
}
.event-card:hover { box-shadow: var(--shadow); border-color: var(--gold); }
.event-date-box {
    flex-shrink: 0; width: 72px; text-align: center;
    background: var(--navy); color: var(--white); border-radius: var(--radius);
    padding: 0.7rem 0.5rem;
}
.event-day { font-family: var(--font-display); font-size: 2rem; font-weight: 700; line-height: 1; color: var(--gold); }
.event-month { font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.event-info h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.3rem; }
.event-meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 0.4rem 0; }
.event-meta span { font-size: 0.8rem; color: var(--text-muted); display: flex; align-items: center; gap: 0.3rem; }
.event-meta i { color: var(--gold); }
.event-info p { font-size: 0.9rem; color: var(--text-muted); }

/* ============================================================
   NEWS CARDS
   ============================================================ */
.news-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.news-card {
    background: var(--white); border-radius: var(--radius);
    border: 1px solid var(--border); overflow: hidden;
    transition: var(--transition);
}
.news-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.news-card-img {
    height: 200px; overflow: hidden;
    background: var(--navy);
}
.news-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.news-card:hover .news-card-img img { transform: scale(1.06); }
.news-card-img .no-img {
    width: 100%; height: 100%;
    display: flex; align-items: center; justify-content: center;
    color: rgba(var(--gold-rgb),0.3); font-size: 3rem;
}
.news-card-body { padding: 1.4rem; }
.news-cat {
    font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.15em;
    color: var(--gold); font-weight: 600; margin-bottom: 0.5rem;
}
.news-card h3 { font-family: var(--font-display); font-size: 1.2rem; color: var(--navy); margin-bottom: 0.5rem; line-height: 1.3; }
.news-card p { font-size: 0.88rem; color: var(--text-muted); line-height: 1.6; margin-bottom: 1rem; }
.news-date { font-size: 0.78rem; color: var(--text-muted); }
.news-card .read-more { color: var(--gold); font-size: 0.85rem; font-weight: 600; }
.news-card .read-more:hover { text-decoration: underline; }

/* ============================================================
   GALLERY GRID
   ============================================================ */
.gallery-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.6rem; }
.gallery-item {
    position: relative; overflow: hidden;
    border-radius: var(--radius); aspect-ratio: 1/1;
    background: var(--navy);
    cursor: pointer;
}
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.gallery-item:hover img { transform: scale(1.1); }
.gallery-item .overlay {
    position: absolute; inset: 0;
    background: linear-gradient(to top, rgba(8,46,120,0.8), transparent);
    opacity: 0; transition: var(--transition);
    display: flex; align-items: flex-end; padding: 1rem;
    color: var(--white); font-size: 0.85rem;
}
.gallery-item:hover .overlay { opacity: 1; }

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-slider { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.testimonial-card {
    background: rgba(255,255,255,0.05); border: 1px solid rgba(var(--gold-rgb),0.2);
    border-radius: var(--radius); padding: 2rem;
    position: relative;
}
.testimonial-card::before {
    content: '\201C'; font-family: var(--font-display); font-size: 5rem;
    color: var(--gold); opacity: 0.3; position: absolute; top: -0.5rem; left: 1rem; line-height: 1;
}
.testimonial-card p { color: rgba(255,255,255,0.8); font-style: italic; font-family: var(--font-display); font-size: 1.05rem; line-height: 1.7; margin-bottom: 1.2rem; }
.testimonial-author { display: flex; align-items: center; gap: 0.75rem; }
.testimonial-author img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.testimonial-author .author-avatar {
    width: 44px; height: 44px; border-radius: 50%;
    background: var(--gold); display: flex; align-items: center; justify-content: center;
    color: var(--navy-dark); font-size: 1.1rem;
}
.author-name { font-weight: 600; color: var(--white); font-size: 0.9rem; }
.author-title { font-size: 0.78rem; color: var(--gold); }

/* ============================================================
   CONTACT SECTION
   ============================================================ */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; align-items: start; }
.contact-info-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-icon {
    width: 48px; height: 48px; background: var(--gold-pale);
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
    color: var(--gold); font-size: 1.1rem; flex-shrink: 0;
}
.contact-info-item h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--navy); margin-bottom: 0.2rem; }
.contact-info-item p { font-size: 0.9rem; color: var(--text-muted); }

.contact-form { display: flex; flex-direction: column; gap: 1rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group label { font-size: 0.82rem; font-weight: 600; color: var(--navy); letter-spacing: 0.03em; }
.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--border); border-radius: var(--radius);
    font-family: var(--font-body); font-size: 0.9rem; color: var(--text);
    background: var(--white); transition: var(--transition);
    outline: none;
}
.form-group input:focus,
.form-group textarea:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(var(--gold-rgb),0.1); }
.form-group textarea { min-height: 130px; resize: vertical; }

/* ============================================================
   PAGE HERO (Inner pages)
   ============================================================ */
.page-hero {
    background: linear-gradient(135deg, var(--navy-dark), var(--navy));
    padding: 4rem 0;
    text-align: center;
    position: relative; overflow: hidden;
}
.page-hero::after {
    content: '✝'; position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
    font-size: 12rem; color: rgba(var(--gold-rgb),0.05); pointer-events: none;
}
.page-hero h1 {
    font-family: var(--font-display); font-size: clamp(2rem, 5vw, 3rem);
    color: var(--white); font-weight: 600;
}
.page-hero p { color: rgba(255,255,255,0.65); margin-top: 0.5rem; font-size: 1rem; }
.breadcrumb { display: flex; justify-content: center; gap: 0.5rem; margin-top: 1rem; font-size: 0.82rem; color: var(--gold); }
.breadcrumb a { color: rgba(255,255,255,0.5); }
.breadcrumb a:hover { color: var(--white); }

/* ============================================================
   CALL TO ACTION BANNER
   ============================================================ */
.cta-banner {
    background: linear-gradient(135deg, var(--gold) 0%, #a8863a 100%);
    padding: 4rem 0; text-align: center;
}
.cta-banner h2 { font-family: var(--font-display); font-size: 2.2rem; color: var(--navy-dark); margin-bottom: 0.7rem; }
.cta-banner p { color: rgba(8,46,120,0.7); margin-bottom: 1.8rem; }
.cta-banner .btn-outline { border-color: var(--navy-dark); color: var(--navy-dark); }
.cta-banner .btn-outline:hover { background: var(--navy-dark); color: var(--white); }

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
    background: var(--navy-dark);
    color: rgba(255,255,255,0.65);
    padding: 4rem 0 0;
    position: relative; overflow: hidden;
}
.footer-cross-pattern {
    position: absolute; inset: 0;
    background-image: repeating-linear-gradient(90deg, transparent, transparent 60px, rgba(var(--gold-rgb),0.02) 60px, rgba(var(--gold-rgb),0.02) 62px);
    pointer-events: none;
}
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; position: relative; }
.footer-grid { display: grid; grid-template-columns: 1.8fr 1fr 1fr 1.2fr; gap: 3rem; }
.footer-logo { display: flex; align-items: center; gap: 0.85rem; margin-bottom: 1.2rem; }
.footer-logo i { font-size: 1.8rem; color: var(--gold); }
.footer-logo strong { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); display: block; }
.footer-logo small { font-size: 0.7rem; color: var(--gold); letter-spacing: 0.08em; text-transform: uppercase; }
.footer-brand p { font-size: 0.88rem; line-height: 1.8; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 1.2rem; }
.footer-social a {
    width: 34px; height: 34px; background: rgba(255,255,255,0.06); border-radius: 50%;
    display: flex; align-items: center; justify-content: center; color: rgba(255,255,255,0.6);
    transition: var(--transition); font-size: 0.85rem;
}
.footer-social a:hover { background: var(--gold); color: #fff; }
.footer-col h4 { font-family: var(--font-display); font-size: 1.1rem; color: var(--white); margin-bottom: 1rem; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { font-size: 0.88rem; transition: var(--transition); }
.footer-col ul li a:hover { color: var(--gold); padding-left: 0.3rem; }
.mass-schedule p { font-size: 0.88rem; margin-bottom: 0.3rem; }
.contact-list li { display: flex; gap: 0.6rem; align-items: flex-start; margin-bottom: 0.75rem; font-size: 0.88rem; }
.contact-list i { color: var(--gold); margin-top: 0.1rem; width: 14px; }
.btn-prayer {
    display: inline-flex; align-items: center; gap: 0.5rem;
    background: var(--gold); color: #fff;
    padding: 0.6rem 1.2rem; border-radius: 4px;
    font-size: 0.85rem; font-weight: 600; margin-top: 1rem;
    transition: var(--transition);
}
.btn-prayer:hover { background: var(--gold-light); }
.footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 1.5rem 0; margin-top: 3rem;
    display: flex; justify-content: space-between; align-items: center;
    font-size: 0.82rem;
}
.footer-bottom a { color: var(--gold); }

.whatsapp-float {
    position: fixed;
    right: 18px;
    bottom: 18px;
    z-index: 9999;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 14px;
    border-radius: 999px;
    background: #25D366;
    color: #fff;
    box-shadow: 0 14px 40px rgba(0,0,0,0.25);
    border: 1px solid rgba(255,255,255,0.25);
    font-weight: 700;
    letter-spacing: 0.04em;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.whatsapp-float i { font-size: 1.35rem; }
.whatsapp-float-text { font-size: 0.9rem; text-transform: uppercase; }
.whatsapp-float:hover { transform: translateY(-2px); box-shadow: 0 18px 50px rgba(0,0,0,0.28); }

/* ============================================================
   ALERT / FLASH MESSAGES
   ============================================================ */
.alert {
    padding: 0.85rem 1.2rem; border-radius: var(--radius);
    font-size: 0.9rem; margin-bottom: 1rem;
    display: flex; align-items: center; gap: 0.6rem;
}
.alert-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.alert-error { background: #f8d7da; color: #721c24; border: 1px solid #f5c6cb; }
.alert-info { background: #d1ecf1; color: #0c5460; border: 1px solid #bee5eb; }

/* ============================================================
   UTILS
   ============================================================ */
.text-gold { color: var(--gold); }
.text-navy { color: var(--navy); }
.text-center { text-align: center; }
.mt-1 { margin-top: 0.5rem; } .mt-2 { margin-top: 1rem; } .mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; } .mb-2 { margin-bottom: 1rem; } .mb-3 { margin-bottom: 1.5rem; }
.view-all {
    text-align: center; margin-top: 2.5rem;
}

/* ============================================================
   ANIMATIONS
   ============================================================ */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeRight {
    from { opacity: 0; transform: translateX(24px); }
    to   { opacity: 1; transform: translateX(0); }
}
.animate-fadeup { animation: fadeUp 0.7s ease both; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .ministries-grid { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
    .news-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-inner { grid-template-columns: 1fr; }
    .hero-image-area { display: none; }
    .gallery-grid { grid-template-columns: repeat(3, 1fr); }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-slider { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .topbar-left { display: none; }
    .nav-toggle { display: flex; }
    .nav-menu {
        position: fixed; top: 0; right: -100%;
        width: 280px; height: 100vh;
        background: var(--navy-dark);
        flex-direction: column; align-items: flex-start;
        gap: 0; padding: 5rem 0 2rem;
        transition: right 0.35s ease;
        z-index: 999; box-shadow: -8px 0 24px rgba(0,0,0,0.3);
        overflow-y: auto;
    }
    .nav-menu.open { right: 0; }
    .nav-menu > li { width: 100%; }
    .nav-menu > li > a { color: rgba(255,255,255,0.85); padding: 0.85rem 1.5rem; border-radius: 0; border-bottom: 1px solid rgba(255,255,255,0.05); }
    .nav-menu > li > a:hover, .nav-menu > li > a.active { background: rgba(var(--gold-rgb),0.1); color: var(--gold); }
    .btn-nav { border-radius: 0 !important; background: var(--gold) !important; margin: 0.5rem 1rem !important; }
    .dropdown { position: static; opacity: 1; pointer-events: all; transform: none; box-shadow: none; border: none; border-radius: 0; padding: 0.35rem 0; background: rgba(255,255,255,0.03); }
    .dropdown::before { display: none; }
    .dropdown--mega { min-width: 0; display: block; }
    .dropdown--mega .dropdown-all { border-top: 1px solid rgba(255,255,255,0.08); margin-top: 0; padding-top: 0; }
    .dropdown--mega .dropdown-all a { background: transparent; color: rgba(255,255,255,0.85); font-weight: 600; }
    .ministries-grid { grid-template-columns: 1fr; }
    .news-grid { grid-template-columns: 1fr; }
    .gallery-grid { grid-template-columns: repeat(2, 1fr); }
    .contact-grid { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; }
    .stats-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-actions { flex-direction: column; }
}
