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

:root {
    --primary-red: #E31B23;
    --secondary-red: #B71C1C;
    --accent-red: #FF6B6B;
    --gold: #FFD700;
    --light-gold: #FFF8DC;
    --white: #FFFFFF;
    --black: #000000;
    --dark-gray: #1A1A1A;
    --medium-gray: #4A4A4A;
    --light-gray: #F5F5F5;
    --text-gray: #666666;
    --shadow: rgba(0, 0, 0, 0.1);
    --shadow-hover: rgba(0, 0, 0, 0.15);
}

body {
    font-family: 'Poppins', sans-serif;
    line-height: 1.6;
    color: var(--dark-gray);
    overflow-x: hidden;
    background: var(--white);
}

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

/* Navigation */
.navbar {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    box-shadow: 0 4px 20px var(--shadow);
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-left: -100px;
    padding-left: 0;
    text-decoration: none;
    cursor: pointer;
    transition: opacity 0.3s ease;
    outline: none;
}

.nav-logo:hover {
    opacity: 0.8;
}

.nav-logo:focus {
    outline: none;
    border: none;
}

.nav-logo img {
    height: 50px;
    width: auto;
    display: block;
    object-fit: contain;
}

.nav-logo h2 {
    color: var(--primary-red);
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
    margin-right: -100px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--dark-gray);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link:not(.active) {
    color: var(--medium-gray);
}

.nav-link:hover {
    color: var(--primary-red);
}

