/* MODERN SPLIT-SCREEN HERO SECTION */
.events-hero-split {
    position: relative;
    background: linear-gradient(135deg, #001a29 0%, #002233 100%);
    color: white;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('/Assets/images/patterns/dot-pattern.png');
    opacity: 0.1;
    z-index: 1;
}

.hero-3d-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    overflow: hidden;
}

.floating-shape {
    position: absolute;
    background: rgba(221, 188, 147, 0.1);
    border: 1px solid rgba(221, 188, 147, 0.2);
    border-radius: 10px;
    backdrop-filter: blur(5px);
    transform-style: preserve-3d;
    animation: floatingAnimation 15s infinite ease-in-out;
}

.shape-1 {
    width: 150px;
    height: 150px;
    top: 15%;
    left: 10%;
    animation-delay: 0s;
    transform: rotate(15deg);
}

.shape-2 {
    width: 80px;
    height: 80px;
    top: 60%;
    left: 15%;
    animation-delay: 2s;
    transform: rotate(45deg);
}

.shape-3 {
    width: 120px;
    height: 120px;
    top: 25%;
    right: 15%;
    animation-delay: 1s;
    transform: rotate(30deg);
}

.shape-4 {
    width: 100px;
    height: 100px;
    bottom: 20%;
    right: 10%;
    animation-delay: 3s;
    transform: rotate(60deg);
}

.shape-5 {
    width: 70px;
    height: 70px;
    bottom: 35%;
    left: 30%;
    animation-delay: 4s;
    transform: rotate(20deg);
}

@keyframes floatingAnimation {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotation, 0deg));
    }
    50% {
        transform: translateY(-20px) rotate(var(--rotation, 0deg));
    }
}

.hero-left, .hero-right {
    position: relative;
    z-index: 2;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.hero-left {
    background: linear-gradient(135deg, rgba(0, 34, 51, 0.95) 0%, rgba(29, 86, 115, 0.9) 100%);
    padding: 0 5%;
}

.hero-left-content {
    max-width: 600px;
    margin-left: auto;
    padding: 3rem 0;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: rgba(221, 188, 147, 0.15);
    color: #DDBC93;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}

.hero-badge i {
    font-size: 0.9rem;
}

.hero-title {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 2rem;
}

.title-line {
    display: block;
}

.title-tagline {
    display: block;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.8);
    margin-top: 1rem;
}

.hero-details {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-bottom: 2.5rem;
}

.detail-item {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.1rem;
}

.detail-item i {
    color: #DDBC93;
    font-size: 1.2rem;
    width: 24px;
    text-align: center;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.btn {
    position: relative;
    overflow: hidden;
    padding: 15px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.btn-primary {
    background: #DDBC93;
    color: #002233;
    border: none;
}

.btn-outline {
    background: transparent;
    color: white;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 150%;
    height: 150%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
    transform: translate(-50%, -50%) scale(0);
    opacity: 0;
    transition: transform 0.6s cubic-bezier(0.165, 0.84, 0.44, 1), opacity 0.6s ease;
}

.btn:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.btn:hover::after {
    transform: translate(-50%, -50%) scale(1);
    opacity: 1;
}

.btn-primary:hover {
    background: #c9a87f;
}

.btn-outline:hover {
    border-color: rgba(255, 255, 255, 0.8);
}

.btn-icon {
    transition: transform 0.3s ease;
}

.btn:hover .btn-icon {
    transform: translateX(5px);
}

.hero-right {
    position: relative;
    background: #002233;
}

.hero-image-container {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-image {
    position: relative;
    width: 90%;
    height: 70%;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
}

.hero-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 50%, rgba(0, 0, 0, 0.8) 100%);
    z-index: 1;
}

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

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

.countdown-container {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translate(-50%, 50%);
    background: rgba(0, 34, 51, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(221, 188, 147, 0.3);
    border-radius: 15px;
    padding: 1.5rem 2rem;
    width: 90%;
    max-width: 500px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.countdown-header {
    text-align: center;
    margin-bottom: 1rem;
}

.countdown-header h3 {
    font-size: 1.2rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.9);
    margin: 0;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 5px;
}

.countdown-block {
    text-align: center;
    min-width: 60px;
}

.time-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DDBC93;
    line-height: 1;
    position: relative;
    display: inline-block;
    overflow: hidden;
}

.time-value::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: rgba(221, 188, 147, 0.3);
    border-radius: 3px;
}

.time-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-top: 0.5rem;
}

