:root {
    --primary: #997939;  /* Golden brown */
    --primary-dark: #785d2d;  /* Darker golden brown */
    --accent: #b59756;  /* Light golden brown */
    --accent-dark: #866d3f;  /* Medium golden brown */
    --text-dark: #2C1810;  /* Deep brown */
    --text-light: #F5F2EE;  /* Off-white */
    --bg-light: #F9F6F2;  /* Light cream */
    --bg-dark: #2C1810;  /* Deep brown */
    --gold: #997939;  /* Main golden brown */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #333;
}

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

/* Navigation Styles */
.navbar {
    background: linear-gradient(135deg, #997939 0%, #b59756 50%, #997939 100%) !important;
    border-bottom: 3px solid #b59756;
    padding: 1.2rem 0;
    position: fixed;
    width: 100%;
    top: 0;
    z-index: 1000;
    box-shadow: 0 4px 20px rgba(153, 121, 57, 0.3);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255,255,255,0.1) 0%, transparent 50%, rgba(255,255,255,0.05) 100%);
    pointer-events: none;
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0.7;
    }
}

.navbar::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, #FFD700, transparent);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        box-shadow: 0 0 5px #FFD700;
    }
    to {
        box-shadow: 0 0 20px #FFD700, 0 0 30px #FFA500;
    }
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.nav-logo {
    display: flex;
    align-items: center;
    color: white;
    font-size: 1.4rem;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    z-index: 2;
}

.nav-logo:hover {
    color: #F5F2EE;
    transform: scale(1.05);
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
}

.nav-logo i {
    margin-right: 12px;
    font-size: 1.8rem;
    background: linear-gradient(45deg, #FFD700, #FFA500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3));
}

.nav-menu {
    display: flex;
    list-style: none;
    margin: 0;
    margin-left: 90px;
    padding: 0;
    gap: 5px;
}

.nav-item {
    position: relative;
}

.nav-item.dropdown {
    position: relative;
}

.nav-link {
    color: white;
    text-decoration: none;
    padding: 12px 20px;
    display: flex;
    align-items: center;
    border-radius: 25px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    font-weight: 500;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.05);
    backdrop-filter: blur(5px);
    border: 1px solid rgba(255,255,255,0.1);
}

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

.nav-link:hover::before {
    left: 100%;
}

.nav-link:hover {
    background: rgba(255,255,255,0.15);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.2);
    border-color: rgba(255,255,255,0.3);
    color: #FFD700;
    text-shadow: 0 2px 8px rgba(0,0,0,0.3);
}

.nav-link i {
    margin-left: 8px;
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.nav-link:hover i {
    transform: rotate(180deg);
}

/* Login Button Styling */
.nav-item:last-child .nav-link {
    /* background: linear-gradient(135deg, #FFD700, #FFA500); */
    color: #fdfdfd;
    /* font-weight: 600; */
    /* border: 2px solid rgba(255,255,255,0.3); */
}

.nav-item:last-child .nav-link:hover {
    /* background: linear-gradient(135deg, #FFA500, #FFD700); */
    color: #fafafa;
    transform: translateY(-3px);
    /* box-shadow: 0 10px 30px rgba(255, 215, 0, 0.4); */
}

.nav-item:last-child .nav-link i {
    transform: none;
}

.nav-item:last-child .nav-link:hover i {
    transform: translateX(3px);
}

.dropdown-content {
    position: absolute;
    top: calc(100% + 10px);
    left: 0;
    background: linear-gradient(135deg, #997939 0%, #b59756 100%);
    min-width: 220px;
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 15px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-15px) scale(0.95);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    z-index: 1001;
    border: 2px solid rgba(255,255,255,0.1);
    backdrop-filter: blur(10px);
    overflow: visible; /* Changed from hidden to visible for nested dropdowns */
}

/* Fix untuk dropdown Contact yang berada di posisi kanan */
.nav-item:nth-last-child(2) .dropdown-content {
    left: auto;
    right: 0;
}

.nav-item:last-child .dropdown-content::before {
    left: auto;
    right: 20px;
}

.dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 20px;
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #997939 0%, #b59756 100%);
    transform: rotate(45deg);
    border-top: 2px solid rgba(255,255,255,0.1);
    border-left: 2px solid rgba(255,255,255,0.1);
}

.dropdown:hover .dropdown-content,
.nav-item.dropdown:hover .dropdown-content {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}

.dropdown-content a {
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dropdown-content a:last-child {
    border-bottom: none;
}

.dropdown-content a::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #FFD700, #FFA500);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.dropdown-content a:hover::before {
    transform: scaleY(1);
}

.dropdown-content a:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 35px;
    color: #FFD700;
}

.dropdown-content a:first-child {
    border-radius: 15px 15px 0 0;
}

.dropdown-content a:last-child {
    border-radius: 0 0 15px 15px;
}

