
/* PMW Fest Hero Section Styles */
.pmw-fest-hero-main-container {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: max-content;
    background: linear-gradient(135deg, #000000 0%, #1a1a1a 25%, #2d2d2d 50%, #1a1a1a 75%, #000000 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    overflow: hidden;
    color: white;
    font-family: 'Montserrat', sans-serif;
    padding: 60px 0;
}

.pmw-fest-hero-main-container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1;
    pointer-events: none;
}

.pmw-fest-hero-background-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
    opacity: 0.4;
    pointer-events: none;
}

/* Flowing Water Background Effects - UNCHANGED */
.pmw-fest-hero-water-flow-layer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
}

.pmw-fest-hero-water-wave-one {
    position: absolute;
    bottom: -50px;
    left: -100%;
    width: 300%;
    height: 200px;
    animation: pmw-fest-water-flow-one 20s ease-in-out infinite;
    opacity: 0.6;
}

.pmw-fest-hero-water-wave-two {
    position: absolute;
    bottom: -80px;
    right: -100%;
    width: 300%;
    height: 320px;
    animation: pmw-fest-water-flow-two 25s ease-in-out infinite reverse;
    opacity: 0.4;
}

/* Water Spewing Effects - UNCHANGED */
.pmw-fest-hero-water-spew-container {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 2;
    pointer-events: none;
}

.pmw-fest-hero-water-spew-left,
.pmw-fest-hero-water-spew-right {
    position: absolute;
    width: 200px;
    height: 300px;
    background: radial-gradient(ellipse at center bottom, rgba(77, 166, 255, 0.7) 0%, rgba(77, 166, 255, 0.4) 40%, transparent 70%);
    border-radius: 50% 50% 0 0;
    filter: blur(3px);
}

.pmw-fest-hero-water-spew-left {
    bottom: 0;
    left: 10%;
    animation: pmw-fest-water-spew-left-animation 8s ease-in-out infinite;
    transform-origin: center bottom;
}

.pmw-fest-hero-water-spew-right {
    bottom: 0;
    right: 10%;
    animation: pmw-fest-water-spew-right-animation 10s ease-in-out infinite;
    transform-origin: center bottom;
}

/* Main Content Wrapper */
.pmw-fest-hero-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    width: 100%;
    padding: 30px 40px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pmw-fest-hero-left-column {
    flex: 1;
    display: flex;
    justify-content: flex-end;
}

.pmw-fest-hero-right-column {
    display: flex;
    flex-direction: column;
    text-align: left;
}

.pmw-fest-hero-logo-image {
    width: 600px;
    height: auto;
}

.pmw-fest-hero-title-content {
    text-align: left;
}

.pmw-fest-hero-festival-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 5rem;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    margin: 0 0 15px 0;
}

.pmw-fest-hero-title-line-one {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 1em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.pmw-fest-hero-title-line-two {
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pmw-fest-title-gradient 8s ease-in-out infinite;
    font-size: 1.2em;
    text-shadow: 0 0 50px rgba(255, 107, 53, 0.6);
}

.pmw-fest-hero-title-line-three {
    background: linear-gradient(45deg, #ffffff, #f0f0f0);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-size: 0.8em;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.pmw-fest-hero-festival-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    opacity: 0.9;
    color: #cccccc;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}
.pmw-fest-hero-festival-description {
    font-size: 1.4rem;
    font-weight: 300;
    opacity: 0.9;
    color: #cccccc;
    max-width: 600px;
    line-height: 1.6;
    margin: 0;
}


.pmw-fest-hero-card-header {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.pmw-fest-hero-card-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: white;
    transition: all 0.3s ease;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.3);
}

.pmw-fest-hero-info-card:hover .pmw-fest-hero-card-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(45deg, #ffa500, #ffd700);
    box-shadow: 0 12px 25px rgba(255, 165, 0, 0.5);
}

.pmw-fest-hero-card-label {
    font-size: 0.85rem;
    color: #ffa500;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    font-weight: 600;
}

.pmw-fest-hero-card-content {
    text-align: center;
}

.pmw-fest-hero-card-value {
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    line-height: 1.3;
}

/* Countdown Section */
.pmw-fest-hero-countdown-section {
    position: relative;
    z-index: 10;
    width: 100%;
    display: flex;
    justify-content: center;
    margin-top: 60px;
}

.pmw-fest-hero-countdown-container {
    background: rgba(0, 0, 0, 0.85);
    border: 3px solid #ff6b35;
    border-radius: 30px;
    padding: 50px 40px;
    backdrop-filter: blur(20px);
    box-shadow: 
        0 0 60px rgba(255, 107, 53, 0.4),
        inset 0 0 30px rgba(255, 107, 53, 0.1);
    transition: all 0.4s ease;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    overflow: hidden;
}

.pmw-fest-hero-countdown-container:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pmw-fest-countdown-glow 8s ease-in-out infinite;
}

.pmw-fest-hero-countdown-container:hover {
    transform: translateY(-5px);
    box-shadow: 
        0 0 80px rgba(255, 107, 53, 0.6),
        inset 0 0 40px rgba(255, 107, 53, 0.2);
    border-color: #ffa500;
}

.pmw-fest-hero-countdown-title {
    font-size: 1.6rem;
    color: #ffa500;
    margin-bottom: 30px;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 700;
    position: relative;
    z-index: 2;
}

.pmw-fest-hero-countdown-display {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 25px;
    flex-wrap: nowrap;
    position: relative;
    z-index: 2;
}

.pmw-fest-hero-countdown-unit {
    text-align: center;
    min-width: 90px;
    transition: all 0.3s ease;
}

.pmw-fest-hero-countdown-unit:hover {
    transform: scale(1.05);
}

.pmw-fest-hero-countdown-number {
    display: block;
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 0 25px rgba(255, 107, 53, 0.8);
    transition: all 0.1s ease;
    letter-spacing: 2px;
}

.pmw-fest-hero-countdown-label {
    font-size: 0.9rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-top: 8px;
    display: block;
    font-weight: 500;
}

.pmw-fest-hero-countdown-separator {
    font-family: 'Bebas Neue', cursive;
    font-size: 3rem;
    color: #ffa500;
    font-weight: 400;
    animation: pmw-fest-separator-blink 2s ease-in-out infinite;
}

/* Attendance Section */
.pmw-fest-hero-attendance-section {
    margin: 45px 0;
}

.pmw-fest-hero-attendance-highlight {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    padding: 25px 60px;
    font-size: 1.2rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 2px;
    border-radius: 50px;
    background: linear-gradient(135deg, #ff6b35, #ffa500, #ffe259);
    background-size: 400% 400%;
    color: #fff;
    z-index: 1;
    box-shadow:
        0 0 0 4px rgba(255, 107, 53, 0.2),
        0 0 30px rgba(255, 107, 53, 0.5),
        0 15px 30px rgba(0, 0, 0, 0.3);
    animation: pmw-fest-gradient-flow 6s ease infinite;
    overflow: hidden;
    isolation: isolate;
    cursor: default;
    transition: all 0.3s ease;
}

.pmw-fest-hero-attendance-highlight:hover {
    transform: scale(1.05);
    box-shadow:
        0 0 0 6px rgba(255, 107, 53, 0.3),
        0 0 40px rgba(255, 107, 53, 0.7),
        0 20px 40px rgba(0, 0, 0, 0.4);
}

.pmw-fest-hero-attendance-highlight::before {
    content: "";
    position: absolute;
    inset: -20px;
    border-radius: 50px;
    background: radial-gradient(circle, rgba(255,107,53,0.3) 0%, transparent 70%);
    z-index: -1;
    animation: pmw-fest-glow-pulse 4s ease-in-out infinite;
}

.pmw-fest-hero-attendance-highlight::after {
    content: "";
    position: absolute;
    top: 0;
    left: -75%;
    height: 100%;
    width: 50%;
    background: linear-gradient(120deg, rgba(255,255,255,0.4), rgba(255,255,255,0));
    transform: skewX(-20deg);
    z-index: 0;
    animation: pmw-fest-shine 5s infinite;
}

.pmw-fest-hero-attendance-highlight i {
    font-size: 1.5rem;
    filter: drop-shadow(0 0 3px rgba(255,255,255,0.8));
}

/* Action Section */
.pmw-fest-hero-action-section {
    width: 100%;
    z-index: 2;
}

.pmw-fest-hero-action-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.pmw-fest-hero-tickets-button {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 22px 50px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    border: none;
}

.pmw-fest-hero-tickets-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pmw-fest-hero-tickets-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ffa500, #ffd700);
}

.pmw-fest-hero-tickets-button:hover:before {
    left: 100%;
}

.pmw-fest-hero-scroll-button {
    background: transparent;
    color: white;
    border: 3px solid #ffffff;
    padding: 22px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pmw-fest-hero-scroll-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: white;
    transition: width 0.4s ease;
    z-index: -1;
}

.pmw-fest-hero-scroll-button:hover {
    color: #000000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(255, 255, 255, 0.3);
}

.pmw-fest-hero-scroll-button:hover:before {
    width: 100%;
}

.pmw-fest-hero-scroll-button i {
    animation: pmw-fest-scroll-bounce 2s ease-in-out infinite;
}

.pmw-fest-hero-faq-button {
    background: transparent;
    color: #ffa500;
    border: 3px solid #ffa500;
    padding: 22px 40px;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 15px;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.pmw-fest-hero-faq-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: #ffa500;
    transition: width 0.4s ease;
    z-index: -1;
}

.pmw-fest-hero-faq-button:hover {
    color: #000000;
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 35px rgba(255, 165, 0, 0.3);
}

.pmw-fest-hero-faq-button:hover:before {
    width: 100%;
}

/* Keyframe Animations - Water Effects UNCHANGED */
@keyframes pmw-fest-water-flow-one {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(30px) translateY(-15px); }
    50% { transform: translateX(-20px) translateY(10px); }
    75% { transform: translateX(25px) translateY(-8px); }
}

