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

/* Announcement Banner */
.announcement-banner {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 0.75rem 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1001;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}

.announcement-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.announcement-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.announcement-text {
    font-size: 0.95rem;
    line-height: 1.4;
    text-align: center;
}

.announcement-text strong {
    font-weight: 700;
}

.announcement-btn {
    background: var(--white);
    color: var(--gold);
    padding: 0.4rem 1.2rem;
    border-radius: 20px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.85rem;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.announcement-btn:hover {
    background: var(--off-white);
    transform: translateY(-1px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

:root {
    --gold: #DAA520;
    --gold-light: #F7DC6F;
    --gold-dark: #B7950B;
    --white: #FFFFFF;
    --off-white: #FAFAFA;
    --text-dark: #2C2C2C;
    --text-light: #666666;
    --shadow-light: rgba(218, 165, 32, 0.1);
    --shadow-medium: rgba(218, 165, 32, 0.2);
    --shadow-heavy: rgba(218, 165, 32, 0.3);
}

html {
    scroll-behavior: smooth;
}

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

/* Typography */
h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 1rem;
    letter-spacing: -0.01em;
}

h1 {
    font-size: 3.5rem;
    font-weight: 700;
}

h2 {
    font-size: 2.5rem;
}

h3 {
    font-size: 1.8rem;
}

p {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

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

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.65rem 2rem 0.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 100%;
}

.logo-image {
    width: 200px;
    height: 100px;
    object-fit: contain;
    border-radius: 8px;
    transition: transform 0.3s ease;
    will-change: transform;
}

.logo-image:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 40px;
    height: 40px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.5rem;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    margin: 0;
}

.nav-link {
    text-decoration: none;
    color: var(--text-dark);
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    white-space: normal;
    line-height: 1.5;
}

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold);
}

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

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

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

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--gold);
    margin: 3px 0;
    transition: 0.3s;
}

/* Intro Section - Flowbite Inspired */
.intro-section {
    background: linear-gradient(to bottom, var(--white) 0%, var(--off-white) 100%);
    padding: 5rem 0;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}

.intro-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.intro-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.btn-learn-more {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 6px rgba(59, 130, 246, 0.3);
}

.btn-learn-more:hover {
    background: linear-gradient(135deg, #2563eb 0%, #1d4ed8 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 12px rgba(59, 130, 246, 0.4);
}

.btn-learn-more .arrow-icon {
    width: 14px;
    height: 14px;
    transition: transform 0.3s ease;
}

.btn-learn-more:hover .arrow-icon {
    transform: translateX(4px);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 8rem 0 0 0;
    margin: 0;
    overflow: hidden;
}

/* Hero Video Background */
.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

/* Video Overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(250, 250, 250, 0.85) 100%);
    z-index: 1;
}

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

.hero-halo {
    position: absolute;
    top: -80px;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 300px;
    opacity: 0.6;
    z-index: 2;
}

.hero-logo {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-title {
    color: var(--gold);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: 800;
    margin-bottom: 2rem;
    text-shadow: 0 2px 10px var(--shadow-light), 0 0 20px rgba(218, 165, 32, 0.3);
    letter-spacing: 2px;
    line-height: 1.1;
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.5rem);
    color: var(--text-light);
    margin-bottom: 2.5rem;
    line-height: 1.8;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    font-weight: 500;
}

.hero-divider {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100px;
    overflow: hidden;
    z-index: 2;
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 1rem 2.5rem;
    text-decoration: none;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px var(--shadow-medium);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px var(--shadow-heavy);
}

.btn-outline {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.btn-outline:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

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

/* Sections */
.section {
    padding: 6rem 0;
    text-align: center;
    position: relative;
}

.section-alt {
    background: linear-gradient(to bottom, var(--off-white) 0%, var(--white) 100%);
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
}

.global-reach-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.testimonies-title {
    font-size: clamp(1.75rem, 3.5vw, 2.75rem);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 2rem;
}

.highlight-gold {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 900;
    position: relative;
    display: inline-block;
}

.section-subtitle {
    color: var(--text-light);
    font-size: 1.2rem;
    margin-bottom: 0;
}

.section-description {
    color: var(--text-light);
    font-size: 1.1rem;
    max-width: 600px;
    margin: 0 auto;
}

.section-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

/* Spinning Globe Animation */
.globe-container {
    display: flex;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.spinning-globe {
    width: 120px;
    height: 120px;
    animation: spin-globe 12s linear infinite;
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
    will-change: transform;
}

@keyframes spin-globe {
    0% {
        transform: rotateY(0deg);
    }
    100% {
        transform: rotateY(360deg);
    }
}

.spinning-globe:hover {
    animation-play-state: paused;
}

.section-divider {
    width: 100%;
    height: 60px;
    overflow: hidden;
    margin-top: 3rem;
}

/* Content Grid */
.content-grid {
    display: grid;
    gap: 3rem;
    text-align: left;
    max-width: 900px;
    margin: 0 auto;
}

.content-column {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
}

.lead-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    margin-bottom: 2rem;
}


.highlight-box {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.highlight-icon {
    width: 30px;
    height: 30px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.highlight-text {
    margin: 0;
    font-size: 1.1rem;
    color: var(--text-dark);
}

.emphasis {
    color: var(--gold);
    font-weight: 600;
    font-size: 1.1rem;
}

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

.mission-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(218, 165, 32, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.mission-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    transform: scaleX(0);
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.mission-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: rgba(218, 165, 32, 0.15);
}

.mission-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.mission-icon svg {
    width: 50px;
    height: 50px;
}

.mission-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.mission-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    text-align: left;
    margin-top: 3rem;
}

.values-column {
    background: var(--white);
    padding: 2rem;
    border-radius: 8px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12);
    border: 1px solid #e5e5e5;
    transition: all 0.3s ease;
    position: relative;
}

.values-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gold);
    border-radius: 8px 8px 0 0;
}

.values-column:hover {
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
    border-color: #d5d5d5;
}

.values-title {
    color: var(--gold);
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.4rem;
    padding-bottom: 1rem;
    border-bottom: 2px solid #f0f0f0;
}

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

.value-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem;
    border-radius: 6px;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.value-item:hover {
    background: #f8f8f8;
    border-left-color: var(--gold);
}

.value-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.value-item span {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* CTA Center */
.cta-center {
    margin-top: 4rem;
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.sparkle {
    font-size: 2rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 0.8; }
    50% { transform: scale(1.2) rotate(180deg); opacity: 1; }
}

/* Testimonials Slideshow */
.testimonials-carousel {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    overflow: hidden;
}

.testimonials-container {
    display: flex;
    transition: transform 0.5s ease-in-out;
}

.testimonial-slide {
    min-width: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
    display: none;
}

.testimonial-slide.active {
    opacity: 1;
    display: block;
}

.testimonial-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
    margin: 2rem auto 0;
    max-width: 800px;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

/* Carousel Controls */
.carousel-controls {
    display: flex;
    justify-content: space-between;
    position: absolute;
    top: 50%;
    left: 20px;
    right: 20px;
    transform: translateY(-50%);
    pointer-events: none;
    z-index: 10;
}

.carousel-btn {
    background: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50%;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    pointer-events: all;
    box-shadow: 0 4px 15px var(--shadow-light);
}

.carousel-btn:hover {
    background: var(--gold);
    transform: scale(1.1);
}

.carousel-btn:hover svg path {
    stroke: var(--white);
}

.carousel-btn svg {
    width: 20px;
    height: 20px;
}

.prev-btn {
    margin-left: 0;
}

.next-btn {
    margin-right: 0;
}

/* Carousel Dots */
.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--shadow-light);
    cursor: pointer;
    transition: all 0.3s ease;
}

