﻿:root {
    --primary: #8403fc;
    --secondary: #4c019a;
    --dark: #18003a;
    --white: #ffffff;
    --text: #1f1631;
    --text-soft: #5d5670;
    --line: rgba(76, 1, 154, 0.12);
    --surface: rgba(255, 255, 255, 0.88);
    --surface-strong: #ffffff;
    --page-bg: linear-gradient(180deg, #ffffff 0%, #f8f3ff 48%, #ffffff 100%);
    --hero-glow: linear-gradient(180deg, rgba(255, 255, 255, 0.2) 0%, rgba(132, 3, 252, 0.22) 52%, rgba(24, 0, 58, 0.2) 100%);
    --brand-gradient: linear-gradient(135deg, #8403fc 0%, #5406c8 100%);
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: var(--page-bg);
    color: var(--text);
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'DM Serif Display', serif;
}

a {
    color: inherit;
}

/* Header */

.header {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 1000;
    backdrop-filter: blur(14px);
    background: rgba(38, 38, 39, 0.6);
    border-bottom: 1px solid rgba(132, 3, 252, 0.2);
    transition: background 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.header.is-scrolled {
    background: rgba(17, 11, 29, 0.9);
    box-shadow: 0 18px 40px rgba(24, 0, 58, 0.08);
    border-bottom-color: rgba(132, 3, 252, 0.26);
}

.nav-container {
    width: 90%;
    max-width: 1400px;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 80px;
}

.logo-link {
    text-decoration: none;
    color: inherit;
    display: inline-block;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.logo img {
    height: 40px;
}

.logo-name {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 17px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1.2;
    color: var(--white);
}

.nav {
    display: flex;
    gap: 35px;
}

.nav a {
    color: var(--white);
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    position: relative;
    transition: color 0.3s ease;
}

.nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -6px;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.3s ease;
}

.nav a:hover,
.nav a.active {
    color: var(--primary);
}

.nav a:hover::after,
.nav a.active::after {
    width: 100%;
}

.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--white);
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.is-active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
}

.hamburger.is-active span:nth-child(2) {
    opacity: 0;
}

.hamburger.is-active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
}

/* Hero */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 5% 70px;
    position: relative;
    overflow: hidden;
}

.hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -2;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.62) 0%, rgba(255, 255, 255, 0.3) 35%, rgba(248, 243, 255, 0.92) 100%),
        radial-gradient(circle at top center, rgba(132, 3, 252, 0.18), transparent 55%);
    z-index: -1;
}

.hero-content {
    max-width: 860px;
    padding: 28px;
    border-radius: 32px;
    background: rgba(255, 255, 255, 0.52);
    border: 1px solid rgba(255, 255, 255, 0.55);
    box-shadow: 0 24px 60px rgba(24, 0, 58, 0.1);
    backdrop-filter: blur(14px);
}

.hero-kicker,
.section-tag {
    display: inline-flex;
    align-items: center;
    padding: 8px 14px;
    border-radius: 999px;
    background: rgba(132, 3, 252, 0.1);
    color: #7d29f4;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
}

.hero h1 {
    font-size: clamp(3rem, 8vw, 6rem);
    margin: 18px 0 18px;
    line-height: 0.96;
    color: var(--dark);
}