@keyframes pmw-fest-water-flow-two {
    0%, 100% { transform: translateX(0) translateY(0); }
    30% { transform: translateX(-40px) translateY(20px); }
    60% { transform: translateX(35px) translateY(-12px); }
    90% { transform: translateX(-25px) translateY(8px); }
}

@keyframes pmw-fest-water-spew-left-animation {
    0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.4; }
    25% { transform: scaleY(1.3) scaleX(0.8); opacity: 0.6; }
    50% { transform: scaleY(0.7) scaleX(1.2); opacity: 0.5; }
    75% { transform: scaleY(1.1) scaleX(0.9); opacity: 0.7; }
}

@keyframes pmw-fest-water-spew-right-animation {
    0%, 100% { transform: scaleY(1) scaleX(1); opacity: 0.4; }
    20% { transform: scaleY(0.8) scaleX(1.1); opacity: 0.6; }
    40% { transform: scaleY(1.2) scaleX(0.9); opacity: 0.5; }
    60% { transform: scaleY(0.9) scaleX(1.1); opacity: 0.7; }
    80% { transform: scaleY(1.1) scaleX(0.8); opacity: 0.6; }
}

/* New/Improved Animations */
@keyframes pmw-fest-title-gradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
}

@keyframes pmw-fest-countdown-glow {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes pmw-fest-separator-blink {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes pmw-fest-gradient-flow {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 25% 75%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 75% 25%; }
}

@keyframes pmw-fest-glow-pulse {
    0%, 100% { transform: scale(1); opacity: 0.3; }
    50% { transform: scale(1.2); opacity: 0.6; }
}

@keyframes pmw-fest-shine {
    0% { left: -75%; }
    100% { left: 125%; }
}

@keyframes pmw-fest-scroll-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(8px); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pmw-fest-hero-content-wrapper {
        max-width: 1000px;
        padding: 0 30px;
    }

    .pmw-fest-hero-festival-title {
        font-size: 5rem;
        letter-spacing: 6px;
    }

    .pmw-fest-hero-event-info-cards {
        grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
        gap: 20px;
    }
}

