/* Root Variables */
:root {
    --bmu-brown: #6B2C1B;
    --bmu-brown-light: #8B3F2B;
    --bmu-brown-dark: #4B1C0B;
    --navy: #0F1B3C;
    --navy-light: #1A2A4E;
    --copper: #B87333;
    --copper-light: #D4905A;
    --copper-dark: #965C2A;
    --warm-cream: #FAF6F0;
    --champagne: #F7E7CE;
    --bone: #F9F6F2;
    --charcoal: #36454F;
    --gradient-primary: linear-gradient(135deg, var(--bmu-brown) 0%, var(--copper) 100%);
    --gradient-secondary: linear-gradient(135deg, var(--navy) 0%, var(--bmu-brown) 100%);
    --gradient-copper: linear-gradient(135deg, var(--copper) 0%, var(--copper-light) 100%);
    --shadow-soft: 0 5px 30px rgba(107,44,27,0.08);
    --shadow-medium: 0 10px 40px rgba(107,44,27,0.12);
    --shadow-strong: 0 20px 60px rgba(107,44,27,0.16);
    --text-dark: #1a1a1a;
    --text-light: #666666;
    --curve: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--warm-cream);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    line-height: 1.2;
}

/* Urgency Banner */
.urgency-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    padding: 12px 0;
    z-index: 10001;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(255, 107, 53, 0.3);
}

.urgency-banner:hover {
    background: linear-gradient(135deg, #ff5722 0%, #ff9800 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.4);
}

.urgency-banner .container {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    font-size: 14px;
    font-weight: 500;
}

.urgency-banner .banner-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    max-width: 1200px;
    gap: 20px;
}

.urgency-banner .banner-text {
    display: flex;
    align-items: center;
    flex: 1;
    justify-content: center;
}

.register-now-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    padding: 8px 16px;
    border-radius: 25px;
    font-weight: 600;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    white-space: nowrap;
    backdrop-filter: blur(10px);
}

.register-now-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.register-now-btn i {
    transition: transform 0.3s ease;
}

.register-now-btn:hover i {
    transform: translateX(3px);
}

.urgency-banner i {
    color: #fff;
    animation: pulse 2s infinite;
}

.urgency-banner strong {
    color: #fff;
    margin: 0 5px;
}

.urgency-banner #spots-left {
    color: #fff;
    font-weight: 700;
    background: rgba(255, 255, 255, 0.2);
    padding: 2px 8px;
    border-radius: 12px;
    margin-left: 5px;
}

/* Adjust navbar position to account for banner */
.navbar.fixed-top {
    top: 60px !important;
}

/* Loading Screen */
.loading-screen {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-secondary);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, visibility 0.8s ease;
}

.loading-screen.loaded {
    opacity: 0;
    visibility: hidden;
}

.loading-content {
    text-align: center;
}

.loading-rings {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto 2rem;
}

.ring {
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid transparent;
}

.ring-1 {
    border-top-color: var(--copper);
    animation: spin 1.5s linear infinite;
}

.ring-2 {
    width: 80%;
    height: 80%;
    top: 10%;
    left: 10%;
    border-right-color: var(--champagne);
    animation: spin 1.5s linear infinite reverse;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-text {
    color: var(--champagne);
    font-size: 1.1rem;
    font-weight: 300;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.8;
    animation: pulse 2s ease infinite;
}

/* Custom Cursor - Disabled */
.cursor-dot, .cursor-outline {
    display: none !important;
    pointer-events: none !important;
}

/* Ensure normal cursor is always visible */
* {
    cursor: auto !important;
}

body {
    cursor: auto !important;
}

/* Navigation */
.navbar {
    background-color: transparent;
    padding: 1.5rem 0;
    transition: all 0.4s var(--curve);
}

.navbar.scrolled {
    background-color: rgba(250, 246, 240, 0.98);
    backdrop-filter: blur(20px);
    padding: 1rem 0;
    box-shadow: var(--shadow-soft);
}

.navbar-brand {
    display: flex;
    align-items: center;
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 900;
    color: white !important;
    text-decoration: none;
    transition: all 0.3s ease;
}

.navbar.scrolled .navbar-brand {
    color: var(--bmu-brown) !important;
}

.brand-logo {
    height: 40px;
    width: auto;
    transition: all 0.3s ease;
    filter: brightness(0) invert(1); /* Makes logo white */
    margin-right: 10px;
}

.navbar.scrolled .brand-logo {
    filter: none; /* Returns to original colors when scrolled */
}

.brand-icon {
    width: 40px;
    height: 40px;
    background: var(--gradient-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
    font-size: 1.2rem;
    color: white;
    animation: heartbeat 2s ease infinite;
}

@keyframes heartbeat {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.05); }
}

