/* Impactful Story Section Flex Layout */
.impact-story-flex {
    display: flex;
    align-items: flex-start;
    gap: 2.5rem;
    flex-wrap: wrap;
}
.impact-story-image {
    flex: 0 0 320px;
    max-width: 340px;
    width: 100%;
    margin-bottom: 1.5rem;
}
.impact-story-image img {
    width: 100%;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.10);
}
.impact-story-text {
    flex: 1 1 340px;
    min-width: 260px;
}
@media (max-width: 900px) {
    .impact-story-flex {
        flex-direction: column;
        align-items: stretch;
    }
    .impact-story-image, .impact-story-text {
        max-width: 100%;
    }
}
/* Pillars Section Styles */
.pillars-row {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}
.pillar {
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 4px 24px rgba(0,0,0,0.08);
    padding: 2rem 1.5rem 2.5rem 1.5rem;
    text-align: center;
    width: 260px;
    position: relative;
    transition: transform 0.2s;
}
.pillar:hover {
    transform: translateY(-8px) scale(1.03);
}
.pillar-graphic {
    margin: 0 auto 1rem auto;
    width: 60px;
    height: 120px;
    position: relative;
}
.pillar-base, .pillar-cap {
    width: 60px;
    height: 16px;
    background: #c2b280;
    border-radius: 8px;
    position: absolute;
    left: 0;
}
.pillar-base {
    bottom: 0;
}
.pillar-cap {
    top: 0;
}
.pillar-shaft {
    width: 32px;
    height: 88px;
    background: #e0e0e0;
    border-radius: 12px;
    position: absolute;
    left: 14px;
    top: 16px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.07);
}
.pillar-btn {
    margin-top: 1.2rem;
    background: #bfa046;
    color: #fff;
    border: none;
    border-radius: 24px;
    padding: 0.7rem 1.8rem;
    font-size: 1rem;
    cursor: pointer;
    transition: background 0.2s;
}
.pillar-btn:hover {
    background: #a88c36;
}
@media (max-width: 900px) {
    .pillars-row {
        flex-direction: column;
        align-items: center;
    }
    .pillar {
        width: 90%;
        margin-bottom: 2rem;
    }
}
/* Highlight effect for pillar scroll */
.timeline-content.highlight-pillar {
    box-shadow: 0 0 0 4px #bfa04688;
    transition: box-shadow 0.3s;
}
/* 
Crown of Nations - Main Stylesheet
A cinematic-style NGO website with scroll-triggered animations
*/

/* ===== LOADER ===== */
.loader-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(18, 18, 18, 0.9);
    z-index: 2000;
    transition: opacity var(--transition-medium);
}

.loader {
    width: 60px;
    height: 60px;
    border: 5px solid rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    border-top: 5px solid var(--primary-color);
    animation: spin 1.5s linear infinite;
    position: relative;
}

.loader::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    border-radius: 50%;
    border: 3px solid transparent;
    border-bottom: 3px solid var(--primary-color);
    animation: spin-reverse 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

@keyframes spin-reverse {
    0% { transform: translate(-50%, -50%) rotate(0deg); }
    100% { transform: translate(-50%, -50%) rotate(-360deg); }
}

.loader-hidden {
    opacity: 0;
    pointer-events: none;
}

/* ===== BASE STYLES ===== */
:root {
    --primary-color: #c8a45c;
    --secondary-color: #1a2639;
    --accent-color: #d64045;
    --light-color: #f5f5f5;
    --dark-color: #121212;
    --text-color: #333;
    --serif-font: 'Playfair Display', serif;
    --sans-font: 'Roboto', sans-serif;
    --transition-slow: 0.6s ease-in-out;
    --transition-medium: 0.4s ease-in-out;
    --transition-fast: 0.2s ease-in-out;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--sans-font);
    color: var(--text-color);
    line-height: 1.6;
    overflow-x: hidden;
    background-color: var(--light-color);
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--serif-font);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 3rem;
}

h3 {
    font-size: 2rem;
}

h4 {
    font-size: 1.5rem;
}

p {
    margin-bottom: 1.5rem;
}

a {
    text-decoration: none;
    color: var(--primary-color);
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--accent-color);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1rem;
}

.section-padding {
    padding: 6rem 0;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    position: relative;
    display: inline-block;
    margin-bottom: 1rem;
}

.underline {
    height: 4px;
    width: 80px;
    background-color: var(--primary-color);
    margin: 0 auto;
}

.btn {
    display: inline-block;
    padding: 0.8rem 2rem;
    border-radius: 50px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all var(--transition-medium);
    cursor: pointer;
    border: none;
    font-size: 0.9rem;
}

.btn-primary {
    background-color: var(--primary-color);
    color: var(--light-color);
}

.btn-primary:hover {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-donate {
    background-color: var(--accent-color);
    color: var(--light-color);
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    position: relative;
    overflow: hidden;
    z-index: 1;
}

.btn-donate:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: all 0.8s;
    z-index: -1;
}