.dot.active,
.dot:hover {
    background: var(--gold);
    transform: scale(1.2);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 3rem;
    width: 40px;
    height: 40px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-light);
}

.quote-icon svg {
    width: 24px;
    height: 24px;
}

.testimonial-text {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 2rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1.2rem;
}

.author-info h4 {
    margin: 0;
    color: var(--gold);
    font-size: 1.1rem;
}

.author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Section - Flowbite Hero Pattern */
.cta-section-hero {
    position: relative;
    background: linear-gradient(to bottom, #FFFDF7 0%, #FFF9E6 100%);
    padding: 5rem 0;
    overflow: hidden;
}

.cta-hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Badge Component */
.cta-badge {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.25rem 0.25rem 0.25rem 0.25rem;
    padding-right: 1rem;
    margin-bottom: 1.75rem;
    font-size: 0.875rem;
    color: var(--gold-dark);
    background: rgba(247, 220, 111, 0.2);
    border-radius: 9999px;
    transition: all 0.3s ease;
    text-decoration: none;
    gap: 0.75rem;
    box-shadow: 0 2px 8px rgba(218, 165, 32, 0.15);
}

.cta-badge:hover {
    background: rgba(247, 220, 111, 0.3);
    box-shadow: 0 4px 12px rgba(218, 165, 32, 0.25);
}

.badge-label {
    background: var(--gold);
    color: var(--white);
    padding: 0.375rem 1rem;
    border-radius: 9999px;
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.badge-text {
    font-weight: 500;
    font-size: 0.875rem;
}

.badge-arrow {
    width: 0.625rem;
    height: 0.625rem;
    margin-left: 0.5rem;
    transition: transform 0.3s ease;
}

.cta-badge:hover .badge-arrow {
    transform: translateX(4px);
}

/* Hero Title */
.cta-hero-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-family: 'Playfair Display', serif;
}

.cta-hero-underline {
    text-decoration: underline;
    text-decoration-color: var(--gold);
    text-decoration-thickness: 8px;
    text-underline-offset: 3px;
    text-decoration-skip-ink: none;
}

/* Hero Subtitle */
.cta-hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 400;
    line-height: 1.75;
    color: var(--text-light);
    margin-bottom: 2.5rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

/* Hero Buttons */
.cta-hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    align-items: center;
}

.cta-hero-btn {
    display: inline-block;
    padding: 1rem 2rem;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    cursor: pointer;
    min-width: 180px;
    text-align: center;
}

.cta-hero-btn-primary {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

.cta-hero-btn-primary:hover {
    background: linear-gradient(135deg, var(--gold-dark) 0%, var(--gold) 100%);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(218, 165, 32, 0.4);
}

.cta-hero-btn-secondary {
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
}

.cta-hero-btn-secondary:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.3);
}

/* Gradient Overlay */
.cta-hero-gradient {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(247, 220, 111, 0.08) 0%, rgba(218, 165, 32, 0.05) 100%);
    pointer-events: none;
    z-index: 0;
}

/* Responsive Design for CTA Hero */
@media (max-width: 768px) {
    .cta-section-hero {
        padding: 4rem 0;
    }
    
    .cta-hero-container {
        padding: 0 1.5rem;
    }
    
    .cta-badge {
        font-size: 0.75rem;
        padding-right: 0.75rem;
    }
    
    .badge-text {
        font-size: 0.75rem;
    }
    
    .cta-hero-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-hero-btn {
        width: 100%;
        max-width: 300px;
    }
}

@media (max-width: 480px) {
    .cta-section-hero {
        padding: 3rem 0;
    }
    
    .cta-hero-title {
        font-size: 2rem;
    }
    
    .cta-hero-subtitle {
        font-size: 1rem;
    }
    
    .badge-label {
        padding: 0.25rem 0.75rem;
        font-size: 0.7rem;
    }
}