.highlight,
.accent {
    background: var(--brand-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-copy {
    max-width: 680px;
    margin: 0 auto;
    color: var(--text-soft);
    font-size: 1.08rem;
    line-height: 1.9;
}

.hero-verse {
    max-width: 700px;
    margin: 1rem auto 0;
    font-size: 0.98rem;
    line-height: 1.8;
    color: #3f3258;
    font-style: italic;
}

.hero-verse span {
    display: inline-block;
    margin-left: 8px;
    color: var(--primary);
    font-weight: 700;
    font-style: normal;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-top: 2rem;
}

.btn {
    padding: 1rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    font-weight: 700;
    transition: transform 0.3s ease, box-shadow 0.3s ease, background 0.3s ease, color 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    border: none;
}

.btn-primary {
    background: var(--brand-gradient);
    color: var(--white);
    box-shadow: 0 16px 34px rgba(84, 6, 200, 0.22);
}

.btn-secondary {
    border: 1.5px solid rgba(24, 0, 58, 0.12);
    background: rgba(255, 255, 255, 0.86);
    color: var(--dark);
}

.btn:hover,
.submit-btn:hover,
.modal-btn:hover,
.amount-option:hover,
.social-btn:hover,
.visit-btn:hover,
.sermon-float:hover {
    transform: translateY(-2px);
}

/* Shared section shell */

.section-shell {
    width: min(1200px, 100%);
    margin: 0 auto;
}

.giving-intro,
.testimonials-section,
.donation-section {
    padding: 96px 5%;
}

.giving-intro {
    padding-top: 48px;
}

.intro-copy {
    text-align: center;
    max-width: 820px;
    margin: 0 auto 40px;
}

.intro-copy h2,
.testimonials-header h2,
.donation-content h2 {
    font-size: clamp(2.3rem, 5vw, 3.5rem);
    line-height: 1.05;
    color: var(--dark);
    margin: 18px 0 18px;
}

.intro-copy p,
.testimonials-header p,
.donation-copy {
    color: var(--text-soft);
    line-height: 1.85;
    font-size: 1rem;
}

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

.intro-card,
.testimonial-card,
.donation-form-wrapper {
    background: var(--surface);
    border: 1px solid var(--line);
    box-shadow: 0 20px 50px rgba(24, 0, 58, 0.08);
    backdrop-filter: blur(8px);
}

.intro-card {
    border-radius: 24px;
    padding: 28px;
}

.intro-card i {
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 16px;
    background: rgba(132, 3, 252, 0.1);
    color: var(--primary);
    font-size: 22px;
    margin-bottom: 18px;
}

.intro-card h3 {
    font-size: 1.45rem;
    margin-bottom: 10px;
    color: var(--dark);
}

.intro-card p {
    color: var(--text-soft);
    line-height: 1.8;
}

/* Testimonials */

.testimonials-section {
    background:
        radial-gradient(circle at top left, rgba(132, 3, 252, 0.12), transparent 28%),
        linear-gradient(180deg, #fbf9ff 0%, #f4efff 100%);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 3rem;
}

.testimonials-wrapper {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 2rem;
}

.testimonial-card {
    border-radius: 28px;
    padding: 2.2rem;
    position: relative;
}

.testimonial-card::before {
    content: '"';
    position: absolute;
    top: 1.3rem;
    left: 1.7rem;
    font-size: 5rem;
    font-family: 'DM Serif Display', serif;
    color: rgba(132, 3, 252, 0.18);
    line-height: 1;
}

.testimonial-text {
    font-size: 1.02rem;
    line-height: 1.9;
    color: #3e3555;
    margin-bottom: 1.7rem;
    position: relative;
    z-index: 1;
}

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

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(132, 3, 252, 0.3);
}

.testimonial-info h4 {
    font-size: 1.05rem;
    margin-bottom: 0.25rem;
    color: var(--dark);
}

.testimonial-info p {
    color: var(--text-soft);
    font-size: 0.92rem;
}

/* Donation section */

.donation-section {
    background:
        radial-gradient(circle at top right, rgba(132, 3, 252, 0.12), transparent 30%),
        linear-gradient(180deg, #ffffff 0%, #f8f4ff 100%);
}

.donation-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: center;
}

.donation-image {
    height: 560px;
    border-radius: 28px;
    background: linear-gradient(180deg, rgba(24, 0, 58, 0.08), rgba(132, 3, 252, 0.12));
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(24, 0, 58, 0.14);
}

.donation-image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.donation-form-wrapper {
    margin-top: 2rem;
    padding: 2rem;
    border-radius: 28px;
}

.amount-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.amount-option {
    padding: 1rem;
    border: 1.5px solid rgba(132, 3, 252, 0.18);
    text-align: center;
    border-radius: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
    font-weight: 700;
    color: var(--dark);
    background: rgba(255, 255, 255, 0.95);
    font: inherit;
}

.amount-option.active {
    background: var(--brand-gradient);
    color: var(--white);
    border-color: transparent;
    box-shadow: 0 14px 30px rgba(132, 3, 252, 0.25);
}

.custom-amount-wrapper {
    position: relative;
    margin-bottom: 1rem;
}

.currency-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #705d93;
    font-weight: 700;
    font-size: 0.95rem;
}

.form-input {
    width: 100%;
    padding: 1rem;
    background: rgba(255, 255, 255, 0.95);
    border: 1.5px solid rgba(132, 3, 252, 0.14);
    border-radius: 16px;
    color: var(--text);
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease, background 0.3s ease;
}

.form-input {
    padding-left: 1rem;
}

.form-input:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--surface-strong);
    box-shadow: 0 0 0 4px rgba(132, 3, 252, 0.1);
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.55rem;
    font-weight: 600;
    color: #44305f;
}

