/* ============================================
   KLPT Church Website - Main Stylesheet
   Responsive & Modern Design
   ============================================ */

:root {
    --primary-color: #001fd2;
    --secondary-color: #4a90e2;
    --accent-color: #7c3aed;
    --text-dark: #333333;
    --text-light: #666666;
    --bg-light: #f2f4f6;
    --bg-white: #ffffff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 30px rgba(0, 0, 0, 0.15);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    color: var(--text-dark);
    background-color: var(--bg-light);
    line-height: 1.6;
    overflow-x: hidden;
}

/* ============================================
   Header & Navigation - Modern Design
   ============================================ */

/* Top Bar */
.topbar-modern {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: white;
    padding: 12px 0;
    font-size: 13px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.topbar-contact {
    display: flex;
    gap: 25px;
    flex-wrap: wrap;
}

.topbar-link {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    font-weight: 500;
}

.topbar-link i {
    color: var(--primary-color);
    font-size: 14px;
}

.topbar-link:hover {
    color: var(--primary-color);
    transform: translateX(3px);
}

.language-selector-modern {
    display: flex;
    align-items: center;
    gap: 8px;
    justify-content: center;
}

.lang-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-weight: 600;
    padding: 4px 8px;
    border-radius: 4px;
    transition: all 0.3s;
    font-size: 12px;
    text-transform: uppercase;
}

.lang-link:hover,
.lang-link.active {
    color: white;
    background: var(--primary-color);
}

.lang-divider {
    color: rgba(255, 255, 255, 0.3);
    font-size: 12px;
}

.topbar-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

.social-icon {
    width: 32px;
    height: 32px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.8);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 14px;
}

.social-icon:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px) scale(1.1);
}

/* Main Header */
.header-modern {
    background: white;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
    padding: 0;
}

.header-modern.scrolled {
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.12);
    padding: 5px 0;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    gap: 30px;
    position: relative;
}

/* Logo */
.logo-modern {
    display: flex;
    align-items: center;
    gap: 15px;
    text-decoration: none;
    transition: transform 0.3s;
}

.logo-modern:hover {
    transform: scale(1.02);
}

.logo-image-wrapper {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #f0f4ff 0%, #e0e9ff 100%);
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.15);
}

.logo-img {
    height: 100%;
    width: 100%;
    object-fit: contain;
    max-height: 45px;
}

.logo-text {
    display: flex;
    flex-direction: column;
}

.logo-title {
    font-size: 24px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.2;
    letter-spacing: -0.5px;
}

.logo-subtitle {
    font-size: 11px;
    color: var(--text-light);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 2px;
}

/* Navigation */
.navmenu-modern {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.nav-list {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 8px;
    align-items: center;
}

.nav-item {
    position: relative;
}

.nav-link {
    color: var(--text-dark);
    text-decoration: none;
    font-weight: 600;
    font-size: 15px;
    padding: 10px 18px;
    border-radius: 8px;
    transition: all 0.3s;
    display: block;
    position: relative;
}

.nav-link span {
    position: relative;
    z-index: 1;
}

.nav-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 8px;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav-link:hover::before,
.nav-link.active::before {
    opacity: 1;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link.active {
    color: var(--primary-color);
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
}

.nav-link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

/* Join Button */
.btn-join-modern {
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: white;
    padding: 12px 28px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 15px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
    border: none;
    white-space: nowrap;
}

.btn-join-modern:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 31, 210, 0.4);
    color: white;
    gap: 12px;
}

.btn-join-modern i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-join-modern:hover i {
    transform: translateX(3px);
}

/* Mobile join button - hidden on desktop */
.mobile-join-btn {
    display: none !important;
}

/* Mobile Navigation Toggle */
.mobile-nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 10001;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    align-items: center;
    justify-content: center;
}

.mobile-nav-toggle span {
    width: 28px;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px;
    transition: all 0.3s;
}

.mobile-nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.mobile-nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.mobile-nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

/* Responsive Design */
@media (max-width: 1199px) {
    .header-content {
        padding: 12px 0;
    }
    
    .logo-title {
        font-size: 20px;
    }
    
    .logo-subtitle {
        font-size: 10px;
    }
    
    .nav-list {
        gap: 4px;
    }
    
    .nav-link {
        padding: 8px 14px;
        font-size: 14px;
    }
    
    .btn-join-modern {
        padding: 10px 20px;
        font-size: 14px;
    }
}

@media (max-width: 991px) {
    /* Hide desktop join button on mobile */
    .header-content > .btn-join-modern:not(.mobile-join-btn) {
        display: none !important;
    }
    .topbar-contact {
        gap: 15px;
    }
    
    .topbar-social {
        gap: 8px;
    }
    
    .logo-image-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .logo-title {
        font-size: 18px;
    }
    
    .header-content {
        position: relative;
    }
    
    .mobile-nav-toggle {
        display: flex;
        position: absolute;
        right: 15px;
        top: 50%;
        transform: translateY(-50%);
    }
    
    .navmenu-modern {
        position: relative;
        margin-left: auto;
    }
    
    .nav-list {
        position: fixed;
        top: 0;
        right: -100%;
        width: 320px;
        height: 100vh;
        background: white;
        flex-direction: column;
        padding: 100px 30px 30px;
        box-shadow: -5px 0 30px rgba(0, 0, 0, 0.15);
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        z-index: 10000;
        align-items: flex-start;
        gap: 0;
        overflow-y: auto;
    }
    
    .navmenu-modern.mobile-nav-active .nav-list {
        right: 0;
    }
    
    .nav-item {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-link {
        padding: 18px 0;
        width: 100%;
        font-size: 16px;
    }
    
    .nav-link::before {
        display: none;
    }
    
    .nav-link.active::after {
        display: none;
    }
    
    .btn-join-modern {
        display: none;
    }
    
    /* Mobile join button - show only when menu is open */
    .navmenu-modern.mobile-nav-active .mobile-join-btn {
        display: flex !important;
        width: 100%;
        margin-top: 20px;
        padding-top: 20px;
        border-top: 2px solid #f0f0f0;
        justify-content: center;
    }
}

@media (max-width: 768px) {
    .topbar-modern .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .topbar-modern .row {
        flex-direction: column;
        gap: 10px;
        text-align: center;
    }
    
    .topbar-contact {
        justify-content: center;
        flex-wrap: wrap;
        gap: 15px;
    }
    
    .topbar-link {
        font-size: 12px;
    }
    
    .topbar-link span {
        display: none; /* Hide text on mobile, show only icon */
    }
    
    .topbar-social {
        justify-content: center;
    }
    
    .language-selector-modern {
        margin: 0;
    }
}

@media (max-width: 576px) {
    .topbar-modern {
        padding: 8px 0;
        font-size: 11px;
    }
    
    .topbar-modern .container {
        padding-left: 10px;
        padding-right: 10px;
    }
    
    .topbar-contact {
        flex-direction: row;
        gap: 10px;
        justify-content: center;
    }
    
    .topbar-link {
        font-size: 11px;
        padding: 4px 8px;
    }
    
    .topbar-link i {
        font-size: 14px;
    }
    
    .topbar-link span {
        display: none; /* Hide text on very small screens */
    }
    
    .language-selector-modern {
        margin: 0;
        font-size: 11px;
    }
    
    .topbar-social {
        justify-content: center;
        gap: 8px;
    }
    
    .social-icon {
        width: 28px;
        height: 28px;
        font-size: 14px;
    }
    
    .header-content {
        padding: 10px 0;
    }
    
    .logo-modern {
        gap: 8px;
    }
    
    .logo-image-wrapper {
        width: 40px;
        height: 40px;
    }
    
    .logo-title {
        font-size: 14px;
    }
    
    .logo-subtitle {
        font-size: 8px;
    }
    
    .nav-list {
        width: 100%;
        padding: 80px 20px 20px;
    }
}

/* ============================================
   Hero Slider
   ============================================ */

.hero-slider {
    position: relative;
    margin: 0;
    padding: 0;
}

.hero-slider .carousel-item {
    position: relative;
}

.hero-slider .carousel-item img,
.hero-slider-image {
    width: 100%;
    height: 750px;
    object-fit: cover;
    object-position: center;
}

.hero-slider .carousel-caption,
.hero-slider-caption {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.6);
    padding: 30px 40px;
    border-radius: 10px;
    max-width: 90%;
    backdrop-filter: blur(5px);
    z-index: 10;
}