/* Footer */
.footer {
    background: linear-gradient(135deg, #1a1a1a 0%, #000000 100%);
    color: var(--white);
    padding: 3rem 0 2rem;
    text-align: center;
    border-top: 3px solid var(--gold);
}

.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.footer-logo-icon {
    width: 40px;
    height: 40px;
}

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

.footer-tagline {
    font-size: 1.1rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-nav a {
    color: var(--white);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-nav a:hover {
    color: var(--gold);
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin: 2.5rem 0;
}

.footer-social-link {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    position: relative;
    overflow: hidden;
}

.footer-social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(218, 165, 32, 0.2) 0%, rgba(218, 165, 32, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.footer-social-link:hover {
    color: var(--gold);
    background: rgba(218, 165, 32, 0.15);
    border-color: rgba(218, 165, 32, 0.3);
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 8px 20px rgba(218, 165, 32, 0.3);
}

.footer-social-link:hover::before {
    opacity: 1;
}

.footer-social-link svg {
    width: 20px;
    height: 20px;
    position: relative;
    z-index: 1;
    transition: transform 0.3s ease;
}

.footer-social-link:hover svg {
    transform: scale(1.1);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 1.5rem;
    opacity: 0.7;
}

.footer-bottom p {
    margin: 0;
    font-size: 0.9rem;
}

.footer-year {
    display: none;
}

/* Responsive Design */
@media (max-width: 768px) {
    /* Hero Service Mobile Adjustments */
    .hero-service {
        min-height: 50vh;
    }
    
    .hero-service-content {
        padding: 1.5rem;
        margin-top: -5rem;
        margin-left: auto;
        margin-right: auto;
        width: 90%;
        max-width: 100%;
    }
    
    .hero-service-content h1 {
        font-size: 2.5rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-service-content p {
        font-size: 1.2rem;
        margin-left: auto;
        margin-right: auto;
    }
    
    /* Connect With Us Page - Show upper body on mobile */
    body:has([href="connect-with-us.html"].nav-link.active) .hero-service {
        background-position: center 15%;
    }
    
    /* Hero content mobile adjustment */
    .hero-content[style*="margin-top"] {
        margin-top: 4rem !important;
    }
    
    /* Prevent horizontal overflow */
    html, body {
        overflow-x: hidden;
        width: 100%;
        max-width: 100vw;
        position: relative;
    }
    
    body {
        font-size: 16px;
        -webkit-text-size-adjust: 100%;
    }
    
    /* Ensure all containers respect viewport width */
    * {
        max-width: 100%;
    }
    
    /* iPhone Pro/Pro Max specific optimizations */
    @supports (-webkit-touch-callout: none) {
        /* iOS Safari specific fixes */
        body {
            min-height: -webkit-fill-available;
        }
        
        .navbar {
            position: -webkit-sticky;
            position: sticky;
        }
    }
    
    /* Make banner non-fixed on mobile to prevent overlap */
    .announcement-banner {
        position: relative;
        padding: 0.4rem 0;
        width: 100%;
        z-index: 1;
        overflow: hidden;
    }
    
    .announcement-content {
        padding: 0 1rem;
        gap: 0.4rem;
        font-size: 0.8rem;
        width: 100%;
        flex-wrap: nowrap;
        align-items: center;
        justify-content: center;
    }
    
    .announcement-text {
        font-size: 0.75rem;
        line-height: 1.3;
        text-align: center;
        white-space: normal;
    }
    
    .announcement-btn {
        padding: 0.3rem 0.8rem;
        font-size: 0.8rem;
        white-space: nowrap;
        flex-shrink: 0;
    }
    
    .announcement-icon {
        width: 16px;
        height: 16px;
        flex-shrink: 0;
    }
    
    /* Make navbar sticky so it sits below banner */
    .navbar {
        position: sticky;
        top: 0;
        width: 100%;
        z-index: 1002;
    }
    
    /* Mobile header: logo left, hamburger right */
    .nav-container {
        padding: 0.5rem 0.5rem 0.5rem 0;
        width: 100%;
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        gap: 0.5rem;
    }
    
    .logo {
        justify-content: flex-start;
        width: auto;
        padding-left: 0;
        margin-left: -8px;
    }
    
    .logo-image {
        width: 140px;
        height: 64px;
        max-width: 100%;
    }
    
    /* Modern Mobile Side Menu - White/Gold */
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85vw;
        max-width: 360px;
        min-height: 100vh;
        min-height: -webkit-fill-available;
        height: 100%;
        background: var(--white);
        flex-direction: column;
        padding: calc(5rem + env(safe-area-inset-top, 0)) 1.5rem calc(2rem + env(safe-area-inset-bottom, 0));
        gap: 0;
        align-items: flex-start;
        box-shadow: -10px 0 30px rgba(0, 0, 0, 0.15);
        border-left: 1px solid rgba(218, 165, 32, 0.15);
        transition: right 0.3s ease;
        z-index: 1003;
        overflow-y: auto;
        overflow-x: hidden;
        -webkit-overflow-scrolling: touch;
    }
    
    /* Remove old overlay */
    .nav-menu::before {
        display: none !important;
    }
    
    .nav-menu.active {
        right: 0;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid rgba(218, 165, 32, 0.15);
        padding: 0;
    }
    
    .nav-menu li:last-child {
        border-bottom: 0;
    }
    
    .nav-link {
        display: block;
        padding: 0.85rem 0;
        font-size: 1.1rem;
        font-weight: 600;
        color: var(--text-dark);
        white-space: normal;
        word-wrap: break-word;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
        line-height: 1.6;
        min-height: 44px;
    }
    
    .nav-link:hover,
    .nav-link.active {
        color: var(--gold);
    }
    
    .nav-link::after {
        background: var(--gold);
        height: 2px;
    }
    
    .menu-toggle {
        display: flex;
        position: relative;
        z-index: 1004;
    }
    
    /* Hero sections */
    .hero {
        width: 100%;
        padding: 6rem 1rem 4rem;
    }
    
    .hero-content {
        width: 100%;
        padding: 0 1rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    h1 {
        font-size: 2.5rem;
        word-wrap: break-word;
    }
    
    h2 {
        font-size: 2rem;
        word-wrap: break-word;
    }
    
    h3 {
        font-size: 1.5rem;
        word-wrap: break-word;
    }
    
    .section {
        padding: 4rem 0;
        width: 100%;
    }
    
    .container {
        padding: 0 1rem;
        width: 100%;
        max-width: 100%;
    }
    
    /* Images - prevent cropping and overflow */
    img {
        max-width: 100%;
        height: auto;
        display: block;
    }
    
    .gallery-image,
    .member-photo-img,
    .connect-photo {
        width: 100%;
        height: auto;
        object-fit: contain;
        border-radius: 15px;
    }
    
    /* Service gallery specific */
    .service-gallery-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
    }
    
    .gallery-image {
        height: auto;
        min-height: 250px;
        object-fit: cover;
    }
    
    /* Grids */
    .mission-grid,
    .vision-grid,
    .connect-grid,
    .accomplishments-grid,
    .modules-grid,
    .beliefs-grid,
    .benefits-grid,
    .giving-options,
    .impact-grid,
    .contact-grid,
    .social-grid {
        grid-template-columns: 1fr;
        width: 100%;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        width: 100%;
        padding: 0;
    }
    
    .values-column {
        margin: 0;
        width: 100%;
    }
    
    /* Cards */
    .mission-item,
    .values-column,
    .content-column,
    .testimonial-card,
    .vision-item,
    .connect-item,
    .accomplishment-card,
    .belief-card,
    .benefit-card,
    .giving-card,
    .contact-card,
    .social-card {
        width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }
    
    /* Testimonials Mobile Adjustments */
    .testimonial-card {
        padding: 2rem 1.5rem 1.5rem;
        min-height: auto;
        margin: 1rem auto 3.5rem;
    }
    
    .testimonial-text {
        font-size: 0.95rem;
        line-height: 1.6;
        margin-bottom: 1.5rem;
    }
    
    .carousel-btn {
        width: 36px;
        height: 36px;
        position: static;
    }
    
    .carousel-btn svg {
        width: 14px;
        height: 14px;
    }
    
    .carousel-controls {
        position: static;
        transform: none;
        justify-content: center;
        gap: 1rem;
        margin-top: 1.5rem;
        pointer-events: all;
    }
    
    .carousel-dots {
        display: none;
    }
    
    /* Buttons */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
    }
    
    /* Footer */
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .footer-bottom p {
        display: none;
    }
    
    .footer-year {
        display: block;
        margin: 0;
        font-size: 0.9rem;
    }
    
    /* CTA Buttons Mobile Fix */
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        width: 100%;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        max-width: 300px;
        text-align: center;
        padding: 1rem 2rem;
    }
    
    /* Video embeds */
    .youtube-embed {
        width: 100%;
        padding-bottom: 56.25%;
    }
    
    /* Forms */
    .contact-form,
    .reserve-form-container {
        width: 100%;
        padding: 2rem 1.5rem;
        box-sizing: border-box;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    /* Tables and wide content */
    table {
        width: 100%;
        display: block;
        overflow-x: auto;
    }
    
    /* Prevent text overflow */
    p, li, span, a {
        word-wrap: break-word;
        overflow-wrap: break-word;
    }
}

/* iPhone Pro (390px) and Pro Max (428px) optimizations */
@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
        letter-spacing: 1px;
        line-height: 1.2;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    .btn {
        padding: 0.8rem 2rem;
        font-size: 0.9rem;
        min-height: 44px; /* iOS touch target */
    }
    
    .mission-item {
        padding: 2rem 1.5rem;
    }
    
    .values-column {
        padding: 1.5rem;
        border-radius: 12px;
    }
    
    .values-title {
        font-size: 1.3rem;
        margin-bottom: 1.25rem;
    }
    
    .value-item {
        padding: 0.65rem;
        min-height: 44px; /* iOS touch target */
    }
    
    .value-item span {
        font-size: 0.95rem;
        line-height: 1.5;
    }
    
    /* Ensure touch targets are large enough */
    .nav-link,
    .carousel-btn,
    .dot,
    a,
    button {
        min-height: 44px;
        min-width: 44px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
    }
    
    .nav-link {
        padding: 1rem 0;
    }
    
    /* Fix first gallery image on mobile - make it stand out */
    .gallery-image {
        height: 250px;
    }
    
    .gallery-image:first-child {
        height: auto;
        min-height: 350px;
        object-fit: contain;
    }
    
    /* Reduce gap between widget and button on mobile for both YouTube and Instagram */
    .instagram-cta {
        margin-top: 2rem !important;
        margin-bottom: 1rem;
    }
    
    .social-description {
        margin-top: 4.5rem !important;
    }
    
    /* Ensure SnapWidget iframes are responsive on mobile */
    .snapwidget-widget {
        max-width: 100% !important;
        width: 100% !important;
    }
}

/* iPhone Pro Max specific (428px width) */
@media (min-width: 428px) and (max-width: 480px) {
    .container {
        padding: 0 1.25rem;
    }
    
    .values-column {
        padding: 1.75rem;
    }
    
    .mission-item {
        padding: 2.25rem 1.75rem;
    }
}

/* Safe area insets for notched iPhones */
@supports (padding: max(0px)) {
    body {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .navbar {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .announcement-banner {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    
    .footer {
        padding-bottom: max(2rem, env(safe-area-inset-bottom));
    }
}

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

.section {
    animation: fadeInUp 0.8s ease-out;
}

/* Remove bottom padding/margin from body */
body {
    margin-bottom: 0;
    padding-bottom: 0;
}

.footer {
    margin-bottom: 0;
    padding-bottom: 2rem;
}

/* Page Hero Styles */
.page-hero {
    min-height: 60vh;
    padding-top: 12rem;
}

/* Leadership Page Styles */
.leadership-grid {
    display: grid;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.leader-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    display: grid;
    grid-template-columns: 250px 1fr;
    gap: 3rem;
    align-items: start;
    text-align: left;
}

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

.leader-image svg {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.leader-info h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.leader-info h4 {
    color: var(--text-light);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
}

.leader-info p {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
}

.leader-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 4px solid var(--gold);
}

.highlight-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.highlight-item span {
    font-weight: 500;
    color: var(--text-dark);
}

/* Vision Grid */
.vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.vision-item {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.vision-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.vision-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.vision-icon svg {
    width: 50px;
    height: 50px;
}

.vision-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.vision-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
}

/* Connect Grid */
.connect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.connect-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

.connect-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.connect-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.connect-icon svg {
    width: 30px;
    height: 30px;
}

.connect-item h3 {
    color: var(--gold);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.connect-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

/* Connect Photo Container */
.connect-photo-container {
    max-width: 600px;
    margin: 0 auto 4rem;
    position: relative;
    animation: fadeInUp 1s ease-out;
}

.connect-photo {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(218, 165, 32, 0.3),
        0 0 40px rgba(218, 165, 32, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) border-box;
}

.connect-photo:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(218, 165, 32, 0.4),
        0 0 60px rgba(218, 165, 32, 0.2);
}

.connect-photo-container::before {
    content: '';
    position: absolute;
    top: -10px;
    left: -10px;
    right: -10px;
    bottom: -10px;
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    border-radius: 25px;
    opacity: 0.15;
    z-index: 0;
    animation: pulse-glow 3s ease-in-out infinite;
}

@keyframes pulse-glow {
    0%, 100% {
        opacity: 0.15;
        transform: scale(1);
    }
    50% {
        opacity: 0.25;
        transform: scale(1.02);
    }
}

/* Responsive Design for Leadership Page */
@media (max-width: 768px) {
    .leader-card {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 2rem;
        padding: 2rem;
    }
    
    .leader-image svg {
        width: 150px;
        height: 150px;
    }
    
    .vision-grid,
    .connect-grid {
        grid-template-columns: 1fr;
    }
    
    .page-hero {
        min-height: 50vh;
        padding-top: 6rem;
    }
}

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

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

.accomplishment-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.accomplishment-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.accomplishment-icon svg {
    width: 50px;
    height: 50px;
}

.accomplishment-card h3 {
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-size: 1.5rem;
}

.book-list, .music-list {
    text-align: left;
    margin-top: 1rem;
}

.book-list ol {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.book-list li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.4;
    padding-left: 1.8rem;
    position: relative;
}

.book-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><path d="M18 2H6c-1.1 0-2 .9-2 2v16c0 1.1.9 2 2 2h12c1.1 0 2-.9 2-2V4c0-1.1-.9-2-2-2zM6 4h5v8l-2.5-1.5L6 12V4z" fill="%23D4AF37"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

.music-list h4 {
    color: var(--gold);
    margin-top: 1.5rem;
    margin-bottom: 0.5rem;
    font-size: 1.1rem;
}

.music-items {
    list-style: none;
    padding-left: 0;
    margin-bottom: 1rem;
}

.music-items li {
    margin-bottom: 0.5rem;
    color: var(--text-light);
    line-height: 1.4;
    padding-left: 1.8rem;
    position: relative;
}

.music-items li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.1rem;
    width: 16px;
    height: 16px;
    background-image: url('data:image/svg+xml;utf8,<svg viewBox="0 0 24 24" xmlns="http://www.w3.org/2000/svg"><circle cx="12" cy="12" r="10" fill="%23D4AF37"/><path d="M9 8v8l6-4z" fill="white"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

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

.module-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.5rem;
    background: var(--off-white);
    border-radius: 15px;
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.module-item:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.module-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.module-item span {
    font-weight: 500;
    color: var(--text-dark);
    line-height: 1.4;
}

/* Responsive Design for New Sections */
@media (max-width: 768px) {
    .accomplishments-grid {
        grid-template-columns: 1fr;
    }
    
    .modules-grid {
        grid-template-columns: 1fr;
    }
    
    .accomplishment-card {
        padding: 2rem;
    }
    
    .module-item {
        padding: 1rem;
    }
}

/* Service Page Styles */
.service-info-grid {
    display: grid;
    gap: 3rem;
    max-width: 800px;
    margin: 0 auto;
}

.service-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
}

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

.service-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.service-icon svg {
    width: 60px;
    height: 60px;
}

.service-card h3 {
    color: var(--gold);
    font-size: 2rem;
    margin-bottom: 1rem;
}

.service-description {
    font-size: 1.3rem;
    color: var(--text-dark);
    font-weight: 600;
    margin-bottom: 2rem;
}

.service-features {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-top: 2rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.feature-item:hover {
    background: var(--white);
    transform: translateX(5px);
    box-shadow: 0 5px 15px var(--shadow-light);
}

.feature-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature-item span {
    font-weight: 600;
    color: var(--text-dark);
}

/* Notice Card */
.notice-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    border: 3px solid var(--gold);
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px var(--shadow-light);
}

.notice-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold) 100%);
    z-index: 1;
}

.notice-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 100%);
    border-radius: 50%;
    border: 3px solid var(--gold-dark);
    position: relative;
    z-index: 2;
}