/* Nested dropdown styles for OIG submenu */
.nav-item.dropdown .dropdown-content .nav-item.dropdown {
    position: relative;
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
    position: absolute;
    left: 100%;
    top: 0;
    margin-left: 10px;
    min-width: 200px;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: all 0.3s ease;
    z-index: 1001;
    background: linear-gradient(135deg, #997939 0%, #b59756 100%);
    box-shadow: 0 15px 35px rgba(0,0,0,0.2);
    border-radius: 15px;
}

/* Auto-adjust dropdown position when it would overflow */
.nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right.left-positioned {
    left: auto;
    right: 100%;
    margin-left: 0;
    margin-right: 10px;
    transform: translateX(10px);
}

/* Ensure dropdown stays within viewport bounds */
@media (max-width: 1024px) {
    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
        max-width: calc(100vw - 40px);
        left: auto;
        right: auto;
    }

    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right.left-positioned {
        right: 100%;
        left: auto;
    }
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown:hover .dropdown-content.right.left-positioned {
    transform: translateX(0);
}

/* Ensure smooth transitions for position changes */
.nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
    transition: all 0.3s ease, left 0.1s ease, right 0.1s ease, margin 0.1s ease;
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown:hover .dropdown-content.right,
.nav-item.dropdown .dropdown-content .nav-item.dropdown:hover > .dropdown-content.right {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
    display: block;
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown .nav-link {
    position: relative;
    padding-right: 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown .nav-link i {
    margin-left: 10px;
    font-size: 12px;
}

/* Ensure nested dropdown content has proper styling */
.nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right a {
    color: white;
    padding: 15px 25px;
    text-decoration: none;
    display: block;
    transition: all 0.3s ease;
    position: relative;
    font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right a:hover {
    background: rgba(255,255,255,0.15);
    padding-left: 35px;
    color: #FFD700;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    padding: 10px;
    border-radius: 8px;
    background: rgba(255,255,255,0.1);
    transition: all 0.3s ease;
    border: 1px solid rgba(255,255,255,0.2);
    position: absolute;
    right: 30px;
}

.hamburger:hover {
    background: rgba(255,255,255,0.2);
    transform: scale(1.1);
}

.bar {
    width: 28px;
    height: 3px;
    background: white;
    margin: 4px 0;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border-radius: 3px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.3);
}

.hamburger.active .bar:nth-child(1) {
    transform: rotate(-45deg) translate(-6px, 6px);
}

.hamburger.active .bar:nth-child(2) {
    opacity: 0;
}

.hamburger.active .bar:nth-child(3) {
    transform: rotate(45deg) translate(-6px, -6px);
}

/* Responsive adjustments for smaller screens */
@media (max-width: 1200px) {
    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
        min-width: 180px;
    }
}

@media (max-width: 992px) {
    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
        min-width: 160px;
        margin-left: 5px;
    }

    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right.left-positioned {
        margin-right: 5px;
    }
}

/* Enhanced Mobile Navigation Styles */
@media (max-width: 768px) {
    /* Reduce complex animations on mobile */
    .shape {
        animation: none;
    }
    
    /* Simplify gradients for better performance */
    .navbar {
        background: var(--primary) !important;
    }
    
    /* Optimize backdrop filters */
    .slide-content {
        backdrop-filter: none;
        background: rgba(44, 24, 16, 0.9);
    }
    
    /* Reduce box-shadows for better scrolling */
    .modern-card {
        box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    }

    .navbar {
        padding: 1rem 0;
    }

    .nav-container {
        padding: 0 20px;
    }

    .nav-logo {
        font-size: 1.1rem;
    }

    .nav-logo span {
        display: none;
    }

    .nav-logo::after {
        content: 'GT Eben-Haezer';
        margin-left: 8px;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 85px;
        flex-direction: column;
        background: linear-gradient(135deg, #997939 0%, #b59756 100%);
        width: 100%;
        height: calc(100vh - 85px);
        text-align: center;
        transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: 0 10px 40px rgba(0,0,0,0.2);
        backdrop-filter: blur(15px);
        border-top: 3px solid rgba(255,255,255,0.2);
        padding: 30px 0;
        gap: 0;
        overflow-y: auto;
    }

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

    .nav-item {
        margin: 8px 0;
        width: 100%;
    }

    .nav-link {
        padding: 18px 30px;
        border-radius: 0;
        background: transparent;
        border: none;
        border-bottom: 1px solid rgba(255,255,255,0.1);
        margin: 0 20px;
        font-size: 1.1rem;
        font-weight: 600;
        position: relative;
        overflow: hidden;
    }

    .nav-link::before {
        content: '';
        position: absolute;
        left: 0;
        top: 0;
        width: 4px;
        height: 100%;
        background: linear-gradient(180deg, #FFD700, #FFA500);
        transform: scaleY(0);
        transition: transform 0.3s ease;
    }

    .nav-link:hover::before {
        transform: scaleY(1);
    }

    .nav-link:hover {
        background: rgba(255,255,255,0.15);
        transform: none;
        box-shadow: none;
        color: #FFD700;
        padding-left: 40px;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: rgba(0,0,0,0.2);
        border: none;
        border-radius: 0;
        margin: 0;
        display: none;
        backdrop-filter: blur(5px);
    }

    .dropdown-content.show {
        display: block;
        animation: slideDown 0.3s ease;
    }

    .dropdown-content::before {
        display: none;
    }

    .dropdown-content a {
        padding: 15px 50px;
        border-bottom: 1px solid rgba(255,255,255,0.05);
        font-size: 1rem;
        position: relative;
    }

    .dropdown-content a::before {
        content: '→';
        position: absolute;
        left: 30px;
        opacity: 0;
        transition: all 0.3s ease;
    }

    .dropdown-content a:hover::before {
        opacity: 1;
        left: 35px;
    }

    .dropdown-content a:hover {
        padding-left: 60px;
        background: rgba(255,255,255,0.1);
        color: #FFD700;
    }

    /* Mobile nested dropdown styles */
    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right {
        position: static;
        margin-left: 20px;
        margin-top: 5px;
        transform: none;
        opacity: 1;
        visibility: visible;
        display: none;
        background: rgba(0,0,0,0.3);
    }

    .nav-item.dropdown .dropdown-content .nav-item.dropdown .dropdown-content.right.show {
        display: block;
    }
}

@keyframes slideDown {
    from {
        opacity: 0;
        max-height: 0;
    }
    to {
        opacity: 1;
        max-height: 500px;
    }
}

/* Tablet Styles */
@media (min-width: 769px) and (max-width: 1024px) {
    .nav-container {
        padding: 0 25px;
    }

    .nav-logo {
        font-size: 1.3rem;
    }

    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }

    .dropdown-content {
        min-width: 200px;
    }
}

/* Large Desktop Styles */
@media (min-width: 1400px) {
    .nav-container {
        max-width: 1600px;
        padding: 0 40px;
    }

    .nav-logo {
        font-size: 1.5rem;
    }

    .nav-link {
        padding: 14px 22px;
        font-size: 1rem;
    }

    .dropdown-content {
        min-width: 250px;
    }
}



/* Additional Navbar Effects */
.nav-link .ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Loading bar for page transitions */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 0%;
    height: 3px;
    background: linear-gradient(90deg, #FFD700, #FFA500);
    z-index: 9999;
    transition: width 0.3s ease;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
    opacity: 1;
    transition: opacity 0.3s ease;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: auto;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: -40px;
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    overflow: hidden;
    margin-top: 90px;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 100%;
}

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

.slide.active {
    opacity: 1;
}

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

.slide-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    text-align: center;
    color: white;
    z-index: 3;
    background: rgba(44, 24, 16, 0.7);
    padding: 50px;
    border-radius: 20px;
    backdrop-filter: blur(15px);
    opacity: 0;
    transition: var(--transition);
    max-width: 800px;
    width: 90%;
}

/* Hero overlay */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(153, 121, 57, 0.8) 0%, rgba(200, 149, 109, 0.6) 100%);
    z-index: 2;
}

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50px;
    padding: 8px 20px;
    margin-bottom: 20px;
    font-size: 0.9rem;
    font-weight: 500;
    color: white;
    animation: fadeInUp 0.8s ease 0.2s both;
}

