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


.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

:root {
    --primary-blue: #00bfff;
    --primary-blue-hover: #0099cc;
    --primary-green: #2ecc71;
    --primary-green-hover: #27ae60;
    --glass-bg: rgba(22, 33, 45, 0.75);
    --glass-border: rgba(255, 255, 255, 0.1);
    --text-light: #ffffff;
    --text-dim: #d1d5db;
    --font-main: 'Montserrat', sans-serif;
    --font-heading: 'Oswald', sans-serif;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    color: var(--text-light);
    line-height: 1.5;
    overflow-x: hidden;
}


.bg-fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    background: url('/wp-content/uploads/2025/11/HERO-1.jpg') no-repeat center center;
    background-size: cover;
    z-index: -1;
}


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


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

.text-right {
    text-align: right;
}

.mt-normal {
    margin-top: 30px;
}

.mt-large {
    margin-top: 60px;
}

.py-large {
    padding: 60px 0;
}


.btn-primary {
    background: linear-gradient(135deg, var(--primary-blue), #0088cc);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 191, 255, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary:hover::after {
    width: 200px;
    height: 200px;
}

.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.5);
}

.btn-primary:active {
    transform: translateY(1px) scale(0.98);
}


.btn-primary-green {
    background: linear-gradient(135deg, var(--primary-green), #229954);
    color: #fff;
    border: none;
    padding: 14px 35px;
    border-radius: 30px;
    font-family: var(--font-main);
    font-weight: 700;
    font-size: 14px;
    cursor: pointer;
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.3s ease;
    box-shadow: 0 4px 15px rgba(46, 204, 113, 0.3);
    text-transform: uppercase;
    position: relative;
    overflow: hidden;
    text-decoration: none;
    display: inline-block;
}

.btn-primary-green::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    transition: width 0.4s ease, height 0.4s ease;
}

.btn-primary-green:hover::after {
    width: 200px;
    height: 200px;
}

.btn-primary-green:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 8px 25px rgba(46, 204, 113, 0.6);
}

.btn-primary-green:active {
    transform: translateY(1px) scale(0.98);
}


.header {
    text-align: center;
    padding: 40px 0;
}

.main-logo-img {
    width: 100%;
    max-width: 600px;
    height: auto;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.4));
    transition: transform 0.3s ease;
}

.main-logo-img:hover {
    transform: scale(1.02);
}


.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}


.hero-section {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    margin-bottom: 60px;
}

.hero-content {
    flex: 1.5;
}


.poster-title-group {
    position: relative;
    margin-bottom: 40px;
    z-index: 2;
}

.poster-title-top {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 85px;
    
    line-height: 0.8;
    color: #fff;
    letter-spacing: 2px;
    text-shadow: 0 10px 20px rgba(0, 0, 0, 0.5);
    margin: 0;
    will-change: transform, opacity;
}

.poster-title-script {
    font-family: 'Caveat', cursive;
    font-size: 110px;
    line-height: 0.5;
    color: var(--primary-blue);
    text-shadow: 0 5px 15px rgba(0, 191, 255, 0.4);
    margin: -10px 0 0 30px;
    
    transform: rotate(-5deg);
    will-change: transform, opacity;
}

.poster-title-bottom {
    font-family: var(--font-main);
    font-size: 16px;
    font-weight: 800;
    letter-spacing: 6px;
    color: #fff;
    margin-top: 15px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.5);
    will-change: transform, opacity;
}

.poster-title-bottom .accent-year {
    color: var(--primary-green);
}

.poster-text-wrapper {
    position: relative;
    padding-left: 25px;
    border-left: 4px solid var(--primary-blue);
    margin-bottom: 20px;
    z-index: 2;
}


.poster-text-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -40px;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(0, 191, 255, 0.15) 0%, rgba(0, 0, 0, 0) 70%);
    z-index: -1;
    filter: blur(15px);
}

.poster-subtitle {
    font-family: var(--font-main);
    font-size: 18px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 20px;
}

.poster-text {
    font-family: var(--font-main);
    font-size: 15px;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.6;
    margin-bottom: 15px;
}

.poster-highlight-box {
    margin-top: 25px;
    background: linear-gradient(90deg, rgba(0, 191, 255, 0.2) 0%, rgba(0, 0, 0, 0) 100%);
    padding: 15px 20px;
    border-radius: 4px;
}

