/* ========================================
   Oros Zon Prayer Ministries - Stylesheet
   ======================================== */

/* CSS Variables */
:root {
    --color-primary: #1a237e;
    --color-primary-light: #3949ab;
    --color-primary-dark: #0d1452;
    --color-accent: #1565c0;
    --color-accent-light: #42a5f5;
    --color-gold: #c9a84c;
    --color-white: #ffffff;
    --color-off-white: #f8f9fc;
    --color-light-gray: #e8eaf6;
    --color-text: #2d2d2d;
    --color-text-light: #555555;
    --color-text-muted: #888888;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.12);
    --radius: 10px;
    --radius-lg: 16px;
    --transition: 0.3s ease;
}

/* Reset & Base */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.75;
    color: var(--color-text);
    background-color: var(--color-white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('assets/images/mountain-bg.svg') center center / cover no-repeat;
    opacity: 0.18;
    z-index: -1;
    pointer-events: none;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: color var(--transition);
}

ul, ol {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: var(--font-heading);
    color: var(--color-primary);
    line-height: 1.3;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Navigation
   ======================================== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all var(--transition);
}

.navbar.scrolled {
    box-shadow: var(--shadow-sm);
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 82px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 1.5px;
    white-space: nowrap;
}

.nav-logo img {
    height: 50px;
    width: 50px;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav-link {
    padding: 8px 12px;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius);
    transition: all var(--transition);
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-primary);
    background: var(--color-off-white);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 2px;
    background: var(--color-accent);
    border-radius: 2px;
}

/* Nav Dropdown */
.nav-dropdown {
    position: relative;
}

.nav-dropdown > .nav-link {
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-dropdown > .nav-link::before {
    content: '';
    display: inline-block;
    width: 6px;
    height: 6px;
    border-right: 1.5px solid currentColor;
    border-bottom: 1.5px solid currentColor;
    transform: rotate(45deg);
    margin-left: 2px;
    transition: transform var(--transition);
    position: relative;
    top: -1px;
    order: 2;
}

.nav-dropdown:hover > .nav-link::before {
    transform: rotate(-135deg);
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 180px;
    background: var(--color-white);
    border-radius: var(--radius);
    box-shadow: var(--shadow-md);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    z-index: 100;
    border: 1px solid rgba(0, 0, 0, 0.06);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu .nav-link {
    display: block;
    padding: 10px 20px;
    font-size: 0.88rem;
    border-radius: 0;
    white-space: nowrap;
}

.nav-dropdown-menu .nav-link:hover {
    background: var(--color-off-white);
}

.nav-dropdown-menu .nav-link.active::after {
    display: none;
}

.nav-link.nav-cta {
    background: var(--color-primary);
    color: var(--color-white) !important;
    padding: 10px 26px;
    margin-left: 8px;
    border-radius: 50px;
    font-weight: 600;
}

.nav-link.nav-cta:hover {
    background: var(--color-primary-light);
}

.nav-link.nav-cta::after {
    display: none;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-primary);
    border-radius: 2px;
    transition: all var(--transition);
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}
.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}
.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
    border: 2px solid transparent;
    letter-spacing: 0.3px;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.2);
}

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-white);
    transform: translateY(-2px);
}

