:root {
    /* Palette / tokens */
    --color-primary: #F3D02D;
    --color-primary-dark: #E0BE25;
    --color-accent: #DFBE40;
    --color-text: #333333;
    --color-muted: #666666;
    --color-white: #FFFFFF;
    --btn-radius: 25px;
    --btn-padding-vert: 12px;
    --btn-padding-horz: 35px;
    --btn-shadow: 0 4px 15px rgba(223, 190, 64, 0.3);
    --section-heading-font: 'Playfair Display', serif;
}

.hero-section {
    min-height: 100%;
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    padding: 120px 20px 60px;
    width: 100%;
    overflow: hidden;
    position: relative;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 0;
}

.hero-container {
    max-width: 1400px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-left {
    flex: 0 0 60%;
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 16px;
    align-items: center;
    text-align: center;
    margin: 0 auto;
}

.hero-left h1 {
    font-size: 48px;
    font-weight: 700;
    /* margin-bottom: 16px; */
    line-height: 1.2;
    color: #fff;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-left h2 {
    font-size: 24px;
    font-weight: 600;
    /* margin-bottom: 12px; */
    color: #F3D02D;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-left p {
    font-size: 18px;
    line-height: 1.6;
    /* margin-bottom: 12px; */
    color: #fff;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.3);
}

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

/* Category carousel under hero CTA */
.category-carousel {
    margin: 20px 0 0 0;
    max-width: 960px;
    background: rgba(0, 0, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4px);
}

.category-track-wrapper {
    overflow: hidden;
    position: relative;
}

.category-track {
    padding: 24px 14px;
    display: flex;
    gap: 12px;
    align-items: center;
    animation: category-scroll 10s linear infinite;
    will-change: transform;
}

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

.category-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
    color: #fff;
    font-size: 13px;
    white-space: nowrap;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.25);
    transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.category-pill i {
    color: #F3D02D;
    font-size: 14px;
}

.category-pill:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.35);
    background: rgba(243, 208, 45, 0.16);
}

@keyframes category-scroll {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-100%);
    }
}

/* Trust Signal Carousel Section */
.trust-section {
    width: 100%;
    background: #FFFFFF;
    padding: 40px 0;
    position: relative;
    overflow: hidden;
}

.carousel-track-container {
    width: 100%;
    overflow: visible;
    position: relative;
    padding: 20px 0;
}

.carousel-track {
    display: flex;
    width: max-content;
    animation: scroll 18s linear infinite;
    gap: 40px;
}

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

@keyframes scroll {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}

.trust-signal-card {
    display: flex;
    align-items: center;
    gap: 20px;
    background: #fff;
    padding: 30px 40px;
    border-radius: 20px;
    border: 2px solid #f0f0f0;
    min-width: 350px;
    transition: all 0.3s ease;
    overflow: hidden;
    position: relative;
}

.trust-signal-card:hover {
    border-color: #DFBE40;
    box-shadow: 0 8px 25px rgba(223, 190, 64, 0.15);
    transform: translateY(-5px);
}

.trust-signal-icon {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #DFBE40 0%, #FFA500 50%, #DFBE40 100%);
    border-radius: 50%;
    transition: all 0.4s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    position: relative;
    box-shadow: 0 5px 15px rgba(223, 190, 64, 0.4),
                inset 0 -3px 8px rgba(0, 0, 0, 0.2),
                inset 0 3px 8px rgba(255, 255, 255, 0.3);
    animation: iconBounce 3s ease-in-out infinite;
}

.trust-signal-icon::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B6B, #DFBE40);
    border-radius: 50%;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.trust-signal-card:hover .trust-signal-icon::before {
    opacity: 1;
    animation: rotateGradient 2s linear infinite;
}

.trust-signal-icon * {
    pointer-events: none;
}

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

@keyframes iconBounce {
    0%, 100% {
    transform: translateY(0) scale(1);
    }
    50% {
    transform: translateY(-5px) scale(1.05);
    }
}

.trust-signal-card:hover .trust-signal-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 8px 25px rgba(223, 190, 64, 0.6),
                inset 0 -3px 8px rgba(0, 0, 0, 0.2),
                inset 0 3px 8px rgba(255, 255, 255, 0.4);
}

.trust-signal-icon i {
    font-size: 36px;
    color: #fff;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
    animation: iconFloat 2s ease-in-out infinite;
    z-index: 1;
}

@keyframes iconFloat {
    0%, 100% {
    transform: translateY(0) rotate(0deg);
    }
    50% {
    transform: translateY(-3px) rotate(5deg);
    }
}

.trust-signal-card:hover .trust-signal-icon i {
    animation: iconSpin 0.6s ease;
}

@keyframes iconSpin {
    0% {
    transform: rotate(0deg) scale(1);
    }
    50% {
    transform: rotate(180deg) scale(1.2);
    }
    100% {
    transform: rotate(360deg) scale(1);
    }
}

.trust-signal-content {
    flex: 1;
}

.trust-signal-number {
    font-size: 28px;
    font-weight: 800;
    color: #333;
    margin: 0 0 5px 0;
    line-height: 1;
}

.trust-signal-text {
    font-size: 14px;
    color: #666;
    margin: 0;
    line-height: 1.4;font-weight: 500;
}