.btn-donate:hover {
    background-color: #c13238;
    color: var(--light-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(214, 64, 69, 0.3);
}

.btn-donate:hover:before {
    left: 100%;
}

.btn-submit {
    background-color: var(--secondary-color);
    color: var(--light-color);
    width: 100%;
}

.btn-submit:hover {
    background-color: var(--primary-color);
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(26, 38, 57, 0.2);
}

/* ===== HEADER ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 1.5rem 5%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 1000;
    transition: all var(--transition-medium);
    background: transparent;
}

.header.scrolled {
    background-color: rgba(18, 18, 18, 0.95);
    padding: 0.5rem 0;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
}

.logo-container {
    padding-left: 2rem;
}

.logo {
    height: 60px;
    transition: all var(--transition-medium);
}

.header.scrolled .logo {
    height: 50px;
}

.main-nav {
    padding-right: 2rem;
}

.main-nav ul {
    display: flex;
    list-style: none;
}

.main-nav ul li {
    margin-left: 2rem;
}

.main-nav ul li a {
    color: var(--light-color);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.main-nav ul li a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--primary-color);
    transition: width var(--transition-medium);
}

.main-nav ul li a:hover:before {
    width: 100%;
}

.nav-cta {
    padding: 0.5rem 0;
}

.nav-cta:hover {
    color: var(--accent-color);
}

.nav-cta:before {
    display: block; /* Show the underline effect */
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 35px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    transition: all var(--transition-fast);
}

.mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background: var(--primary-color);
    border-radius: 10px;
    transition: all var(--transition-fast);
    transform-origin: center;
}

.mobile-menu-toggle.active span:nth-child(1) {
    transform: translateY(10px) rotate(45deg);
}

.mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.mobile-menu-toggle.active span:nth-child(3) {
    transform: translateY(-10px) rotate(-45deg);
}

.header.scrolled .mobile-menu-toggle span {
    background: var(--secondary-color);
}

/* ===== HERO SECTION ===== */
.hero {
    height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: var(--light-color);
    overflow: hidden;
}

/* Hero Slideshow */
.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    opacity: 0;
    transition: opacity 2s ease-in-out;
    transform: scale(1.1);
}

@media (max-width: 768px) {
    .hero-slide {
        background-attachment: scroll;
    }
}

.hero-slide.active {
    opacity: 1;
    animation: kenBurns 20s ease-in-out infinite alternate;
}

@keyframes kenBurns {
    0% {
        transform: scale(1.1);
    }
    100% {
        transform: scale(1.2);
    }
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(18, 18, 18, 0.7), rgba(18, 18, 18, 0.9));
    z-index: -1;
}

.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 0;
}

.hero-particles:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(var(--primary-color) 1px, transparent 1px);
    background-size: 50px 50px;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    padding: 0 2rem;
}

/* Parallax layers removed - now using slideshow */

.hero-scroll-indicator {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    opacity: 0;
    animation: fadeIn 1s forwards 2s;
    transition: all var(--transition-medium);
    padding: 10px;
    z-index: 10;
    background-color: rgba(0, 0, 0, 0.2);
    border-radius: 30px;
    padding: 15px 25px;
}

.hero-scroll-indicator:hover {
    transform: translateX(-50%) scale(1.1);
}

.hero-scroll-indicator:hover span {
    opacity: 1;
    color: var(--primary-color);
}

.hero-scroll-indicator:hover i {
    color: var(--primary-color);
}

.hero-scroll-indicator span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 10px;
    opacity: 0.7;
    transition: all var(--transition-medium);
}

.hero-scroll-indicator i {
    font-size: 1.2rem;
    animation: bounce 2s infinite;
    transition: color var(--transition-medium);
}

.hero-scroll-indicator::after {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    width: 0;
    height: 100%;
    background-color: rgba(255, 255, 255, 0.1);
    border-radius: 30px;
    transform: translateX(-50%);
    z-index: -1;
    transition: width var(--transition-medium);
}

.hero-scroll-indicator:hover::after {
    width: 120%;
}

.highlight {
    color: var(--primary-color);
    position: relative;
    display: inline-block;
}

.highlight:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: var(--primary-color);
    opacity: 0.3;
    transform: translateY(5px);
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(-10px);
    }
    60% {
        transform: translateY(-5px);
    }
}

@keyframes fadeIn {
    to {
        opacity: 1;
    }
}

.animate-title {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 0.5s;
}

.animate-subtitle {
    font-size: 1.5rem;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1s;
}

.scripture-quote {
    font-family: var(--serif-font);
    font-style: italic;
    margin-top: 3rem;
    padding: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 1s forwards 1.5s;
    margin-bottom: 4rem; /* Add more space below scripture quote */
}

.scripture-quote p {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.scripture-reference {
    font-size: 1rem;
    opacity: 0.8;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ===== MISSION SECTION ===== */
.mission {
    position: relative;
    overflow: hidden;
}

.mission-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.mission-text {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-slow);
}

.mission-text.animate {
    opacity: 1;
    transform: translateX(0);
}

.mission-image {
    position: relative;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.mission-image.animate {
    opacity: 1;
    transform: translateX(0);
}

.floating-image {
    border-radius: 10px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    animation: float 6s ease-in-out infinite;
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0px);
    }
}