.countdown-separator {
    font-size: 2rem;
    font-weight: 700;
    color: rgba(221, 188, 147, 0.5);
    line-height: 1;
    margin-top: -10px;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    z-index: 10;
       color: rgba(255, 255, 255, 0.6);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.scroll-line {
    width: 2px;
    height: 50px;
    background: linear-gradient(to bottom, rgba(221, 188, 147, 0.8), transparent);
    animation: scrollLine 2s infinite;
}

@keyframes scrollLine {
    0% {
        height: 0;
        opacity: 1;
    }
    50% {
        height: 50px;
        opacity: 1;
    }
    100% {
        height: 50px;
        opacity: 0;
    }
}

/* RESPONSIVE STYLES */
@media (max-width: 1200px) {
    .hero-left-content {
        padding: 2rem 0;
    }
    
    .countdown-container {
        padding: 1.2rem 1.5rem;
    }
    
    .time-value {
        font-size: 2rem;
    }
}

@media (max-width: 992px) {
    .events-hero-split .row {
        flex-direction: column;
    }
    
    .hero-left, .hero-right {
        min-height: auto;
    }
    
    .hero-left {
        padding: 5rem 5% 8rem;
    }
    
    .hero-left-content {
        margin: 0 auto;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-details {
        align-items: center;
    }
    
    .hero-cta {
        justify-content: center;
    }
    
    .hero-right {
        min-height: 60vh;
    }
    
    .hero-image {
        height: 100%;
        width: 100%;
        border-radius: 0;
    }
    
    .countdown-container {
        bottom: auto;
        top: 0;
        transform: translate(-50%, -50%);
    }
    
    .floating-shape {
        opacity: 0.5;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.8rem;
    }
    
    .title-tagline {
        font-size: 1.2rem;
    }
    
    .hero-left {
        padding: 4rem 5% 7rem;
    }
    
    .hero-right {
        min-height: 50vh;
    }
    
    .countdown-container {
        width: 90%;
        padding: 1rem;
    }
    
    .time-value {
        font-size: 1.8rem;
    }
    
    .countdown-block {
        min-width: 50px;
    }
}

@media (max-width: 576px) {
    .hero-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
        margin-bottom: 1.5rem;
    }
    
    .hero-title {
        font-size: 2.2rem;
        margin-bottom: 1.5rem;
    }
    
    .title-tagline {
        font-size: 1rem;
        margin-top: 0.8rem;
    }
    
    .detail-item {
        font-size: 0.9rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-cta .btn {
        width: 100%;
        justify-content: center;
    }
    
    .countdown-timer {
        gap: 2px;
    }
    
    .countdown-block {
        min-width: 40px;
    }
    
    .time-value {
        font-size: 1.5rem;
    }
    
    .time-label {
        font-size: 0.7rem;
    }
    
    .countdown-separator {
        font-size: 1.5rem;
    }
}

/* iPhone SE and small screens */
@media (max-width: 375px) {
    .hero-left {
        padding: 3.5rem 5% 6rem;
    }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .title-tagline {
        font-size: 0.9rem;
    }
    
    .hero-details {
        margin-bottom: 1.5rem;
    }
    
    .detail-item {
        font-size: 0.8rem;
    }
    
    .detail-item i {
        font-size: 1rem;
    }
    
    .btn {
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    .hero-right {
        min-height: 40vh;
    }
    
    .countdown-container {
        padding: 0.8rem;
    }
    
    .countdown-header h3 {
        font-size: 1rem;
    }
    
    .countdown-block {
        min-width: 35px;
    }
    
    .time-value {
        font-size: 1.3rem;
    }
    
    .time-label {
        font-size: 0.6rem;
    }
    
    .countdown-separator {
        font-size: 1.2rem;
    }
}

/* REDESIGNED FEATURED EVENTS SECTION */
.featured-events {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
    overflow: hidden;
}

.section-pattern-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url('/Assets/images/patterns/dot-pattern.png');
    opacity: 0.05;
    pointer-events: none;
}

.section-header {
    position: relative;
    z-index: 2;
    margin-bottom: 3rem !important;
}

.section-badge {
    display: inline-block;
    padding: 8px 16px;
    background: rgba(221, 188, 147, 0.1);
    color: #88602D;
    border-radius: 30px;
    font-weight: 500;
    margin-bottom: 1rem;
}

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #002233;
    margin-bottom: 1rem;
}

.section-subtitle {
    font-size: 1.1rem;
    color: #1D5673;
    max-width: 700px;
    margin: 0 auto;
}

/* Event Filters */
.events-filter {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.filter-wrapper {
    display: flex;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
}

.filter-btn {
    background: transparent;
    border: none;
    padding: 8px 16px;
    border-radius: 50px;
    font-weight: 500;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.filter-btn.active {
    background: #DDBC93;
    color: #002233;
    box-shadow: 0 2px 10px rgba(221, 188, 147, 0.3);
}

.view-toggle {
    display: flex;
    background: #f0f0f0;
    border-radius: 50px;
    padding: 5px;
}

.view-btn {
    background: transparent;
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
    transition: all 0.3s ease;
    cursor: pointer;
}

.view-btn.active {
    background: #DDBC93;
    color: #002233;
}

.search-filter {
    position: relative;
    width: 100%;
    max-width: 300px;
}

.search-filter input {
    width: 100%;
    padding: 12px 20px 12px 45px;
    border: 1px solid #e0e0e0;
    border-radius: 50px;
    background: white;
    font-size: 0.9rem;
    transition: all 0.3s ease;
}

.search-filter input:focus {
    outline: none;
    border-color: #DDBC93;
    box-shadow: 0 0 0 3px rgba(221, 188, 147, 0.2);
}

.search-filter i {
    position: absolute;
    left: 18px;
    top: 50%;
    transform: translateY(-50%);
    color: #888;
}

/* Events Container */
.events-container {
    position: relative;
    transition: height 0.4s ease;
}

/* Grid View (Default) */
.events-container.grid-view {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

/* List View */
.events-container.list-view {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.events-container.list-view .event-card {
    display: flex;
    flex-direction: row;
    height: auto;
    max-height: none;
}

.events-container.list-view .event-image {
    width: 35%;
    height: auto;
}

.events-container.list-view .event-content {
    width: 65%;
    display: flex;
    flex-direction: column;
}

.events-container.list-view .event-meta {
    order: 1;
}

.events-container.list-view h3 {
    order: 0;
    margin-top: 0;
}

.events-container.list-view p {
    order: 2;
}

.events-container.list-view .event-speaker {
    order: 3;
}

.events-container.list-view .event-footer {
    order: 4;
    margin-top: auto;
}

/* Event Card */
.event-card {
    position: relative;
    background: white;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.event-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.event-card.featured {
    border: 2px solid #DDBC93;
}

.event-card.past-event {
    opacity: 0.8;
}

.event-status {
    position: absolute;
    top: 20px;
    right: 20px;
    background: #DDBC93;
    color: #002233;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
    z-index: 3;
}

.event-card.past-event .event-status {
    background: #888;
    color: white;
}

.event-image {
    position: relative;
    height: 220px;
    overflow: hidden;
}

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

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

.event-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.7) 100%);
    z-index: 1;
}

.event-date {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(255, 255, 255, 0.9);
    padding: 10px 15px;
    border-radius: 12px;
    text-align: center;
    color: #002233;
    z-index: 2;
    transition: all 0.3s ease;
}

.event-card:hover .event-date {
    background: #DDBC93;
}

.event-date .day {
    font-size: 1.5rem;
    font-weight: 700;
    display: block;
    line-height: 1;
}

.event-date .month {
    font-size: 0.9rem;
    text-transform: uppercase;
    font-weight: 600;
}

.event-date .year {
    font-size: 0.8rem;
    opacity: 0.8;
}

.event-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: rgba(0, 34, 51, 0.8);
    color: white;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.8rem;
    z-index: 2;
}

.event-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.event-meta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 15px;
    color: #666;
    font-size: 0.9rem;
}

.event-meta span {
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-meta i {
    color: #DDBC93;
    width: 16px;
    text-align: center;
}

.event-content h3 {
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 12px;
    color: #002233;
    transition: color 0.3s ease;
}

.event-card:hover .event-content h3 {
    color: #1D5673;
}

.event-content p {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}

.event-speaker {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: auto;
    margin-bottom: 20px;
    padding-top: 15px;
    border-top: 1px solid #f0f0f0;
}

.speaker-avatar {
    width: 40px;
    height: 40px;
    background: #f0f0f0;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #666;
}

.speaker-info {
    display: flex;
    flex-direction: column;
}

.speaker-name {
    font-weight: 600;
    color: #002233;
    font-size: 0.9rem;
}

.speaker-title {
    font-size: 0.8rem;
    color: #888;
}

.event-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: auto;
}

.event-actions {
    display: flex;
    align-items: center;
    gap: 10px;
}

.btn-register, .btn-view-gallery {
    background: #DDBC93;
    color: #002233;
    padding: 8px 20px;
    border-radius: 25px;
    text-decoration: none;
    font-weight: 500;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.btn-register:hover, .btn-view-gallery:hover {
    background: #88602D;
    color: white;
    transform: translateY(-2px);
}

.btn-view-gallery {
    background: #1D5673;
    color: white;
}

.btn-view-gallery:hover {
    background: #5995B3;
}

.btn-reminder {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #DDBC93;
    background: transparent;
    color: #DDBC93;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-reminder:hover, .btn-reminder.active {
    background: #DDBC93;
    color: #002233;
}

.event-share {
    position: relative;
}

.share-toggle {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: transparent;
    color: #888;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    cursor: pointer;
}

.share-toggle:hover {
    border-color: #1D5673;
    color: #1D5673;
}

.share-dropdown {
    position: absolute;
    bottom: 100%;
    right: 0;
    background: white;
    border-radius: 10px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.1);
    padding: 10px;
    display: flex;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    z-index: 10;
}

.event-share:hover .share-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.share-dropdown a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    transition: all 0.3s ease;
}