.nav-link::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -5px;
    left: 0;
    background-color: var(--primary-red);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-link:focus {
    color: var(--primary-red);
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.btn-watch-live {
    background: var(--primary-red) !important;
    color: var(--white) !important;
    padding: 7px 14px !important;
    border-radius: 5px !important;
    font-size: 0.8rem !important;
    font-weight: 600 !important;
    text-transform: uppercase !important;
    letter-spacing: 0.3px !important;
    transition: all 0.3s ease !important;
    display: inline-flex !important;
    align-items: center !important;
    gap: 0.35rem !important;
}

.btn-watch-live:hover {
    background: var(--secondary-red);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(227, 27, 35, 0.3);
}

.btn-watch-live i {
    font-size: 1rem;
}

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

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

/* Hero Section */
.hero {
    background: linear-gradient(135deg, var(--primary-red) 0%, var(--secondary-red) 50%, var(--black) 100%);
    color: white;
    padding: 120px 0 80px;
    display: flex;
    align-items: center;
    min-height: 90vh;
    position: relative;
    overflow: hidden;
}

.hero .container {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-content {
    flex: 1;
    max-width: 600px;
    padding: 0 40px;
    position: relative;
    z-index: 2;
}

.hero h1 {
    font-size: 3.8rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    margin-top: 0;
    line-height: 1.2;
    letter-spacing: -1px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.hero-subtitle {
    font-size: 2.4rem;
    font-weight: 400;
    opacity: 0.9;
    display: block;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    position: relative;
    top: 0;
}

.hero p {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 2.5rem;
    opacity: 0.95;
    font-weight: 400;
    line-height: 1.5;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    display: inline-block;
    padding: 18px 36px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 700;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.btn:hover::before {
    left: 100%;
}

.btn-primary {
    background: var(--gold);
    color: var(--primary-red);
    box-shadow: 0 8px 25px rgba(255, 215, 0, 0.3);
}

.btn-primary:hover {
    background: var(--light-gold);
    color: var(--secondary-red);
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(255, 215, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold);
    border-color: var(--gold);
    transform: translateY(-3px);
}

.hero-image {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 40px;
}

.hero-logo {
    width: 450px;
    height: 450px;
    background: rgba(255,255,255,0.05);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 2rem;
    position: relative;
    z-index: 2;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.church-logo {
    width: 100%;
    height: auto;
    max-width: 280px;
    filter: drop-shadow(0 8px 16px rgba(0,0,0,0.4));
    display: block;
    object-fit: contain;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 3.5rem;
    color: var(--primary-red);
    margin-bottom: 1.5rem;
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.1;
}

.section-header p {
    font-size: 1.3rem;
    color: var(--text-gray);
    max-width: 700px;
    margin: 0 auto;
    font-weight: 400;
    line-height: 1.6;
}

/* About Section */
.about {
    padding: 100px 0;
    background: var(--light-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.about-text h3 {
    color: var(--primary-red);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    margin-top: 2rem;
}

.about-text h3:first-child {
    margin-top: 0;
}

.about-text p {
    margin-bottom: 1.5rem;
    color: #666;
    line-height: 1.7;
}

.about-text ul {
    list-style: none;
    padding-left: 0;
}

.about-text li {
    margin-bottom: 0.8rem;
    padding-left: 1.5rem;
    position: relative;
    color: #666;
}

.about-text li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.about-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.stat {
    text-align: center;
    padding: 2rem;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

.stat h3 {
    font-size: 2.5rem;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat p {
    color: #666;
    font-weight: 500;
}

/* Services Section */
.services {
    padding: 100px 0;
    background: var(--white);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.service-card {
    background: var(--white);
    padding: 3rem 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 10px 30px var(--shadow);
    position: relative;
    overflow: hidden;
}

.service-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 50px var(--shadow-hover);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.service-icon {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    box-shadow: 0 8px 25px rgba(227, 27, 35, 0.3);
}

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

.service-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.service-time {
    color: var(--primary-red);
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.service-card p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Ministries Section */
.ministries {
    padding: 100px 0;
    background: var(--light-gray);
}

.ministries-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.ministry-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s ease;
    border: 1px solid rgba(0, 0, 0, 0.05);
    box-shadow: 0 8px 25px var(--shadow);
    position: relative;
    overflow: hidden;
}

.ministry-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow-hover);
}

.ministry-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

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

.ministry-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 6px 20px rgba(227, 27, 35, 0.25);
}

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

.ministry-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.ministry-card p {
    color: #666;
    line-height: 1.6;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: var(--white);
}

.events-list {
    max-width: 900px;
    margin: 0 auto;
    padding: 0 20px;
}

.event-item {
    display: flex;
    align-items: center;
    padding: 2rem;
    background: #f8f9fa;
    border-radius: 15px;
    margin-bottom: 1.5rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    border: 1px solid #e9ecef;
}

.event-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.event-date {
    background: var(--primary-red);
    color: white;
    padding: 1rem;
    border-radius: 10px;
    text-align: center;
    margin-right: 2rem;
    min-width: 80px;
}

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

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

.event-content h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.event-time {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.event-content p:last-child {
    color: #666;
    line-height: 1.6;
}

/* Contact Section */
.contact {
    padding: 100px 0;
    background: var(--light-gray);
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 2rem;
}

.contact-icon {
    width: 50px;
    height: 50px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1rem;
    flex-shrink: 0;
}

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

.contact-details h3 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.contact-details p {
    color: #666;
    line-height: 1.5;
}

.contact-form {
    background: white;
    padding: 2.5rem;
    border-radius: 15px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
}

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 15px;
    border: 2px solid #e9ecef;
    border-radius: 8px;
    font-size: 1rem;
    transition: border-color 0.3s ease;
    font-family: inherit;
}

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

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Worship Schedule Section */
.worship-schedule {
    padding: 80px 0;
    background: var(--light-gray);
}

.schedule-content {
    text-align: center;
}

.schedule-header h2 {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.schedule-header p {
    font-size: 1.2rem;
    color: var(--text-gray);
    margin-bottom: 3rem;
}

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

.schedule-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px var(--shadow);
    transition: all 0.3s ease;
}

.schedule-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow-hover);
}

.schedule-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.schedule-icon i {
    font-size: 2rem;
    color: var(--white);
}

.schedule-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.schedule-time {
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.schedule-description {
    font-size: 1rem;
    color: var(--text-gray);
}

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

.schedule-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

.schedule-cta .btn-primary {
    padding: 14px 28px;
    font-size: 0.95rem;
    background: var(--primary-red);
    color: var(--white);
    box-shadow: none !important;
    border: none !important;
    outline: none !important;
}

.schedule-cta .btn-primary:hover {
    background: var(--secondary-red);
    box-shadow: none !important;
}

.schedule-cta .btn-primary:focus {
    outline: none !important;
    box-shadow: none !important;
}

.schedule-cta .btn-secondary {
    background: var(--white);
    color: var(--primary-red);
    border: 2px solid var(--primary-red);
}

.schedule-cta .btn-secondary:hover {
    background: var(--primary-red);
    color: var(--white);
    border-color: var(--primary-red);
}

/* Quick Action Cards Section */
.quick-actions {
    padding: 80px 0;
    background: var(--white);
}

.actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}

.action-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 2px solid var(--light-gray);
    transition: all 0.3s ease;
    text-align: center;
}

.action-card:hover {
    border-color: var(--primary-red);
    transform: translateY(-5px);
    box-shadow: 0 8px 30px var(--shadow);
}

.action-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.action-icon i {
    font-size: 2rem;
    color: var(--white);
}

.action-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.action-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.action-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.action-link:hover {
    gap: 1rem;
    color: var(--secondary-red);
}

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

.action-card:hover .action-link i {
    transform: translateX(5px);
}

/* Footer */
.footer {
    background: var(--dark-gray);
    color: white;
    padding: 60px 0 20px;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    align-items: start;
}

.footer-content .footer-section:first-child {
    grid-column: 1;
}

.footer-content .footer-section:nth-child(2) {
    grid-column: 2;
    justify-self: end;
}

.footer-content .footer-section:nth-child(3) {
    grid-column: 3;
    justify-self: end;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: white;
}

.footer-section h3 {
    font-size: 1.5rem;
    color: var(--gold);
}

.footer-section p {
    color: #ccc;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

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

.footer-section ul li {
    margin-bottom: 0.8rem;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.footer-section ul li a:hover {
    color: white;
}

.footer-section ul li i {
    margin-right: 0.5rem;
    color: var(--gold);
}

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

.social-link {
    width: 40px;
    height: 40px;
    background: var(--primary-red);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: transform 0.3s ease;
}

.social-link:hover {
    transform: translateY(-3px);
}

.footer-bottom {
    border-top: 1px solid var(--medium-gray);
    padding-top: 2rem;
    text-align: center;
    color: #ccc;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
    }

    .container {
        max-width: 100%;
        overflow-x: hidden;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background-color: white;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 2rem 0;
    }

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

    .btn-watch-live {
        position: static;
        width: 90%;
        justify-content: center;
        margin: 1rem auto;
        padding: 12px 20px !important;
        font-size: 0.9rem !important;
    }

    .nav-menu li {
        margin: 1rem 0;
    }

    .nav-logo {
        margin-left: 0;
        padding-left: 10px;
    }

    .nav-logo h2 {
        font-size: 0.9rem;
    }

    .nav-logo img {
        height: 35px;
    }

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

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

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

    .hero .container {
        flex-direction: column;
        text-align: center;
        gap: 2rem;
    }

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

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

    .hero p {
        font-size: 1.4rem;
    }

    .hero-buttons {
        justify-content: center;
    }

    .hero-image {
        margin-top: 2rem;
    }

    .hero-logo {
        width: 220px;
        height: 220px;
        padding: 1rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
    }

    .church-logo {
        max-width: 200px;
    }

    .mission-vision {
        padding: 60px 0 !important;
    }

    .mission-vision-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 20px !important;
    }

    .mission-card,
    .vision-card {
        padding: 2rem !important;
    }

    .stats-section {
        padding: 50px 0 !important;
    }

    .stats-section .stats-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 1.5rem !important;
        padding: 0 20px !important;
    }

    .stat-card {
        padding: 1.5rem !important;
    }

    .stat-card h3 {
        font-size: 2.5rem !important;
    }

    .values-section {
        padding: 60px 0 !important;
    }

    .values-grid {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0 20px !important;
    }

    .value-card {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .value-card:last-child {
        flex: 1 1 100% !important;
        max-width: 100% !important;
    }

    .card-icon {
        width: 70px !important;
        height: 70px !important;
    }

    .card-icon i {
        font-size: 2rem !important;
    }

    .mission-card h2,
    .vision-card h2 {
        font-size: 1.5rem !important;
    }

    .mission-card p,
    .vision-card p {
        font-size: 1rem !important;
    }

    .leadership {
        padding: 60px 0 !important;
    }

    .leadership-grid {
        grid-template-columns: 1fr !important;
    }

    .contact-cards-section {
        padding: 60px 0 !important;
    }

    .contact-cards-section .container {
        padding: 0 20px;
    }

    .contact-cards-grid {
        grid-template-columns: 1fr !important;
        gap: 1.5rem !important;
        padding: 0;
        max-width: 100%;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto;
    }

    .contact-card {
        padding: 2rem 1.5rem !important;
        max-width: 90%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .contact-card p {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .contact-highlight {
        font-size: 1rem !important;
        word-wrap: break-word;
    }

    .contact-form-section {
        padding: 60px 0 !important;
    }

    .form-wrapper {
        padding: 2rem 1.5rem !important;
        margin: 0 20px;
        max-width: calc(100% - 40px);
        box-sizing: border-box;
    }

    .form-header h2 {
        font-size: 1.8rem !important;
    }

    .form-header p {
        font-size: 1rem !important;
    }

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

    .modern-contact-form input,
    .modern-contact-form select,
    .modern-contact-form textarea {
        max-width: 100%;
        box-sizing: border-box;
    }

    .staff-contact {
        padding: 60px 0 !important;
    }

    .staff-contact .container {
        padding: 0 20px;
    }

    .staff-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        margin: 0 auto;
    }

    .staff-card {
        padding: 2rem !important;
        max-width: 90%;
        width: 100%;
        box-sizing: border-box;
        margin: 0 auto;
    }

    .staff-email,
    .staff-phone {
        word-wrap: break-word !important;
        overflow-wrap: break-word !important;
        word-break: break-all !important;
        font-size: 0.85rem !important;
    }

    .location-directions {
        padding: 60px 0 !important;
    }

    .location-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 20px;
    }

    .location-info h3,
    .location-info h4 {
        font-size: 1.3rem;
    }

    .location-info p {
        font-size: 0.95rem;
    }

    .map-placeholder {
        min-height: 300px !important;
    }

    .emergency-contact {
        padding: 40px 0 !important;
    }

    .emergency-content {
        flex-direction: column !important;
        text-align: center !important;
        padding: 2rem !important;
    }

    .emergency-info,
    .emergency-note {
        padding: 0 20px;
    }

    .emergency-info h2 {
        font-size: 1.8rem;
    }

    .emergency-phone {
        font-size: 1.5rem !important;
    }

    .footer-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        text-align: center !important;
    }

    .footer-content .footer-section:first-child {
        grid-column: 1 !important;
        justify-self: center !important;
    }

    .footer-content .footer-section:nth-child(2) {
        grid-column: 1 !important;
        justify-self: center !important;
    }

    .footer-content .footer-section:nth-child(3) {
        grid-column: 1 !important;
        justify-self: center !important;
    }

    .footer-section {
        display: flex;
        flex-direction: column;
        align-items: center;
    }

    .social-links {
        justify-content: center;
        margin: 0 auto;
        width: 100%;
    }

    .footer-section:first-child {
        align-items: center;
    }

    .footer-section ul {
        padding: 0;
    }

    .footer-section ul li {
        font-size: 0.9rem;
        word-break: break-word;
    }

    .footer-section h4 {
        font-size: 1.2rem;
    }

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

    .get-involved .section-header p {
        white-space: nowrap;
    }

    .services-grid,
    .ministries-grid {
        grid-template-columns: 1fr;
    }

    .get-involved {
        padding: 60px 0 !important;
    }

    .intro-card {
        padding: 2rem !important;
        margin: 0 20px;
    }

    .intro-card h3 {
        font-size: 1.5rem !important;
    }

    .intro-card p {
        font-size: 1rem !important;
    }

    .steps-section > h3 {
        font-size: 1.5rem !important;
        padding: 0 20px;
    }

    .steps-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        padding: 0 20px;
    }

    .step-card {
        padding: 2rem 1.5rem !important;
    }

    .form-container {
        padding: 2rem !important;
        margin: 0 20px;
    }

    .form-container h3 {
        font-size: 1.5rem !important;
    }

    .ministry-interest-form {
        padding: 0 !important;
    }

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

    .event-date {
        margin-right: 0;
        margin-bottom: 1rem;
    }

    .event-registration {
        padding: 60px 0 !important;
    }

    .registration-content {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }

    .registration-text {
        padding: 0 20px;
    }

    .registration-text h2 {
        font-size: 1.8rem;
    }

    .registration-text p {
        font-size: 1rem;
    }

    .benefits-list {
        font-size: 0.95rem;
    }

    .registration-form {
        padding: 0 20px;
    }

    .notification-form {
        padding: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero h1 {
        font-size: 2.2rem;
        line-height: 1.2;
    }

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

    .hero-title-line {
        display: block;
        font-size: 2.1rem;
        line-height: 1.2;
        white-space: nowrap;
    }

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

    .btn {
        width: 100%;
        max-width: 250px;
        text-align: center;
    }

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

    .schedule-header p {
        font-size: 1rem;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .mission-vision {
        padding: 60px 0;
    }

    .stats-section {
        padding: 40px 0;
    }

    .values-section {
        padding: 60px 0;
    }

    .leadership {
        padding: 60px 0;
    }

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

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

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

    .page-header p {
        font-size: 1rem;
    }

    .actions-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .hero-buttons {
        justify-content: center;
        width: 100%;
    }

    .hero-buttons .btn {
        text-align: center;
        justify-content: center;
    }

    .schedule-cta {
        justify-content: center;
        width: 100%;
    }

    .schedule-cta .btn {
        text-align: center;
        justify-content: center;
    }

    .stats-section .stats-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .stat-card h3 {
        font-size: 2rem;
    }

    .stat-card p {
        font-size: 0.9rem;
    }

    .btn {
        text-align: center;
        justify-content: center;
    }

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

    .stat {
        padding: 1.5rem;
    }

    .service-card,
    .ministry-card,
    .contact-form {
        padding: 1.5rem;
    }

    .event-item {
        padding: 1.5rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Loading Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.6s ease-out;
}

/* Accessibility */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}

/* Focus styles for accessibility */
button:focus,
input:focus,
select:focus,
textarea:focus,
a:focus {
    outline: 2px solid var(--primary-red);
    outline-offset: 2px;
}

.nav-link.active {
    color: var(--primary-red) !important;
}

.nav-link.active::after {
    width: 100% !important;
}

/* Override any browser default link colors */
a.nav-link.active,
a.nav-link.active:visited,
a.nav-link.active:link {
    color: var(--primary-red) !important;
}

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

.page-header::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"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.page-header h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -1px;
    position: relative;
    z-index: 2;
}

.page-header p {
    font-size: 1.3rem;
    opacity: 0.95;
    position: relative;
    z-index: 2;
}

/* About Page Styles */
/* Mission & Vision Section */
.mission-vision {
    padding: 80px 0;
    background: var(--white);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card,
.vision-card {
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.3s ease;
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px var(--shadow);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

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

.mission-card h2,
.vision-card h2 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

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

/* Stats Section */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
}

.stats-section .stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.stat-card {
    text-align: center;
    padding: 2rem;
}

.stat-card h3 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.stat-card p {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
    font-size: 1rem;
}

/* Values Section */
.values-section {
    padding: 80px 0;
    background: var(--light-gray);
}

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

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}

.value-card {
    flex: 0 0 calc(50% - 1rem);
    max-width: 280px;
}

.value-card:last-child {
    flex: 0 0 calc(50% - 1rem);
    max-width: 280px;
}

.value-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px var(--shadow);
}

.value-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.value-icon i {
    font-size: 2rem;
    color: var(--white);
}

.value-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-gray);
    line-height: 1.6;
}

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

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