.poster-highlight-text {
    font-family: 'Oswald', sans-serif;
    font-size: 20px;
    letter-spacing: 1px;
    color: #fff;
    margin: 0;
}

.hero-action {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
}

.countdown {
    display: flex;
    gap: 15px;
}

.cd-box {
    text-align: center;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 20px 25px;
    min-width: 100px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.4);
}

.cd-number {
    display: block;
    font-size: 52px;
    font-family: var(--font-main);
    font-weight: 800;
    color: var(--primary-blue);
    line-height: 1;
    margin-bottom: 8px;
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.4);
}

.cd-label {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--text-dim);
    font-weight: 600;
}


.section-title-wrapper {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 55px;
    letter-spacing: 4px;
    color: #fff;
    margin: 0;
    text-shadow: 0 5px 15px rgba(0, 0, 0, 0.4);
}

.section-accent-script {
    font-family: 'Caveat', cursive;
    font-size: 55px;
    color: var(--primary-blue);
    display: block;
    margin-bottom: -25px;
    margin-left: -15px;
    transform: rotate(-5deg);
    text-shadow: 0 2px 10px rgba(0, 191, 255, 0.4);
}


.vibe-scroll-container {
    height: 300vh;
    
    position: relative;
    margin-bottom: 60px;
}

.vibe-sticky-container {
    position: sticky;
    top: 0;
    height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    overflow: hidden;
}

.vibe-title {
    width: 100%;
    margin-bottom: 20px;
}

.vibe-track {
    display: flex;
    gap: 20px;
    padding: 0 20px;
    width: max-content;
    will-change: transform;
}

.vibe-img {
    height: 550px;
    max-height: 75vh;
    width: auto;
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.4);
    flex-shrink: 0;
}


.lineup-subtitle {
    text-align: center;
    font-size: 14px;
    color: var(--text-dim);
    max-width: 800px;
    margin: 0 auto 40px auto;
}

.lineup-columns {
    display: flex;
    justify-content: space-around;
    gap: 40px;
}

.lineup-col {
    flex: 1;
    background: rgba(255, 255, 255, 0.03);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.col-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 32px;
    font-weight: 500;
    margin-bottom: 25px;
    letter-spacing: 1.5px;
    color: var(--primary-blue);
    text-shadow: 0 0 10px rgba(0, 191, 255, 0.2);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    padding-bottom: 10px;
}

.lineup-list {
    list-style: none;
}

.lineup-list li {
    font-size: 14px;
    margin-bottom: 12px;
    color: #e5e7eb;
    font-weight: 600;
    display: flex;
    align-items: center;
    transition: transform 0.2s ease, color 0.2s ease;
    cursor: default;
}

.lineup-list li:hover {
    transform: translateX(8px);
    color: #fff;
}

.bullet,
.bullet-right {
    display: inline-block;
    width: 6px;
    height: 6px;
    background-color: var(--primary-green);
    border-radius: 50%;
    margin-right: 12px;
    box-shadow: 0 0 8px var(--primary-green);
    transition: transform 0.2s ease;
}

.bullet-right {
    margin-right: 0;
    margin-left: 12px;
}

.lineup-list li:hover .bullet {
    transform: scale(1.5);
    background-color: var(--primary-blue);
    box-shadow: 0 0 10px var(--primary-blue);
}


.expect-main-title {
    font-size: 28px;
    font-weight: 800;
    margin-bottom: 40px;
    letter-spacing: 1px;
    color: #fff;
}

.expect-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 25px;
}

.expect-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    padding: 25px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.expect-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.expect-subtitle {
    font-family: var(--font-heading);
    font-size: 18px;
    margin-bottom: 15px;
    letter-spacing: 1px;
    color: var(--primary-blue);
}

.expect-item p {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 8px;
    display: flex;
    align-items: flex-start;
    line-height: 1.4;
}

.expect-item p .bullet {
    margin-top: 5px;
    flex-shrink: 0;
}


.loc-columns {
    display: flex;
    gap: 30px;
    align-items: center;
}

.loc-col {
    flex: 1;
}

.middle-col {
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 20px;
}

