﻿:root {
    --primary-color: #ff6b35;
    --secondary-color: #00d4ff;
    --accent-color: #ff0080;
    --dark-overlay: rgba(0, 0, 0, 0.7);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
    background: #0a0a0a;
}

.hero-section {
    min-height: 100vh;
    /*background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('https://media.istockphoto.com/id/611607148/photo/dj-console-desk-at-nightclub.jpg?s=612x612&w=0&k=20&c=2mlEWzTzaXj7hll3aYQdiyMLWizwFnBsZE3gIHoh3dQ=') no-repeat center center/cover;*/
    /*background: linear-gradient(var(--dark-overlay), var(--dark-overlay)), url('/images/turntables.jpg') no-repeat center center/cover;*/
    background: linear-gradient(var(--dark-overlay), var(--dark-overlay)) center center / cover no-repeat, url('/images/turntables.jpg') center center / cover no-repeat;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 5rem 0;
}

.hero-content {
    text-align: center;
    color: white;
    z-index: 2;
    position: relative;
}

.hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 4rem;
    font-weight: 900;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.5);
    animation: glow 2s ease-in-out infinite alternate;
}

@keyframes glow {
    from {
        filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.5));
    }

    to {
        filter: drop-shadow(0 0 30px rgba(0, 212, 255, 0.8));
    }
}

.hero-subtitle {
    font-size: 1.8rem;
    font-weight: 300;
    margin-bottom: 2rem;
    color: #e0e0e0;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.8);
    animation: fadeInUp 1s ease-out 0.5s both;
}

.hero-description {
    font-size: 1.2rem;
    margin-bottom: 3rem;
    color: #b0b0b0;
    animation: fadeInUp 1s ease-out 1s both;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-section {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 20px;
    padding: 2rem;
    margin-top: 2rem;
    animation: slideInUp 1s ease-out 1.5s both;
}

/* Song Request Button */
.request-button-container {
    animation: slideInUp 1s ease-out 1.2s both;
}

.request-song-btn {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    text-decoration: none;
    padding: 1.2rem 3rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1.3rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(255, 0, 128, 0.3);
    border: 2px solid transparent;
}

    .request-song-btn::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
        transition: left 0.6s ease;
    }

    .request-song-btn:hover::before {
        left: 100%;
    }

    .request-song-btn:hover {
        color: white;
        transform: translateY(-5px) scale(1.05);
        box-shadow: 0 20px 40px rgba(255, 0, 128, 0.5);
        border-color: rgba(255, 255, 255, 0.3);
    }

    .request-song-btn:active {
        transform: translateY(-2px) scale(1.02);
    }

.request-subtitle {
    color: #b0b0b0;
    font-size: 1rem;
    font-style: italic;
    animation: fadeInUp 1s ease-out 1.4s both;
}

@keyframes slideInUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.contact-link {
    color: var(--secondary-color);
    text-decoration: none;
    font-weight: 500;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    position: relative;
}

    .contact-link:hover {
        color: var(--accent-color);
        transform: scale(1.05);
    }

    .contact-link::after {
        content: '';
        position: absolute;
        bottom: -2px;
        left: 0;
        width: 0;
        height: 2px;
        background: linear-gradient(90deg, var(--primary-color), var(--accent-color));
        transition: width 0.3s ease;
    }

    .contact-link:hover::after {
        width: 100%;
    }

.floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.floating-icon {
    position: absolute;
    color: rgba(255, 255, 255, 0.1);
    animation: float 6s ease-in-out infinite;
}

    .floating-icon:nth-child(1) {
        top: 20%;
        left: 10%;
        font-size: 3rem;
        animation-delay: 0s;
    }

    .floating-icon:nth-child(2) {
        top: 60%;
        right: 15%;
        font-size: 2.5rem;
        animation-delay: 2s;
    }

    .floating-icon:nth-child(3) {
        bottom: 30%;
        left: 20%;
        font-size: 2rem;
        animation-delay: 4s;
    }

    .floating-icon:nth-child(4) {
        top: 30%;
        right: 25%;
        font-size: 2.8rem;
        animation-delay: 1s;
    }

@keyframes float {
    0%, 100% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-20px) rotate(10deg);
    }
}