.notice-icon svg {
    width: 40px;
    height: 40px;
}

.notice-icon svg path,
.notice-icon svg circle {
    stroke: var(--white);
}

.notice-card h2 {
    color: var(--gold-dark);
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
    font-weight: 800;
    letter-spacing: 1px;
}

.notice-text {
    font-size: 1.2rem;
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.7;
    position: relative;
    z-index: 2;
    margin: 0;
}

/* Service Testimonials Grid */
.service-testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.service-testimonial-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    position: relative;
    text-align: left;
    transition: all 0.3s ease;
}

.service-testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.service-testimonial-card .quote-icon {
    position: absolute;
    top: -15px;
    left: 2.5rem;
    width: 35px;
    height: 35px;
    background: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 5px 15px var(--shadow-light);
    border: 2px solid var(--gold);
}

.service-testimonial-card .quote-icon svg {
    width: 20px;
    height: 20px;
}

.service-testimonial-card .testimonial-text {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
    font-style: italic;
    margin-top: 1rem;
}

.service-testimonial-card .testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.service-testimonial-card .author-avatar {
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.service-testimonial-card .author-info h4 {
    margin: 0;
    color: var(--gold);
    font-size: 1rem;
}

.service-testimonial-card .author-info p {
    margin: 0;
    color: var(--text-light);
    font-size: 0.85rem;
}

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

.faq-item {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: left;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.faq-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.faq-item h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.faq-item p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 1rem;
}

/* Responsive Design for Service Page */
@media (max-width: 768px) {
    .service-features {
        grid-template-columns: 1fr;
    }
    
    .service-testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .faq-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: 2rem;
    }
    
    .notice-card {
        padding: 2rem;
    }
    
    .service-testimonial-card {
        padding: 2rem;
    }
    
    .faq-item {
        padding: 2rem;
    }
    
    .notice-card h2 {
        font-size: 2rem;
    }
    
    .service-card h3 {
        font-size: 1.5rem;
    }
}

