:root {
    --primary: #0a1628;
    --nav-text: #ffffff;
    --surface-calendar: rgba(255, 255, 255, 0.03);
    --calendar-border: rgba(255, 255, 255, 0.1);
    --calendar-day-hover: rgba(255, 255, 255, 0.05);
    --secondary: #d4af37;
    --accent: #00d4aa;
    --dark: #0d1b2a;
    --light: #f0f0f0;
    --white: #ffffff;
    --gray: #8892b0;
    --gradient-hero: linear-gradient(135deg, #0a1628 0%, #1a2f4a 50%, #0a1628 100%);
    --font-heading: 'Montserrat', sans-serif;
    --font-body: 'Poppins', sans-serif;
    --nav-height: 80px;

    /* Theme Variables */
    --bg-color: var(--primary);
    --text-color: var(--text-color);
    --text-muted: var(--gray);
    --surface-light: rgba(255, 255, 255, 0.05);
    --surface-medium: rgba(255, 255, 255, 0.08);
    --border-color: var(--calendar-border);
    --gradient-overlay: linear-gradient(180deg, rgba(10, 22, 40, 0.82) 0%, rgba(10, 22, 40, 0.75) 50%, rgba(10, 22, 40, 0.85) 100%);
    /* Overlay/Gradient variables for themes */
    --gradient-philosophy: linear-gradient(135deg, rgba(10, 22, 40, 0.85) 0%, rgba(10, 22, 40, 0.7) 50%, rgba(10, 22, 40, 0.8) 100%);
    --bg-overlay-95: rgba(10, 22, 40, 0.95);
    --bg-overlay-98: rgba(10, 22, 40, 0.98);
    --bg-overlay-60: rgba(10, 22, 40, 0.6);
    --gradient-card-bottom: linear-gradient(to top, rgba(10, 22, 40, 0.8), transparent);
    --gradient-footer: linear-gradient(180deg, rgba(10, 22, 40, 0.95) 0%, rgba(15, 30, 55, 0.95) 100%);

}

.light-theme {
    --bg-color: #f8f9fa;
    --text-color: #1a2f4a;
    --nav-text: #ffffff;
    --surface-calendar: #ffffff;
    --calendar-border: #e0e0e0;
    --calendar-day-hover: #f0f0f0;
    --text-muted: #4a5568;
    --primary: #ffffff;
    /* Make primary white so some areas turn white */
    --dark: #f0f0f0;
    /* Make dark gray for alternating sections */
    --white: #1a2f4a;
    /* Invert white to dark text */
    --light: #1a2f4a;
    /* Invert light text to dark text */

    --surface-light: rgba(0, 0, 0, 0.03);
    --surface-medium: rgba(0, 0, 0, 0.06);
    --border-color: rgba(0, 0, 0, 0.1);
    --gradient-overlay: linear-gradient(180deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 249, 250, 0.82) 50%, rgba(255, 255, 255, 0.88) 100%);
    --gradient-philosophy: linear-gradient(135deg, rgba(255, 255, 255, 0.85) 0%, rgba(248, 249, 250, 0.78) 50%, rgba(255, 255, 255, 0.85) 100%);
    --bg-overlay-95: rgba(255, 255, 255, 0.90);
    --bg-overlay-98: rgba(255, 255, 255, 0.92);
    --bg-overlay-60: rgba(255, 255, 255, 0.65);
    --gradient-card-bottom: linear-gradient(to top, rgba(255, 255, 255, 0.85), transparent);
    --gradient-footer: linear-gradient(180deg, rgba(248, 249, 250, 0.92) 0%, rgba(255, 255, 255, 0.92) 100%);

}


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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--bg-color);
    color: var(--light);
    line-height: 1.6;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
}

a {
    text-decoration: none;
    color: inherit;
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
}

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

section {
    padding: 100px 0;
}

.section-title {
    font-size: 2.5rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--text-color);
    position: relative;
    display: inline-block;
    width: 100%;
}

.section-title::after {
    content: '';
    display: block;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    margin: 15px auto 0;
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-muted);
    margin-bottom: 3rem;
    font-size: 1.1rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    padding-top: var(--nav-height);
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.hero-gradient {
    position: absolute;
    width: 100%;
    height: 100%;
    background: transparent;
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    padding: 0 20px;
    max-width: 900px;
    margin: 0 auto;
}