/* Unified button styles (applies to existing button classes and unified classes) */
.u-btn-primary,
.btn-primary-custom,
.book-stall-btn,
.btn-event-book {
    display: inline-block;
    padding: var(--btn-padding-vert) var(--btn-padding-horz);
    border-radius: var(--btn-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    background-color: var(--color-primary);
    color: var(--color-text);
    border: none;
    box-shadow: var(--btn-shadow);
    text-align: center;
}

.u-btn-primary:hover,
.btn-primary-custom:hover,
.book-stall-btn:hover,
.btn-event-book:hover {
    background-color: var(--color-primary-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 190, 64, 0.45);
}

/* Outline/secondary unified */
.u-btn-secondary,
.btn-outline-custom,
.btn-event-visit,
.path:nth-of-type(1) .path-cta,
.path-cta {
    display: inline-block;
    padding: calc(var(--btn-padding-vert) - 2px) calc(var(--btn-padding-horz) - 10px);
    border-radius: var(--btn-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--color-text);
    border: 2px solid var(--color-text);
    text-align: center;
}

.u-btn-secondary:hover,
.btn-outline-custom:hover,
.btn-event-visit:hover,
.path:nth-of-type(1) .path-cta:hover,
.path-cta:hover {
    background: var(--color-text);
    color: #fff;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(0,0,0,0.12);
}

.u-btn-secondary.hero-btn {
    display: inline-block;
    padding: calc(var(--btn-padding-vert) - 2px) calc(var(--btn-padding-horz) - 10px);
    border-radius: var(--btn-radius);
    font-weight: 700;
    text-decoration: none;
    transition: all 0.25s ease;
    background: transparent;
    color: var(--color-white);
    border: 2px solid var(--color-white);
    text-align: center;
}

/* Unified section headings */
.u-section-title,
.section-title,
.events-title,
.energy-title {
    font-family: var(--section-heading-font);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: 1px;
    margin-bottom: 12px;
}

.u-section-subtitle,
.section-subtitle,
.events-subtitle,
.path-subheading {
    color: var(--color-muted);
    text-transform: none;
    letter-spacing: 1px;
    font-weight: 600;
}

/* Upcoming Events Section */
.events-section {
    width: 100%;
    background: linear-gradient(135deg, #F5EDD8 0%, #F9F5ED 100%);
    padding: 60px 20px 60px;
    position: relative;
    overflow: visible;
}

.events-container {
    max-width: 1400px;
    margin: 0 auto;
}

.events-header {
    text-align: center;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
}

.events-title {
    font-size: 42px;
    font-weight: 800;
    color: #333;
    margin-bottom: 15px;
    line-height: 1.2;
}

.events-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #DFBE40;
    margin-bottom: 20px;
}

.events-description {
    font-size: 16px;
    color: #666;
    line-height: 1.7;
    margin-bottom: 0;
}

.events-carousel-section {
    position: relative;
    width: 100%;
}

.events-footer {
    text-align: center;
    margin-top: 20px;
}

/* Carnival String */
.carnival-string {
    position: absolute;
    top: -80px;
    left: 50%;
    width: 100vw;
    height: 120px;
    z-index: 2;
    pointer-events: none;
    transform: translateX(-50%);
}

.carnival-string svg {
    width: 100%;
    height: 100%;
}

.events-carousel-wrapper {
    position: relative;
    padding: 0 70px 40px;
}

.events-carousel {
    position: relative;
    margin-top: 90px;
}

.events-cards-track {
    display: flex;
    transition: transform 0.5s ease;
    gap: 30px;
}

.event-card {
    min-width: 280px;
    background: #fff;
    border-radius: 20px;
    overflow: visible;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    transition: all 0.3s ease;
    position: relative;
    animation: cardSwing 4s ease-in-out infinite;
}

.event-card:nth-child(1) { animation-delay: 0s; }
.event-card:nth-child(2) { animation-delay: 0.2s; }
.event-card:nth-child(3) { animation-delay: 0.4s; }
.event-card:nth-child(4) { animation-delay: 0.6s; }
.event-card:nth-child(5) { animation-delay: 0.8s; }

@keyframes cardSwing {
    0%, 100% {
    transform: rotate(0deg) translateY(0px);
    }
    25% {
    transform: rotate(2deg) translateY(-5px);
    }
    75% {
    transform: rotate(-2deg) translateY(-3px);
    }
}

.event-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
    animation-play-state: paused;
}

/* Paper clip holding the card */
.event-card::before {
    content: '';
    position: absolute;
    top: -32px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 56px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="currentColor" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>');
    background-repeat: no-repeat;
    background-position: center;
    background-size: 100% 100%;
    z-index: 10;
    filter: drop-shadow(2px 3px 6px rgba(0, 0, 0, 0.5));
    color: #FF6B6B;
}