/* Beliefs Page Styles */
.beliefs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.belief-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.belief-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.belief-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.belief-icon svg {
    width: 50px;
    height: 50px;
}

.belief-card h3 {
    color: var(--gold);
    font-size: 1.4rem;
    margin-bottom: 1rem;
    text-align: center;
}

.belief-card p {
    color: var(--text-light);
    line-height: 1.7;
    text-align: left;
    margin: 0;
    font-size: 1rem;
}

/* Doctrine Accordion */
.doctrine-accordion {
    max-width: 900px;
    margin: 0 auto;
    margin-top: 3rem;
}

.doctrine-item {
    background: var(--white);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    box-shadow: 0 5px 20px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.doctrine-item:hover {
    box-shadow: 0 10px 30px var(--shadow-medium);
}

.doctrine-header {
    padding: 2rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(135deg, var(--off-white) 0%, var(--white) 100%);
    border-left: 4px solid var(--gold);
    transition: all 0.3s ease;
}

.doctrine-header:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
}

.doctrine-header h3 {
    color: var(--gold);
    font-size: 1.3rem;
    margin: 0;
    flex: 1;
}

.accordion-icon {
    width: 24px;
    height: 24px;
    transition: transform 0.3s ease;
}

.doctrine-item.active .accordion-icon {
    transform: rotate(180deg);
}

.doctrine-content {
    padding: 0 2rem;
    max-height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
    background: var(--white);
}

.doctrine-item.active .doctrine-content {
    padding: 2rem;
    max-height: 1000px;
}

.doctrine-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 1rem;
    text-align: left;
}

.doctrine-content ul {
    padding-left: 0;
    margin-bottom: 1rem;
    list-style-position: outside;
    text-align: left;
}

.doctrine-content li {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 0.8rem;
    font-size: 1rem;
    margin-left: 1.5rem;
    padding-left: 0.5rem;
    text-align: left;
}

.doctrine-content strong {
    color: var(--gold);
    font-weight: 600;
    display: block;
    margin-bottom: 0.3rem;
}

/* Responsive Design for Beliefs Page */
@media (max-width: 768px) {
    .beliefs-grid {
        grid-template-columns: 1fr;
    }
    
    .belief-card {
        padding: 2rem;
    }
    
    .doctrine-header {
        padding: 1.5rem;
    }
    
    .doctrine-item.active .doctrine-content {
        padding: 1.5rem;
    }
    
    .doctrine-header h3 {
        font-size: 1.1rem;
    }
}

/* Membership Page Styles */
.message-content {
    max-width: 1200px;
    margin: 0 auto;
}

.message-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    display: flex;
    gap: 2.5rem;
    align-items: flex-start;
}

.message-photo {
    flex-shrink: 0;
    width: 380px;
}

.photo-signature {
    text-align: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold);
    margin-top: 1rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.message-text {
    flex: 1;
    min-width: 0;
}

.member-photo-img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 
        0 20px 60px rgba(218, 165, 32, 0.3),
        0 0 40px rgba(218, 165, 32, 0.1);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    border: 4px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) border-box;
}

.member-photo-img:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 
        0 30px 80px rgba(218, 165, 32, 0.4),
        0 0 60px rgba(218, 165, 32, 0.2);
}

.message-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.highlight-section {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    padding: 2rem;
    border-radius: 15px;
    margin: 2rem 0;
    border-left: 4px solid var(--gold);
}

.highlight-section h3 {
    color: var(--gold-dark);
    font-size: 1.3rem;
    margin-bottom: 1rem;
    text-align: left;
}

.highlight-section .heading-gradient {
    text-align: left;
}

.highlight-section .heading-gradient h3 {
    text-align: left;
}

/* Gradient Heading Style */
.heading-gradient {
    text-align: left;
    margin-bottom: 1.75rem;
}

.heading-gradient h3 {
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-weight: 800;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    letter-spacing: 1px;
    margin: 0 0 0.75rem;
    line-height: 1.3;
    text-align: left;
}

.heading-gradient .rule {
    width: 90px;
    height: 4px;
    margin: 0;
    background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
    border-radius: 4px;
    opacity: 0.9;
}

.commitment-list {
    list-style: none;
    padding: 0;
    text-align: left;
}

.commitment-list li {
    padding: 0.5rem 0;
    padding-left: 2rem;
    position: relative;
    color: var(--text-dark);
    font-weight: 500;
    text-align: left;
}

.commitment-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-weight: bold;
    font-size: 1.2rem;
}

/* Smooth Bullet Animations for Commitment List */
.commitment-list li {
    display: block;
    opacity: 0;
    transform: translateX(-20px);
    animation: slideInReveal 6s ease-in-out infinite;
}

.commitment-list li:nth-child(1) {
    animation-delay: 0s;
}

.commitment-list li:nth-child(2) {
    animation-delay: 0.25s;
}

.commitment-list li:nth-child(3) {
    animation-delay: 0.5s;
}

.commitment-list li:nth-child(4) {
    animation-delay: 0.75s;
}

.commitment-list li:nth-child(5) {
    animation-delay: 1s;
}

.commitment-list li:nth-child(6) {
    animation-delay: 1.25s;
}

@keyframes slideInReveal {
    0%, 24% {
        opacity: 0;
        transform: translateX(-20px);
    }
    30%, 86% {
        opacity: 1;
        transform: translateX(0);
    }
    92%, 100% {
        opacity: 0;
        transform: translateX(-20px);
    }
}

.commitment-list li::before {
    animation: checkReveal 6s ease-in-out infinite;
    animation-delay: inherit;
    opacity: 0;
    transform: scale(0);
}

@keyframes checkReveal {
    0%, 24% {
        opacity: 0;
        transform: scale(0);
    }
    32%, 92% {
        opacity: 1;
        transform: scale(1);
    }
    36% {
        transform: scale(1.15);
    }
    100% {
        opacity: 0;
        transform: scale(0);
    }
}

.definition-box {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin: 2rem 0;
}

.definition-box h4 {
    color: var(--gold);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.definition-box p {
    margin: 0;
    font-style: italic;
    color: var(--text-light);
}

.closing-message {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold-dark);
    text-align: center;
    margin: 2rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 15px;
}

