/* =====================================================
   CHURCH FUND STYLE ENHANCEMENTS - ULTRA MODERN
   Beautiful, attractive UI with depth and visual interest
   ===================================================== */

/* ================================
   GLOBAL FONT SIZE STANDARDIZATION
   ================================ */

/* Section Titles - Consistent across all pages */
h2, .h2 {
    font-size: 2.5rem !important;
    font-weight: 700 !important;
    line-height: 1.2 !important;
}

.display-4 {
    font-size: 2.5rem !important;
}

.display-5 {
    font-size: 2rem !important;
}

/* Card/Component Titles - Consistent size */
h3, .h3, h4, .h4 {
    font-size: 1.5rem !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
}

h5, .h5 {
    font-size: 1.25rem !important;
    font-weight: 600 !important;
}

h6, .h6 {
    font-size: 1.1rem !important;
    font-weight: 600 !important;
}

/* Subtitle/Lead text */
.lead {
    font-size: 1.25rem !important;
    font-weight: 400 !important;
    line-height: 1.6 !important;
}

/* Body text */
p {
    font-size: 1rem !important;
    line-height: 1.7 !important;
}

.text-muted {
    font-size: 1rem !important;
    line-height: 1.7 !important;
    color: #6c757d !important;
}

/* Feature card specific */
.feature-card h3,
.feature-card .h3 {
    font-size: 1.5rem !important;
}

.feature-card p {
    font-size: 1rem !important;
}

/* ================================
   END FONT STANDARDIZATION
   ================================ */

/* Enhanced Global Styles */
body {
    font-family: 'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background: linear-gradient(135deg, #FBF9F3 0%, #FFFFFF 100%);
}

/* Beautiful Hero Section Enhancement */
.carousel-item {
    position: relative;
}

.carousel-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(27, 45, 70, 0.85) 0%, rgba(255, 202, 36, 0.3) 100%);
    pointer-events: none;
}

/* Ultra Attractive Feature Cards */
.feature-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
    padding: 50px 35px;
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(27, 45, 70, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    height: 100%;
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-card h3 {
    color: #2C2C2C;
    font-weight: 700;
}

.feature-card p {
    color: #5A5A5A;
}

/* Beautiful Icon Styling with Gradient Background */
.feature-icon {
    font-size: 4rem !important;
    color: #252220;
    margin-bottom: 30px;
    display: inline-flex;
    width: 120px;
    height: 120px;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    border-radius: 50%;
    transition: all 0.5s ease;
    box-shadow: 0 10px 30px rgba(255, 202, 36, 0.3);
    position: relative;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    box-shadow: 0 15px 40px rgba(255, 202, 36, 0.5);
}

/* Make icon visible */
.feature-icon i {
    position: relative;
    z-index: 1;
}

/* Enhanced Typography */
.feature-title,
.program-card-title {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.75rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: #252220;
    line-height: 1.3;
    letter-spacing: -0.5px;
}

.feature-text,
.program-card-text {
    color: #49423E;
    line-height: 1.8;
    margin-bottom: 25px;
    font-size: 1.05rem;
}

/* Ultra Modern Buttons with Gradient and Animation */
.btn-pill {
    border-radius: 50px;
    padding: 15px 35px;
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    position: relative;
    overflow: hidden;
    z-index: 1;
    transition: all 0.4s ease;
}

.btn-outline-primary {
    background: transparent !important;
    color: #1B2D46 !important;
    border: 2px solid #1B2D46 !important;
    font-weight: 800;
    position: relative;
}

.btn-outline-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: #ffc107;
    transition: left 0.5s ease;
    z-index: -1;
}

.btn-outline-primary:hover {
    color: #1B2D46 !important;
    border-color: #ffc107 !important;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 193, 7, 0.4);
}

.btn-outline-primary:hover::before {
    left: 0;
}