.hero-title {
    font-size: clamp(3rem, 8vw, 5rem);
    margin-bottom: 1.5rem;
    overflow: hidden;
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}

.title-line {
    display: block;
    opacity: 0;
    transform: translateY(100%);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2.5vw, 1.5rem);
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 2.5rem;
    opacity: 0;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    letter-spacing: 0.5px;
}

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

.btn {
    padding: 15px 35px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
}

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

.btn-primary:hover {
    background: transparent;
    color: var(--secondary);
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--text-color);
    border: 2px solid var(--white);
}

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

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    opacity: 0;
}

.hero-scroll span {
    font-size: 0.8rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--text-muted);
}

.scroll-arrow {
    width: 20px;
    height: 30px;
    border: 2px solid var(--gray);
    border-radius: 10px;
    position: relative;
}

.scroll-arrow::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: var(--accent);
    border-radius: 2px;
    animation: scrollBounce 1.5s ease infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateX(-50%) translateY(0);
        opacity: 1;
    }

    50% {
        transform: translateX(-50%) translateY(10px);
        opacity: 0.5;
    }
}

/* Hero Carousel - Full Screen Background */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-carousel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-philosophy);
    z-index: 10;
}

.carousel-track {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease;
    z-index: 1;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-indicators {
    position: absolute;
    bottom: 100px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 12px;
    z-index: 15;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.6);
}

.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
    border-color: var(--text-color);
}

/* Hero Menu Wording - Removed for cleaner look */

/* Navigation */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--nav-height);
    z-index: 9999;
    transition: all 0.4s ease;
    background: transparent;
}

.main-nav.scrolled {
    background: var(--bg-overlay-95);
    backdrop-filter: blur(20px);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.3);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.logo-img {
    height: 50px;
    width: auto;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--secondary);
    line-height: 1;
}

.logo-subtitle {
    font-size: 0.7rem;
    color: var(--text-color);
    letter-spacing: 3px;
    text-transform: uppercase;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 40px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-link {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-color);
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding: 10px 0;
    transition: color 0.3s ease;
}

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

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

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

.nav-book-btn {
    margin-left: 15px;
    padding: 10px 25px;
    border-radius: 30px;
}

.theme-toggle {
    background: none;
    border: none;
    cursor: pointer;
    color: var(--nav-text);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
    margin-left: 20px;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    min-width: 44px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.light-theme .theme-toggle {
    color: #000000;
}

.light-theme .theme-toggle:hover {
    color: #000000;
    background: rgba(0, 0, 0, 0.1);
}

.theme-toggle:hover {
    color: var(--secondary);
    background: rgba(255, 255, 255, 0.1);
}

.theme-toggle svg {
    width: 24px;
    height: 24px;
    min-width: 24px;
    min-height: 24px;
    display: block;
    transition: all 0.3s ease;
}

.theme-toggle .moon-icon {
    display: none;
}

.light-theme .theme-toggle .sun-icon {
    display: none;
}

.light-theme .theme-toggle .moon-icon {
    display: block;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 10px;
}

.nav-toggle span {
    width: 25px;
    height: 2px;
    background: var(--white);
    transition: all 0.3s ease;
}

/* Mobile Navigation */
@media (max-width: 992px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: var(--nav-height);
        left: 0;
        width: 100%;
        height: calc(100vh - var(--nav-height));
        background: var(--bg-overlay-98);
        flex-direction: column;
        justify-content: flex-start;
        padding-top: 60px;
        gap: 30px;
        transform: translateX(-100%);
        transition: transform 0.4s ease;
    }

    .nav-menu.active {
        transform: translateX(0);
    }

    .nav-link {
        font-size: 1.2rem;
    }
}

/* Section Backgrounds */
.section-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    z-index: 0;
}

.section-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-overlay);
    z-index: 1;
}

section .container {
    position: relative;
    z-index: 2;
}

/* Values & Kingdom Section */
.values-kingdom-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 100%);
    position: relative;
}

.about {
    background: var(--dark);
    position: relative;
}

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

.framework-card {
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 0;
    padding-bottom: 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.card-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
    position: relative;
}

.card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60%;
    background: var(--gradient-card-bottom);
    pointer-events: none;
}

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

.framework-card:hover .card-image img {
    transform: scale(1.1);
}