.hero-slider .carousel-caption h2,
.hero-slider-title {
    font-size: 48px;
    font-weight: 700;
    color: white;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    margin-bottom: 15px;
    line-height: 1.2;
}

.hero-slider .carousel-caption p,
.hero-slider-description {
    font-size: 20px;
    color: white;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.8);
    margin: 0;
    line-height: 1.4;
}

.carousel-control-prev,
.carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    opacity: 0.8;
    transition: all 0.3s;
}

.carousel-control-prev:hover,
.carousel-control-next:hover {
    opacity: 1;
    background: var(--primary-color);
}

/* Hide carousel indicators completely */
.hero-slider .carousel-indicators {
    display: none !important;
}

/* Responsive Hero */
@media (max-width: 992px) {
    .hero-slider .carousel-item img {
        height: 500px !important;
    }
    .hero-slider .carousel-caption h2 {
        font-size: 36px !important;
    }
    .hero-slider .carousel-caption p {
        font-size: 16px !important;
    }
    .hero-slider .carousel-caption {
        padding: 20px 30px;
        bottom: 30px;
    }
}

@media (max-width: 768px) {
    .hero-slider .carousel-item img {
        height: 400px !important;
    }
    .hero-slider .carousel-caption h2 {
        font-size: 28px !important;
    }
    .hero-slider .carousel-caption p {
        font-size: 14px !important;
    }
    .hero-slider .carousel-caption {
        padding: 15px 20px;
        bottom: 20px;
    }
}

@media (max-width: 576px) {
    .hero-slider .carousel-item img {
        height: 300px !important;
    }
    .hero-slider .carousel-caption h2,
    .hero-slider-title {
        font-size: 18px !important;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    .hero-slider .carousel-caption p,
    .hero-slider-description {
        font-size: 11px !important;
        line-height: 1.3;
    }
    .hero-slider .carousel-caption,
    .hero-slider-caption {
        padding: 8px 12px;
        bottom: 15px;
        max-width: 95%;
    }
}

@media (max-width: 400px) {
    .hero-slider .carousel-caption h2,
    .hero-slider-title {
        font-size: 16px !important;
        margin-bottom: 5px;
    }
    .hero-slider .carousel-caption p,
    .hero-slider-description {
        font-size: 10px !important;
        display: none; /* Hide description on very small screens */
    }
    .hero-slider .carousel-caption,
    .hero-slider-caption {
        padding: 6px 10px;
        bottom: 10px;
    }
}

/* ============================================
   Sections
   ============================================ */

.section {
    padding: 80px 0;
}

.light-background {
    background-color: var(--bg-light);
}

.dark-background {
    background-color: #1a1a1a;
    color: white;
}

.section-title {
    text-align: center;
    margin-bottom: 50px;
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.page-title {
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    border-bottom: 3px solid var(--primary-color);
    position: relative;
    overflow: hidden;
}

.page-title::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"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(0,31,210,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23dots)"/></svg>');
    opacity: 0.3;
}

.page-title h1 {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    margin: 0;
    position: relative;
    z-index: 1;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.05);
}

.section-title h2 {
    font-size: 36px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.section-title p {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
}

.breadcrumbs {
    list-style: none;
    padding: 0;
    margin: 0;
}

.breadcrumbs ol {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 10px;
}

.breadcrumbs li {
    color: var(--text-light);
}

.breadcrumbs li.current {
    color: var(--primary-color);
    font-weight: 600;
}

/* ============================================
   About Section - Modern Design
   ============================================ */

.about-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
    position: relative;
}

.about-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    color: var(--primary-color);
    padding: 8px 20px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.section-badge i {
    font-size: 16px;
}

.section-title-modern {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.2;
}

.section-subtitle-modern {
    font-size: 18px;
    color: var(--text-light);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.about-image-wrapper {
    width: 100%;
    max-width: 900px;
    margin: 0 auto;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
    position: relative;
    background: #f8f9fa;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    z-index: 1;
    pointer-events: none;
}

.about-main-image {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: contain;
    object-position: center;
    transition: transform 0.5s ease;
    position: relative;
    z-index: 0;
}

.about-image-wrapper:hover .about-main-image {
    transform: scale(1.03);
}

@media (max-width: 768px) {
    .about-image-wrapper {
        border-radius: 15px;
        margin: 0 15px;
        aspect-ratio: 4 / 3;
    }
    
    .about-main-image {
        object-fit: contain;
    }
}

@media (max-width: 576px) {
    .about-image-wrapper {
        aspect-ratio: 1 / 1;
        margin: 0;
        border-radius: 10px;
    }
}

.about-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.about-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.about-card-modern:hover::before {
    transform: scaleX(1);
}

.about-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.25);
}

.about-card-icon i {
    font-size: 32px;
    color: white;
}

.mission-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.about-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.about-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 10px;
    transition: all 0.3s;
}

.feature-item:hover {
    background: rgba(0, 31, 210, 0.1);
    transform: translateX(5px);
}

.feature-item i {
    color: var(--primary-color);
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 15px;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    padding: 12px 28px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    border-radius: 50px;
    transition: all 0.3s;
    margin-top: 20px;
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateX(5px);
    gap: 15px;
}

.btn-learn-more i {
    transition: transform 0.3s;
}

.btn-learn-more:hover i {
    transform: translateX(5px);
}

.vision-section {
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid rgba(0, 31, 210, 0.1);
}

.vision-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.vision-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Church Info Section */
.church-info-section-modern {
    padding: 100px 0;
    background: #f8f9fa;
}

.section-header-modern {
    text-align: center;
    margin-bottom: 60px;
}

.church-info-cards {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-card-modern {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border-left: 4px solid transparent;
}

.info-card-modern:hover {
    transform: translateX(10px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.info-card-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 20px;
}

.info-card-icon-wrapper {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 6px 20px rgba(0, 31, 210, 0.25);
}

.info-card-icon-wrapper i {
    font-size: 28px;
    color: white;
}

.welcome-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.info-card-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin: 0;
}

.info-card-body {
    padding-left: 80px;
}

.info-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 20px;
}

.info-card-footer {
    display: flex;
    align-items: center;
    gap: 15px;
    flex-wrap: wrap;
}

.info-badge {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(0, 31, 210, 0.1);
    color: var(--primary-color);
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
}

.btn-welcome {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.btn-welcome:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 31, 210, 0.4);
    color: white;
    gap: 12px;
}

.btn-welcome i {
    transition: transform 0.3s;
}

.btn-welcome:hover i {
    transform: translateX(5px);
}

.btn-more-news {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 6px 25px rgba(0, 31, 210, 0.3);
}

.btn-more-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 31, 210, 0.4);
    color: white;
    gap: 15px;
}

.btn-more-news i {
    transition: transform 0.3s;
}

.btn-more-news:hover i {
    transform: translateX(5px);
}

/* Pastor Card Modern */
.pastor-card-modern {
    background: white;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.1);
    transition: all 0.4s;
    position: sticky;
    top: 100px;
    border: 3px solid transparent;
    background-clip: padding-box;
}

.pastor-card-modern::before {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    border-radius: 20px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s;
}

.pastor-card-modern:hover::before {
    opacity: 1;
}

.pastor-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(102, 126, 234, 0.3);
}

.pastor-card-image-wrapper {
    position: relative;
    width: 100%;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    border-radius: 20px 20px 0 0;
    overflow: visible;
}

.pastor-card-image {
    width: 100%;
    height: auto;
    max-height: 400px;
    object-fit: contain;
    object-position: center;
    transition: transform 0.4s;
    border-radius: 15px;
    border: 4px solid white;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15), 
                0 0 0 3px rgba(102, 126, 234, 0.1),
                inset 0 0 20px rgba(255, 255, 255, 0.5);
    background: white;
    padding: 5px;
}

.pastor-card-modern:hover .pastor-card-image {
    transform: scale(1.05);
    box-shadow: 0 15px 50px rgba(102, 126, 234, 0.25), 
                0 0 0 4px rgba(102, 126, 234, 0.2),
                inset 0 0 30px rgba(255, 255, 255, 0.6);
}

.pastor-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.pastor-card-content {
    padding: 30px;
    text-align: center;
}

.pastor-card-badge {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 15px;
}