/* Colorful paper clips for each card */
.event-card:nth-child(1)::before { color: #FF6B6B; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%23FF6B6B" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card:nth-child(2)::before { color: #4ECDC4; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%234ECDC4" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card:nth-child(3)::before { color: #FFD93D; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%23FFD93D" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card:nth-child(4)::before { color: #95E1D3; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%2395E1D3" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card:nth-child(5)::before { color: #F38181; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%23F38181" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card:nth-child(6)::before { color: #AA96DA; background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 20 60"><defs><filter id="shadow"><feDropShadow dx="2" dy="2" stdDeviation="2" flood-opacity="0.4"/></filter></defs><g filter="url(%23shadow)"><path d="M 5 2 Q 2 2 2 5 L 2 35 Q 2 48 10 50 Q 18 48 18 35 L 18 20 Q 18 18 16 18 L 4 18 Q 2 18 2 20 L 2 35" stroke="%23AA96DA" stroke-width="2.5" fill="none" stroke-linecap="round" stroke-linejoin="round"/></g></svg>'); }
.event-card::after {
    content: '';
    position: absolute;
    top: -50px;
    left: 50%;
    transform: translateX(-50%);
    width: 2px;
    height: 18px;
    background: linear-gradient(to bottom, #666, #888, #a89968);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.5), -1px 0 2px rgba(255, 255, 255, 0.2);
    z-index: 9;
}

.event-thumbnail {
    width: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 60px;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}

.event-thumbnail img,
.event-thumbnail video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.event-thumbnail::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    /* background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.3), transparent); */
}

.event-card:nth-child(1) .event-thumbnail {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
}

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

.event-card:nth-child(3) .event-thumbnail {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
}

.event-card:nth-child(4) .event-thumbnail {
    background: linear-gradient(135deg, #43e97b 0%, #38f9d7 100%);
}

.event-card:nth-child(5) .event-thumbnail {
    background: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
}

.event-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: rgba(223, 190, 64, 0.95);
    color: #fff;
    padding: 5px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

/* Badge status modifiers */
.event-badge.badge-featured {
    background: #DFBE40; /* Gold */
    color: #fff;
}

.event-badge.badge-ongoing {
    background: #0d6efd; /* Blue */
    color: #fff;
}

.event-badge.badge-completed {
    background: #6c757d; /* Gray */
    color: #fff;
}

.event-badge.badge-new {
    background: #198754; /* Green */
    color: #fff;
}

.event-badge.badge-soldout {
    background: #dc3545; /* Red */
    color: #fff;
}

.event-badge.badge-upcoming {
    background: #fd7e14; /* Orange */
    color: #fff;
}

.event-badge.badge-filling-fast {
    background: #ffc107; /* Yellow */
    color: #333;
}

.event-content {
    padding: 20px;
}

.event-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.3;
}

.event-venue {
    font-size: 14px;
    color: #666;
    margin: 0 0 15px 0;
    display: flex;
    align-items: center;
    gap: 8px;
}

.event-venue i {
    color: #DFBE40;
}

.event-slots {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 15px;
    padding: 10px;
    background: #f8f9fa;
    border-radius: 10px;
}

.event-slots i {
    color: #ff6b6b;
    font-size: 16px;
}

.event-slots-text {
    font-size: 13px;
    color: #333;
    font-weight: 600;
}

.event-slots-number {
    color: #ff6b6b;
    font-weight: 700;
}

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

.btn-event-book {
    flex: 1;
    background-color: #DFBE40;
    color: #333;
    border: none;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-event-book:hover {
    background-color: #c9a935;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(223, 190, 64, 0.3);
}

.btn-event-visit {
    flex: 1;
    background: transparent;
    color: #333;
    border: 2px solid #333;
    padding: 10px;
    border-radius: 10px;
    font-weight: 600;
    font-size: 14px;
    transition: all 0.3s ease;
    cursor: pointer;
}

.btn-event-visit:hover {
    background-color: #333;
    color: #fff;
}

/* Carousel Navigation */
.carousel-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 45px;
    height: 45px;
    background: #fff;
    border: 2px solid #DFBE40;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    z-index: 10;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.carousel-nav:hover {
    background: #DFBE40;
    transform: translateY(-50%) scale(1.1);
    box-shadow: 0 8px 20px rgba(223, 190, 64, 0.3);
}

.carousel-nav i {
    font-size: 20px;
    color: #333;
}

.carousel-nav.prev {
    left: 0;
}

.carousel-nav.next {
    right: 0;
}

/* Responsive */
@media (max-width: 991px) {
    .floating-nav {
    padding: 15px 20px;
    }

    .nav-logo {
    position: static;
    transform: none;
    }

    .nav-cta {
    flex-direction: column;
    width: 100%;
    }

    .nav-cta a {
    width: 100%;
    text-align: center;
    }

    .hero-container {
    flex-direction: column;
    gap: 40px;
    }

    .hero-left, .hero-right {
    flex: 0 0 100%;
    width: 100%;
    }

    .hero-left {
    text-align: center;
    }

    .hero-left h1 {
    font-size: 32px;
    }

    .hero-left h2 {
    font-size: 18px;
    }

    .hero-cta-buttons {
    justify-content: center;
    }

    .carnival-tent {
    max-width: 350px;
    width: 100%;
    }

    .tent-top {
    height: 240px;
    }

    .tent-canopy {
    height: 240px;
    }

    .tent-base {
    height: 140px;
    }

    .tent-entrance {
    width: 75px;
    height: 95px;
    top: 25px;
    }

    .tent-pole.left,
    .tent-pole.right {
    height: 120px;
    }

    .light {
    width: 12px;
    height: 12px;
    }

    .light::before {
    height: 14px;
    top: -14px;
    }

    .hero-section {
    background-attachment: scroll;
    }

    .trust-signal-card {
    min-width: 300px;
    padding: 25px 30px;
    }

    .trust-signal-icon {
    width: 50px;
    height: 50px;
    }

    .trust-signal-icon svg {
    width: 28px;
    height: 28px;
    }

    .trust-signal-number {
    font-size: 24px;
    }

    .events-container {
    flex-direction: column;
    gap: 40px;
    }

    .events-header {
    width: 100%;
    }

    .events-carousel-section {
    width: 100%;
    }

    .events-title {
    font-size: 36px;
    }
}

@media (max-width: 576px) {
    .floating-nav {
    top: 10px;
    width: 90%;
    padding: 4px 8px 4px 4px;
    }

    .nav-logo-img {
    height: 60px;
    }

    .hero-section {
    padding: 100px 15px 40px;
    }

    .hero-left h1 {
    font-size: 32px;
    }

    .hero-left h2 {
    font-size: 18px;
    }

    .hero-left p {
    font-size: 16px;
    }

    .hero-cta-buttons {
    flex-direction: column;
    align-items: stretch;
    gap: 15px;
    width: 100%;
    padding: 0 20px;
    }

    .hero-cta-buttons a {
    width: 100%;
    text-align: center;
    font-size: 14px;
    padding: 14px 20px;
    }

    .carnival-tent {
    max-width: 280px;
    width: 100%;
    }

    .tent-top {
    height: 200px;
    }

    .tent-canopy {
    height: 200px;
    }

    .tent-base {
    height: 120px;
    }

    .tent-entrance {
    width: 65px;
    height: 85px;
    top: 20px;
    }

    .tent-pole.left,
    .tent-pole.right {
    height: 100px;
    width: 6px;
    }

    .tent-flag {
    top: -50px;
    height: 50px;
    }

    .tent-flag::after {
    width: 38px;
    height: 25px;
    }

    .tent-trim {
    height: 6px;
    }

    .tent-lights {
    padding: 0 12%;
    }

    .flag {
    width: 20px;
    }

    .flag::before {
    height: 12px;
    top: -12px;
    }

    .flag::after {
    width: 16px;
    height: 10px;
    }

    .trust-section {
    padding: 60px 0;
    }

    .carousel-track {
    gap: 20px;
    }

    .trust-signal-card {
    min-width: 260px;
    padding: 20px 25px;
    gap: 15px;
    }

    .trust-signal-icon {
    width: 45px;
    height: 45px;
    }

    .trust-signal-icon svg {
    width: 24px;
    height: 24px;
    }

    .trust-signal-number {
    font-size: 22px;
    }

    .trust-signal-text {
    font-size: 13px;
    }

    .events-section {
        padding: 80px 15px 40px;
    }

    .events-title {
    font-size: 28px;
    }

    .events-subtitle {
    font-size: 18px;
    }

    .event-card {
    min-width: 260px;
    }

    .carousel-nav {
    width: 40px;
    height: 40px;
    }

    .carousel-nav i {
    font-size: 16px;
    }
}
/* Footer Section Styles */
.footer-section {
width: 100%;
background: linear-gradient(135deg, #F5EDD8 0%, #F9F5ED 100%);
color: #333;
position: relative;
overflow: hidden;
}

.footer-section::before {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
height: 6px;
background: linear-gradient(90deg, 
#DFBE40 0%, 
#ff6b6b 25%, 
#4dabf7 50%, 
#51cf66 75%, 
#DFBE40 100%
);
animation: colorSlide 8s linear infinite;
}

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

/* Main Footer */
.main-footer {
padding: 80px 20px 60px;
position: relative;
}

.main-footer::after {
content: '';
position: absolute;
top: 20px;
left: 50%;
transform: translateX(-50%);
font-size: 28px;
opacity: 0.15;
letter-spacing: 40px;
pointer-events: none;
}

.footer-container {
max-width: 1400px;
margin: 0 auto;
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 50px;
}

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

/* Footer Logo */
.footer-logo {
margin-bottom: 10px;
}

.footer-logo-img {
height: 100px;
width: auto;
object-fit: contain;
filter: none;
}

.footer-description {
color: #666;
font-size: 15px;
line-height: 1.7;
margin: 0;
}

/* Social Icons */
.footer-social {
display: flex;
gap: 15px;
margin-top: 10px;
}

.social-icon {
width: 45px;
height: 45px;
background: rgba(223, 190, 64, 0.1);
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
color: #333;
font-size: 18px;
transition: all 0.3s ease;
text-decoration: none;
border: 2px solid transparent;
}

.social-icon:hover {
background: #DFBE40;
color: #fff;
transform: translateY(-5px) rotate(360deg);
border-color: #DFBE40;
box-shadow: 0 8px 20px rgba(223, 190, 64, 0.4);
}

/* Footer Headings */
.footer-heading {
font-size: 20px;
font-weight: 700;
color: #DFBE40;
margin: 0 0 15px 0;
position: relative;
padding-bottom: 10px;
}

.footer-heading::after {
content: '';
position: absolute;
bottom: 0;
left: 0;
width: 50px;
height: 3px;
background: linear-gradient(90deg, #DFBE40, transparent);
border-radius: 2px;
}

/* Footer Links */
.footer-links {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 12px;
}

.footer-links li a {
color: #666;
text-decoration: none;
font-size: 15px;
transition: all 0.3s ease;
display: inline-block;
position: relative;
padding-left: 20px;
}

.footer-links li a::before {
content: '▸';
position: absolute;
left: 0;
color: #DFBE40;
opacity: 0;
transform: translateX(-10px);
transition: all 0.3s ease;
}

.footer-links li a:hover {
color: #DFBE40;
padding-left: 25px;
}

.footer-links li a:hover::before {
opacity: 1;
transform: translateX(0);
}

/* Footer Contact */
.footer-contact {
list-style: none;
padding: 0;
margin: 0;
display: flex;
flex-direction: column;
gap: 18px;
}

.footer-contact li {
display: flex;
gap: 15px;
color: #666;
font-size: 15px;
line-height: 1.6;
}

.footer-contact li i {
color: #DFBE40;
font-size: 18px;
width: 20px;
flex-shrink: 0;
margin-top: 2px;
}

.footer-contact li span {
flex: 1;
}

/* Copyright Footer Bottom */
.copyright-footer {
background: rgba(223, 190, 64, 0.1);
padding: 25px 20px;
border-top: 1px solid rgba(223, 190, 64, 0.2);
}

.copyright-container {
max-width: 1400px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
flex-wrap: wrap;
gap: 20px;
}

.copyright-text {
color: #666;
font-size: 14px;
margin: 0;
}

.footer-legal {
display: flex;
gap: 15px;
align-items: center;
flex-wrap: wrap;
}

.footer-legal a {
color: #666;
text-decoration: none;
font-size: 14px;
transition: color 0.3s ease;
}

.footer-legal a:hover {
color: #DFBE40;
}

.footer-legal .separator {
color: #999;
font-size: 14px;
}

/* Developer Link Styling */
.developer-link {
color: #666;
text-decoration: none;
font-size: 14px;
transition: all 0.3s ease;
display: inline-block;
position: relative;
}

.developer-link:hover {
color: #DFBE40;
}

.developer-link:hover::before {
opacity: 1;
transform: translateX(0);
}

/* Responsive Design */
@media (max-width: 991px) {
.main-footer {
padding: 60px 20px 40px;
}

.footer-container {
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 40px;
}

.main-footer::after {
font-size: 24px;
letter-spacing: 30px;
}
}

@media (max-width: 576px) {
.main-footer {
padding: 50px 15px 30px;
}

.footer-container {
grid-template-columns: 1fr;
gap: 35px;
}

.footer-column {
text-align: center;
}

.footer-logo {
display: flex;
justify-content: center;
}

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

.footer-heading::after {
left: 50%;
transform: translateX(-50%);
}

.footer-links li a {
padding-left: 0;
}

.footer-links li a:hover {
padding-left: 5px;
}

.footer-contact li {
justify-content: center;
text-align: left;
}

.copyright-container {
flex-direction: column;
text-align: center;
gap: 15px;
}

.footer-legal {
justify-content: center;
}

.main-footer::after {
font-size: 20px;
letter-spacing: 20px;
top: 15px;
}
}

/* Featured Event Section */
.featured-event-section {
    background: #FFFFFF;
    padding: 80px 5% 40px 5%;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.featured-event-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #DFBE40 50%, transparent 100%);
}

.featured-event-container {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    align-items: center;
    opacity: 0;
    transform: translateY(40px);
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

/* Left Side - City Visual Experience */
.city-visual-wrapper {
    position: relative;
}

.city-image-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 280px 280px;
    gap: 20px;
    position: relative;
    overflow: visible;
    padding: 20px 0;
}

.city-image-item {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.city-image-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
}

.city-image-item::after {
    content: '';
    position: absolute;
    top: -12px;
    left: 15%;
    width: 70%;
    height: 24px;
    background: linear-gradient(90deg, 
    rgba(220, 210, 190, 0.85) 0%,
    rgba(220, 210, 190, 0.9) 20%,
    rgba(220, 210, 190, 0.95) 50%,
    rgba(220, 210, 190, 0.9) 80%,
    rgba(220, 210, 190, 0.85) 100%);
    box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transform: rotate(-3deg);
    z-index: 10;
}

.city-image-item:nth-child(2)::after {
    top: -12px;
    left: 20%;
    transform: rotate(2deg);
}

.city-image-item:nth-child(3)::after {
    top: -12px;
    left: 15%;
    transform: rotate(-2.5deg);
}

.city-image-item::before {
    content: '';
    position: absolute;
    bottom: -12px;
    right: 10%;
    width: 60%;
    height: 24px;
    background: linear-gradient(90deg, 
    rgba(220, 210, 190, 0.85) 0%,
    rgba(220, 210, 190, 0.9) 20%,
    rgba(220, 210, 190, 0.95) 50%,
    rgba(220, 210, 190, 0.9) 80%,
    rgba(220, 210, 190, 0.85) 100%);
    box-shadow: 
    inset 0 1px 3px rgba(0, 0, 0, 0.1),
    inset 0 -1px 2px rgba(255, 255, 255, 0.3);
    border-radius: 2px;
    transform: rotate(4deg);
    z-index: 10;
}

.city-image-item:nth-child(2)::before {
    bottom: -12px;
    right: 15%;
    transform: rotate(-3deg);
}

.city-image-item:nth-child(3)::before {
    bottom: -12px;
    right: 10%;
    transform: rotate(3.5deg);
}

.city-image-item:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 50px rgba(223, 190, 64, 0.25);
}

.city-image-item:hover::before {
    transform: rotate(3deg);
}

.city-image-item:hover::after {
    transform: rotate(-2deg);
}

.city-image-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    display: block;
    box-shadow: 
    inset 0 0 0 2px transparent,
    inset 0 100% 60px -40px rgba(26, 26, 26, 0.6),
    inset 0 0 40px 0px rgba(26, 26, 26, 0.3);
    border-radius: 16px;
}

.city-image-item:hover .city-image-bg {
    transform: scale(1.08);
    box-shadow: 
    inset 0 0 0 2px #DFBE40,
    inset 0 100% 60px -40px rgba(26, 26, 26, 0.3),
    inset 0 0 40px 0px rgba(26, 26, 26, 0.1);
}

/* City Title Overlay */
.city-title-overlay {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    color: #FFFFFF;
    text-align: center;
    width: 90%;
    max-width: 600px;
}

.city-title-overlay h2 {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 12px;
    text-shadow: 0 4px 20px rgba(0, 0, 0, 0.5);
}

.city-descriptor {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    margin-bottom: 12px;
    text-transform: uppercase;
    color: #fff;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
}

.city-descriptor::before,
.city-descriptor::after {
    content: '';
    width: 30px;
    height: 2px;
    background: #DFBE40;
}

/* Right Side - Event Details */
.event-details-wrapper {
    padding: 40px 0;
}

.event-badge {
    display: inline-block;
    background: rgba(223, 190, 64, 0.15);
    color: #DFBE40;
    padding: 8px 20px;
    border-radius: 30px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    margin-bottom: 24px;
    border: 1px solid rgba(223, 190, 64, 0.3);
}

.event-title {
    font-family: 'Playfair Display', serif;
    font-size: 48px;
    font-weight: 700;
    color: #1a1a1a;
    line-height: 1.2;
    margin-bottom: 20px;
}

.event-location {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #666;
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 16px;
}

.event-location::before {
    content: '';
    display: inline-flex;
}

.event-location i {
    color: #DFBE40;
    font-size: 20px;
    margin-right: 8px;
}

.event-date {
    display: flex;
    align-items: center;
    gap: 12px;
    color: #DFBE40;
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 32px;
}

.event-date::before {
    content: '';
    display: inline-flex;
}

.event-date i {
    color: #DFBE40;
    font-size: 18px;
    margin-right: 8px;
}

.event-description {
    color: #555;
    font-size: 16px;
    line-height: 1.8;
    margin-bottom: 32px;
    max-width: 500px;
    display: none;
}

/* Countdown Timer */
.countdown-timer {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    margin-top: 40px;
    justify-content: flex-start;
}

.timer-unit {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.timer-value {
    font-size: 48px;
    font-weight: 700;
    color: #DFBE40;
    font-family: 'Playfair Display', serif;
    min-width: 80px;
    text-align: center;
    line-height: 1;
}

.timer-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.timer-separator {
    font-size: 36px;
    color: #DFBE40;
    opacity: 0.3;
    margin: 8px 0;
    font-weight: 300;
}

/* Event Highlights */
.event-highlights {
    display: none;
    gap: 32px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.highlight-item {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.highlight-value {
    font-size: 28px;
    font-weight: 700;
    color: #DFBE40;
    font-family: 'Playfair Display', serif;
}

.highlight-label {
    font-size: 12px;
    color: #666;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 500;
}

.highlight-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(180deg, transparent 0%, #DFBE40 50%, transparent 100%);
}

/* CTA Section */
.cta-wrapper {
    margin-top: 48px;
}

.book-stall-btn {
    display: inline-block;
    background-color: #F3D02D;
    color: #333;
    padding: 12px 35px;
    border-radius: 25px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(223, 190, 64, 0.3);
    border: none;
    cursor: pointer;
}

.book-stall-btn:hover {
    background-color: #E0BE25;
    transform: translateY(-3px);
    box-shadow: 0 8px 25px rgba(223, 190, 64, 0.5);
}

.cta-subtext {
    display: block;
    margin-top: 16px;
    color: #DFBE40;
    font-size: 13px;
    font-weight: 500;
    font-style: italic;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .featured-event-section {
    min-height: 100vh;
    padding: 100px 5% 80px;
    }

    .featured-event-container {
    gap: 60px;
    }

    .city-title-overlay h2 {
    font-size: 44px;
    }

    .event-title {
    font-size: 40px;
    }
}

@media (max-width: 768px) {
    .featured-event-section {
    min-height: auto;
    padding: 60px 5%;
    }

    .featured-event-container {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .city-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 150px 150px;
    gap: 15px;
    }

    .city-image-item:first-child {
    grid-column: 1 / 2;
    grid-row: 1 / 3;
    }

    .city-title-overlay {
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    }

    .city-title-overlay h2 {
    font-size: 36px;
    }

    .city-descriptor {
    font-size: 11px;
    gap: 8px;
    }

    .city-descriptor::before,
    .city-descriptor::after {
    width: 20px;
    }

    .event-details-wrapper {
    padding: 20px 0;
    }

    .event-title {
    font-size: 32px;
    }

    .event-location {
    font-size: 16px;
    }

    .event-date {
    font-size: 14px;
    }

    .event-description {
    font-size: 15px;
    line-height: 1.7;
    max-width: none;
    }

    .event-highlights {
    gap: 20px;
    flex-direction: column;
    }

    .highlight-item {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 12px;
    }

    .highlight-value {
    font-size: 24px;
    min-width: 80px;
    }

    .highlight-divider {
    display: none;
    }

    .book-stall-btn {
    width: 100%;
    text-align: center;
    padding: 14px 35px;
    }

    /* Mobile adjustments: prevent horizontal overflow and simplify visuals */
    .featured-event-section {
    overflow-x: hidden;
    }

    .city-image-item::before,
    .city-image-item::after {
    display: none;
    }

    .city-image-bg {
    height: 100%;
    object-position: center top;
    }

    /* Countdown wraps and uses smaller typography on mobile */
    .countdown-timer {
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    }

    .timer-value {
    font-size: 28px;
    min-width: 56px;
    }

    .timer-separator {
    font-size: 20px;
    }
}

@media (max-width: 480px) {
    .city-image-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 250px 180px 180px;
    }

    .city-image-item:first-child {
    grid-column: 1;
    grid-row: 1;
    }

    .city-title-overlay h2 {
    font-size: 32px;
    }

    .event-title {
    font-size: 28px;
    }

    .event-highlights {
    flex-direction: column;
    gap: 20px;
    }

    .highlight-divider {
    display: none;
    }
}

/* Keep three-image layout same as laptop on all devices */
@media (max-width: 1024px) {
    .city-image-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 120px 120px;
        gap: 20px;
    }

    .city-image-item:first-child {
        grid-column: 1 / 2;
        grid-row: 1 / 3;
    }

    .city-image-item::before,
    .city-image-item::after {
        display: block;
    }
}

/* Two Paths Section */
.two-paths-section {
    background: #FFFFFF;
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.two-paths-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #DFBE40 50%, transparent 100%);
}

.two-paths-section::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, #DFBE40 50%, transparent 100%);
}

/* Section Title */
.section-header {
    text-align: center;
    margin-bottom: 80px;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

.section-title {
    font-family: 'Playfair Display', serif;
    font-size: 52px;
    font-weight: 700;
    color: #1a1a1a;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.section-subtitle {
    color: #666;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 3px;
    text-transform: uppercase;
}

/* Paths Container */
.paths-container {
    max-width: 1600px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    position: relative;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(40px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

/* Central Divider - Rope/Tassel Metaphor */
.central-divider {
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 2px;
    background: linear-gradient(180deg, transparent 0%, #DFBE40 20%, #DFBE40 80%, transparent 100%);
    transform: translateX(-50%);
    z-index: 10;
}

.central-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 20px;
    height: 20px;
    background: #DFBE40;
    border-radius: 50%;
    box-shadow: 0 0 30px rgba(223, 190, 64, 0.6);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
    box-shadow: 0 0 30px rgba(223, 190, 64, 0.6);
    }
    50% {
    box-shadow: 0 0 50px rgba(223, 190, 64, 0.9);
    }
}

/* Individual Path */
.path {
    padding: 40px 60px;
    position: relative;
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    animation: breathe 4s ease-in-out infinite;
}

@keyframes breathe {
    0%, 100% {
    transform: translateY(0px);
    }
    50% {
    transform: translateY(-8px);
    }
}

.path:nth-child(1) {
    animation-delay: 0s;
}

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

/* Spotlight Background Effect */
.path::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(223, 190, 64, 0.08) 0%, transparent 70%);
    opacity: 0.6;
    transition: opacity 0.5s ease;
    pointer-events: none;
}

.path:hover::before {
    opacity: 1;
}

/* Curtain-like side borders */
.path::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, transparent 0%, rgba(223, 190, 64, 0.3) 50%, transparent 100%);
    transition: background 0.5s ease;
}