.btn-solid {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.btn-solid:hover {
    background: var(--color-primary-light);
    border-color: var(--color-primary-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

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

.btn-gold:hover {
    background: #b8963e;
    border-color: #b8963e;
    transform: translateY(-2px);
}

.btn svg {
    width: 18px;
    height: 18px;
}

/* ========================================
   Hero Section (Home Page)
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background: linear-gradient(135deg, var(--color-primary-dark) 0%, var(--color-primary) 40%, var(--color-accent) 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(21, 101, 192, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(57, 73, 171, 0.25) 0%, transparent 60%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: 120px 24px 80px;
}

.hero-logo {
    width: 170px;
    height: 170px;
    object-fit: contain;
    margin: 0 auto 36px;
    border-radius: var(--radius-lg);
    border: 3px solid var(--color-gold);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(212, 175, 55, 0.25);
    animation: fadeInDown 1s ease;
}

.hero h1 {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 2px;
    margin-bottom: 8px;
    animation: fadeInUp 1s ease 0.2s both;
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: var(--color-gold);
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    margin-bottom: 20px;
    animation: fadeInUp 1s ease 0.4s both;
}

.hero-tagline {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.85);
    font-weight: 300;
    max-width: 600px;
    margin: 0 auto 44px;
    line-height: 1.7;
    animation: fadeInUp 1s ease 0.6s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 0.8s both;
}

/* ========================================
   Page Header (inner pages)
   ======================================== */
.page-header {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 60%, var(--color-accent));
    padding: 140px 0 70px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 30% 70%, rgba(21, 101, 192, 0.2) 0%, transparent 60%);
}

.page-header .container {
    position: relative;
    z-index: 1;
}

.page-header h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: 12px;
    letter-spacing: 1px;
}

.page-header p {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    max-width: 600px;
    margin: 0 auto;
    font-weight: 300;
}

.page-header .breadcrumb {
    margin-top: 20px;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
}

.page-header .breadcrumb a {
    color: rgba(255, 255, 255, 0.7);
}

.page-header .breadcrumb a:hover {
    color: var(--color-gold);
}

.page-header .breadcrumb span {
    color: var(--color-gold);
}

/* ========================================
   Section Styles
   ======================================== */
.section {
    padding: 100px 0;
}

.section-alt {
    background: var(--color-off-white);
}

.section-header {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 64px;
}

.section-label {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 12px;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 700;
    margin-bottom: 16px;
}

.divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent), var(--color-gold));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-description {
    font-size: 1.05rem;
    color: var(--color-text-light);
    line-height: 1.8;
}

/* ========================================
   Content Blocks
   ======================================== */
.content-block {
    max-width: 820px;
    margin: 0 auto;
}

.content-block p {
    font-size: 1.05rem;
    line-height: 1.85;
    color: var(--color-text);
    margin-bottom: 24px;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* ========================================
   Mandate / Feature Cards
   ======================================== */
.mandate-list {
    max-width: 740px;
    margin: 36px auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.mandate-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 24px 28px;
    background: var(--color-off-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-accent);
    transition: all var(--transition);
}

.mandate-item:hover {
    box-shadow: var(--shadow-sm);
    transform: translateX(4px);
}

.mandate-icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    color: var(--color-accent);
}

.mandate-icon svg {
    width: 100%;
    height: 100%;
}

.mandate-item p {
    margin-bottom: 0;
    font-weight: 500;
    font-size: 1rem;
}

/* ========================================
   Scripture Banner
   ======================================== */
.scripture-banner {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 64px 0;
    text-align: center;
}

.scripture-banner blockquote p {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 2.5vw, 1.4rem);
    color: var(--color-white);
    font-style: italic;
    line-height: 1.9;
    max-width: 800px;
    margin: 0 auto 16px;
}

.scripture-banner cite {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ========================================
   Timeline
   ======================================== */
.timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    padding-left: 70px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(to bottom, var(--color-accent), var(--color-primary), var(--color-gold));
}

.timeline-item {
    position: relative;
    margin-bottom: 48px;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-marker {
    position: absolute;
    left: -70px;
    top: 4px;
    width: 52px;
    height: 52px;
    background: var(--color-white);
    border: 3px solid var(--color-accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1;
    box-shadow: 0 2px 8px rgba(21, 101, 192, 0.15);
}

.timeline-marker span {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--color-primary);
    letter-spacing: 0.5px;
}

.timeline-content {
    background: var(--color-white);
    padding: 32px 36px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.timeline-content:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(4px);
}

.timeline-content h3 {
    font-size: 1.25rem;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

/* ========================================
   Cards Grid
   ======================================== */
.cards-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.cards-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

/* ========================================
   Founder Cards
   ======================================== */
.founder-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 44px 32px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
}

.founder-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-6px);
}