.hamburger {
    width: 30px;
    height: 20px;
    position: relative;
    cursor: pointer;
}

.hamburger span {
    position: absolute;
    height: 3px;
    width: 100%;
    background: white;
    border-radius: 3px;
    transition: all 0.3s ease;
}

.navbar.scrolled .hamburger span {
    background: var(--bmu-brown);
}

.hamburger span:nth-child(1) { top: 0; }
.hamburger span:nth-child(2) { top: 50%; transform: translateY(-50%); }
.hamburger span:nth-child(3) { bottom: 0; }

.navbar-toggler {
    border: none;
    padding: 0;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(1) {
    transform: rotate(45deg);
    top: 50%;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler[aria-expanded="true"] .hamburger span:nth-child(3) {
    transform: rotate(-45deg);
    bottom: 50%;
}

.navbar-nav .nav-link {
    color: white;
    font-weight: 500;
    margin-left: 2rem;
    position: relative;
    transition: all 0.3s ease;
    overflow: hidden;
}

.navbar.scrolled .navbar-nav .nav-link {
    color: var(--text-dark);
}

.nav-link::before {
    content: attr(data-text);
    position: absolute;
    top: 100%;
    left: 0;
    color: var(--copper);
    transition: top 0.3s ease;
}

.nav-link:hover::before {
    top: 0;
}

.nav-cta {
    margin-left: 2rem !important;
}

.glow-button {
    position: relative;
    padding: 0.75rem 2rem;
    background: var(--gradient-copper);
    border-radius: 8px;
    color: white !important;
    font-weight: 600;
    overflow: hidden;
}

.glow-button .glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255,255,255,0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    transition: transform 0.5s ease;
}

.glow-button:hover .glow {
    transform: translate(-50%, -50%) scale(2);
}

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--gradient-secondary);
    overflow: hidden;
}

/* Hero Carousel */
.hero-carousel {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.carousel-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1);
}

.carousel-slide.active {
    opacity: 1;
    transform: scale(1);
    transition: opacity 1.2s cubic-bezier(0.4,0,0.2,1), transform 1.2s cubic-bezier(0.4,0,0.2,1);
}

.slide-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(107, 44, 27, 0.7) 0%, rgba(15, 27, 60, 0.8) 100%);
}

.slide-content {
    position: absolute;
    bottom: 20%;
    left: 10%;
    color: white;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    transition: all 1s ease 0.5s;
}

.carousel-slide.active .slide-content {
    opacity: 1;
    transform: translateY(0);
}

.slide-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    font-family: 'Playfair Display', serif;
}

.slide-description {
    font-size: 1.2rem;
    opacity: 0.9;
    line-height: 1.6;
}

/* Carousel Controls */
.carousel-controls {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 25;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.2);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.carousel-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    border-color: rgba(255, 255, 255, 0.5);
    transform: scale(1.1);
}

.carousel-indicators {
    display: flex;
    gap: 1rem;
    align-items: center;
    justify-content: center;
}

.indicator {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.6);
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    flex-shrink: 0;
}

.indicator:hover {
    background: rgba(255, 255, 255, 0.6);
    transform: scale(1.2);
}