.copy-input-wrap {
    position: relative;
}

.copy-input-wrap .form-input {
    padding-right: 84px;
}

.copy-field-btn {
    position: absolute;
    top: 50%;
    right: 10px;
    transform: translateY(-50%);
    border: 1px solid rgba(132, 3, 252, 0.22);
    border-radius: 10px;
    background: #ffffff;
    color: #5a2ab3;
    font-size: 0.82rem;
    font-weight: 700;
    padding: 6px 10px;
    cursor: pointer;
    line-height: 1;
}

.copy-field-btn:hover {
    background: #f3eaff;
}

.network-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 0.9rem;
}

.network-option {
    position: relative;
    display: block;
    min-height: 94px;
    padding: 0.9rem;
    border-radius: 16px;
    border: 1.5px solid rgba(132, 3, 252, 0.14);
    background: rgba(255, 255, 255, 0.96);
    cursor: pointer;
    transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}

.network-option:hover {
    transform: translateY(-2px);
    border-color: rgba(132, 3, 252, 0.28);
    box-shadow: 0 16px 28px rgba(24, 0, 58, 0.08);
}

.network-option.active {
    border-color: rgba(132, 3, 252, 0.4);
    background: linear-gradient(180deg, rgba(132, 3, 252, 0.08) 0%, rgba(255, 255, 255, 0.98) 100%);
    box-shadow: 0 18px 32px rgba(132, 3, 252, 0.14);
}