.founder-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    color: var(--color-white);
}

.founder-icon svg {
    width: 100%;
    height: 100%;
}

.founder-card h3 {
    font-size: 1.25rem;
    margin-bottom: 6px;
}

.founder-title {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.founder-card > p:last-child {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.8;
    text-align: left;
}

/* ========================================
   Vision & Mission Cards
   ======================================== */
.vision-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 44px 40px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
}

.vision-card:hover {
    box-shadow: var(--shadow-md);
}

.vision-icon {
    width: 56px;
    height: 56px;
    margin-bottom: 24px;
    color: var(--color-accent);
}

.vision-icon svg {
    width: 100%;
    height: 100%;
}

.vision-card h3 {
    font-size: 1.4rem;
    margin-bottom: 24px;
}

.vision-card ul {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.vision-card ul li {
    position: relative;
    padding-left: 28px;
    font-size: 0.95rem;
    color: var(--color-text-light);
    line-height: 1.75;
}

.vision-card ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 10px;
    height: 10px;
    background: var(--color-gold);
    border-radius: 50%;
}

.vision-closing {
    text-align: center;
    max-width: 720px;
    margin: 48px auto 0;
    padding: 36px 40px;
    background: var(--color-white);
    border-radius: var(--radius);
    border-left: 4px solid var(--color-gold);
}

.vision-closing p {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--color-primary);
    font-style: italic;
    line-height: 1.85;
}

/* ========================================
   Contact Cards
   ======================================== */
.contact-card {
    text-align: center;
    padding: 44px 32px;
    background: var(--color-off-white);
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    border: 1px solid transparent;
}

.contact-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
    border-color: var(--color-light-gray);
}

.contact-icon {
    width: 52px;
    height: 52px;
    margin: 0 auto 20px;
    color: var(--color-accent);
}

.contact-icon svg {
    width: 100%;
    height: 100%;
}

.contact-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.contact-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.75;
    margin-bottom: 16px;
}

.contact-card p:last-child {
    margin-bottom: 0;
}

.contact-card .btn {
    padding: 10px 24px;
    font-size: 0.85rem;
}

/* ========================================
   Home Feature Section
   ======================================== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.feature-card {
    text-align: center;
    padding: 40px 28px;
    border-radius: var(--radius-lg);
    background: var(--color-white);
    border: 1px solid var(--color-light-gray);
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.feature-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.feature-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 16px;
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary));
    padding: 80px 0;
    text-align: center;
}

.cta-banner h2 {
    color: var(--color-white);
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    margin-bottom: 16px;
}

.cta-banner p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ========================================
   Links / Resources Cards
   ======================================== */
.resource-card {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
}

.resource-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.resource-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-accent));
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    padding: 14px;
}

.resource-icon svg {
    width: 100%;
    height: 100%;
}

.resource-info h3 {
    font-size: 1.1rem;
    margin-bottom: 6px;
}

.resource-info p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.6;
    margin-bottom: 12px;
}