/* ===== APPROACH SECTION ===== */
.approach {
    background-color: var(--secondary-color);
    color: var(--light-color);
}

.approach-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.approach-item {
    padding: 2rem;
    border-radius: 10px;
    background-color: rgba(255, 255, 255, 0.05);
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(50px);
}

.approach-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.approach-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.approach-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.approach-item h4 {
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.approach-quote {
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-style: italic;
}

.quote-reference {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.7;
}

/* ===== PROGRAMS TIMELINE ===== */
.programs {
    position: relative;
    overflow: hidden;
}

.timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline::after {
    content: '';
    position: absolute;
    width: 6px;
    background-color: var(--primary-color);
    top: 0;
    bottom: 0;
    left: 50%;
    margin-left: -3px;
}

.timeline-item {
    padding: 10px 40px;
    position: relative;
    width: 50%;
    opacity: 0;
    transition: all var(--transition-slow);
}

.timeline-item.animate {
    opacity: 1;
}

.timeline-item::after {
    content: '';
    position: absolute;
    width: 25px;
    height: 25px;
    background-color: var(--light-color);
    border: 4px solid var(--primary-color);
    top: 15px;
    border-radius: 50%;
    z-index: 1;
}

.left {
    left: 0;
    transform: translateX(-50px);
}

.left.animate {
    transform: translateX(0);
}

.right {
    left: 50%;
    transform: translateX(50px);
}

.right.animate {
    transform: translateX(0);
}

.left::after {
    right: -17px;
}

.right::after {
    left: -17px;
}

.timeline-content {
    padding: 2rem;
    background-color: white;
    position: relative;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.timeline-content:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.timeline-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
}

.timeline-quote {
    background-color: rgba(200, 164, 92, 0.1);
    padding: 1.5rem;
    border-left: 4px solid var(--primary-color);
    margin-bottom: 1.5rem;
    font-style: italic;
}

.timeline-image {
    margin-top: 1.5rem;
    overflow: hidden;
    border-radius: 8px;
}

.timeline-image img {
    transition: transform var(--transition-medium);
    width: 100%;
}

.timeline-content:hover .timeline-image img {
    transform: scale(1.05);
}

/* ===== STATS SECTION ===== */
.stats {
    background-color: var(--secondary-color);
    color: var(--light-color);
    text-align: center;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.stat-item {
    padding: 2rem;
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all var(--transition-medium);
    opacity: 0;
    transform: translateY(30px);
}

.stat-item.animate {
    opacity: 1;
    transform: translateY(0);
}

.stat-item:hover {
    transform: translateY(-10px);
    background-color: rgba(255, 255, 255, 0.1);
}

.stat-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    font-family: var(--serif-font);
    margin-bottom: 0.5rem;
    color: var(--light-color);
}

.stat-label {
    font-size: 1.1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===== TESTIMONIALS SECTION ===== */
.testimonials {
    background-color: var(--light-color);
    position: relative;
    overflow: hidden;
}

.testimonial-slider {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
    height: 300px;
}

.testimonial-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.testimonial-slide.active {
    opacity: 1;
    transform: translateX(0);
}

.testimonial-content {
    background-color: white;
    padding: 3rem;
    border-radius: 10px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    text-align: center;
}

.testimonial-quote {
    position: relative;
    font-style: italic;
    font-size: 1.2rem;
    margin-bottom: 2rem;
}

.testimonial-quote i {
    color: var(--primary-color);
    font-size: 1.5rem;
    opacity: 0.5;
}

.testimonial-quote i:first-child {
    position: absolute;
    top: -10px;
    left: -10px;
}

.testimonial-quote i:last-child {
    position: absolute;
    bottom: -10px;
    right: -10px;
}

.testimonial-author {
    font-weight: 700;
    color: var(--secondary-color);
}

.testimonial-controls {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 2rem;
}

.prev-testimonial,
.next-testimonial {
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--secondary-color);
    cursor: pointer;
    transition: all var(--transition-fast);
}

.prev-testimonial:hover,
.next-testimonial:hover {
    color: var(--primary-color);
}

.testimonial-dots {
    display: flex;
    margin: 0 1rem;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #ddd;
    margin: 0 5px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.dot.active {
    background-color: var(--primary-color);
}

/* ===== GALLERY SECTION ===== */
.gallery {
    background-color: var(--light-color);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.gallery-item {
    overflow: hidden;
    border-radius: 8px;
    opacity: 0;
    transform: scale(0.9);
    transition: all var(--transition-medium);
}

.gallery-item.animate {
    opacity: 1;
    transform: scale(1);
}

.gallery-item img {
    transition: transform var(--transition-medium);
    width: 100%;
    height: 250px;
    object-fit: cover;
}

.gallery-item:hover img {
    transform: scale(1.1);
}

/* ===== TEAM SECTION ===== */
.team {
    background-color: var(--light-color);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-member {
    perspective: 1000px;
    height: 400px;
    opacity: 0;
    transform: translateY(30px);
    transition: all var(--transition-slow);
}

.team-member.animate {
    opacity: 1;
    transform: translateY(0);
}

.member-card {
    position: relative;
    width: 100%;
    height: 100%;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.team-member:hover .member-card {
    transform: rotateY(180deg);
}

.card-front, .card-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.card-front {
    background-color: white;
}

.card-front img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top center;
    transition: transform var(--transition-medium);
    filter: brightness(0.95);
}

.card-front:hover img {
    filter: brightness(1.05);
    transform: scale(1.03);
}

.card-front h3, .card-front p {
    text-align: center;
    padding: 0 1rem;
}

.card-front h3 {
    margin-top: 1rem;
    margin-bottom: 0.25rem;
    font-size: 1.4rem;
    font-weight: 600;
    letter-spacing: 0.5px;
}

.card-front p {
    color: var(--primary-color);
    font-weight: 500;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.card-back {
    background-color: var(--secondary-color);
    color: var(--light-color);
    transform: rotateY(180deg);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 2rem;
}

.card-back h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.card-back p:first-of-type {
    color: var(--light-color);
    opacity: 0.8;
    margin-bottom: 2rem;
}

/* ===== GET INVOLVED SECTION ===== */
.get-involved {
    text-align: center;
}

.section-header {
    text-align: center;
}

.involvement-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 4rem;
}

.involvement-item {
    background-color: white;
    padding: 2rem 1.5rem;
    border-radius: 14px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.10);
    text-align: center;
    transition: all 0.4s ease-in-out;
    flex: 1 1 320px;
    max-width: 340px;
    min-width: 280px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}

@media (max-width: 900px) {
    .involvement-grid {
        flex-direction: column;
        align-items: center;
    }
    .involvement-item {
        max-width: 95vw;
        min-width: 0;
    }
}

/* ===== CONTACT SECTION ===== */
.contact {
    background-color: var(--light-color);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
}

.contact-info {
    opacity: 0;
    transform: translateX(-50px);
    transition: all var(--transition-slow);
}

.contact-info.animate {
    opacity: 1;
    transform: translateX(0);
}

.info-item {
    display: flex;
    margin-bottom: 2rem;
}

.info-item i {
    font-size: 1.5rem;
    color: var(--primary-color);
    margin-right: 1.5rem;
    margin-top: 0.5rem;
}

.info-item h3 {
    margin-bottom: 0.5rem;
    color: var(--secondary-color);
}

.social-media {
    margin-top: 3rem;
}

.social-icons {
    display: flex;
    margin-top: 1rem;
}

.social-icons a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background-color: var(--secondary-color);
    color: var(--light-color);
    border-radius: 50%;
    margin-right: 1rem;
    transition: all var(--transition-medium);
}

.social-icons a:hover {
    background-color: var(--primary-color);
    transform: translateY(-5px);
}

.contact-form {
    opacity: 0;
    transform: translateX(50px);
    transition: all var(--transition-slow);
}

.contact-form.animate {
    opacity: 1;
    transform: translateX(0);
}

.form-group {
    position: relative;
    margin-bottom: 2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    border: none;
    border-bottom: 2px solid #ddd;
    background-color: transparent;
    font-size: 1rem;
    transition: all var(--transition-medium);
}

.form-group label {
    position: absolute;
    top: 1rem;
    left: 1rem;
    pointer-events: none;
    transition: all var(--transition-medium);
    color: #999;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group input:valid,
.form-group textarea:valid {
    outline: none;
    border-bottom-color: var(--primary-color);
}

.form-group input:focus + label,
.form-group textarea:focus + label,
.form-group input:valid + label,
.form-group textarea:valid + label {
    top: -20px;
    left: 0;
    font-size: 0.8rem;
    color: var(--primary-color);
}

/* ===== FOOTER ===== */
.footer {
    background-color: var(--dark-color);
    color: var(--light-color);
    padding: 4rem 0 2rem;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.footer-logo img {
    height: 60px;
    margin-bottom: 1rem;
}

.footer-logo p {
    opacity: 0.7;
}

.footer h3 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
    font-size: 1.2rem;
}

.footer-links ul,
.footer-programs ul {
    list-style: none;
}

.footer-links ul li,
.footer-programs ul li {
    margin-bottom: 0.8rem;
}

.footer-links ul li a,
.footer-programs ul li a {
    color: var(--light-color);
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-links ul li a:hover,
.footer-programs ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
}

.footer-contact p {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    opacity: 0.7;
}

.footer-contact p i {
    margin-right: 1rem;
    color: var(--primary-color);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
    opacity: 0.7;
    margin-bottom: 0;
}

.footer-social a {
    color: var(--light-color);
    margin-left: 1.5rem;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    opacity: 1;
    color: var(--primary-color);
}

/* ===== WHATSAPP BUTTON ===== */
.whatsapp-button {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background-color: #25D366;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: white;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
    z-index: 1000;
    cursor: pointer;
    transition: all 0.3s ease;
}

.whatsapp-button:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

.whatsapp-tooltip {
    position: absolute;
    top: -60px;
    right: 0;
    background-color: white;
    color: #333;
    padding: 8px 15px;
    border-radius: 20px;
    font-size: 14px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.whatsapp-button:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

/* ===== IMPACTFUL STORY SECTION BORDER ===== */
.impact-story-border {
    border: 3px solid #e0b84c;
    border-radius: 18px;
    box-shadow: 0 6px 32px rgba(224, 184, 76, 0.10), 0 1.5px 8px rgba(0,0,0,0.07);
    padding: 2.5rem 2rem;
    background: linear-gradient(135deg, #fffbe6 0%, #f9f6ee 100%);
    margin-bottom: 2rem;
    transition: box-shadow 0.3s;
}
.impact-story-border:hover {
    box-shadow: 0 12px 48px rgba(224, 184, 76, 0.18), 0 3px 16px rgba(0,0,0,0.10);
}
@media (max-width: 900px) {
    .impact-story-border {
        padding: 1.2rem 0.7rem;
    }
}

/* ===== RESPONSIVE STYLES ===== */
@media (max-width: 1200px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    html {
        font-size: 14px;
    }
    
    .mission-content,
    .approach-grid,
    .involvement-grid,
    .contact-grid,
    .footer-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .timeline::after {
        left: 31px;
    }
    
    .timeline-item {
        width: 100%;
        padding-left: 70px;
        padding-right: 25px;
    }
    
    .timeline-item::after {
        left: 15px;
    }
    
    .left::after, .right::after {
        left: 15px;
    }
    
    .right {
        left: 0;
    }
    
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    h1 {
        font-size: 3rem;
    }
    
    h2 {
        font-size: 2.5rem;
    }
    
    .header {
        padding: 0.5rem 0;
    }
    
    .logo-container {
        padding-left: 1rem;
    }
    
    .main-nav {
        padding-right: 1rem;
    }
    
    .main-nav ul li {
        margin-left: 1rem;
    }
    
    .stats-grid,
    .gallery-grid,
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .section-padding {
        padding: 4rem 0;
    }
}

@media (max-width: 576px) {
    html {
        font-size: 12px;
    }
    
    .hero-content {
        padding: 0 1rem;
    }
    
    .animate-subtitle {
        font-size: 1.2rem;
    }
    
    .scripture-quote p {
        font-size: 1.2rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .testimonial-content {
        padding: 2rem 1.5rem;
    }
    
    .involvement-item,
    .donate-cta {
        padding: 1.5rem;
    }
}

/* ===== PRISON MINISTRY SECTION ===== */
.prison-ministry {
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
}

.prison-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.prison-text h3 {
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
}

.prison-needs {
    margin-top: 2rem;
    padding: 2rem;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
}

.prison-needs h4 {
    color: var(--primary-color);
    margin-bottom: 1.5rem;
}

.prison-needs ul {
    list-style: none;
}

.prison-needs ul li {
    display: flex;
    align-items: center;
    margin-bottom: 1rem;
    padding: 0.8rem;
    background: var(--light-color);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.prison-needs ul li:hover {
    transform: translateX(10px);
    background: rgba(200, 164, 92, 0.1);
}

.prison-needs ul li i {
    color: var(--primary-color);
    margin-right: 1rem;
    font-size: 1.2rem;
}

.prison-thanksgiving,
.prison-support-call {
    margin: 2rem 0;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.1) 0%, rgba(200, 164, 92, 0.05) 100%);
    border-left: 4px solid var(--primary-color);
    border-radius: 12px;
}

.prison-thanksgiving h4,
.prison-support-call h4 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.prison-declaration {
    margin-top: 1.5rem;
    padding: 1rem;
    background: rgba(200, 164, 92, 0.15);
    border-radius: 8px;
    text-align: center;
    font-size: 1.1rem;
    color: var(--secondary-color);
}

.prison-images {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
}

.prison-img-main {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-medium);
}

.prison-gallery-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.prison-img-secondary {
    width: 100%;
    border-radius: 12px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
    transition: transform var(--transition-medium);
    height: 200px;
    object-fit: cover;
}

.prison-img-main:hover,
.prison-img-secondary:hover {
    transform: scale(1.03);
}

@media (max-width: 992px) {
    .prison-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .prison-gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .prison-img-secondary {
        height: 250px;
    }
}

/* ===== GOALS 2026-2027 SECTION ===== */
.goals-section {
    background: linear-gradient(135deg, #1a2639 0%, #2d3e50 100%);
    color: var(--light-color);
}

.section-subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    margin-top: 1rem;
}

.year-tab-container {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
}

.year-tab {
    padding: 1rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--light-color);
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.year-tab:hover {
    background: rgba(200, 164, 92, 0.2);
    transform: translateY(-3px);
}

.year-tab.active {
    background: var(--primary-color);
    color: var(--secondary-color);
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.4);
}

.year-content {
    display: none;
    opacity: 0;
    transition: opacity var(--transition-slow);
}

.year-content.active {
    display: block;
    opacity: 1;
    animation: fadeInUp 0.8s ease-out;
}

.goals-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    margin-bottom: 4rem;
}

.goal-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 164, 92, 0.3);
    border-radius: 16px;
    padding: 2.5rem;
    transition: all var(--transition-medium);
    position: relative;
    overflow: hidden;
}

