/* Modern Church Website - Gohhecim */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&family=Playfair+Display:wght@600;700;800&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary: #1e3a5f;
    --primary-light: #2c5282;
    --gold: #b8860b;
    --accent: #5a7a99;
    --white: #FFFFFF;
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-500: #6B7280;
    --gray-700: #374151;
    --gray-900: #111827;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow: 0 1px 3px rgba(0,0,0,0.1);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.1);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--gray-700);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    color: var(--gray-900);
    font-weight: 700;
    line-height: 1.2;
}

img {
    max-width: 100%;
    display: block;
}

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

/* Navigation */
.navbar {
    background: rgba(255,255,255,0.98);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(0,0,0,0.06);
    position: sticky;
    top: 0;
    z-index: 1000;
    box-shadow: var(--shadow-sm);
}

.nav-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary);
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
    background: white;
    padding: 5px;
    border-radius: 4px;
}

.logo i {
    color: var(--gold);
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

.nav-menu a {
    color: var(--gray-700);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9375rem;
    transition: color 0.2s;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: width 0.2s;
}

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--primary);
}

.nav-menu a:hover::after,
.nav-menu a.active::after {
    width: 100%;
}

.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 4px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.mobile-toggle span {
    width: 24px;
    height: 2px;
    background: var(--gray-700);
    border-radius: 2px;
    transition: all 0.3s;
}

/* Hero Section */
.hero {
    background: linear-gradient(135deg, rgba(30,58,95,0.95) 0%, rgba(44,82,130,0.9) 100%),
                url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1920&q=80') center/cover;
    color: var(--white);
    padding: 100px 0 80px;
    text-align: center;
    position: relative;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

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

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.hero-content .subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

.watchword {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(212,175,55,0.4);
    border-radius: 12px;
    padding: 1.5rem 2rem;
    max-width: 800px;
    margin: 0 auto 2rem;
}

.watchword p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--gold);
    margin-bottom: 0.5rem;
}

.watchword .scripture {
    font-size: 1rem;
    opacity: 0.9;
}

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

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    padding: 0.75rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all 0.2s;
    border: 2px solid transparent;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
}

.btn-primary:hover {
    background: #C9A026;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(212,175,55,0.3);
}

.btn-outline {
    background: rgba(255,255,255,0.1);
    color: var(--white);
    border-color: rgba(255,255,255,0.3);
}

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

.btn-secondary {
    background: var(--primary);
    color: var(--white);
}