.share-dropdown a:nth-child(1) {
    background: #0077b5; /* LinkedIn */
}

.share-dropdown a:nth-child(2) {
    background: #1DA1F2; /* Twitter */
}

.share-dropdown a:nth-child(3) {
    background: #4267B2; /* Facebook */
}

.share-dropdown a:nth-child(4) {
    background: #666; /* Email */
}

.share-dropdown a:hover {
    transform: translateY(-3px);
}

/* Load More Button */
.btn-load-more {
    background: transparent;
    border: 2px solid #DDBC93;
    color: #88602D;
    padding: 12px 30px;
    border-radius: 50px;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-load-more:hover {
    background: #DDBC93;
    color: #002233;
    transform: translateY(-3px);
}

.btn-load-more i {
    transition: transform 0.3s ease;
}

.btn-load-more:hover i {
    transform: translateY(3px);
}

/* Calendar Teaser */
.calendar-teaser {
    margin-top: 80px;
    background: linear-gradient(135deg, #002233 0%, #1D5673 100%);
    border-radius: 20px;
    padding: 40px;
    display: flex;
    align-items: center;
    gap: 30px;
    color: white;
    position: relative;
    overflow: hidden;
}

.calendar-teaser::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(221, 188, 147, 0.2) 0%, transparent 70%);
    border-radius: 50%;
    transform: translate(30%, -30%);
}