.social-icons {
    margin-top: 2rem;
}

.social-icon {
    display: inline-block;
    margin: 0 1rem;
    font-size: 2rem;
    color: rgba(255, 255, 255, 0.7);
    transition: all 0.3s ease;
}

    .social-icon:hover {
        color: var(--secondary-color);
        transform: translateY(-5px) scale(1.2);
    }

/* Responsive Design */
@media (max-width: 768px) {
    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.4rem;
    }

    .hero-description {
        font-size: 1rem;
    }

    .contact-section {
        padding: 1.5rem;
        margin: 1rem;
    }

    .floating-icon {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2rem;
    }

    .hero-subtitle {
        font-size: 1.2rem;
    }

    .contact-section {
        padding: 1rem;
    }
}

/* Loading animation */
.loading-bar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    animation: loading 3s ease-in-out;
    z-index: 9999;
}

@keyframes loading {
    0% {
        transform: scaleX(0);
    }

    100% {
        transform: scaleX(1);
    }
}

/* Reviews Section */
.reviews-section {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 30px;
    padding: 3rem 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
    position: relative;
}

.section-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: white;
    animation: fadeInUp 1s ease-out;
}

    .section-title i {
        color: var(--primary-color);
    }

.review-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2rem;
    transition: all 0.4s ease;
    animation: slideInUp 1s ease-out 0.3s both;
    position: relative;
    overflow: hidden;
}

    .review-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 4px;
        background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    }

    .review-card:hover {
        transform: translateY(-10px);
        background: rgba(255, 255, 255, 0.08);
        border-color: rgba(255, 255, 255, 0.2);
        box-shadow: 0 20px 40px rgba(255, 107, 53, 0.2);
    }

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.reviewer-info {
    flex: 1;
}

.reviewer-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.3rem;
}

.event-type {
    color: var(--primary-color);
    font-size: 0.95rem;
    font-weight: 500;
    margin-bottom: 0;
}

.star-rating {
    display: flex;
    gap: 0.3rem;
}

    .star-rating i {
        color: var(--accent-color);
        font-size: 1.2rem;
        animation: starPulse 2s ease-in-out infinite;
    }

        .star-rating i:nth-child(1) {
            animation-delay: 0s;
        }

        .star-rating i:nth-child(2) {
            animation-delay: 0.1s;
        }

        .star-rating i:nth-child(3) {
            animation-delay: 0.2s;
        }

        .star-rating i:nth-child(4) {
            animation-delay: 0.3s;
        }

        .star-rating i:nth-child(5) {
            animation-delay: 0.4s;
        }

@keyframes starPulse {
    0%, 100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.7;
        transform: scale(1.1);
    }
}

.review-body {
    margin-top: 1rem;
}

.review-text {
    color: #e0e0e0;
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1rem;
    font-style: italic;
}

    .review-text:last-child {
        margin-bottom: 0;
    }

/* Responsive adjustments for reviews */
@media (max-width: 768px) {
    .reviews-section {
        padding: 3rem 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .review-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .review-card {
        padding: 1.5rem;
    }

    .reviewer-name {
        font-size: 1.3rem;
    }

    .review-text {
        font-size: 1rem;
    }
}

/* Google Reviews Header */
.google-reviews-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.google-brand {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.google-logo {
    width: 32px;
    height: 32px;
    flex-shrink: 0;
}

.google-reviews-label {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    letter-spacing: 1px;
}

.overall-rating {
    display: flex;
    align-items: center;
}

.rating-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: white;
}

/* Reviewer avatar */
.reviewer-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, #4285F4, #34A853);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 700;
    color: white;
    flex-shrink: 0;
    margin-right: 1rem;
}

/* Google badge on review card */
.google-review-badge {
    opacity: 0.8;
    flex-shrink: 0;
}

/* Leave a Google Review button */
.google-review-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    background: white;
    color: #3c4043;
    text-decoration: none;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.1);
}

    .google-review-btn:hover {
        background: #f8f9fa;
        color: #1a73e8;
        transform: translateY(-3px);
        box-shadow: 0 8px 24px rgba(66, 133, 244, 0.35);
        border-color: rgba(66, 133, 244, 0.4);
        text-decoration: none;
    }

    .google-review-btn:active {
        transform: translateY(-1px);
    }