.leader-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 30px var(--shadow);
    transition: transform 0.3s ease;
}

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

.leader-image {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.leader-image i {
    font-size: 2.5rem;
    color: white;
}

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

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

/* Services Page Styles */
.services-page {
    padding: 100px 0;
    background: var(--white);
}

.service-features {
    list-style: none;
    padding: 0;
    margin-top: 1rem;
}

.service-features li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.service-features li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.what-to-expect {
    padding: 80px 0;
    background: var(--white);
}

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

.expect-card {
    background: var(--light-gray);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.expect-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 30px var(--shadow);
}

.expect-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.expect-icon i {
    font-size: 2rem;
    color: var(--white);
}

.expect-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--dark-gray);
    margin-bottom: 1rem;
}

.expect-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
}

.special-services {
    padding: 100px 0;
    background: var(--white);
}

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

.special-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.special-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.special-card h3 {
    color: var(--primary-red);
    margin-bottom: 1rem;
}

/* Ministries Page Styles */
.ministries-page {
    padding: 100px 0;
    background: var(--light-gray);
}

.ministry-details {
    margin-top: 1.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #eee;
}

.ministry-details h4 {
    color: var(--primary-red);
    margin-bottom: 0.5rem;
}

.ministry-details ul {
    list-style: none;
    padding: 0;
}