.network-option input {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

.network-brand {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    min-height: 100%;
}

.network-logo {
    width: 44px;
    height: 44px;
    border-radius: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    flex: 0 0 44px;
}

.network-logo i {
    font-size: 1.05rem;
}

.network-logo-mtn {
    background: linear-gradient(135deg, #ffe27a 0%, #ffca1a 100%);
    color: #453100;
    border: 1px solid rgba(92, 63, 0, 0.12);
}

.network-logo-telecel {
    background: linear-gradient(135deg, #ffb0b0 0%, #d81515 100%);
    color: #ffffff;
}

.network-logo-at {
    background: linear-gradient(135deg, #c8e1ff 0%, #1570d8 100%);
    color: #ffffff;
}

.network-logo-bank {
    background: linear-gradient(135deg, #ece9ff 0%, #b09bff 100%);
    color: #4c019a;
}

.network-logo-card {
    background: linear-gradient(135deg, #ffe7d7 0%, #ff944d 100%);
    color: #8a3c00;
}

.network-logo-paypal {
    background: linear-gradient(135deg, #dff2ff 0%, #0070ba 100%);
    color: #ffffff;
}

.network-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-width: 0;
}

.network-name {
    font-weight: 700;
    font-size: 0.96rem;
    color: var(--dark);
    line-height: 1.25;
}

.network-note {
    font-size: 0.8rem;
    line-height: 1.45;
    color: var(--text-soft);
}

.payment-details {
    margin-top: 1.1rem;
    margin-bottom: 0.4rem;
}

.payment-panel {
    display: none;
    padding: 1.15rem;
    border-radius: 20px;
    border: 1px solid rgba(132, 3, 252, 0.12);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.82) 0%, rgba(248, 243, 255, 0.96) 100%);
}

.payment-panel.active {
    display: block;
}

.payment-panel-header {
    margin-bottom: 1rem;
}

.payment-panel-header h3 {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 700;
    color: var(--dark);
    margin-bottom: 0.25rem;
}

.payment-panel-header p {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--text-soft);
}

.payment-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1rem;
}

.payment-grid .form-group {
    margin-bottom: 0;
}

.payment-grid-span-2 {
    grid-column: span 2;
}

select.form-input {
    cursor: pointer;
}

select.form-input option {
    color: var(--text);
    background: var(--surface-strong);
}

.submit-btn {
    width: 100%;
    padding: 1.1rem;
    border: none;
    border-radius: 16px;
    background: var(--brand-gradient);
    color: var(--white);
    font-size: 1.05rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.3s ease;
    margin-top: 1rem;
    box-shadow: 0 16px 34px rgba(84, 6, 200, 0.2);
}

.submit-btn:disabled {
    opacity: 0.72;
    cursor: wait;
}

.secure-note {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 1.4rem;
    color: var(--text-soft);
    font-size: 0.9rem;
}

.secure-note svg {
    width: 16px;
    height: 16px;
    color: var(--primary);
}

/* Floating sermon button */

.sermon-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--primary);
    color: var(--white);
    padding: 14px 18px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.25);
    z-index: 999;
    animation: shakeBtn 5s infinite;
    transition: transform 0.3s ease, background 0.3s ease;
}

.sermon-icon {
    width: 40px;
    height: 40px;
    background: var(--white);
    color: #000000;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: bold;
}

.sermon-text {
    font-size: 14px;
}

.sermon-float:hover {
    background: var(--secondary);
}

@keyframes shakeBtn {
    0% { transform: translateX(0); }
    2% { transform: translateX(-3px); }
    4% { transform: translateX(3px); }
    6% { transform: translateX(-3px); }
    8% { transform: translateX(3px); }
    10% { transform: translateX(0); }
    100% { transform: translateX(0); }
}

/* Footer copied from site shell */

.church-footer {
    --text-primary: #ffffff;
    --text-secondary: #cbb6ff;
    --accent-color: #a855f7;
    --accent-glow: rgba(168, 85, 247, 0.4);
    --border-color: rgba(255, 255, 255, 0.1);
    --transition-speed: 0.3s;
    width: 100%;
    margin: 0;
    border-radius: 0;
    background: linear-gradient(-45deg, #8403fe, #4c019a, #180032, #4c019a);
    background-size: 400% 400%;
    animation: gradientMove 15s ease infinite;
    color: var(--text-primary);
    padding: 80px 5% 40px;
    position: relative;
    overflow: hidden;
    border-top: 1px solid var(--border-color);
}

.church-footer,
.church-footer * {
    box-sizing: border-box;
}

.church-footer h3,
.church-footer p,
.church-footer ul {
    margin: 0;
    padding: 0;
}

.footer-logo {
    width: 120px;
    height: 120px;
    object-fit: cover;
    border-radius: 50%;
    display: block;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeUp 0.8s ease forwards;
}

.church-footer::before {
    content: "";
    position: absolute;
    top: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, var(--accent-glow) 0%, transparent 70%);
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
}

.footer-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 1fr;
    gap: 20px;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 30px;
    font-size: 0.95rem;
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeUp 0.8s ease 0.2s forwards;
}

.contact-info {
    list-style: none;
    margin-bottom: 30px;
}

.contact-info li {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    transition: all var(--transition-speed);
    opacity: 0;
    transform: translateX(-20px);
    animation: slideRight 0.8s ease forwards;
}

.contact-info li:nth-child(1) { animation-delay: 0.4s; }
.contact-info li:nth-child(2) { animation-delay: 0.5s; }
.contact-info li:nth-child(3) { animation-delay: 0.6s; }