.framework-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 20px 60px rgba(0, 212, 170, 0.15);
}

.framework-card .card-icon {
    margin-top: -30px;
    position: relative;
    z-index: 2;
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, var(--accent) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.framework-card:hover .card-glow {
    opacity: 0.1;
}

.card-icon {
    width: 70px;
    height: 70px;
    margin: 20px auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.card-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--secondary);
}

.framework-card:hover .card-icon {
    background: var(--secondary);
    transform: scale(1.1);
}

.framework-card:hover .card-icon svg {
    stroke: var(--primary);
}

.framework-card h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--text-color);
}

.framework-card p {
    color: var(--text-muted);
    font-size: 1rem;
}

.vision-values {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
}

.vision-mandate {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    margin-bottom: 60px;
}

.vision,
.mandate {
    text-align: center;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.vision h3,
.mandate h3 {
    color: var(--secondary);
    font-size: 1.3rem;
    margin-bottom: 15px;
    font-weight: 600;
}

.vision p,
.mandate p {
    color: var(--light);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
}

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

.values-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    color: var(--text-color);
}

.values-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px;
}

.value-badge {
    padding: 12px 25px;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--secondary);
    border-radius: 50px;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.value-badge:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: scale(1.05);
    box-shadow: 0 0 25px rgba(212, 175, 55, 0.4);
}

.services {
    background: var(--bg-color);
}

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

.service-card {
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px 30px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-10px) rotateX(5deg);
    box-shadow: 0 30px 60px rgba(0, 0, 0, 0.3), 0 0 40px rgba(212, 175, 55, 0.08);
    border-color: rgba(212, 175, 55, 0.3);
    background: rgba(255, 255, 255, 0.06);
}

.service-icon {
    width: 70px;
    height: 70px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #b8962e 100%);
    border-radius: 15px;
    margin-bottom: 25px;
    transition: all 0.4s ease;
}

.service-icon svg {
    width: 35px;
    height: 35px;
    stroke: var(--primary);
    stroke-width: 2;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.4);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 15px;
    color: var(--text-color);
    font-weight: 600;
}

.service-card p {
    color: var(--text-muted);
    line-height: 1.7;
    font-size: 0.95rem;
}


.calendar-section {
    background: linear-gradient(180deg, var(--primary) 0%, var(--dark) 50%, var(--primary) 100%);
    padding: 100px 0;
}

.calendar-layout {
    display: flex;
    gap: 30px;
    align-items: flex-start;
    justify-content: center;
}

.calendar-main {
    flex: 3;
    min-width: 0;
}

.calendar-card {
    width: 100%;
    padding: 25px;
    background: var(--bg-overlay-60);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(212, 175, 55, 0.08);
    backdrop-filter: blur(10px);
}

.gallery-dates-sidebar {
    flex: 1;
    min-width: 280px;
    max-width: 320px;
    background: var(--bg-overlay-60);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 20px;
    padding: 25px;
    backdrop-filter: blur(10px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
}

.sidebar-title {
    font-size: 1.3rem;
    color: var(--secondary);
    font-family: var(--font-heading);
    font-weight: 700;
    margin-bottom: 5px;
}

.sidebar-subtitle {
    color: var(--text-muted);
    font-size: 0.85rem;
    margin-bottom: 20px;
}

.gallery-dates-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.gallery-date-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: var(--surface-calendar);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.gallery-date-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary);
    transform: translateX(5px);
}

.date-badge {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--secondary) 0%, #b8962e 100%);
    color: var(--primary);
    width: 50px;
    height: 50px;
    border-radius: 8px;
    flex-shrink: 0;
}