.ministry-details li {
    padding: 0.3rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.ministry-details li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.get-involved {
    padding: 100px 0;
    background: var(--white);
    border-top: 4px solid var(--primary-red);
    position: relative;
}

.get-involved::before {
    content: '';
    position: absolute;
    top: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 8px;
    background: var(--gold);
    border-radius: 0 0 10px 10px;
}

.get-involved .section-header {
    position: relative;
    padding-bottom: 1rem;
}

.get-involved .section-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-red), var(--gold));
    border-radius: 2px;
}

/* Involvement Intro */
.involvement-intro {
    margin-top: 3rem;
    display: flex;
    justify-content: center;
}

.intro-card {
    background: var(--dark-gray);
    padding: 3rem;
    border-radius: 20px;
    text-align: center;
    max-width: 800px;
    box-shadow: 0 5px 20px var(--shadow);
}

.intro-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.intro-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.intro-card h3 {
    font-size: 2rem;
    color: var(--white);
    margin-bottom: 1rem;
    font-weight: 700;
}

.intro-card p {
    font-size: 1.1rem;
    color: #ccc;
    line-height: 1.8;
}

/* Steps Section */
.steps-section {
    margin-top: 4rem;
    text-align: center;
}

.steps-section > h3 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 2rem;
    font-weight: 700;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 2rem;
}