.pastor-card-name {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

.pastor-card-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 0 auto 15px;
    border-radius: 2px;
}

.pastor-card-description {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-style: italic;
}

/* Responsive */
@media (max-width: 991px) {
    .about-section-modern,
    .church-info-section-modern {
        padding: 60px 0;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .about-card-modern {
        padding: 30px;
    }
    
    .info-card-body {
        padding-left: 0;
        margin-top: 20px;
    }
    
    .pastor-card-modern {
        position: relative;
        top: 0;
        margin-top: 30px;
    }
    
    .pastor-card-image-wrapper {
        min-height: 350px;
        padding: 15px;
    }
    
    .pastor-card-image {
        max-height: 350px;
    }
}

@media (max-width: 768px) {
    .about-section-modern,
    .church-info-section-modern {
        padding: 40px 0;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .section-subtitle-modern {
        font-size: 16px;
    }
    
    .about-card-modern {
        padding: 25px;
    }
    
    .about-card-icon {
        width: 60px;
        height: 60px;
    }
    
    .about-card-icon i {
        font-size: 28px;
    }
    
    .about-card-title {
        font-size: 22px;
    }
    
    .info-card-modern {
        padding: 25px;
    }
    
    .info-card-icon-wrapper {
        width: 50px;
        height: 50px;
    }
    
    .info-card-icon-wrapper i {
        font-size: 24px;
    }
    
    .info-card-title {
        font-size: 20px;
    }
    
    .pastor-card-image-wrapper {
        min-height: 300px;
        padding: 12px;
    }
    
    .pastor-card-image {
        max-height: 300px;
        border-width: 3px;
        padding: 4px;
    }
    
    .pastor-card-name {
        font-size: 20px;
    }
}

@media (max-width: 576px) {
    .pastor-card-image-wrapper {
        min-height: 250px;
        padding: 10px;
    }
    
    .pastor-card-image {
        max-height: 250px;
        border-width: 2px;
        padding: 3px;
        border-radius: 12px;
    }
    
    .pastor-card-content {
        padding: 20px;
    }
    
    .pastor-card-name {
        font-size: 18px;
    }
    
    .pastor-card-badge {
        font-size: 11px;
        padding: 5px 15px;
    }
}

/* ============================================
   About Section - Old Styles (for compatibility)
   ============================================ */

.about .content ul {
    list-style: none;
    padding: 0;
}

.about .content ul li {
    padding: 10px 0;
    display: flex;
    align-items: center;
    gap: 10px;
}

.about .content ul li i {
    color: var(--primary-color);
    font-size: 20px;
}

.read-more {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    transition: all 0.3s;
}

.read-more:hover {
    color: var(--secondary-color);
    gap: 10px;
}

/* ============================================
   Word of the Day
   ============================================ */

.word-of-day-card {
    background: linear-gradient(135deg, #4c1d95, #7c3aed, #a855f7);
    border-radius: 24px;
    padding: 48px 42px;
    box-shadow: 0 25px 60px rgba(79, 70, 229, 0.25);
    position: relative;
    overflow: hidden;
}

.word-of-day-content {
    position: relative;
    z-index: 1;
}

.word-of-day-title-area {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.word-of-day-title-area h2 {
    color: white;
    font-size: 32px;
    font-weight: 700;
    margin: 0;
}

.word-of-day-verse {
    color: white;
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    font-weight: 500;
}

@media (max-width: 768px) {
    .word-of-day-card {
        padding: 30px 20px;
    }
    .word-of-day-title-area h2 {
        font-size: 24px;
    }
    .word-of-day-verse {
        font-size: 16px;
    }
}

/* ============================================
   News Section - Modern Design
   ============================================ */

.news.section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.news-item {
    background: white;
    border-radius: 20px;
    padding: 35px;
    margin-bottom: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    border-left: 4px solid transparent;
}

.news-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-left-color: var(--primary-color);
}

.news-content h4 {
    color: var(--primary-color);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 18px;
    line-height: 1.3;
}

.news-content p {
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 16px;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 25px;
    flex-wrap: wrap;
}

.news-date {
    color: var(--text-light);
    font-size: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.news-date::before {
    content: '📅';
    font-size: 16px;
}

.news-link {
    color: var(--primary-color);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: rgba(0, 31, 210, 0.1);
    border-radius: 20px;
}

.news-link:hover {
    color: white;
    background: var(--primary-color);
    transform: translateX(5px);
}

.news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.news-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.no-image-placeholder {
    font-size: 48px;
    color: var(--primary-color);
    opacity: 0.3;
}

.news-content {
    padding: 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    flex-wrap: wrap;
}

.news-category {
    display: inline-block;
    padding: 5px 14px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
}

.news-date {
    color: var(--text-light);
    font-size: 13px;
}

.news-title {
    margin-bottom: 12px;
}

.news-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 20px;
    font-weight: 700;
    transition: color 0.3s;
    display: block;
}

.news-title a:hover {
    color: var(--secondary-color);
}

.news-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 15px;
    flex: 1;
    font-size: 15px;
}

.news-stats {
    display: flex;
    gap: 20px;
    margin-top: auto;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
    font-size: 13px;
    color: var(--text-light);
}

.news-views,
.news-likes {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-views i,
.news-likes i {
    color: var(--primary-color);
}

/* ============================================
   News Page - Modern Design
   ============================================ */

.news-page-section-modern {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.news-page-section-modern .container {
    padding-left: 15px;
    padding-right: 15px;
}

.news-page-header {
    margin-bottom: 50px;
}

.news-filter {
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}

.filter-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
}

.filter-btn {
    padding: 10px 24px;
    background: white;
    border: 2px solid rgba(0, 31, 210, 0.1);
    border-radius: 25px;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all 0.3s;
    text-transform: capitalize;
}

.filter-btn:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.15);
}

.filter-btn.active {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.news-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 50px;
}

.news-card-modern {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    display: flex;
    flex-direction: column;
    opacity: 1;
    transform: scale(1);
}

.news-card-modern:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.news-card-image-wrapper {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 20px 20px 0 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.news-card-image {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
    transition: transform 0.4s ease;
}

.news-card-modern:hover .news-card-image {
    transform: scale(1.05);
}

.news-empty-state {
    grid-column: 1 / -1;
    text-align: center;
    padding: 80px 20px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news-empty-state i {
    font-size: 80px;
    color: rgba(0, 31, 210, 0.2);
    margin-bottom: 20px;
    display: block;
}

.news-empty-state h3 {
    font-size: 28px;
    color: #333;
    margin-bottom: 15px;
    font-weight: 600;
}

.news-empty-state p {
    font-size: 16px;
    color: #666;
    max-width: 500px;
    margin: 0 auto;
    line-height: 1.6;
}
}

.news-card-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
}

.news-card-image-placeholder i {
    font-size: 72px;
    color: rgba(0, 31, 210, 0.2);
}

.news-card-category-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
    z-index: 2;
}

.news-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 210, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    z-index: 1;
}

.news-card-modern:hover .news-card-overlay {
    opacity: 1;
}

.news-card-read-more-overlay {
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-color);
    font-size: 24px;
    text-decoration: none;
    transform: scale(0.8);
    transition: all 0.3s;
}

.news-card-modern:hover .news-card-read-more-overlay {
    transform: scale(1);
}

.news-card-body {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.news-card-meta {
    margin-bottom: 15px;
}

.news-card-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.news-card-date i {
    color: var(--primary-color);
    font-size: 14px;
}

.news-card-title {
    margin-bottom: 15px;
}

.news-card-title a {
    color: var(--primary-color);
    text-decoration: none;
    font-size: 22px;
    font-weight: 700;
    line-height: 1.4;
    transition: all 0.3s;
    display: block;
}

.news-card-title a:hover {
    color: var(--secondary-color);
}

.news-card-excerpt {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
    font-size: 15px;
}

.news-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.news-card-stats {
    display: flex;
    gap: 20px;
}

.news-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.news-stat-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.news-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.news-card-link:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.news-card-link i {
    font-size: 16px;
    transition: transform 0.3s;
}

.news-card-link:hover i {
    transform: translateX(5px);
}

.news-pagination {
    margin-top: 50px;
}

.news-pagination .pagination {
    gap: 8px;
}

.news-pagination .page-link {
    padding: 10px 18px;
    border-radius: 10px;
    border: 2px solid rgba(0, 31, 210, 0.1);
    color: var(--text-dark);
    font-weight: 600;
    transition: all 0.3s;
    margin: 0;
}

.news-pagination .page-link:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
    background: rgba(0, 31, 210, 0.05);
    transform: translateY(-2px);
}