.loc-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 40px;
    margin-bottom: 15px;
    letter-spacing: 1.5px;
    color: #fff;
}

.loc-list {
    list-style: none;
}

.premium-resort-title {
    font-size: 38px;
    font-weight: 800;
    font-family: var(--font-heading);
    margin-bottom: 25px;
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.premium-resort-title .resort-word {
    display: inline-block;
    background: linear-gradient(90deg, #00bfff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: 0px 4px 15px rgba(0, 191, 255, 0.2);
    will-change: transform, opacity;
}

.loc-list {
    list-style: none;
}

.loc-list li {
    font-size: 13px;
    color: var(--text-dim);
    margin-bottom: 12px;
    line-height: 1.5;
    display: flex;
    align-items: flex-start;
    transition: color 0.2s ease;
}

.loc-list.align-right li {
    justify-content: flex-end;
    text-align: right;
}

.loc-list li:hover {
    color: #fff;
}

.loc-list li .bullet {
    margin-top: 6px;
    flex-shrink: 0;
}

.loc-list li .bullet-right {
    margin-top: 6px;
    flex-shrink: 0;
}

.premium-quote-box {
    position: relative;
    padding: 40px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    text-align: left;
    transition: transform 0.4s ease, border-color 0.4s ease, box-shadow 0.4s ease;
}

.premium-quote-box:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.4);
}

.quote-icon {
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: 'Oswald', sans-serif;
    font-size: 80px;
    line-height: 1;
    color: rgba(0, 191, 255, 0.2);
    font-weight: 700;
    pointer-events: none;
}

.premium-quote-text {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.9);
    font-style: italic;
    letter-spacing: 0.5px;
    position: relative;
    z-index: 1;
}


.theme-bg-ocean-sand {
    position: relative;
    
    background: url('https://images.unsplash.com/photo-1520116468816-95b69f847357?auto=format&fit=crop&w=1920&q=80') center/cover no-repeat;
    background-attachment: fixed;
    margin-top: 60px;
    padding: 80px 0;
}

.theme-bg-ocean-sand::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(15, 25, 40, 0.4);
    
    z-index: 0;
}

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

.premium-glass-wrapper {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 60px;
    box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.05);
}

.premium-section {
    padding: 40px 0;
}

.glass-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
    margin: 20px 0;
}

.text-gradient {
    background: linear-gradient(90deg, #00bfff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-size: 15px;
    font-weight: 700;
    letter-spacing: 2px;
    margin-top: 10px;
}

.theme-bg-ocean-sand .text-light .section-title {
    color: #fff;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}


.cta-section {
    padding-top: 50px;
    padding-bottom: 20px;
}

.cta-title {
    font-size: 32px;
    font-weight: 800;
    color: #fff;
    margin-bottom: 15px;
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.4);
    letter-spacing: 1px;
}

.cta-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 35px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.5;
}

.btn-large {
    padding: 16px 45px;
    font-size: 16px;
    border-radius: 40px;
}


.instructors-scroll-container {
    width: 100%;
    overflow: hidden;
    
    padding: 20px 0 40px 0;
    position: relative;
}

.instructors-track {
    display: flex;
    gap: 25px;
    width: max-content;
}

.marquee-group {
    display: flex;
    gap: 25px;
    
    animation: scroll-x 40s linear infinite;
}

.instructors-scroll-container:hover .marquee-group {
    animation-play-state: paused;
    
}

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

    100% {
        transform: translateX(calc(-100% - 25px));
    }
}

.instructor-card {
    width: 260px;
    height: 360px;
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    scroll-snap-align: start;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.4);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275), box-shadow 0.4s ease;
    background: #000;
}

.instructor-card:hover {
    transform: translateY(-10px) scale(1.02);
    box-shadow: 0 20px 45px rgba(0, 0, 0, 0.6);
}

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

.instructor-card:hover img {
    transform: scale(1.05);
    opacity: 1;
}