.signature {
    text-align: right;
    margin-top: 2rem;
}

.signature p {
    color: var(--gold);
    font-size: 1.1rem;
    margin: 0;
}

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

.benefit-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.benefit-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.benefit-icon svg {
    width: 35px;
    height: 35px;
}

/* Larger icon for Church Private Family Community card */
.benefit-card:has(h3:contains("Church Private Family Community")) .benefit-icon {
    width: 100px;
    height: 100px;
}

.benefit-card:has(h3:contains("Church Private Family Community")) .benefit-icon svg {
    width: 60px;
    height: 60px;
}

.benefit-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin: 0;
    font-size: 0.95rem;
}

/* Larger text for Church Private Family Community card */
.benefit-card h3:contains("Church Private Family Community") {
    font-size: 1.5rem;
}

.benefit-card:has(h3:contains("Church Private Family Community")) p {
    font-size: 1.15rem;
}

/* Membership Options */
.membership-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(400px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.membership-card {
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    overflow: hidden;
    transition: all 0.3s ease;
}

.membership-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px var(--shadow-medium);
}

.membership-header {
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    color: var(--white);
    padding: 2rem;
    text-align: center;
}

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

.membership-icon svg {
    width: 50px;
    height: 50px;
}

.membership-header h3 {
    color: var(--white);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.membership-subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1rem;
    margin: 0;
}

.membership-content {
    padding: 2.5rem;
    text-align: left;
}

.membership-content p {
    color: var(--text-dark);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.membership-features {
    margin: 2rem 0;
}

.feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 0.5rem 0;
}

.feature-check {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.feature span {
    color: var(--text-dark);
    font-weight: 500;
}

.ichurch-criteria {
    margin: 1.5rem 0;
}

.criteria-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 10px;
    border-left: 3px solid var(--gold);
}

.criteria-icon {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    margin-top: 0.2rem;
}

.criteria-item span {
    color: var(--text-dark);
    font-weight: 500;
    line-height: 1.4;
}

/* New iChurch Criteria Card Style */
.ichurch-criteria-new {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    margin: 1.5rem 0;
}

.criteria-card {
    position: relative;
    background: linear-gradient(135deg, var(--white) 0%, var(--off-white) 100%);
    padding: 1.5rem 1.5rem 1.5rem 5rem;
    border-radius: 15px;
    box-shadow: 0 4px 15px rgba(218, 165, 32, 0.1);
    border: 2px solid transparent;
    transition: all 0.3s ease;
    overflow: hidden;
}

.criteria-card::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 5px;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-dark) 100%);
    transition: width 0.3s ease;
}

.criteria-card:hover {
    transform: translateX(5px);
    box-shadow: 0 8px 25px rgba(218, 165, 32, 0.2);
    border-color: rgba(218, 165, 32, 0.3);
}

.criteria-card:hover::before {
    width: 8px;
}

.criteria-number {
    position: absolute;
    left: 1.25rem;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    box-shadow: 0 4px 10px rgba(218, 165, 32, 0.3);
    transition: all 0.3s ease;
}

.criteria-card:hover .criteria-number {
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 6px 15px rgba(218, 165, 32, 0.4);
}

.criteria-card p {
    margin: 0;
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1.05rem;
    line-height: 1.5;
}

.membership-content .btn {
    margin-top: 1.5rem;
    width: 100%;
    text-align: center;
}

/* Responsive Design for Membership Page */
@media (max-width: 768px) {
    .message-card {
        padding: 2rem;
        flex-direction: column;
        gap: 2rem;
    }
    
    .message-photo {
        width: 100%;
        max-width: 350px;
        margin: 0 auto;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
    }
    
    .membership-options {
        grid-template-columns: 1fr;
    }
    
    .membership-header {
        padding: 1.5rem;
    }
    
    .membership-content {
        padding: 2rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .highlight-section {
        padding: 1.5rem;
    }
}

/* Give Page Styles */
.giving-options {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 3rem;
    margin-top: 3rem;
}

.giving-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.giving-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 50px var(--shadow-medium);
}

.giving-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.giving-icon svg {
    width: 50px;
    height: 50px;
}

.giving-card h3 {
    color: var(--gold);
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

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

.scripture {
    background: var(--off-white);
    padding: 1.5rem;
    border-radius: 10px;
    border-left: 4px solid var(--gold);
    margin-top: 1.5rem;
}

.scripture p {
    margin: 0;
    color: var(--text-light);
    font-style: italic;
    font-size: 0.95rem;
}

/* Impact Grid */
.impact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.impact-item {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 2px solid rgba(218, 165, 32, 0.3);
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    animation: fadeInUp 0.7s ease both;
}

/* Staggered reveal animation */
.impact-item:nth-child(1) { animation-delay: 0.05s; }
.impact-item:nth-child(2) { animation-delay: 0.15s; }
.impact-item:nth-child(3) { animation-delay: 0.25s; }
.impact-item:nth-child(4) { animation-delay: 0.35s; }

/* Elegant circling border animation */
.impact-item::before {
    content: "";
    position: absolute;
    inset: -3px;
    border-radius: 23px;
    padding: 3px;
    background: linear-gradient(45deg, var(--gold), var(--gold-light), var(--gold), var(--gold-light), var(--gold));
    background-size: 300% 300%;
    -webkit-mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    mask: 
        linear-gradient(#fff 0 0) content-box, 
        linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s ease;
    animation: borderFlow 4s linear infinite;
    will-change: background-position;
}

@keyframes borderFlow {
    0% {
        background-position: 0% 50%;
    }
    100% {
        background-position: 100% 50%;
    }
}

.impact-item:hover::before {
    opacity: 1;
}

.impact-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: rgba(218, 165, 32, 0.1);
}

.impact-number {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 60%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-family: 'Playfair Display', serif;
    margin-bottom: 0.5rem;
    position: relative;
}

/* Subtle shimmer sweep on number hover */
.impact-number::after {
    content: "";
    position: absolute;
    top: 0;
    left: -120%;
    width: 120%;
    height: 100%;
    background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.25) 30%, transparent 60%);
    transform: skewX(-20deg);
    transition: transform 0.8s ease, left 0.8s ease;
}

.impact-item:hover .impact-number::after {
    left: 110%;
}

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

.impact-item p {
    color: var(--text-light);
    font-size: 0.9rem;
    margin: 0;
}

/* Contact Page Styles */
.contact-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    margin-top: 3rem;
}

.contact-card {
    background: var(--white);
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
}

.contact-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
}

.contact-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.contact-icon svg {
    width: 40px;
    height: 40px;
}

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

.contact-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.contact-info p {
    color: var(--text-dark);
    font-size: 0.95rem;
    margin-bottom: 0.5rem;
}

.contact-info strong {
    color: var(--gold);
}

/* Contact Form */
.contact-form-container {
    max-width: 800px;
    margin: 0 auto;
}

.contact-form {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: 2px solid var(--shadow-light);
    border-radius: 10px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

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

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    cursor: pointer;
    line-height: 1.5;
}

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