.indicator.active {
    background: var(--copper);
    border-color: var(--copper);
    transform: scale(1.4);
    box-shadow: 0 0 8px rgba(184, 115, 51, 0.5);
}

.hero-content-overlay {
    position: relative;
    z-index: 5;
    width: 100%;
    height: 100%;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.hero-badge {
    display: inline-block;
    margin-bottom: 2rem;
    animation: slideDown 1s ease;
}

.badge-text {
    background: rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,0.2);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    color: var(--champagne);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-headline {
    font-size: 4rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    line-height: 1.1;
}

.word-animate {
    display: inline-block;
    opacity: 0;
    transform: translateY(30px);
    animation: wordReveal 0.8s ease forwards;
}

.word-animate:nth-child(1) { animation-delay: 0.3s; }
.word-animate:nth-child(2) { animation-delay: 0.4s; }
.word-animate:nth-child(3) { animation-delay: 0.5s; }
.word-animate:nth-child(4) { animation-delay: 0.6s; }
.word-animate:nth-child(5) { animation-delay: 0.7s; }
.word-animate:nth-child(6) { animation-delay: 0.8s; }

.word-animate.highlight {
    background: var(--gradient-copper);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

@keyframes wordReveal {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-subheadline {
    font-size: 1.5rem;
    color: var(--champagne);
    margin-bottom: 3rem;
    font-weight: 300;
    opacity: 0;
    animation: fadeIn 1s ease 1s forwards;
}

.hero-subheadline.left-align {
    text-align: left;
}

@keyframes fadeIn {
    to { opacity: 1; }
}

.hero-cta-group {
    display: flex;
    gap: 2rem;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    opacity: 0;
    animation: slideUp 1s ease 1.2s forwards;
}

@keyframes slideUp {
    to {
        opacity: 1;
        transform: translateY(-20px);
    }
}

.btn-primary-custom {
    position: relative;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.btn-primary-custom:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.2);
}

.btn-background {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-copper);
    transition: left 0.3s ease;
    z-index: -1;
}

.btn-primary-custom:hover .btn-background {
    left: 0;
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn-primary-custom:hover .btn-icon {
    transform: translateX(5px);
}

.btn-secondary-custom {
    position: relative;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.btn-secondary-custom:hover {
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.2);
}

.btn-secondary-custom:hover .btn-background {
    left: 0;
}

.btn-secondary-custom:hover .btn-icon {
    transform: translateX(5px);
}

.btn-tertiary-custom {
    position: relative;
    padding: 1.2rem 3rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: 50px;
    overflow: hidden;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    backdrop-filter: blur(10px);
}

.btn-tertiary-custom:hover {
    border-color: var(--copper);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 115, 51, 0.2);
}

.btn-tertiary-custom:hover .btn-background {
    left: 0;
}

.btn-tertiary-custom:hover .btn-icon {
    transform: translateX(5px);
}

.hero-stats-preview {
    display: flex;
    justify-content: center;
    gap: 3rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeIn 1s ease 1.5s forwards;
}

.stat-preview {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--champagne);
}

.stat-preview .stat-icon {
    font-size: 1.5rem;
    color: var(--copper);
}

.hero-scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    text-align: center;
    color: var(--champagne);
    opacity: 0;
    animation: fadeIn 1s ease 2s forwards;
}

.mouse {
    width: 30px;
    height: 50px;
    border: 2px solid var(--champagne);
    border-radius: 20px;
    margin: 0 auto 10px;
    position: relative;
}

.wheel {
    width: 4px;
    height: 10px;
    background: var(--champagne);
    border-radius: 2px;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scroll 2s ease infinite;
}

@keyframes scroll {
    0% { opacity: 1; transform: translateX(-50%) translateY(0); }
    100% { opacity: 0; transform: translateX(-50%) translateY(20px); }
}

.floating-scripture {
    position: absolute;
    top: 50%;
    right: -200px;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
    font-style: italic;
    opacity: 0.5;
    color: var(--champagne);
    font-size: 0.875rem;
}