.resource-link {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.resource-link:hover {
    color: var(--color-primary);
}

.resource-link svg {
    width: 16px;
    height: 16px;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--color-primary-dark);
    color: rgba(255, 255, 255, 0.8);
    padding: 64px 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 0.8fr 1.2fr;
    gap: 40px;
    padding-bottom: 44px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-logo {
    width: 72px;
    height: 72px;
    object-fit: contain;
    border-radius: 8px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.footer h4 {
    font-size: 1rem;
    color: var(--color-white);
    margin-bottom: 20px;
    letter-spacing: 0.5px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    transition: all var(--transition);
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-gold);
    transform: translateX(4px);
}

.footer-scripture blockquote {
    font-size: 0.9rem;
    font-style: italic;
    line-height: 1.85;
    color: rgba(255, 255, 255, 0.65);
}

.footer-scripture cite {
    display: block;
    margin-top: 10px;
    font-size: 0.82rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 500;
}

.footer-bottom {
    padding: 24px 0;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ========================================
   Service Schedule
   ======================================== */
.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.schedule-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    text-align: center;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.schedule-card.featured {
    border-color: var(--color-accent);
    box-shadow: var(--shadow-md);
    transform: scale(1.03);
}

.schedule-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.schedule-card.featured:hover {
    transform: scale(1.03) translateY(-4px);
}

.schedule-badge {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    margin-bottom: 20px;
}

.schedule-badge.weekly {
    background: #e3f2fd;
    color: #1565c0;
}

.schedule-badge.biweekly {
    background: #fff3e0;
    color: #e65100;
}

.schedule-badge.monthly {
    background: #f3e5f5;
    color: #7b1fa2;
}

.schedule-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 16px;
    color: var(--color-accent);
}

.schedule-icon svg {
    width: 100%;
    height: 100%;
}

.schedule-card h3 {
    font-size: 1.2rem;
    margin-bottom: 8px;
}

.schedule-time {
    font-size: 0.88rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
    line-height: 1.5;
}

.schedule-next {
    background: var(--color-off-white);
    border-radius: var(--radius);
    padding: 14px 16px;
    margin-bottom: 20px;
}

.schedule-date {
    display: block;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.schedule-countdown {
    font-size: 0.78rem;
    color: var(--color-accent);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.schedule-btn {
    padding: 10px 24px;
    font-size: 0.82rem;
    width: 100%;
}

@media (max-width: 1024px) {
    .schedule-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .schedule-card.featured {
        transform: none;
    }

    .schedule-card.featured:hover {
        transform: translateY(-4px);
    }

    .schedule-grid > .schedule-card:last-child {
        grid-column: 1 / -1;
        max-width: 400px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
    }

    .schedule-grid > .schedule-card:last-child {
        max-width: none;
    }
}

/* ========================================
   Daily Verse
   ======================================== */
#daily-verse {
    max-width: 700px;
    margin: 0 auto;
}

.daily-verse-content {
    background: linear-gradient(135deg, var(--color-primary-dark), var(--color-primary) 70%);
    border-radius: var(--radius-lg);
    padding: 44px 48px;
    text-align: center;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

.daily-verse-content::before {
    content: '\201C';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 10rem;
    font-family: var(--font-heading);
    color: rgba(255, 255, 255, 0.05);
    line-height: 1;
    pointer-events: none;
}

.daily-verse-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-bottom: 24px;
}

.daily-verse-text p {
    font-family: var(--font-heading);
    font-size: clamp(1.05rem, 2vw, 1.3rem);
    color: var(--color-white);
    font-style: italic;
    line-height: 1.9;
    margin-bottom: 16px;
}

.daily-verse-text cite {
    font-family: var(--font-body);
    font-size: 0.88rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 500;
    letter-spacing: 1px;
    display: block;
    margin-bottom: 24px;
}

.daily-verse-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.8);
    padding: 10px 24px;
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    transition: all var(--transition);
}

.daily-verse-link:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.5);
}

@media (max-width: 768px) {
    .daily-verse-content {
        padding: 32px 28px;
    }
}

/* ========================================
   Blog
   ======================================== */
.blog-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.blog-card {
    display: block;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 32px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-light-gray);
    transition: all var(--transition);
    text-decoration: none;
    color: inherit;
}

.blog-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.blog-card-category {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.blog-card-title {
    font-size: 1.2rem;
    font-family: var(--font-heading);
    color: var(--color-primary);
    margin-bottom: 12px;
    line-height: 1.4;
}

.blog-card-excerpt {
    font-size: 0.92rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.blog-card-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 16px;
    border-top: 1px solid var(--color-light-gray);
}

.blog-card-date {
    font-size: 0.82rem;
    color: var(--color-text-muted);
}

.blog-card-read {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-accent);
}

.blog-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.filter-btn {
    padding: 8px 22px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    border: 2px solid var(--color-light-gray);
    background: var(--color-white);
    color: var(--color-text-light);
    border-radius: 50px;
    cursor: pointer;
    transition: all var(--transition);
}