.calendar-icon {
    width: 80px;
    height: 80px;
    background: rgba(221, 188, 147, 0.2);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #DDBC93;
    flex-shrink: 0;
}

.calendar-content {
    flex-grow: 1;
}

.calendar-content h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.calendar-content p {
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0;
}

.btn-view-calendar {
    background: #DDBC93;
    color: #002233;
    padding: 12px 25px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex-shrink: 0;
}

.btn-view-calendar:hover {
    background: white;
    transform: translateY(-3px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

/* Notification Toast */
.notification {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #002233;
    color: white;
    padding: 15px 25px;
    border-radius: 10px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 1000;
    transform: translateY(100px);
    opacity: 0;
    animation: slideUp 0.3s forwards, slideDown 0.3s forwards 2.7s;
}

.notification::before {
    content: '';
    width: 20px;
    height: 20px;
    background: #DDBC93;
    border-radius: 50%;
}

@keyframes slideUp {
    to {
        transform: translateY(0);
        opacity: 1;
    }
}

@keyframes slideDown {
    to {
        transform: translateY(100px);
        opacity: 0;
    }
}

/* Empty State */
.empty-state {
    text-align: center;
    padding: 50px 20px;
    background: rgba(240, 240, 240, 0.5);
    border-radius: 20px;
    margin: 30px 0;
}

.empty-state i {
    font-size: 3rem;
    color: #ccc;
    margin-bottom: 20px;
}

.empty-state h3 {
    font-size: 1.5rem;
    color: #666;
    margin-bottom: 10px;
}

.empty-state p {
    color: #888;
    max-width: 500px;
    margin: 0 auto 20px;
}

/* Responsive Styles */
@media (max-width: 1200px) {
    .events-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    }
    
    .calendar-teaser {
        padding: 30px;
    }
}

@media (max-width: 992px) {
    .events-filter {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .search-filter {
        max-width: 100%;
    }
    
    .events-container.list-view .event-card {
        flex-direction: column;
    }
    
    .events-container.list-view .event-image,
    .events-container.list-view .event-content {
        width: 100%;
    }
    
    .calendar-teaser {
        flex-direction: column;
        text-align: center;
    }
    
    .calendar-content {
        margin-bottom: 20px;
    }
}

@media (max-width: 768px) {
    .section-title {
        font-size: 2rem;
    }
    
    .events-container.grid-view {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
    }
    
    .event-content h3 {
        font-size: 1.2rem;
    }
    
    .event-footer {
        flex-direction: column;
        align-items: flex-start;
        gap: 15px;
    }
    
    .event-share {
        align-self: flex-end;
    }
}

@media (max-width: 576px) {
    .events-container.grid-view {
        grid-template-columns: 1fr;
    }
    
    .filter-wrapper {
        width: 100%;
        justify-content: space-between;
    }
    
    .filter-toggle {
        width: 100%;
        overflow-x: auto;
        justify-content: flex-start;
        padding: 5px;
        -ms-overflow-style: none;
        scrollbar-width: none;
    }
    
    .filter-toggle::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        white-space: nowrap;
    }
    
    .event-date {
        padding: 8px 12px;
    }
    
    .event-date .day {
        font-size: 1.2rem;
    }
    
    .calendar-teaser {
        padding: 25px;
    }
    
    .calendar-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }
    
    .calendar-content h3 {
        font-size: 1.5rem;
    }
}