.btn-secondary:hover {
    background: var(--primary-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(107,45,122,0.3);
}

/* Sections */
section {
    padding: 80px 0;
}

.branches {
    background: linear-gradient(135deg, rgba(249,250,251,0.98) 0%, rgba(243,244,246,0.98) 100%),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iNjAiIGhlaWdodD0iNjAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImdyaWQiIHdpZHRoPSI2MCIgaGVpZ2h0PSI2MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PHBhdGggZD0iTSAxMCAwIEwgMCAwIDAgMTAiIGZpbGw9Im5vbmUiIHN0cm9rZT0icmdiYSgwLDAsMCwwLjAyKSIgc3Ryb2tlLXdpZHRoPSIxIi8+PC9wYXR0ZXJuPjwvZGVmcz48cmVjdCB3aWR0aD0iMTAwJSIgaGVpZ2h0PSIxMDAlIiBmaWxsPSJ1cmwoI2dyaWQpIi8+PC9zdmc+');
}

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

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

.section-header p {
    font-size: 1.125rem;
    color: var(--gray-500);
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

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

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

/* Cards */
.card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
    position: relative;
    overflow: hidden;
}

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

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

.card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.card i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.card .location {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.card p {
    color: var(--gray-500);
    line-height: 1.6;
}

.card .time {
    font-weight: 600;
    color: var(--gold);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
    display: block;
}

.badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-small {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.25rem 0.75rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Feature Cards */
.card.feature {
    text-align: center;
}

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

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

/* Service Times */
.service-times {
    background: linear-gradient(135deg, rgba(255,255,255,0.98), rgba(249,250,251,0.98)),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iODAiIGhlaWdodD0iODAiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGRlZnM+PHBhdHRlcm4gaWQ9ImRvdHMiIHdpZHRoPSI4MCIgaGVpZ2h0PSI4MCIgcGF0dGVyblVuaXRzPSJ1c2VyU3BhY2VPblVzZSI+PGNpcmNsZSBjeD0iNDAiIGN5PSI0MCIgcj0iMSIgZmlsbD0icmdiYSgzMCw1OCw5NSwwLjA1KSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNkb3RzKSIvPjwvc3ZnPg==');\n}

/* CTA Section */
.cta {
    background: linear-gradient(135deg, rgba(30,58,95,0.95), rgba(44,82,130,0.9)),
                url('https://images.unsplash.com/photo-1529070538774-1843cb3265df?w=1920&q=80') center/cover;
    color: var(--white);
    padding: 80px 0;
    text-align: center;
    position: relative;
}

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

.cta-content p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

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

/* Footer */
.footer {
    background: #0F172A;
    color: #94A3B8;
    padding: 4rem 0 2rem;
}

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

.footer-col h3 {
    color: var(--white);
    font-size: 1.25rem;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.footer-col h4 {
    color: var(--white);
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 1rem;
    font-family: 'Inter', sans-serif;
}

.footer-col p {
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-col ul li {
    margin-bottom: 0.75rem;
}

.footer-col ul li a {
    color: #94A3B8;
    text-decoration: none;
    transition: color 0.2s;
}

.footer-col ul li a:hover {
    color: var(--white);
}

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

.social-links a {
    width: 38px;
    height: 38px;
    background: rgba(255,255,255,0.08);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #94A3B8;
    text-decoration: none;
    transition: all 0.2s;
}

.social-links a:hover {
    background: var(--primary);
    color: var(--white);
    transform: translateY(-2px);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255,255,255,0.08);
    color: #64748B;
    font-size: 0.875rem;
}

/* Scroll to Top */
.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s;
    z-index: 999;
    box-shadow: var(--shadow-lg);
}

.scroll-top.show {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--primary-light);
    transform: translateY(-3px);
}

/* Page Header */
.page-header {
    background: linear-gradient(135deg, rgba(30,58,95,0.95), rgba(44,82,130,0.9)),
                url('https://images.unsplash.com/photo-1438032005730-c779502df39b?w=1920&q=80') center/cover;
    color: var(--white);
    padding: 80px 0 60px;
    text-align: center;
    position: relative;
}

.page-header::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to bottom, transparent, var(--white));
}

.page-header h1 {
    font-size: 3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
    position: relative;
    z-index: 1;
}

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

/* Content Section */
.content-section {
    padding: 80px 0;
    background: linear-gradient(135deg, rgba(255,255,255,1), rgba(249,250,251,0.5)),
                url('data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTAwIiBoZWlnaHQ9IjEwMCIgeG1sbnM9Imh0dHA6Ly93d3cudzMub3JnLzIwMDAvc3ZnIj48ZGVmcz48cGF0dGVybiBpZD0iY3Jvc3MiIHdpZHRoPSIxMDAiIGhlaWdodD0iMTAwIiBwYXR0ZXJuVW5pdHM9InVzZXJTcGFjZU9uVXNlIj48cGF0aCBkPSJNIDUwIDQwIEwgNTAgNjAgTSA0MCA1MCBMIDYwIDUwIiBzdHJva2U9InJnYmEoMzAsNTgsOTUsMC4wMykiIHN0cm9rZS13aWR0aD0iMSIgZmlsbD0ibm9uZSIvPjwvcGF0dGVybj48L2RlZnM+PHJlY3Qgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgZmlsbD0idXJsKCNjcm9zcykiLz48L3N2Zz4=');\n}

.content-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 2rem;
}

.content-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.content-box p {
    line-height: 1.8;
    margin-bottom: 1rem;
}

.watchword-display {
    background: var(--gray-50);
    padding: 2rem;
    border-radius: 8px;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
}

.watchword-display p {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--primary);
    margin-bottom: 0.5rem;
}

.watchword-display span {
    color: var(--gray-500);
}

.icon-large {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

/* Branch Info */
.branch-info {
    background: var(--gray-50);
    padding: 1.5rem;
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.branch-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1rem;
}

.branch-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.branch-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.branch-info p {
    font-size: 0.9375rem;
    line-height: 1.6;
    margin-bottom: 0.5rem;
}

/* Beliefs Grid */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1rem;
    margin-top: 1.5rem;
}

.belief-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
}

.belief-item i {
    color: var(--gold);
    margin-top: 0.25rem;
    flex-shrink: 0;
}