.filter-btn:hover {
    border-color: var(--color-accent);
    color: var(--color-accent);
}

.filter-btn.active {
    background: var(--color-primary);
    color: var(--color-white);
    border-color: var(--color-primary);
}

.blog-empty {
    text-align: center;
    padding: 60px 24px;
}

.blog-empty-icon {
    color: var(--color-text-muted);
    margin-bottom: 24px;
    opacity: 0.4;
}

.blog-empty h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.blog-empty p {
    font-size: 1rem;
    color: var(--color-text-light);
    max-width: 480px;
    margin: 0 auto;
    line-height: 1.7;
}

.blog-loading {
    text-align: center;
    padding: 60px 24px;
    color: var(--color-text-muted);
    grid-column: 1 / -1;
}

/* Single Post */
.post-category-badge {
    font-size: 0.82rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.post-content {
    font-size: 1.05rem;
    line-height: 1.85;
}

.post-content h2,
.post-content h3,
.post-content h4 {
    margin-top: 32px;
    margin-bottom: 16px;
}

.post-content p {
    margin-bottom: 20px;
}

.post-content ul,
.post-content ol {
    margin-bottom: 20px;
    padding-left: 28px;
    list-style: disc;
}

.post-content ol {
    list-style: decimal;
}

.post-content li {
    margin-bottom: 8px;
    line-height: 1.75;
}

.post-content blockquote {
    border-left: 4px solid var(--color-gold);
    padding: 16px 24px;
    margin: 24px 0;
    background: var(--color-off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
}

.post-footer {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 48px;
    padding-top: 32px;
    border-top: 1px solid var(--color-light-gray);
}

@media (max-width: 1024px) {
    .blog-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .blog-grid {
        grid-template-columns: 1fr;
    }

    .post-footer {
        flex-direction: column;
        align-items: center;
    }
}

/* ========================================
   YouTube Embed
   ======================================== */
.youtube-embed {
    max-width: 800px;
    margin: 0 auto;
}

.youtube-video {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    margin-bottom: 28px;
}

.youtube-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.youtube-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

.youtube-actions .btn svg {
    width: 20px;
    height: 20px;
}

/* ========================================
   Donate
   ======================================== */
.donate-card {
    max-width: 640px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    text-align: center;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
}

.donate-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-gold), #e6c358);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.donate-card h3 {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.donate-card > p {
    font-size: 1rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 24px;
}

.donate-scripture {
    border-left: 4px solid var(--color-gold);
    padding: 16px 24px;
    margin: 0 auto 24px;
    background: var(--color-off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
    font-size: 0.95rem;
    line-height: 1.8;
    text-align: left;
}

.donate-scripture cite {
    display: block;
    margin-top: 8px;
    font-size: 0.85rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

.donate-info {
    font-size: 0.92rem;
    color: var(--color-text-muted);
}

.donate-buttons {
    margin-top: 28px;
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .donate-card {
        padding: 36px 28px;
    }
}

/* ========================================
   Gallery
   ======================================== */
.gallery-filter {
    display: flex;
    gap: 10px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 44px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    aspect-ratio: 4/3;
    background: var(--color-light-gray);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--color-white);
    font-size: 1rem;
    margin-bottom: 4px;
}

.gallery-category {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-gold);
    text-transform: uppercase;
    letter-spacing: 1.5px;
}

/* Lightbox */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    text-align: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 75vh;
    border-radius: var(--radius);
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.5);
    margin: 0 auto;
}

.lightbox-caption {
    margin-top: 16px;
}

.lightbox-caption h4 {
    color: var(--color-white);
    font-size: 1.1rem;
    margin-bottom: 4px;
}

.lightbox-caption p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

.lightbox-close {
    position: absolute;
    top: 20px;
    right: 24px;
    background: none;
    border: none;
    color: var(--color-white);
    font-size: 2.5rem;
    cursor: pointer;
    z-index: 2001;
    line-height: 1;
    opacity: 0.7;
    transition: opacity 0.3s;
}