.hero-badge i {
    margin-right: 8px;
    font-size: 1rem;
}

/* Hero title */
.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 0.8s ease 0.4s both;
}

/* Hero subtitle */
.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 30px;
    opacity: 0.95;
    line-height: 1.5;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.2);
    animation: fadeInUp 0.8s ease 0.6s both;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    animation: fadeInUp 0.8s ease 0.8s both;
}

.btn-primary, .btn-secondary {
    display: inline-flex;
    align-items: center;
    padding: 15px 30px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    background: white;
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    color: var(--primary-dark);
}

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

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.btn-primary i, .btn-secondary i {
    margin-right: 8px;
    font-size: 1rem;
}

.slide.active .slide-content {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.slide-content::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 17px;
    animation: pulse 2s ease-in-out infinite;
}

.slide-content h1 {
    font-size: 3rem;
    margin-bottom: 20px;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
}

.slide-content p {
    font-size: 1.3rem;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.5);
}

.slider-nav {
    position: absolute;
    top: 55%;
    width: 100%;
    display: flex;
    justify-content: space-between;
    padding: 0 30px;
    z-index: 3;
}

.slider-nav button {
    background: rgba(255,255,255,0.2);
    border: none;
    color: white;
    font-size: 1.5rem;
    padding: 15px 20px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.slider-nav button:hover {
    background: rgba(255,255,255,0.3);
    transform: scale(1.1);
}

.slider-indicators {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    z-index: 3;
}

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

.indicator.active,
.indicator:hover {
    background: white;
    transform: scale(1.2);
}

/* Enhanced Schedule Section */
.schedule {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--primary) 0%, var(--accent) 100%);
    position: relative;
    overflow: hidden;
}

.schedule::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

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

.schedule .section-title {
    color: white;
}

.schedule .section-subtitle {
    color: rgba(255, 255, 255, 0.9);
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.schedule-item {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    padding: 40px 30px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    position: relative;
    transition: all 0.4s ease;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.schedule-item:hover {
    transform: translateY(-15px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.2);
}

.schedule-item.featured {
    background: white;
    transform: scale(1.05);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.schedule-item.featured:hover {
    transform: scale(1.05) translateY(-15px);
}

.schedule-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.schedule-icon i {
    font-size: 1.8rem;
    color: white;
    z-index: 2;
}

.schedule-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.3) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.schedule-item:hover .schedule-icon::before {
    transform: translateX(100%);
}

.schedule-time h3 {
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 15px;
}

.time-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 5px;
    margin-bottom: 10px;
}

.time-display .time {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--primary);
}

.time-display .period {
    font-size: 1rem;
    font-weight: 500;
    color: var(--accent);
}

.schedule-day {
    font-size: 1rem;
    color: var(--text-dark);
    opacity: 0.8;
    margin-bottom: 20px;
}

.schedule-details {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 20px;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.detail-item i {
    font-size: 0.8rem;
    color: var(--primary);
}

.special-note {
    background: rgba(153, 121, 57, 0.1);
    border-radius: 10px;
    padding: 15px;
    margin: 15px 0;
}

.note-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 500;
}

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

.note-item i {
    font-size: 0.8rem;
}

.schedule-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 2s infinite;
}

.schedule-time h3 {
    background: linear-gradient(45deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-size: 200% 200%;
    animation: gradient 5s ease infinite;
}

.special-note {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(51,51,51,0.2);
}

.special-note p {
    font-size: 0.9rem;
    margin-bottom: 5px;
}

/* Gallery Section */
.gallery {
    padding: 80px 0;
    background: var(--bg-light);
}

.gallery h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
    color: #333;
    position: relative;
}

.gallery h2::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, #00bfb2, #f8c6b6);
    border-radius: 2px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 30px;
}

.gallery-item {
    position: relative;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    transition: all 0.3s ease;
    aspect-ratio: 4/3;
    transform: scale(1);
    transition: var(--transition);
}

.gallery-item:hover {
    transform: scale(1.05) translateY(-10px);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.3s ease;
}

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

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(transparent, rgba(44, 24, 16, 0.9));
    backdrop-filter: blur(5px);
    color: white;
    padding: 30px 20px 20px;
    transform: translateY(100%);
    transition: all 0.3s ease;
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-overlay h3 {
    font-size: 1.3rem;
    margin-bottom: 10px;
}

/* Contact Section */
.contact {
    padding: 80px 0;
    background: #997939;
    color: var(--text-light);
}

.contact h2 {
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 50px;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: start;
}

.social-links {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.social-link {
    display: flex;
    align-items: center;
    color: white;
    text-decoration: none;
    padding: 15px 20px;
    background: rgba(255, 255, 255, 0.05);
    border-radius: 10px;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
    position: relative;
    z-index: 1;
    overflow: hidden;
    border: 1px solid var(--gold);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(10px);
}

.social-link i {
    font-size: 1.5rem;
    margin-right: 15px;
    width: 30px;
}

.social-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.1);
    transform: translateX(-100%) skewX(-15deg);
    transition: var(--transition);
    z-index: -1;
}

.social-link:hover::before {
    transform: translateX(0) skewX(-15deg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.contact-item i {
    font-size: 1.3rem;
    margin-top: 5px;
    width: 25px;
}

.contact-item p {
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Footer */
.footer {
    background: #997939;
    color: var(--text-light);
    text-align: center;
    padding: 30px 0;
}

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

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 80px;
        flex-direction: column;
        background: #997939;
        width: 100%;
        text-align: center;
        transition: 0.3s;
        box-shadow: 0 10px 27px rgba(0,0,0,0.05);
        padding: 20px 0;
    }

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

    .nav-item {
        margin: 10px 0;
    }

    .dropdown-content {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        background: #997939;
        margin-top: 10px;
        border-radius: 5px;
    }

    .slide-content h1 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }

    .slide-content {
        padding: 20px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-grid::before {
        display: none;
    }

    .schedule-item.center {
        transform: none;
    }

    .gallery-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .nav-logo span {
        display: none;
    }
}

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

    .schedule-item {
        padding: 25px 20px;
    }

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

/* Form Styles for Contact Pages */
.form-header {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    padding: 120px 0 80px;
    text-align: center;
    color: white;
    position: relative;
    overflow: hidden;
}

.form-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="25" cy="25" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="75" cy="75" r="1" fill="rgba(255,255,255,0.1)"/><circle cx="50" cy="10" r="0.5" fill="rgba(255,255,255,0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.form-container {
    max-width: 800px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.form-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.3);
    animation: fadeInUp 0.8s ease-out;
}