.news-pagination .page-item.active .page-link {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-color: var(--primary-color);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.news-pagination .page-item.disabled .page-link {
    opacity: 0.5;
    cursor: not-allowed;
}

/* News Page Responsive Styles */
@media (max-width: 992px) {
    .news-page-section-modern {
        padding: 40px 0 60px;
    }
    
    .news-page-section-modern .container {
        padding-left: 20px;
        padding-right: 20px;
    }
    
    .news-grid-modern {
        grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        gap: 25px;
    }
    
    .news-card-image-wrapper {
        height: 220px;
    }
    
    .news-page-header {
        margin-bottom: 35px;
    }
    
    .section-title-modern {
        font-size: 32px;
    }
    
    .section-subtitle-modern {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .news-page-section-modern {
        padding: 30px 0 50px;
    }
    
    .news-page-section-modern .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .news-grid-modern {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .news-card-modern {
        border-radius: 15px;
    }
    
    .news-card-image-wrapper {
        height: 200px;
    }
    
    .news-card-body {
        padding: 20px;
    }
    
    .news-card-title {
        font-size: 20px;
        margin-bottom: 12px;
    }
    
    .news-card-excerpt {
        font-size: 14px;
        margin-bottom: 15px;
    }
    
    .news-card-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
    
    .news-card-stats {
        width: 100%;
        justify-content: flex-start;
    }
    
    .filter-buttons {
        gap: 8px;
        flex-wrap: wrap;
        justify-content: center;
    }
    
    .filter-btn {
        padding: 8px 16px;
        font-size: 13px;
    }
    
    .news-page-header {
        margin-bottom: 30px;
    }
    
    .section-title-modern {
        font-size: 28px;
    }
    
    .section-subtitle-modern {
        font-size: 15px;
    }
    
    .news-pagination {
        margin-top: 30px;
    }
    
    .news-pagination .pagination {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .news-page-section-modern {
        padding: 25px 0 40px;
    }
    
    .news-page-section-modern .container {
        padding-left: 15px;
        padding-right: 15px;
    }
    
    .news-grid-modern {
        gap: 15px;
    }
    
    .news-card-image-wrapper {
        height: 180px;
    }
    
    .news-card-body {
        padding: 15px;
    }
    
    .news-card-title {
        font-size: 18px;
        line-height: 1.4;
    }
    
    .news-card-excerpt {
        font-size: 13px;
        line-height: 1.6;
    }
    
    .news-card-date {
        font-size: 12px;
    }
    
    .news-stat-item {
        font-size: 12px;
    }
    
    .filter-buttons {
        gap: 6px;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 12px;
    }
    
    .section-title-modern {
        font-size: 24px;
    }
    
    .section-subtitle-modern {
        font-size: 14px;
    }
    
    .news-page-header {
        margin-bottom: 25px;
    }
    
    .news-pagination .pagination .page-link {
        padding: 6px 12px;
        font-size: 14px;
    }
    
    .news-empty-state {
        padding: 50px 15px;
    }
    
    .news-empty-state i {
        font-size: 60px;
        margin-bottom: 15px;
    }
    
    .news-empty-state h3 {
        font-size: 22px;
        margin-bottom: 12px;
    }
    
    .news-empty-state p {
        font-size: 14px;
    }
}

/* ============================================
   News Detail Page - Modern Design
   ============================================ */

.news-detail-section-modern {
    padding: 60px 0 100px;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.news-detail-article {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.news-detail-image {
    width: 100%;
    height: 400px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    position: relative;
    overflow: hidden;
}

.news-detail-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
}

.news-detail-image-placeholder i {
    font-size: 120px;
    color: rgba(0, 31, 210, 0.2);
}

.news-detail-header {
    padding: 40px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.news-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 20px;
    align-items: center;
}

.news-detail-category {
    display: inline-block;
    padding: 6px 18px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.news-detail-date,
.news-detail-author {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: var(--text-light);
    font-weight: 500;
}

.news-detail-date i,
.news-detail-author i {
    color: var(--primary-color);
    font-size: 16px;
}

.news-detail-title {
    font-size: 36px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.3;
    margin-bottom: 20px;
}

.news-detail-stats {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.news-stat-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 20px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.news-stat-badge i {
    color: var(--primary-color);
    font-size: 16px;
}

.news-detail-content {
    padding: 40px;
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-dark);
}

.news-detail-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-top: 30px;
    margin-bottom: 15px;
}

.news-detail-content ul {
    margin: 20px 0;
    padding-left: 30px;
}

.news-detail-content ul li {
    margin-bottom: 10px;
    color: var(--text-dark);
}

.news-detail-content p {
    margin-bottom: 20px;
}

.news-detail-footer {
    padding: 30px 40px;
    background: rgba(0, 31, 210, 0.02);
    border-top: 1px solid rgba(0, 0, 0, 0.05);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.news-detail-tags {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.tag-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.tag-item {
    padding: 6px 14px;
    background: white;
    border: 1px solid rgba(0, 31, 210, 0.2);
    border-radius: 20px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 13px;
    font-weight: 600;
    transition: all 0.3s;
}

.tag-item:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}

.news-detail-share {
    display: flex;
    align-items: center;
    gap: 12px;
}

.share-label {
    font-weight: 600;
    color: var(--text-dark);
    font-size: 14px;
}

.share-btn {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: white;
    border: 1px solid rgba(0, 31, 210, 0.2);
    border-radius: 50%;
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.share-btn:hover {
    background: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

/* Sidebar Widgets */
.news-sidebar-widget {
    background: white;
    border-radius: 20px;
    padding: 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    margin-bottom: 30px;
}

.widget-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 31, 210, 0.1);
}

.related-news-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.related-news-item {
    display: flex;
    gap: 15px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s;
}

.related-news-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.related-news-item:hover {
    transform: translateX(5px);
}

.related-news-image {
    width: 100px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
}

.related-news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.related-news-image-placeholder i {
    font-size: 32px;
    color: rgba(0, 31, 210, 0.3);
}

.related-news-content {
    flex: 1;
}

.related-news-category {
    display: inline-block;
    padding: 4px 10px;
    background: rgba(0, 31, 210, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 8px;
}

.related-news-title {
    margin-bottom: 8px;
}

.related-news-title a {
    font-size: 15px;
    font-weight: 700;
    color: var(--text-dark);
    text-decoration: none;
    line-height: 1.4;
    transition: all 0.3s;
    display: block;
}

.related-news-title a:hover {
    color: var(--primary-color);
}

.related-news-date {
    font-size: 12px;
    color: var(--text-light);
}

.btn-back-to-news {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    font-weight: 600;
    font-size: 15px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
    width: 100%;
    justify-content: center;
}

.btn-back-to-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.4);
    color: white;
}

.btn-back-to-news i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-back-to-news:hover i {
    transform: translateX(-5px);
}

@media (max-width: 768px) {
    .news-detail-title {
        font-size: 28px;
    }
    
    .news-detail-header,
    .news-detail-content {
        padding: 25px;
    }
    
    .news-detail-footer {
        flex-direction: column;
        align-items: flex-start;
        padding: 25px;
    }
    
    .news-detail-image {
        height: 250px;
    }
    
    .related-news-item {
        flex-direction: column;
    }
    
    .related-news-image {
        width: 100%;
        height: 150px;
    }
}

/* ============================================
   Comments Section - Modern Design
   ============================================ */

.comments-section-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    margin-top: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.comments-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 31, 210, 0.1);
}

.comments-title {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    display: flex;
    align-items: center;
    gap: 12px;
    margin: 0;
}

.comments-title i {
    font-size: 28px;
}

.comments-count {
    color: var(--text-light);
    font-weight: 500;
    font-size: 18px;
}

.comments-list {
    margin-bottom: 40px;
}

.comment-item {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.comment-item:last-child {
    border-bottom: none;
}

.comment-avatar {
    width: 60px;
    height: 60px;
    flex-shrink: 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.2);
}

.comment-avatar i {
    font-size: 32px;
    color: white;
}

.comment-content {
    flex: 1;
}

.comment-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
    flex-wrap: wrap;
    gap: 10px;
}

.comment-author {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.comment-date {
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.comment-text {
    font-size: 15px;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.comment-actions {
    display: flex;
    gap: 20px;
}

.comment-action-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    padding: 6px 12px;
    border-radius: 8px;
    transition: all 0.3s;
}

.comment-action-btn:hover {
    background: rgba(0, 31, 210, 0.05);
    color: var(--primary-color);
}

.comment-action-btn i {
    font-size: 16px;
}

.comment-form-section {
    padding-top: 30px;
    border-top: 2px solid rgba(0, 31, 210, 0.1);
}

.comment-form-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 25px;
}

.comment-form .form-group {
    margin-bottom: 20px;
}

.comment-form .form-control {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid rgba(0, 31, 210, 0.1);
    border-radius: 12px;
    font-size: 15px;
    color: var(--text-dark);
    background: white;
    transition: all 0.3s;
}

.comment-form .form-control:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 4px rgba(0, 31, 210, 0.1);
}

.comment-form .form-control::placeholder {
    color: var(--text-light);
}

.comment-form textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.btn-submit-comment {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.btn-submit-comment:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.4);
}

.btn-submit-comment i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-submit-comment:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .comments-section-modern {
        padding: 25px;
    }
    
    .comment-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .comment-item {
        flex-direction: column;
    }
    
    .comment-avatar {
        width: 50px;
        height: 50px;
    }
    
    .comment-avatar i {
        font-size: 28px;
    }
}