/* iPhone SE and small screens */
@media (max-width: 375px) {
    .section-badge {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .section-subtitle {
        font-size: 0.9rem;
    }
    
    .filter-btn {
        padding: 6px 12px;
        font-size: 0.8rem;
    }
    
    .view-btn {
        width: 35px;
        height: 35px;
    }
    
    .event-content {
        padding: 20px;
    }
    
    .event-meta {
        font-size: 0.8rem;
    }
    
    .event-content h3 {
        font-size: 1.1rem;
    }
    
    .event-content p {
        font-size: 0.9rem;
    }
    
    .btn-register, .btn-view-gallery {
        padding: 6px 15px;
        font-size: 0.8rem;
    }
    
    .btn-reminder, .share-toggle {
        width: 32px;
        height: 32px;
    }
    
    .calendar-teaser {
        padding: 20px;
    }
    
    .calendar-content h3 {
        font-size: 1.3rem;
    }
    
    .btn-view-calendar {
        padding: 10px 20px;
        font-size: 0.9rem;
    }
}

/* SPONSOR THE EVENT */
.sponsorship-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #333 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

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

.tier-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border-radius: 20px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: transform 0.3s ease;
}

.tier-card:hover {
    transform: translateY(-10px);
}

.tier-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(221, 188, 147, 0.1) 0%, rgba(0, 0, 0, 0) 70%);
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tier-card:hover .tier-glow {
    opacity: 1;
}