.form-subtitle {
    font-size: 1.1rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.form-section {
    background: white;
    border-radius: 20px;
    padding: 50px;
    margin: -40px auto 40px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
    border: 1px solid rgba(153, 121, 57, 0.1);
    position: relative;
    animation: slideInUp 0.8s ease-out 0.4s both;
}

.form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 20px 20px 0 0;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 30px;
}

.form-col {
    display: flex;
    flex-direction: column;
}

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

.form-label {
    display: block;
    margin-bottom: 10px;
    font-weight: 600;
    color: var(--text-dark);
    font-size: 1rem;
    position: relative;
}

.form-label::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 30px;
    height: 2px;
    background: var(--accent);
    border-radius: 1px;
}

.form-label i {
    margin-right: 8px;
    color: var(--primary);
    font-size: 0.9rem;
}

.form-input, .form-select, .form-textarea {
    width: 100%;
    padding: 18px 25px;
    border: 2px solid #e8ecf0;
    border-radius: 12px;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: #fafbfc;
    font-family: inherit;
}

.form-input:focus, .form-select:focus, .form-textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(153, 121, 57, 0.1);
    background: white;
    transform: translateY(-2px);
}

.form-input:hover, .form-select:hover, .form-textarea:hover {
    border-color: var(--primary);
    background: white;
}

.form-textarea {
    min-height: 150px;
    resize: vertical;
    line-height: 1.6;
}

.btn {
    padding: 18px 40px;
    border: none;
    border-radius: 12px;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    font-family: inherit;
}

.btn-submit {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
    width: 100%;
    margin-top: 20px;
    position: relative;
    overflow: hidden;
}

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

.btn-submit:hover::before {
    left: 100%;
}

.btn-submit:hover:not(:disabled) {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(153, 121, 57, 0.4);
}

.btn-submit:active {
    transform: translateY(-1px);
}

.btn-submit:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.alert {
    padding: 20px 25px;
    border-radius: 12px;
    margin-bottom: 30px;
    border: none;
    font-weight: 500;
    position: relative;
    animation: slideInDown 0.5s ease-out;
}

.alert-success {
    background: rgba(40, 167, 69, 0.1);
    color: #155724;
    border-left: 4px solid #28a745;
}

.alert-error {
    background: rgba(220, 53, 69, 0.1);
    color: #721c24;
    border-left: 4px solid #dc3545;
}

.error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 8px;
    display: none;
    font-weight: 500;
}