@media (max-width: 968px) {
    .pmw-fest-hero-content-wrapper {
        padding: 0 25px;
        gap: 50px;
    }

    .pmw-fest-hero-festival-title {
        font-size: 4.5rem;
        letter-spacing: 4px;
    }

    .pmw-fest-hero-event-info-cards {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .pmw-fest-hero-countdown-container {
        padding: 40px 30px;
    }

    .pmw-fest-hero-countdown-display {
        gap: 0;
        align-items: flex-start;
    }

    .pmw-fest-hero-countdown-number {
        font-size: 3.5rem;
    }
}

@media (max-width: 768px) {
    .pmw-fest-hero-main-container {
        padding: 40px 0;
    }

    .pmw-fest-hero-content-wrapper {
        flex-direction: column;
        align-items: center;
        padding: 0 20px;
        gap: 40px;
    }

    .pmw-fest-hero-right-column {
        text-align: center;
    }

    .pmw-fest-hero-logo-image {
        max-width: 150px;
    }

    .pmw-fest-hero-festival-title {
        font-size: 3.5rem;
        letter-spacing: 3px;
    }

    .pmw-fest-hero-festival-subtitle {
        font-size: 1.2rem;
    }

    .pmw-fest-hero-event-info-cards {
        grid-template-columns: 1fr;
        gap: 15px;
        max-width: 400px;
    }

    .pmw-fest-hero-info-card {
        padding: 25px 20px;
        width: 100%;
    }

    .pmw-fest-hero-card-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .pmw-fest-hero-countdown-container {
        padding: 35px 25px;
    }

    .pmw-fest-hero-countdown-number {
        font-size: 3rem;
    }

    .pmw-fest-hero-countdown-unit {
        min-width: 70px;
    }

    .pmw-fest-hero-attendance-highlight {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

    .pmw-fest-hero-action-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }

    .pmw-fest-hero-tickets-button,
    .pmw-fest-hero-scroll-button {
        padding: 20px 40px;
        font-size: 1.1rem;
    }

    .pmw-fest-hero-water-spew-left,
    .pmw-fest-hero-water-spew-right {
        width: 150px;
        height: 200px;
    }
}

@media (max-width: 480px) {
    .pmw-fest-hero-content-wrapper {
        padding: 0 15px;
        gap: 35px;
    }

    .pmw-fest-hero-logo-image {
        max-width: 120px;
    }

    .pmw-fest-hero-festival-title {
        font-size: 2.8rem;
        letter-spacing: 2px;
    }

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

    .pmw-fest-hero-countdown-container {
        padding: 15px 8px;
    }

    .pmw-fest-hero-countdown-number {
        font-size: 2.5rem;
    }

    .pmw-fest-hero-countdown-unit {
        min-width: 60px;
    }

    .pmw-fest-hero-countdown-separator {
        align-items: flex-start;
        font-size: 2.5rem;
    }

    .pmw-fest-hero-attendance-highlight {
        padding: 18px 35px;
        font-size: 1rem;
        letter-spacing: 1.5px;
    }

    .pmw-fest-hero-tickets-button,
    .pmw-fest-hero-scroll-button {
        padding: 18px 35px;
        font-size: 1rem;
    }

    .pmw-fest-hero-water-spew-left,
    .pmw-fest-hero-water-spew-right {
        width: 120px;
        height: 160px;
    }
}




/* PMW Fest About Section */
.pmw-fest-about-main-container {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 0 0 100px 0;
    overflow: hidden;
}

/* Caribbean Wave Separator */
.pmw-fest-about-wave-separator {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.pmw-fest-about-wave-svg {
    width: 100%;
    height: 100%;
    animation: pmw-fest-about-wave-flow 15s ease-in-out infinite;
}

/* Floating Caribbean Elements */
.pmw-fest-about-caribbean-elements {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    z-index: 1;
    pointer-events: none;
}

.pmw-fest-about-palm-tree-element {
    position: absolute;
    width: 150px;
    height: 200px;
    opacity: 0.2;
    animation: pmw-fest-about-palm-sway 12s ease-in-out infinite;
}

.pmw-fest-about-palm-left {
    top: 20%;
    left: 5%;
    animation-delay: 0s;
}

.pmw-fest-about-palm-right {
    top: 60%;
    right: 5%;
    animation-delay: 6s;
    transform: scaleX(-1);
}

/* Content Wrapper */
.pmw-fest-about-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 40px 0;
}

/* Story Section */
.pmw-fest-about-story-section {
    margin-bottom: 120px;
}

.pmw-fest-about-story-header {
    text-align: center;
    margin-bottom: 80px;
}

.pmw-fest-about-section-title {
    font-size: 4rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 4px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pmw-fest-about-title-gradient 8s ease-in-out infinite;
    margin-bottom: 30px;
    transition: all 0.3s ease;
}

.pmw-fest-about-section-title:hover {
    transform: scale(1.02);
    filter: brightness(1.3);
}

.pmw-fest-about-title-wave-underline {
    width: 300px;
    height: 20px;
    margin: 0 auto;
    animation: pmw-fest-about-underline-wave 6s ease-in-out infinite;
}

.pmw-fest-about-story-content-grid {
    display: flex;
    gap: 80px;
    align-items: flex-start;
}

.pmw-fest-about-story-text-column {
    flex: 2;
}

.pmw-fest-about-story-visual-column {
    flex: 1;
}

.pmw-fest-about-story-paragraph {
    margin-bottom: 40px;
    padding: 30px;
    background: rgba(255, 107, 53, 0.05);
    border-left: 5px solid #ff6b35;
    border-radius: 0 20px 20px 0;
    backdrop-filter: blur(10px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.pmw-fest-about-story-paragraph:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 165, 0, 0.1), transparent);
    transition: left 0.8s ease;
}

.pmw-fest-about-story-paragraph:hover {
    transform: translateX(15px);
    background: rgba(255, 107, 53, 0.1);
    border-left-color: #ffa500;
    box-shadow: -10px 0 30px rgba(255, 107, 53, 0.2);
}

.pmw-fest-about-story-paragraph:hover:before {
    left: 100%;
}

.pmw-fest-about-story-paragraph p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin: 0;
}

.pmw-fest-about-highlight-year {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 900;
    font-size: 1.5em;
    animation: pmw-fest-about-year-pulse 3s ease-in-out infinite;
}