.goal-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
}

.goal-card:hover {
    transform: translateY(-10px);
    background: rgba(255, 255, 255, 0.08);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.3);
}

.goal-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-color), #d4a76a);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 8px 20px rgba(200, 164, 92, 0.3);
}

.goal-icon i {
    font-size: 2rem;
    color: var(--secondary-color);
}

.goal-card h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
    font-size: 1.5rem;
}

.goal-items {
    margin-bottom: 2rem;
}

.goal-item {
    display: flex;
    align-items: flex-start;
    margin-bottom: 1.2rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all var(--transition-fast);
}

.goal-item:hover {
    background: rgba(200, 164, 92, 0.1);
    transform: translateX(5px);
}

.goal-item i {
    color: var(--primary-color);
    margin-right: 1rem;
    margin-top: 0.2rem;
    font-size: 1.1rem;
}

.goal-item span {
    flex: 1;
    line-height: 1.6;
}

.goal-progress {
    margin-top: 2rem;
}

.progress-bar {
    width: 100%;
    height: 8px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    margin-bottom: 0.8rem;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
    border-radius: 10px;
    transition: width 1s ease-out;
    width: 0%;
}

.progress-text {
    display: block;
    text-align: center;
    font-size: 0.9rem;
    opacity: 0.8;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Goals Calendar */
.goals-calendar {
    margin-top: 4rem;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    border: 1px solid rgba(200, 164, 92, 0.3);
}

.goals-calendar h3 {
    text-align: center;
    color: var(--primary-color);
    margin-bottom: 2rem;
}

.calendar-container {
    background: white;
    border-radius: 12px;
    padding: 2rem;
    min-height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-color);
}