.text-danger {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

/* Form animations */
@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes slideInDown {
    from {
        opacity: 0;
        transform: translateY(-30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Additional form enhancements */
.form-group {
    position: relative;
}

.form-group::before {
    content: '';
    position: absolute;
    top: 0;
    left: -20px;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--primary), var(--accent));
    border-radius: 2px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.form-group:focus-within::before {
    opacity: 1;
}

.form-input:valid:not(:placeholder-shown) {
    border-color: #28a745;
    background: linear-gradient(135deg, #f8fff9, #ffffff);
}

.form-input:invalid:not(:placeholder-shown) {
    border-color: #dc3545;
    background: linear-gradient(135deg, #fff8f8, #ffffff);
}

/* Character counter for textarea */
.form-group.has-counter {
    position: relative;
}

.char-counter {
    position: absolute;
    bottom: 10px;
    right: 15px;
    font-size: 0.8rem;
    color: #666;
    background: rgba(255, 255, 255, 0.9);
    padding: 2px 6px;
    border-radius: 4px;
    pointer-events: none;
}

/* Success state animation */
.form-success {
    animation: successPulse 0.6s ease-out;
}

@keyframes successPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

/* Form responsive */
@media (max-width: 768px) {
    .form-header {
        padding: 100px 0 60px;
    }

    .form-title {
        font-size: 2rem;
    }

    .form-section {
        padding: 30px 25px;
        margin: -30px 15px 30px;
    }

    .form-container {
        padding: 0 15px;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .form-input, .form-select, .form-textarea {
        padding: 15px 20px;
    }

    .btn-submit {
        padding: 16px 30px;
    }

    .form-group::before {
        left: -15px;
    }
}

/* Multi-Step Form Styles - Only for Marriage Form */
.multi-step-form .step-progress {
    display: flex;
    justify-content: space-between;
    margin: 40px 0 60px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.multi-step-form .step-progress::before {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    height: 3px;
    background: #e8ecf0;
    z-index: 1;
}

.multi-step-form .step-progress::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    z-index: 2;
    transition: width 0.5s ease;
    width: 0%;
}

.multi-step-form .step-progress.step-1::after { width: 0%; }
.multi-step-form .step-progress.step-2::after { width: 33.33%; }
.multi-step-form .step-progress.step-3::after { width: 66.66%; }
.multi-step-form .step-progress.step-4::after { width: 100%; }

.multi-step-form .step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 3;
    flex: 1;
    max-width: 120px;
}

.multi-step-form .step-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: #e8ecf0;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: all 0.3s ease;
    border: 3px solid #e8ecf0;
}

.multi-step-form .step-icon i {
    font-size: 1.2rem;
    color: #666;
    transition: color 0.3s ease;
}

.multi-step-form .step-text {
    font-size: 0.9rem;
    color: #666;
    text-align: center;
    font-weight: 500;
    transition: color 0.3s ease;
    line-height: 1.3;
}

.multi-step-form .step.active .step-icon {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-color: var(--primary);
    transform: scale(1.1);
    box-shadow: 0 8px 25px rgba(153, 121, 57, 0.3);
}

.multi-step-form .step.active .step-icon i {
    color: white;
}

.multi-step-form .step.active .step-text {
    color: var(--primary);
    font-weight: 600;
}

.multi-step-form .step.completed .step-icon {
    background: #28a745;
    border-color: #28a745;
}

.multi-step-form .step.completed .step-icon i {
    color: white;
}

.multi-step-form .step.completed .step-text {
    color: #28a745;
}

/* Form Section Styles - Multi-Step Only */
.multi-step-form .form-section {
    display: none;
    animation: slideInRight 0.5s ease-out;
}

.multi-step-form .form-section.active {
    display: block;
}

.multi-step-form .form-section-title {
    font-size: 1.8rem;
    color: var(--text-dark);
    margin-bottom: 30px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--accent);
    display: flex;
    align-items: center;
    gap: 15px;
}

.multi-step-form .form-section-title i {
    color: var(--primary);
    font-size: 1.5rem;
}

/* Form Actions - Multi-Step Only */
.multi-step-form .form-actions {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 40px;
    padding-top: 30px;
    border-top: 1px solid #e8ecf0;
}

.multi-step-form .btn-prev,
.multi-step-form .btn-next {
    padding: 15px 30px;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
}

.multi-step-form .btn-prev {
    background: #f8f9fa;
    color: var(--text-dark);
    border: 2px solid #e8ecf0;
}

.multi-step-form .btn-prev:hover {
    background: #e9ecef;
    border-color: var(--primary);
    transform: translateY(-2px);
}

.multi-step-form .btn-next {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    color: white;
}

.multi-step-form .btn-next:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(153, 121, 57, 0.3);
}

/* Form Summary - Multi-Step Only */
.multi-step-form .form-summary {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 25px;
    margin: 25px 0;
    border-left: 4px solid var(--primary);
}

.multi-step-form .summary-section {
    margin-bottom: 25px;
}

.multi-step-form .summary-section:last-child {
    margin-bottom: 0;
}

.multi-step-form .summary-title {
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 15px;
    font-size: 1.1rem;
    display: flex;
    align-items: center;
    gap: 8px;
}

.multi-step-form .summary-item {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #e8ecf0;
}

.multi-step-form .summary-item:last-child {
    border-bottom: none;
}

.multi-step-form .summary-label {
    font-weight: 500;
    color: #666;
}

.multi-step-form .summary-value {
    color: var(--text-dark);
    font-weight: 500;
}

/* Checkbox Styles - Multi-Step Only */
.multi-step-form .form-checkbox {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    line-height: 1.5;
    font-size: 0.95rem;
}

.multi-step-form .form-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    margin: 0;
    cursor: pointer;
    accent-color: var(--primary);
}

/* Animations */
@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Additional form styling - Multi-Step Only */
.multi-step-form .form-section {
    position: relative;
    min-height: 400px;
}

.multi-step-form .form-section.active {
    animation: fadeInSlide 0.6s ease-out;
}

@keyframes fadeInSlide {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Step indicator improvements - Multi-Step Only */
.multi-step-form .step {
    cursor: pointer;
    transition: all 0.3s ease;
}

.multi-step-form .step:hover:not(.active) .step-icon {
    transform: scale(1.05);
    border-color: var(--primary);
}

.multi-step-form .step:hover:not(.active) .step-text {
    color: var(--primary);
}

/* Form validation improvements - Multi-Step Only */
.multi-step-form .form-input.error {
    border-color: #dc3545 !important;
    background-color: #fff8f8 !important;
    animation: shake 0.5s ease-in-out;
}

.multi-step-form .form-input.success {
    border-color: #28a745 !important;
    background-color: #f8fff9 !important;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

.multi-step-form .error-message {
    color: #dc3545;
    font-size: 0.875rem;
    margin-top: 5px;
    display: none;
    animation: slideDown 0.3s ease-out;
}

.multi-step-form .error-message.show {
    display: block;
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Responsive Design for Multi-Step */
@media (max-width: 768px) {
    .multi-step-form .step-progress {
        margin: 30px 0 40px;
        padding: 0 10px;
    }

    .multi-step-form .step-icon {
        width: 45px;
        height: 45px;
    }

    .multi-step-form .step-icon i {
        font-size: 0.9rem;
    }

    .multi-step-form .step-text {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    .multi-step-form .form-section-title {
        font-size: 1.4rem;
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
        text-align: left;
    }

    .multi-step-form .form-actions {
        flex-direction: column;
        gap: 15px;
    }

    .multi-step-form .btn-prev,
    .multi-step-form .btn-next {
        width: 100%;
        justify-content: center;
        padding: 16px 20px;
    }

    .multi-step-form .summary-item {
        flex-direction: column;
        gap: 5px;
        align-items: flex-start;
    }

    .multi-step-form .summary-label {
        font-weight: 600;
        color: var(--primary);
    }

    .multi-step-form .form-section {
        min-height: 300px;
    }
}

@media (max-width: 480px) {
    .multi-step-form .step-progress {
        flex-wrap: wrap;
        gap: 15px;
        justify-content: center;
    }

    .multi-step-form .step {
        flex: 0 0 calc(50% - 7.5px);
        max-width: none;
    }

    .multi-step-form .step-progress::before,
    .multi-step-form .step-progress::after {
        display: none;
    }
}

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

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

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

@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    50% {
        transform: translateY(-10px) scale(1.02);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

.schedule-item,
.gallery-item,
.contact-item,
.modern-card {
    animation: fadeInUp 0.6s ease forwards;
}

.modern-card.pulsing {
    animation: fadeInUp 0.6s ease forwards, float 3s ease-in-out infinite;
}

.modern-card.pulsing:nth-child(2) {
    animation-delay: 0.2s, 0.5s;
}

.modern-card.pulsing:nth-child(3) {
    animation-delay: 0.4s, 1s;
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Lightbox styles */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    animation: fadeIn 0.3s ease forwards;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: white;
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
}

@keyframes fadeIn {
    to { opacity: 1; }
}

/* Modern Scrollbar */
::-webkit-scrollbar {
    width: 10px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: var(--primary);
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--primary-dark);
}

/* Additional animation utilities */

@keyframes shimmer {
    0% { background-position: -1000px 0; }
    100% { background-position: 1000px 0; }
}

.floating {
    animation: float 6s ease-in-out infinite;
}

.pulsing {
    animation: pulse 2s ease-in-out infinite;
}

/* Add gradient animation */
@keyframes gradient {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

/* Add modern card styles */
.modern-card {
    background: white;
    border: 1px solid var(--accent);
    border-radius: 15px;
    padding: 30px;
    transition: var(--transition);
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

/* Add glass morphism effect */
.glass {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--gold);
    border-radius: 15px;
}

/* Add before existing media queries */
.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 15px;
    display: flex;
    justify-content: center;
    padding-top: 10px;
}

.scroll-indicator::before {
    content: '';
    width: 4px;
    height: 8px;
    background: white;
    border-radius: 2px;
    animation: scrollIndicator 2s infinite;
}

@keyframes scrollIndicator {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(15px); opacity: 0; }
}

/* Add after the existing animations */

/* Section Header */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 15px;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.section-subtitle {
    font-size: 1.2rem;
    color: var(--text-dark);
    opacity: 0.8;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

/* Enhanced Quick Info Section */
.quick-info {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--bg-light) 0%, #ffffff 100%);
    position: relative;
    overflow: hidden;
}

.quick-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23997939" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.info-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    position: relative;
    z-index: 2;
}

.modern-card {
    background: white;
    border-radius: 20px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(153, 121, 57, 0.1);
}

.modern-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
}

.modern-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
}

.card-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.modern-card:hover .card-icon::before {
    transform: translateX(100%);
}

.card-icon i {
    font-size: 2rem;
    color: white;
    z-index: 2;
    position: relative;
}

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

.card-content p {
    color: var(--text-dark);
    opacity: 0.8;
    line-height: 1.6;
    margin-bottom: 20px;
}

.card-stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px;
    background: rgba(153, 121, 57, 0.05);
    border-radius: 10px;
    margin-top: 20px;
}