.checkmark {
    width: 20px;
    height: 20px;
    border: 2px solid var(--gold);
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.checkbox-label input[type="checkbox"]:checked + .checkmark::after {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
}

/* Social Media Grid */
.social-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-card {
    background: var(--white);
    padding: 2rem;
    border-radius: 20px;
    box-shadow: 0 10px 30px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    text-align: center;
    transition: all 0.3s ease;
    border-left: 4px solid var(--gold);
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
}

.social-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-left-width: 6px;
}

.social-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 2px solid var(--gold);
}

.social-icon svg {
    width: 30px;
    height: 30px;
}

.social-card h3 {
    color: var(--gold);
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.social-card p {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1rem;
    font-size: 0.95rem;
}

.social-handle {
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
    margin: 0;
}

/* Responsive Design for Give and Contact Pages */
@media (max-width: 768px) {
    .giving-options {
        grid-template-columns: 1fr;
    }
    
    .impact-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
    
    .social-grid {
        grid-template-columns: 1fr;
    }
    
    .form-row {
        grid-template-columns: 1fr;
        gap: 0;
    }
    
    .contact-form {
        padding: 2rem;
    }
    
    .giving-card {
        padding: 2rem;
    }
    
    .contact-card {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .impact-grid {
        grid-template-columns: 1fr;
    }
    
    .impact-number {
        font-size: 2.5rem;
    }
}

/* Fire Text Effect */
.fire-text {
    font-weight: 700;
    color: #FF8C00;
    display: inline-block;
    animation: gentle-glow-orange 3s ease-in-out infinite;
    text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
}

@keyframes gentle-glow-orange {
    0%, 100% {
        text-shadow: 0 0 8px rgba(255, 140, 0, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(255, 140, 0, 0.5), 0 0 25px rgba(255, 140, 0, 0.3);
        transform: scale(1.02);
    }
}

/* Deliverance Text Effect */
.deliverance-text {
    font-weight: 700;
    color: #DC143C;
    display: inline-block;
    animation: gentle-glow-red 3s ease-in-out infinite;
    animation-delay: 1.5s;
    text-shadow: 0 0 8px rgba(220, 20, 60, 0.3);
}

@keyframes gentle-glow-red {
    0%, 100% {
        text-shadow: 0 0 8px rgba(220, 20, 60, 0.3);
        transform: scale(1);
    }
    50% {
        text-shadow: 0 0 15px rgba(220, 20, 60, 0.5), 0 0 25px rgba(220, 20, 60, 0.3);
        transform: scale(1.02);
    }
}

/* Highlight Word Effect - Elegant Shimmer */
.highlight-word {
    font-weight: 600;
    color: var(--gold);
    display: inline-block;
    position: relative;
    animation: shimmer-wave 4s ease-in-out infinite;
}

.highlight-word:nth-child(1) { animation-delay: 0s; }
.highlight-word:nth-child(2) { animation-delay: 0.3s; }
.highlight-word:nth-child(3) { animation-delay: 0.6s; }
.highlight-word:nth-child(4) { animation-delay: 0.9s; }
.highlight-word:nth-child(5) { animation-delay: 1.2s; }
.highlight-word:nth-child(6) { animation-delay: 1.5s; }

@keyframes shimmer-wave {
    0%, 100% {
        color: var(--text-dark);
        text-shadow: none;
    }
    50% {
        color: var(--gold);
        text-shadow: 
            0 0 8px rgba(218, 165, 32, 0.4),
            0 0 12px rgba(218, 165, 32, 0.3),
            0 1px 3px rgba(218, 165, 32, 0.2);
    }
}

/* Hero Service Section with Background Image */
.hero-service {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('IMG_4666.jpg');
    background-size: cover;
    background-position: center top;
    background-repeat: no-repeat;
    overflow: hidden;
    margin-top: 0;
    padding-top: 14rem;
}

/* Connect With Us Page - Hero Service with IMG_4811 */
body:has([href="connect-with-us.html"].nav-link.active) .hero-service {
    background-image: url('IMG_4811.jpg');
}

.hero-service-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.15) 0%, rgba(0, 0, 0, 0.25) 100%);
    z-index: 1;
}

.hero-service-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 2rem;
    max-width: 800px;
}

.hero-service-content h1 {
    font-size: 4rem;
    font-weight: 700;
    margin-bottom: 1rem;
    text-shadow: 
        0 0 10px rgba(218, 165, 32, 0.8),
        0 0 20px rgba(218, 165, 32, 0.6),
        0 0 30px rgba(218, 165, 32, 0.4),
        0 0 40px rgba(218, 165, 32, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 4px 8px rgba(0, 0, 0, 0.2),
        0 8px 16px rgba(0, 0, 0, 0.15),
        2px 2px 3px rgba(0, 0, 0, 0.4);
    color: var(--white);
    letter-spacing: 2px;
    filter: drop-shadow(0 0 15px rgba(218, 165, 32, 0.5));
}

.hero-service-content p {
    font-size: 1.5rem;
    margin-bottom: 0;
    text-shadow: 
        0 0 8px rgba(218, 165, 32, 0.6),
        0 0 15px rgba(218, 165, 32, 0.4),
        0 0 25px rgba(218, 165, 32, 0.3),
        0 2px 4px rgba(0, 0, 0, 0.4),
        0 4px 8px rgba(0, 0, 0, 0.3),
        1px 1px 2px rgba(0, 0, 0, 0.5);
    color: var(--white);
    opacity: 0.98;
    filter: drop-shadow(0 0 10px rgba(218, 165, 32, 0.4));
}

/* Hero Sanders Section with Background Image */
.hero-sanders {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background-image: url('MeetTheSanders.JPG');
    background-size: cover;
    background-position: center clamp(4rem, 8vw, 12rem);
    background-repeat: no-repeat;
    background-color: var(--off-white);
    overflow: hidden;
    margin-top: 0;
    padding-top: 12rem;
    padding-bottom: 0;
}

.hero-sanders-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.05) 85%, rgba(255, 255, 255, 0.15) 100%);
    z-index: 1;
}

/* Hero Sanders Card - Overlap Style */
.hero-sanders-card {
    position: relative;
    padding: 0 2rem 4rem;
}

.sanders-card {
    margin: -60px auto 0;
    max-width: 900px;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(218, 165, 32, 0.15);
    padding: 2.25rem 2.5rem;
    text-align: center;
    position: relative;
    z-index: 10;
}

.sanders-card h1 {
    font-size: clamp(2rem, 3.5vw, 3.25rem);
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--gold);
    letter-spacing: 1px;
    line-height: 1.2;
}

.sanders-card p {
    font-size: clamp(1rem, 1.7vw, 1.25rem);
    margin-bottom: 0;
    color: var(--text-dark);
    opacity: 0.92;
    line-height: 1.6;
}

/* Service Gallery Grid */
.service-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.gallery-image {
    width: 100%;
    height: 350px;
    object-fit: cover;
    border-radius: 15px;
    box-shadow: 0 10px 30px var(--shadow-light);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid var(--shadow-light);
}

.gallery-image:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 20px 40px var(--shadow-medium);
    border-color: var(--gold);
}

/* Reserve Seat Section */
.reserve-seat-section {
    max-width: 700px;
    margin: 0 auto;
}

.reserve-form-container {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    margin-top: 2rem;
}