/* Primary Buttons with Gradient */
.btn-primary {
    background: linear-gradient(135deg, #1B2D46 0%, #2C4A73 100%) !important;
    color: #FFFFFF !important;
    border: none !important;
    box-shadow: 0 8px 25px rgba(27, 45, 70, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn-primary:hover::after {
    width: 300px;
    height: 300px;
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(27, 45, 70, 0.4);
}

/* Accent Buttons with Beautiful Gradient */
.btn-accent {
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%) !important;
    color: #252220 !important;
    border: none !important;
    font-weight: 800;
    box-shadow: 0 8px 25px rgba(255, 202, 36, 0.3);
}

.btn-accent:hover {
    background: linear-gradient(135deg, #FFD454 0%, #FFE484 100%) !important;
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 12px 35px rgba(255, 202, 36, 0.5);
}

/* Sections with Beautiful Backgrounds */
.section-cream {
    background: linear-gradient(135deg, #FBF9F3 0%, #FFFFFF 50%, #FBF9F3 100%);
    position: relative;
}

.section-cream::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 202, 36, 0.03) 2px, transparent 2px),
        radial-gradient(circle at 80% 80%, rgba(27, 45, 70, 0.03) 2px, transparent 2px);
    background-size: 60px 60px;
    pointer-events: none;
}

.section-light {
    background: #FFFFFF;
    position: relative;
}

.section-dark {
    background: linear-gradient(135deg, #1B2D46 0%, #2C4A73 100%);
    color: #FFFFFF;
    position: relative;
    overflow: hidden;
}

.section-dark::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 202, 36, 0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.section-dark::after {
    content: '';
    position: absolute;
    bottom: -50%;
    left: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(255, 202, 36, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

/* Enhanced Section Titles */
.section-title {
    text-align: center;
    margin-bottom: 70px;
    position: relative;
}

.section-title h2 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: -2px;
    color: #252220;
    font-family: 'Libre Baskerville', Georgia, serif;
}

.section-title p {
    font-size: 1.25rem;
    color: #7A6E67;
    max-width: 700px;
    margin: 20px auto 0;
    line-height: 1.7;
}

/* Beautiful Decorative Divider */
.section-divider {
    width: 100px;
    height: 5px;
    background: linear-gradient(90deg, transparent, #FFCA24, #FFD454, transparent);
    margin: 25px auto;
    border-radius: 10px;
    position: relative;
}

.section-divider::before,
.section-divider::after {
    content: '';
    position: absolute;
    width: 10px;
    height: 10px;
    background: #FFCA24;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.section-divider::before {
    left: -20px;
}

.section-divider::after {
    right: -20px;
}

/* Program Cards with Images - Ultra Attractive */
.program-card {
    background: #FFFFFF;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(27, 45, 70, 0.08);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
    position: relative;
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 202, 36, 0.05), rgba(27, 45, 70, 0.05));
    opacity: 0;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.program-card:hover::before {
    opacity: 1;
}

.program-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 20px 60px rgba(27, 45, 70, 0.15);
}

.program-card-image {
    height: 300px;
    overflow: hidden;
    position: relative;
}

.program-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}

.program-card:hover .program-card-image::after {
    opacity: 1;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-card-image img {
    transform: scale(1.15);
}

.program-card-body {
    padding: 40px 35px;
    flex: 1;
    display: flex;
    flex-direction: column;
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
}

/* Stats Section - Eye-catching */
.stats-wrapper {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
    border-radius: 25px;
    padding: 70px 50px;
    box-shadow: 0 15px 50px rgba(27, 45, 70, 0.1);
    position: relative;
    overflow: hidden;
}

.stats-wrapper::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 202, 36, 0.05) 0%, transparent 70%);
}

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-number {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 5rem;
    font-weight: 400;
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 15px;
    display: block;
    text-shadow: 0 10px 30px rgba(255, 202, 36, 0.3);
}

.stat-label {
    font-size: 1.1rem;
    color: #252220;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
}

/* CTA Section - Stunning */
.cta-section {
    background: linear-gradient(135deg, #1B2D46 0%, #2C4A73 100%);
    color: #FFFFFF;
    padding: 120px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 20%, rgba(255, 202, 36, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(255, 202, 36, 0.08) 0%, transparent 50%);
}

.cta-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    margin-bottom: 30px;
    color: #FFFFFF;
    font-family: 'Libre Baskerville', Georgia, serif;
    position: relative;
    z-index: 1;
}