/* ============================================
   Shule Section - Modern Design
   ============================================ */

.shule-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.shule-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.shule-card-modern::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
    border-radius: 0 0 0 100px;
    transition: all 0.4s;
}

.shule-card-modern:hover::after {
    width: 150px;
    height: 150px;
}

.shule-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.shule-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.25);
    position: relative;
    z-index: 1;
}

.shule-card-icon i {
    font-size: 32px;
    color: white;
}

.programs-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.shule-card-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.shule-card-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--text-light);
    margin-bottom: 25px;
    position: relative;
    z-index: 1;
}

.shule-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    z-index: 1;
}

.programs-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.program-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 15px;
    transition: all 0.3s;
}

.program-item:hover {
    background: rgba(0, 31, 210, 0.1);
    transform: translateX(10px);
}

.program-item i {
    font-size: 32px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.program-item h5 {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.program-item p {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* Shule Mission & Vision Cards */
.shule-mission-card,
.shule-vision-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    text-align: center;
}

.shule-mission-card:hover,
.shule-vision-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.mission-icon-wrapper,
.vision-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.25);
    transition: all 0.3s;
}

.shule-mission-card:hover .mission-icon-wrapper,
.shule-vision-card:hover .vision-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.mission-icon-wrapper i,
.vision-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.mission-title,
.vision-title {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 20px;
}

.mission-text,
.vision-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-light);
    margin: 0;
}

/* Shule Values Section */
.shule-values-section {
    margin-top: 60px;
    padding-top: 50px;
    border-top: 2px solid rgba(0, 31, 210, 0.1);
}

.values-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 40px;
}

.value-item {
    text-align: center;
    padding: 30px 20px;
    background: white;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.value-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    transition: all 0.3s;
}

.value-item:hover .value-icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: scale(1.1);
}

.value-icon i {
    font-size: 32px;
    color: var(--primary-color);
    transition: all 0.3s;
}

.value-item:hover .value-icon i {
    color: white;
}

.value-item h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.value-item p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Shule Intro Card */
.shule-intro-card {
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
    border-left: 4px solid var(--primary-color);
    border-radius: 16px;
    padding: 30px 40px;
    text-align: center;
}

.intro-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    font-weight: 500;
}

/* Shule Features Section */
.shule-features-section {
    margin-bottom: 60px;
}

.features-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.features-section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.feature-card-modern {
    background: white;
    border-radius: 16px;
    padding: 30px 25px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
    height: 100%;
}

.feature-card-modern:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.feature-icon-modern {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.25);
    transition: all 0.3s;
}

.feature-card-modern:hover .feature-icon-modern {
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-modern i {
    font-size: 32px;
    color: white;
}

.feature-card-modern h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.feature-card-modern p {
    font-size: 14px;
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Shule Programs Section */
.shule-programs-section {
    margin-bottom: 60px;
}

.programs-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.programs-section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.program-card-modern {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.program-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.daycare-card {
    border-top-color: #10b981;
}

.nursery-card {
    border-top-color: #f59e0b;
}

.program-header {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 31, 210, 0.1);
}

.program-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.25);
}

.daycare-card .program-icon-wrapper {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.nursery-card .program-icon-wrapper {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

.program-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.program-title-wrapper {
    flex: 1;
}

.program-title {
    font-size: 28px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 5px;
}

.program-age {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(0, 31, 210, 0.1);
    color: var(--primary-color);
    border-radius: 12px;
    font-size: 13px;
    font-weight: 600;
}

.program-subtitle {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 20px;
}

.program-features-list {
    list-style: none;
    padding: 0;
    margin-bottom: 25px;
}

.program-features-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 12px;
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.6;
}

.program-features-list li i {
    color: var(--primary-color);
    font-size: 18px;
    flex-shrink: 0;
    margin-top: 2px;
}

.program-hours {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 15px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 12px;
    font-size: 14px;
    font-weight: 600;
    color: var(--primary-color);
}

.program-hours i {
    font-size: 18px;
}

/* Shule Statistics Section */
.shule-statistics-section {
    margin: 60px 0;
    padding: 50px 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
    border-radius: 20px;
}

.shule-stat-card {
    background: white;
    border-radius: 16px;
    padding: 30px 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s;
}

.shule-stat-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.shule-stat-card .stat-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.25);
    transition: all 0.3s;
}

.shule-stat-card:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
}

.shule-stat-card .stat-icon-wrapper i {
    font-size: 32px;
    color: white;
}

.shule-stat-card .stat-number {
    font-size: 42px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 8px;
    line-height: 1;
}

.shule-stat-card .stat-label {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-dark);
}

/* Shule Photos Section */
.shule-photos-section {
    margin: 60px 0;
}

.photos-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.photos-section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.shule-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 25px;
}

.shule-gallery-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.shule-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.shule-gallery-image {
    position: relative;
    width: 100%;
    height: 250px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    overflow: hidden;
}

.shule-gallery-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
}

.shule-gallery-placeholder i {
    font-size: 64px;
    color: rgba(0, 31, 210, 0.3);
}

.shule-gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 31, 210, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.3s;
    text-decoration: none;
    color: white;
}

.shule-gallery-item:hover .shule-gallery-overlay {
    opacity: 1;
}

.shule-gallery-overlay i {
    font-size: 48px;
}

/* Shule Registration Section */
.shule-registration-section {
    margin: 60px 0;
}

.registration-card {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 24px;
    padding: 50px 40px;
    text-align: center;
    box-shadow: 0 20px 60px rgba(0, 31, 210, 0.3);
    position: relative;
    overflow: hidden;
}

.registration-card::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
    animation: pulse 3s infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.5; }
    50% { transform: scale(1.1); opacity: 0.8; }
}

.registration-content {
    position: relative;
    z-index: 1;
}

.registration-title {
    font-size: 36px;
    font-weight: 800;
    color: white;
    margin-bottom: 15px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.registration-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 35px;
    line-height: 1.6;
}

.registration-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-register-child,
.btn-contact-us {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-register-child {
    background: white;
    color: var(--primary-color);
    box-shadow: 0 4px 15px rgba(255, 255, 255, 0.3);
}

.btn-register-child:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
    color: var(--primary-color);
}

.btn-contact-us {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border: 2px solid white;
    backdrop-filter: blur(10px);
}

.btn-contact-us:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.btn-register-child i,
.btn-contact-us i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-register-child:hover i {
    transform: translateX(5px);
}

.btn-contact-us:hover i {
    transform: scale(1.1);
}

/* School Slider Section */
.school-slider-section {
    margin: 0;
    padding: 0;
    position: relative;
}

.school-slider-section .carousel-item img {
    height: 500px;
    object-fit: cover;
    width: 100%;
}

.school-slider-section .carousel-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 60px 40px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.3), transparent);
    text-align: center;
}