.instructor-name {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 30px 20px 20px 20px;
    background: linear-gradient(to top, rgba(0, 0, 0, 0.9) 0%, rgba(0, 0, 0, 0) 100%);
    color: #fff;
    font-weight: 700;
    text-align: center;
    font-size: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.carousel-item {
    background-color: #ccc;
    border-radius: 8px;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.carousel-item.side {
    width: 200px;
    height: 300px;
    background-color: #e0e0e0;
}

.carousel-item.center {
    width: 350px;
    height: 250px;
    background: url('https://images.unsplash.com/photo-1545128485-c400e7702796?auto=format&fit=crop&w=600&q=80') center/cover;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
}

.carousel-item.light-bg {
    background-color: #f5f5f5;
}

.mock-card {
    text-align: center;
}

.mock-logo {
    color: #fff;
    font-size: 24px;
    text-shadow: 0 2px 5px rgba(0, 0, 0, 0.8);
}

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

.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.4);
    cursor: pointer;
}

.dot.active {
    background-color: #fff;
}


.premium-footer {
    background: #0a0f1a;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding: 80px 0 20px 0;
    width: 100%;
}

.footer-content {
    display: flex;
    justify-content: space-between;
    gap: 40px;
    margin-bottom: 60px;
}

.footer-col {
    flex: 1;
}

.footer-logo {
    max-width: 180px;
    margin-bottom: 20px;
    filter: drop-shadow(0 0 10px rgba(0, 191, 255, 0.2));
}

.footer-desc {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.6;
    max-width: 300px;
}

.footer-heading {
    color: #fff;
    font-size: 16px;
    margin-bottom: 25px;
    font-weight: 700;
    letter-spacing: 1px;
}

.footer-links {
    list-style: none;
}

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

.footer-links a {
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 14px;
    transition: color 0.3s ease;
}

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

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

.footer-bottom p {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.dev-link {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 600;
}

.dev-link:hover {
    color: var(--primary-blue);
}




@media (max-width: 992px) {
    .premium-glass-wrapper {
        padding: 40px 30px;
        
    }

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

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

    .poster-title-top {
        font-size: 65px;
    }

    .poster-title-script {
        font-size: 90px;
    }

    .poster-title-bottom {
        font-size: 14px;
        letter-spacing: 4px;
    }

    .premium-resort-title {
        font-size: 32px;
        
    }

    .premium-quote-box {
        padding: 30px;
    }
}


@media (max-width: 768px) {
    .premium-glass-wrapper {
        padding: 30px 15px;
        
        border-radius: 20px;
        
    }

    .hero-section {
        flex-direction: column;
        text-align: center;
        gap: 40px;
        
    }

    .poster-title-top {
        font-size: 55px;
    }

    .poster-title-script {
        font-size: 70px;
        margin: -5px 0 0 15px;
        
    }

    .poster-title-bottom {
        font-size: 12px;
        letter-spacing: 2px;
    }

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

    .hero-subtitle {
        font-size: 14px;
    }

    .hero-text {
        margin: 0 auto 15px auto;
        font-size: 13px;
    }

    
    .countdown {
        justify-content: center;
        gap: 10px;
        flex-wrap: wrap;
        
    }

    .cd-box {
        flex: 1 1 calc(50% - 10px);
        
        min-width: 80px;
        padding: 15px 10px;
    }

    .cd-number {
        font-size: 36px;
        
    }

    .cd-label {
        font-size: 10px;
    }

    
    .vibe-img {
        height: 400px;
    }

    
    .instructor-card {
        width: 200px;
        
        height: 280px;
    }

    
    .lineup-columns {
        flex-direction: column;
        gap: 30px;
    }

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

    
    .loc-columns {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .loc-list li {
        justify-content: flex-start;
        
        text-align: left;
    }

    .premium-resort-title {
        font-size: 26px;
        justify-content: center;
        
    }

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

    .section-accent-script {
        font-size: 40px;
        margin-bottom: -20px;
    }

    .premium-quote-box {
        padding: 25px;
        text-align: center;
    }

    .quote-icon {
        left: 50%;
        transform: translateX(-50%);
        top: -25px;
    }

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

    .footer-col {
        align-items: center;
    }

    .footer-logo {
        margin: 0 auto 15px auto;
    }

    .footer-desc {
        margin: 0 auto;
    }

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


@media (max-width: 480px) {
    .poster-title-top {
        font-size: 45px;
    }

    .poster-title-script {
        font-size: 60px;
    }

    .poster-title-bottom {
        font-size: 11px;
    }

    .cd-box {
        padding: 10px 5px;
    }

    .cd-number {
        font-size: 28px;
    }

    .instructor-card {
        width: 170px;
        height: 240px;
    }

    .instructor-name {
        font-size: 13px;
        padding: 20px 10px 15px 10px;
    }

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

    .section-accent-script {
        font-size: 35px;
        margin-bottom: -15px;
    }

    .premium-resort-title {
        font-size: 22px;
    }
}







.checkout-page {
    background: transparent;
    min-height: 100vh;
}


.parallax-scene {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
    overflow: hidden;
}

.parallax-layer {
    position: absolute;
    top: -10%;
    left: 0;
    width: 100%;
    height: 120%;
    background-size: cover;
    background-position: center;
    will-change: transform;
}

.layer-temple {
    background-image: url('/wp-content/uploads/2025/11/Gemini_Generated_Image_crqq2hcrqq2hcrqq.png');
    background-attachment: scroll;
}

.parallax-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(5, 15, 30, 0.55) 0%,
        rgba(5, 15, 30, 0.45) 50%,
        rgba(5, 15, 30, 0.65) 100%
    );
}


.top-action-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 15px 30px 40px;
    background: linear-gradient(to bottom, rgba(5, 15, 30, 0.95) 0%, rgba(5, 15, 30, 0) 100%);
    border-bottom: none;

}