@media (max-width: 576px) {
    .google-reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .google-reviews-label {
        font-size: 1.1rem;
    }

    .rating-number {
        font-size: 1.6rem;
    }

    .google-review-btn {
        font-size: 0.9rem;
        padding: 0.8rem 1.5rem;
    }
}
/* ===== SITE NAVIGATION ===== */
body {
    padding-top: 65px;
}

.site-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    background: rgba(10, 10, 10, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 107, 53, 0.25);
    padding: 0.55rem 0;
}

.site-nav-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-color) !important;
    text-decoration: none;
    transition: color 0.3s ease;
}

.site-nav-brand:hover {
    color: var(--secondary-color) !important;
}

.site-nav-link {
    color: rgba(255, 255, 255, 0.8) !important;
    font-weight: 500;
    font-size: 0.95rem;
    letter-spacing: 0.5px;
    padding: 0.5rem 0.85rem !important;
    transition: color 0.3s ease;
    position: relative;
}

.site-nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--secondary-color);
    transition: all 0.3s ease;
    transform: translateX(-50%);
}

.site-nav-link:hover {
    color: var(--secondary-color) !important;
}

.site-nav-link:hover::after,
.site-nav-link.active::after {
    width: 60%;
}

.site-nav-link.active {
    color: var(--primary-color) !important;
}

.site-nav-cta {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-radius: 25px;
    color: white !important;
    padding: 0.45rem 1.3rem !important;
    font-weight: 600;
    transition: all 0.3s ease !important;
    box-shadow: 0 4px 15px rgba(255, 0, 128, 0.3);
}

.site-nav-cta:hover {
    color: white !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(255, 0, 128, 0.5);
    opacity: 0.95;
}

.site-nav-cta::after {
    display: none !important;
}

.site-nav-toggler {
    border: 1px solid rgba(255, 107, 53, 0.45);
    padding: 0.3rem 0.6rem;
    color: var(--primary-color);
    background: transparent;
}

.site-nav-toggler:focus {
    box-shadow: 0 0 0 0.15rem rgba(255, 107, 53, 0.3);
    outline: none;
}

@media (max-width: 991px) {
    .navbar-collapse {
        background: rgba(10, 10, 10, 0.98);
        border-top: 1px solid rgba(255, 107, 53, 0.2);
        margin-top: 0.5rem;
        padding: 0.75rem 0;
        border-radius: 0 0 12px 12px;
    }

    .site-nav-cta {
        display: inline-block;
        margin: 0.5rem 0.85rem;
    }

    .site-nav-link::after {
        display: none;
    }
}

/* ===== INNER PAGE STYLES ===== */
.page-hero {
    background: linear-gradient(rgba(0, 0, 0, 0.80), rgba(0, 0, 0, 0.80)) center center / cover no-repeat, url('/images/turntables.jpg') center center / cover no-repeat;
    padding: 7rem 0 5.5rem;
    text-align: center;
    color: white;
}

.page-hero-icon {
    font-size: 3.5rem;
    color: var(--primary-color);
    margin-bottom: 1.25rem;
    display: block;
    filter: drop-shadow(0 0 15px rgba(255, 107, 53, 0.6));
}

.page-hero-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color), var(--accent-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    filter: drop-shadow(0 0 20px rgba(255, 107, 53, 0.35));
}

.page-hero-subtitle {
    font-size: 1.15rem;
    color: #d8d8d8;
    max-width: 680px;
    margin: 0 auto 2rem;
    font-weight: 300;
    line-height: 1.8;
}

.content-section {
    padding: 5rem 0;
    background: #0a0a0a;
    color: white;
}

.content-section.alt-bg {
    background: #0d0d0d;
}

.section-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    color: white;
    margin-bottom: 0.5rem;
}

.section-heading span {
    color: var(--primary-color);
}

.section-subheading {
    color: #aaa;
    font-size: 1rem;
    margin-bottom: 0;
    line-height: 1.7;
}

.divider-line {
    width: 55px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    margin: 1rem 0 2.5rem;
    border-radius: 2px;
}

.divider-line.centered {
    margin: 1rem auto 2.5rem;
}