@media (max-width: 1200px) {
    .goals-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .goals-grid {
        grid-template-columns: 1fr;
    }
    
    .year-tab-container {
        flex-direction: column;
        align-items: center;
    }
}

/* ===== VIDEO GALLERY SECTION ===== */
.video-gallery {
    background: var(--light-color);
}

.video-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
}

.video-item {
    background: white;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    transition: all var(--transition-medium);
}

.video-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.15);
}

.video-item video {
    width: 100%;
    height: 350px;
    object-fit: cover;
    display: block;
}

.video-caption {
    padding: 1.5rem;
    text-align: center;
}

.video-caption h4 {
    color: var(--secondary-color);
    margin-bottom: 0.5rem;
}

.video-caption p {
    color: var(--text-color);
    opacity: 0.8;
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .video-grid {
        grid-template-columns: 1fr;
    }
}

/* ===== DETAILED STORIES SECTION ===== */
.detailed-stories {
    background: linear-gradient(to bottom, #f8f9fa, white);
}

.stories-container {
    max-width: 1400px;
    margin: 0 auto;
}

.story-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-bottom: 6rem;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    transition: all var(--transition-medium);
}

.story-card:hover {
    box-shadow: 0 15px 50px rgba(0, 0, 0, 0.12);
    transform: translateY(-5px);
}