.cta-text {
    font-size: 1.35rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 800px;
    margin: 0 auto 50px;
    line-height: 1.8;
    position: relative;
    z-index: 1;
}

/* Testimonial Cards - Beautiful */
.testimonial-card {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
    padding: 60px 50px;
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(27, 45, 70, 0.08);
    position: relative;
    border-top: 5px solid transparent;
    border-image: linear-gradient(90deg, #FFCA24, #FFD454) 1;
    transition: all 0.4s ease;
}

.testimonial-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(27, 45, 70, 0.12);
}

.testimonial-quote {
    font-family: 'Libre Baskerville', Georgia, serif;
    font-size: 1.5rem;
    font-style: italic;
    line-height: 1.8;
    color: #49423E;
    margin-bottom: 35px;
    position: relative;
    padding-left: 70px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -20px;
    font-size: 8rem;
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: 'Libre Baskerville', Georgia, serif;
    line-height: 1;
    opacity: 0.5;
}

/* Icon Boxes - Modern and Attractive */
.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 30px;
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
    border-radius: 20px;
    box-shadow: 0 10px 40px rgba(27, 45, 70, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    margin-bottom: 30px;
    position: relative;
    overflow: hidden;
}

.icon-box::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #FFCA24, #FFD454);
    transform: scaleY(0);
    transition: transform 0.4s ease;
}

.icon-box:hover::before {
    transform: scaleY(1);
}

.icon-box:hover {
    transform: translateX(12px);
    box-shadow: 0 15px 50px rgba(27, 45, 70, 0.12);
}

.icon-box-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.2rem;
    color: #252220;
    transition: all 0.4s ease;
    box-shadow: 0 8px 25px rgba(255, 202, 36, 0.3);
}

.icon-box:hover .icon-box-icon {
    background: linear-gradient(135deg, #1B2D46 0%, #2C4A73 100%);
    color: #FFFFFF;
    transform: rotate(-5deg) scale(1.1);
    box-shadow: 0 12px 35px rgba(27, 45, 70, 0.3);
}

/* Spacing Utilities */
.py-100 {
    padding-top: 100px;
    padding-bottom: 100px;
}

.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }

.card-img-wrapper {
    position: relative;
    overflow: hidden;
    border-radius: var(--border-radius-lg) var(--border-radius-lg) 0 0;
}