.feature-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2rem 1.75rem;
    height: 100%;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.feature-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.12);
    background: rgba(255, 255, 255, 0.06);
}

.feature-icon {
    font-size: 2.2rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.feature-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}

.feature-text {
    color: #acacac;
    font-size: 0.92rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.package-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    height: 100%;
    text-align: center;
    transition: all 0.35s ease;
    position: relative;
    overflow: hidden;
}

.package-card.featured {
    border-color: rgba(255, 107, 53, 0.5);
    background: rgba(255, 107, 53, 0.06);
}

.package-card.featured::after {
    content: 'Most Popular';
    position: absolute;
    top: 1.1rem;
    right: -2.2rem;
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    color: white;
    font-size: 0.72rem;
    font-weight: 700;
    padding: 0.3rem 3.2rem;
    transform: rotate(45deg);
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.package-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(255, 107, 53, 0.15);
}

.package-icon {
    font-size: 2.5rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    display: block;
}

.package-name {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
}

.package-includes {
    list-style: none;
    padding: 0;
    margin: 0 0 2rem;
    text-align: left;
}

.package-includes li {
    color: #c8c8c8;
    padding: 0.4rem 0;
    font-size: 0.88rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.package-includes li:last-child {
    border-bottom: none;
}

.package-includes li i {
    color: var(--primary-color);
    flex-shrink: 0;
    width: 14px;
}

.checklist {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist li {
    color: #c8c8c8;
    padding: 0.5rem 0;
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.checklist li:last-child {
    border-bottom: none;
}

.checklist li i {
    color: var(--primary-color);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.step-card {
    display: flex;
    align-items: flex-start;
    gap: 1.5rem;
    padding: 1.75rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    margin-bottom: 1.25rem;
    transition: all 0.3s ease;
}

.step-card:hover {
    border-color: rgba(255, 107, 53, 0.2);
    background: rgba(255, 255, 255, 0.06);
}

.step-number {
    font-family: 'Orbitron', sans-serif;
    font-size: 2rem;
    font-weight: 900;
    color: var(--primary-color);
    line-height: 1;
    flex-shrink: 0;
    min-width: 2.5rem;
    filter: drop-shadow(0 0 8px rgba(255, 107, 53, 0.5));
}

.step-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--secondary-color);
    margin-bottom: 0.4rem;
}

.step-text {
    color: #acacac;
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 0;
}

.page-cta-section {
    background: linear-gradient(135deg, rgba(255, 107, 53, 0.1), rgba(0, 212, 255, 0.07), rgba(255, 0, 128, 0.07));
    border-top: 1px solid rgba(255, 107, 53, 0.2);
    padding: 6rem 0;
    text-align: center;
    color: white;
}

.page-cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.1rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
}

.page-cta-text {
    color: #b0b0b0;
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto 2.5rem;
    line-height: 1.75;
}

.btn-secondary-outline {
    display: inline-block;
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: white;
    text-decoration: none;
    padding: 1rem 2.5rem;
    border-radius: 50px;
    font-weight: 600;
    font-size: 1rem;
    letter-spacing: 1px;
    text-transform: uppercase;
    transition: all 0.3s ease;
    margin: 0.5rem;
}

.btn-secondary-outline:hover {
    color: var(--secondary-color);
    border-color: var(--secondary-color);
    text-decoration: none;
}

.about-bio {
    color: #c8c8c8;
    font-size: 1rem;
    line-height: 1.9;
}

.about-bio p {
    margin-bottom: 1.25rem;
}

.about-bio p:last-child {
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .page-hero {
        padding: 5.5rem 0 4rem;
    }

    .page-hero-title {
        font-size: 1.9rem;
    }

    .page-hero-subtitle {
        font-size: 1rem;
    }

    .section-heading {
        font-size: 1.6rem;
    }

    .content-section {
        padding: 3.5rem 0;
    }

    .page-cta-section {
        padding: 4rem 0;
    }

    .page-cta-title {
        font-size: 1.65rem;
    }

    .step-card {
        gap: 1rem;
    }
}

/* ===== REVIEW CAROUSEL ===== */
.review-carousel {
    position: relative;
    min-height: 180px;
}

.review-slide {
    display: none;
    animation: reviewFadeIn 0.45s ease-in-out;
}

.review-slide.active {
    display: block;
}

@keyframes reviewFadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 1.25rem;
}