/* Schedule */
.schedule-day {
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.schedule-day h2 {
    background: var(--primary);
    color: var(--white);
    padding: 1rem 1.5rem;
    font-size: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.schedule-day.sunday h2 {
    background: var(--gold);
}

.schedule-items {
    padding: 1rem;
}

.schedule-item {
    display: grid;
    grid-template-columns: 150px 1fr 200px;
    gap: 1rem;
    padding: 1rem;
    background: var(--gray-50);
    border-radius: 8px;
    margin-bottom: 0.75rem;
    align-items: center;
}

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

.schedule-item.highlight {
    background: linear-gradient(135deg, rgba(107,45,122,0.1), rgba(212,175,55,0.1));
    border: 1px solid var(--primary);
}

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

.schedule-item .service-name {
    font-weight: 500;
    color: var(--gray-900);
}

.schedule-item .location {
    color: var(--gray-500);
    font-size: 0.875rem;
    text-align: right;
}

/* Special Services */
.special-service {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}

.special-service:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.special-service.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(107,45,122,0.05), rgba(212,175,55,0.05));
}

.special-service i {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1rem;
}

.special-service h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.special-service p {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.service-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.frequency {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
}

.detail {
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
}

/* Ministry Full */
.ministry-full {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
    padding: 2rem;
    background: var(--white);
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

.ministry-full.reverse {
    grid-template-columns: 1fr 200px;
}

.ministry-full.reverse .ministry-content {
    order: -1;
}

.ministry-icon-large {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}

.ministry-icon-large.purple {
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
}

.ministry-icon-large.gold {
    background: linear-gradient(135deg, var(--gold), #C9A026);
}

.ministry-icon-large i {
    font-size: 5rem;
    color: var(--white);
}

.ministry-content h2 {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.ministry-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.ministry-features {
    list-style: none;
}

.ministry-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    font-size: 0.9375rem;
}

.ministry-features i {
    color: var(--gold);
}

.cta-box {
    background: linear-gradient(135deg, rgba(30,58,95,0.95), rgba(44,82,130,0.9)),
                url('https://images.unsplash.com/photo-1438232992991-995b7058bbb3?w=1200&q=80') center/cover;
    color: var(--white);
    padding: 3rem;
    border-radius: 12px;
    text-align: center;
    position: relative;
}

.cta-box h2 {
    color: var(--white);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.cta-box p {
    font-size: 1.125rem;
    margin-bottom: 2rem;
    opacity: 0.95;
}

/* Events */
.event-card {
    background: var(--white);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.event-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.event-card.featured {
    border: 2px solid var(--primary);
}

.event-image {
    height: 200px;
    background: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                var(--primary);
    background-size: cover;
    background-position: center;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
}

.event-image.worship {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1507676184212-d03ab07a01bf?w=800&q=80');
}

.event-image.prayer {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1528207776546-365bb710ee93?w=800&q=80');
}

.event-image.praise {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1516450360452-9312f5e86fc7?w=800&q=80');
}

.event-image.communion {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1502208696475-6c4f364a38c0?w=800&q=80');
}

.event-image.fellowship {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1511632765486-a01980e01a18?w=800&q=80');
}

.event-image.december {
    background-image: linear-gradient(135deg, rgba(30,58,95,0.7), rgba(44,82,130,0.7)),
                      url('https://images.unsplash.com/photo-1482517967863-00e15c9b44be?w=800&q=80');
}

.event-image i {
    font-size: 3.5rem;
    color: var(--white);
}

.event-content {
    padding: 1.5rem;
}

.event-tag {
    display: inline-block;
    background: var(--gold);
    color: var(--white);
    padding: 0.35rem 1rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.event-tag.annual {
    background: var(--primary);
}

.event-content h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
}

.event-content p {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--gray-500);
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.event-meta i {
    color: var(--gold);
    width: 16px;
}

/* Contact */
.contact-info h2,
.contact-form-box h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.contact-item {
    display: flex;
    gap: 1rem;
    margin-bottom: 2rem;
}

.contact-item i {
    font-size: 1.5rem;
    color: var(--gold);
    margin-top: 0.25rem;
}

.contact-item h4 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
}

.contact-item p {
    line-height: 1.6;
    color: var(--gray-500);
}

.contact-form-box {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
}

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

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--gray-900);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9375rem;
    transition: all 0.2s;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(107,45,122,0.08);
}

.form-group textarea {
    resize: vertical;
}

.branch-contact {
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    border: 1px solid var(--gray-200);
}

.branch-contact h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.branch-contact i {
    color: var(--primary);
}

.branch-contact p {
    color: var(--gray-500);
    line-height: 1.6;
}

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

/* Ministers Page */
.minister-profile {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 3rem;
    background: var(--white);
    padding: 3rem;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--gray-200);
    margin-bottom: 3rem;
}

.minister-profile.featured {
    border: 2px solid var(--primary);
    background: linear-gradient(135deg, rgba(30,58,95,0.02), rgba(184,134,11,0.02));
}

.minister-photo {
    text-align: center;
}

.photo-placeholder {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: var(--shadow-md);
}

.photo-placeholder i {
    font-size: 8rem;
    color: var(--white);
}

.photo-placeholder.real-photo {
    background: var(--white);
    padding: 0;
    overflow: hidden;
}

.photo-placeholder.real-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.minister-title {
    background: var(--gold);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1.1rem;
}

.minister-info h2 {
    font-size: 2.25rem;
    margin-bottom: 0.5rem;
}

.minister-info .position {
    font-size: 1.25rem;
    color: var(--gold);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.minister-info .bio {
    line-height: 1.8;
    font-size: 1.0625rem;
    margin-bottom: 2rem;
}

.minister-highlights {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.highlight-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.highlight-item i {
    font-size: 1.5rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.highlight-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.highlight-item p {
    color: var(--gray-500);
    margin: 0;
}

.minister-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    text-align: center;
    transition: all 0.3s;
}

.minister-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.minister-photo-small {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--primary), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.minister-photo-small i {
    font-size: 3rem;
    color: var(--white);
}

.minister-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

.minister-card .role {
    color: var(--gold);
    font-weight: 600;
    font-size: 1rem;
    margin-bottom: 1rem;
}

.minister-card .description {
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    font-size: 0.9375rem;
}

.minister-contact {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--primary);
}

.minister-contact i {
    font-size: 1rem;
}

.branch-pastor {
    background: var(--white);
    padding: 2rem;
    border-radius: 12px;
    box-shadow: var(--shadow);
    border: 1px solid var(--gray-200);
    transition: all 0.3s;
}

.branch-pastor:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg);
}