.stat-number {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary);
}

.stat-label {
    font-size: 0.9rem;
    color: var(--text-dark);
    opacity: 0.7;
}

.card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: -1;
}

.modern-card:hover .card-overlay {
    opacity: 0.05;
}

/* Events Section */
.events {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    position: relative;
    overflow: hidden;
}

.events::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="rgba(153,121,57,0.1)" stroke-width="1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.events h2 {
    text-align: center;
    margin-bottom: 60px;
    font-size: 2.8rem;
    color: var(--text-dark);
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.events h2::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
}

.events-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    padding: 0 20px;
    position: relative;
    z-index: 2;
}

.event-card {
    background: white;
    border-radius: 20px;
    padding: 0;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    transition: all 0.4s ease;
    border: 1px solid rgba(153, 121, 57, 0.1);
    position: relative;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
}

.event-card:nth-child(1) {
    background: linear-gradient(135deg, #fff5f5 0%, #ffffff 100%);
}

.event-card:nth-child(2) {
    background: linear-gradient(135deg, #f0f9ff 0%, #ffffff 100%);
}

.event-card:nth-child(3) {
    background: linear-gradient(135deg, #f0fdf4 0%, #ffffff 100%);
}

.event-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 25px 20px;
    position: relative;
    overflow: hidden;
}

.event-card:nth-child(1) .event-date,
.event-date.red {
    background: linear-gradient(135deg, #dc2626, #ef4444);
}

.event-card:nth-child(2) .event-date,
.event-date.blue {
    background: linear-gradient(135deg, #2563eb, #3b82f6);
}

.event-card:nth-child(3) .event-date,
.event-date.green {
    background: linear-gradient(135deg, #16a34a, #22c55e);
}

.event-date::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, transparent 30%, rgba(255, 255, 255, 0.2) 50%, transparent 70%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.event-card:hover .event-date::before {
    transform: translateX(100%);
}

.event-date .day {
    font-size: 3rem;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 5px;
    color: white;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.event-date .month {
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 600;
}

.event-details {
    padding: 30px 25px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.event-details h3 {
    margin-bottom: 12px;
    color: var(--text-dark);
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
}

.event-details p {
    color: #6b7280;
    font-size: 1rem;
    margin-bottom: 15px;
    line-height: 1.6;
    flex: 1;
}

.event-time {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 15px;
    background: rgba(153, 121, 57, 0.1);
    border-radius: 25px;
    font-size: 0.9rem;
    color: var(--primary);
    font-weight: 600;
    align-self: flex-start;
}

.event-time i {
    font-size: 0.8rem;
}

/* Event Card Animations */
@keyframes eventFloat {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-5px);
    }
}

.event-card {
    animation: eventFloat 6s ease-in-out infinite;
}

.event-card:nth-child(2) {
    animation-delay: -2s;
}

.event-card:nth-child(3) {
    animation-delay: -4s;
}

/* Event Card Icons */
.event-details::before {
    content: '';
    position: absolute;
    top: 20px;
    right: 20px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    opacity: 0.1;
    transition: all 0.3s ease;
}

.event-card:nth-child(1) .event-details::before {
    background: #dc2626;
    content: '🎄';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
}

.event-card:nth-child(2) .event-details::before {
    background: #2563eb;
    content: '🙏';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
}

.event-card:nth-child(3) .event-details::before {
    background: #16a34a;
    content: '✨';
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    opacity: 0.8;
}

.event-details {
    position: relative;
}

.event-card:hover .event-details::before {
    transform: scale(1.2) rotate(10deg);
    opacity: 1;
}

/* Testimonials Section */
.testimonials {
    padding: 80px 0;
    background: var(--bg-light);
}

.testimonials h2 {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.5rem;
    color: var(--text-dark);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.testimonial-card {
    padding: 30px;
    color: var(--text-dark);
    background: white;
    border: 1px solid var(--accent);
}

.testimonial-content {
    margin-bottom: 20px;
}

.testimonial-content i {
    font-size: 2rem;
    color: var(--primary);
    margin-bottom: 15px;
}

.testimonial-content p {
    font-size: 1.1rem;
    line-height: 1.6;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author h4 {
    margin: 0;
    font-size: 1.1rem;
}

.testimonial-author span {
    font-size: 0.9rem;
    opacity: 0.8;
}

/* Updated Footer Styles */
.footer {
    background: #997939;
    color: var(--text-light);
    padding: 60px 0 30px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.footer-section h3 {
    margin-bottom: 20px;
    font-size: 1.3rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 10px;
}

.footer-section a {
    color: white;
    text-decoration: none;
    transition: var(--transition);
}

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

.newsletter-form {
    display: flex;
    gap: 10px;
}

.newsletter-form input {
    flex: 1;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background: rgba(255, 255, 255, 0.05);
    color: white;
    border: 1px solid var(--gold);
}

.newsletter-form input::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.btn-subscribe {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    background: var(--gold);
    color: var(--text-light);
    cursor: pointer;
    transition: var(--transition);
}

.btn-subscribe:hover {
    background: var(--primary);
}

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

/* Responsive Updates */
@media (max-width: 768px) {
    .info-grid,
    .events-grid,
    .testimonials-grid,
    .footer-content {
        grid-template-columns: 1fr;
    }

    .events-grid {
        gap: 25px;
        padding: 0 15px;
    }

    .event-card {
        margin: 0 auto;
        max-width: 400px;
    }

    .event-date .day {
        font-size: 2.5rem;
    }

    .event-details h3 {
        font-size: 1.2rem;
    }

    .events h2 {
        font-size: 2.2rem;
        margin-bottom: 40px;
    }

    .newsletter-form {
        flex-direction: column;
    }

    .btn-subscribe {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .testimonial-author {
        flex-direction: column;
        text-align: center;
    }
}

/* Enhanced Responsive Design for New Elements */
@media (max-width: 768px) {
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .schedule-item.center,
    .schedule-item.featured {
        transform: none;
    }

    .schedule-item.featured:hover {
        transform: translateY(-10px);
    }

    /* Hero responsive */
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.1rem;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }

    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    /* Section headers responsive */
    .section-title {
        font-size: 2.2rem;
    }

    .section-subtitle {
        font-size: 1rem;
    }

    /* Cards responsive */
    .modern-card {
        padding: 30px 20px;
    }

    .card-icon {
        width: 60px;
        height: 60px;
    }

    .card-icon i {
        font-size: 1.5rem;
    }

    .schedule-icon {
        width: 60px;
        height: 60px;
    }

    .schedule-icon i {
        font-size: 1.5rem;
    }

    .time-display .time {
        font-size: 2rem;
    }

    .schedule-details {
        flex-direction: column;
        gap: 10px;
    }
}

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

    .hero-subtitle {
        font-size: 1rem;
    }

    .slide-content {
        padding: 30px 20px;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .modern-card {
        padding: 25px 15px;
    }

    .schedule-item {
        padding: 30px 20px;
    }

    .time-display .time {
        font-size: 1.8rem;
    }

    .card-stats {
        flex-direction: column;
        gap: 5px;
    }

    .stat-number {
        font-size: 1.5rem;
    }
}

/* Enhanced Floating Shapes */
.shape {
    position: fixed;
    border-radius: 50%;
    opacity: 0.1;
    z-index: 1;
    animation: float 6s ease-in-out infinite;
}

.shape-1 {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--accent), var(--primary-dark));
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.shape-3 {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--gold), var(--accent));
    bottom: 30%;
    left: 20%;
    animation-delay: 4s;
}

.shape-4 {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, var(--primary-dark), var(--gold));
    top: 40%;
    right: 30%;
    animation-delay: 1s;
}

.shape-5 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--accent), var(--primary));
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
}

/* Enhanced float animation */
@keyframes float {
    0%, 100% {
        transform: translateY(0px) scale(1);
    }
    33% {
        transform: translateY(-20px) scale(1.1);
    }
    66% {
        transform: translateY(10px) scale(0.95);
    }
}

/* Smooth scrolling enhancement */
html {
    scroll-behavior: smooth;
}

/* Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--bg-light);
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, var(--primary-dark), var(--accent-dark));
}

/* Loading animation for images */
img {
    transition: opacity 0.3s ease;
}

img:not([src]) {
    opacity: 0;
}

/* Enhanced focus states */
.btn-primary:focus,
.btn-secondary:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(153, 121, 57, 0.3);
}