.carousel-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: rgba(255, 255, 255, 0.7);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    flex-shrink: 0;
}

.carousel-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
    color: white;
}

.carousel-dots {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.carousel-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    border: none;
    cursor: pointer;
    padding: 0;
    transition: all 0.3s ease;
}

.carousel-dot.active {
    background: var(--primary-color);
    transform: scale(1.35);
}

.carousel-dot:hover {
    background: rgba(255, 255, 255, 0.5);
}

/* Review date display */
.review-date {
    color: #888;
    font-size: 0.82rem;
    margin-top: 0.2rem;
    margin-bottom: 0;
}

.event-date-sep {
    color: #666;
    margin: 0 0.4rem;
    font-size: 0.85rem;
}
/* ===== CAROUSEL PAUSE INDICATOR ===== */
.carousel-pause-indicator {
    position: absolute;
    bottom: 1rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgba(0, 0, 0, 0.75);
    color: #fff;
    padding: 0.35rem 0.9rem;
    border-radius: 2rem;
    font-size: 0.8rem;
    white-space: nowrap;
    pointer-events: none;
    z-index: 10;
}

.carousel-pause-indicator i {
    color: var(--primary-color);
    margin-right: 0.3rem;
}

/* ===== REVIEW PROGRESS BAR ===== */
@keyframes review-drain {
    from { transform: scaleX(1); }
    to   { transform: scaleX(0); }
}

.review-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    transform-origin: left center;
    animation: review-drain linear forwards;
    animation-play-state: paused;
    border-radius: 0 0 4px 4px;
}

/* ===== VIDEO PAGE ===== */
.video-filter-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
    justify-content: center;
}

.video-filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: rgba(255, 255, 255, 0.65);
    border-radius: 50px;
    padding: 0.45rem 1.3rem;
    font-family: 'Poppins', sans-serif;
    font-size: 0.88rem;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.25s ease;
    letter-spacing: 0.3px;
}

.video-filter-btn:hover {
    background: rgba(255, 107, 53, 0.12);
    border-color: rgba(255, 107, 53, 0.4);
    color: var(--primary-color);
}

.video-filter-btn.active {
    background: linear-gradient(135deg, var(--accent-color), var(--primary-color));
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 14px rgba(255, 0, 128, 0.3);
}

.video-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 18px;
    overflow: hidden;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.video-card::before {
    content: '';
    display: block;
    height: 3px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color), var(--accent-color));
}

.video-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 107, 53, 0.25);
    box-shadow: 0 18px 40px rgba(255, 107, 53, 0.14);
    background: rgba(255, 255, 255, 0.06);
}

/* 16:9 responsive iframe wrapper */
.video-embed-wrapper {
    position: relative;
    padding-top: 56.25%;
    background: #111;
}

.video-embed-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

.video-card-body {
    padding: 1.25rem 1.4rem 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.video-badge {
    display: inline-block;
    padding: 0.2rem 0.75rem;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.8px;
    text-transform: uppercase;
    align-self: flex-start;
}

.badge-wedding  { background: rgba(255,   0, 128, 0.15); color: #ff60b0; border: 1px solid rgba(255,   0, 128, 0.25); }
.badge-party    { background: rgba(255, 107,  53, 0.15); color: #ff8c5a; border: 1px solid rgba(255, 107,  53, 0.25); }
.badge-corporate{ background: rgba(  0, 212, 255, 0.12); color: #00d4ff; border: 1px solid rgba(  0, 212, 255, 0.25); }
.badge-karaoke  { background: rgba(150,  50, 255, 0.15); color: #bb80ff; border: 1px solid rgba(150,  50, 255, 0.25); }

.video-card-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 0.92rem;
    font-weight: 700;
    color: white;
    margin: 0;
    line-height: 1.4;
}

.video-card-desc {
    color: #acacac;
    font-size: 0.88rem;
    line-height: 1.65;
    margin: 0;
    flex: 1;
}

.video-empty-state {
    text-align: center;
    padding: 4rem 2rem;
    color: #555;
}

.video-empty-state i {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: block;
}

.video-empty-state p {
    font-size: 1rem;
    margin: 0;
}