.slider-content-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.school-slider-section .slider-title {
    font-size: 48px;
    font-weight: 800;
    color: white;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.8);
    margin-bottom: 15px;
}

.school-slider-section .slider-description {
    font-size: 22px;
    color: white;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.8);
    margin: 0;
    font-weight: 500;
}

.school-slider-section .carousel-control-prev,
.school-slider-section .carousel-control-next {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
    backdrop-filter: blur(10px);
    transition: all 0.3s;
}

.school-slider-section .carousel-control-prev:hover,
.school-slider-section .carousel-control-next:hover {
    background: rgba(255, 255, 255, 0.3);
}

.school-slider-section .carousel-control-prev {
    left: 30px;
}

.school-slider-section .carousel-control-next {
    right: 30px;
}

.school-slider-section .carousel-indicators {
    bottom: 20px;
}

.school-slider-section .carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid white;
    transition: all 0.3s;
}

.school-slider-section .carousel-indicators button.active {
    background: white;
    width: 30px;
    border-radius: 6px;
}

@media (max-width: 992px) {
    .school-slider-section .carousel-item img {
        height: 400px !important;
    }
    
    .school-slider-section .slider-title {
        font-size: 36px !important;
    }
    
    .school-slider-section .slider-description {
        font-size: 18px !important;
    }
}

@media (max-width: 768px) {
    .shule-features {
        grid-template-columns: 1fr;
    }
    
    .shule-card-modern {
        padding: 30px;
    }
    
    .shule-mission-card,
    .shule-vision-card {
        padding: 30px 20px;
    }
    
    .values-section-title {
        font-size: 26px;
    }
    
    .shule-intro-card {
        padding: 20px;
    }
    
    .intro-text {
        font-size: 16px;
    }
    
    .features-section-title,
    .programs-section-title {
        font-size: 26px;
    }
    
    .program-card-modern {
        padding: 25px;
    }
    
    .program-header {
        flex-direction: column;
        text-align: center;
    }
    
    .shule-statistics-section {
        padding: 40px 20px;
    }
    
    .shule-stat-card {
        padding: 25px 15px;
    }
    
    .shule-stat-card .stat-number {
        font-size: 36px;
    }
    
    .shule-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 15px;
    }
    
    .registration-card {
        padding: 35px 25px;
    }
    
    .registration-title {
        font-size: 28px;
    }
    
    .registration-buttons {
        flex-direction: column;
    }
    
    .btn-register-child,
    .btn-contact-us {
        width: 100%;
        justify-content: center;
    }
    
    .school-slider-section .carousel-item img {
        height: 350px !important;
    }
    
    .school-slider-section .slider-title {
        font-size: 28px !important;
    }
    
    .school-slider-section .slider-description {
        font-size: 16px !important;
    }
    
    .school-slider-section .carousel-caption {
        padding: 40px 20px;
    }
    
    .school-slider-section .carousel-control-prev,
    .school-slider-section .carousel-control-next {
        width: 40px;
        height: 40px;
    }
    
    .school-slider-section .carousel-control-prev {
        left: 15px;
    }
    
    .school-slider-section .carousel-control-next {
        right: 15px;
    }
}

@media (max-width: 576px) {
    .school-slider-section .carousel-item img {
        height: 300px !important;
    }
    
    .school-slider-section .slider-title {
        font-size: 24px !important;
    }
    
    .school-slider-section .slider-description {
        font-size: 14px !important;
    }
}

/* ============================================
   Map Section - Modern Design
   ============================================ */

.map-section-modern {
    padding: 80px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

.map-section-title {
    font-size: 32px;
    font-weight: 700;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 10px;
}

.map-section-subtitle {
    font-size: 16px;
    color: var(--text-light);
    text-align: center;
    margin-bottom: 40px;
}

.map-wrapper {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.map-container {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 20px;
    overflow: hidden;
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
    border-radius: 20px;
}

.map-address-card {
    position: absolute;
    bottom: 30px;
    right: 30px;
    background: white;
    border-radius: 16px;
    padding: 25px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    max-width: 320px;
    z-index: 10;
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.address-card-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.25);
}

.address-card-icon i {
    font-size: 24px;
    color: white;
}

.address-card-content {
    flex: 1;
}

.address-card-content h4 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 12px;
}

.address-text {
    font-size: 15px;
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.btn-view-map {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.btn-view-map:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
    color: white;
}

.btn-view-map i {
    font-size: 16px;
    transition: transform 0.3s;
}

.btn-view-map:hover i {
    transform: translate(3px, -3px);
}

@media (max-width: 992px) {
    .map-address-card {
        position: relative;
        bottom: auto;
        right: auto;
        max-width: 100%;
        margin-top: 20px;
    }
    
    .map-wrapper {
        display: flex;
        flex-direction: column;
    }
}

@media (max-width: 768px) {
    .map-section-modern {
        padding: 60px 0;
    }
    
    .map-container {
        height: 400px;
    }
    
    .map-section-title {
        font-size: 26px;
    }
    
    .map-address-card {
        padding: 20px;
    }
}

@media (max-width: 576px) {
    .map-container {
        height: 350px;
    }
    
    .map-address-card {
        flex-direction: column;
        text-align: center;
    }
    
    .address-card-icon {
        margin: 0 auto;
    }
}

/* ============================================
   Values Section - Modern Design
   ============================================ */

#values.section {
    padding: 100px 0;
    background: linear-gradient(180deg, #f8f9fa 0%, #ffffff 100%);
}

#values .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

#values .card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

#values .card:hover::before {
    transform: scaleX(1);
}

#values .card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

#values .card i {
    font-size: 64px;
    color: var(--primary-color);
    margin-bottom: 25px;
    transition: all 0.3s;
    display: inline-block;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    width: 100px;
    height: 100px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

#values .card:hover i {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

#values .card h4 {
    font-size: 24px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
}

#values .card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 15px;
    margin: 0;
}

@media (max-width: 768px) {
    #values .card {
        padding: 30px 20px;
    }
    
    #values .card i {
        font-size: 56px;
        width: 80px;
        height: 80px;
    }
}

/* ============================================
   Tithing/Offering Section - Modern Design
   ============================================ */

.tithing-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.03) 0%, rgba(74, 144, 226, 0.03) 100%);
    position: relative;
    overflow: hidden;
}

.tithing-section-modern::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"><defs><pattern id="tithing-dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(0,31,210,0.08)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23tithing-dots)"/></svg>');
    opacity: 0.5;
}

.tithing-card-modern {
    background: white;
    border-radius: 24px;
    padding: 50px 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.tithing-card-modern::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 31, 210, 0.05) 0%, transparent 70%);
    transition: all 0.6s;
    opacity: 0;
}

.tithing-card-modern:hover::after {
    opacity: 1;
    transform: scale(1.1);
}

.tithing-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 70px rgba(0, 0, 0, 0.15);
}

.tithing-card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 31, 210, 0.3);
    position: relative;
    z-index: 2;
}

.tithing-card-icon i {
    font-size: 36px;
    color: white;
}

.payment-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.tithing-card-title {
    font-size: 32px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 20px;
    position: relative;
    z-index: 2;
}

.tithing-card-text {
    font-size: 16px;
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.tithing-benefits {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    position: relative;
    z-index: 2;
}

.benefit-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.benefit-item:hover {
    background: rgba(0, 31, 210, 0.1);
    transform: translateX(5px);
}

.benefit-item i {
    font-size: 20px;
    color: var(--primary-color);
    flex-shrink: 0;
}

.benefit-item span {
    font-size: 15px;
    font-weight: 600;
    color: var(--text-dark);
}

.payment-methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
    position: relative;
    z-index: 2;
}

.payment-method-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding: 25px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 16px;
    border-left: 4px solid var(--primary-color);
    transition: all 0.3s;
}

.payment-method-item:hover {
    background: rgba(0, 31, 210, 0.1);
    transform: translateX(10px);
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.payment-method-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 5px 15px rgba(0, 31, 210, 0.2);
}

.payment-method-icon i {
    font-size: 28px;
    color: white;
}

.payment-method-content {
    flex: 1;
}

.payment-method-content h5 {
    font-size: 20px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.payment-method-content p {
    font-size: 15px;
    color: var(--text-light);
    margin-bottom: 5px;
    line-height: 1.6;
}

.payment-details {
    margin-top: 8px;
    font-size: 14px;
    color: var(--primary-color);
}

.tithing-cta {
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

.btn-tithing {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.3);
}

.btn-tithing:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 31, 210, 0.4);
    color: white;
}