/* Text selection styling */
::selection {
    background: var(--primary);
    color: white;
}

::-moz-selection {
    background: var(--primary);
    color: white;
}

/* Enhanced Footer */
.footer {
    background: linear-gradient(135deg, #8B4513 0%, #654321 100%);
    color: white;
    position: relative;
    overflow: hidden;
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.1);
}

.footer-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="footerPattern" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="white" opacity="0.05"/></pattern></defs><rect width="100" height="100" fill="url(%23footerPattern)"/></svg>');
}

.footer-content {
    display: grid;
    grid-template-columns: 2.5fr 1.2fr 1.2fr 1.8fr;
    gap: 50px;
    padding: 70px 0 50px;
    position: relative;
    z-index: 2;
    align-items: start;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 25px;
    color: white;
    font-weight: 700;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 2px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.footer-section h4 i {
    color: #D4AF37;
    font-size: 1.1rem;
}

.footer-main {
    padding-right: 20px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 25px;
}

.footer-logo i {
    font-size: 2.5rem;
    color: #D4AF37;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.footer-logo h3 {
    margin: 0;
    font-size: 1.4rem;
    font-weight: 700;
    line-height: 1.3;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.footer-description {
    line-height: 1.7;
    opacity: 0.95;
    margin-bottom: 30px;
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.9);
}

.social-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    margin-top: 15px;
    align-items: center;
}

.social-link {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
    position: relative;
    overflow: hidden;
}

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

.social-link:hover::before {
    left: 100%;
}

.social-link:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-link.facebook:hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-link.youtube:hover {
    background: #ff0000;
    border-color: #ff0000;
}



.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.85);
    text-decoration: none;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 8px 0;
    border-radius: 5px;
    font-size: 0.95rem;
}

.footer-links a i {
    color: #D4AF37;
    width: 16px;
    text-align: center;
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: #D4AF37;
    padding-left: 10px;
    background: rgba(255, 255, 255, 0.05);
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-info {
    display: flex;
    align-items: flex-start;
    gap: 18px;
    padding: 15px 12px;
    border-radius: 10px;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
}

.contact-info:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateX(5px);
    border-color: rgba(212, 175, 55, 0.3);
}

.contact-info i {
    color: #D4AF37;
    width: 24px;
    text-align: center;
    font-size: 1.3rem;
    margin-top: 3px;
    flex-shrink: 0;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.3);
}

.contact-text {
    display: flex;
    flex-direction: column;
    gap: 6px;
    flex: 1;
}

.contact-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2px;
}

.contact-text span:last-child {
    color: rgba(255, 255, 255, 0.95);
    font-size: 1rem;
    line-height: 1.5;
    font-weight: 500;
    word-break: break-word;
}

/* Contact info specific styles */
.contact-info:nth-child(1) i {
    color: #FF6B6B; /* Red for location */
}

.contact-info:nth-child(2) i {
    color: #4ECDC4; /* Teal for phone */
}

.contact-info:nth-child(3) i {
    color: #45B7D1; /* Blue for email */
}

.contact-info:nth-child(1):hover {
    border-color: rgba(255, 107, 107, 0.3);
}

.contact-info:nth-child(2):hover {
    border-color: rgba(78, 205, 196, 0.3);
}

.contact-info:nth-child(3):hover {
    border-color: rgba(69, 183, 209, 0.3);
}

/* Email link styling */
.contact-text a {
    color: rgba(255, 255, 255, 0.95);
    text-decoration: none;
    transition: all 0.3s ease;
}

.contact-text a:hover {
    color: #45B7D1;
    text-decoration: underline;
}

/* Phone number styling */
.contact-phone {
    font-family: 'Courier New', monospace;
    letter-spacing: 1px;
}

.footer-bottom {
    border-top: 2px solid rgba(255, 255, 255, 0.1);
    padding: 30px 0;
    position: relative;
    z-index: 2;
    background: rgba(0, 0, 0, 0.1);
}

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

.footer-copyright p {
    margin: 0;
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 15px;
}

.footer-bottom-links .separator {
    color: rgba(255, 255, 255, 0.4);
    font-weight: 300;
}

.footer-bottom-links .footer-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    padding: 5px 10px;
    border-radius: 4px;
}