/* Stats Section */
.stats-section {
    padding: 8rem 0;
    background: var(--bone);
    position: relative;
    overflow: hidden;
}

.stats-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.particle {
    position: absolute;
    width: 100px;
    height: 100px;
    background: var(--gradient-copper);
    border-radius: 50%;
    opacity: 0.05;
    filter: blur(40px);
}

.particle-1 { top: 10%; left: 10%; animation: drift 15s infinite; }
.particle-2 { top: 60%; right: 10%; animation: drift 20s infinite reverse; }
.particle-3 { bottom: 10%; left: 30%; animation: drift 18s infinite; }
.particle-4 { top: 30%; right: 30%; animation: drift 22s infinite reverse; }

@keyframes drift {
    0%, 100% { transform: translate(0, 0); }
    33% { transform: translate(50px, -50px); }
    66% { transform: translate(-50px, 50px); }
}

.section-header {
    margin-bottom: 4rem;
}

.section-title {
    font-size: 3.5rem;
    color: var(--bmu-brown);
    margin-bottom: 1.5rem;
}

.reveal-text {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.reveal-text.revealed {
    opacity: 1;
    transform: translateY(0);
}

.title-decoration {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.decoration-line {
    width: 80px;
    height: 2px;
    background: var(--gradient-copper);
}

.decoration-icon {
    font-size: 1.5rem;
    color: var(--copper);
    animation: pulse 2s ease infinite;
}

@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 0.8; }
    50% { transform: scale(1.2); opacity: 1; }
}

.stat-card {
    position: relative;
    height: 300px;
    margin-bottom: 2rem;
    perspective: 1000px;
}

.stat-inner {
    position: relative;
    width: 100%;
    height: 100%;
    text-align: center;
    transition: transform 0.8s;
    transform-style: preserve-3d;
}

.stat-card:hover .stat-inner {
    transform: rotateY(180deg);
}

.stat-front, .stat-back {
    position: absolute;
    width: 100%;
    height: 100%;
    backface-visibility: hidden;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-medium);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.stat-back {
    transform: rotateY(180deg);
    background: var(--gradient-primary);
    color: white;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-copper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--bmu-brown);
    margin-bottom: 0.5rem;
}

.stat-icon-wrapper {
    width: 80px;
    height: 80px;
    background: var(--gradient-gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    color: white;
}

.stat-number {
    font-family: 'Playfair Display', serif;
    font-size: 4rem;
    font-weight: 900;
    color: var(--navy);
    margin-bottom: 0.5rem;
}

.stat-label {
    font-size: 1.1rem;
    color: var(--text-light);
    font-weight: 500;
}

/* Benefits Timeline */
.benefits-section {
    padding: 8rem 0;
    background: var(--ivory);
    position: relative;
}

.benefits-timeline {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
}

.timeline-progress {
    position: absolute;
    top: 120px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(212, 165, 116, 0.2);
    z-index: 1;
}

.timeline-progress::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-gold);
    transition: width 2s ease;
}

.timeline-progress.active::before {
    width: 100%;
}

.benefit-item {
    position: relative;
    padding-top: 80px;
    opacity: 0;
    transform: translateY(50px);
    transition: all 0.8s ease;
}

.benefit-item.revealed {
    opacity: 1;
    transform: translateY(0);
}

.benefit-marker {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 60px;
    background: white;
    border: 3px solid var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.marker-number {
    font-weight: 700;
    color: var(--gold);
    font-size: 1.2rem;
}

.marker-pulse {
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 50%;
    animation: pulse-ring 2s ease infinite;
}

@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(1.5); opacity: 0; }
}

.benefit-content {
    background: white;
    padding: 3rem 2rem;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    transition: all 0.3s ease;
}

.benefit-content:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-strong);
}

