/* ===================================
   Pages Specific Styles
   =================================== */

/* Page Header */
.page-header {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: 8rem 0 4rem;
    margin-top: 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(193, 154, 107, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 70% 80%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
}

.page-header-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.page-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 1rem;
}

.page-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: white;
}

.page-subtitle {
    font-size: 1.3rem;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 300;
}

/* Songs Page */
.songs-section {
    padding: var(--spacing-xl) 0;
}

.songs-controls {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.search-box {
    flex: 1;
    min-width: 300px;
    display: flex;
    background: white;
    border: 2px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.search-box:focus-within {
    border-color: var(--primary);
    box-shadow: 0 4px 15px rgba(139, 111, 71, 0.1);
}

.search-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: none;
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
}

.search-btn {
    padding: 1rem 1.5rem;
    background: var(--primary);
    border: none;
    color: white;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.2rem;
}

.search-btn:hover {
    background: var(--primary-dark);
}

.filter-controls {
    display: flex;
    gap: 1rem;
}

.filter-select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    background: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary);
}

.songs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.song-card {
    background: white;
    border: 1px solid var(--border);
    padding: 2rem;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.song-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 0;
    background: var(--primary);
    transition: var(--transition);
}

.song-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.song-card:hover::before {
    height: 100%;
}

.song-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1rem;
}

.song-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-muted);
}

.song-actions {
    display: flex;
    gap: 0.5rem;
}

.song-action {
    width: 36px;
    height: 36px;
    border: none;
    background: var(--background);
    border-radius: 50%;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
}

.song-action:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.song-title {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.song-meta {
    display: flex;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.song-category,
.song-language {
    font-size: 0.85rem;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    background: var(--background);
    color: var(--text-secondary);
    font-weight: 500;
}

.song-preview {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    font-style: italic;
}

/* Upload Section */
.upload-section {
    max-width: 800px;
    margin: 4rem auto 0;
    padding: 3rem;
    background: var(--background);
    border: 2px solid var(--border);
}

.upload-description {
    color: var(--text-secondary);
    margin-bottom: 2rem;
    text-align: center;
}

.upload-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.875rem 1rem;
    border: 2px solid var(--border);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
}

.form-group textarea {
    resize: vertical;
}

/* Bible Reader */
.bible-reader-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.bible-reader {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.bible-controls {
    padding: 2rem;
    background: var(--primary);
    color: white;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    align-items: center;
}

.bible-selector {
    flex: 1;
    min-width: 200px;
}

.bible-navigator {
    display: flex;
    gap: 1rem;
    flex: 2;
}

.bible-select {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.bible-select:hover,
.bible-select:focus {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.5);
}

.bible-select option {
    background: white;
    color: var(--text-primary);
}

.bible-actions {
    display: flex;
    gap: 0.5rem;
}

.bible-btn {
    width: 40px;
    height: 40px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

.bible-btn:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: scale(1.05);
}

.bible-text {
    padding: 3rem;
}

.bible-heading {
    font-size: 2rem;
    margin-bottom: 2rem;
    color: var(--primary);
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--border);
}

.bible-verses {
    margin-bottom: 2rem;
}

.verse {
    margin-bottom: 1.5rem;
    padding-left: 3rem;
    position: relative;
    line-height: 1.8;
}

.verse-number {
    position: absolute;
    left: 0;
    top: 0;
    font-weight: 700;
    color: var(--primary);
    font-size: 0.85rem;
}

.verse-text {
    font-size: 1.1rem;
    color: var(--text-primary);
}

.verse-text.highlighted {
    background: linear-gradient(to right, rgba(193, 154, 107, 0.2), transparent);
    padding: 0.5rem;
    border-left: 4px solid var(--accent);
    display: inline-block;
    width: 100%;
}

.bible-navigation {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border);
}

.nav-btn {
    flex: 1;
    padding: 1rem 2rem;
    background: var(--background);
    border: 2px solid var(--border);
    font-family: var(--font-body);
    font-weight: 600;
    color: var(--text-primary);
    cursor: pointer;
    transition: var(--transition);
}

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

/* Study Resources */
.study-resources {
    padding: var(--spacing-xl) 0;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.resource-card {
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.resource-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.resource-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.resource-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.resource-card p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.resource-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

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

/* Verse of the Day */
.verse-of-day {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: var(--spacing-xl) 0;
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.verse-of-day::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(193, 154, 107, 0.2) 0%, transparent 50%);
}

.verse-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.verse-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--accent);
    margin-bottom: 2rem;
}

.verse-quote {
    font-family: var(--font-display);
    font-size: 2rem;
    line-height: 1.6;
    margin-bottom: 2rem;
    font-style: italic;
    font-weight: 400;
}

.verse-reference {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    font-style: normal;
}