.date-month {
    font-size: 0.6rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.date-day {
    font-size: 1.2rem;
    font-weight: 800;
    line-height: 1;
}

.date-info {
    display: flex;
    flex-direction: column;
    gap: 4px;
    min-width: 0;
}

.date-event-name {
    color: var(--text-color);
    font-size: 0.9rem;
    font-family: var(--font-heading);
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.date-view-text {
    color: var(--accent);
    font-size: 0.75rem;
    font-weight: 500;
}

@media (max-width: 1024px) {
    .calendar-layout {
        flex-direction: column;
        align-items: center;
    }

    .calendar-main {
        width: 100%;
        flex: none;
    }

    .gallery-dates-sidebar {
        width: 100%;
        max-width: 100%;
    }
}

.calendar-subheading {
    text-align: center;
    color: #aaaaaa;
    margin-bottom: 40px;
    font-size: 1.1rem;
}


.event-item {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px;
    background: var(--surface-calendar);
    border-radius: 12px;
    margin-bottom: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.event-item:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateX(5px);
}

.event-date {
    background: var(--secondary);
    color: var(--primary);
    padding: 8px 12px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 0.85rem;
    min-width: 60px;
    text-align: center;
}

.event-title {
    color: #ffffff;
    font-size: 0.95rem;
    font-weight: 500;
}



#calendar {
    background: transparent;
}

.fc {
    --fc-border-color: rgba(255, 255, 255, 0.08);
    --fc-page-bg-color: transparent;
    --fc-neutral-bg-color: rgba(255, 255, 255, 0.03);
    --fc-list-event-hover-bg-color: rgba(212, 175, 55, 0.15);
    --fc-today-bg-color: rgba(0, 212, 170, 0.12);
    --fc-event-border-color: var(--secondary);
    --fc-event-bg-color: var(--secondary);
    --fc-event-text-color: var(--primary);
    font-family: var(--font-body);
    max-width: 100%;
}

/* FullCalendar Modern Grid Style */
.fc {
    font-family: var(--font-body);
}

.fc .fc-toolbar {
    flex-wrap: wrap;
    gap: 15px;
    justify-content: center;
    margin-bottom: 25px !important;
}

.fc .fc-toolbar-title {
    font-family: var(--font-heading);
    font-size: 1.5rem !important;
    color: var(--text-color);
    font-weight: 700;
    order: -1;
    width: 100%;
    text-align: center;
    margin-bottom: 5px;
}

.fc .fc-toolbar-left,
.fc .fc-toolbar-right {
    width: 100%;
    justify-content: center;
    gap: 10px;
}

.fc .fc-button {
    background: transparent !important;
    border: 2px solid var(--secondary) !important;
    color: var(--secondary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    padding: 8px 16px;
    border-radius: 8px !important;
    transition: all 0.3s ease;
    font-size: 0.75rem !important;
}

.fc .fc-button:hover {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.4);
}

.fc .fc-button-primary:not(:disabled).fc-button-active,
.fc .fc-button-primary:not(:disabled):active {
    background: var(--secondary) !important;
    color: var(--primary) !important;
    border-color: var(--secondary) !important;
}

.fc .fc-col-header {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border-radius: 8px 8px 0 0;
    overflow: hidden;
}

.fc .fc-col-header-cell {
    padding: 12px 0;
    background: transparent !important;
    border: none !important;
}

.fc .fc-col-header-cell-cushion {
    color: var(--secondary) !important;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.fc .fc-daygrid-day {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
    transition: all 0.3s ease;
    border-radius: 4px;
}

.fc .fc-daygrid-day:hover {
    background: rgba(212, 175, 55, 0.08);
    transform: scale(1.02);
}

.fc .fc-daygrid-day.fc-day-today {
    background: rgba(0, 212, 170, 0.12) !important;
    border: 2px solid var(--accent) !important;
    box-shadow: 0 0 20px rgba(0, 212, 170, 0.2);
}

.fc .fc-daygrid-day.fc-day-other {
    background: rgba(255, 255, 255, 0.01);
    opacity: 0.5;
}

.fc .fc-daygrid-day.fc-day-past {
    background: rgba(255, 255, 255, 0.04);
}

.fc .fc-daygrid-day.fc-day-past .fc-daygrid-day-number {
    opacity: 0.55;
}

.light-theme .fc .fc-daygrid-day.fc-day-past {
    background: rgba(0, 0, 0, 0.04);
}

.light-theme .fc .fc-daygrid-day.fc-day-past .fc-daygrid-day-number {
    opacity: 0.55;
}

.fc .fc-daygrid-day-frame {
    min-height: 70px;
    padding: 4px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.fc .fc-daygrid-day-number {
    color: var(--light);
    font-family: var(--font-heading);
    font-weight: 500;
    padding: 4px 8px;
    text-decoration: none;
    font-size: 0.9rem;
    width: auto;
    text-align: left;
}

.fc .fc-daygrid-more-link {
    color: var(--accent);
    font-weight: 600;
    font-size: 0.7rem;
    padding: 2px 4px;
    margin-top: auto;
}

.fc-event {
    cursor: pointer;
    border-radius: 4px !important;
    padding: 3px 6px !important;
    font-size: 0.7rem !important;
    font-weight: 600;
    margin: 2px 0;
    line-height: 1.2;
    border: none !important;
    background: linear-gradient(135deg, var(--secondary) 0%, #b8962e 100%) !important;
    color: var(--primary) !important;
    transition: all 0.2s ease;
}

.fc-event:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(212, 175, 55, 0.4);
}

.fc-theme-standard td,
.fc-theme-standard th {
    border-color: rgba(255, 255, 255, 0.05);
}

.fc .fc-scrollgrid {
    border: none;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.fc .fc-scrollgrid td,
.fc .fc-scrollgrid th {
    border: 1px solid rgba(255, 255, 255, 0.03);
}

.fc .fc-daygrid-event-dot {
    display: none;
}

.fc .fc-list-event:hover td {
    background: rgba(212, 175, 55, 0.1);
}

.fc .fc-list-day-cushion {
    background: rgba(212, 175, 55, 0.1) !important;
}

/* Calendar Responsive */
@media (max-width: 768px) {
    .calendar-section {
        padding: 60px 0;
    }

    .calendar-card {
        padding: 15px;
        border-radius: 12px;
    }

    .fc .fc-toolbar-title {
        font-size: 1.2rem !important;
    }

    .fc .fc-daygrid-day-frame {
        min-height: 50px;
    }

    .fc .fc-daygrid-day-number {
        font-size: 0.8rem;
        padding: 2px 4px;
    }

    .fc .fc-button {
        padding: 6px 10px;
        font-size: 0.65rem !important;
    }
}

.gallery-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
}

.gallery-modal.active {
    display: flex;
}

.modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4) !important;
    backdrop-filter: blur(5px);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-modal.active .modal-overlay {
    opacity: 1;
}

.modal-content {
    position: relative;
    background: var(--surface-light) !important;
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
    max-width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    transform: scale(0.8);
    opacity: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.gallery-modal.active .modal-content {
    transform: scale(1);
    opacity: 1;
}

.gallery-modal-content {
    max-width: 900px;
    width: 90%;
    max-height: 85vh;
    background: var(--surface-medium) !important;
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    overflow: hidden;
}

.modal-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-color);
    font-size: 2rem;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1;
    z-index: 10;
}

.modal-close:hover {
    color: var(--secondary);
    transform: rotate(90deg);
}

.modal-title {
    font-size: 1.8rem;
    color: var(--text-color);
    margin-bottom: 30px;
    text-align: center;
}

/* Gallery Stack View */
.gallery-stack {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-height: 60vh;
    overflow-y: auto;
    padding: 20px;
    background: transparent !important;
}

.gallery-stack::-webkit-scrollbar {
    width: 6px;
}

.gallery-stack::-webkit-scrollbar-track {
    background: var(--surface-calendar);
    border-radius: 3px;
}

.gallery-stack::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.5);
    border-radius: 3px;
}