.reserve-form {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.reserve-form .form-group {
    margin-bottom: 0;
}

.reserve-form .form-group label {
    display: block;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
    font-weight: 600;
    font-size: 1rem;
}

.reserve-form .form-group input {
    width: 100%;
    padding: 1.2rem;
    border: 2px solid var(--shadow-light);
    border-radius: 12px;
    font-size: 1rem;
    font-family: 'Poppins', sans-serif;
    transition: all 0.3s ease;
    background: var(--white);
}

.reserve-form .form-group input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 4px rgba(218, 165, 32, 0.1);
}

.reserve-form .form-group input::placeholder {
    color: var(--text-light);
    opacity: 0.6;
}

.reserve-form .btn {
    width: 100%;
    padding: 1.3rem 2rem;
    font-size: 1.1rem;
    margin-top: 1rem;
}

/* Responsive Design for Service and Sanders Pages */
@media (max-width: 768px) {
    .hero-service {
        min-height: 50vh;
    }
    
    .hero-service-content h1 {
        font-size: 2.5rem;
    }
    
    .hero-service-content p {
        font-size: 1.2rem;
    }
    
    .hero-sanders {
        min-height: 70vh;
        padding-top: 10rem;
        background-size: cover;
        background-position: center clamp(4rem, 9vw, 12rem);
    }
    
    .sanders-card {
        margin: -40px auto 0;
        padding: 2rem;
    }
    
    .service-gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .gallery-image {
        height: 280px;
    }
    
    .reserve-form-container {
        padding: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-service-content h1 {
        font-size: 2rem;
    }
    
    .hero-service-content p {
        font-size: 1rem;
    }
    
    .hero-sanders {
        min-height: 60vh;
        padding-top: 8rem;
        background-position: center clamp(2rem, 7vw, 10rem);
    }
    
    .sanders-card {
        margin: -30px auto 0;
        padding: 1.5rem;
    }
    
    .hero-sanders-card {
        padding: 0 1rem 3rem;
    }
    
    .service-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-image {
        height: 250px;
    }
    
    .reserve-form-container {
        padding: 1.5rem;
    }
}

/* Connect With Us Page Styles */
.section-icon-header {
    display: flex;
    justify-content: center;
    margin-bottom: 1rem;
}

.platform-icon {
    width: 60px;
    height: 60px;
    filter: drop-shadow(0 4px 8px rgba(218, 165, 32, 0.3));
}

.social-feed-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.youtube-embed {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    max-width: 100%;
    background: var(--off-white);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    margin-bottom: 2rem;
    border: 3px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) border-box;
}

.youtube-embed iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 17px;
}

.youtube-subscribe {
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
}

.social-description {
    font-size: 1.1rem;
    color: var(--text-light);
    line-height: 1.7;
    margin-top: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Instagram Feed Styles */
.instagram-feed {
    max-width: 1000px;
    margin: 0 auto;
}

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

.instagram-reel {
    display: flex;
    justify-content: center;
    align-items: center;
}

.instagram-media {
    max-width: 100% !important;
    min-width: 300px !important;
}

.instagram-cta {
    text-align: center;
    margin-top: 2rem;
}

/* Facebook Feed Styles */
.facebook-feed-container {
    max-width: 1200px;
    margin: 0 auto;
}

.facebook-content-wrapper {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 3rem;
    align-items: start;
}

.facebook-info-card {
    background: var(--white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    border: 1px solid var(--shadow-light);
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.facebook-header {
    text-align: center;
    padding-bottom: 2rem;
    border-bottom: 2px solid var(--off-white);
}

.facebook-icon-large {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    border-radius: 50%;
    border: 3px solid var(--gold);
}

.facebook-icon-large svg {
    width: 50px;
    height: 50px;
}

.facebook-header h3 {
    color: var(--gold);
    font-size: 1.8rem;
    margin-bottom: 0.5rem;
}

.facebook-tagline {
    color: var(--text-light);
    font-size: 1.1rem;
    margin: 0;
}

.facebook-description {
    text-align: left;
}

.facebook-description p {
    color: var(--text-dark);
    line-height: 1.8;
    font-size: 1.05rem;
    margin: 0;
}

.facebook-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.facebook-feature-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem;
    background: var(--off-white);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.facebook-feature-item:hover {
    background: linear-gradient(135deg, var(--gold-light) 0%, var(--off-white) 100%);
    transform: translateX(5px);
}

.feature-check-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

.facebook-feature-item span {
    color: var(--text-dark);
    font-weight: 500;
    font-size: 1rem;
}

.facebook-btn {
    width: 100%;
    margin-top: 1rem;
}

.facebook-embed-wrapper {
    display: flex;
    justify-content: center;
    align-items: flex-start;
    width: 100%;
}

.fb-page {
    display: inline-block;
    background: var(--white);
    border-radius: 20px;
    box-shadow: 0 15px 40px var(--shadow-light);
    padding: 1.5rem;
    border: 4px solid transparent;
    background: linear-gradient(var(--white), var(--white)) padding-box,
                linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark)) border-box;
    width: 100%;
    max-width: 650px;
}

/* Responsive Design for Connect Page */
@media (max-width: 1200px) {
    .facebook-content-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .facebook-info-card {
        padding: 2.5rem;
    }
    
    .facebook-embed-wrapper {
        order: -1;
    }
}

@media (max-width: 768px) {
    .instagram-reels {
        grid-template-columns: 1fr;
    }
    
    .instagram-media {
        min-width: 280px !important;
    }
    
    .fb-page {
        max-width: 100%;
    }
    
    .social-description {
        font-size: 1rem;
        padding: 0 1rem;
    }
    
    .facebook-info-card {
        padding: 2rem;
    }
    
    .facebook-header h3 {
        font-size: 1.5rem;
    }
    
    .facebook-icon-large {
        width: 70px;
        height: 70px;
    }
    
    .facebook-icon-large svg {
        width: 40px;
        height: 40px;
    }
    
}

@media (max-width: 480px) {
    .youtube-embed {
        border-radius: 15px;
    }
    
    .youtube-embed iframe {
        border-radius: 12px;
    }
    
    .instagram-media {
        min-width: 100% !important;
    }
}

/* Life Changing Professional Highlight */
.life-changing-glow {
    font-weight: 800;
    color: var(--gold);
    display: inline-block;
    position: relative;
    letter-spacing: 1px;
    background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 50%, var(--gold-dark) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    background-size: 200% 200%;
    animation: professional-highlight 4s ease-in-out infinite;
    text-shadow: 0 2px 4px rgba(218, 165, 32, 0.2);
}

@keyframes professional-highlight {
    0%, 100% {
        background-position: 0% 50%;
        filter: brightness(1);
    }
    50% {
        background-position: 100% 50%;
        filter: brightness(1.2);
    }
}

/* Professional highlight for mobile devices */
@media (max-width: 768px) {
    .life-changing-glow {
        font-weight: 800;
        letter-spacing: 0.5px;
        text-shadow: 0 1px 3px rgba(218, 165, 32, 0.2);
    }
}

/* Instagram Gradient Effect */
.instagram-gradient {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 600;
    background-size: 200% 200%;
    animation: instagram-gradient-shift 3s ease infinite;
    display: inline-block;
    position: relative;
}

@keyframes instagram-gradient-shift {
    0% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
    100% {
        background-position: 0% 50%;
    }
}

.instagram-gradient::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    animation: instagram-shine 2s ease-in-out infinite;
}

@keyframes instagram-shine {
    0% {
        left: -100%;
    }
    50%, 100% {
        left: 100%;
    }
}