.card-img-top {
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.card:hover .card-img-top {
    transform: scale(1.1);
}

/* Feature Cards with Icon Styling */
.feature-card {
    background: var(--white);
    padding: 40px 30px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 20px rgba(27, 45, 70, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    border: none;
    height: 100%;
}

.feature-card:hover {
    transform: translateY(-12px);
    box-shadow: 0 15px 45px rgba(27, 45, 70, 0.15);
}

.feature-icon {
    font-size: 3.5rem;
    color: var(--secondary-color);
    margin-bottom: 24px;
    display: inline-block;
    transition: all 0.3s ease;
}

.feature-card:hover .feature-icon {
    transform: scale(1.1);
    color: var(--accent-color);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 16px;
    color: var(--text-heading);
}

.feature-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

/* Service/Program Cards with Better Styling */
.program-card {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 20px rgba(27, 45, 70, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(27, 45, 70, 0.15);
}

.program-card-image {
    height: 280px;
    overflow: hidden;
    position: relative;
}

.program-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.program-card:hover .program-card-image img {
    transform: scale(1.08);
}

.program-card-body {
    padding: 35px 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.program-card-title {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 400;
    margin-bottom: 15px;
    color: var(--text-heading);
    line-height: 1.3;
}

.program-card-text {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 25px;
    flex: 1;
}

/* Pill/Badge Buttons */
.btn-pill {
    border-radius: 50px;
    padding: 12px 28px;
    font-size: 14px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.2px;
}

/* Outline Buttons with Better Effects */
.btn-outline-primary {
    background: transparent !important;
    color: var(--primary-color) !important;
    border: 2px solid var(--primary-color) !important;
    font-weight: 700;
}

.btn-outline-primary:hover {
    background: var(--primary-color) !important;
    color: var(--white) !important;
    border-color: var(--primary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(27, 45, 70, 0.3);
}

.btn-accent {
    background: var(--accent-color) !important;
    color: var(--secondary-color) !important;
    border: 2px solid var(--accent-color) !important;
    font-weight: 700;
}

.btn-accent:hover {
    background: var(--secondary-color) !important;
    color: var(--white) !important;
    border-color: var(--secondary-color) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(37, 34, 32, 0.3);
}

/* Section Dividers and Decorative Elements */
.section-divider {
    width: 80px;
    height: 4px;
    background: var(--accent-color);
    margin: 20px auto 30px;
    border-radius: 2px;
}

.section-divider-left {
    margin: 20px 0 30px 0;
}

/* Stats/Counter Section */
.stats-wrapper {
    background: var(--white);
    border-radius: var(--border-radius-lg);
    padding: 60px 40px;
    box-shadow: 0 4px 30px rgba(27, 45, 70, 0.1);
}

.stat-item {
    text-align: center;
    padding: 20px;
}

.stat-number {
    font-family: var(--font-primary);
    font-size: 4rem;
    font-weight: 400;
    color: var(--accent-color);
    line-height: 1;
    margin-bottom: 10px;
    display: block;
}

.stat-label {
    font-size: 1rem;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

/* CTA (Call to Action) Sections */
.cta-section {
    background: var(--primary-color);
    color: var(--white);
    padding: 100px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg width="100" height="100" xmlns="http://www.w3.org/2000/svg"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>');
    opacity: 0.3;
}

.cta-title {
    font-size: clamp(2.5rem, 4vw, 3.5rem);
    margin-bottom: 25px;
    color: var(--white);
}

.cta-text {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.9);
    max-width: 700px;
    margin: 0 auto 40px;
}

/* Image with Overlay Text */
.image-overlay-card {
    position: relative;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(27, 45, 70, 0.15);
}

.image-overlay-card img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.image-overlay-card:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(27, 45, 70, 0.95), transparent);
    padding: 40px 30px;
    color: var(--white);
}

.image-overlay h3 {
    color: var(--white);
    margin-bottom: 10px;
}

.image-overlay p {
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 0;
}

/* Quote/Testimonial Styling */
.testimonial-card {
    background: var(--white);
    padding: 50px 40px;
    border-radius: var(--border-radius-lg);
    box-shadow: 0 4px 30px rgba(27, 45, 70, 0.08);
    position: relative;
    border-top: 4px solid var(--accent-color);
}

.testimonial-quote {
    font-family: var(--font-primary);
    font-size: 1.375rem;
    font-style: italic;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 30px;
    position: relative;
    padding-left: 60px;
}

.testimonial-quote::before {
    content: '"';
    position: absolute;
    left: 0;
    top: -10px;
    font-size: 6rem;
    color: var(--accent-color);
    font-family: 'Libre Baskerville', Georgia, serif;
    line-height: 1;
}

.testimonial-author {
    font-weight: 600;
    color: var(--secondary-color);
    margin-bottom: 5px;
}

.testimonial-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* Icon Boxes */
.icon-box {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px;
    background: var(--white);
    border-radius: var(--border-radius-lg);
    box-shadow: 0 2px 20px rgba(27, 45, 70, 0.08);
    transition: all 0.3s ease;
    margin-bottom: 30px;
}

.icon-box:hover {
    transform: translateX(10px);
    box-shadow: 0 6px 30px rgba(27, 45, 70, 0.12);
}

.icon-box-icon {
    flex-shrink: 0;
    width: 70px;
    height: 70px;
    background: var(--background-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--secondary-color);
    transition: all 0.3s ease;
}

.icon-box:hover .icon-box-icon {
    background: var(--accent-color);
    color: var(--secondary-color);
    transform: rotate(5deg) scale(1.05);
}

.icon-box-content h4 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    color: var(--text-heading);
}

.icon-box-content p {
    color: var(--text-dark);
    margin: 0;
    line-height: 1.7;
}

/* Background Patterns */
.bg-pattern {
    position: relative;
}

.bg-pattern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 50%, rgba(255, 202, 36, 0.05) 1px, transparent 1px),
        radial-gradient(circle at 80% 80%, rgba(27, 45, 70, 0.05) 1px, transparent 1px);
    background-size: 50px 50px;
    pointer-events: none;
}