.tier-header {
    text-align: center;
    margin-bottom: 30px;
}

.tier-icon {
    width: 80px;
    height: 80px;
    background: #DDBC93;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-size: 30px;
    color: #1a1a1a;
}

.tier-price {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DDBC93;
    margin-top: 10px;
}

.tier-benefits ul {
    list-style: none;
    padding: 0;
    margin: 0 0 30px;
}

.tier-benefits li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
    color: rgba(255, 255, 255, 0.8);
}

.tier-benefits i {
    color: #DDBC93;
}

.tier-cta {
    width: 100%;
    padding: 15px;
    border: none;
    border-radius: 30px;
    background: #DDBC93;
    color: #1a1a1a;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.tier-cta:hover {
    background: #ffffff;
    transform: translateY(-3px);
}

.current-sponsors {
    margin-top: 100px;
}

.sponsors-showcase {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 50px;
}

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

    .sponsors-showcase {
        gap: 30px;
    }
}

/* SPONSOR MODAL */
.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.7);
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
    max-width: 500px;
    border-radius: 8px;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
    cursor: pointer;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
}

.form-group input {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.submit-btn {
    background-color: var(--accent-color);
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 50px;
    cursor: pointer;
}

.form-group select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ddd;
    border-radius: 4px;
    background-color: white;
    cursor: pointer;
}

.form-group select:focus {
    outline: none;
    border-color: #4CAF50;
}
.submit-btn {
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    min-width: 150px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

.submit-btn.loading {
    background: #2980b9;
    pointer-events: none;
}

.submit-btn.loading::after {
    content: "";
    width: 20px;
    height: 20px;
    border: 3px solid #ffffff;
    border-top: 3px solid transparent;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-left: 10px;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.submit-btn.loading::before {
    content: "Submitting...";
}

.success-message {
    position: fixed;
    top: 20px;
    right: -300px;
    background: #2ecc71;
    color: white;
    padding: 15px 25px;
    border-radius: 4px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.1);
    transition: right 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    z-index: 9999;
}

.success-message.show {
    right: 20px;
}

/* FAQ'S */
.faq-section {
    padding: 100px 0;
    background: linear-gradient(135deg, #f8f9fa 0%, #ffffff 100%);
}

.faq-wrapper {
    max-width: 900px;
    margin: 0 auto;
}

.faq-categories {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.category-btn {
    padding: 12px 25px;
    border: none;
    border-radius: 30px;
    background: white;
    color: #666;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
}

.category-btn i {
    font-size: 1.2rem;
}

.category-btn.active {
    background: #DDBC93;
    color: #1a1a1a;
    transform: translateY(-3px);
}

.search-box {
    position: relative;
    margin-bottom: 30px;
}

.search-box input {
    width: 100%;
    padding: 15px 45px;
    border: none;
    border-radius: 30px;
    background: white;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    font-size: 1rem;
}

.search-box i {
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    color: #666;
}

.faq-item {
    background: white;
    border-radius: 15px;
    margin-bottom: 20px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.faq-item:hover {
    transform: translateX(10px);
}

.faq-question {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
}

.faq-question h3 {
    font-size: 1.1rem;
    margin: 0;
    color: #1a1a1a;
}

.question-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    background: rgba(221, 188, 147, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #DDBC93;
    transition: all 0.3s ease;
}

.faq-item.active .question-icon {
    transform: rotate(45deg);
    background: #DDBC93;
    color: #1a1a1a;
}

.faq-answer {
    padding: 0 20px;
    height: 0;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active .faq-answer {
    padding: 0 20px 20px;
    height: auto;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 768px) {
    .category-btn {
        padding: 10px 20px;
        font-size: 0.9rem;
    }

    .faq-question h3 {
        font-size: 1rem;
    }
}