.story-card.reverse {
    grid-template-columns: 1fr 1fr;
}

.story-card.reverse .story-image-gallery {
    order: 2;
}

.story-card.reverse .story-content {
    order: 1;
}

.story-image-gallery {
    position: relative;
}

.story-main-image {
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.story-main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition-slow);
}

.story-card:hover .story-main-image img {
    transform: scale(1.05);
}

.story-thumbnails {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.5rem;
    padding: 0.5rem;
    background: var(--light-color);
}

.story-thumbnails img {
    width: 100%;
    height: 120px;
    object-fit: cover;
    border-radius: 8px;
    cursor: pointer;
    transition: all var(--transition-fast);
}

.story-thumbnails img:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.story-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.story-content h3 {
    color: var(--secondary-color);
    margin-bottom: 1rem;
    font-size: 2rem;
}

.story-meta {
    display: flex;
    gap: 2rem;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--primary-color);
}

.story-meta span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.story-content p {
    line-height: 1.8;
    margin-bottom: 1.5rem;
    color: var(--text-color);
}

.story-content blockquote {
    border-left: 4px solid var(--primary-color);
    padding: 1.5rem;
    margin: 2rem 0;
    background: rgba(200, 164, 92, 0.05);
    border-radius: 8px;
    font-style: italic;
    position: relative;
}

.story-content blockquote::before {
    content: '"';
    position: absolute;
    top: -10px;
    left: 10px;
    font-size: 4rem;
    color: var(--primary-color);
    opacity: 0.3;
}