.footer-bottom-links .footer-link:hover {
    color: #D4AF37;
    background: rgba(255, 255, 255, 0.05);
}

/* Ripple effect for buttons */
.ripple {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    transform: scale(0);
    animation: ripple-animation 0.6s linear;
    pointer-events: none;
}

@keyframes ripple-animation {
    to {
        transform: scale(4);
        opacity: 0;
    }
}

/* Enhanced button states */
.btn-primary, .btn-secondary {
    position: relative;
    overflow: hidden;
}

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

.btn-primary:hover::before, .btn-secondary:hover::before {
    left: 100%;
}

/* Footer responsive */
@media (max-width: 1024px) {
    .footer-content {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-main {
        grid-column: 1 / -1;
        text-align: center;
        padding-right: 0;
    }
}

@media (max-width: 768px) {
    .footer-content {
        grid-template-columns: 1fr;
        gap: 35px;
        text-align: center;
        padding: 50px 0 40px;
    }

    .footer-main {
        grid-column: auto;
    }

    .footer-section h4 {
        font-size: 1.1rem;
        justify-content: center;
    }

    .footer-links a {
        justify-content: center;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 15px;
    }

    .social-links {
        justify-content: center;
    }

    .contact-info {
        justify-content: flex-start;
        text-align: left;
        padding: 12px 10px;
        gap: 15px;
    }

    .contact-info:hover {
        transform: none;
    }

    .contact-text {
        align-items: flex-start;
        text-align: left;
    }

    .contact-info i {
        font-size: 1.2rem;
        width: 22px;
    }
}

@media (max-width: 480px) {
    .footer-content {
        padding: 40px 0 30px;
        gap: 30px;
    }

    .footer-logo h3 {
        font-size: 1.2rem;
    }

    .footer-description {
        font-size: 0.9rem;
    }

    .social-link {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .footer-bottom {
        padding: 25px 0;
    }
}

/* Performance optimizations */
* {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.hero, .quick-info, .schedule, .events {
    will-change: transform;
}

/* Accessibility improvements */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Simple Footer Styles for other pages */
.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 20px;
    text-align: center;
}

.footer-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.footer-logo i {
    font-size: 2rem;
    color: #D4AF37;
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
}

.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin: 25px 0;
}

.social-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-size: 1.2rem;
}

.social-icon:hover {
    transform: translateY(-3px) scale(1.1);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
}

.social-icon:nth-child(1):hover {
    background: #1877f2;
    border-color: #1877f2;
}

.social-icon:nth-child(2):hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    border-color: #bc1888;
}

.social-icon:nth-child(3):hover {
    background: #ff0000;
    border-color: #ff0000;
}

.footer-copyright {
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.95rem;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

/* Lazy loading for images */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.3s;
}

img[loading="lazy"].loaded {
    opacity: 1;
}

/* Print styles */
@media print {
    .navbar, .footer, .floating-shapes {
        display: none;
    }

    .hero {
        height: auto;
        margin-top: 0;
    }

    body {
        font-size: 12pt;
        line-height: 1.4;
    }
}

/* Email Verification Styles */
.verification-input-group {
    display: flex;
    gap: 10px;
    align-items: flex-start;
}

.verification-input-group .form-input {
    flex: 1;
}

.btn-resend {
    background: var(--accent);
    color: white;
    border: none;
    padding: 18px 20px;
    border-radius: 12px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    min-width: 120px;
}

.btn-resend:hover:not(:disabled) {
    background: var(--primary);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(153, 121, 57, 0.3);
}

.btn-resend:disabled {
    background: #ccc;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}

.verification-info {
    margin-top: 15px;
    padding: 15px;
    background: #f8f9fa;
    border-radius: 8px;
    border-left: 4px solid var(--accent);
}

.verification-info p {
    margin: 0 0 8px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.4;
}

.verification-info p:last-child {
    margin-bottom: 0;
}

#resendTimer {
    color: var(--primary);
    font-weight: 600;
}

/* Notification Styles */
.notification {
    position: fixed;
    top: 100px;
    right: 20px;
    padding: 15px 20px;
    border-radius: 8px;
    color: white;
    font-weight: 600;
    z-index: 9999;
    animation: slideInRight 0.3s ease-out;
    max-width: 350px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.notification.success {
    background: linear-gradient(135deg, #28a745, #20c997);
}

.notification.error {
    background: linear-gradient(135deg, #dc3545, #e74c3c);
}

@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

/* Responsive adjustments for verification */
@media (max-width: 768px) {
    .verification-input-group {
        flex-direction: column;
        gap: 15px;
    }

    .btn-resend {
        width: 100%;
        min-width: auto;
    }

    .notification {
        right: 15px;
        left: 15px;
        max-width: none;
    }
}

/* Enhanced Mobile First Approach */
@media (max-width: 320px) {
    .container {
        padding: 0 10px;
    }
    
    .nav-logo {
        font-size: 1rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .hero-subtitle {
        font-size: 0.9rem;
    }
    
    .btn-primary, .btn-secondary {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
}

/* Enhanced Tablet Responsiveness */
@media (min-width: 769px) and (max-width: 1024px) {
    .hero {
        height: 80vh;
    }
    
    .slide-content {
        padding: 40px 30px;
        max-width: 600px;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .nav-menu {
        gap: 2px;
    }
    
    .nav-link {
        padding: 10px 15px;
        font-size: 0.9rem;
    }
}

/* Enhanced Large Screen Support */
@media (min-width: 1440px) {
    .container {
        max-width: 1400px;
    }
    
    .hero-title {
        font-size: 4rem;
    }
    
    .hero-subtitle {
        font-size: 1.4rem;
    }
}

/* Improved Touch Targets for Mobile */
@media (max-width: 768px) {
    .nav-link {
        min-height: 44px;
        padding: 15px 30px;
    }
    
    .btn-primary, .btn-secondary {
        min-height: 44px;
        padding: 15px 25px;
    }
    
    .social-link {
        width: 48px;
        height: 48px;
        min-width: 44px;
        min-height: 44px;
    }
}

/* Flexible Images */
img {
    max-width: 100%;
    height: auto;
    display: block;
}

/* Responsive Typography */
@media (max-width: 768px) {
    html {
        font-size: 14px;
    }
    
    .section-title {
        font-size: 2rem;
        line-height: 1.2;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.4;
    }
}

/* Enhanced Grid Responsiveness */
@media (max-width: 768px) {
    .info-grid,
    .events-grid,
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 15px;
    }
}

@media (min-width: 769px) and (max-width: 1024px) {
    .info-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .events-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