.lightbox-close:hover { opacity: 1; }

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--color-white);
    font-size: 2rem;
    cursor: pointer;
    padding: 16px 20px;
    border-radius: var(--radius);
    z-index: 2001;
    transition: background 0.3s;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

@media (max-width: 1024px) {
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }

    .lightbox-prev,
    .lightbox-next {
        padding: 12px 16px;
        font-size: 1.5rem;
    }

    .lightbox-prev { left: 8px; }
    .lightbox-next { right: 8px; }
}

/* ========================================
   Prayer Request Form
   ======================================== */
.prayer-request-card {
    max-width: 680px;
    margin: 0 auto;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 48px 44px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-light-gray);
}

.prayer-request-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, var(--color-primary), var(--color-primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.prayer-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 28px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--color-text);
}

.form-group input,
.form-group textarea {
    padding: 12px 16px;
    border: 1px solid var(--color-light-gray);
    border-radius: var(--radius);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-off-white);
    transition: border-color var(--transition), box-shadow var(--transition);
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--color-accent);
    box-shadow: 0 0 0 3px rgba(21, 101, 192, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

.form-actions {
    text-align: center;
}

.form-actions .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.prayer-success {
    text-align: center;
    padding: 24px;
    background: #f0fdf4;
    border-radius: var(--radius);
    color: #166534;
    margin-top: 8px;
}

.prayer-success svg {
    color: #22c55e;
    margin-bottom: 8px;
}

.prayer-success p {
    font-size: 0.95rem;
    line-height: 1.6;
}

.prayer-scripture {
    border-left: 4px solid var(--color-gold);
    padding: 16px 24px;
    background: var(--color-off-white);
    border-radius: 0 var(--radius) var(--radius) 0;
    font-style: italic;
    color: var(--color-text-light);
    font-size: 0.92rem;
    line-height: 1.8;
}

.prayer-scripture cite {
    display: block;
    margin-top: 8px;
    font-size: 0.82rem;
    color: var(--color-gold);
    font-style: normal;
    font-weight: 600;
}

@media (max-width: 480px) {
    .prayer-request-card {
        padding: 28px 20px;
    }
}

/* ========================================
   Scripture Embed Cards
   ======================================== */
.scripture-embed {
    margin: 20px 0 28px;
    padding: 24px 28px;
    background: linear-gradient(135deg, #f8f6f0 0%, #faf9f5 100%);
    border-left: 4px solid var(--color-gold);
    border-radius: 0 var(--radius) var(--radius) 0;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(12px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.scripture-embed-visible {
    opacity: 1;
    transform: translateY(0);
}

.scripture-embed-header {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 14px;
    color: var(--color-gold);
}

.scripture-embed-label {
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--color-gold);
}

.scripture-embed-translation {
    margin-left: auto;
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--color-text-muted);
    background: rgba(0,0,0,0.05);
    padding: 2px 8px;
    border-radius: 4px;
    letter-spacing: 1px;
}

.scripture-embed-text {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-style: italic;
    line-height: 1.85;
    color: var(--color-primary-dark);
    margin: 0 0 14px;
    border: none;
    padding: 0;
}

.scripture-embed-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 8px;
}

.scripture-embed-ref {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-gold);
    font-style: normal;
}

.scripture-embed-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent);
    text-decoration: none;
    padding: 4px 12px;
    border: 1px solid var(--color-accent);
    border-radius: 50px;
    transition: all var(--transition);
}

.scripture-embed-link:hover {
    background: var(--color-accent);
    color: #fff;
}

/* Inline scripture auto-links to Rhema Bibles WEB */
.scripture-inline-link {
    color: var(--color-accent);
    text-decoration: none;
    border-bottom: 1.5px dotted var(--color-accent);
    font-weight: 500;
    transition: all 0.2s ease;
    cursor: pointer;
}
.scripture-inline-link:hover {
    color: var(--color-gold);
    border-bottom-color: var(--color-gold);
    border-bottom-style: solid;
}

