/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
    background-color: #f5f3ff;
}

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

/* Navigation Styles */
.navbar {
    background: rgba(248, 245, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0,0,0,0.1);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 70px;
}

.nav-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #944675;
    text-decoration: none;
}

.nav-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

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

.nav-link {
    text-decoration: none;
    color: #333;
    font-weight: 500;
    padding: 10px 15px;
    border-radius: 25px;
    transition: all 0.3s ease;
    position: relative;
}

.nav-link:hover,
.nav-link.active {
    color: #944675;
    background-color: rgba(139, 92, 246, 0.1);
}

.nav-link.donate-btn {
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    font-weight: 600;
}

.nav-link.donate-btn:hover {
    background: linear-gradient(135deg, #944675, #944675);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(139, 92, 246, 0.3);
}

/* Dropdown Menu Styles */
.nav-dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle i {
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover .dropdown-toggle i {
    transform: rotate(180deg);
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(10px);
    min-width: 180px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
    border-radius: 10px;
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
}

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

.dropdown-item {
    display: block;
    padding: 12px 20px;
    color: #333;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    border-radius: 0;
}

.dropdown-item:hover {
    background: rgba(139, 92, 246, 0.1);
    color: #944675;
    padding-left: 25px;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.bar {
    width: 25px;
    height: 3px;
    background-color: #333;
    margin: 3px 0;
    transition: 0.3s;
}

/* Page Header Styles */
.page-header {
    background: linear-gradient(rgba(0,0,0,0.6), rgba(0,0,0,0.6)), url('https://images.pexels.com/photos/208315/pexels-photo-208315.jpeg');
    background-size: cover;
    background-position: center;
    height: 60vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
    position: relative;
}

.header-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #944675, rgba(0,0,0,0.6));
}

.header-content {
    position: relative;
    z-index: 2;
}

.header-content h1 {
    font-size: 3.5rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
}

.header-content p {
    font-size: 1.3rem;
    margin-bottom: 30px;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.breadcrumb {
    margin-top: 20px;
    font-size: 1rem;
    opacity: 0.9;
}

.breadcrumb a {
    color: white;
    text-decoration: none;
}

.breadcrumb span {
    margin: 0 10px;
}

/* Hero Section Styles */
.hero {
    height: 100vh;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.slide.active {
    opacity: 1;
}

.slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 80px;;
    height: 100%;
    
}

.slider-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-btn {
    background: #944675;
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-btn:hover {
    background: #944675;
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 15px;
    z-index: 3;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #944675;
    cursor: pointer;
    transition: all 0.3s ease;
}

.indicator.active {
    background: #944675;
    transform: scale(1.2);
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(168, 81, 138, 0.7), rgba(0,0,0,0.5));
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 20px;
}

.hero-content h1 {
    font-size: 4rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    font-weight: 700;
    line-height: 1.2;
}

.hero-subtitle {
    font-size: 1.5rem;
    margin-bottom: 40px;
    text-shadow: 1px 1px 2px rgba(250, 245, 245, 0.5);
    opacity: 0.95;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.cta-button {
    padding: 15px 30px;
    border: none;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-button.primary {
    background: #944675;
    color: white;
}

.cta-button.primary:hover {
    background: #e2dadf;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 81, 138, 0.7);
}

.cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-button.secondary:hover {
    background: white;
    color: #333;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 81, 138, 0.7);
}

.hero-info {
    display: flex;
    gap: 40px;
    justify-content: center;
    flex-wrap: wrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
}

.info-item i {
    color: #944675;
    font-size: 1.3rem;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    color: white;
    font-size: 1.5rem;
    animation: bounce 2s infinite;
}

/* Author Section Styles */
.author-section {
    padding: 100px 0;
    background: white;
}

.author-content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.author-image {
    position: relative;
    text-align: center;
}

.author-image img {
    width: 100%;
    max-width: 350px;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
}

.author-badge {
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    padding: 12px 25px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.9rem;
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
    display: flex;
    align-items: center;
    gap: 8px;
}

.author-info h3 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 700;
    letter-spacing: 1px;
}

.author-title {
    font-size: 1.3rem;
    color: #944675;
    font-weight: 600;
    margin-bottom: 30px;
    font-style: italic;
}

.author-description {
    margin-bottom: 40px;
}

.author-description p {
    line-height: 1.8;
    color: #555;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.author-description p:first-child {
    font-size: 1.2rem;
    color: #333;
}

.author-credentials {
    display: grid;
    gap: 15px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #944675;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    transform: translateX(5px);
}

.credential-item i {
    color: #944675;
    font-size: 1.2rem;
    width: 20px;
}

.credential-item span {
    color: #555;
    font-weight: 500;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

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

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.section-header p {
    font-size: 1.2rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.8;
}

.lead {
    font-size: 1.3rem;
    font-weight: 400;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

/* Welcome Section */
.welcome-section {
    padding: 100px 0;
    background: white;
}

.welcome-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.welcome-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.welcome-text p {
    margin-bottom: 25px;
    line-height: 1.8;
    color: #555;
}

.learn-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.learn-more-btn:hover {
    color: #944675;
    transform: translateX(5px);
}

.welcome-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Beliefs Section */
.beliefs-section {
    padding: 100px 0;
    background: #faf5ff;
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.belief-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.belief-card:hover {
    transform: translateY(-10px);
}

.belief-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.belief-icon i {
    font-size: 2rem;
    color: white;
}

.belief-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.belief-card p {
    line-height: 1.7;
    color: #666;
}

/* Services Preview */
.services-preview {
    padding: 100px 0;
    background: white;
}

.services-grid {
    display: grid;
    gap: 50px;
    margin-bottom: 60px;
}

.service-highlight {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
    padding: 40px;
    background: #faf5ff;
    border-radius: 20px;
}

.service-highlight:nth-child(even) {
    direction: rtl;
}

.service-highlight:nth-child(even) > * {
    direction: ltr;
}

.service-image img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-radius: 15px;
    /*referenced author-image and welcome-image
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);*/

}

.service-content h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-time {
    color: #944675;
    font-weight: 600;
    font-size: 1.1rem;
    margin-bottom: 20px;
}

.service-content p {
    margin-bottom: 25px;
    line-height: 1.7;
    color: #555;
}

.service-features {
    list-style: none;
    margin-bottom: 30px;
}

.service-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.service-features i {
    color: #944675;
    width: 20px;
}

.services-cta {
    text-align: center;
}

/* Events Teaser */
.events-teaser {
    padding: 100px 0;
    background: #faf5ff;
}

.events-header {
    text-align: center;
    margin-bottom: 60px;
}

.events-header h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.featured-event {
    display: flex;
    align-items: center;
    gap: 40px;
    background: white;
    padding: 40px;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    max-width: 800px;
    margin: 0 auto;
}

.event-date-large {
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    padding: 30px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
}

.event-date-large .day {
    display: block;
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
}

.event-date-large .month {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-details h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.event-time {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #944675;
    font-weight: 600;
    margin-bottom: 20px;
}

.event-details p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.event-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.event-link:hover {
    color: #944675;
    transform: translateX(5px);
}

/* CTA Section */
.cta-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.cta-buttons .cta-button.primary {
    background: white;
    color: #944675;
}

.cta-buttons .cta-button.primary:hover {
    background: #faf5ff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.3);
}

.cta-buttons .cta-button.secondary {
    background: transparent;
    color: white;
    border: 2px solid white;
}

.cta-buttons .cta-button.secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
}

/* Footer Styles */
.footer {
    background: #000000;
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #fdfdfd;
    font-weight: 600;
}

.footer-section h5 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    margin-top: 25px;
    color: #ffffff;
    font-weight: 600;
}

.footer-logo {
    display: flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: bold;
    color: #ffffff;
    margin-bottom: 20px;
}

.footer-logo i {
    margin-right: 10px;
    font-size: 2rem;
}

.footer-section p {
    line-height: 1.7;
    margin-bottom: 20px;
    opacity: 0.9;
}

.footer-section ul {
    list-style: none;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section ul li a {
    color: white;
    text-decoration: none;
    opacity: 0.8;
    transition: all 0.3s ease;
}

.footer-section ul li a:hover {
    opacity: 1;
    color: #ffffff;
    padding-left: 5px;
}

.social-links {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}

.social-links a {
    width: 40px;
    height: 40px;
    background: #34495e;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
}

.social-links a:hover {
    background: #944675;
    transform: translateY(-3px);
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.contact-info i {
    color: #944675;
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid #34495e;
    padding-top: 20px;
    text-align: center;
    opacity: 0.8;
}

/* WhatsApp Button */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #25d366;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    z-index: 1000;
    overflow: hidden;
}

.whatsapp-button:hover {
    background: #128c7e;
    transform: scale(1.1);
    width: auto;
    padding: 0 20px;
    border-radius: 30px;
}

.whatsapp-text {
    margin-left: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.whatsapp-button:hover .whatsapp-text {
    opacity: 1;
}

/* About Page Specific Styles */
.story-section {
    padding: 100px 0;
    background: white;
}

.story-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}

.story-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.story-timeline {
    margin-top: 40px;
}

.timeline-item {
    display: flex;
    gap: 30px;
    margin-bottom: 40px;
    position: relative;
}

.timeline-item:not(:last-child)::after {
    content: '';
    position: absolute;
    left: 30px;
    top: 60px;
    width: 2px;
    height: calc(100% + 20px);
    background: #e9ecef;
}

.timeline-year {
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-weight: bold;
    font-size: 1.1rem;
    min-width: 100px;
    text-align: center;
    height: fit-content;
}

.timeline-content h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.timeline-content p {
    line-height: 1.7;
    color: #555;
}

.story-image {
    position: sticky;
    top: 100px;
}

.story-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.image-caption {
    margin-top: 15px;
    text-align: center;
}

.image-caption p {
    font-style: italic;
    color: #666;
    font-size: 0.9rem;
}

/* Mission & Vision Section */
.mission-vision-section {
    padding: 100px 0;
    background: #faf5ff;
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
}

.mission-card,
.vision-card {
    background: white;
    padding: 50px 40px;
    border-radius: 20px;
    text-align: left;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-10px);
}

.card-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.card-icon i {
    font-size: 2.5rem;
    color: white;
}

.mission-card h3,
.vision-card h3 {
    font-size: 2rem;
    margin-bottom: 25px;
    color: #333;
    font-weight: 700;
}

.mission-card p,
.vision-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

/* Leadership Section */
.leadership-section {
    padding: 100px 0;
    background: white;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.leader-card {
    background: #faf5ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.leader-card:hover {
    transform: translateY(-10px);
}

.leader-image img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.leader-info {
    padding: 30px;
}

.leader-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.leader-title {
    color: #944675;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.leader-info p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.leader-credentials {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.leader-credentials span {
    background: #944675;
    color: white;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Values Section */
.values-section {
    padding: 100px 0;
    background: #faf5ff;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.value-item {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.value-item:hover {
    transform: translateY(-10px);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.value-icon i {
    font-size: 1.8rem;
    color: white;
}

.value-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.value-item p {
    line-height: 1.7;
    color: #666;
}

/* Impact Section */
.impact-section {
    padding: 100px 0;
    background: white;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.stat-item {
    text-align: center;
    padding: 30px 20px;
    background: #faf5ff;
    border-radius: 15px;
    transition: transform 0.3s ease;
}

.stat-item:hover {
    transform: translateY(-5px);
}

.stat-number {
    font-size: 3rem;
    font-weight: bold;
    color: #944675;
    margin-bottom: 10px;
}

.stat-label {
    font-size: 1.1rem;
    color: #555;
    font-weight: 500;
}

.impact-stories {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.story-card {
    background: #faf5ff;
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.story-quote i {
    font-size: 2rem;
    color: #944675;
    margin-bottom: 20px;
}

.story-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.story-author strong {
    color: #333;
    font-size: 1.1rem;
}

.story-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Join Us Section */
.join-us-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    text-align: center;
}

.join-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.join-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.join-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Services Page Specific Styles */
.main-services-section {
    padding: 100px 0;
    background: white;
}

.main-services-grid {
    display: grid;
    gap: 50px;
}

.main-service-card {
    background: #faf5ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.main-service-card:hover {
    transform: translateY(-10px);
}

.main-service-card.featured {
    border: 3px solid #944675;
    position: relative;
}

.service-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #944675;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 2;
}

.service-image {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-content {
    padding: 40px;
}

.service-header {
    margin-bottom: 25px;
}

.service-header h3 {
    font-size: 2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-time {
    display: flex;
    align-items: center;
    gap: 10px;
    color: #944675;
    font-weight: 600;
    font-size: 1.1rem;
}

.service-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.service-highlights h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.service-highlights ul {
    list-style: none;
    margin-bottom: 30px;
}

.service-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #555;
}

.service-highlights i {
    color: #944675;
    width: 20px;
}

.service-details {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-bottom: 30px;
}

.detail-item {
    margin-bottom: 15px;
    color: #555;
}

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

.detail-item strong {
    color: #333;
}

.current-study {
    background: white;
    padding: 25px;
    border-radius: 10px;
    margin-top: 20px;
}

.current-study h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.study-info strong {
    color: #944675;
    font-size: 1.1rem;
}

.study-info p {
    margin-top: 10px;
    color: #555;
    line-height: 1.6;
}

/* Ministry Programs Section */
.ministry-programs-section {
    padding: 100px 0;
    background: #faf5ff;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.program-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
}

.program-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.program-icon i {
    font-size: 2rem;
    color: white;
}

.program-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.program-age {
    color: #944675;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1rem;
}

.program-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.program-schedule {
    background: #faf5ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.schedule-item {
    margin-bottom: 10px;
    color: #555;
}

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

.schedule-item strong {
    color: #333;
}

.program-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.program-link:hover {
    color: #944675;
}

/* Special Services Section */
.special-services-section {
    padding: 100px 0;
    background: white;
}

.special-services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.special-service-item {
    background: #faf5ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.special-service-item:hover {
    transform: translateY(-5px);
}

.service-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.service-icon i {
    font-size: 1.8rem;
    color: white;
}

.special-service-item h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.special-service-item p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.service-frequency {
    color: #944675;
    font-weight: 600;
    font-size: 0.95rem;
}

/* First Time Visitor Section */
.first-time-section {
    padding: 100px 0;
    background: #faf5ff;
}

.first-time-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.first-time-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.visitor-info {
    margin-top: 40px;
}

.info-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.info-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    font-size: 1.5rem;
    color: white;
}

.info-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.info-content p {
    line-height: 1.7;
    color: #555;
}

.first-time-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.visitor-cta {
    text-align: center;
    margin-top: 60px;
}

.visitor-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.visitor-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

/* Service Times Summary */
.service-times-summary {
    padding: 100px 0;
    background: white;
}

.service-times-summary h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 60px;
    color: #333;
    font-weight: 700;
}

.times-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.time-card {
    background: #faf5ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.time-card:hover {
    transform: translateY(-5px);
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
}

.time-card .day {
    font-size: 1.5rem;
    font-weight: bold;
    margin-bottom: 10px;
    color: #333;
}

.time-card:hover .day {
    color: white;
}

.time-card .time {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 10px;
    color: #944675;
}

.time-card:hover .time {
    color: white;
}

.time-card .service {
    font-size: 1rem;
    color: #555;
}

.time-card:hover .service {
    color: white;
}

/* Gallery Page Specific Styles */
.gallery-filter-section {
    padding: 50px 0;
    background: white;
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 12px 25px;
    border: 2px solid #944675;
    background: transparent;
    color: #944675;
    border-radius: 25px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: #944675;
    color: white;
    transform: translateY(-2px);
}

/* Featured Gallery Section */
.featured-gallery-section {
    padding: 100px 0;
    background: #faf5ff;
}

.featured-gallery-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    height: 600px;
}

.featured-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.featured-item:hover {
    transform: scale(1.02);
}

.featured-item.large {
    grid-row: 1 / 3;
}

.featured-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.featured-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    padding: 30px;
    transform: translateY(20px);
    transition: transform 0.3s ease;
}

.featured-item:hover .featured-overlay {
    transform: translateY(0);
}

.featured-content h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.featured-content p {
    margin-bottom: 10px;
    opacity: 0.9;
}

.photo-date {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Main Gallery Section */
.main-gallery-section {
    padding: 100px 0;
    background: white;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 20px;
    margin-bottom: 60px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.3s ease;
}

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

.gallery-item img {
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(transparent, rgba(0,0,0,0.8));
    color: white;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-info h4 {
    font-size: 1.2rem;
    margin-bottom: 5px;
    font-weight: 600;
}

.gallery-info p {
    font-size: 0.9rem;
    opacity: 0.9;
}

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

.view-btn {
    background: #944675;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.view-btn:hover {
    background: #944675;
    transform: scale(1.1);
}

/* Load More Section */
.load-more-section {
    text-align: center;
}

.load-more-btn {
    background: #944675;
    color: white;
    border: none;
    padding: 15px 30px;
    border-radius: 25px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.load-more-btn:hover {
    background: #944675;
    transform: translateY(-2px);
}

/* Gallery Stats Section */
.gallery-stats-section {
    padding: 100px 0;
    background: #faf5ff;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
}

/* Share Photos Section */
.share-photos-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    text-align: center;
}

.share-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.share-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.share-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

/* Lightbox Styles */
.lightbox-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.9);
}

.lightbox-content {
    position: relative;
    margin: auto;
    padding: 20px;
    width: 90%;
    max-width: 800px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: white;
    font-size: 40px;
    font-weight: bold;
    cursor: pointer;
    z-index: 2001;
}

.lightbox-close:hover {
    color: #944675;
}

.lightbox-image {
    width: 100%;
    height: auto;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-info {
    text-align: center;
    color: white;
    margin-top: 20px;
}

.lightbox-title {
    font-size: 1.5rem;
    margin-bottom: 10px;
    font-weight: 600;
}

.lightbox-date {
    font-size: 1rem;
    opacity: 0.8;
}

.lightbox-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    width: 100%;
    padding: 0 20px;
}

.lightbox-prev,
.lightbox-next {
    background: rgba(139, 92, 246, 0.8);
    color: white;
    border: none;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: #944675;
    transform: scale(1.1);
}

/* Events Page Specific Styles */
.featured-event-section {
    padding: 100px 0;
    background: white;
}

.featured-event-card {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
    background: #faf5ff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
}

.featured-event-image {
    position: relative;
    height: 400px;
}

.featured-event-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.event-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: #944675;
    color: white;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.featured-event-content {
    padding: 40px;
    display: flex;
    gap: 30px;
}

.event-date-large {
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    padding: 30px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 120px;
    height: fit-content;
}

.date-number {
    font-size: 3rem;
    font-weight: bold;
    line-height: 1;
    margin-bottom: 10px;
}

.date-info .month {
    display: block;
    font-size: 1.2rem;
    text-transform: uppercase;
    font-weight: 600;
}

.date-info .year {
    display: block;
    font-size: 1rem;
    opacity: 0.9;
}

.event-details {
    flex: 1;
}

.event-details h2 {
    font-size: 2.2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.event-meta {
    display: flex;
    gap: 30px;
    margin-bottom: 25px;
    flex-wrap: wrap;
}

.meta-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #555;
}

.meta-item i {
    color: #944675;
}

.event-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    margin-bottom: 30px;
}

.event-highlights h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.event-highlights ul {
    list-style: none;
    margin-bottom: 30px;
}

.event-highlights li {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 10px;
    color: #555;
}

.event-highlights i {
    color: #944675;
    width: 20px;
}

.event-actions {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

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

/* Upcoming Events Section */
.upcoming-events-section {
    padding: 100px 0;
    background: #faf5ff;
}

.events-timeline {
    max-width: 900px;
    margin: 0 auto;
}

.event-timeline-item {
    display: flex;
    gap: 40px;
    margin-bottom: 50px;
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.event-timeline-item:hover {
    transform: translateY(-5px);
}

.event-date {
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    padding: 25px 20px;
    border-radius: 15px;
    text-align: center;
    min-width: 100px;
    height: fit-content;
}

.event-date .day {
    display: block;
    font-size: 2.5rem;
    font-weight: bold;
    line-height: 1;
}

.event-date .month {
    display: block;
    font-size: 1rem;
    text-transform: uppercase;
    margin-top: 5px;
}

.event-content {
    flex: 1;
}

.event-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.event-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.event-features {
    margin-bottom: 25px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
}

.feature-item i {
    color: #944675;
    width: 20px;
}

.event-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 15px;
}

.event-btn {
    background: #944675;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.event-btn:hover {
    background: #944675;
    transform: translateY(-2px);
}

.event-cost {
    color: #944675;
    font-weight: 600;
    font-size: 1.1rem;
}

/* Regular Programs Section */
.regular-programs-section {
    padding: 100px 0;
    background: white;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.program-card {
    background: #faf5ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.program-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.program-schedule {
    color: #944675;
    font-weight: 600;
    margin-bottom: 20px;
    font-size: 1.1rem;
}

.card-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #944675;
    transform: translateX(5px);
}

/* Calendar Section */
.calendar-section {
    padding: 100px 0;
    background: #faf5ff;
}

.calendar-container {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    border-radius: 15px;
    padding: 40px;
    box-shadow: 0 15px 3px rgba(0,0,0,0.1);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 30px;
}

.calendar-nav {
    background: #944675;
    color: white;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.calendar-nav:hover {
    background: #944675;
    transform: scale(1.1);
}

#currentMonth {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 1px;
    background: #e9ecef;
    border-radius: 10px;
    overflow: hidden;
}

.calendar-day-header {
    background: #944675;
    color: white;
    padding: 15px;
    text-align: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.calendar-day {
    background: white;
    padding: 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    min-height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.calendar-day:hover {
    background: #f8f9fa;
}

.calendar-day.has-event {
    background: rgba(139, 92, 246, 0.1);
    color: #944675;
    font-weight: bold;
    position: relative;
}

.calendar-day.has-event::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: #944675;
    border-radius: 50%;
}

/* Media Pages Styles */
.featured-teaching-section,
.featured-testimony-section {
    padding: 100px 0;
    background: #fff;
}

.featured-video-container,
.featured-testimony-container {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
}

.video-wrapper.large {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 56.25%; /* 16:9 aspect ratio */
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

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

.video-details,
.testimony-details {
    padding: 20px 0;
}

.video-details h3,
.testimony-details h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.video-meta,
.testimony-meta {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 25px;
    color: #666;
}

.video-meta span,
.testimony-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
}

.video-meta i,
.testimony-meta i {
    color: #944675;
    width: 16px;
}

.video-description,
.testimony-description {
    line-height: 1.8;
    color: #555;
    margin-bottom: 25px;
    font-size: 1.1rem;
}

.video-tags,
.testimony-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.tag {
    background: rgba(139, 92, 246, 0.1);
    color: #944675;
    padding: 5px 12px;
    border-radius: 15px;
    font-size: 0.85rem;
    font-weight: 500;
}

.teaching-categories-section,
.testimony-categories-section {
    padding: 50px 0;
    background: #faf5ff;
}

.category-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    flex-wrap: wrap;
}

.teachings-grid-section,
.testimonies-grid-section {
    padding: 100px 0;
    background: #fff;
}

.teachings-grid,
.testimonies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.teaching-card,
.testimony-card {
    background: #f5f3ff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.teaching-card:hover,
.testimony-card:hover {
    transform: translateY(-10px);
}

.video-thumbnail {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.video-thumbnail iframe {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-overlay {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1.5rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.video-thumbnail:hover .play-overlay {
    opacity: 1;
}

.teaching-info,
.testimony-info {
    padding: 30px;
}

.teaching-info h4,
.testimony-info h4 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.teaching-meta,
.testimony-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.teaching-excerpt,
.testimony-excerpt {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.teaching-tags,
.testimony-tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
}

.teaching-series-section {
    padding: 100px 0;
    background: #faf5ff;
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.series-card {
    background: #fff;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease;
}

.series-card:hover {
    transform: translateY(-10px);
}

.series-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.series-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.series-overlay {
    position: absolute;
    top: 15px;
    right: 15px;
}

.series-count {
    background: rgba(139, 92, 246, 0.9);
    color: #fff;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

.series-info {
    padding: 30px;
}

.series-info h4 {
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.series-info p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.series-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.series-link:hover {
    color: #944675;
    transform: translateX(5px);
}

.subscribe-section,
.share-testimony-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #944675, #944675);
    color: #fff;
    text-align: center;
}

.subscribe-content,
.share-content {
    max-width: 800px;
    margin: 0 auto;
}

.subscribe-content h2,
.share-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.subscribe-content p,
.share-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    line-height: 1.8;
}

.subscribe-buttons,
.share-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.written-testimonies-section {
    padding: 100px 0;
    background: #f5f3ff;
}

.written-testimonies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 40px;
}

.written-testimony-card {
    background: #fff;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    position: relative;
}

.testimony-quote i {
    font-size: 2rem;
    color: #944675;
    margin-bottom: 20px;
}

.testimony-quote p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.testimony-author {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
}

.author-info strong {
    color: #333;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 5px;
}

.author-info span {
    color: #666;
    font-size: 0.9rem;
}

.testimony-category {
    flex-shrink: 0;
}

/* Mobile Responsiveness for Media Pages */
@media (max-width: 768px) {
    .featured-video-container,
    .featured-testimony-container {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .video-details,
    .testimony-details {
        text-align: center;
    }
    
    .teachings-grid,
    .testimonies-grid {
        grid-template-columns: 1fr;
    }
    
    .written-testimonies-grid {
        grid-template-columns: 1fr;
    }
    
    .video-meta,
    .testimony-meta {
        align-items: center;
    }
    
    .subscribe-buttons,
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }
}

/* Event Registration CTA */
.event-registration-cta {
    padding: 100px 0;
    background: linear-gradient(135deg, #944675, #944675);
    color: white;
    text-align: center;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Contact Page Specific Styles */
.contact-hero-section {
    padding: 100px 0;
    background: white;
}

.contact-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.contact-highlights {
    margin-top: 40px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
    color: #555;
}

.highlight-item i {
    color: #944675;
    font-size: 1.3rem;
    width: 25px;
}

.hero-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

/* Contact Information Section */
.contact-info-section {
    padding: 100px 0;
    background: #faf5ff;
}

.contact-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.contact-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.contact-card:hover {
    transform: translateY(-10px);
}

.contact-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #944675, #944675);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.contact-icon i {
    font-size: 2rem;
    color: white;
}

.contact-details h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.contact-details p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.contact-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.contact-link:hover {
    color: #944675;
}

/* Contact Forms Section */
.contact-forms-section {
    padding: 100px 0;
    background: white;
}

.forms-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.form-container {
    background: #faf5ff;
    padding: 40px;
    border-radius: 15px;
}

.form-header {
    margin-bottom: 30px;
}

.form-header h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.form-header p {
    color: #555;
    line-height: 1.7;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

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

.form-group label {
    margin-bottom: 8px;
    color: #333;
    font-weight: 500;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    background: white;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #944675;
    box-shadow: 0 0 0 3px rgba(139, 92, 246, 0.1);
}

.checkbox-group {
    flex-direction: row;
    align-items: center;
    gap: 10px;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #555;
}

.checkbox-label input[type="checkbox"] {
    width: auto;
    margin: 0;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid #ddd;
    border-radius: 4px;
    position: relative;
    transition: all 0.3s ease;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark {
    background: #944675;
    border-color: #944675;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 12px;
    font-weight: bold;
}

.submit-btn {
    background: #944675;
    color: white;
    padding: 15px 30px;
    border: none;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn:hover {
    background: #944675;
    transform: translateY(-2px);
}

.submit-btn.prayer-btn {
    background: linear-gradient(135deg, #944675, #944675);
}

/* First Visitor Section */
.first-visitor-section {
    padding: 100px 0;
    background: #faf5ff;
}

.visitor-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.visitor-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.visitor-checklist {
    margin-top: 40px;
}

.checklist-item {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
}

.checklist-item i {
    color: #944675;
    font-size: 1.5rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.checklist-content h4 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.checklist-content p {
    line-height: 1.7;
    color: #555;
}

.visitor-form {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.visitor-form h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.visitor-form p {
    color: #555;
    margin-bottom: 30px;
    line-height: 1.7;
}

.visitor-planning-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

/* Location Section */
.location-section {
    padding: 100px 0;
    background: white;
}

.location-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
}

.location-info {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.address-card {
    background: #faf5ff;
    padding: 30px;
    border-radius: 15px;
}

.address-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.address {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.address i {
    color: #944675;
    font-size: 1.3rem;
    margin-top: 5px;
}

.directions-info h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.direction-item {
    display: flex;
    gap: 15px;
    margin-bottom: 25px;
}

.direction-item i {
    color: #944675;
    font-size: 1.3rem;
    margin-top: 5px;
    flex-shrink: 0;
}

.direction-item strong {
    color: #333;
    display: block;
    margin-bottom: 5px;
}

.direction-item p {
    color: #555;
    line-height: 1.7;
}

.landmarks h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.landmarks ul {
    list-style: none;
}

.landmarks li {
    color: #555;
    margin-bottom: 10px;
    padding-left: 20px;
    position: relative;
}

.landmarks li::before {
    content: '•';
    color: #944675;
    position: absolute;
    left: 0;
    font-size: 1.2rem;
}

.map-container {
    background: #faf5ff;
    border-radius: 15px;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.map-container:hover {
    background: #e9ecef;
}

.map-placeholder {
    text-align: center;
    color: #666;
}

.map-placeholder i {
    font-size: 3rem;
    color: #944675;
    margin-bottom: 15px;
}

.map-placeholder p {
    font-size: 1.2rem;
    font-weight: 600;
    margin-bottom: 5px;
}

.map-placeholder small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Staff Directory Section */
.staff-directory-section {
    padding: 100px 0;
    background: #faf5ff;
}

.staff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.staff-card {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.staff-card:hover {
    transform: translateY(-10px);
}

.staff-image img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.staff-info {
    padding: 30px;
}

.staff-info h4 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.staff-title {
    color: #944675;
    font-weight: 600;
    margin-bottom: 15px;
    font-size: 1.1rem;
}

.staff-description {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.staff-contact a {
    color: #944675;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 500;
    transition: all 0.3s ease;
}

.staff-contact a:hover {
    color: #944675;
}

/* Emergency Contact Section */
.emergency-contact-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #dc3545, #c82333);
    color: white;
}

.emergency-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.emergency-info h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    font-weight: 700;
}

.emergency-info p {
    font-size: 1.2rem;
    margin-bottom: 40px;
    opacity: 0.95;
}

.emergency-contacts {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.emergency-item {
    display: flex;
    align-items: center;
    gap: 20px;
    background: rgba(255, 255, 255, 0.1);
    padding: 30px;
    border-radius: 15px;
    backdrop-filter: blur(10px);
}

.emergency-item i {
    font-size: 2rem;
    color: white;
    flex-shrink: 0;
}

.emergency-item strong {
    display: block;
    font-size: 1.2rem;
    margin-bottom: 5px;
}

.emergency-item p {
    font-size: 1.1rem;
    margin-bottom: 5px;
}

.emergency-item small {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Donate Page Specific Styles */
.giving-hero-section {
    padding: 100px 0;
    background: white;
}

.giving-hero-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-text h2 {
    font-size: 2.5rem;
    margin-bottom: 30px;
    color: #333;
    font-weight: 700;
}

.impact-stats {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-top: 40px;
}

/* Giving Options Section */
.giving-options-section {
    padding: 100px 0;
    background: #faf5ff;
}

.giving-options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.giving-card {
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.giving-card:hover {
    transform: translateY(-10px);
}

.giving-card.featured {
    border: 3px solid #944675;
    transform: scale(1.02);
}

.card-header {
    padding: 40px 30px 20px;
    text-align: center;
}

.card-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.card-subtitle {
    color: #666;
    font-size: 1rem;
}

.card-content {
    padding: 0 30px 20px;
}

.card-content p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.giving-impact h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.giving-impact ul {
    list-style: none;
    margin-bottom: 25px;
}

.giving-impact li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
    color: #555;
}

.giving-impact i {
    color: #944675;
    width: 16px;
}

.suggested-amounts h4 {
    font-size: 1.2rem;
    margin-bottom: 15px;
    color: #333;
    font-weight: 600;
}

.amount-buttons {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 10px;
    margin-bottom: 25px;
}

.amount-btn {
    padding: 10px 15px;
    border: 2px solid #944675;
    background: transparent;
    color: #944675;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.amount-btn:hover,
.amount-btn.active {
    background: #944675;
    color: white;
}

.progress-bar {
    margin-bottom: 25px;
}

.progress-label {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
    font-size: 0.9rem;
    color: #555;
}

.progress-track {
    height: 8px;
    background: #e9ecef;
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(135deg, #944675, #944675);
    transition: width 0.3s ease;
}

.current-projects {
    margin-bottom: 25px;
}

.project-item {
    background: #faf5ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 15px;
}

.project-item h4 {
    font-size: 1.1rem;
    margin-bottom: 8px;
    color: #333;
    font-weight: 600;
}

.project-item p {
    font-size: 0.9rem;
    color: #555;
    margin-bottom: 10px;
}

.project-progress span {
    font-size: 0.85rem;
    color: #666;
    margin-bottom: 5px;
    display: block;
}

.mini-progress {
    height: 4px;
    background: #e9ecef;
    border-radius: 2px;
    overflow: hidden;
}

.mini-progress-fill {
    height: 100%;
    background: #944675;
    transition: width 0.3s ease;
}

.mission-spotlight {
    background: #faf5ff;
    padding: 20px;
    border-radius: 10px;
    margin-bottom: 25px;
}

.mission-spotlight h4 {
    font-size: 1.1rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.mission-spotlight p {
    font-size: 0.95rem;
    color: #555;
    margin: 0;
}

.card-actions {
    padding: 20px 30px 40px;
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.give-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 25px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
    font-size: 0.95rem;
}

.give-btn.primary {
    background: #944675;
    color: white;
}

.give-btn.primary:hover {
    background: #944675;
    transform: translateY(-2px);
}

.give-btn.secondary {
    background: transparent;
    color: #944675;
    border: 2px solid #944675;
}

.give-btn.secondary:hover {
    background: #944675;
    color: white;
    transform: translateY(-2px);
}

/* Other Ways to Give Section */
.other-giving-section {
    padding: 100px 0;
    background: white;
}

.other-giving-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 40px;
}

.other-giving-card {
    background: #faf5ff;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    transition: transform 0.3s ease;
}

.other-giving-card:hover {
    transform: translateY(-10px);
    background: white;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.other-giving-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.other-giving-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 25px;
}

.card-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s ease;
}

.card-link:hover {
    color: #944675;
    transform: translateX(5px);
}

/* Giving Information Section */
.giving-info-section {
    padding: 100px 0;
    background: #faf5ff;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
}

.info-card {
    background: white;
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.info-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.info-card p {
    line-height: 1.7;
    color: #555;
    margin-bottom: 20px;
}

.security-badges {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.security-badges i {
    font-size: 2rem;
    color: #944675;
}

.info-link {
    color: #944675;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
}

.info-link:hover {
    color: #944675;
}

/* Giving Testimonials Section */
.giving-testimonials-section {
    padding: 100px 0;
    background: white;
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.testimonial-card {
    background: #faf5ff;
    padding: 40px;
    border-radius: 15px;
    position: relative;
}

.testimonial-content i {
    font-size: 2rem;
    color: #944675;
    margin-bottom: 20px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author strong {
    color: #333;
    font-size: 1.1rem;
}

.testimonial-author span {
    color: #666;
    font-size: 0.9rem;
    display: block;
    margin-top: 5px;
}

/* Giving Contact Section */
.giving-contact-section {
    padding: 100px 0;
    background: #faf5ff;
}

.contact-content {
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
}

.contact-content h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 700;
}

.contact-content p {
    font-size: 1.2rem;
    color: #555;
    margin-bottom: 40px;
    line-height: 1.8;
}

.contact-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
}

.contact-option {
    display: flex;
    align-items: center;
    gap: 15px;
    background: white;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.contact-option i {
    font-size: 1.5rem;
    color: #944675;
    flex-shrink: 0;
}

.contact-option strong {
    display: block;
    color: #333;
    margin-bottom: 5px;
}

.contact-option p {
    color: #555;
    margin: 0;
    font-size: 0.95rem;
}

/* Giving Modal */
.giving-modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,0.5);
    backdrop-filter: blur(5px);
}

.modal-content {
    background: white;
    margin: 5% auto;
    padding: 0;
    border-radius: 15px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,0.3);
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 30px 40px 20px;
    border-bottom: 1px solid #e9ecef;
}

.modal-header h3 {
    font-size: 1.8rem;
    color: #333;
    font-weight: 600;
    margin: 0;
}

.modal-close {
    font-size: 2rem;
    color: #666;
    cursor: pointer;
    transition: color 0.3s ease;
}

.modal-close:hover {
    color: #333;
}

.modal-body {
    padding: 30px 40px;
}

.giving-form {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.form-section {
    border-bottom: 1px solid #e9ecef;
    padding-bottom: 25px;
}

.form-section:last-of-type {
    border-bottom: none;
    padding-bottom: 0;
}

.form-section h4 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.modal-actions {
    display: flex;
    gap: 15px;
    justify-content: flex-end;
    margin-top: 30px;
}

.btn-secondary {
    background: #6c757d;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
}

.btn-primary {
    background: #944675;
    color: white;
    padding: 12px 25px;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-primary:hover {
    background: #944675;
    transform: translateY(-2px);
}

/* Video Section Styles */
.video-section {
    padding: 100px 0;
    background: #faf5ff;
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.video-item {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: transform 0.3s ease;
}

.video-item:hover {
    transform: translateY(-10px);
}

.video-item.featured {
    grid-column: span 2;
}

.video-thumbnail {
    position: relative;
    height: 250px;
    overflow: hidden;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    background: rgba(139, 92, 246, 0.9);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.play-button:hover {
    background: #944675;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-info {
    padding: 25px;
}

.video-info h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: #333;
    font-weight: 600;
}

.video-meta {
    display: flex;
    gap: 20px;
    margin-bottom: 15px;
    font-size: 0.9rem;
    color: #666;
}

.video-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.video-description {
    color: #555;
    line-height: 1.6;
    margin-bottom: 20px;
}

.video-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.video-tag {
    background: #f8f9fa;
    color: #666;
    padding: 4px 10px;
    border-radius: 12px;
    font-size: 0.8rem;
}

.video-cta {
    text-align: center;
}

.video-cta h3 {
    font-size: 2rem;
    margin-bottom: 20px;
    color: #333;
    font-weight: 600;
}

.video-cta p {
    font-size: 1.1rem;
    color: #555;
    margin-bottom: 30px;
}

.video-cta .cta-button.primary {
    background: #944675;
    color: white;
    display: inline-flex;
    align-items: center;
    gap: 10px;
}

.video-cta .cta-button.primary:hover {
    background: #944675;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(168, 81, 138, 0.7);
}

/* Responsive Design */
@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: rgba(248, 245, 255, 0.95);
        backdrop-filter: blur(10px);
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
        gap: 10px;
    }

    .nav-menu.active {
        left: 0;
    }

    .nav-toggle {
        display: flex;
    }

    .nav-toggle.active .bar:nth-child(2) {
        opacity: 0;
    }

    .nav-toggle.active .bar:nth-child(1) {
        transform: translateY(8px) rotate(45deg);
    }

    .nav-toggle.active .bar:nth-child(3) {
        transform: translateY(-8px) rotate(-45deg);
    }

    .hero-content h1 {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .hero-info {
        flex-direction: column;
        gap: 20px;
    }
    
    .author-content {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .slider-nav {
        padding: 0 15px;
    }
    
    .slider-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .header-content h1 {
        font-size: 2.5rem;
    }

    .header-content p {
        font-size: 1.1rem;
    }

    .welcome-content,
    .about-content,
    .contact-content,
    .story-content,
    .mission-vision-grid,
    .contact-hero-content,
    .giving-hero-content,
    .first-time-content,
    .visitor-content,
    .location-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .service-highlight {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .service-highlight:nth-child(even) {
        direction: ltr;
    }

    .featured-event {
        flex-direction: column;
        text-align: center;
    }

    .featured-event-card {
        grid-template-columns: 1fr;
    }

    .featured-event-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .event-timeline-item {
        flex-direction: column;
        text-align: center;
    }

    .event-date {
        align-self: center;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .featured-gallery-grid {
        grid-template-columns: 1fr;
        grid-template-rows: repeat(4, 300px);
        height: auto;
    }

    .featured-item.large {
        grid-row: auto;
    }

    .gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }

    .impact-stats {
        grid-template-columns: 1fr;
    }

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

    .contact-options {
        grid-template-columns: 1fr;
    }

    .emergency-contacts {
        grid-template-columns: 1fr;
    }

    .whatsapp-button {
        width: 50px;
        height: 50px;
        bottom: 20px;
        right: 20px;
        font-size: 1.2rem;
    }

    .whatsapp-button:hover {
        width: 50px;
        padding: 0;
        border-radius: 50%;
    }

    .whatsapp-text {
        display: none;
    }

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

    .section-header p {
        font-size: 1.1rem;
    }

    .cta-buttons,
    .join-buttons,
    .share-buttons {
        flex-direction: column;
        align-items: center;
    }

    .modal-content {
        width: 95%;
        margin: 10% auto;
    }

    .modal-header,
    .modal-body {
        padding: 20px;
    }

    .modal-actions {
        flex-direction: column;
    }
    
    .video-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .video-item.featured {
        grid-row: auto;
    }
}

@media (max-width: 480px) {
    .hero-content h1 {
        font-size: 2rem;
    }

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

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

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

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

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

    .calendar-grid {
        font-size: 0.9rem;
    }

    .calendar-day {
        min-height: 40px;
        padding: 10px;
    }
}