.step-card {
    background: var(--dark-gray);
    padding: 2.5rem 1.5rem;
    border-radius: 16px;
    text-align: center;
    position: relative;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-red);
    box-shadow: 0 8px 25px var(--shadow);
}

.step-number {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
    font-size: 1.2rem;
}

.step-icon {
    width: 60px;
    height: 60px;
    background: var(--light-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 1.5rem auto 1rem;
}

.step-icon i {
    font-size: 1.8rem;
    color: var(--primary-red);
}

.step-card h4 {
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.75rem;
    font-weight: 700;
}

.step-card p {
    font-size: 0.95rem;
    color: #ccc;
    line-height: 1.6;
}

/* Involvement Form Section */
.involvement-form-section {
    margin-top: 4rem;
    display: flex;
    justify-content: center;
}

.form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    max-width: 600px;
    width: 100%;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-container h3 {
    font-size: 1.8rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    text-align: center;
    font-weight: 700;
}

.form-subtitle {
    text-align: center;
    color: var(--text-gray);
    margin-bottom: 2rem;
    font-size: 1rem;
}

.benefits-list {
    list-style: none;
    padding: 0;
}

.benefits-list li {
    padding: 0.5rem 0;
    color: var(--text-gray);
    position: relative;
    padding-left: 1.5rem;
}

.benefits-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--primary-red);
    font-weight: bold;
}