.benefit-icon-box {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.benefit-icon-box i {
    position: relative;
    z-index: 2;
    font-size: 2.5rem;
    color: var(--gold);
}

.icon-bg {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: var(--gradient-gold);
    opacity: 0.1;
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: all 0.3s ease;
}

.benefit-content:hover .icon-bg {
    transform: translate(-50%, -50%) scale(1.2);
    opacity: 0.2;
}

.benefit-content h3 {
    font-size: 1.5rem;
    color: var(--navy);
    margin-bottom: 1rem;
}

.benefit-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 1.5rem;
}

.feature-tag {
    background: var(--gradient-gold);
    color: white;
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.875rem;
    font-weight: 500;
}

/* Programs Section */
.programs-section {
    padding: 8rem 0;
    background: var(--warm-cream);
    position: relative;
}

.programs-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.programs-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(212, 165, 116, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(107, 44, 27, 0.05) 0%, transparent 50%);
    opacity: 0.6;
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.program-card {
    background: white;
    border-radius: 20px;
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(212, 165, 116, 0.1);
}

.program-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.program-card:hover::before {
    transform: scaleX(1);
}

.program-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-medium);
}

.program-card.featured {
    border: 2px solid var(--copper);
    transform: scale(1.05);
}

.program-card.featured:hover {
    transform: scale(1.05) translateY(-10px);
}

.program-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-primary);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.program-header {
    text-align: center;
    margin-bottom: 2rem;
}

.program-icon {
    width: 80px;
    height: 80px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.program-card:hover .program-icon {
    transform: scale(1.1) rotate(5deg);
}

.program-level {
    color: var(--copper);
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 0.5rem;
}

.program-title {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.program-description {
    color: var(--text-light);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.program-details {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-bottom: 1.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--text-light);
    font-size: 0.9rem;
}

.detail-item i {
    color: var(--copper);
    width: 16px;
}

.program-features {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 2rem;
}

.program-footer {
    text-align: center;
}

.btn-program {
    background: transparent;
    border: 2px solid var(--copper);
    color: var(--copper);
    padding: 0.75rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    cursor: pointer;
}

.btn-program:hover {
    background: var(--copper);
    color: white;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(184, 115, 51, 0.3);
}

.programs-cta {
    margin-top: 4rem;
    padding: 3rem;
    background: white;
    border-radius: 20px;
    box-shadow: var(--shadow-soft);
    position: relative;
    z-index: 2;
}

.programs-cta h3 {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 1rem;
}

.programs-cta p {
    color: var(--text-light);
    font-size: 1.1rem;
    margin-bottom: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Testimonial Section */
.testimonial-section {
    padding: 8rem 0;
    background: var(--gradient-secondary);
    position: relative;
    overflow: hidden;
}

.testimonial-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.testimonial-pattern {
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(45deg, transparent, transparent 35px, rgba(255,255,255,0.05) 35px, rgba(255,255,255,0.05) 70px);
}

.testimonial-carousel {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.testimonial-item {
    opacity: 0;
    transition: opacity 0.5s ease;
}

.testimonial-item.active {
    opacity: 1;
}

.testimonial-content {
    text-align: center;
    padding: 3rem;
}

.quote-mark {
    width: 80px;
    height: 80px;
    margin: 0 auto 2rem;
}

.quote-mark svg {
    width: 100%;
    height: 100%;
    fill: var(--copper);
    opacity: 0.3;
}

.testimonial-text {
    font-family: 'Playfair Display', serif;
    font-size: 2rem;
    color: white;
    font-style: italic;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
}

.author-image {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    border: 3px solid var(--copper);
}

.author-info h4 {
    color: var(--copper);
    font-size: 1.2rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    color: var(--champagne);
    font-size: 0.875rem;
    opacity: 0.9;
}

.testimonial-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-top: 2rem;
}

.nav-btn {
    width: 50px;
    height: 50px;
    border: 2px solid var(--champagne);
    background: transparent;
    border-radius: 50%;
    color: var(--champagne);
    transition: all 0.3s ease;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
}

.nav-btn:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: white;
    transform: scale(1.1);
}

/* Spiritual CTA */
.spiritual-cta-section {
    padding: 8rem 0;
    background: white;
    position: relative;
    overflow: hidden;
}

.spiritual-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

#spiritual-canvas {
    width: 100%;
    height: 100%;
    opacity: 0.05;
}

.spiritual-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    position: relative;
}