/* Image Grid Layouts */
.image-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

.image-grid-item {
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: 0 4px 25px rgba(27, 45, 70, 0.1);
    transition: all 0.3s ease;
}

.image-grid-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 35px rgba(27, 45, 70, 0.15);
}

.image-grid-item img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.image-grid-item:hover img {
    transform: scale(1.08);
}

/* List Styling */
.styled-list {
    list-style: none;
    padding: 0;
}

.styled-list li {
    padding: 15px 0 15px 40px;
    position: relative;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-dark);
}

.styled-list li:last-child {
    border-bottom: none;
}

.styled-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 5 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--accent-color);
    font-size: 1rem;
}

/* Spacing Utilities */
.mb-60 { margin-bottom: 60px; }
.mb-80 { margin-bottom: 80px; }
.mt-60 { margin-top: 60px; }
.mt-80 { margin-top: 80px; }
.py-60 { padding-top: 60px; padding-bottom: 60px; }
.py-80 { padding-top: 80px; padding-bottom: 80px; }
.py-100 { padding-top: 100px; padding-bottom: 100px; }

/* =====================================================
   CHURCH FUND SPECIFIC SECTIONS
   ===================================================== */

/* Mission Statement Section */
.church-image-collage {
    position: relative;
}

.church-image-collage img {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.church-image-collage img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 25px 60px rgba(27, 45, 70, 0.2) !important;
}

/* Icon Card Circular Style - Cream Design */
.icon-card-circular {
    padding: 40px 25px;
    background: #F5F1E8;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.icon-card-circular:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.icon-card-circular h4 {
    color: #2C2C2C;
    font-weight: 700;
}

.icon-card-circular p {
    color: #5A5A5A;
}