.gallery-stack-item {
    position: relative;
    cursor: pointer;
    transition: all 0.4s ease;
    transform: perspective(1000px) rotateX(0deg) translateY(0);
    transform-origin: center bottom;
    margin-bottom: -60px;
}

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

.gallery-stack-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1) 0%, transparent 50%);
    border-radius: 12px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.gallery-stack-item:hover::before {
    opacity: 1;
}

.gallery-stack-item:hover {
    transform: perspective(1000px) rotateX(5deg) translateY(-10px);
    z-index: 2;
}

.gallery-stack-item img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
    transition: all 0.4s ease;
}

.gallery-stack-item:hover img {
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5), 0 0 30px rgba(212, 175, 55, 0.2);
}

.gallery-stack-item::after {
    content: 'Click to view';
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    padding: 8px 20px;
    border-radius: 20px;
    font-size: 0.85rem;
    opacity: 0;
    transition: opacity 0.3s ease;
    white-space: nowrap;
}

.gallery-stack-item:hover::after {
    opacity: 1;
}

/* Image Viewer */
.image-viewer {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 99999;
    display: none;
    align-items: center;
    justify-content: center;
}

.image-viewer.active {
    display: flex;
}

.viewer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3) !important;
    backdrop-filter: blur(5px);
}

.viewer-content {
    position: relative;
    z-index: 2;
    max-width: 90%;
    max-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.viewer-content img {
    max-width: 100%;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: 0 25px 80px rgba(0, 0, 0, 0.5);
    animation: viewerZoom 0.4s ease;
}

@keyframes viewerZoom {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.viewer-close {
    position: absolute;
    top: 30px;
    right: 30px;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    font-size: 2.5rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.viewer-close:hover {
    background: var(--secondary);
    color: var(--primary);
    transform: rotate(90deg);
}

.viewer-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: var(--text-color);
    font-size: 3rem;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    display: flex;
    align-items: center;
    justify-content: center;
    line-height: 1;
}

.viewer-nav:hover {
    background: var(--secondary);
    color: var(--primary);
}

.viewer-nav.prev {
    left: 30px;
}

.viewer-nav.next {
    right: 30px;
}

.viewer-counter {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.7);
    color: var(--text-color);
    padding: 10px 25px;
    border-radius: 30px;
    font-size: 1rem;
    z-index: 10;
}

.viewer-counter span {
    color: var(--secondary);
    font-weight: 600;
}

.gallery-images a img {
    object-fit: cover;
    transition: transform 0.3s ease;
}

.gallery-images a:hover img {
    transform: scale(1.1);
}

.testimonials {
    background: var(--bg-color);
    overflow: hidden;
}

.testimonials-carousel {
    position: relative;
    max-width: 800px;
    margin: 50px auto 0;
}

.testimonial-track {
    display: flex;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    padding: 40px;
    text-align: center;
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    margin: 0 15px;
}

.testimonial-image {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 15px;
    border: 3px solid var(--secondary);
    display: block;
}

.quote-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 50%;
    animation: quotePulse 2s ease infinite;
}