/* Experience Showcase */
.pmw-fest-about-experience-showcase {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.pmw-fest-about-experience-item {
    background: rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 25px;
    padding: 30px;
    display: flex;
    align-items: center;
    gap: 25px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pmw-fest-about-experience-item:hover {
    transform: translateY(-10px) scale(1.05);
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.3);
}

.pmw-fest-about-experience-icon {
    min-width: 80px;
    min-height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.3s ease;
}

.pmw-fest-about-experience-item:hover .pmw-fest-about-experience-icon {
    transform: scale(1.2) rotate(10deg);
    background: linear-gradient(45deg, #ffa500, #ffd700);
}

.pmw-fest-about-experience-text h4 {
    font-size: 1.4rem;
    color: #ffa500;
    margin-bottom: 8px;
    font-weight: 700;
}

.pmw-fest-about-experience-text p {
    font-size: 1.1rem;
    color: #cccccc;
    margin: 0;
}

/* Reviews Section */
.pmw-fest-about-reviews-section {
    background: rgba(255, 107, 53, 0.03);
    border: 2px solid rgba(255, 107, 53, 0.2);
    border-radius: 30px;
    padding: 60px 50px;
    margin-bottom: 120px;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.pmw-fest-about-reviews-section:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    animation: pmw-fest-about-reviews-glow 10s ease-in-out infinite;
}

.pmw-fest-about-reviews-header {
    text-align: center;
    margin-bottom: 50px;
    position: relative;
    z-index: 2;
}

.pmw-fest-about-reviews-title {
    font-size: 2.8rem;
    font-weight: 800;
    color: #ffa500;
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pmw-fest-about-star-rating-display {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 2rem;
}

.pmw-fest-about-star-icon {
    color: #ffd700;
    animation: pmw-fest-about-star-twinkle 2s ease-in-out infinite;
}

.pmw-fest-about-star-icon:nth-child(1) { animation-delay: 0s; }
.pmw-fest-about-star-icon:nth-child(2) { animation-delay: 0.2s; }
.pmw-fest-about-star-icon:nth-child(3) { animation-delay: 0.4s; }
.pmw-fest-about-star-icon:nth-child(4) { animation-delay: 0.6s; }
.pmw-fest-about-star-icon:nth-child(5) { animation-delay: 0.8s; }

.pmw-fest-about-rating-text {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ffd700;
    margin-left: 15px;
}

.pmw-fest-about-reviews-content-grid {
    display: flex;
    gap: 60px;
    align-items: flex-start;
}

.pmw-fest-about-reviews-carousel-column {
    flex: 1;
}

.pmw-fest-about-reviews-image-container {
    position: relative;
    display: flex;
    justify-content: center;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.pmw-fest-about-reviews-image-container:hover {
    transform: scale(1.05) rotate(2deg);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.5);
}

.pmw-fest-about-reviews-image {
    height: 400px;
    object-fit: contain;
    transition: all 0.4s ease;
}

.pmw-fest-about-image-overlay-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.2), rgba(255, 165, 0, 0.1));
    transition: all 0.4s ease;
}

.pmw-fest-about-reviews-image-container:hover .pmw-fest-about-image-overlay-effect {
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), transparent);
}

.pmw-fest-about-image-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.pmw-fest-about-floating-star {
    position: absolute;
    width: 20px;
    height: 20px;
    background: #ffd700;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation: pmw-fest-about-star-float 6s ease-in-out infinite;
}

.pmw-fest-about-floating-star:nth-child(1) {
    top: 20%;
    left: 15%;
    animation-delay: 0s;
}

.pmw-fest-about-floating-star:nth-child(2) {
    top: 70%;
    right: 20%;
    animation-delay: 2s;
}

.pmw-fest-about-floating-star:nth-child(3) {
    bottom: 30%;
    left: 70%;
    animation-delay: 4s;
}

@keyframes pmw-fest-about-star-float {
    0%, 100% { transform: translateY(0) rotate(0deg); opacity: 0.6; }
    50% { transform: translateY(-20px) rotate(180deg); opacity: 1; }
}

/* Reviews Carousel */
.pmw-fest-about-reviews-carousel {
    position: relative;
    height: 400px;
    margin-bottom: 40px;
    overflow: hidden;
}

.pmw-fest-about-review-card {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    border: 2px solid rgba(255, 165, 0, 0.4);
    border-radius: 25px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    opacity: 0;
    transform: translateX(100px);
    transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.pmw-fest-about-review-card.pmw-fest-about-review-active {
    opacity: 1;
    transform: translateX(0);
}

.pmw-fest-about-review-content p {
    font-size: 1.4rem;
    line-height: 1.8;
    color: #e0e0e0;
    font-style: italic;
    text-align: center;
    margin: 0;
    position: relative;
}

.pmw-fest-about-review-content p:before,
.pmw-fest-about-review-content p:after {
    content: '"';
    font-size: 3rem;
    color: #ff6b35;
    font-weight: bold;
    position: absolute;
    top: -10px;
}

.pmw-fest-about-review-content p:before {
    left: -30px;
}

.pmw-fest-about-review-content p:after {
    right: -30px;
}

.pmw-fest-about-review-author {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-top: 30px;
}

.pmw-fest-about-author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}

.pmw-fest-about-author-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: #ffa500;
    display: block;
    margin-bottom: 5px;
}

.pmw-fest-about-author-stars {
    font-size: 1rem;
    color: #ffd700;
}

/* View All Reviews Button */
.pmw-fest-about-view-all-reviews-button {
    display: inline-flex;
    align-items: center;
    gap: 15px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 20px 40px;
    border-radius: 50px;
    font-size: 1.3rem;
    font-weight: 700;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 107, 53, 0.4);
    margin: 0 auto;
    z-index: 2;
}

.pmw-fest-about-view-all-reviews-button:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 20px 40px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ffa500, #ffd700);
}