.branch-pastor-header {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 2px solid var(--gray-100);
}

.branch-pastor-header i {
    font-size: 2rem;
    color: var(--primary);
    margin-top: 0.25rem;
}

.branch-pastor-header h3 {
    font-size: 1.25rem;
    margin-bottom: 0.25rem;
}

.branch-location {
    color: var(--gray-500);
    font-size: 0.9375rem;
}

.pastor-info {
    padding-left: 3rem;
}

.pastor-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.pastor-role {
    color: var(--gold);
    font-weight: 600;
    font-size: 0.9375rem;
    margin-bottom: 0.75rem;
}

.pastor-desc {
    color: var(--gray-500);
    line-height: 1.6;
    font-size: 0.9375rem;
}

.trustees-section {
    margin-top: 2rem;
}

.trustee-intro {
    text-align: center;
    margin-bottom: 2rem;
}

.trustee-intro p {
    max-width: 800px;
    margin: 1.5rem auto 0;
    line-height: 1.8;
    font-size: 1.0625rem;
}

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

.trustee-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.5rem;
    background: var(--gray-50);
    border-radius: 8px;
    border-left: 4px solid var(--primary);
    transition: all 0.3s;
}

.trustee-item:hover {
    background: var(--white);
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.trustee-item i {
    color: var(--gold);
    font-size: 1.5rem;
    margin-top: 0.25rem;
}

.trustee-item strong {
    display: block;
    font-size: 1.0625rem;
    margin-bottom: 0.25rem;
    color: var(--gray-900);
}

.trustee-item p {
    color: var(--primary);
    font-weight: 600;
    font-size: 0.9375rem;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .mobile-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 67px;
        flex-direction: column;
        background: rgba(255,255,255,0.98);
        width: 100%;
        padding: 2rem 0;
        box-shadow: var(--shadow-lg);
        gap: 0;
        transition: left 0.3s;
        backdrop-filter: blur(10px);
    }

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

    .nav-menu li {
        width: 100%;
        text-align: center;
        padding: 0.75rem 0;
    }

    .nav-menu a::after {
        left: 50%;
        transform: translateX(-50%);
    }

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

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

    .grid-2,
    .grid-3,
    .grid-4 {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

    .schedule-item .location {
        text-align: left;
    }

    .ministry-full,
    .ministry-full.reverse {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .ministry-icon-large {
        width: 150px;
        height: 150px;
        margin: 0 auto;
    }

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

    .ministry-full.reverse .ministry-content {
        order: 0;
    }

    .minister-profile {
        grid-template-columns: 1fr;
        gap: 2rem;
        padding: 2rem;
    }

    .photo-placeholder {
        width: 200px;
        height: 200px;
    }

    .photo-placeholder i {
        font-size: 5rem;
    }

    .pastor-info {
        padding-left: 0;
    }
}

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

    .watchword p {
        font-size: 1.25rem;
    }

    .hero-buttons,
    .cta-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }
}