.icon-circle-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.icon-circle {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.icon-card-circular:hover .icon-circle {
    transform: scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}

.bg-gradient-primary {
    background: linear-gradient(135deg, #1B2D46 0%, #2C4468 100%);
}

.bg-gradient-success {
    background: linear-gradient(135deg, #28a745 0%, #34ce57 100%);
}

.bg-gradient-warning {
    background: linear-gradient(135deg, #ffc107 0%, #ffca24 100%);
}

.bg-gradient-info {
    background: linear-gradient(135deg, #17a2b8 0%, #20c9e0 100%);
}

/* Project Cards - Cream Design */
.project-card {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    background: #F5F1E8;
    height: 100%;
}

.project-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.project-image-wrapper {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.project-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.project-card:hover .project-image {
    transform: scale(1.05);
}

.project-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
}

.project-content {
    background: #F5F1E8;
}

.project-content h3 {
    color: #2C2C2C;
    font-weight: 700;
}

.project-content p {
    color: #5A5A5A;
}

/* Funding Progress */
.funding-progress .progress {
    background: #E9ECEF;
    border-radius: 10px;
    overflow: hidden;
}

.funding-progress .progress-bar {
    background: linear-gradient(90deg, #FFCA24 0%, #FFD454 100%);
    box-shadow: 0 2px 10px rgba(255, 202, 36, 0.3);
    transition: width 1s ease;
}

.text-golden {
    color: #FFCA24 !important;
}

.bg-golden {
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%) !important;
}

/* Golden Button Styles */
.btn-golden {
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    border: none;
    color: #1B2D46;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.btn-golden::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.btn-golden:hover::before {
    width: 300px;
    height: 300px;
}

.btn-golden:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 202, 36, 0.4);
    color: #1B2D46;
}

.btn-golden-outline {
    background: transparent;
    border: 2px solid #FFCA24;
    color: #FFCA24;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.4s ease;
}

.btn-golden-outline:hover {
    background: linear-gradient(135deg, #FFCA24 0%, #FFD454 100%);
    color: #1B2D46;
    border-color: #FFCA24;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(255, 202, 36, 0.3);
}

/* Decorative Divider */
.decorative-divider {
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #FFCA24 0%, #FFD454 100%);
    position: relative;
}

.decorative-divider::before,
.decorative-divider::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #FFCA24;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.decorative-divider::before {
    left: -15px;
}

.decorative-divider::after {
    right: -15px;
}

/* Letter Spacing */
.letter-spacing-wide {
    letter-spacing: 2px;
}

/* Background Colors */
.bg-cream-light {
    background: linear-gradient(135deg, #FBF9F3 0%, #FFFFFF 100%);
}

.bg-gradient-light {
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
}

/* Stats Cards - Cream Design */
.stats-card {
    padding: 40px 30px;
    background: #F5F1E8;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
}

.stats-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.stats-card h5 {
    color: #2C2C2C;
    font-weight: 700;
}

.stats-card p {
    color: #5A5A5A;
}

.stats-number {- Cream Design */
.service-card-modern {
    background: #F5F1E8;
    padding: 50px 40px;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    height: 100%;
}

.service-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.service-icon-wrapper {
    margin-bottom: 30px;
}

.service-content h3 {
    color: #2C2C2C;
    font-weight: 700;
}

.service-content p {
    color: #5A5A5A
.service-icon-wrapper {
    margin-bottom: 30px;
}
- Cream Design */
.resource-card {
    background: #F5F1E8;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.resource-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.resource-image-wrapper {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.resource-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.resource-card:hover .resource-image {
    transform: scale(1.05);
}

.resource-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.resource-card:hover .resource-overlay {
    opacity: 0;
}

.resource-content {
    background: #F5F1E8;
}

.resource-content h3 {
    color: #2C2C2C;
    font-weight: 700;
}

.resource-content p {- Cream Design */
.involvement-card {
    padding: 60px 50px;
    border-radius: 25px;
    background: #F5F1E8;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s ease;
    height: 100%;
}

.involvement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.involvement-card h3 {
    color: #2C2C2C;
    font-weight: 700;
}

.involvement-card p,
.involvement-card .lead {
    color: #5A5A5A;
}

.involvement-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(27, 45, 70, 0.15);
}

.involvement-icon {
    display: flex;
    justify-content: center;
}

/* Donation Breakdown */
.donation-breakdown {
    padding: 40px;
    background: linear-gradient(135deg, #FFFFFF 0%, #FBF9F3 100%);
    border-radius: 20px;
    box-shadow: 0 15px 50px rgba(27, 45, 70, 0.1);
}

.breakdown-item {
    padding: 25px 0;
    border-bottom: 1px solid #E9ECEF;
    transition: transform 0.3s ease;
}

.breakdown-item:last-child {
    border-bottom: none;
}

.breakdown-item:hover {
    transform: translateX(10px);
}

/* Impact Examples */
.impact-examples {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-item {
    display: flex;
    align-items: flex-start;
    padding: 15px 0;
    font-size: 1.1rem;
    color: #2C4468;
}

.impact-item i {
    flex-shrink: 0;
    margin-top: 3px;
}

/* Hover Lift Utility */
.hover-lift {
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.hover-lift:hover {
    transform: translateY(-10px);
}

/* =====================================================
   CONTACT PAGE STYLES
   ===================================================== */

/* Contact Hero Section */
.contact-hero {
    position: relative;
}

.contact-hero h1 {
    color: #FFFFFF;
}

.contact-hero h2 {
    color: #FFCA24;
}

.contact-hero p {
    color: rgba(255, 255, 255, 0.9);
}

/* Location Cards */
.location-card {
    transition: all 0.4s ease;
}

.location-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12) !important;
}

.location-card h3 {
    color: #2C2C2C;
}

.location-card h6 {
    color: #1B2D46;
}

.location-card p {
    color: #5A5A5A;
}

.location-image-wrapper img {
    transition: transform 0.5s ease;
}

.location-card:hover .location-image-wrapper img {
    transform: scale(1.05);
}

/* Contact Form */
.contact-form .form-control {
    background: #F5F1E8;
    border: none;
    transition: all 0.3s ease;
}

.contact-form .form-control:focus {
    background: #FFFFFF;
    box-shadow: 0 4px 15px rgba(255, 202, 36, 0.2);
    outline: none;
}

.contact-form .form-label {
    color: #2C2C2C;
    font-weight: 700;
    letter-spacing: 1px;
}

/* Map Container */
.map-container {
    transition: all 0.4s ease;
}

.map-container:hover {
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15) !important;
}