.pmw-fest-about-button-wave-effect {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pmw-fest-about-view-all-reviews-button:hover .pmw-fest-about-button-wave-effect {
    left: 100%;
}

/* MOBILE RESPONSIVE FIXES */
@media (max-width: 1024px) {
    .pmw-fest-about-reviews-content-grid {
        flex-direction: column;
        gap: 40px;
    }

    .pmw-fest-about-reviews-image-column,
    .pmw-fest-about-reviews-carousel-column {
        flex: none;
        width: 100%;
    }

    .pmw-fest-about-reviews-image {
        height: 300px;
    }
}

@media (max-width: 768px) {
    .pmw-fest-about-reviews-section {
        padding: 20px 5px;
        margin-bottom: 80px;
    }

    .pmw-fest-about-reviews-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .pmw-fest-about-star-rating-display {
        font-size: 1.5rem;
        gap: 8px;
    }

    .pmw-fest-about-rating-text {
        font-size: 2rem;
        margin-left: 10px;
    }

    .pmw-fest-about-reviews-content-grid {
        gap: 30px;
    }

    .pmw-fest-about-reviews-image {
        height: 250px;
    }

    .pmw-fest-about-reviews-carousel {
        height: 300px; /* Increased for mobile content */
    }

    .pmw-fest-about-review-card {
        padding: 30px 25px;
    }

    .pmw-fest-about-review-content p {
        font-size: 1.2rem;
        line-height: 1.6;
    }

    .pmw-fest-about-review-content p:before,
    .pmw-fest-about-review-content p:after {
        font-size: 2rem;
        top: -5px;
    }

    .pmw-fest-about-review-content p:before {
        left: -20px;
    }

    .pmw-fest-about-review-content p:after {
        right: -20px;
    }

    .pmw-fest-about-author-avatar {
        width: 50px;
        height: 50px;
        font-size: 1.2rem;
    }

    .pmw-fest-about-author-name {
        font-size: 1.1rem;
    }

    .pmw-fest-about-view-all-reviews-button {
        padding: 18px 35px;
        font-size: 1.1rem;
        gap: 12px;
    }

    .pmw-fest-about-floating-star {
        width: 15px;
        height: 15px;
    }
}

@media (max-width: 480px) {
    .pmw-fest-about-reviews-section {
        padding: 20px 0;
        border-radius: 20px;
        margin-bottom: 60px;
    }

    .pmw-fest-about-reviews-title {
        font-size: 1.8rem;
    }

    .pmw-fest-about-star-rating-display {
        font-size: 1.3rem;
        gap: 6px;
        flex-wrap: wrap;
    }

    .pmw-fest-about-rating-text {
        font-size: 1.8rem;
        margin-left: 8px;
    }

    .pmw-fest-about-reviews-image {
        height: 200px;
    }

    .pmw-fest-about-reviews-carousel {
        height: 400px; /* Even more height for small screens */
    }

    .pmw-fest-about-review-card {
        padding: 25px 20px;
        border-radius: 20px;
    }

    .pmw-fest-about-review-content p {
        font-size: 1.1rem;
        line-height: 1.5;
    }

    .pmw-fest-about-review-content p:before,
    .pmw-fest-about-review-content p:after {
        font-size: 1.5rem;
        top: 0px;
    }

    .pmw-fest-about-review-content p:before {
        left: -15px;
    }

    .pmw-fest-about-review-content p:after {
        right: -15px;
    }

    .pmw-fest-about-review-author {
        gap: 15px;
        margin-top: 25px;
    }

    .pmw-fest-about-author-avatar {
        width: 45px;
        height: 45px;
        font-size: 1.1rem;
    }

    .pmw-fest-about-author-name {
        font-size: 1rem;
    }

    .pmw-fest-about-author-stars {
        font-size: 0.9rem;
    }

    .pmw-fest-about-view-all-reviews-button {
        padding: 16px 30px;
        font-size: 1rem;
        gap: 10px;
        border-radius: 40px;
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }

    .pmw-fest-about-reviews-header {
        margin-bottom: 40px;
    }

    /* Hide floating stars on very small screens */
    .pmw-fest-about-floating-star {
        display: none;
    }
}

/* Fix for very long review text on mobile */
@media (max-width: 480px) {
    .pmw-fest-about-review-content {
        overflow-y: auto;
        max-height: 200px;
    }
}

/* We Welcome Everyone Section */
.pmw-fest-about-welcome-statement-section {
    position: relative;
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1) 0%, rgba(255, 165, 0, 0.05) 100%);
    border-radius: 40px;
    padding: 80px 60px;
    margin-bottom: 120px;
    overflow: hidden;
    border: 3px solid rgba(255, 107, 53, 0.3);
}

.pmw-fest-about-welcome-background-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0.3;
    z-index: 1;
}

.pmw-fest-about-welcome-content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.pmw-fest-about-welcome-title {
    font-size: 4.5rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700, #ff6b35);
    background-size: 300% 300%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pmw-fest-about-welcome-gradient 10s ease-in-out infinite;
    margin-bottom: 30px;
    text-shadow: 0 0 50px rgba(255, 107, 53, 0.5);
    transition: all 0.3s ease;
}

.pmw-fest-about-welcome-title:hover {
    transform: scale(1.05);
    filter: brightness(1.3);
}

.pmw-fest-about-welcome-subtitle {
    font-size: 2rem;
    color: #e0e0e0;
    margin-bottom: 60px;
    font-style: italic;
    font-weight: 300;
}

.pmw-fest-about-welcome-features-grid {
    display: flex;
    justify-content: center;
    gap: 50px;
    flex-wrap: wrap;
}

.pmw-fest-about-welcome-feature {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
    padding: 30px 25px;
    background: rgba(0, 0, 0, 0.4);
    border: 2px solid rgba(255, 165, 0, 0.3);
    border-radius: 20px;
    min-width: 200px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.pmw-fest-about-welcome-feature:before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 70%);
    transform: scale(0);
    transition: transform 0.6s ease;
}

.pmw-fest-about-welcome-feature:hover {
    transform: translateY(-15px) scale(1.08);
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.3);
}

.pmw-fest-about-welcome-feature:hover:before {
    transform: scale(1);
}

.pmw-fest-about-feature-icon {
    min-width: 80px;
    min-height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
}

.pmw-fest-about-welcome-feature:hover .pmw-fest-about-feature-icon {
    transform: scale(1.2) rotate(15deg);
    background: linear-gradient(45deg, #ffa500, #ffd700);
    box-shadow: 0 15px 35px rgba(255, 165, 0, 0.6);
}

.pmw-fest-about-welcome-feature span {
    font-size: 1.2rem;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    transition: all 0.3s ease;
}

.pmw-fest-about-welcome-feature:hover span {
    color: #ffa500;
    transform: scale(1.05);
}

/* Attendance Section */
.pmw-fest-about-attendance-section {
    text-align: center;
    padding: 60px 40px;
    background: rgba(0, 0, 0, 0.8);
    border-radius: 30px;
    border: 2px solid rgba(255, 107, 53, 0.4);
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
}

.pmw-fest-about-attendance-section:before {
    content: '';
    position: absolute;
    top: -100%;
    left: -100%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.1) 0%, transparent 50%);
    animation: pmw-fest-about-attendance-pulse 8s ease-in-out infinite;
}

.pmw-fest-about-attendance-counter {
    position: relative;
    z-index: 2;
}

.pmw-fest-about-counter-visual {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 30px;
    margin-bottom: 30px;
}

.pmw-fest-about-people-icons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.pmw-fest-about-person-icon {
    font-size: 3rem;
    color: #ffa500;
    animation: pmw-fest-about-people-bounce 3s ease-in-out infinite;
    transition: all 0.3s ease;
}

.pmw-fest-about-person-icon:nth-child(1) { animation-delay: 0s; }
.pmw-fest-about-person-icon:nth-child(2) { animation-delay: 0.2s; }
.pmw-fest-about-person-icon:nth-child(3) { animation-delay: 0.4s; }
.pmw-fest-about-person-icon:nth-child(4) { animation-delay: 0.6s; }
.pmw-fest-about-person-icon:nth-child(5) { animation-delay: 0.8s; }

.pmw-fest-about-person-icon:hover {
    transform: scale(1.3) rotate(10deg);
    color: #ff6b35;
}

.pmw-fest-about-counter-number {
    text-align: center;
}