.ministry-interest-form,
.notification-form {
    background: var(--light-gray);
    padding: 2rem;
    border-radius: 15px;
}

/* Events Page Styles */
.events-page {
    padding: 100px 0;
    background: var(--light-gray);
}

.event-details {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid #eee;
}

.event-details p {
    margin: 0.5rem 0;
    color: var(--text-gray);
}

.regular-events {
    padding: 100px 0;
    background: var(--white);
}

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

.regular-event-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

.regular-event-card:hover {
    transform: translateY(-5px);
}

.event-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.event-schedule {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.special-programs {
    padding: 100px 0;
    background: var(--light-gray);
}

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

.program-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.program-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

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

.program-date {
    color: var(--primary-red);
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-registration {
    padding: 100px 0;
    background: var(--white);
}

.registration-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

/* Contact Page Styles */
/* Contact Cards Section */
.contact-cards-section {
    padding: 80px 0;
    background: var(--light-gray);
}

.contact-cards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-red);
    box-shadow: 0 10px 30px var(--shadow);
}

.contact-card-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.contact-card-icon i {
    font-size: 2rem;
    color: var(--white);
}

.contact-card h3 {
    font-size: 1.3rem;
    color: var(--dark-gray);
    margin-bottom: 1rem;
    font-weight: 700;
}