.btn-tithing i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-tithing:hover i {
    transform: translateX(5px);
}

/* Sadaka and Zaka Cards */
.sadaka-card {
    border-top: 4px solid #10b981;
}

.sadaka-icon {
    background: linear-gradient(135deg, #10b981, #34d399);
}

.zaka-card {
    border-top: 4px solid #f59e0b;
}

.zaka-icon {
    background: linear-gradient(135deg, #f59e0b, #fbbf24);
}

/* Payment Methods Section */
.payment-methods-section {
    margin-top: 60px;
}

.payment-title {
    font-size: 28px;
    margin-bottom: 40px;
    text-align: center;
}

.payment-card-detailed {
    background: white;
    border-radius: 20px;
    padding: 35px 30px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border-top: 4px solid var(--primary-color);
}

.payment-card-detailed:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.payment-card-header {
    text-align: center;
    margin-bottom: 25px;
    padding-bottom: 20px;
    border-bottom: 2px solid rgba(0, 31, 210, 0.1);
}

.payment-method-icon-large {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.25);
}

.payment-method-icon-large i {
    font-size: 32px;
    color: white;
}

.airtel-icon {
    background: linear-gradient(135deg, #e60000, #ff3333);
}

.mixx-icon {
    background: linear-gradient(135deg, #7c3aed, #a855f7);
}

.bank-icon {
    background: linear-gradient(135deg, #059669, #10b981);
}

.payment-method-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.payment-subtitle {
    font-size: 14px;
    color: var(--text-light);
    margin: 0;
    font-weight: 600;
}

.payment-card-body {
    margin-top: 20px;
}

.payment-info-item {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 20px;
    padding: 15px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.payment-info-item:hover {
    background: rgba(0, 31, 210, 0.1);
}

.payment-label {
    font-size: 13px;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.payment-value {
    font-size: 16px;
    font-weight: 700;
    color: var(--primary-color);
    word-break: break-word;
}

.payment-note {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 12px 15px;
    background: rgba(0, 31, 210, 0.08);
    border-radius: 10px;
    margin-top: 15px;
    font-size: 14px;
    color: var(--text-dark);
    font-weight: 600;
}

.payment-note i {
    color: var(--primary-color);
    font-size: 18px;
}

/* Important Instructions */
.important-instructions {
    margin-top: 50px;
}

.instructions-card {
    background: linear-gradient(135deg, rgba(255, 193, 7, 0.1), rgba(255, 152, 0, 0.1));
    border-left: 5px solid #f59e0b;
    border-radius: 16px;
    padding: 30px;
    box-shadow: 0 8px 25px rgba(245, 158, 11, 0.15);
}

.instructions-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
}

.instructions-header i {
    font-size: 28px;
    color: #f59e0b;
}

.instructions-header h4 {
    font-size: 22px;
    font-weight: 700;
    color: var(--text-dark);
    margin: 0;
}

.instructions-text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-dark);
    margin: 0;
    padding-left: 43px;
}

@media (max-width: 768px) {
    .tithing-card-modern {
        padding: 35px 25px;
    }
    
    .tithing-benefits {
        grid-template-columns: 1fr;
    }
    
    .payment-method-item {
        flex-direction: column;
        text-align: center;
    }
    
    .payment-method-icon {
        margin: 0 auto;
    }
    
    .payment-card-detailed {
        padding: 25px 20px;
    }
    
    .instructions-text {
        padding-left: 0;
    }
    
    .instructions-header {
        flex-direction: column;
        text-align: center;
    }
}

/* ============================================
   Contact Section - Modern Design
   ============================================ */

.contact.section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.contact .card {
    border-radius: 20px;
    border: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.3s;
}

.contact .card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
}

.contact .card-body {
    padding: 40px;
}

.contact .form-label {
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 8px;
    font-size: 15px;
}

.contact .form-control {
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    padding: 12px 18px;
    font-size: 15px;
    transition: all 0.3s;
    background: #fafafa;
}

.contact .form-control:focus {
    border-color: var(--primary-color);
    background: white;
    box-shadow: 0 0 0 4px rgba(0, 31, 210, 0.1);
    outline: none;
}

.contact textarea.form-control {
    resize: vertical;
    min-height: 120px;
}

.contact .btn-primary {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border: none;
    padding: 14px 40px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 16px;
    transition: all 0.3s;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.contact .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(0, 31, 210, 0.4);
}

.contact .card h3,
.contact .card h4 {
    color: var(--primary-color);
    font-weight: 700;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

.contact .card h3::after,
.contact .card h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 25px;
    padding: 15px;
    background: rgba(0, 31, 210, 0.05);
    border-radius: 12px;
    transition: all 0.3s;
}

.contact-info-item:hover {
    background: rgba(0, 31, 210, 0.1);
    transform: translateX(5px);
}

.contact-info-item i {
    font-size: 24px;
    color: var(--primary-color);
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-info-item strong {
    color: var(--primary-color);
    display: block;
    margin-bottom: 5px;
    font-size: 15px;
}

.contact-info-item a {
    color: var(--text-dark);
    text-decoration: none;
    transition: color 0.3s;
    font-size: 15px;
}

.contact-info-item a:hover {
    color: var(--primary-color);
}

.contact-social-links {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.contact-social-links a {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    border-radius: 12px;
    color: var(--primary-color);
    text-decoration: none;
    font-size: 22px;
    transition: all 0.3s;
}

.contact-social-links a:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: translateY(-5px) scale(1.1);
    box-shadow: 0 6px 20px rgba(0, 31, 210, 0.3);
}

/* Pastor Card */
.pastor-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transition: all 0.3s;
}

.pastor-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
}

.pastor-image {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

.pastor-info {
    padding: 25px;
    text-align: center;
}

.pastor-info h4 {
    color: var(--text-light);
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.pastor-info h3 {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin: 0;
}

/* ============================================
   Services Section - Modern Design
   ============================================ */

.services.section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.service-item {
    background: white;
    border-radius: 20px;
    padding: 35px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.service-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary-color), var(--secondary-color));
    transform: scaleY(0);
    transition: transform 0.4s;
}

.service-item:hover::before {
    transform: scaleY(1);
}

.service-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
    border-color: rgba(0, 31, 210, 0.2);
}

.service-item .icon {
    font-size: 56px;
    color: var(--primary-color);
    margin-right: 25px;
    flex-shrink: 0;
    transition: all 0.3s;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1) 0%, rgba(74, 144, 226, 0.1) 100%);
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 18px;
}

.service-item:hover .icon {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    transform: scale(1.1) rotate(5deg);
}

.service-item .title {
    color: var(--primary-color);
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-item:hover .title {
    color: var(--secondary-color);
}

.service-item .title a {
    color: inherit;
    text-decoration: none;
}

.service-item .description {
    color: var(--text-light);
    line-height: 1.8;
    margin: 0;
    font-size: 15px;
}

/* ============================================
   Gallery - Modern Design
   ============================================ */

.gallery.section {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.gallery-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
}

.gallery-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.gallery-card__media {
    position: relative;
    overflow: hidden;
    height: 280px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
}

.gallery-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.gallery-card:hover .gallery-card__media img {
    transform: scale(1.15);
}

.gallery-card__zoom {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.95), rgba(74, 144, 226, 0.95));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 24px;
    opacity: 0;
    transition: all 0.4s;
    text-decoration: none;
    backdrop-filter: blur(10px);
}

.gallery-card:hover .gallery-card__zoom {
    opacity: 1;
}

.gallery-card__zoom:hover {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.4);
}

.gallery-card__body {
    padding: 25px;
}

.gallery-card__title {
    color: var(--primary-color);
    font-size: 20px;
    font-weight: 700;
    margin: 0 0 8px 0;
}

.gallery-card__description {
    color: var(--text-light);
    font-size: 14px;
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 576px) {
    .gallery-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   Buttons
   ============================================ */

.btn {
    padding: 12px 30px;
    border-radius: 5px;
    font-weight: 600;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s;
    border: none;
    cursor: pointer;
}

.btn-primary {
    background: var(--primary-color);
    color: white;
}

.btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

.btn-outline-primary {
    background: transparent;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
}

.btn-outline-primary:hover {
    background: var(--primary-color);
    color: white;
}

.btn-get-started {
    background: var(--primary-color);
    color: white;
    padding: 15px 40px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    transition: all 0.3s;
}

.btn-get-started:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
    color: white;
}