.pmw-fest-about-attendance-number {
    display: block;
    font-size: 5rem;
    font-weight: 900;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pmw-fest-about-number-gradient 6s ease-in-out infinite;
    text-shadow: 0 0 30px rgba(255, 107, 53, 0.5);
    margin-bottom: 15px;
}

.pmw-fest-about-attendance-label {
    font-size: 1.5rem;
    color: #cccccc;
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 600;
}

.pmw-fest-about-attendance-description {
    font-size: 1.4rem;
    color: #e0e0e0;
    margin: 0;
    font-weight: 300;
    line-height: 1.6;
}

/* Advanced Keyframe Animations */
@keyframes pmw-fest-about-wave-flow {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(20px); }
    50% { transform: translateX(-15px); }
    75% { transform: translateX(10px); }
}

@keyframes pmw-fest-about-palm-sway {
    0%, 100% { transform: rotate(0deg) translateY(0); }
    25% { transform: rotate(3deg) translateY(-10px); }
    50% { transform: rotate(-2deg) translateY(5px); }
    75% { transform: rotate(4deg) translateY(-8px); }
}

@keyframes pmw-fest-about-title-gradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
}

@keyframes pmw-fest-about-underline-wave {
    0%, 100% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-5px) scaleX(1.1); }
}

@keyframes pmw-fest-about-year-pulse {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.1); }
}

@keyframes pmw-fest-about-reviews-glow {
    0%, 100% { transform: rotate(0deg); }
    50% { transform: rotate(180deg); }
}

@keyframes pmw-fest-about-star-twinkle {
    0%, 100% { transform: scale(1) rotate(0deg); opacity: 1; }
    50% { transform: scale(1.2) rotate(10deg); opacity: 0.8; }
}

@keyframes pmw-fest-about-welcome-gradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
}

@keyframes pmw-fest-about-attendance-pulse {
    0%, 100% { transform: scale(1) rotate(0deg); }
    50% { transform: scale(1.1) rotate(180deg); }
}

@keyframes pmw-fest-about-people-bounce {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-15px) scale(1.1); }
}