.top-logo {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
}

.mini-logo {
    height: 44px;
    width: auto;
    filter: drop-shadow(0 0 8px rgba(0,191,255,0.3));
}


.checkout-container {
    max-width: 860px;
    margin: 0 auto;
    padding: 140px 20px 80px;
    display: flex;
    flex-direction: column;
    gap: 60px;
}


.checkout-header {
    text-align: center;
}


.ticket-section {
    display: flex;
    justify-content: center;
}

.ticket-card-3d-wrapper {
    perspective: 1200px;
    width: 100%;
    max-width: 580px;
    cursor: default;
}

.ticket-card-premium {
    position: relative;
    background: rgba(16, 28, 50, 0.82);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border: 1px solid rgba(0, 191, 255, 0.25);
    border-radius: 20px;
    padding: 45px 40px;
    text-align: center;
    box-shadow:
        0 30px 60px rgba(0,0,0,0.5),
        0 0 0 1px rgba(255,255,255,0.05),
        inset 0 1px 0 rgba(255,255,255,0.08);
    transform-style: preserve-3d;
    transition: box-shadow 0.4s ease;
    will-change: transform;
}

.ticket-card-premium:hover {
    box-shadow:
        0 40px 80px rgba(0,0,0,0.6),
        0 0 40px rgba(0,191,255,0.15),
        inset 0 1px 0 rgba(255,255,255,0.1);
}

.ticket-ribbon {
    position: absolute;
    top: -1px;
    right: 28px;
    background: linear-gradient(135deg, var(--primary-blue), #0077aa);
    color: #fff;
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 2px;
    padding: 6px 18px;
    border-radius: 0 0 10px 10px;
    box-shadow: 0 4px 12px rgba(0,191,255,0.4);
}

.ticket-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 26px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 18px;
    line-height: 1.2;
}

.ticket-promo-text {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.5px;
    margin-bottom: 20px;
}

.arrow-right {
    color: var(--primary-green);
}

.ticket-price-box {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 18px;
    margin-bottom: 20px;
}

.price-strike {
    font-size: 28px;
    font-weight: 700;
    color: rgba(255,255,255,0.35);
    text-decoration: line-through;
}

.price-current {
    font-size: 64px;
    font-weight: 800;
    font-family: 'Bebas Neue', sans-serif;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #00bfff, #2ecc71);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    text-shadow: none;
    filter: drop-shadow(0 0 12px rgba(0,191,255,0.35));
}

.ticket-divider {
    border: none;
    height: 1px;
    background: linear-gradient(to right, transparent, rgba(255,255,255,0.15), transparent);
    margin: 20px 0;
}

.ticket-features {
    list-style: none;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.ticket-features li {
    font-size: 13px;
    font-weight: 600;
    color: rgba(255,255,255,0.8);
    letter-spacing: 0.5px;
}

.ticket-footer-text {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    line-height: 1.6;
    margin-top: 10px;
}


.alerts-section {
    background: rgba(0, 191, 255, 0.06);
    border: 1px solid rgba(0, 191, 255, 0.15);
    border-radius: 14px;
    padding: 35px 40px;
}

.alert-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 22px;
    letter-spacing: 2px;
    color: var(--primary-blue);
    margin-bottom: 12px;
}