.quote-icon svg {
    width: 20px;
    height: 20px;
    fill: var(--secondary);
}

@keyframes quotePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.1);
    }
}

.testimonial-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: var(--light);
    font-style: italic;
    margin-bottom: 25px;
}

.testimonial-author h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 5px;
}

.testimonial-author span {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.carousel-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    cursor: pointer;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--secondary);
    transform: scale(1.2);
}

.facilitators {
    background: var(--dark);
}

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

.facilitator-card {
    text-align: center;
    transition: transform 0.4s ease;
}

.facilitator-card:hover {
    transform: translateY(-8px);
}

.facilitator-image {
    width: 180px;
    height: 180px;
    margin: 0 auto 20px;
    border-radius: 50%;
    overflow: hidden;
    filter: grayscale(60%);
    transition: all 0.4s ease;
    border: 3px solid rgba(212, 175, 55, 0.3);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.facilitator-card:hover .facilitator-image {
    filter: grayscale(0%);
    border-color: var(--secondary);
    transform: scale(1.08);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.3), 0 0 20px rgba(212, 175, 55, 0.15);
}

.facilitator-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.facilitator-card h3 {
    font-size: 1.2rem;
    color: var(--text-color);
    margin-bottom: 8px;
    position: relative;
    display: inline-block;
}

.facilitator-card h3::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
    margin: 4px auto 0;
}

.facilitator-card:hover h3::after {
    width: 100%;
}

.facilitator-card p {
    color: var(--text-muted);
    font-size: 0.9rem;
}

.clients {
    background: var(--bg-color);
    padding: 60px 0;
    overflow: hidden;
}

.clients-carousel {
    margin-top: 30px;
    overflow: hidden;
}

.clients-track {
    display: flex;
    gap: 60px;
    animation: clientScroll 20s linear infinite;
}

.client-logo {
    flex-shrink: 0;
    width: 150px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-muted);
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.client-logo img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    padding: 10px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.client-logo:hover img {
    filter: grayscale(0%);
    opacity: 1;
}

.client-logo:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: var(--secondary);
    color: var(--secondary);
}

@keyframes clientScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

.clients-track:hover {
    animation-play-state: paused;
}

.contact {
    background: var(--dark);
}

.contact-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 50px;
    margin-top: 50px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.info-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.info-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 12px;
    flex-shrink: 0;
}

.info-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--secondary);
}

.info-item h4 {
    color: var(--text-color);
    font-size: 1.1rem;
    margin-bottom: 8px;
}

.info-item p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin: 4px 0;
}

.contact-form {
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 40px;
}