.path:nth-child(1)::after {
    left: 0;
}

.path:nth-child(2)::after {
    right: 0;
}

.path:hover::after {
    background: linear-gradient(180deg, transparent 0%, rgba(223, 190, 64, 0.7) 50%, transparent 100%);
}

/* Hover Interaction - Dimming Effect */
.paths-container:has(.path:hover) .path:not(:hover) {
    opacity: 0.4;
    transform: scale(0.98);
}

/* Path Content */
.path-content {
    position: relative;
    z-index: 2;
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
}

.path-icon {
    font-size: 64px;
    margin-bottom: 24px;
    filter: drop-shadow(0 4px 20px rgba(223, 190, 64, 0.4));
    animation: float 3s ease-in-out infinite;
}

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

.path-heading {
    font-family: 'Playfair Display', serif;
    font-size: 40px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.path-subheading {
    color: #666;
    font-size: 18px;
    line-height: 1.6;
    margin-bottom: 32px;
    font-weight: 400;
    font-style: italic;
}

/* Value Points */
.value-points {
    list-style: none;
    margin-bottom: 40px;
    text-align: left;
}

.value-point {
    color: #666;
    font-size: 15px;
    line-height: 1.8;
    margin-bottom: 16px;
    padding-left: 32px;
    position: relative;
}

.value-point::before {
    content: '✦';
    position: absolute;
    left: 0;
    color: #DFBE40;
    font-size: 18px;
}

/* CTAs */
.path-cta {
    display: inline-block;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
    margin-top: 16px;
}

/* Visitor CTA - Outline Style */
.path .path-cta {
    color: #DFBE40;
    border: 2px solid #DFBE40;
    background: transparent;
}

.path .path-cta:hover {
    background: rgba(223, 190, 64, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 190, 64, 0.3);
}

/* Exhibitor CTA - Secondary Button */
.path .path-cta {
    color: #1a1a1a;
    background: transparent;
    border: 2px solid #1a1a1a;
}

.path .path-cta:hover {
    background: #1a1a1a;
    color: #fff;
    border-color: #1a1a1a;
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(26, 26, 26, 0.3);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .path {
    padding: 40px 40px;
    }

    .section-title {
    font-size: 42px;
    }

    .path-heading {
    font-size: 36px;
    }

    .path-subheading {
    font-size: 16px;
    }
}

@media (max-width: 768px) {
    .two-paths-section {
    padding: 60px 5%;
    }

    .section-header {
    margin-bottom: 60px;
    }

    .section-title {
    font-size: 36px;
    }

    .section-subtitle {
    font-size: 13px;
    letter-spacing: 2px;
    }

    .paths-container {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .central-divider {
    width: 100%;
    height: 2px;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    background: linear-gradient(90deg, transparent 0%, #DFBE40 20%, #DFBE40 80%, transparent 100%);
    }

    .central-divider::before {
    top: 50%;
    left: 50%;
    }

    .path {
    padding: 30px 30px;
    animation: none;
    }

    .path::after {
    display: none;
    }

    .path:nth-child(1)::before {
    background: radial-gradient(ellipse at top center, rgba(223, 190, 64, 0.08) 0%, transparent 70%);
    }

    .path:nth-child(2)::before {
    background: radial-gradient(ellipse at bottom center, rgba(223, 190, 64, 0.08) 0%, transparent 70%);
    }

    .paths-container:has(.path:hover) .path:not(:hover) {
    opacity: 1;
    transform: scale(1);
    }

    .path-content {
    max-width: 100%;
    }

    .path-icon {
    font-size: 52px;
    }

    .path-heading {
    font-size: 32px;
    }

    .path-subheading {
    font-size: 15px;
    }

    .value-points {
    margin-bottom: 32px;
    }

    .value-point {
    font-size: 14px;
    }

    .path-cta {
    width: 100%;
    text-align: center;
    padding: 14px 40px;
    }
}

@media (max-width: 480px) {
    .section-title {
    font-size: 28px;
    letter-spacing: 1px;
    }

    .path {
    padding: 40px 20px;
    }

    .path-heading {
    font-size: 28px;
    }

    .path-subheading {
    font-size: 14px;
    line-height: 1.5;
    }

    .value-point {
    font-size: 13px;
    padding-left: 28px;
    }
}

/* Energy Section */
.energy-section {
    background: linear-gradient(135deg, #F5EDD8 0%, #F9F5ED 100%);
    padding: 60px 0;
    position: relative;
    overflow: hidden;
}

/* Force perfect centering for hero only (no other elements affected) */
.hero-section, .hero-section .hero-container {
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    text-align: center !important;
}

/* Spotlight gradient overlay */
.energy-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(223, 190, 64, 0.05) 0%, transparent 60%);
    pointer-events: none;
    z-index: 1;
}

/* Section Header */
.energy-header {
    text-align: center;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInDown 0.8s ease-out forwards;
    animation-delay: 0.2s;
}

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

.energy-title {
    font-family: 'Playfair Display', serif;
    font-size: 56px;
    font-weight: 800;
    color: #1a1a1a;
    letter-spacing: 1px;
    margin-bottom: 16px;
    line-height: 1.2;
}

.energy-subtitle {
    color: #333333;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Metrics Section */
.metrics-container {
    display: flex;
    justify-content: center;
    gap: 80px;
    margin-bottom: 80px;
    position: relative;
    z-index: 2;
    opacity: 0;
    animation: fadeInUp 0.8s ease-out forwards;
    animation-delay: 0.4s;
}

@keyframes fadeInUp {
    from {
    opacity: 0;
    transform: translateY(40px);
    }
    to {
    opacity: 1;
    transform: translateY(0);
    }
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-family: 'Playfair Display', serif;
    font-size: 64px;
    font-weight: 800;
    color: #DFBE40;
    line-height: 1;
    margin-bottom: 12px;
    text-shadow: 0 0 30px rgba(223, 190, 64, 0.5);
    animation: glow 2s ease-in-out infinite;
}

@keyframes glow {
    0%, 100% {
    text-shadow: 0 0 30px rgba(223, 190, 64, 0.5);
    }
    50% {
    text-shadow: 0 0 50px rgba(223, 190, 64, 0.8);
    }
}

.metric-label {
    color: #1a1a1a;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* Floating Memory Frames Container */
.frames-container {
    position: relative;
    z-index: 2;
    margin-bottom: 80px;
}

.frames-strip {
    display: flex;
    gap: 30px;
    padding: 30px 0;
    animation: drift 5s linear infinite;
    will-change: transform;
}

.frames-strip:nth-child(1) {
    animation-duration: 12s;
}

.frames-strip:nth-child(2) {
    animation-duration: 12s;
    animation-delay: -6s;
}

.frames-strip:nth-child(3) {
    animation-duration: 12s;
    animation-delay: -12s;
}

@keyframes drift {
    0% {
    transform: translateX(0);
    }
    100% {
    transform: translateX(-50%);
    }
}

.frames-strip:hover {
    animation-play-state: paused;
}

/* Memory Frame (Polaroid Style) */
.memory-frame {
    position: relative;
    min-width: 300px;
    height: 340px;
    background: #FFFFFF;
    border-radius: 8px;
    padding: 15px;
    padding-bottom: 60px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
    transform: rotate(-2deg);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
}

.memory-frame:nth-child(even) {
    transform: rotate(2deg);
}

.memory-frame:hover {
    transform: rotate(0deg) translateY(-15px) scale(1.05);
    box-shadow: 0 20px 60px rgba(223, 190, 64, 0.4);
    z-index: 10;
}

/* Gold corner accent */
.memory-frame::before {
    content: '';
    position: absolute;
    top: 10px;
    right: 10px;
    width: 30px;
    height: 30px;
    border-top: 3px solid #DFBE40;
    border-right: 3px solid #DFBE40;
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.memory-frame:hover::before {
    opacity: 1;
}

.frame-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.frame-caption {
    position: absolute;
    bottom: 15px;
    left: 15px;
    right: 15px;
    font-size: 13px;
    color: #333333;
    font-weight: 500;
    text-align: center;
    font-style: italic;
}

/* Ambient Quotes */
.ambient-quotes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 3;
}

.floating-quote {
    position: absolute;
    color: #333333;
    font-size: 20px;
    font-weight: 500;
    font-style: italic;
    animation: floatQuote 8s ease-in-out infinite;
    white-space: nowrap;
    text-shadow: 0 2px 10px rgba(223, 190, 64, 0.3);
}

.floating-quote:nth-child(1) {
    top: 20%;
    left: 10%;
    animation-delay: 0s;
}

.floating-quote:nth-child(2) {
    top: 60%;
    right: 15%;
    animation-delay: 2s;
}

.floating-quote:nth-child(3) {
    bottom: 25%;
    left: 20%;
    animation-delay: 4s;
}

@keyframes floatQuote {
    0%, 100% {
    opacity: 0;
    transform: translateY(0);
    }
    10%, 90% {
    opacity: 0.9;
    }
    50% {
    opacity: 1;
    transform: translateY(-10px);
    }
}

/* CTA Section */
.energy-cta-wrapper {
    text-align: center;
    position: relative;
    z-index: 2;
    margin-top: 60px;
}

.energy-cta {
    display: inline-block;
    color: #1a1a1a;
    border: 2px solid #DFBE40;
    background: #DFBE40;
    padding: 16px 48px;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    transition: all 0.3s ease;
}

.energy-cta:hover {
    background: #e8c955;
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(223, 190, 64, 0.5);
}

/* Responsive Design */
@media (max-width: 1024px) {
    .energy-title {
    font-size: 46px;
    }

    .metrics-container {
    gap: 60px;
    }

    .metric-value {
    font-size: 52px;
    }

    .memory-frame {
    min-width: 260px;
    height: 300px;
    }
}

@media (max-width: 768px) {
    .energy-section {
    padding: 80px 5%;
    }

    .energy-header {
    margin-bottom: 60px;
    }

    .energy-title {
    font-size: 36px;
    }

    .energy-subtitle {
    font-size: 13px;
    letter-spacing: 1.5px;
    }

    .metrics-container {
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 60px;
    }

    .metric-value {
    font-size: 44px;
    }

    .metric-label {
    font-size: 12px;
    }

    .frames-strip {
    gap: 20px;
    }

    .memory-frame {
    min-width: 220px;
    height: 260px;
    padding-bottom: 50px;
    }

    .frame-caption {
    font-size: 11px;
    }

    .floating-quote {
    font-size: 14px;
    }

    .energy-cta {
    width: 100%;
    max-width: 300px;
    padding: 14px 40px;
    }
}

@media (max-width: 480px) {
    .energy-title {
    font-size: 28px;
    letter-spacing: 0.5px;
    }

    .metrics-container {
    flex-direction: column;
    gap: 30px;
    }

    .metric-value {
    font-size: 38px;
    }

    .memory-frame {
    min-width: 200px;
    height: 240px;
    }

    .floating-quote {
    display: none;
    }
}

/* ===================================
   Instagram Section
   =================================== */
.instagram-section {
    padding: 80px 20px;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    position: relative;
    overflow: hidden;
}

.instagram-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(240, 0, 255, 0.03) 0%, transparent 70%);
    animation: instagram-pulse 15s ease-in-out infinite;
}

@keyframes instagram-pulse {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.instagram-container {
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.instagram-icon {
    font-size: 48px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 20px;
    animation: instagram-gradient 3s ease infinite;
}

@keyframes instagram-gradient {
    0%, 100% { filter: hue-rotate(0deg); }
    50% { filter: hue-rotate(20deg); }
}

.instagram-title {
    font-family: 'Playfair Display', serif;
    font-size: 42px;
    font-weight: 700;
    color: #333;
    margin-bottom: 12px;
}

.instagram-subtitle {
    font-size: 20px;
    font-weight: 600;
    color: #666;
    margin-bottom: 24px;
}

.instagram-follow-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 32px;
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: #fff;
    text-decoration: none;
    border-radius: 30px;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(188, 24, 136, 0.3);
}

.instagram-follow-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(188, 24, 136, 0.5);
    color: #fff;
}

/* Instagram Grid */
.instagram-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
    margin-top: 40px;
}

.instagram-post {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    aspect-ratio: 1;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.instagram-post:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.2);
    z-index: 10;
}