.story-content cite {
    display: block;
    margin-top: 1rem;
    font-style: normal;
    font-weight: 600;
    color: var(--secondary-color);
}

.story-impact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--light-color);
}

.impact-stat {
    text-align: center;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(200, 164, 92, 0.1), rgba(200, 164, 92, 0.05));
    border-radius: 12px;
    transition: all var(--transition-fast);
}

.impact-stat:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.1);
}

.stat-number {
    display: block;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary-color);
    font-family: var(--serif-font);
    margin-bottom: 0.5rem;
}

.stat-label {
    display: block;
    font-size: 0.9rem;
    color: var(--text-color);
    text-transform: uppercase;
    letter-spacing: 1px;
}

@media (max-width: 992px) {
    .story-card,
    .story-card.reverse {
        grid-template-columns: 1fr;
    }
    
    .story-card.reverse .story-image-gallery,
    .story-card.reverse .story-content {
        order: initial;
    }
    
    .story-content {
        padding: 2rem;
    }
    
    .story-impact {
        grid-template-columns: 1fr;
    }
}

/* ===== GALLERY FILTERS ===== */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 0.8rem 2rem;
    background: white;
    border: 2px solid var(--primary-color);
    border-radius: 50px;
    color: var(--secondary-color);
    font-weight: 600;
    cursor: pointer;
    transition: all var(--transition-medium);
}

.filter-btn:hover {
    background: var(--primary-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
}

.filter-btn.active {
    background: var(--primary-color);
    color: white;
    box-shadow: 0 5px 15px rgba(200, 164, 92, 0.3);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all var(--transition-medium);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, transparent, rgba(26, 38, 57, 0.95));
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: all var(--transition-medium);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.2rem;
}

.gallery-overlay p {
    color: var(--light-color);
    margin-bottom: 0;
    font-size: 0.9rem;
}

.gallery-item.hidden {
    display: none;
}

/* ===== ENHANCED RESPONSIVE DESIGN ===== */
@media (max-width: 768px) {
    .section-subtitle {
        font-size: 1rem;
    }
    
    .story-content h3 {
        font-size: 1.5rem;
    }
    
    .story-meta {
        flex-direction: column;
        gap: 0.5rem;
    }
    
    .story-main-image {
        height: 300px;
    }
    
    .video-item video {
        height: 250px;
    }
    
    /* Mobile Menu Styles */
    .mobile-menu-toggle {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        max-width: 400px;
        height: 100vh;
        background: linear-gradient(135deg, var(--secondary-color) 0%, #0f1922 100%);
        padding: 100px 0 50px 0;
        transition: right 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
        box-shadow: -5px 0 25px rgba(0, 0, 0, 0.5);
        overflow-y: auto;
    }
    
    .main-nav.active {
        right: 0;
    }
    
    .main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 0 2rem;
    }
    
    .main-nav ul li {
        margin: 0;
        border-bottom: 1px solid rgba(200, 164, 92, 0.2);
        transform: translateX(100px);
        opacity: 0;
        transition: all 0.3s ease;
    }
    
    .main-nav.active ul li {
        transform: translateX(0);
        opacity: 1;
    }
    
    .main-nav.active ul li:nth-child(1) { transition-delay: 0.1s; }
    .main-nav.active ul li:nth-child(2) { transition-delay: 0.15s; }
    .main-nav.active ul li:nth-child(3) { transition-delay: 0.2s; }
    .main-nav.active ul li:nth-child(4) { transition-delay: 0.25s; }
    .main-nav.active ul li:nth-child(5) { transition-delay: 0.3s; }
    .main-nav.active ul li:nth-child(6) { transition-delay: 0.35s; }
    .main-nav.active ul li:nth-child(7) { transition-delay: 0.4s; }
    .main-nav.active ul li:nth-child(8) { transition-delay: 0.45s; }
    
    .main-nav ul li a {
        display: block;
        padding: 1.2rem 0;
        color: var(--light-color);
        font-size: 1.1rem;
        font-weight: 500;
        text-transform: uppercase;
        letter-spacing: 1px;
        position: relative;
        transition: all var(--transition-fast);
    }
    
    .main-nav ul li a:hover {
        color: var(--primary-color);
        padding-left: 15px;
    }
    
    .main-nav ul li a::before {
        content: '';
        position: absolute;
        left: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 0;
        height: 2px;
        background: var(--primary-color);
        transition: width var(--transition-fast);
    }
    
    .main-nav ul li a:hover::before {
        width: 8px;
    }
    
    .main-nav ul li .nav-cta {
        background: var(--primary-color);
        color: var(--secondary-color);
        padding: 1.2rem 1.5rem;
        border-radius: 8px;
        margin-top: 1rem;
        text-align: center;
        font-weight: 600;
    }
    
    .main-nav ul li .nav-cta:hover {
        background: var(--light-color);
        padding-left: 1.5rem;
        transform: scale(1.05);
    }
    
    .main-nav ul li .nav-cta::before {
        display: none;
    }
    
    /* Overlay when menu is open */
    body.menu-open::before {
        content: '';
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        background: rgba(0, 0, 0, 0.7);
        z-index: 999;
        animation: fadeIn 0.3s ease;
    }
    
    @keyframes fadeIn {
        from { opacity: 0; }
        to { opacity: 1; }
    }
    
    body.menu-open {
        overflow: hidden;
    }
}