@keyframes pmw-fest-about-number-gradient {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pmw-fest-about-content-wrapper {
        padding: 150px 30px 0;
    }

    .pmw-fest-about-story-content-grid {
        flex-direction: column;
        gap: 50px;
    }

    .pmw-fest-about-section-title {
        font-size: 3rem;
        letter-spacing: 3px;
        background: linear-gradient(45deg, #ffffff, #e3e3e3, #e3e3e3);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;

    }

    .pmw-fest-about-welcome-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .pmw-fest-about-welcome-features-grid {
        gap: 30px;
    }
}

@media (max-width: 768px) {
    .pmw-fest-about-welcome-statement-section {
        padding: 20px 0;
    }
    .pmw-fest-about-content-wrapper {
        padding: 120px 20px 0;
    }

    .pmw-fest-about-section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .pmw-fest-about-welcome-subtitle {
        font-size: 1.8rem;
    }

    .pmw-fest-about-story-paragraph {
        padding: 25px 20px;
    }

    .pmw-fest-about-story-paragraph p {
        font-size: 1.1rem;
    }

    .pmw-fest-about-welcome-title {
        font-size: 2.8rem;
        letter-spacing: 3px;
    }

    .pmw-fest-about-welcome-features-grid {
        gap: 20px;
    }

    .pmw-fest-about-welcome-feature {
        min-width: 160px;
        padding: 25px 20px;
    }

    .pmw-fest-about-attendance-number {
        font-size: 4rem;
    }

    .pmw-fest-about-palm-tree-element {
        width: 100px;
        height: 150px;
    }

    .pmw-fest-about-reviews-title {
        font-size: 2.2rem;
    }

    .pmw-fest-about-review-card {
        padding: 30px 25px;
    }

    .pmw-fest-about-review-content p {
        font-size: 1.2rem;
    }
}

@media (max-width: 480px) {
    .pmw-fest-about-section-title {
        font-size: 2rem;
        letter-spacing: 1px;
    }

    .pmw-fest-about-welcome-title {
        font-size: 2.2rem;
        letter-spacing: 2px;
    }

    .pmw-fest-about-welcome-features-grid {
        flex-direction: column;
        align-items: center;
    }

    .pmw-fest-about-attendance-number {
        font-size: 3rem;
    }

    .pmw-fest-about-people-icons {
        gap: 15px;
    }

    .pmw-fest-about-person-icon {
        font-size: 2.5rem;
    }
}





/* PMW FEST TICKETS SECTION */
.pmw-fest-tickets-main-container {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 50%, #1a1a1a 100%);
    color: white;
    padding: 0 0 100px 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Wave Transition */
.pmw-fest-tickets-wave-transition {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.pmw-fest-tickets-wave-svg {
    width: 100%;
    height: 100%;
    animation: pmw-fest-tickets-wave-flow 12s ease-in-out infinite;
}

/* Content Wrapper */
.pmw-fest-tickets-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1400px;
    margin: 0 auto;
    padding: 200px 40px 0;
}

/* Section Header */
.pmw-fest-tickets-header-section {
    text-align: center;
    margin-bottom: 100px;
}

.pmw-fest-tickets-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4.5rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 6px;
    background: linear-gradient(45deg, #ff6b35, #ffa500, #ffd700);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: pmw-fest-tickets-title-gradient 8s ease-in-out infinite;
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 107, 53, 0.4);
}

.pmw-fest-tickets-section-subtitle {
    font-size: 1.4rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.pmw-fest-tickets-title-decoration {
    width: 400px;
    height: 30px;
    margin: 0 auto;
    transform: scaleX(-100%);
}

/* Tickets Grid */
.pmw-fest-tickets-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(380px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

/* Ticket Card */
.pmw-fest-ticket-card {
    background: rgba(0, 0, 0, 0.8);
    border: 3px solid rgba(255, 165, 0, 0.3);
    border-radius: 30px;
    padding: 40px 35px;
    position: relative;
    overflow:hidden;
    backdrop-filter: blur(15px);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pmw-fest-ticket-card:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(45deg, rgba(255, 107, 53, 0.1), rgba(255, 165, 0, 0.05));
    transition: left 0.8s ease;
    z-index: 1;
}

.pmw-fest-ticket-card:hover {
    transform: translateY(-15px) scale(1.03);
    border-color: #ff6b35;
    background: rgba(255, 107, 53, 0.1);
    box-shadow: 0 30px 60px rgba(255, 107, 53, 0.4);
}

.pmw-fest-ticket-card:hover:before {
    left: 100%;
}

/* Popular Card Special Styling */
.pmw-fest-general-card {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.05);
    transform: scale(1.05);
}

.pmw-fest-general-card:hover {
    border-color: #ffd700;
    background: rgba(255, 215, 0, 0.15);
    box-shadow: 0 35px 70px rgba(255, 215, 0, 0.5);
}

/* Ticket Badge */
.pmw-fest-ticket-badge {
    position: absolute;
    top: 10px;
    right: 30px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    padding: 8px 25px;
    border-radius: 20px;
    z-index: 5;
    box-shadow: 0 8px 20px rgba(255, 107, 53, 0.4);
    transform: rotate(10deg);
}

.pmw-fest-popular-badge {
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    color: #000;
}

.pmw-fest-late-badge {
    background: linear-gradient(45deg, #e53935, #ff5722);
}

.pmw-fest-ticket-badge-text {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pmw-fest-ticket-badge-accent {
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 8px solid #ff6b35;
}

.pmw-fest-popular-badge .pmw-fest-ticket-badge-accent {
    border-top-color: #ffd700;
}

.pmw-fest-late-badge .pmw-fest-ticket-badge-accent {
    border-top-color: #e53935;
}

/* Ticket Header */
.pmw-fest-ticket-header {
    text-align: center;
    margin-bottom: 30px;
    position: relative;
    z-index: 2;
}

.pmw-fest-ticket-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin: 0 auto 20px;
    box-shadow: 0 10px 25px rgba(255, 107, 53, 0.4);
    transition: all 0.3s ease;
}

.pmw-fest-general-card .pmw-fest-ticket-icon {
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    color: #000;
}

.pmw-fest-late-card .pmw-fest-ticket-icon {
    background: linear-gradient(45deg, #e53935, #ff5722);
}

.pmw-fest-ticket-card:hover .pmw-fest-ticket-icon {
    transform: scale(1.1) rotate(10deg);
}

.pmw-fest-ticket-name {
    font-size: 1.8rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Ticket Price */
.pmw-fest-ticket-price-section {
    text-align: center;
    margin-bottom: 25px;
    position: relative;
    z-index: 2;
}

.pmw-fest-ticket-currency {
    font-size: 1.2rem;
    color: #ffa500;
    font-weight: 600;
    vertical-align: top;
    margin-right: 5px;
}

.pmw-fest-ticket-price {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    color: #ffffff;
    text-shadow: 0 0 20px rgba(255, 107, 53, 0.6);
}

/* Ticket Period */
.pmw-fest-ticket-period {
    text-align: center;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.pmw-fest-ticket-period p {
    margin: 5px 0;
    color: #cccccc;
    font-size: 1rem;
    font-weight: 500;
}

.pmw-fest-ticket-availability {
    color: #ffa500;
    font-style: italic;
    font-size: 0.9rem;
}

/* Ticket Features */
.pmw-fest-ticket-features {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
    position: relative;
    z-index: 2;
}

.pmw-fest-ticket-feature {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 165, 0, 0.2);
    transition: all 0.3s ease;
}

.pmw-fest-ticket-feature:hover {
    transform: translateX(5px);
    color: #ffa500;
}

.pmw-fest-ticket-feature i {
    color: #ff6b35;
    font-size: 1.2rem;
    width: 20px;
    text-align: center;
}

.pmw-fest-ticket-feature span {
    font-size: 1rem;
    color: #e0e0e0;
    font-weight: 500;
}

/* Ticket Button */
.pmw-fest-ticket-button {
    background: linear-gradient(45deg, #ff6b35, #ffa500);
    color: white;
    padding: 18px 40px;
    border-radius: 50px;
    font-size: 1.2rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 15px 30px rgba(255, 107, 53, 0.4);
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: auto;
}

.pmw-fest-ticket-button:before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.6s ease;
}

.pmw-fest-ticket-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 25px 50px rgba(255, 107, 53, 0.6);
    background: linear-gradient(45deg, #ffa500, #ffd700);
}

.pmw-fest-ticket-button:hover:before {
    left: 100%;
}

.pmw-fest-general-button {
    background: linear-gradient(45deg, #ffd700, #ffeb3b);
    color: #000;
    box-shadow: 0 15px 30px rgba(255, 215, 0, 0.4);
}

.pmw-fest-general-button:hover {
    background: linear-gradient(45deg, #ffeb3b, #fff176);
    box-shadow: 0 25px 50px rgba(255, 215, 0, 0.6);
}

.pmw-fest-late-button {
    background: linear-gradient(45deg, #e53935, #ff5722);
    box-shadow: 0 15px 30px rgba(229, 57, 53, 0.4);
}

.pmw-fest-late-button:hover {
    background: linear-gradient(45deg, #ff5722, #ff7043);
    box-shadow: 0 25px 50px rgba(229, 57, 53, 0.6);
}

/* PMW FEST VIDEO RECAP SECTION */
.pmw-fest-video-recap-main-container {
    position: relative;
    width: 100%;
    background: linear-gradient(180deg, #000000 0%, #1a1a1a 50%, #000000 100%);
    color: white;
    padding: 0 0 100px 0;
    overflow: hidden;
    font-family: 'Montserrat', sans-serif;
}

/* Video Wave Separator */
.pmw-fest-video-wave-separator {
    position: absolute;
    top: -1px;
    left: 0;
    width: 100%;
    height: 200px;
    z-index: 2;
}

.pmw-fest-video-wave-svg {
    width: 100%;
    height: 100%;
    animation: pmw-fest-video-wave-flow 15s ease-in-out infinite;
}

/* Video Content Wrapper */
.pmw-fest-video-content-wrapper {
    position: relative;
    z-index: 10;
    max-width: 1200px;
    margin: 0 auto;
    padding: 200px 40px 0;
}

/* Video Section Header */
.pmw-fest-video-header-section {
    text-align: center;
    margin: 80px 0;
}

.pmw-fest-video-section-title {
    font-family: 'Bebas Neue', cursive;
    font-size: 4rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 5px;
    color: #ffffff;
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 255, 255, 0.3);
}

.pmw-fest-video-section-subtitle {
    font-size: 1.3rem;
    color: #cccccc;
    margin-bottom: 30px;
    font-weight: 300;
}

.pmw-fest-video-title-decoration {
    width: 400px;
    height: 30px;
    margin: 0 auto;
    animation: pmw-fest-video-decoration-wave 6s ease-in-out infinite;
}

/* Video Container */
.pmw-fest-video-container {
    display: flex;
    gap: 60px;
    align-items: center;
}

.pmw-fest-video-wrapper {
    flex: 2;
    position: relative;
    border-radius: 25px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(255, 107, 53, 0.3);
    transition: all 0.4s ease;
}

.pmw-fest-video-wrapper:hover {
    transform: scale(1.02);
    box-shadow: 0 30px 70px rgba(255, 107, 53, 0.5);
}

.pmw-fest-video-iframe {
    width: 100%;
    height: 400px;
    border: none;
    display: block;
}

/* Video Overlay Effects */
.pmw-fest-video-overlay-effects {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.pmw-fest-video-glow-effect {
    position: absolute;
    top: -20px;
    left: -20px;
    right: -20px;
    bottom: -20px;
    background: radial-gradient(circle, rgba(255, 107, 53, 0.2) 0%, transparent 70%);
    border-radius: 35px;
    animation: pmw-fest-video-glow-rotate 10s linear infinite;
}

/* Video Description */
.pmw-fest-video-description {
    flex: 1;
    padding-left: 40px;
}

.pmw-fest-video-description-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 25px;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.pmw-fest-video-description-text {
    font-size: 1.2rem;
    line-height: 1.8;
    color: #e0e0e0;
    margin-bottom: 40px;
    font-weight: 300;
}

/* Video Stats */
.pmw-fest-video-stats {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.pmw-fest-video-stat {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 15px 20px;
    background: rgba(255, 107, 53, 0.1);
    border: 2px solid rgba(255, 107, 53, 0.3);
    border-radius: 15px;
    transition: all 0.3s ease;
}

.pmw-fest-video-stat:hover {
    background: rgba(255, 107, 53, 0.2);
    border-color: #ff6b35;
    transform: translateX(10px);
}

.pmw-fest-video-stat i {
    color: #ff6b35;
    font-size: 1.5rem;
    width: 25px;
    text-align: center;
}

.pmw-fest-video-stat span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* Keyframe Animations */
@keyframes pmw-fest-tickets-wave-flow {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(15px); }
    50% { transform: translateX(-10px); }
    75% { transform: translateX(8px); }
}

@keyframes pmw-fest-tickets-title-gradient {
    0%, 100% { background-position: 0% 50%; }
    25% { background-position: 50% 100%; }
    50% { background-position: 100% 50%; }
    75% { background-position: 50% 0%; }
}

@keyframes pmw-fest-video-wave-flow {
    0%, 100% { transform: translateX(0) translateY(0); }
    25% { transform: translateX(20px) translateY(-10px); }
    50% { transform: translateX(-15px) translateY(5px); }
    75% { transform: translateX(12px) translateY(-8px); }
}

@keyframes pmw-fest-video-decoration-wave {
    0%, 100% { transform: translateY(0) scaleX(1); }
    50% { transform: translateY(-5px) scaleX(1.1); }
}

@keyframes pmw-fest-video-play-pulse {
    0%, 100% { transform: translate(-50%, -50%) scale(1); }
    50% { transform: translate(-50%, -50%) scale(1.1); }
}

@keyframes pmw-fest-video-glow-rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Responsive Design */
@media (max-width: 1200px) {
    .pmw-fest-tickets-content-wrapper,
    .pmw-fest-video-content-wrapper {
        padding-left: 30px;
        padding-right: 30px;
    }

    .pmw-fest-tickets-grid {
        grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
        gap: 35px;
    }

    .pmw-fest-video-container {
        gap: 40px;
    }
}

@media (max-width: 968px) {
    .pmw-fest-tickets-content-wrapper,
    .pmw-fest-video-content-wrapper {
        padding-left: 25px;
        padding-right: 25px;
        padding-top: 150px;
    }

    .pmw-fest-tickets-section-title,
    .pmw-fest-video-section-title {
        font-size: 3.5rem;
        letter-spacing: 4px;
    }

    .pmw-fest-tickets-grid {
        grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
        gap: 30px;
    }

    .pmw-fest-general-card {
        transform: none;
    }

    .pmw-fest-video-container {
        flex-direction: column;
        gap: 50px;
    }

    .pmw-fest-video-description {
        padding-left: 0;
        text-align: center;
    }

    .pmw-fest-video-stats {
        flex-direction: row;
        justify-content: center;
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    .pmw-fest-tickets-content-wrapper,
    .pmw-fest-video-content-wrapper {
        padding-left: 20px;
        padding-right: 20px;
        padding-top: 120px;
    }

    .pmw-fest-tickets-section-title,
    .pmw-fest-video-section-title {
        font-size: 3rem;
        letter-spacing: 3px;
    }

    .pmw-fest-tickets-section-subtitle,
    .pmw-fest-video-section-subtitle {
        font-size: 1.2rem;
    }

    .pmw-fest-tickets-grid {
        grid-template-columns: 1fr;
        gap: 25px;
        max-width: 500px;
        margin: 0 auto;
    }

    .pmw-fest-ticket-card {
        padding: 35px 30px;
    }

    .pmw-fest-ticket-icon {
        width: 70px;
        height: 70px;
        font-size: 2rem;
    }

    .pmw-fest-ticket-name {
        font-size: 1.6rem;
    }

    .pmw-fest-ticket-price {
        font-size: 3.5rem;
    }

    .pmw-fest-video-iframe {
        height: 300px;
    }

    .pmw-fest-video-description-title {
        font-size: 2rem;
    }

    .pmw-fest-video-description-text {
        font-size: 1.1rem;
    }

    .pmw-fest-video-stats {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .pmw-fest-tickets-content-wrapper,
    .pmw-fest-video-content-wrapper {
        padding-left: 15px;
        padding-right: 15px;
        padding-top: 100px;
    }

    .pmw-fest-tickets-section-title,
    .pmw-fest-video-section-title {
        font-size: 2.5rem;
        letter-spacing: 2px;
    }

    .pmw-fest-tickets-grid {
        max-width: 100%;
    }

    .pmw-fest-ticket-card {
        padding: 30px 25px;
    }

    .pmw-fest-ticket-badge {
        right: 10px;
    }

    .pmw-fest-ticket-badge-text {
        font-size: 0.75rem;
    }

    .pmw-fest-ticket-icon {
        width: 60px;
        height: 60px;
        font-size: 1.8rem;
    }

    .pmw-fest-ticket-name {
        font-size: 1.4rem;
    }

    .pmw-fest-ticket-price {
        font-size: 3rem;
    }

    .pmw-fest-ticket-button {
        padding: 16px 35px;
        font-size: 1.1rem;
    }

    .pmw-fest-video-iframe {
        height: 250px;
    }

    .pmw-fest-video-description-title {
        font-size: 1.8rem;
    }

    .pmw-fest-video-play-indicator {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}