.contact-card p {
    font-size: 1rem;
    color: var(--text-gray);
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

.contact-highlight {
    font-size: 1.1rem !important;
    color: var(--primary-red) !important;
    font-weight: 600 !important;
}

.contact-subtext {
    font-size: 0.85rem !important;
    color: #999 !important;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary-red);
    text-decoration: none;
    font-weight: 600;
    margin-top: 1rem;
    transition: all 0.3s ease;
}

.contact-link:hover {
    gap: 0.8rem;
    color: var(--secondary-red);
}

.contact-link i {
    transition: transform 0.3s ease;
}

.contact-link:hover i {
    transform: translateX(4px);
}

/* Contact Form Section */
.contact-form-section {
    padding: 80px 0;
    background: var(--white);
}

.form-wrapper {
    max-width: 800px;
    margin: 0 auto;
    background: var(--light-gray);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 5px 20px var(--shadow);
}

.form-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.form-header h2 {
    font-size: 2rem;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.form-header p {
    font-size: 1.05rem;
    color: var(--text-gray);
}

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

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

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

.modern-contact-form label {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-gray);
    margin-bottom: 0.5rem;
}

.modern-contact-form input,
.modern-contact-form select,
.modern-contact-form textarea {
    padding: 0.9rem 1rem;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: var(--white);
}

.modern-contact-form input:focus,
.modern-contact-form select:focus,
.modern-contact-form textarea:focus {
    outline: none;
    border-color: var(--primary-red);
    box-shadow: 0 0 0 3px rgba(227, 27, 35, 0.1);
}

.modern-contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
}

.btn-large {
    padding: 1rem 2.5rem !important;
    font-size: 1.1rem !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    width: 100%;
}

.btn-large:hover {
    gap: 0.8rem;
}

.staff-contact {
    padding: 100px 0;
    background: var(--white);
}

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

.staff-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
    transition: transform 0.3s ease;
}

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

.staff-image {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-red), var(--secondary-red));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
}

.staff-image i {
    font-size: 2rem;
    color: white;
}

.staff-title {
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.staff-email,
.staff-phone {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin: 0.3rem 0;
}

.location-directions {
    padding: 100px 0;
    background: var(--light-gray);
}

.location-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.map-placeholder {
    background: var(--white);
    border-radius: 15px;
    padding: 2rem;
    text-align: center;
    box-shadow: 0 5px 15px var(--shadow);
}

.map-content i {
    font-size: 3rem;
    color: var(--primary-red);
    margin-bottom: 1rem;
}

.emergency-contact {
    padding: 100px 0;
    background: var(--primary-red);
    color: white;
}

.emergency-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
}

.emergency-phone {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
    margin: 1rem 0;
}

.emergency-note ul {
    list-style: none;
    padding: 0;
}

.emergency-note li {
    padding: 0.5rem 0;
    position: relative;
    padding-left: 1.5rem;
}

.emergency-note li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
}