.cross-symbol {
    position: relative;
    width: 60px;
    height: 60px;
    margin: 0 auto 3rem;
}

.cross-vertical, .cross-horizontal {
    position: absolute;
    background: var(--gradient-primary);
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
}

.cross-vertical {
    width: 3px;
    height: 100%;
}

.cross-horizontal {
    width: 100%;
    height: 3px;
}

.spiritual-quote {
    font-size: 2.5rem;
    color: var(--navy);
    line-height: 1.4;
    margin-bottom: 3rem;
}

.spiritual-quote span {
    display: block;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.spiritual-quote.revealed span {
    opacity: 1;
    transform: translateY(0);
}

.spiritual-quote span:nth-child(1) { transition-delay: 0.1s; }
.spiritual-quote span:nth-child(2) { transition-delay: 0.2s; }
.spiritual-quote span:nth-child(3) { transition-delay: 0.3s; }

.spiritual-quote .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
}

.cta-group {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.btn-spiritual {
    padding: 1.2rem 3rem;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50px;
    color: white;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.btn-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.3);
    transform: translate(-50%, -50%) scale(0);
    border-radius: 50%;
    transition: transform 0.5s ease;
}

.btn-spiritual:hover .btn-glow {
    transform: translate(-50%, -50%) scale(2);
}

.or-divider {
    position: relative;
    color: var(--text-light);
    font-style: italic;
}

.btn-consultation {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    background: transparent;
    border: 2px solid var(--navy);
    padding: 1rem 2rem;
    border-radius: 50px;
    color: var(--navy);
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-consultation:hover {
    background: var(--navy);
    color: white;
    transform: translateY(-2px);
}

/* Footer */
.footer-section {
    padding: 4rem 0 2rem;
    background: var(--gradient-primary);
    position: relative;
    overflow: hidden;
}

.footer-background {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
}

.footer-gradient {
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center top, rgba(212,165,116,0.1) 0%, transparent 50%);
}

.footer-content {
    text-align: center;
}

.footer-logo {
    margin-bottom: 1rem;
}

.footer-brand-logo {
    height: 50px;
    width: auto;
    filter: brightness(0) invert(1); /* Makes logo white for footer */
}

.footer-brand h4 {
    color: white;
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.footer-brand p {
    color: white;
    font-style: italic;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.footer-nav {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.footer-link {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
    position: relative;
    opacity: 0.9;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--copper);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--copper);
    opacity: 1;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.social-link {
    width: 40px;
    height: 40px;
    border: 2px solid white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
    opacity: 0.9;
}

.social-link:hover {
    background: var(--copper);
    border-color: var(--copper);
    color: white;
    transform: translateY(-5px);
    opacity: 1;
}

.footer-divider {
    width: 100px;
    height: 1px;
    background: var(--copper);
    margin: 2rem auto;
}

.footer-copyright {
    color: white;
    opacity: 0.8;
    font-size: 0.875rem;
}

/* Modal Styles */
.modal {
    z-index: 1100;
}

.modal-backdrop {
    z-index: 1090;
}

.modal-dialog {
    z-index: 1105;
}

.modal-content {
    border: none;
    border-radius: 12px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1106;
}

.modal-header {
    background: var(--gradient-primary);
    color: white;
    border-bottom: none;
    border-radius: 12px 12px 0 0;
}

.modal-title {
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.modal-title i {
    font-size: 1.2rem;
}

.btn-close {
    filter: invert(1);
    z-index: 1107;
}

.form-section {
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid #e9ecef;
}

.form-section:last-child {
    border-bottom: none;
    margin-bottom: 0;
}

.form-section .section-title {
    color: var(--bmu-brown);
    font-weight: 600;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1rem;
}

.form-section .section-title i {
    color: var(--copper);
}

.form-control, .form-select {
    border: 2px solid #e9ecef;
    border-radius: 8px;
    padding: 0.75rem;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    border-color: var(--copper);
    box-shadow: 0 0 0 0.2rem rgba(184, 115, 51, 0.25);
}

.form-label {
    font-weight: 500;
    color: var(--bmu-brown);
    margin-bottom: 0.5rem;
}

.btn-primary {
    background: var(--gradient-copper);
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(184, 115, 51, 0.3);
}

.btn-secondary {
    background: #6c757d;
    border: none;
    border-radius: 8px;
    padding: 0.75rem 2rem;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-secondary:hover {
    background: #5a6268;
    transform: translateY(-2px);
}

#signatureCanvas {
    background: white;
    border: 2px solid #e9ecef;
    border-radius: 8px;
}

/* Video Modal */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 1080;
}

.video-modal.active {
    opacity: 1;
    visibility: visible;
}

.modal-content {
    position: relative;
    width: 90%;
    max-width: 1000px;
}

.modal-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: transparent;
    border: none;
    color: white;
    font-size: 2rem;
    transition: transform 0.3s ease;
}

.modal-close:hover {
    transform: rotate(90deg);
}

.video-wrapper {
    position: relative;
    padding-bottom: 56.25%;
    background: black;
    border-radius: 10px;
    overflow: hidden;
}

.video-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: white;
}