.instagram-post-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.instagram-post:hover .instagram-post-image {
    transform: scale(1.1);
}

.instagram-post-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(240, 148, 51, 0.9) 0%, rgba(188, 24, 136, 0.9) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 20px;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.instagram-post:hover .instagram-post-overlay {
    opacity: 1;
}

.instagram-post-stats {
    display: flex;
    gap: 30px;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.instagram-post-stat {
    display: flex;
    align-items: center;
    gap: 8px;
}

.instagram-post-stat i {
    font-size: 20px;
}

.instagram-post-caption {
    color: #fff;
    font-size: 14px;
    padding: 0 20px;
    text-align: center;
    max-width: 90%;
    display: -webkit-box;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* Loading State */
.instagram-loading {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #666;
}

.instagram-loading i {
    font-size: 48px;
    color: #bc1888;
    margin-bottom: 16px;
}

.instagram-loading p {
    font-size: 18px;
    margin-top: 12px;
}

/* Error State */
.instagram-error {
    grid-column: 1 / -1;
    text-align: center;
    padding: 60px 20px;
    color: #dc2743;
}

.instagram-error i {
    font-size: 48px;
    margin-bottom: 16px;
}

/* Responsive Adjustments */
@media (max-width: 991px) {
    .instagram-section {
        padding: 60px 20px;
    }

    .instagram-title {
        font-size: 36px;
    }

    .instagram-grid {
        grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
        gap: 16px;
    }
}

@media (max-width: 576px) {
    .instagram-section {
        padding: 50px 16px;
    }

    .instagram-icon {
        font-size: 36px;
    }

    .instagram-title {
        font-size: 28px;
    }

    .instagram-subtitle {
        font-size: 16px;
    }

    .instagram-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .instagram-post-stats {
        gap: 20px;
        font-size: 14px;
    }

    .instagram-follow-btn {
        padding: 12px 24px;
        font-size: 14px;
    }
}

/* Featured carousel (draggable, no arrows) */
.featured-carousel {
    position: relative;
    overflow: hidden;
}

.featured-track {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 10px;
    -ms-overflow-style: none;
    scrollbar-width: none;
    cursor: grab;
    user-select: none;
    -webkit-user-select: none;
    touch-action: pan-y;
}

.featured-track::-webkit-scrollbar {
    display: none;
}

.featured-track.is-dragging {
    cursor: grabbing;
}

.featured-slide {
    flex: 0 0 100%;
    scroll-snap-align: start;
}

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

.featured-dot {
    width: 10px;
    height: 10px;
    border-radius: 999px;
    border: 0;
    background: rgba(0, 0, 0, 0.25);
    transition: background-color 0.25s ease, width 0.25s ease;
}

.featured-dot.active {
    background: #a37a2c;
    width: 26px;
}

@media (min-width: 1200px) {
    .featured-slide {
        flex-basis: calc(100% - 32px);
    }
}

@view-transition { 
    navigation: auto;
}