.alert-desc {
    font-size: 14px;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
}


.accommodation-section {
    width: 100%;
}

.premium-glass-panel {
    background: rgba(16, 28, 50, 0.75);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.4);
}

.panel-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 12px;
    text-align: center;
}

.panel-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.65);
    text-align: center;
    margin-bottom: 25px;
    line-height: 1.6;
}

.acc-list {
    list-style: none;
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.acc-list li {
    font-size: 14px;
    color: rgba(255,255,255,0.8);
    line-height: 1.5;
}

.acc-note {
    font-size: 12px;
    color: rgba(255,255,255,0.45);
    margin-bottom: 25px;
    font-style: italic;
}

.btn-container {
    text-align: center;
}


.policy-section {
    width: 100%;
}

.policy-container {
    display: flex;
    gap: 0;
    min-height: 260px;
}

.policy-tabs {
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 0 0 200px;
    border-right: 1px solid rgba(255,255,255,0.08);
    padding-right: 0;
}

.policy-tab {
    background: transparent;
    border: none;
    border-left: 3px solid transparent;
    color: rgba(255,255,255,0.5);
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    text-align: left;
    padding: 18px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.policy-tab:hover {
    color: rgba(255,255,255,0.85);
    background: rgba(255,255,255,0.04);
}

.policy-tab.active {
    color: var(--primary-blue);
    border-left-color: var(--primary-blue);
    background: rgba(0,191,255,0.06);
}

.policy-content {
    flex: 1;
    padding: 25px 30px;
}

.policy-content-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 24px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 20px;
}

.tab-pane {
    display: none;
    animation: fadeTabIn 0.35s ease;
}

.tab-pane.active {
    display: block;
}

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

.policy-intro {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--primary-blue);
    margin-bottom: 15px;
    text-transform: uppercase;
}

.policy-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.policy-list li {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.6;
    padding-left: 8px;
    border-left: 2px solid rgba(0,191,255,0.2);
    transition: border-color 0.2s ease, color 0.2s ease;
}

.policy-list li:hover {
    border-left-color: var(--primary-blue);
    color: #fff;
}


.support-footer {
    text-align: center;
    padding-bottom: 20px;
}

.support-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 28px;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 8px;
}

.support-subtitle {
    font-size: 14px;
    color: rgba(255,255,255,0.55);
    margin-bottom: 30px;
}

.support-links {
    display: flex;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
}

.support-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #fff;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 25px 35px;
    transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
    min-width: 180px;
}

.support-item:hover {
    transform: translateY(-4px);
    background: rgba(0,191,255,0.08);
    border-color: rgba(0,191,255,0.25);
}

.support-icon {
    width: 32px;
    height: 32px;
    margin-bottom: 10px;
    color: var(--primary-blue);
}

.support-label {
    font-family: 'Montserrat', sans-serif;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 5px;
}

.support-value {
    font-size: 12px;
    color: #d1d5db;
}


.checkout-fade-up {
    
}


@media (max-width: 768px) {
    .top-action-bar {
        padding: 10px 15px;
    }

    .checkout-container {
        padding: 120px 16px 60px;
        gap: 40px;
    }

    .ticket-card-premium {
        padding: 35px 24px;
    }

    .price-current {
        font-size: 52px;
    }

    .policy-container {
        flex-direction: column;
    }

    .policy-tabs {
        flex-direction: row;
        flex: none;
        overflow-x: auto;
        border-right: none;
        border-bottom: 1px solid rgba(255,255,255,0.08);
    }

    .policy-tab {
        padding: 14px 16px;
        white-space: nowrap;
        border-left: none;
        border-bottom: 3px solid transparent;
        font-size: 11px;
    }

    .policy-tab.active {
        border-left-color: transparent;
        border-bottom-color: var(--primary-blue);
    }

    .policy-content {
        padding: 20px;
    }

    .support-links {
        flex-direction: column;
        align-items: center;
        gap: 16px;
    }

    .support-item {
        width: 100%;
        max-width: 320px;
    }
}