.video-placeholder i {
    font-size: 4rem;
    margin-bottom: 1rem;
    opacity: 0.5;
}

/* Responsive */
@media (max-width: 768px) {
    .urgency-banner .container {
        font-size: 12px;
        padding: 0 15px;
    }
    
    .urgency-banner {
        padding: 8px 0;
    }
    
    .urgency-banner .banner-content {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
    
    .urgency-banner .banner-text {
        font-size: 11px;
        line-height: 1.3;
    }
    
    .register-now-btn {
        padding: 6px 12px;
        font-size: 11px;
        margin-top: 2px;
    }
    
    /* Adjust navbar position for mobile */
    .navbar.fixed-top {
        top: 70px !important;
    }
    
    .hero-headline {
        font-size: 2.5rem;
    }
    
    .hero-subheadline {
        font-size: 1.1rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary-custom,
    .btn-secondary-custom,
    .btn-tertiary-custom {
        padding: 1rem 2rem;
        font-size: 0.9rem;
    }
    
    .slide-title {
        font-size: 1.8rem;
    }
    
    .slide-description {
        font-size: 1rem;
    }
    
    .carousel-controls {
        bottom: 20px;
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
    }
    
    .indicator {
        width: 12px;
        height: 12px;
    }
    
    .section-title {
        font-size: 2.5rem;
    }
    
    .stat-card {
        height: 250px;
    }
    
    .stat-number {
        font-size: 3rem;
    }
    
    .timeline-progress {
        display: none;
    }
    
    .benefit-marker {
        position: relative;
        margin: 0 auto 2rem;
    }
    
    .programs-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .program-card {
        padding: 1.5rem;
    }
    
    .program-card.featured {
        transform: none;
    }
    
    .program-card.featured:hover {
        transform: translateY(-5px);
    }
    
    .program-title {
        font-size: 1.3rem;
    }
    
    .programs-cta {
        padding: 2rem 1.5rem;
    }
    
    .programs-cta h3 {
        font-size: 1.5rem;
    }
    
    .testimonial-text {
        font-size: 1.5rem;
    }
    
    .spiritual-quote {
        font-size: 1.8rem;
    }
    
    .footer-nav {
        flex-direction: column;
        gap: 1rem;
    }
    
    .brand-logo {
        height: 35px;
    }
    
    .footer-brand-logo {
        height: 40px;
    }
    
    .cursor-dot, .cursor-outline {
        display: none;
    }
    
    * {
        cursor: auto;
    }
}

.justified-text {
    text-align: justify;
    text-align-last: left;
}