.contact-info li i {
    width: 30px;
    height: 30px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    color: var(--accent-color);
    font-size: 0.8rem;
    transition: all var(--transition-speed);
    flex: 0 0 30px;
}

.contact-info li:hover i {
    background: var(--accent-color);
    color: #180032;
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--accent-glow);
}

.contact-info li:hover {
    color: var(--text-primary);
    transform: translateX(5px);
}

.social-links {
    display: flex;
    gap: 15px;
    opacity: 0;
    animation: fadeIn 1s ease 0.8s forwards;
}

.social-btn {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all var(--transition-speed);
    position: relative;
    overflow: hidden;
}

.social-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: var(--accent-color);
    transform: translateY(100%);
    transition: transform var(--transition-speed);
    z-index: -1;
}

.social-btn:hover {
    color: #180032;
    border-color: var(--accent-color);
}

.social-btn:hover::before {
    transform: translateY(0);
}

.footer-col h3 {
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 25px;
    color: var(--text-primary);
    position: relative;
    display: inline-block;
    opacity: 0;
    transform: translateY(20px);
    animation: footerFadeUp 0.8s ease 0.3s forwards;
}

.footer-col h3::after {
    content: "";
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent-color);
    transition: width 0.3s ease;
}

.footer-col:hover h3::after {
    width: 100%;
}

.footer-links {
    list-style: none;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    display: inline-block;
}

.footer-links a::before {
    content: ">";
    position: absolute;
    left: -15px;
    opacity: 0;
    color: var(--accent-color);
    transform: translateX(-10px);
    transition: all 0.3s ease;
}

.footer-links a:hover {
    color: var(--text-primary);
    padding-left: 15px;
}

.footer-links a:hover::before {
    opacity: 1;
    transform: translateX(0);
}

.worship-box {
    grid-column: 2 / 5;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: -75px;
    margin-bottom: 0;
}

.worship-box h2 {
    font-size: 1.6rem;
    margin-bottom: 30px;
    color: var(--white);
}

.worship-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 60px;
    flex-wrap: wrap;
}

.worship-item {
    display: flex;
    align-items: center;
    gap: 15px;
    text-align: left;
}

.worship-item i {
    font-size: 20px;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px;
    border-radius: 8px;
    color: #ffd54a;
}

.worship-item h4 {
    margin-bottom: 5px;
    font-size: 1rem;
    font-family: 'Inter', sans-serif;
}

.worship-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.visit-btn {
    display: inline-block;
    background: #ffd54a;
    color: #180032;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.visit-btn:hover {
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.footer-bottom {
    border-top: 1px solid var(--border-color);
    padding-top: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    transition: all 0.8s ease;
}

.copyright {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Modal */

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.75);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    visibility: hidden;
    opacity: 0;
    transition: all 0.4s ease;
}

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

.modal-content {
    background: linear-gradient(135deg, #fffefe 0%, #f6f0ff 100%);
    padding: 3rem 2.4rem;
    border-radius: 30px;
    text-align: center;
    max-width: 500px;
    width: 90%;
    border: 1px solid rgba(132, 3, 252, 0.14);
    transform: scale(0.8);
    transition: transform 0.4s ease;
    box-shadow: 0 26px 60px rgba(24, 0, 58, 0.18);
}

.modal.active .modal-content {
    transform: scale(1);
}

.modal-icon {
    width: 92px;
    height: 92px;
    border-radius: 50%;
    background: var(--brand-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.8rem;
    font-size: 2.5rem;
    color: var(--white);
}

.modal h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--dark);
}

.modal p {
    color: var(--text-soft);
    margin-bottom: 2rem;
    line-height: 1.8;
}

.modal-btn {
    padding: 1rem 3rem;
    background: var(--brand-gradient);
    border: none;
    border-radius: 50px;
    color: var(--white);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 10px 30px rgba(132, 3, 252, 0.26);
}

/* Reveal */

.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Animations */