@media (max-width: 480px) {
    .scripture-embed {
        padding: 18px 16px;
        margin: 16px 0 24px;
    }

    .scripture-embed-text {
        font-size: 0.95rem;
    }

    .scripture-embed-footer {
        flex-direction: column;
        align-items: flex-start;
    }
}

/* ========================================
   Animations
   ======================================== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(28px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Ensure content is visible even if JS animations don't trigger */
@media (prefers-reduced-motion: reduce) {
    .fade-in {
        opacity: 1;
        transform: none;
        transition: none;
    }
}

/* Fallback: after page load, ensure all content becomes visible */
.no-js .fade-in {
    opacity: 1;
    transform: none;
}

/* ========================================
   Responsive Design
   ======================================== */
@media (max-width: 1024px) {
    .cards-grid-3,
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .cards-grid-3 > *:last-child:nth-child(odd) {
        grid-column: 1 / -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 82px;
        left: 0;
        right: 0;
        background: var(--color-white);
        flex-direction: column;
        padding: 20px 24px 28px;
        gap: 4px;
        box-shadow: var(--shadow-lg);
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: all 0.4s ease;
    }

    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }

    .nav-link {
        width: 100%;
        padding: 12px 16px;
    }

    .nav-link.nav-cta {
        text-align: center;
        margin-left: 0;
        margin-top: 8px;
    }

    .nav-dropdown-menu {
        position: static;
        box-shadow: none;
        border: none;
        opacity: 1;
        visibility: visible;
        transform: none;
        padding: 0 0 0 20px;
        background: transparent;
    }

    .nav-dropdown > .nav-link::before {
        display: none;
    }

    .section {
        padding: 72px 0;
    }

    .page-header {
        padding: 126px 0 56px;
    }

    .section-header {
        margin-bottom: 44px;
    }

    .cards-grid-3,
    .cards-grid-2,
    .features-grid {
        grid-template-columns: 1fr;
    }

    .cards-grid-3 > *:last-child:nth-child(odd) {
        max-width: none;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .timeline {
        padding-left: 56px;
    }

    .timeline::before {
        left: 20px;
    }

    .timeline-marker {
        left: -56px;
        width: 40px;
        height: 40px;
    }

    .timeline-marker span {
        font-size: 0.62rem;
    }

    .timeline-content {
        padding: 24px 28px;
    }

    .nav-container {
        height: 68px;
    }

    .nav-logo img {
        height: 46px;
        width: 46px;
    }

    .nav-logo {
        font-size: 0.7rem;
        gap: 8px;
        letter-spacing: 1px;
    }

    .nav-menu {
        top: 68px;
    }

    .hero-logo {
        width: 140px;
        height: 140px;
    }

    .page-header {
        padding: 112px 0 48px;
    }

    .page-header h1 {
        font-size: 2rem;
    }

    .page-header p {
        font-size: 0.95rem;
    }

    h2 {
        font-size: 1.6rem;
    }

    .resource-card {
        flex-direction: column;
        text-align: center;
    }

    .cta-banner {
        padding: 60px 0;
    }

    .cta-banner h2 {
        font-size: 1.5rem;
    }

    .footer-logo {
        width: 56px;
        height: 56px;
    }
}

@media (max-width: 480px) {
    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .mandate-item {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .vision-card {
        padding: 32px 24px;
    }

    .founder-card {
        padding: 32px 24px;
    }

    .nav-logo span {
        font-size: 0.6rem;
    }

    .nav-logo img {
        height: 40px;
        width: 40px;
    }

    .section {
        padding: 56px 0;
    }

    .section-header h2 {
        font-size: 1.4rem;
    }

    .blog-card {
        padding: 28px 24px;
    }

    .donate-card {
        padding: 28px 20px;
    }

    .daily-verse-content {
        padding: 24px 20px;
    }

    .timeline {
        padding-left: 44px;
    }

    .timeline::before {
        left: 14px;
    }

    .timeline-marker {
        left: -44px;
        width: 32px;
        height: 32px;
    }

    .timeline-content {
        padding: 20px;
    }
}