/* Floating Assistive Touch Button */
.floating-status-btn {
    position: fixed;
    right: 20px;
    bottom: 80px;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--accent-color));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: move;
    z-index: 9999;
    box-shadow: 0 4px 20px rgba(184, 134, 11, 0.4);
    transition: all 0.3s ease;
    user-select: none;
}

.floating-status-btn:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(184, 134, 11, 0.6);
}

.floating-status-btn i {
    color: white;
    font-size: 1.5rem;
}

.floating-status-menu {
    position: absolute;
    bottom: 70px;
    right: 0;
    background: rgba(18, 18, 18, 0.95);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 1rem;
    display: none;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
    min-width: 120px;
}

.floating-status-btn.active .floating-status-menu {
    display: flex;
    animation: slideUp 0.3s ease;
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.floating-status-menu .status-avatar {
    cursor: pointer;
    transition: transform 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.5rem;
    border-radius: 12px;
}

.floating-status-menu .status-avatar:hover {
    background: rgba(184, 134, 11, 0.2);
    transform: translateX(-5px);
}

.status-ring {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    padding: 2px;
    background: linear-gradient(45deg, var(--primary-color), var(--accent-color));
    position: relative;
    flex-shrink: 0;
}

.status-ring img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid white;
}

.status-label {
    font-size: 0.85rem;
    color: white;
    font-weight: 500;
    white-space: nowrap;
}

/* Status Viewer Modal */
.status-viewer {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    animation: fadeIn 0.3s ease;
}

.status-viewer.active {
    display: flex;
    flex-direction: column;
}

.status-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

.status-info {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.status-info img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--primary-color);
}

.status-info h4 {
    color: white;
    margin: 0;
    font-size: 1rem;
}

.status-info span {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
}

.status-close {
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.2s;
}

.status-close:hover {
    transform: scale(1.2);
}

.status-progress-bars {
    display: flex;
    gap: 4px;
    padding: 0.5rem 1rem;
    background: rgba(0, 0, 0, 0.3);
}

.status-progress-bar {
    flex: 1;
    height: 3px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    overflow: hidden;
}

.status-progress-fill {
    height: 100%;
    background: white;
    width: 0;
    transition: width 0.1s linear;
}

.status-progress-fill.active {
    animation: progressBar 5s linear forwards;
}

@keyframes progressBar {
    to {
        width: 100%;
    }
}

.status-content {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    position: relative;
}

.status-media-container {
    max-width: 100%;
    max-height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.status-media-container img,
.status-media-container video {
    max-width: 90vw;
    max-height: 70vh;
    object-fit: contain;
    border-radius: 8px;
}

.status-navigation {
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    transform: translateY(-50%);
    display: flex;
    justify-content: space-between;
    padding: 0 2rem;
    pointer-events: none;
}

.status-prev,
.status-next {
    pointer-events: all;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.status-prev:hover,
.status-next:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.status-prev:disabled,
.status-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

/* Mobile Nav Status Avatars - Hidden by default, shown only on mobile */
.mobile-nav-status-avatars {
    display: none;
}

/* Crown Awards CTA Button */
.awards-cta {
    margin-top: 2rem;
    text-align: center;
}

.awards-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
    box-shadow: 0 8px 25px rgba(200, 164, 92, 0.3);
}

.awards-cta .btn:hover {
    box-shadow: 0 12px 35px rgba(200, 164, 92, 0.5);
}

.awards-cta .btn i {
    font-size: 1.3rem;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    /* Hide floating button on mobile */
    .floating-status-btn {
        display: none;
    }
    
    /* Show status avatars in side nav on mobile */
    .mobile-nav-status-avatars {
        display: flex;
        flex-direction: row;
        gap: 1rem;
        padding: 1.5rem 2rem;
        margin: 1rem 0;
        border-top: 1px solid rgba(184, 134, 11, 0.2);
        border-bottom: 1px solid rgba(184, 134, 11, 0.2);
        overflow-x: auto;
        scrollbar-width: none;
    }
    
    .mobile-nav-status-avatars::-webkit-scrollbar {
        display: none;
    }
    
    .mobile-nav-status-avatars .status-avatar {
        flex-shrink: 0;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
    }
    
    .mobile-nav-status-avatars .status-label {
        color: white;
        font-size: 0.7rem;
        white-space: nowrap;
    }
    
    .mobile-nav-status-avatars .status-ring {
        width: 50px;
        height: 50px;
    }
    
    .status-media-container img,
    .status-media-container video {
        max-width: 95vw;
        max-height: 60vh;
    }
    
    .status-navigation {
        padding: 0 1rem;
    }
    
    .status-prev,
    .status-next {
        width: 40px;
        height: 40px;
        font-size: 1.2rem;
    }
}