/* Study Groups */
.study-groups {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.section-description {
    text-align: center;
    max-width: 600px;
    margin: 1rem auto 3rem;
    color: var(--text-secondary);
    font-size: 1.1rem;
}

.groups-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.group-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.group-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.group-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.group-info {
    text-align: left;
    margin-bottom: 2rem;
}

.group-info p {
    margin-bottom: 0.75rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.group-info strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .page-title {
        font-size: 2.5rem;
    }
    
    .songs-controls {
        flex-direction: column;
        align-items: stretch;
    }
    
    .filter-controls {
        flex-direction: column;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .bible-controls {
        flex-direction: column;
    }
    
    .bible-navigator {
        flex-direction: column;
    }
    
    .verse-quote {
        font-size: 1.5rem;
    }
}

/* Contact Page */
.contact-section {
    padding: var(--spacing-xl) 0;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.info-blocks {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-bottom: 3rem;
}

.info-block {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
}

.info-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.info-block h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.info-block p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.info-block a {
    color: var(--primary);
    text-decoration: none;
}

.info-block a:hover {
    text-decoration: underline;
}

.social-connect {
    padding: 2rem;
    background: var(--background);
    border: 1px solid var(--border);
}

.social-connect h3 {
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.social-links-large {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.social-btn {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    background: white;
    color: var(--text-primary);
    text-align: center;
    font-weight: 600;
    transition: var(--transition);
    display: block;
}

.social-btn:hover {
    border-color: var(--primary);
    background: var(--primary);
    color: white;
    transform: translateX(5px);
}

.contact-form-wrapper {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.contact-form-wrapper h2 {
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-checkbox {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.form-checkbox input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-checkbox label {
    font-size: 0.95rem;
    color: var(--text-secondary);
    cursor: pointer;
}

.map-section {
    position: relative;
    margin-top: var(--spacing-xl);
}

.map-container {
    position: relative;
    height: 450px;
}

.map-overlay {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: white;
    padding: 2rem;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.2);
    max-width: 300px;
}

.map-info h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
}

.map-info p {
    margin-bottom: 1.5rem;
    color: var(--text-secondary);
}

.prayer-request-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: var(--spacing-lg) 0;
    text-align: center;
    color: white;
}

.prayer-content h2 {
    color: white;
    font-size: 2rem;
    margin-bottom: 1rem;
}

.prayer-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Events Page */
.events-calendar-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

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

.calendar-nav {
    display: flex;
    gap: 0.5rem;
}

.cal-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.featured-event {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 3rem;
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    margin-bottom: 3rem;
}

.featured-badge {
    display: inline-block;
    background: var(--accent);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
}

.featured-event-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.featured-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.featured-meta span {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.featured-event-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.featured-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.featured-event-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--border);
}

.image-placeholder {
    font-size: 8rem;
}

.events-list-section {
    padding: var(--spacing-xl) 0;
}

.events-filter {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
    justify-content: center;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: white;
    border: 2px solid var(--border);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

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

.events-timeline::before {
    content: '';
    position: absolute;
    left: 100px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-event {
    display: flex;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.event-date-box {
    flex-shrink: 0;
    width: 80px;
    text-align: center;
    background: white;
    border: 2px solid var(--primary);
    padding: 1rem 0.5rem;
    position: relative;
    z-index: 2;
}

.date-month {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    text-transform: uppercase;
}

.date-day {
    font-size: 2rem;
    font-weight: 700;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.date-year {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.event-content {
    flex: 1;
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.event-content:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.event-badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1rem;
    border-radius: 1rem;
}

.event-badge.worship { background: #E3F2FD; color: #1976D2; }
.event-badge.fellowship { background: #F3E5F5; color: #7B1FA2; }
.event-badge.youth { background: #FFF3E0; color: #F57C00; }
.event-badge.outreach { background: #E8F5E9; color: #388E3C; }
.event-badge.special { background: #FCE4EC; color: #C2185B; }

.event-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.event-meta span {
    font-size: 0.9rem;
    color: var(--text-secondary);
}

.event-content p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1rem;
}

.event-link {
    color: var(--primary);
    font-weight: 600;
    transition: var(--transition);
}

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

.weekly-events {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.weekly-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.weekly-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
}

.weekly-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid var(--primary);
}

.weekly-item {
    display: flex;
    justify-content: space-between;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border);
}

.weekly-item:last-child {
    border-bottom: none;
}

.weekly-time {
    font-weight: 600;
    color: var(--primary);
}

.weekly-name {
    color: var(--text-secondary);
}

/* About Page Styles */
.mission-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.mission-card {
    background: white;
    padding: 3rem 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--primary);
    transform: scaleX(0);
    transition: var(--transition);
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.mission-card:hover::before {
    transform: scaleX(1);
}

.mission-icon {
    font-size: 4rem;
    margin-bottom: 2rem;
    display: block;
}

.mission-card h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.mission-card p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.story-section {
    padding: var(--spacing-xl) 0;
}

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

.story-text {
    margin-top: 2rem;
}

.story-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.values-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.value-card {
    background: white;
    padding: 2.5rem 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.value-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 1rem;
    opacity: 0.7;
}

.value-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.leadership-section {
    padding: var(--spacing-xl) 0;
}

.leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.leader-card {
    background: white;
    padding: 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.leader-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.leader-photo {
    width: 120px;
    height: 120px;
    margin: 0 auto 1.5rem;
    border-radius: 50%;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    border: 3px solid var(--border);
}

.photo-placeholder {
    font-size: 3rem;
    color: var(--text-muted);
}

.leader-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.leader-title {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.leader-bio {
    color: var(--text-secondary);
    line-height: 1.7;
    font-size: 0.95rem;
}

.cta-section {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 50%, rgba(193, 154, 107, 0.2) 0%, transparent 50%);
}

.cta-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Ministries Page Styles */
.ministries-intro {
    padding: var(--spacing-xl) 0;
    text-align: center;
}

.intro-content {
    max-width: 700px;
    margin: 0 auto;
}

.intro-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.ministry-detail {
    padding: var(--spacing-xl) 0;
}

.ministry-detail.alt {
    background: var(--background);
}

.ministry-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.ministry-image {
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--background);
    border: 1px solid var(--border);
    height: 400px;
    position: relative;
}

.ministry-detail.alt .ministry-image {
    background: white;
}

.image-placeholder {
    font-size: 8rem;
    color: var(--text-muted);
}

.ministry-label {
    display: inline-block;
    font-size: 0.875rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    margin-bottom: 1rem;
    padding: 0.5rem 1rem;
    background: rgba(139, 111, 71, 0.1);
}

.ministry-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.ministry-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.ministry-features {
    margin-bottom: 2.5rem;
}

.feature-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    align-items: flex-start;
}

.feature-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.25rem;
}

.feature-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.feature-item p {
    color: var(--text-secondary);
    line-height: 1.6;
}

.ministry-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.ministries-cta {
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    padding: var(--spacing-xl) 0;
    text-align: center;
    color: white;
}

.ministries-cta .cta-content h2 {
    color: white;
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.ministries-cta .cta-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

/* Sermons Page Styles */
.watch-live-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 3rem 0;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.watch-live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.live-content {
    position: relative;
    z-index: 1;
    max-width: 600px;
    margin: 0 auto;
}

.live-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.live-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: white;
}

.live-content p {
    font-size: 1.2rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.sermons-section {
    padding: var(--spacing-xl) 0;
}

.sermons-controls {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.sermons-controls .search-input {
    flex: 1;
    min-width: 300px;
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    font-size: 1rem;
    font-family: var(--font-body);
    outline: none;
    transition: var(--transition);
}

.sermons-controls .search-input:focus {
    border-color: var(--primary);
}

.sermons-controls .filter-select {
    padding: 1rem 1.5rem;
    border: 2px solid var(--border);
    background: white;
    font-family: var(--font-body);
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.sermons-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.sermon-card {
    background: white;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.sermon-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.sermon-thumbnail {
    position: relative;
    height: 200px;
    background: var(--background);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: var(--text-muted);
}

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

.play-overlay:hover {
    background: var(--primary);
    transform: translate(-50%, -50%) scale(1.1);
}

.sermon-duration {
    position: absolute;
    bottom: 1rem;
    right: 1rem;
    background: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.85rem;
    font-weight: 600;
}

.sermon-content {
    padding: 2rem;
}

.sermon-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.sermon-title {
    font-size: 1.4rem;
    margin: 0.5rem 0 1rem;
    color: var(--text-primary);
}

.sermon-speaker {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 1rem;
}

.sermon-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.sermon-actions {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.sermon-btn {
    padding: 0.5rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 0.85rem;
    font-weight: 600;
    transition: var(--transition);
    cursor: pointer;
    text-decoration: none;
}

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

.pagination {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-top: 3rem;
}

.page-btn {
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.sermon-series {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.series-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.series-card {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
}

.series-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.series-image {
    height: 150px;
    background: var(--background);
    border: 1px solid var(--border);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.series-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--primary);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: 600;
}

.series-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.series-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

@media (max-width: 968px) {
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-event {
        grid-template-columns: 1fr;
    }
    
    .events-timeline::before {
        left: 40px;
    }
    
    .timeline-event {
        flex-direction: column;
        padding-left: 100px;
    }
    
    .event-date-box {
        position: absolute;
        left: 0;
        top: 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
    }
    
    .ministry-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .ministry-detail.alt .ministry-grid {
        grid-template-columns: 1fr;
    }
    
    .ministry-detail.alt .ministry-content {
        order: 1;
    }
    
    .ministry-detail.alt .ministry-image {
        order: 2;
    }
    
    .sermons-controls {
        flex-direction: column;
    }
    
    .sermons-controls .search-input {
        min-width: auto;
    }
}

/* Connect Page Styles */
.connect-form-section {
    padding: var(--spacing-xl) 0;
}

.connect-intro {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.connect-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.connect-intro p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.connect-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.connect-card-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

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

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.checkbox-group {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    cursor: pointer;
    padding: 0.5rem;
    transition: var(--transition);
}

.checkbox-label:hover {
    background: var(--background);
}

.checkbox-label input[type="checkbox"],
.checkbox-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.next-steps-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.step-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
}

.step-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.step-number {
    width: 60px;
    height: 60px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 1.5rem;
    font-family: var(--font-display);
}

.step-card h3 {
    font-size: 1.4rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.step-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.visit-info-section {
    padding: var(--spacing-xl) 0;
}

.visit-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    align-items: start;
}

.visit-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.visit-intro {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

.visit-details {
    margin-bottom: 2.5rem;
}

.detail-item {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid var(--border);
}

.detail-item:last-child {
    border-bottom: none;
}

.detail-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    color: var(--primary);
}

.detail-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.visit-sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.info-box {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
}

.info-box.highlighted {
    background: var(--background);
    border-color: var(--primary);
}

.info-box h3 {
    font-size: 1.3rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.contact-details p {
    margin-bottom: 1.5rem;
    line-height: 1.6;
}

.contact-details strong {
    color: var(--text-primary);
    display: block;
    margin-bottom: 0.25rem;
}

.contact-details a {
    color: var(--primary);
    text-decoration: none;
}

.contact-details a:hover {
    text-decoration: underline;
}

.schedule-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.schedule-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.schedule-item:last-child {
    border-bottom: none;
}

.schedule-item strong {
    color: var(--text-primary);
}

.schedule-item span {
    color: var(--primary);
    font-weight: 600;
}

/* Give Page Styles */
.why-give-section {
    padding: var(--spacing-lg) 0;
}

.why-give-content {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.why-give-content h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.lead-text {
    font-size: 1.3rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.why-give-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

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

.impact-card {
    background: white;
    padding: 2rem 1.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.impact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.impact-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.impact-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.impact-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.give-online-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.give-header {
    text-align: center;
    margin-bottom: 4rem;
}

.give-header h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.give-header p {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

.giving-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.giving-option {
    background: white;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
    position: relative;
}

.giving-option.featured {
    border-color: var(--primary);
    transform: scale(1.02);
}

.featured-badge {
    position: absolute;
    top: 0;
    right: 0;
    background: var(--primary);
    color: white;
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 600;
    z-index: 1;
}

.option-header {
    padding: 2rem 2rem 1rem;
    text-align: center;
    background: var(--background);
}

.giving-option.featured .option-header {
    background: rgba(139, 111, 71, 0.05);
}

.option-header h3 {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.option-header p {
    color: var(--text-secondary);
}

.giving-form {
    padding: 2rem;
}

.amount-selection {
    display: flex;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.amount-btn {
    flex: 1;
    min-width: 60px;
    padding: 0.75rem 1rem;
    background: white;
    border: 2px solid var(--border);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

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

.amount-input-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.currency-symbol {
    position: absolute;
    left: 1rem;
    color: var(--text-muted);
    font-weight: 600;
    z-index: 1;
}

.amount-input-wrapper input {
    padding-left: 2.5rem;
}

.btn-block {
    width: 100%;
}

.payment-info {
    text-align: center;
    padding: 2rem;
    background: white;
    border: 1px solid var(--border);
    margin-top: 2rem;
}

.payment-info p {
    margin-bottom: 1rem;
    color: var(--text-secondary);
}

.payment-icons {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-weight: 600;
}

.other-ways-section {
    padding: var(--spacing-xl) 0;
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.method-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.method-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.method-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.method-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.method-card p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.method-hours {
    font-size: 0.95rem;
    color: var(--text-muted);
}

.mail-address {
    background: var(--background);
    padding: 1rem;
    border-left: 4px solid var(--primary);
    font-style: normal;
    line-height: 1.6;
    color: var(--text-primary);
}

.method-link {
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
}

.method-link:hover {
    color: var(--primary-dark);
    text-decoration: underline;
}

.app-buttons {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.app-btn {
    padding: 0.5rem 1rem;
    background: var(--background);
    border: 1px solid var(--border);
    font-size: 0.85rem;
    font-weight: 600;
}

.tax-info-section {
    padding: var(--spacing-lg) 0;
    background: var(--background);
}

.tax-info-section .info-box {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.tax-info-section .info-box h3 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--primary);
}

.tax-info-section .info-box p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.faq-section {
    padding: var(--spacing-xl) 0;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.faq-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.faq-item p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.giving-testimonial {
    padding: var(--spacing-xl) 0;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: white;
    text-align: center;
}

.giving-testimonial1 {
    padding: var(--spacing-xl) 0;
    background: #234e48;
    color: white;
    text-align: center;
}

.testimonial-content {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}

.quote-icon {
    font-size: 4rem;
    color: var(--accent);
    margin-bottom: 1rem;
    font-family: var(--font-display);
}

.testimonial-content blockquote {
    font-size: 1.3rem;
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.95);
}

.testimonial-content cite {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    font-style: normal;
}

/* Additional responsive styles */
@media (max-width: 768px) {
    .visit-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .giving-options {
        grid-template-columns: 1fr;
    }
    
    .giving-option.featured {
        transform: none;
    }
    
    .amount-selection {
        grid-template-columns: repeat(3, 1fr);
        display: grid;
    }
    
    .checkbox-group {
        grid-template-columns: 1fr;
    }
    
    .connect-card-wrapper {
        padding: 2rem 1.5rem;
    }
}

/* Legal Pages Styles (Privacy & Terms) */
.legal-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.legal-content {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    padding: 4rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    line-height: 1.8;
}

.last-updated {
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 0.5rem;
}

.policy-intro,
.terms-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--background);
    border-left: 4px solid var(--primary);
}

.policy-section,
.terms-section {
    margin-bottom: 3rem;
    padding-bottom: 2rem;
    border-bottom: 1px solid var(--border);
}

.policy-section:last-of-type,
.terms-section:last-of-type {
    border-bottom: none;
    margin-bottom: 2rem;
}

.policy-section h2,
.terms-section h2 {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.policy-section h3,
.terms-section h3 {
    font-size: 1.3rem;
    color: var(--text-primary);
    margin: 2rem 0 1rem;
    font-weight: 600;
}

.policy-section p,
.terms-section p {
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-size: 1rem;
}

.policy-section ul,
.terms-section ul {
    margin: 1.5rem 0;
    padding-left: 2rem;
}

.policy-section li,
.terms-section li {
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.7;
}

.policy-section li strong,
.terms-section li strong {
    color: var(--text-primary);
    font-weight: 600;
}

.contact-info {
    background: var(--background);
    padding: 2rem;
    border: 1px solid var(--border);
    margin: 2rem 0;
}

.contact-info p {
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

.contact-info a {
    color: var(--primary);
    text-decoration: none;
    font-weight: 600;
}

.contact-info a:hover {
    text-decoration: underline;
}

.policy-footer,
.terms-footer {
    margin-top: 3rem;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(139, 111, 71, 0.05), rgba(74, 110, 124, 0.05));
    border: 1px solid var(--border);
    text-align: center;
}

.policy-footer p,
.terms-footer p {
    color: var(--text-secondary);
    font-style: italic;
    margin-bottom: 0;
    font-size: 1.05rem;
}

/* Beliefs Page Styles */
.beliefs-section {
    padding: var(--spacing-xl) 0;
}

.beliefs-intro {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.beliefs-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.beliefs-intro .section-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.belief-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--border);
    text-align: center;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.belief-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.belief-card:hover::before {
    transform: scaleX(1);
}

.belief-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.belief-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.belief-text {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 2rem;
    font-size: 1rem;
}

.belief-verse {
    padding: 1.5rem;
    background: var(--background);
    border-left: 4px solid var(--primary);
    font-style: italic;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.beliefs-footer {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: white;
    margin-top: 2rem;
}

.beliefs-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.beliefs-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Media Page Styles */
.media-section {
    padding: var(--spacing-xl) 0;
}

.media-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.media-category-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.media-category-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.media-category-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.media-category-card:hover::before {
    transform: scaleX(1);
}

.media-icon {
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    display: block;
}

.media-title {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.media-description {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.media-stats {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.stat {
    font-size: 0.85rem;
    padding: 0.4rem 0.8rem;
    background: var(--background);
    border-radius: 1rem;
    color: var(--text-secondary);
    font-weight: 500;
}

.featured-media {
    margin-bottom: 4rem;
}

.featured-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.featured-item {
    display: flex;
    gap: 1.5rem;
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.featured-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.featured-thumbnail {
    flex-shrink: 0;
    width: 120px;
    height: 80px;
    background: var(--background);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.play-overlay,
.music-overlay {
    font-size: 1.5rem;
    color: var(--primary);
}

.featured-content {
    flex: 1;
}

.featured-type {
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.featured-title {
    font-size: 1.3rem;
    margin: 0.5rem 0;
    color: var(--text-primary);
}

.featured-meta {
    font-size: 0.9rem;
    color: var(--text-muted);
    margin-bottom: 0.75rem;
}

.featured-description {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.live-streaming {
    margin-bottom: 4rem;
}

.live-banner {
    background: linear-gradient(135deg, #dc2626 0%, #b91c1c 100%);
    padding: 3rem;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.live-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
}

.live-content {
    position: relative;
    z-index: 1;
}

.live-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 1rem;
}

.live-dot {
    width: 12px;
    height: 12px;
    background: white;
    border-radius: 50%;
    animation: pulse 2s infinite;
}

.live-text {
    font-weight: 700;
    font-size: 0.9rem;
    letter-spacing: 2px;
}

.live-content h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.live-content p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.live-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-live {
    background: white;
    color: #dc2626;
    border: 2px solid white;
}

.btn-live:hover {
    background: transparent;
    color: white;
}

.media-guidelines {
    background: var(--background);
    padding: 3rem;
    border: 1px solid var(--border);
}

.media-guidelines h3 {
    text-align: center;
    font-size: 1.8rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

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

.guideline-item {
    text-align: center;
}

.guideline-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.guideline-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

/* Visit Page Styles */
.visit-section {
    padding: var(--spacing-xl) 0;
}

.visit-welcome {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.visit-welcome h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.welcome-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

.visit-info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.visit-info-card {
    background: white;
    padding: 2.5rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.visit-info-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
    border-color: var(--primary);
}

.info-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.info-title {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.service-times {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.service-time {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
}

.service-time:last-child {
    border-bottom: none;
}

.service-time strong {
    color: var(--text-primary);
}

.service-time span {
    color: var(--primary);
    font-weight: 600;
}

.location-info {
    text-align: center;
}

.address {
    font-size: 1.1rem;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
}

.location-actions {
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.parking-info p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.parking-features {
    list-style: none;
    padding: 0;
}

.parking-features li {
    color: var(--text-secondary);
    margin-bottom: 0.5rem;
    font-size: 0.95rem;
}

.what-to-expect {
    margin-bottom: 4rem;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.expect-item {
    text-align: center;
    padding: 2rem 1rem;
}

.expect-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.expect-item h4 {
    font-size: 1.2rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.expect-item p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: 0.95rem;
}

.first-visit-form {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.form-description {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 2rem;
    font-size: 1.05rem;
    line-height: 1.7;
}

.visit-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.visit-faq {
    margin-bottom: 4rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.faq-item {
    background: white;
    padding: 2rem;
    border: 1px solid var(--border);
    transition: var(--transition);
}

.faq-item:hover {
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.05);
    border-color: var(--primary);
}

.faq-question {
    font-size: 1.1rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
    font-weight: 600;
}

.faq-answer {
    color: var(--text-secondary);
    line-height: 1.7;
}

.visit-cta {
    text-align: center;
    padding: 3rem 2rem;
    background: linear-gradient(135deg, var(--primary-dark) 0%, var(--secondary) 100%);
    color: white;
}

.visit-cta h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: white;
}

.visit-cta p {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

@media (max-width: 768px) {
    .legal-content {
        padding: 2rem 1.5rem;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .media-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-grid {
        grid-template-columns: 1fr;
    }
    
    .featured-item {
        flex-direction: column;
        text-align: center;
    }
    
    .visit-info-grid {
        grid-template-columns: 1fr;
    }
    
    .expect-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    }
    
    .first-visit-form {
        padding: 2rem 1.5rem;
    }
    
    .subscription-form-wrapper {
        padding: 2rem 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
}

/* Subscribe Page Styles */
.subscribe-section {
    padding: var(--spacing-xl) 0;
    background: var(--background);
}

.subscribe-content {
    max-width: 1000px;
    margin: 0 auto;
}

.subscribe-intro {
    text-align: center;
    margin-bottom: 4rem;
}

.subscribe-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
}

.intro-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.subscription-form-wrapper {
    background: white;
    padding: 3rem;
    border: 1px solid var(--border);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 4rem;
}

.subscription-form {
    display: flex;
    flex-direction: column;
    gap: 3rem;
}

.form-section {
    border-bottom: 1px solid var(--border);
    padding-bottom: 2rem;
}

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

.form-section-title {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    color: var(--primary);
    padding-bottom: 0.5rem;
    border-bottom: 2px solid var(--accent);
    display: inline-block;
}

.checkbox-group {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    cursor: pointer;
    padding: 1.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
    background: var(--background);
}

.checkbox-label:hover {
    border-color: var(--primary);
    background: white;
}

.checkbox-label input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin-top: 2px;
    cursor: pointer;
    flex-shrink: 0;
}

.checkbox-content {
    flex: 1;
}

.checkbox-content strong {
    display: block;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    font-size: 1.05rem;
}

.checkbox-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 0;
}

.radio-group {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.radio-label {
    display: flex;
    align-items: center;
    gap: 1rem;
    cursor: pointer;
    padding: 1rem 1.5rem;
    border: 1px solid var(--border);
    border-radius: 4px;
    transition: var(--transition);
    background: var(--background);
}

.radio-label:hover {
    border-color: var(--primary);
    background: white;
}

.radio-label input[type="radio"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    flex-shrink: 0;
}

.privacy-agreement {
    background: var(--surface);
    padding: 2rem;
    border-radius: 4px;
    border-left: 4px solid var(--accent);
}

.privacy-agreement .checkbox-label {
    background: transparent;
    border: none;
    padding: 0;
}

.privacy-agreement .checkbox-content p {
    font-size: 0.95rem;
    line-height: 1.7;
}

.privacy-agreement a {
    color: var(--primary);
    text-decoration: underline;
}

.privacy-agreement a:hover {
    color: var(--primary-dark);
}

.form-actions {
    text-align: center;
    padding-top: 2rem;
}

.btn-large {
    padding: 1.25rem 3rem;
    font-size: 1.1rem;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.9rem;
    color: var(--text-muted);
    font-style: italic;
}

.subscription-benefits {
    text-align: center;
}

.subscription-benefits h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    color: var(--text-primary);
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.benefit-card {
    background: white;
    padding: 2.5rem 2rem;
    text-align: center;
    border: 1px solid var(--border);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(to right, var(--primary), var(--accent));
    transform: scaleX(0);
    transition: var(--transition);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.1);
}

.benefit-card:hover::before {
    transform: scaleX(1);
}

.benefit-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
    display: block;
}

.benefit-card h3 {
    font-size: 1.3rem;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.benefit-card p {
    color: var(--text-secondary);
    line-height: 1.7;
}
/* Giving Destinations Styles */
.giving-destinations-section {
    padding: var(--spacing-lg) 0;
    background: var(--background);
}

.destination-row {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 3rem;
    align-items: center;
    margin-bottom: 4rem;
    background: white;
    border: 1px solid var(--border);
    overflow: hidden;
    transition: var(--transition);
}

.destination-row:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transform: translateY(-3px);
}

.destination-row:nth-child(even) {
    grid-template-columns: 1.5fr 1fr;
}

.destination-row:nth-child(even) .destination-image {
    order: 2;
}

.destination-row:nth-child(even) .destination-content {
    order: 1;
}

.destination-image {
    height: 300px;
    overflow: hidden;
}

.destination-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.destination-row:hover .destination-image img {
    transform: scale(1.05);
}

.destination-content {
    padding: 3rem;
}

.destination-content h3 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--text-primary);
    font-family: var(--font-display);
}

.destination-content p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

.destination-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (max-width: 968px) {
    .destination-row,
    .destination-row:nth-child(even) {
        grid-template-columns: 1fr;
    }
    
    .destination-row:nth-child(even) .destination-image,
    .destination-row:nth-child(even) .destination-content {
        order: initial;
    }
    
    .destination-content {
        padding: 2rem;
    }
    
    .destination-actions {
        flex-direction: column;
    }
}
/* Give Online Page Styles */
.give-online-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.give-intro {
    margin-bottom: 4rem;
}

.give-intro h2 {
    font-size: 2.5rem;
    margin-bottom: 2rem;
    color: var(--text-primary);
}

.tithely-container {
    margin: 4rem 0;
    display: flex;
    justify-content: center;
}

.giving-info {
    margin-top: 4rem;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 2rem;
}

.info-item {
    padding: 2rem 1rem;
}

.info-icon {
    font-size: 2.5rem;
    margin-bottom: 1rem;
    display: block;
}

.info-item h3 {
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
    color: var(--text-primary);
}

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

.back-section {
    padding: var(--spacing-lg) 0;
    background: var(--background);
}

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

.back-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 2rem;
}

@media (max-width: 768px) {
    .info-grid {
        grid-template-columns: 1fr;
    }
    
    .tithely-give-button {
        font-size: 16px !important;
        padding: 12px 50px !important;
    }
}
/* Security Info Section */
.security-info-section {
    padding: var(--spacing-md) 0;
    background: white;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
}

.security-grid {
    display: flex;
    justify-content: center;
    gap: 3rem;
    max-width: 600px;
    margin: 0 auto;
}

.security-item {
    text-align: center;
    flex: 1;
}

.security-icon {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    display: block;
    color: var(--primary);
}

.security-item h3 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--text-primary);
    font-weight: 600;
}

.security-item p {
    color: var(--text-secondary);
    font-size: 0.85rem;
    line-height: 1.4;
}

@media (max-width: 768px) {
    .security-grid {
        gap: 1.5rem;
    }
    
    .security-item h3 {
        font-size: 0.9rem;
    }
    
    .security-item p {
        font-size: 0.8rem;
    }
}

/* Weekly Calendar Styles */
.calendar-container {
    background: white;
    border: 1px solid var(--border);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    min-height: 400px;
}

.calendar-header-row {
    display: contents;
}

.calendar-day-header {
    background: var(--primary);
    color: white;
    padding: 1rem;
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    border-right: 1px solid rgba(255, 255, 255, 0.2);
}

.calendar-day-header:last-child {
    border-right: none;
}

.calendar-day {
    border-right: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0.75rem;
    background: white;
    transition: var(--transition);
    min-height: 200px;
    display: flex;
    flex-direction: column;
}

.calendar-day:last-child {
    border-right: none;
}

.calendar-day:hover {
    background: var(--background);
}

.day-number {
    font-weight: 700;
    color: var(--primary);
    margin-bottom: 0.75rem;
    font-size: 1.1rem;
    text-align: center;
    padding-bottom: 0.5rem;
    border-bottom: 1px solid var(--border);
}

.day-events {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.calendar-event {
    background: var(--surface);
    padding: 0.5rem;
    border-radius: 4px;
    border-left: 3px solid var(--primary);
    transition: var(--transition);
    cursor: pointer;
}

.calendar-event:hover {
    background: var(--primary);
    color: white;
    transform: translateX(2px);
}

.calendar-event.morning {
    border-left-color: #f59e0b;
    background: rgba(245, 158, 11, 0.1);
}

.calendar-event.afternoon {
    border-left-color: #3b82f6;
    background: rgba(59, 130, 246, 0.1);
}

.calendar-event.evening {
    border-left-color: #8b5cf6;
    background: rgba(139, 92, 246, 0.1);
}

.calendar-event.morning:hover {
    background: #f59e0b;
}

.calendar-event.afternoon:hover {
    background: #3b82f6;
}

.calendar-event.evening:hover {
    background: #8b5cf6;
}

.event-time {
    font-size: 0.75rem;
    font-weight: 600;
    display: block;
    margin-bottom: 0.25rem;
    opacity: 0.8;
}

.event-name {
    font-size: 0.85rem;
    font-weight: 500;
    line-height: 1.3;
}

.calendar-event-placeholder {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-style: italic;
    text-align: center;
    padding: 1rem 0;
}

@media (max-width: 968px) {
    .calendar-grid {
        grid-template-columns: 1fr;
        min-height: auto;
    }
    
    .calendar-day-header {
        display: none;
    }
    
    .calendar-day {
        border-right: none;
        border-bottom: 1px solid var(--border);
        min-height: auto;
        padding: 1.5rem;
    }
    
    .day-number {
        font-size: 1.3rem;
        text-align: left;
        margin-bottom: 1rem;
    }
    
    .calendar-event {
        padding: 0.75rem;
    }
    
    .event-time {
        font-size: 0.85rem;
    }
    
    .event-name {
        font-size: 0.95rem;
    }
}

/* Bible Reader Enhancements */
.bible-controls {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    padding: 2rem;
    color: white;
    border-radius: 12px 12px 0 0;
}

.controls-row {
    display: flex;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
    align-items: end;
    flex-wrap: wrap;
}

.controls-row:last-child {
    margin-bottom: 0;
}

.bible-selector,
.nav-group {
    flex: 1;
    min-width: 200px;
}

.bible-selector label,
.nav-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.bible-navigator {
    display: flex;
    gap: 1rem;
    flex: 2;
}

.bible-select,
.search-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 2px solid rgba(255, 255, 255, 0.2);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    transition: var(--transition);
    outline: none;
}

.bible-select:focus,
.search-input:focus {
    border-color: var(--accent);
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 0 3px rgba(157, 200, 249, 0.3);
}

.bible-select option {
    background: var(--secondary);
    color: white;
    padding: 0.5rem;
}

.bible-search {
    display: flex;
    gap: 0;
    flex: 1;
    min-width: 250px;
}

.search-input {
    border-radius: 8px 0 0 8px;
    border-right: none;
}

.search-btn {
    padding: 0.875rem 1.25rem;
    background: var(--accent);
    border: 2px solid var(--accent);
    color: var(--secondary);
    border-radius: 0 8px 8px 0;
    cursor: pointer;
    transition: var(--transition);
    font-size: 1.1rem;
}

.search-btn:hover {
    background: white;
    transform: scale(1.05);
}

.bible-actions {
    display: flex;
    gap: 0.5rem;
}

.action-btn {
    width: 44px;
    height: 44px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    background: rgba(255, 255, 255, 0.1);
    color: white;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 0.9rem;
}

.action-btn:hover {
    background: var(--accent);
    color: var(--secondary);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

/* Bible Content Styling */
.bible-content {
    background: white;
    border-radius: 0 0 12px 12px;
    overflow: hidden;
}

.chapter-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 2rem 2rem 1rem;
    background: linear-gradient(135deg, var(--surface) 0%, white 100%);
    border-bottom: 1px solid var(--border);
}

.bible-heading {
    font-size: 2rem;
    color: var(--text-primary);
    margin: 0;
    font-weight: 700;
}

.chapter-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.verse-count {
    font-size: 0.85rem;
    color: var(--text-muted);
    background: var(--background);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-weight: 500;
}

.bookmark-btn {
    width: 36px;
    height: 36px;
    border: none;
    background: transparent;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 50%;
}

.bookmark-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.bible-verses {
    padding: 2rem;
}

.verse {
    display: flex;
    gap: 1rem;
    margin-bottom: 1.5rem;
    padding: 1rem;
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
    position: relative;
}

.verse:hover {
    background: var(--background);
    transform: translateX(5px);
}

.verse.featured {
    background: linear-gradient(135deg, rgba(245, 116, 80, 0.1) 0%, rgba(157, 200, 249, 0.1) 100%);
    border-left: 4px solid var(--primary);
}

.verse-number {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    background: var(--primary);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    margin-top: 0.2rem;
}

.verse.featured .verse-number {
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    box-shadow: 0 4px 12px rgba(245, 116, 80, 0.3);
}

.verse-text {
    flex: 1;
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--text-primary);
}

.verse-badge {
    position: absolute;
    top: -8px;
    right: 1rem;
    background: var(--accent);
    color: var(--secondary);
    padding: 0.3rem 0.8rem;
    border-radius: 12px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Search Results */
.search-results {
    background: white;
    border-radius: 0 0 12px 12px;
    max-height: 400px;
    overflow-y: auto;
}

.search-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--background);
    border-bottom: 1px solid var(--border);
}

.search-header h3 {
    margin: 0;
    color: var(--text-primary);
}

.close-search {
    width: 32px;
    height: 32px;
    border: none;
    background: var(--text-muted);
    color: white;
    border-radius: 50%;
    cursor: pointer;
    font-size: 1.2rem;
    transition: var(--transition);
}

.close-search:hover {
    background: var(--primary);
    transform: scale(1.1);
}

.search-results-list {
    padding: 1rem 2rem 2rem;
}

/* Navigation */
.bible-navigation {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 2rem;
    background: var(--background);
    border-top: 1px solid var(--border);
    border-radius: 0 0 12px 12px;
}

.nav-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.5rem;
    background: var(--primary);
    color: white;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    transition: var(--transition);
    font-weight: 600;
    font-size: 0.95rem;
}

.nav-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(245, 116, 80, 0.3);
}

.nav-btn:disabled {
    background: var(--text-muted);
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.nav-icon {
    font-size: 1.1rem;
}

.chapter-selector {
    text-align: center;
}

.current-chapter {
    font-weight: 600;
    color: var(--text-primary);
    font-size: 1.1rem;
}

/* Mobile Responsive */
@media (max-width: 968px) {
    .bible-controls {
        padding: 1.5rem;
    }
    
    .controls-row {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bible-navigator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bible-search {
        min-width: auto;
    }
    
    .bible-actions {
        justify-content: center;
    }
    
    .chapter-header {
        flex-direction: column;
        gap: 1rem;
        text-align: center;
        padding: 1.5rem;
    }
    
    .bible-heading {
        font-size: 1.5rem;
    }
    
    .bible-verses {
        padding: 1rem;
    }
    
    .verse {
        flex-direction: column;
        gap: 0.75rem;
        padding: 1rem 0.75rem;
    }
    
    .verse-number {
        align-self: flex-start;
    }
    
    .bible-navigation {
        flex-direction: column;
        gap: 1rem;
        padding: 1rem;
    }
    
    .nav-btn {
        width: 100%;
        justify-content: center;
    }
}

.loading-spinner {
    text-align: center;
    padding: 3rem;
}

.spinner {
    width: 40px;
    height: 40px;
    border: 4px solid var(--border);
    border-top: 4px solid var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin: 0 auto 1rem;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.search-result {
    padding: 1rem;
    border-bottom: 1px solid var(--border);
    cursor: pointer;
    transition: var(--transition);
}

.search-result:hover {
    background: var(--background);
}

.search-reference {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.search-text {
    line-height: 1.6;
}

.search-text mark {
    background: var(--accent);
    color: var(--text-primary);
    padding: 0.1rem 0.2rem;
    border-radius: 2px;
}

.search-message {
    text-align: center;
    padding: 2rem;
    color: var(--text-muted);
    font-style: italic;
}

.error-message {
    text-align: center;
    padding: 3rem;
    color: var(--text-secondary);
}

.error-message h3 {
    color: #dc2626;
    margin-bottom: 1rem;
}

.verse.highlighted {
    background: rgba(245, 116, 80, 0.1);
    border-left: 4px solid var(--primary);
    padding: 0.5rem;
    margin: 0.5rem 0;
    border-radius: 4px;
}

@media (max-width: 968px) {
    .bible-controls {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bible-navigator {
        flex-direction: column;
        gap: 1rem;
    }
    
    .bible-search {
        max-width: none;
    }
    
    .bible-actions {
        justify-content: center;
    }
}
/* Give Page Button Styles */
.give-btn {
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    margin-right: 12px;
}

.give-btn-primary {
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.3);
}

.give-btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(35, 78, 72, 0.4);
    background: linear-gradient(135deg, #2d6259 0%, #234e48 100%);
}

.give-btn-secondary {
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    border: none;
    padding: 14px 28px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.3);
}

.give-btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(245, 116, 80, 0.4);
    background: linear-gradient(135deg, #e85a3d 0%, #f57450 100%);
}

.btn.btn-outline.give-btn {
    border: 2px solid #234e48;
    color: #234e48;
    background: transparent;
}

.btn.btn-outline.give-btn:hover {
    background: #234e48;
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.2);
}
/* QR Popup Styles */
.qr-popup {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.qr-popup-content {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px;
    border-radius: 20px;
    text-align: center;
    max-width: 450px;
    width: 90%;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    transform: scale(0.9);
    animation: popIn 0.3s ease forwards;
}

.qr-close {
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 32px;
    font-weight: bold;
    cursor: pointer;
    color: #999;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.qr-close:hover {
    color: #f57450;
    background: rgba(245, 116, 80, 0.1);
    transform: rotate(90deg);
}

.qr-header h3 {
    margin: 15px 0 5px 0;
    color: #234e48;
    font-size: 24px;
    font-weight: 600;
}

.qr-subtitle {
    color: #666;
    font-size: 16px;
    margin-bottom: 25px;
    font-style: italic;
}

.qr-image-container {
    background: white;
    padding: 20px;
    border-radius: 15px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    margin: 20px 0;
    border: 3px solid #f0f0f0;
}

.qr-image {
    max-width: 300px;
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.qr-contact {
    background: linear-gradient(135deg, #f57450 0%, #e85a3d 100%);
    color: white;
    padding: 15px 20px;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 500;
    margin-top: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}

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

@keyframes popIn {
    from { 
        transform: scale(0.8);
        opacity: 0;
    }
    to { 
        transform: scale(1);
        opacity: 1;
    }
}

@media (max-width: 768px) {
    .qr-popup-content {
        padding: 30px 20px;
        margin: 20px;
    }
    
    .qr-image {
        max-width: 250px;
    }
}
.give-btn-wide {
    min-width: 120px;
    padding: 14px 35px;
}
.flag-icon {
    display: inline-block;
    margin-right: 8px;
    animation: flagWave 2s ease-in-out infinite;
    transform-origin: left center;
}

@keyframes flagWave {
    0%, 100% { transform: rotate(0deg) scale(1); }
    25% { transform: rotate(2deg) scale(1.05); }
    50% { transform: rotate(0deg) scale(1); }
    75% { transform: rotate(-2deg) scale(1.05); }
}
/* Pastor Section Styles */
.pastor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pastor-intro {
    text-align: center;
    margin-bottom: 60px;
}

.pastors-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 50px;
    max-width: 1000px;
    margin: 0 auto;
}

.pastor-card {
    display: grid;
    grid-template-columns: 300px 1fr;
    gap: 40px;
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.pastor-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pastor-card:nth-child(even) {
    grid-template-columns: 1fr 300px;
}

.pastor-card:nth-child(even) .pastor-image {
    order: 2;
}

.pastor-card:nth-child(even) .pastor-info {
    order: 1;
}

.pastor-image {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    height: 350px;
}

.pastor-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pastor-card:hover .pastor-image img {
    transform: scale(1.05);
}

.pastor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(35, 78, 72, 0.9));
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pastor-card:hover .pastor-overlay {
    transform: translateY(0);
}

.pastor-quote {
    color: white;
    font-style: italic;
    font-size: 14px;
    line-height: 1.5;
    text-align: center;
}

.pastor-info h3 {
    color: #234e48;
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
}

.pastor-title {
    color: #f57450;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.pastor-details p {
    color: #666;
    line-height: 1.7;
    margin-bottom: 20px;
    font-size: 15px;
}

.pastor-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-top: 25px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    padding: 8px 15px;
    border-radius: 25px;
    font-size: 13px;
    font-weight: 500;
}

.highlight-item i {
    font-size: 12px;
    color: #9dc8f9;
}

@media (max-width: 968px) {
    .pastor-card,
    .pastor-card:nth-child(even) {
        grid-template-columns: 1fr;
        gap: 30px;
        padding: 30px 20px;
    }
    
    .pastor-card:nth-child(even) .pastor-image,
    .pastor-card:nth-child(even) .pastor-info {
        order: initial;
    }
    
    .pastor-image {
        height: 280px;
        margin: 0 auto;
        max-width: 280px;
    }
    
    .pastor-info h3 {
        font-size: 24px;
        text-align: center;
    }
    
    .pastor-title {
        text-align: center;
    }
    
    .pastor-highlights {
        justify-content: center;
    }
    
    .pastors-grid {
        gap: 40px;
    }
}
/* Family Card Styles */
.family-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border: 1px solid #e9ecef;
    color: #333;
    border-radius: 20px;
    padding: 40px;
    margin-top: 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    position: relative;
    overflow: hidden;
}

.family-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #234e48 0%, #f57450 50%, #9dc8f9 100%);
}

.family-header {
    text-align: center;
    margin-bottom: 35px;
}

.family-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.3);
}

.family-icon i {
    font-size: 24px;
    color: white;
}

.family-header h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 8px;
    font-family: 'Playfair Display', serif;
    color: #234e48;
}

.family-subtitle {
    color: #f57450;
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.family-content p {
    font-size: 16px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #666;
}

.children-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 35px;
}

.child-card {
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    border-radius: 15px;
    padding: 25px;
    color: white;
    box-shadow: 0 8px 25px rgba(35, 78, 72, 0.2);
    transition: transform 0.3s ease;
}

.child-card:hover {
    transform: translateY(-3px);
}

.child-info h4 {
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 8px;
    color: white;
}

.child-age {
    background: #f57450;
    color: white;
    padding: 4px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 600;
    display: inline-block;
    margin-bottom: 15px;
}

.child-ministry {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: #9dc8f9;
    font-weight: 600;
}

.child-ministry i {
    font-size: 16px;
}

.child-info p {
    font-size: 14px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.family-ministry {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
}

.ministry-highlight {
    display: flex;
    gap: 15px;
    align-items: flex-start;
    background: #f8f9fa;
    padding: 20px;
    border-radius: 12px;
    border-left: 4px solid #f57450;
}

.ministry-highlight i {
    font-size: 20px;
    color: #f57450;
    margin-top: 5px;
    flex-shrink: 0;
}

.ministry-highlight h4 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
    color: #234e48;
}

.ministry-highlight p {
    font-size: 14px;
    line-height: 1.6;
    color: #666;
    margin: 0;
}

@media (max-width: 968px) {
    .children-grid,
    .family-ministry {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .family-card {
        padding: 30px 20px;
    }
    
    .family-header h3 {
        font-size: 24px;
    }
}
/* Ministries Page Styles */

.ministries-intro {
    padding: 40px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.ministries-intro h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #234e48;
    margin-bottom: 20px;
}

.ministries-intro .intro-text {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
}

.ministry-detail {
    padding: 50px 0;
}

.ministry-detail.alt {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

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

.ministry-image {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ministry-icon-large {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, #f57450 0%, #ff8a65 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 20px 40px rgba(245, 116, 80, 0.3);
    transition: all 0.3s ease;
}

.ministry-icon-large:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 60px rgba(245, 116, 80, 0.4);
}

.ministry-icon-large i {
    font-size: 4rem;
    color: white;
}

.ministry-content {
    padding: 0;
}

.ministry-label {
    display: inline-block;
    background: linear-gradient(135deg, #9dc8f9 0%, #b3d4fc 100%);
    color: #234e48;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ministry-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    color: #234e48;
    margin-bottom: 20px;
    line-height: 1.2;
}

.ministry-description {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 30px;
}

.ministry-features {
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
    padding: 15px;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
}

.feature-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.12);
}

.feature-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #dbe1d2 0%, #e8ede0 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    flex-shrink: 0;
}

.feature-icon i {
    font-size: 1.2rem;
    color: #234e48;
}

.feature-item h4 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #234e48;
    margin-bottom: 5px;
}

.feature-item p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
}

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

.ministries-cta {
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    padding: 60px 0;
    text-align: center;
}

.cta-content h2 {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.cta-content p {
    font-size: 1.1rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

@media (max-width: 768px) {
    .ministry-grid {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .ministry-detail.alt .ministry-grid {
        grid-template-areas: 
            "content"
            "image";
    }
    
    .ministry-detail.alt .ministry-content {
        grid-area: content;
    }
    
    .ministry-detail.alt .ministry-image {
        grid-area: image;
    }
    
    .ministry-icon-large {
        width: 150px;
        height: 150px;
    }
    
    .ministry-icon-large i {
        font-size: 3rem;
    }
    
    .ministry-content h2 {
        font-size: 2rem;
    }
    
    .ministries-intro h2 {
        font-size: 2rem;
    }
    
    .cta-content h2 {
        font-size: 2rem;
    }
    
    .ministry-actions {
        justify-content: center;
    }
}

/* Staff Page Styles */

.lead-pastor-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.pastor-hero {
    display: grid;
    grid-template-columns: 400px 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.pastor-image-container {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    height: 500px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.pastor-hero-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.pastor-image-container:hover .pastor-hero-image {
    transform: scale(1.05);
}

.pastor-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(35, 78, 72, 0.95));
    padding: 40px 30px 30px;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.pastor-image-container:hover .pastor-overlay {
    transform: translateY(0);
}

.pastor-quote {
    color: white;
    font-style: italic;
    font-size: 16px;
    line-height: 1.6;
    text-align: center;
}

.pastor-badge {
    background: linear-gradient(135deg, #f57450 0%, #e85a3d 100%);
    color: white;
    padding: 8px 20px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-block;
    margin-bottom: 20px;
}

.pastor-name {
    font-size: 36px;
    font-weight: 700;
    color: #234e48;
    margin-bottom: 25px;
    font-family: 'Playfair Display', serif;
}

.pastor-credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 30px;
}

.credential {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #f8f9fa;
    padding: 10px 16px;
    border-radius: 25px;
    font-size: 14px;
    font-weight: 500;
    color: #234e48;
    border-left: 3px solid #f57450;
}

.credential i {
    color: #f57450;
}

.pastor-bio p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.pastor-contact-card {
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    padding: 20px 25px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 15px;
    margin-top: 30px;
}

.pastor-contact-card i {
    font-size: 20px;
    color: #9dc8f9;
}

.pastor-contact-card a {
    color: white;
    text-decoration: none;
    font-weight: 500;
}

.ministry-team-section {
    padding: 80px 0;
    background: white;
}

.ministry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 50px;
}

.ministry-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f57450;
}

.ministry-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
}

.ministry-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
}

.ministry-icon i {
    font-size: 24px;
    color: white;
}

.ministry-content h3 {
    font-size: 24px;
    font-weight: 700;
    color: #234e48;
    margin-bottom: 10px;
    font-family: 'Playfair Display', serif;
}

.ministry-content h4 {
    font-size: 18px;
    font-weight: 600;
    color: #f57450;
    margin-bottom: 15px;
}

.ministry-content p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.ministry-members {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.member {
    display: flex;
    flex-direction: column;
    background: #f8f9fa;
    padding: 12px 16px;
    border-radius: 10px;
    border-left: 3px solid #f57450;
}

.member-name {
    font-weight: 600;
    color: #234e48;
    font-size: 14px;
}

.member-role {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.ministry-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.highlight {
    background: #f57450;
    color: white;
    padding: 6px 12px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.leadership-board-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.leadership-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
}

.leadership-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.15);
}

.leadership-header {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
}

.leadership-header i {
    font-size: 24px;
    color: #f57450;
}

.leadership-header h3 {
    font-size: 24px;
    font-weight: 700;
    color: #234e48;
    font-family: 'Playfair Display', serif;
}

.leadership-description {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
}

.leadership-members {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.leader-item {
    display: flex;
    flex-direction: column;
    padding: 15px 20px;
    background: #f8f9fa;
    border-radius: 10px;
    border-left: 4px solid #234e48;
}

.leader-name {
    font-weight: 600;
    color: #234e48;
    font-size: 16px;
}

.leader-role {
    font-size: 14px;
    color: #f57450;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.staff-cta-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    text-align: center;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 30px;
}

.cta-icon i {
    font-size: 32px;
    color: #f57450;
}

.cta-content h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 20px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 968px) {
    .pastor-hero {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }
    
    .pastor-image-container {
        height: 400px;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .pastor-name {
        font-size: 28px;
    }
    
    .ministry-grid {
        grid-template-columns: 1fr;
    }
    
    .leadership-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* About Page Specific Styles */
.story-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.story-text {
    margin-top: 30px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
}

.mission-section {
    padding: 50px 0;
    background: white;
}

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

.mission-card {
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    padding: 40px 30px;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    border-top: 4px solid #f57450;
    position: relative;
    overflow: hidden;
}

.mission-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 116, 80, 0.1), transparent);
    transition: left 0.6s ease;
}

.mission-card:hover::before {
    left: 100%;
}

.mission-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.mission-icon {
    font-size: 48px;
    margin-bottom: 20px;
    display: block;
}

.mission-card h2 {
    color: #234e48;
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.mission-card p {
    color: #666;
    line-height: 1.6;
    font-size: 15px;
}

.values-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

.value-card {
    background: white;
    padding: 30px 25px;
    border-radius: 12px;
    box-shadow: 0 6px 25px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    position: relative;
    border-left: 4px solid #f57450;
}

.value-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.12);
}

.value-number {
    position: absolute;
    top: -15px;
    right: 20px;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.3);
}

.value-card h3 {
    color: #234e48;
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
    padding-right: 50px;
}

.value-card p {
    color: #666;
    line-height: 1.6;
    font-size: 14px;
}

.cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-content h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.cta-content p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
}

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

@media (max-width: 768px) {
    .story-section,
    .mission-section,
    .values-section {
        padding: 40px 0;
    }
    
    .cta-section {
        padding: 50px 0;
    }
    
    .mission-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}
/* Beliefs Page Specific Styles */

.beliefs-section {
    padding: 50px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

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

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

.belief-card {
    background: white;
    padding: 35px 30px;
    border-radius: 15px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
    border-top: 4px solid #f57450;
}

.belief-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(245, 116, 80, 0.05), transparent);
    transition: left 0.6s ease;
}

.belief-card:hover::before {
    left: 100%;
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.belief-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    box-shadow: 0 4px 15px rgba(35, 78, 72, 0.3);
}

.belief-icon i {
    font-size: 24px;
    color: white;
}

.belief-title {
    color: #234e48;
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.belief-text {
    color: #666;
    line-height: 1.7;
    font-size: 15px;
    margin-bottom: 20px;
}

.belief-verse {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    padding: 20px;
    border-radius: 10px;
    border-left: 4px solid #f57450;
    position: relative;
}

.belief-verse i {
    color: #f57450;
    font-size: 16px;
    margin-bottom: 10px;
    display: block;
}

.belief-verse em {
    color: #555;
    font-size: 14px;
    line-height: 1.6;
    font-style: italic;
}

.beliefs-cta-section {
    padding: 60px 0;
    background: linear-gradient(135deg, #234e48 0%, #2d6259 100%);
    color: white;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.beliefs-cta-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="2" fill="rgba(255,255,255,0.1)"/></svg>') repeat;
    opacity: 0.3;
}

.beliefs-cta {
    position: relative;
    z-index: 1;
}

.cta-icon {
    width: 80px;
    height: 80px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
}

.cta-icon i {
    font-size: 32px;
    color: #f57450;
}

.beliefs-cta h3 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Playfair Display', serif;
}

.beliefs-cta p {
    font-size: 18px;
    margin-bottom: 30px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

@media (max-width: 768px) {
    .beliefs-section {
        padding: 40px 0;
    }
    
    .beliefs-cta-section {
        padding: 50px 0;
    }
    
    .beliefs-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .belief-card {
        padding: 30px 25px;
    }
    
    .beliefs-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}