@keyframes footerFadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideRight {
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

@keyframes gradientMove {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Responsive */

@media (max-width: 1024px) {
    .intro-cards,
    .testimonials-wrapper,
    .donation-wrapper {
        grid-template-columns: 1fr;
    }

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

    .worship-box {
        grid-column: 1 / -1;
        margin-top: 0;
    }
}

@media (max-width: 900px) {
    .nav {
        position: absolute;
        top: 80px;
        right: -100%;
        background: rgba(24, 0, 58, 0.95);
        flex-direction: column;
        width: 100%;
        text-align: center;
        padding: 34px 0;
        transition: right 0.4s ease;
        box-shadow: 0 24px 40px rgba(24, 0, 58, 0.08);
        border-bottom: 1px solid rgba(132, 3, 252, 0.1);
    }

    .nav.active {
        right: 0;
    }

    .hamburger {
        display: flex;
    }

    .hero-content {
        padding: 24px 18px;
    }

    .logo-name {
        font-size: 14px;
    }
}

@media (max-width: 768px) {
    .giving-intro,
    .testimonials-section,
    .donation-section {
        padding: 72px 5%;
    }

    .amount-grid {
        grid-template-columns: 1fr 1fr;
    }

    .network-grid {
        grid-template-columns: 1fr 1fr;
    }

    .payment-grid {
        grid-template-columns: 1fr;
    }

    .payment-grid-span-2 {
        grid-column: span 1;
    }

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

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    .worship-grid {
        flex-direction: column;
        gap: 30px;
    }

    .sermon-text {
        display: none;
    }

    .sermon-float {
        padding: 14px;
    }
}

@media (max-width: 560px) {
    .hero {
        padding-top: 108px;
    }

    .hero h1 {
        font-size: 2.8rem;
    }

    .amount-grid {
        grid-template-columns: 1fr;
    }

    .network-grid {
        grid-template-columns: 1fr;
    }

    .donation-form-wrapper {
        padding: 1.4rem;
    }

    .donation-image {
        height: 360px;
    }
}

/* ==============================
WATCH BUTTON BRAND STYLE
============================== */
.sermon-float{
  display:inline-flex;
  align-items:center;
  gap:10px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.2) !important;
  border-radius:999px !important;
  padding:10px 16px 10px 12px !important;
  box-shadow:0 14px 28px rgba(76,1,154,0.35) !important;
  text-decoration:none;
}

.sermon-icon{
  width:34px !important;
  height:24px !important;
  border-radius:8px !important;
  background:#ffffff !important;
  color:transparent !important;
  display:inline-flex !important;
  align-items:center !important;
  justify-content:center !important;
  font-size:0 !important;
  position:relative;
}

.sermon-icon::before{
  content:"";
  display:block;
  width:0;
  height:0;
  border-top:6px solid transparent;
  border-bottom:6px solid transparent;
  border-left:10px solid #8403fc;
  margin-left:2px;
}

.sermon-text{
  color:#ffffff !important;
  font-weight:700;
  letter-spacing:0.01em;
}

.sermon-float:hover{
  transform:translateY(-2px);
  box-shadow:0 18px 34px rgba(76,1,154,0.42) !important;
}

a.hero-btn-secondary[href*="watch.html"],
a.btn-secondary[href*="watch.html"]{
  display:inline-flex;
  align-items:center;
  gap:8px;
  background:linear-gradient(135deg, #8403fc 0%, #4c019a 100%) !important;
  color:#ffffff !important;
  border:1px solid rgba(255,255,255,0.25) !important;
  box-shadow:0 10px 24px rgba(76,1,154,0.3) !important;
}

a.hero-btn-secondary[href*="watch.html"]::before,
a.btn-secondary[href*="watch.html"]::before{
  content:"▶";
  display:inline-flex;
  align-items:center;
  justify-content:center;
  width:22px;
  height:14px;
  border-radius:4px;
  background:#ffffff;
  color:#8403fc;
  font-size:9px;
  line-height:1;
  font-weight:800;
}