.form-group {
    position: relative;
    margin-bottom: 25px;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 15px 20px;
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 10px;
    color: var(--text-color);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--secondary);
    background: var(--surface-medium);
}

.form-group label {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-muted);
    font-size: 1rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.form-group textarea~label {
    top: 20px;
    transform: translateY(0);
}

.form-group input:focus~label,
.form-group input:valid~label,
.form-group textarea:focus~label,
.form-group textarea:valid~label,
.form-group select:focus~label,
.form-group select:valid~label {
    top: -10px;
    left: 15px;
    font-size: 0.8rem;
    background: var(--dark);
    padding: 0 5px;
    color: var(--secondary);
}

.form-group select option {
    background: var(--dark);
    color: var(--text-color);
}

.submit-btn {
    width: 100%;
    position: relative;
    overflow: hidden;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: width 0.5s, height 0.5s;
}

.submit-btn:hover .btn-glow {
    width: 300px;
    height: 300px;
}

/* WhatsApp Float */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    animation: whatsappBounce 2s ease infinite;
    transition: transform 0.3s ease;
}

.whatsapp-float:hover {
    transform: scale(1.1);
}

.whatsapp-float svg {
    width: 30px;
    height: 30px;
    fill: var(--white);
}

@keyframes whatsappBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-10px);
    }
}

/* Why Choose StaRise */
.why-choose {
    background: var(--dark);
    position: relative;
}

.why-choose::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(212, 175, 55, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 70% 50%, rgba(0, 212, 170, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

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

.why-choose-card {
    background: var(--surface-calendar);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    padding: 35px 30px;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.why-choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.why-choose-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

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

.why-choose-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 170, 0.2) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.why-choose-icon svg {
    width: 32px;
    height: 32px;
    stroke: var(--secondary);
    stroke-width: 2;
}

.why-choose-card:hover .why-choose-icon {
    transform: scale(1.1) rotate(5deg);
    background: var(--secondary);
}

.why-choose-card:hover .why-choose-icon svg {
    stroke: var(--primary);
}

.why-choose-card h3 {
    font-size: 1.25rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
}

.why-choose-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Kingdom Chapter */
.kingdom-chapter {
    margin-top: 60px;
    padding: 60px 50px;
    background: linear-gradient(180deg, var(--bg-overlay-95) 0%, rgba(15, 30, 55, 0.95) 100%);
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 30px;
    text-align: center;
    opacity: 0;
    transform: translateY(30px);
}

.kingdom-title {
    font-size: 2.2rem;
    color: var(--secondary);
    margin-bottom: 15px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 4px;
}

.kingdom-intro {
    font-size: 1.2rem;
    color: var(--light);
    margin-bottom: 50px;
    font-style: italic;
    line-height: 1.8;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.kingdom-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
    margin-bottom: 50px;
}

.kingdom-card {
    background: linear-gradient(145deg, rgba(255, 255, 255, 0.03) 0%, rgba(255, 255, 255, 0.01) 100%);
    border: 1px solid rgba(212, 175, 55, 0.15);
    border-radius: 20px;
    padding: 30px 25px;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.kingdom-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--secondary), var(--accent));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.kingdom-card:hover {
    transform: translateY(-10px);
    border-color: var(--secondary);
    box-shadow: 0 25px 50px rgba(212, 175, 55, 0.15);
}

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

.kingdom-card .card-icon {
    width: 55px;
    height: 55px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.2) 0%, rgba(0, 212, 170, 0.1) 100%);
    border-radius: 50%;
    transition: all 0.4s ease;
}

.kingdom-card .card-icon svg {
    width: 26px;
    height: 26px;
    stroke: var(--secondary);
    stroke-width: 1.5;
}

.kingdom-card:hover .card-icon {
    background: var(--secondary);
    transform: scale(1.1) rotate(5deg);
}

.kingdom-card:hover .card-icon svg {
    stroke: var(--primary);
}

.kingdom-card h4 {
    font-size: 1.1rem;
    color: var(--text-color);
    margin-bottom: 15px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.kingdom-card .scripture {
    font-size: 0.95rem;
    color: var(--light);
    font-style: italic;
    line-height: 1.7;
    margin-bottom: 15px;
    min-height: 80px;
}

.kingdom-card .bible-ref {
    display: inline-block;
    font-size: 0.8rem;
    color: var(--secondary);
    font-weight: 600;
    padding: 6px 14px;
    background: rgba(212, 175, 55, 0.1);
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.3);
}