/* ============================================
   Footer
   ============================================ */

.footer {
    background: #425366;
    color: white;
    padding: 60px 0 20px;
    position: relative;
    overflow: hidden;
}

.footer::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"><defs><pattern id="grid" width="100" height="100" patternUnits="userSpaceOnUse"><path d="M 100 0 L 0 0 0 100" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="100%" height="100%" fill="url(%23grid)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.footer-top {
    margin-bottom: 40px;
    position: relative;
    z-index: 1;
}

.footer-about .logo {
    margin-bottom: 20px;
}

.footer-about .sitename {
    color: white;
    font-size: 1.5rem;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-contact p {
    margin-bottom: 12px;
    color: white;
    font-size: 15px;
    line-height: 1.8;
}

.footer-contact strong {
    color: white;
    font-weight: 600;
}

.social-links a {
    width: 42px;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: all 0.3s;
    font-size: 18px;
}

.social-links a:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    transform: translateY(-3px) scale(1.1);
    color: white;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.4);
}

.footer-links h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
}

.footer-links h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-links ul {
    list-style: none;
    padding: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: white;
    text-decoration: none;
    transition: all 0.3s;
    display: inline-block;
    font-size: 15px;
}

.footer-links a:hover {
    color: white;
    opacity: 0.8;
    transform: translateX(5px);
    padding-left: 5px;
}

.footer-newsletter h4 {
    color: white;
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 15px;
    position: relative;
    padding-bottom: 10px;
}

.footer-newsletter h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
    background: var(--primary-color);
}

.footer-newsletter p {
    color: white;
    margin-bottom: 20px;
    font-size: 15px;
    line-height: 1.6;
}

.footer-newsletter input {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: white;
    padding: 12px 15px;
    border-radius: 8px;
    transition: all 0.3s;
}

.footer-newsletter input:focus {
    background: rgba(255, 255, 255, 0.15);
    border-color: var(--primary-color);
    outline: none;
    box-shadow: 0 0 0 3px rgba(0, 31, 210, 0.1);
}

.footer-newsletter input::placeholder {
    color: rgba(255, 255, 255, 0.5);
}

.footer-newsletter .btn-primary {
    background: var(--primary-color);
    border: none;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s;
}

.footer-newsletter .btn-primary:hover {
    background: var(--secondary-color);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.4);
}

.copyright {
    padding-top: 30px;
    border-top: 2px solid rgba(0, 31, 210, 0.3);
    text-align: center;
    position: relative;
    z-index: 1;
    background: rgba(0, 0, 0, 0.3);
    margin-top: 40px;
    padding-bottom: 20px;
}

.copyright p {
    color: white;
    margin-bottom: 10px;
    font-weight: 500;
}

.copyright .sitename {
    color: white;
    font-weight: 700;
}

.credits {
    color: rgba(255, 255, 255, 0.7);
    font-size: 14px;
}

/* ============================================
   Responsive Utilities
   ============================================ */

@media (max-width: 1200px) {
    .container {
        padding-left: 20px;
        padding-right: 20px;
    }
}

@media (max-width: 992px) {
    .section {
        padding: 60px 0;
    }
    
    .section-title h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 40px 0;
    }
    
    .section-title h2 {
        font-size: 24px;
    }
    
    .section-title p {
        font-size: 16px;
    }
    
    .page-title h1 {
        font-size: 22px;
    }
}

@media (max-width: 576px) {
    .section {
        padding: 30px 0;
    }
    
    .hero-slider .carousel-caption {
        max-width: 95%;
    }
}

/* ============================================
   Recent News Section - Modern Design
   ============================================ */

.recent-news-section-modern {
    padding: 100px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f8f9fa 100%);
}

.recent-news-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.recent-news-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.recent-news-image {
    position: relative;
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.1), rgba(74, 144, 226, 0.1));
    overflow: hidden;
}

.recent-news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
}

.recent-news-image-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05), rgba(74, 144, 226, 0.05));
}

.recent-news-image-placeholder i {
    font-size: 64px;
    color: rgba(0, 31, 210, 0.3);
}

.recent-news-category-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--primary-color);
    color: white;
    padding: 6px 15px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 4px 15px rgba(0, 31, 210, 0.3);
}

.recent-news-content {
    padding: 30px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.recent-news-meta {
    margin-bottom: 15px;
}

.recent-news-date {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.recent-news-date i {
    color: var(--primary-color);
    font-size: 14px;
}

.recent-news-title {
    font-size: 22px;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 15px;
    line-height: 1.4;
}

.recent-news-title a {
    color: var(--primary-color);
    text-decoration: none;
    transition: all 0.3s;
}

.recent-news-title a:hover {
    color: var(--secondary-color);
}

.recent-news-excerpt {
    font-size: 15px;
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 20px;
    flex: 1;
}

.recent-news-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(0, 0, 0, 0.05);
}

.recent-news-stats {
    display: flex;
    gap: 20px;
}

.recent-news-stat-item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-light);
    font-weight: 500;
}

.recent-news-stat-item i {
    color: var(--primary-color);
    font-size: 14px;
}

.recent-news-read-more {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.3s;
}

.recent-news-read-more:hover {
    color: var(--secondary-color);
    gap: 12px;
}

.recent-news-read-more i {
    font-size: 16px;
    transition: transform 0.3s;
}

.recent-news-read-more:hover i {
    transform: translateX(5px);
}

.btn-view-all-news {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 16px 40px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border-radius: 12px;
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.3);
}

.btn-view-all-news:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 31, 210, 0.4);
    color: white;
}

.btn-view-all-news i {
    font-size: 18px;
    transition: transform 0.3s;
}

.btn-view-all-news:hover i {
    transform: translateX(5px);
}

@media (max-width: 768px) {
    .recent-news-section-modern {
        padding: 60px 0;
    }
    
    .recent-news-content {
        padding: 20px;
    }
    
    .recent-news-footer {
        flex-direction: column;
        gap: 15px;
        align-items: flex-start;
    }
}

/* ============================================
   Statistics Section - Modern Design
   ============================================ */

.statistics-section-modern {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(0, 31, 210, 0.05) 0%, rgba(74, 144, 226, 0.05) 100%);
    position: relative;
    overflow: hidden;
}

.statistics-section-modern::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"><defs><pattern id="stat-dots" width="40" height="40" patternUnits="userSpaceOnUse"><circle cx="20" cy="20" r="2" fill="rgba(0,31,210,0.1)"/></pattern></defs><rect width="100%" height="100%" fill="url(%23stat-dots)"/></svg>');
    opacity: 0.4;
}

.stat-card-modern {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
    transition: all 0.4s;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.stat-card-modern::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform: scaleX(0);
    transition: transform 0.4s;
}

.stat-card-modern:hover::before {
    transform: scaleX(1);
}

.stat-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    box-shadow: 0 8px 25px rgba(0, 31, 210, 0.25);
    transition: all 0.3s;
}

.stat-card-modern:hover .stat-icon-wrapper {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 35px rgba(0, 31, 210, 0.4);
}

.stat-icon-wrapper i {
    font-size: 36px;
    color: white;
}

.stat-number {
    font-size: 48px;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 10px;
    line-height: 1;
    transition: all 0.3s;
}

.stat-card-modern:hover .stat-number {
    transform: scale(1.1);
    color: var(--secondary-color);
}

.stat-label {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
    margin-top: 10px;
}

@media (max-width: 768px) {
    .statistics-section-modern {
        padding: 60px 0;
    }
    
    .stat-card-modern {
        padding: 30px 20px;
    }
    
    .stat-number {
        font-size: 36px;
    }
    
    .stat-icon-wrapper {
        width: 70px;
        height: 70px;
    }
    
    .stat-icon-wrapper i {
        font-size: 32px;
    }
}

/* ============================================
   Animations
   ============================================ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.6s ease-out;
}

/* ============================================
   Print Styles
   ============================================ */

@media print {
    .header,
    .footer,
    .btn,
    .carousel-control-prev,
    .carousel-control-next,
    .carousel-indicators {
        display: none !important;
    }
}