.kingdom-philosophy {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.08) 0%, rgba(0, 0, 0, 0.3) 100%);
    border-radius: 20px;
    padding: 35px 45px;
    text-align: left;
    border-left: 4px solid var(--secondary);
}

.kingdom-philosophy .philosophy-label {
    display: block;
    font-size: 0.9rem;
    color: var(--secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.kingdom-philosophy p {
    font-size: 1.1rem;
    color: var(--light);
    line-height: 1.9;
}

.kingdom-philosophy strong {
    color: var(--secondary);
}

@media (max-width: 1024px) {
    .kingdom-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .kingdom-chapter {
        padding: 40px 25px;
    }

    .kingdom-grid {
        grid-template-columns: 1fr;
    }

    .kingdom-card .scripture {
        min-height: auto;
    }

    .calendar-layout {
        flex-direction: column;
    }

    .events-list {
        width: 100%;
    }

    .calendar-card {
        width: 100%;
    }

    .calendar-heading {
        font-size: 2rem;
    }

    .fc .fc-toolbar {
        gap: 5px;
    }

    .fc .fc-button {
        padding: 4px 8px;
        font-size: 0.6rem !important;
    }

    .fc .fc-daygrid-day-frame {
        min-height: 30px;
    }

    .fc .fc-col-header-cell-cushion,
    .fc .fc-daygrid-day-number {
        font-size: 0.65rem;
        padding: 2px;
    }
}

/* Responsive */
@media (max-width: 1200px) {
    .carousel-indicators {
        bottom: 80px;
    }
}

@media (max-width: 992px) {
    .hero-content {
        padding-bottom: 0;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3.5rem);
    }

    .carousel-indicators {
        bottom: 70px;
    }
}

@media (max-width: 768px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
    }

    .whatsapp-float {
        bottom: 20px;
        right: 20px;
    }

    .calendar-card {
        padding: 20px;
        margin: 30px 15px 0;
    }

    .gallery-stack-item img {
        height: 140px;
    }

    .viewer-nav {
        width: 45px;
        height: 45px;
        font-size: 2rem;
    }

    .viewer-nav.prev {
        left: 10px;
    }

    .viewer-nav.next {
        right: 10px;
    }
}

.footer {
    background: linear-gradient(180deg, var(--dark) 0%, var(--primary) 100%);
    padding: 60px 0 20px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, var(--secondary), var(--accent), transparent) 1;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.5), transparent);
    box-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 40px;
}

.footer-brand h3 {
    font-size: 1.5rem;
    color: var(--text-color);
    margin-bottom: 10px;
}

.footer-brand p {
    color: var(--text-muted);
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-muted);
    transition: color 0.3s ease;
    position: relative;
}

.footer-links a::after {
    content: '';
    display: block;
    width: 0;
    height: 2px;
    background: var(--secondary);
    transition: width 0.3s ease;
}

.footer-links a:hover {
    color: var(--secondary);
}

.footer-links a:hover::after {
    width: 100%;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.footer-bottom p {
    color: var(--text-muted);
    font-size: 0.9rem;
}
/* Light Theme Fixes for Values & Kingdom Section */
.light-theme .value-badge {
    background: #ffffff;
    border: 1px solid var(--text-muted);
    color: var(--text-color);
}

.light-theme .value-badge:hover {
    background: var(--text-color);
    color: #ffffff;
    border-color: var(--text-color);
}

.light-theme .kingdom-title {
    color: var(--text-color);
}

.light-theme .kingdom-intro {
    color: var(--text-muted);
}

.light-theme .kingdom-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.light-theme .kingdom-card .scripture {
    color: var(--text-muted);
}

.light-theme .kingdom-card .bible-ref {
    color: var(--text-color);
    background: rgba(0, 0, 0, 0.05);
    border-color: rgba(0, 0, 0, 0.1);
}

.light-theme .kingdom-card .card-icon {
    background: rgba(0, 0, 0, 0.05);
}

.light-theme .kingdom-card .card-icon svg {
    stroke: var(--text-color);
}

.light-theme .kingdom-philosophy {
    background: #ffffff;
    border-left: 4px solid var(--text-color);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.light-theme .kingdom-philosophy p {
    color: var(--text-muted);
}
