.category-alt-category-list {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}

.category-alt-category-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: #0c0c0c;
    border-radius: 16px;
    border: 1px solid rgba(219, 94, 255, 0.18);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

@media (max-width: 1400px) {
    .category-alt-category-list {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 992px) {
    .category-alt-category-list {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .category-alt-category-list {
        grid-template-columns: 1fr;
    }
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Arial', sans-serif;
    background-color: #000;
    color: #fff;
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

:root {
    --accent-color: #DB5EFF;
    --accent-color-hover: #C84FE6;
}

a {
    color: var(--accent-color);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover,
a:focus-visible {
    color: var(--accent-color-hover);
}

/* Ensure all images are responsive by default */
img {
    max-width: 100%;
}

/* Override for images that need specific heights */
.about-page-image img,
.about-image img,
.service-card img,
.gallery-item img {
    max-width: 100%;
}

/* Smoke Particle Styles */
.smoke-particle {
    position: fixed;
    pointer-events: none;
    border-radius: 50%;
    opacity: 0;
    z-index: 9999;
    mix-blend-mode: normal;
}

.smoke-particle::before {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.4) 0%, rgba(150, 150, 150, 0.2) 50%, transparent 100%);
    border-radius: 50%;
    filter: blur(12px);
}

@keyframes smokeFloat {
    0% {
        opacity: 0.6;
        transform: translate(0, 0) scale(0.5);
    }
    50% {
        opacity: 0.3;
    }
    100% {
        opacity: 0;
        transform: translate(var(--tx), var(--ty)) scale(2.5);
    }
}

.smoke-particle.animate {
    animation: smokeFloat var(--duration) ease-out forwards;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 12px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: var(--accent-color);
    border-radius: 6px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--accent-color-hover);
}

/* Firefox Scrollbar */
html {
    scrollbar-width: thin;
    scrollbar-color: var(--accent-color) #000;
}

/* Header */
header {
    background-color: #000;
    padding: 20px 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

header.scrolled {
    background-color: rgba(0, 0, 0, 0.95);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.has-hero header {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: linear-gradient(180deg, rgba(84, 84, 84, 0.95) 0%, rgba(93, 92, 92, 0.6) 60%, transparent 100%);
    border-bottom: none;
}

.has-hero header.scrolled {
    position: fixed;
    background-color: rgb(127 124 124 / 95%);
}

.logo {
    font-size: 24px;
    font-weight: bold;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 2px;
    display: flex;
    align-items: center;
}

.logo a {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

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

.logo .heart {
    color: #ff0000;
    font-size: 28px;
}

nav ul {
    display: flex;
    list-style: none;
    gap: 30px;
    margin-top: 70px;
}

nav a {
    color: #fff;
    text-decoration: none;
    font-size: 20px;
    transition: color 0.3s ease;
    position: relative;
    padding-bottom: 5px;
}

nav a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #DB5EFF;
    transition: width 0.3s ease;
}

nav a:hover {
    color: #DB5EFF;
}

nav a:hover::after {
    width: 100%;
}

nav a.active {
    color: #DB5EFF;
}

nav a.active::after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
    position: relative;
    width: 25px;
    height: 20px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background-color: #fff;
    transition: all 0.3s ease;
    display: block;
    position: absolute;
}

.menu-toggle span:nth-child(1) {
    top: 0;
}

.menu-toggle span:nth-child(2) {
    top: 50%;
    transform: translateY(-50%);
}

.menu-toggle span:nth-child(3) {
    bottom: 0;
}

/* Transform hamburger to X when menu is active */
.menu-toggle.active span:nth-child(1) {
    top: 50%;
    transform: translateY(-50%) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
    transform: translateY(-50%) scale(0);
}

.menu-toggle.active span:nth-child(3) {
    bottom: 50%;
    transform: translateY(50%) rotate(-45deg);
}

/* Hero Carousel */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 600px;
    overflow: hidden;
}

.carousel-slide {
    width: 100%;
    height: 100%;
    position: absolute;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.carousel-slide.active {
    opacity: 1;
}

.carousel-slide img,
.carousel-slide video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    background-color: #1a1a1a;
    display: block;
}

.carousel-slide .video-fallback {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.carousel-slide img[src=""],
.carousel-slide img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.carousel-dots {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

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

/* Animation Keyframes */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(50px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

/* Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

.fade-in {
    animation: fadeIn 0.8s ease-out forwards;
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out forwards;
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out forwards;
}

.scale-in {
    animation: scaleIn 0.6s ease-out forwards;
}

/* About Page Header */
.about-page-header {
    padding: 100px 40px 20px;
    text-align: center;
    background-color: #000;
}

.about-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.about-page-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.about-page-subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Ensembles Page Header */
.ensembles-page-header {
    padding: 100px 40px 60px;
    text-align: center;
    background-color: #000;
}

.ensembles-header-content {
    max-width: 1200px;
    margin: 0 auto;
}

.ensembles-page-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.ensembles-page-subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Ensembles Cards Section */
.ensembles-cards-section {
    padding: 40px 40px;
    background-color: #000;
    width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.ensembles-cards-container {
    display: flex;
    flex-direction: row;
   /*  flex-wrap: wrap; */
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
    align-items: stretch;
    width: 100%;
    box-sizing: border-box;
}

/* Target direct child divs of .ensembles-cards-container (cards without .ensembles-card class) */
.ensembles-cards-container > div {
    flex: 1 1 calc(50% - 20px);
    min-width: 300px;
    max-width: 100%;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.ensembles-cards-container > div:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ensembles-cards-container > div img {
    width: 100%;
    max-width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
    position: relative;
    box-sizing: border-box;
}

.ensembles-cards-container > div:hover img {
    transform: scale(1.05);
}

.ensembles-cards-container > div img[src=""],
.ensembles-cards-container > div img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.ensembles-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 30px 35px;
    background-color: #fff;
    border-radius: 8px 8px 0 0;
    display: flex;
    flex-direction: column;
    transform: translateY(0);
    transition: transform 0.4s ease-out, opacity 0.4s ease-out;
}

.ensembles-cards-container > div.animate-on-scroll:not(.animated) .ensembles-card-content {
    transform: translateY(100%);
    opacity: 0;
}

.ensembles-cards-container > div.animate-on-scroll.animated .ensembles-card-content {
    transform: translateY(0);
    opacity: 1;
}

.ensembles-card-title {
    font-size: 24px;
    margin-bottom: 12px;
    color: #000;
    font-weight: bold;
}

.ensembles-card-description {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

/* Ensembles Gallery Section */
.ensembles-gallery-section {
    padding: 0 40px 80px;
    background-color: #000;
}

.ensembles-gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    max-width: 1120px;
    margin: 0 auto;
    justify-content: center;
    align-items: flex-start;
}

.ensembles-gallery-item {
    flex: 0 0 calc(50% - 15px);
    width: calc(50% - 15px);
    min-width: 300px;
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.ensembles-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.ensembles-gallery-item img {
    width: 100%;
    height: 350px;
    object-fit: cover;
    object-position: center;
    display: block;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
    border-radius: 8px;
}

.ensembles-gallery-item:hover img {
    transform: scale(1.05);
}

.ensembles-gallery-item img[src=""],
.ensembles-gallery-item img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* DJ's Page Header */
.djs-section {
    padding: 100px 40px 80px;
    background-color: #000;
    text-align: center;
}

.djs-header-content {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.djs-page-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.djs-page-subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* DJ Main Image */
.djs-main-image {
    max-width: 1200px;
    margin: 0 auto 30px;
    border-radius: 8px;
    overflow: hidden;
    position: relative;
}

.djs-main-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    background-color: #1a1a1a;
}

.djs-main-image img[src=""],
.djs-main-image img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    min-height: 500px;
}

/* DJ Gallery Thumbnails */
.djs-gallery-thumbnails {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 15px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.djs-gallery-item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.djs-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.djs-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
}

.djs-gallery-item:hover img {
    transform: scale(1.05);
}

.djs-gallery-item img[src=""],
.djs-gallery-item img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.djs-gallery-thumb {
    flex: 0 0 calc((100% - 60px) / 5);
    aspect-ratio: 1;
}

/* Second DJ Gallery */
.djs-second-gallery {
    max-width: 1200px;
    margin: 30px auto 0;
    display: flex;
    gap: 20px;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.djs-second-gallery-item {
    flex: 0 0 calc(50% - 10px);
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    aspect-ratio: 4/3;
}

.djs-second-gallery-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.5);
}

.djs-second-gallery-item:nth-last-child(1):nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
}

.djs-second-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease;
    background-color: #1a1a1a;
}

.djs-second-gallery-item:hover img {
    transform: scale(1.05);
}

.djs-second-gallery-item img[src=""],
.djs-second-gallery-item img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* Music Coordination Section */
.music-coordination-section {
    padding: 100px 40px;
    background-color: #1a1a1a;
    text-align: center;
}

.music-coordination-content {
    max-width: 1200px;
    margin: 0 auto 60px;
}

.music-coordination-title {
    font-size: 42px;
    margin-bottom: 20px;
    color: #fff;
    font-weight: bold;
}

.music-coordination-subtitle {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    max-width: 800px;
    margin: 0 auto;
}

/* Music Coordination Blocks */
.music-coordination-blocks {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.coordination-block {
    flex: 0 1 calc(50% - 15px);
    max-width: 500px;
    min-width: 320px;
    display: flex;
    flex-direction: column;
    background-color: transparent;
    border-radius: 12px;
    overflow: hidden;
}

.coordination-block-reverse {
    flex-direction: column;
}

.coordination-block-image {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    margin-bottom: 20px;
    aspect-ratio: 4/3;
}

.coordination-block-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    background-color: #1a1a1a;
    border-radius: 12px;
}

.coordination-block-image img[src=""],
.coordination-block-image img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.coordination-block-content {
    width: 100%;
    text-align: left;
    padding: 0;
    display: flex;
    flex-direction: column;
}

.coordination-block-title {
    font-size: 32px;
    margin-bottom: 15px;
    color: #fff;
    font-weight: bold;
    line-height: 1.2;
}

.coordination-block-description {
    font-size: 16px;
    color: #fff;
    line-height: 1.6;
    margin-bottom: 0;
}

.music-coordination-blocks .coordination-block:nth-last-child(1):nth-child(odd) {
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 1024px) {
    .coordination-block {
        max-width: 100%;
        flex: 1 1 100%;
    }

    .immersive-panel:nth-last-child(1):nth-child(odd) {
        flex: 0 0 100%;
        max-width: 100%;
    }
    
    .immersive-panel {
        max-width: 100%;
        flex: 1 1 100%;
    }
}

/* Premium Events Section */
.premium-events-section {
    padding: 80px 40px;
    background-color: #000;
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.event-card {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.event-card-reverse {
    flex-direction: row-reverse;
}

.event-card-media {
    flex: 1;
    border-radius: 16px;
    overflow: hidden;
}

.event-card-media img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    min-height: 320px;
    border-radius: 16px;
    background-color: #1a1a1a;
}

.event-card-media img[src=""],
.event-card-media img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.event-card-content {
    flex: 1;
    color: #fff;
}

.event-card-title {
    font-size: 42px;
    font-weight: 700;
    margin-bottom: 20px;
}

.event-card-description {
    font-size: 18px;
    line-height: 1.7;
    margin-bottom: 30px;
    color: #f3f3f3;
}

.event-card-button {
    background: linear-gradient(135deg, #4C6EF5 0%, #7B5CFF 100%);
    color: #fff;
    border: none;
    border-radius: 999px;
    padding: 12px 40px;
    font-size: 16px;
    cursor: pointer;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.event-card-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(76, 110, 245, 0.4);
}

/* Immersive Gallery Section */
.immersive-gallery-section {
    padding: 60px 40px 100px;
    background-color: #000;
}

.immersive-gallery {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    border-radius: 36px;
    overflow: hidden;
    position: relative;
    justify-content: center;
}

.immersive-panel {
    flex: 0 1 calc(50% - 10px);
    max-width: 560px;
    min-width: 320px;
    min-height: 360px;
    border-radius: 32px;
    overflow: hidden;
}

.immersive-panel img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.immersive-panel:nth-last-child(1):nth-child(odd) {
    flex: 0 0 calc(66.666% - 20px);
    max-width: 720px;
}

/* Contact Page */
body.contact-page {
    background-color: #000;
    color: #fff;
}

.contact-hero-heading {
    padding: 100px 40px 30px;
    background: linear-gradient(180deg, #0e0e0e 0%, #111 100%);
    text-align: center;
}

.contact-hero-heading h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.contact-kicker {
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #FFC46B;
    font-weight: 600;
    margin-bottom: 10px;
}

.contact-hero {
    width: 100%;
    max-width: 1200px;
    position: relative;
    margin: 0 auto 60px;
    padding: 0 40px;
}

.contact-hero-bg img {
    width: 100%;
    border-radius: 30px;
    object-fit: cover;
    min-height: 420px;
    display: block;
    filter: saturate(1.05);
}

.contact-hero-overlay {
    position: absolute;
    left: 5%;
    top: 50%;
    transform: translateY(-50%);
    width: 55%;
    max-width: 620px;
}

.contact-hero-overlay .contact-form {
    background: #fff;
    border-radius: 24px;
    padding: 40px 40px 32px;
    box-shadow: 0 35px 55px rgba(0, 0, 0, 0.4);
}

.contact-hero-overlay .form-row {
    flex-direction: column;
    gap: 12px;
}

.contact-hero-overlay .form-row > div {
    width: 100%;
}

.contact-hero-overlay input,
.contact-hero-overlay textarea,
.contact-hero-overlay select {
    border-radius: 18px;
    border: none;
    background: #f4e19b;
    padding: 14px 18px;
    color: #3c2a12;
}

.contact-hero-overlay textarea {
    resize: none;
}

.contact-hero-overlay .send-button {
    border-radius: 999px;
    padding: 12px 32px;
    align-self: flex-start;
}

.contact-hero-overlay .checkbox-label,
.contact-hero-overlay .checkbox-label .wpcf7-list-item-label {
    color: #3d2a13;
}

.contact-location {
    padding: 80px 40px;
    background: #050505;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    align-items: stretch;
    justify-content: center;
}

.contact-location-card {
    flex: 0 1 360px;
    min-width: 600px;
    background: linear-gradient(135deg, rgba(20,20,20,0.95), rgba(10,10,10,0.9));
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.contact-location-card h2 {
    font-size: 36px;
    margin-bottom: 20px;
}

.contact-location-card p {
    line-height: 1.7;
    margin-bottom: 25px;
    color: #ddd;
}

.contact-location-details div {
    margin-bottom: 18px;
}

.contact-location-label {
    display: block;
    text-transform: uppercase;
    font-size: 12px;
    letter-spacing: 1px;
    color: #929292;
}

.contact-location-value a {
    color: var(--accent-color);
    text-decoration: none;
}

.contact-location-map {
    flex: 1 1 600px;
    min-width: 320px;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0,0,0,0.55);
}

.contact-location-map iframe {
    width: 100%;
    height: 100%;
    min-height: 400px;
    border: none;
    border-radius: 24px;
}

.special-hero {
    padding: 100px 40px 40px;
    background: #000;
    text-align: center;
}

.special-hero-content {
    max-width: 900px;
    margin: 0 auto;
}

.special-hero-content h1 {
    font-size: 52px;
    margin-bottom: 15px;
}

.special-kicker {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.special-cards {
    padding: 40px;
    background: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.special-card {
    flex: 0 0 calc(45% - 15px);
    max-width: calc(45% - 15px);
    background: #fff;
    color: #222;
    border-radius: 24px;
    padding: 35px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.special-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
}

.special-gallery {
    padding: 0 40px 80px;
    background: #000;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: center;
}

.special-gallery-item {
    flex: 0 0 calc(45% - 15px);
    max-width: calc(45% - 15px);
    min-width: 260px;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 25px 45px rgba(0,0,0,0.45);
}

.special-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonials-page {
    background: #050505;
    color: #fff;
}

.testimonials-header {
    text-align: center;
    padding: 110px 30px 50px;
}

.testimonials-kicker {
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-color);
    font-weight: 600;
    margin-bottom: 10px;
}

.testimonials-header h1 {
    font-size: 48px;
}

.testimonials-collection {
    padding: 0 40px 80px;
    display: flex;
    flex-wrap: wrap;
    gap: 36px;
    justify-content: center;
}

.testimonial-panel {
    flex: 0 1 calc(48% - 18px);
    max-width: 640px;
    background: #fff;
    color: #111;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 30px 55px rgba(0,0,0,0.45);
    animation: fadeInUp 0.8s ease forwards;
    opacity: 0;
}

.testimonial-panel:nth-of-type(2) { animation-delay: 0.1s; }
.testimonial-panel:nth-of-type(3) { animation-delay: 0.2s; }
.testimonial-panel:nth-of-type(4) { animation-delay: 0.3s; }
.testimonial-panel:nth-of-type(5) { animation-delay: 0.4s; }
.testimonial-panel:nth-of-type(6) { animation-delay: 0.5s; }
.testimonial-panel:nth-of-type(7) { animation-delay: 0.6s; }
.testimonial-panel:nth-of-type(8) { animation-delay: 0.7s; }

.testimonial-panel.stacked-panel {
    background: transparent;
    box-shadow: none;
    padding: 0;
}

.testimonial-panel.stacked-panel .testimonial-media {
    border-radius: 30px;
    overflow: hidden;
    margin-bottom: 32px;
}

.testimonial-media {
    width: 100%;
    height: 300px;
    background: #111;
    position: relative;
}

.testimonial-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-copy {
    padding: 36px;
}

.testimonial-copy h3 {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.testimonial-copy span {
    font-weight: 700;
    color: #111;
}

.testimonial-comments {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 0 4px 4px;
}

.testimonial-comment {
    width: 100%;
    background: #fff;
    border-radius: 24px;
    padding: 26px 28px;
    box-shadow: 0 25px 45px rgba(0,0,0,0.4);
}

.testimonial-comment h3 {
    margin-bottom: 12px;
}

.testimonial-comment span {
    display: block;
    margin-top: 14px;
    font-weight: 700;
}

.testimonial-panel-stars,
.testimonial-comment-stars {
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    font-size: 28px;
    letter-spacing: 4px;
    margin-top: 24px;
}

.testimonial-comment-stars {
    font-size: 22px;
    margin-top: 12px;
}

.testimonial-copy p {
    line-height: 1.6;
}

.testimonial-media.placeholder::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg,#1a1a1a,#2d2d2d);
}

.testimonials-showcase,
.testimonials-grid,
.testimonials-showcase-card,
.testimonials-grid-card,
.testimonials-list,
.testimonial-content {
    display: none;
}

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

@media (max-width: 1024px) {
    .testimonial-panel {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

@media (max-width: 600px) {
    .testimonials-collection {
        padding: 0 20px 60px;
        gap: 24px;
    }

    .testimonial-media {
        height: 240px;
    }

    .testimonial-copy {
        padding: 26px;
    }

    .testimonial-comments {
        padding: 0;
        gap: 18px;
    }

    .testimonial-comment {
        flex: 1 1 100%;
    }
}

.contact-faq {
    padding: 80px 30px;
    background: #fff;
    color: #000;
    text-align: center;
}

.contact-faq h2 {
    font-size: 42px;
    margin-bottom: 40px;
}

.contact-faq-grid {
    max-width: 1000px;
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 30px;
}

.contact-faq-item {
    flex: 0 1 calc(50% - 15px);
    min-width: 260px;
    max-width: 100%;
    background: #f4f6ff;
    padding: 25px 28px;
    border-radius: 18px;
    text-align: left;
    box-shadow: 0 15px 25px rgba(0,0,0,0.08);
    border-top: 4px solid var(--accent-color);
}

.contact-faq-item h3 {
    margin-bottom: 12px;
    font-size: 18px;
    color: var(--accent-color);
}

.contact-footer-cta {
    padding: 60px 40px;
    background: #050505;
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    justify-content: space-between;
}

.contact-footer-col {
    flex: 1 1 250px;
}

.contact-footer-col h4 {
    margin-bottom: 12px;
}

.contact-footer-col a {
    display: block;
    color: var(--accent-color);
    text-decoration: none;
    margin-bottom: 6px;
}

.contact-footer-input {
    display: flex;
    gap: 10px;
}

.contact-footer-input input {
    flex: 1;
    padding: 10px 14px;
    border-radius: 999px;
    border: none;
}

.contact-footer-input button {
    border: none;
    border-radius: 999px;
    padding: 10px 20px;
    background: #FFD36B;
    cursor: pointer;
}

.contact-legal {
    text-align: center;
    padding: 20px;
    background: #000;
    color: #999;
    font-size: 14px;
}

@media (max-width: 1024px) {
    .contact-hero {
        position: static;
        max-width: 100%;
        padding: 80px 25px 50px;
    }

    .contact-hero-media img {
        width: 100%;
        min-height: 280px;
    }

    .contact-hero-overlay {
        position: static;
        transform: none;
        width: 100%;
        max-width: 100%;
        margin-top: 20px;
    }

    .contact-location-card {
        padding: 30px;
    }

    .contact-location {
        flex-direction: column;
    }

    .special-card,
    .special-gallery-item {
        flex: 1 1 100%;
    }

    .contact-footer-cta {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .contact-hero-text h1 {
        font-size: 36px;
    }

    .contact-hero-media img {
        min-height: 260px;
    }

    .contact-hero-overlay {
        border-radius: 18px;
        padding: 24px;
    }

    .contact-faq {
        padding: 60px 20px;
    }
}
@media (max-width: 1024px) {
    .premium-events-section {
        padding: 60px 30px;
    }

    .music-coordination-blocks {
        gap: 25px;
    }

    .coordination-block {
        flex: 1 1 100%;
    }

    .event-card {
        flex-direction: column;
        gap: 25px;
        text-align: center;
    }

    .event-card-reverse {
        flex-direction: column;
    }

    .event-card-content {
        text-align: center;
    }

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

    .event-card-description {
        font-size: 16px;
    }

    .event-card-button {
        margin: 0 auto;
    }
}

@media (max-width: 640px) {
    .premium-events-section {
        padding: 50px 20px;
    }

    .coordination-block-title {
        font-size: 24px;
    }

    .coordination-block-description {
        font-size: 14px;
    }

    .event-card-media img {
        min-height: 240px;
    }

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

/* About Section */
.about-section {
    padding: 80px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.about-image {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 0;
}

.about-image img {
    width: 100%;
    height: auto;
    border-radius: 8px;
    background-color: #1a1a1a;
    object-fit: cover;
    object-position: center top;
    display: block;
    transition: height 0.3s ease;
    max-width: 100%;
}

.about-image img[src=""],
.about-image img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-content {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    flex: 1;
    min-width: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-content h2 {
    font-size: 36px;
    margin-bottom: 30px;
    color: #fff;
}

.about-content p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #fff;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

/* About Text Box (White Box) */
.about-text-box {
    background-color: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.about-text-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    font-weight: bold;
}

.about-text-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
}

.about-contact {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 1px solid #e0e0e0;
}

.about-contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
}

.about-contact a {
    color: #DB5EFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.about-contact a:hover {
    color: #C84FE6;
    text-decoration: underline;
}

/* About Page Section (about.html) */
.about-page-section {
    padding: 0px 40px;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
    background-color: #000;
}

.about-page-image {
    display: flex;
    align-items: flex-start;
    position: relative;
    overflow: hidden;
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 100%;
    height: auto;
}

.about-page-image img {
    width: 100%;
    height: 100%;
    border-radius: 8px;
    background-color: #1a1a1a;
    object-fit: cover;
    object-position: center top;
    display: block;
    max-width: 100%;
}

.about-page-image img[src=""],
.about-page-image img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.about-page-text-box {
    flex: 1 1 45%;
    min-width: 300px;
    max-width: 100%;
    background-color: #fff;
    padding: 40px 40px 15px 40px;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-self: flex-start;
    height: fit-content;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-page-text-box h3 {
    font-size: 24px;
    margin-bottom: 25px;
    color: #000;
    font-weight: bold;
}

.about-page-text-box p {
    font-size: 16px;
    margin-bottom: 20px;
    color: #333;
    line-height: 1.8;
    word-wrap: break-word;
    overflow-wrap: break-word;
}

.about-page-contact {
    margin-top: 15px;
    padding-top: 0px;
    margin-bottom: 0;
    padding-bottom: 0;
}

.about-page-contact p {
    font-size: 16px;
    color: #333;
    margin-bottom: 0;
    line-height: 1.8;
}

.about-page-contact a {
    color: #DB5EFF;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: bold;
}

.about-page-contact a:hover {
    color: #C84FE6;
    text-decoration: underline;
}

/* Image Gallery Section */
.image-gallery-section {
    padding: 80px 40px;
    background-color: #000;
}

.gallery-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.gallery-item {
    flex: 1 1 calc(25% - 15px);
    min-width: 250px;
    max-width: 100%;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 8px;
    position: relative;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    background-color: #1a1a1a;
    max-width: 100%;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.gallery-item img[src=""],
.gallery-item img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

/* FAQ Section */
.faq-section {
    padding: 80px 40px;
    background-color: #fff;
}

.faq-container {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1200px;
    margin: 0 auto;
    align-items: flex-start;
}

.faq-header {
    flex: 0 0 300px;
    min-width: 250px;
    padding-left: 20px;
    border-left: 4px solid #4A90E2;
    position: relative;
}

.faq-header h2 {
    font-size: 48px;
    font-weight: bold;
    color: #000;
    line-height: 1.2;
    margin: 0;
    font-family: 'Arial', sans-serif;
}

.faq-content {
    flex: 1 1 500px;
    min-width: 300px;
}

.faq-item {
    margin-bottom: 40px;
}

.faq-item:last-child {
    margin-bottom: 0;
}

.faq-question {
    font-size: 20px;
    font-weight: bold;
    color: #000;
    margin: 0 0 12px 0;
    line-height: 1.4;
}

.faq-answer {
    font-size: 16px;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.faq-answer a {
    color: #DB5EFF;
    text-decoration: none;
    transition: color 0.3s ease;
}

.faq-answer a:hover {
    color: #C84FE6;
    text-decoration: underline;
}

/* Testimonials Section */
.testimonials-section {
    padding: 80px 40px;
    background-image: url('images/testimonials_background.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    background-color: #000;
}

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

.testimonials-slider {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    overflow: hidden;
    width: 100%;
}

.testimonials-slider-wrapper {
    display: flex;
    transition: transform 0.6s ease-in-out;
    will-change: transform;
    width: 100%;
}

.testimonial-slide {
    min-width: 50%;
    width: 50%;
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    box-sizing: border-box;
}

.testimonial-card {
    width: 100%;
    max-width: 100%;
    margin: 0 auto;
    padding: 40px;
    background-color: rgba(0, 0, 0, 0.4);
    border-radius: 8px;
    backdrop-filter: blur(5px);
    box-sizing: border-box;
}

@media (max-width: 768px) {
    .testimonial-slide {
        min-width: 100% !important;
        width: 100% !important;
        padding: 0 10px;
    }
    
    .testimonial-card {
        padding: 30px 20px;
    }
}

.testimonial-stars {
    font-size: 24px;
    color: #fff;
    margin-bottom: 20px;
    line-height: 1;
}

.testimonial-quote {
    font-size: 18px;
    color: #fff;
    line-height: 1.6;
    margin: 0 0 30px 0;
}

.testimonial-author {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 15px;
}

.testimonial-avatar {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
    background-color: #333;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.testimonial-name {
    font-size: 16px;
    color: #fff;
    font-weight: 500;
}

.testimonial-dots {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px;
    justify-content: center;
    margin-top: 30px;
    z-index: 3;
    width: 100%;
}

.testimonial-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    transition: background-color 0.3s;
}

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

.testimonial-dot:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Services Section */
.services-section {
    padding: 80px 40px;
    background-color: #111;
}

.services-header {
    text-align: center;
    margin-bottom: 60px;
}

.services-header h2 {
    font-size: 42px;
    margin-bottom: 15px;
    color: #fff;
}

.services-header p {
    font-size: 18px;
    color: #ccc;
}

.services-grid {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    /* gap: 40px; */
    max-width: 1200px;
    margin: 0 auto;
    justify-content: center;
}

.service-card {
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    padding: 20px;
    border-radius: 8px;
    flex: 1 1 calc(33.333% - 27px);
    min-width: 280px;
    max-width: 100%;
    box-sizing: border-box;
}

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

.service-card img {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: 8px;
    margin-bottom: 20px;
    background-color: #1a1a1a;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    max-width: 100%;
}

.service-card:hover img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.service-card img[src=""],
.service-card img:not([src]) {
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
}

.service-card h3 {
    font-size: 24px;
    margin-bottom: 15px;
    color: #fff;
}

.service-card p {
    font-size: 16px;
    color: #ccc;
    line-height: 1.6;
}

/* Contact Form Section */
.email-inquiry {
    padding: 60px 40px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.email-inquiry p {
    font-size: 18px;
    margin-bottom: 30px;
    color: #fff;
}

.contact-form,
.footer-contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
    text-align: left;
}

.contact-form .form-row,
.footer-contact-form .form-row {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 15px;
    width: 100%;
}

.contact-form .form-row > div,
.footer-contact-form .form-row > div {
    flex: 1 1 calc(50% - 7.5px);
    min-width: 200px;
}

.contact-form .form-row > div > input,
.contact-form .form-row > div > select,
.contact-form .form-row > div > textarea,
.contact-form .form-row > div > button,
.footer-contact-form .form-row > div > input,
.footer-contact-form .form-row > div > select,
.footer-contact-form .form-row > div > textarea,
.footer-contact-form .form-row > div > button {
    width: 100%;
}

.contact-form .form-row.checkbox-row,
.contact-form .form-row.recaptcha-row,
.footer-contact-form .form-row.checkbox-row,
.footer-contact-form .form-row.recaptcha-row {
    flex: 1 1 100%;
    width: 100%;
}

.contact-form .form-row > div:has(textarea),
.footer-contact-form .form-row > div:has(textarea) {
    flex: 1 1 100%;
    width: 100%;
}

.contact-form .form-row.recaptcha-row > div,
.footer-contact-form .form-row.recaptcha-row > div {
    flex: 1 1 100%;
    width: 100%;
    display: flex;
    justify-content: center;
}

.contact-form .form-row > div:has(.send-button),
.footer-contact-form .form-row > div:has(.send-button) {
    flex: 1 1 100%;
    display: flex;
    justify-content: center;
}

.contact-form .form-row .send-button,
.footer-contact-form .form-row .send-button {
    flex: 0 0 auto;
    width: auto;
    margin: 0 auto;
    align-self: center;
}

.contact-form input,
.contact-form select,
.contact-form textarea,
.footer-contact-form input,
.footer-contact-form select,
.footer-contact-form textarea {
    padding: 12px 15px;
    font-size: 14px;
    border: none;
    background-color: #e8e8e8;
    color: #000;
    border-radius: 4px;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    font-family: 'Arial', sans-serif;
    width: 100%;
    box-sizing: border-box;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.footer-contact-form input:focus,
.footer-contact-form select:focus,
.footer-contact-form textarea:focus {
    outline: none;
    background-color: #fff;
    box-shadow: 0 0 0 2px rgba(219, 94, 255, 0.3);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder,
.footer-contact-form input::placeholder,
.footer-contact-form textarea::placeholder {
    color: #666;
}

.contact-form select,
.footer-contact-form select {
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23000' d='M6 9L1 4h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    background-color: #e8e8e8;
}

.contact-form textarea,
.footer-contact-form textarea {
    resize: vertical;
    min-height: 120px;
    font-family: 'Arial', sans-serif;
}

.checkbox-row {
    display: flex;
    align-items: center;
}

.contact-form .checkbox-row > div,
.footer-contact-form .checkbox-row > div {
    flex: 1 1 100%;
    width: 100%;
}

.contact-form .checkbox-row p,
.footer-contact-form .checkbox-row p {
    margin: 0;
    padding: 0;
}

.contact-form .checkbox-label,
.footer-contact-form .checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: #fff;
    font-size: 14px;
    margin: 0;
}

.contact-form .wpcf7-form-control-wrap,
.footer-contact-form .wpcf7-form-control-wrap {
    display: flex;
    align-items: center;
}

.contact-form .wpcf7-checkbox,
.footer-contact-form .wpcf7-checkbox {
    display: flex;
    align-items: center;
}

.contact-form .wpcf7-list-item,
.footer-contact-form .wpcf7-list-item {
    display: flex;
    align-items: center;
    gap: 10px;
}

.contact-form .checkbox-label input[type="checkbox"],
.footer-contact-form .checkbox-label input[type="checkbox"],
.contact-form .wpcf7-list-item input[type="checkbox"],
.footer-contact-form .wpcf7-list-item input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
    margin: 0;
}

.contact-form .wpcf7-list-item-label,
.footer-contact-form .wpcf7-list-item-label {
    color: #fff;
    font-size: 14px;
    cursor: pointer;
}

.send-button {
    padding: 12px 30px;
    background-color: #FFD700;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
    width: auto;
    display: inline-block;
}

.send-button:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.send-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

/* Footer */
footer {
    background-color: #0f0a1a;
    padding: 80px 40px 30px;
    position: relative;
    overflow: hidden;
}

.footer-content {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 60px;
    max-width: 1400px;
    margin: 0 auto 40px;
    position: relative;
    z-index: 1;
}

.footer-section {
    display: flex;
    flex-direction: column;
}

/* Footer Logo Section */
.footer-logo-section {
    max-width: 100%;
}

.footer-logo {
    margin-bottom: 25px;
}

.footer-logo img {
    max-width: 200px;
    height: auto;
    display: block;
}

.footer-logo-text {
    display: none;
    flex-direction: column;
    gap: 5px;
}

.footer-logo-text[style*="display: flex"],
.footer-logo-text[style*="display:flex"] {
    display: flex !important;
}

.logo-ace {
    font-family: 'Brush Script MT', cursive;
    font-size: 32px;
    color: #fff;
}

.logo-hearts {
    font-family: 'Times New Roman', serif;
    font-size: 28px;
    font-weight: bold;
    color: #fff;
    letter-spacing: 2px;
}

.logo-entertainment {
    font-size: 12px;
    color: #fff;
    letter-spacing: 1px;
}

.footer-description {
    font-size: 14px;
    color: #fff;
    line-height: 1.8;
    margin-bottom: 25px;
}

/* Footer Headings */
.footer-heading {
    font-size: 20px;
    margin-bottom: 25px;
    color: #fff;
    position: relative;
    padding-bottom: 10px;
    display: inline-block;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, #DB5EFF 0%, #4A90E2 100%);
    border-radius: 2px;
}

/* Contact Info Section */
.footer-contact-section {
    max-width: 100%;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.contact-item {
    display: flex;
    gap: 15px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 18px;
    color: #999;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.contact-label {
    font-size: 14px;
    color: #fff;
    font-weight: 500;
}

.contact-value {
    font-size: 14px;
    color: #ccc;
    line-height: 1.6;
}

.contact-value a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s ease;
}

.contact-value a:hover {
    color: #DB5EFF;
}

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

.social-icon {
    width: 45px;
    height: 45px;
    border-radius: 8px;
    background-color: #2d1b4e;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
    border: none;
}

.social-icon:hover {
    background-color: #3d2b5e;
    transform: translateY(-2px);
}

.social-icon span {
    display: block;
}

/* Footer Form Section */
.footer-form-section {
    max-width: 100%;
}

/* Ensure touch-friendly elements on mobile */
@media (max-width: 768px) {
    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .contact-form .send-button,
    .footer-contact-form input,
    .footer-contact-form select,
    .footer-contact-form textarea,
    .footer-contact-form .send-button {
        min-height: 44px; /* Minimum touch target size */
    }

    .contact-form .checkbox-label,
    .footer-contact-form .checkbox-label {
        min-height: 44px;
    }
}

.footer-contact-form .checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

/* reCAPTCHA Styling */
.recaptcha-container {
    width: 100%;
    display: flex;
    justify-content: center;
}

.recaptcha-placeholder {
    display: flex;
    align-items: center;
    gap: 15px;
    background-color: #fff;
    padding: 15px;
    border-radius: 4px;
    border: 1px solid #ddd;
    max-width: fit-content;
}

.recaptcha-placeholder input[type="checkbox"] {
    width: 20px;
    height: 20px;
    cursor: pointer;
    accent-color: #000;
    flex-shrink: 0;
}

.recaptcha-placeholder .recaptcha-label {
    font-size: 14px;
    color: #000;
    cursor: pointer;
    margin: 0;
    user-select: none;
}

.recaptcha-logo {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
    font-size: 11px;
    color: #666;
}

.recaptcha-logo span:first-child {
    font-weight: 500;
    color: #000;
}

.recaptcha-links {
    font-size: 10px;
    color: #666;
}

.contact-form .send-button,
.footer-contact-form .send-button {
    padding: 12px 40px;
    background-color: #FFD700;
    color: #000;
    border: none;
    font-size: 14px;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 4px;
    transition: background-color 0.3s ease, transform 0.2s ease, box-shadow 0.3s ease;
    letter-spacing: 1px;
}

.contact-form .send-button:hover,
.footer-contact-form .send-button:hover {
    background-color: #FFC700;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(255, 215, 0, 0.4);
}

.contact-form .send-button:active,
.footer-contact-form .send-button:active {
    transform: translateY(0);
    box-shadow: 0 2px 6px rgba(255, 215, 0, 0.3);
}

.footer-section a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section a:hover {
    color: #DB5EFF;
}

.copyright {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 14px;
    position: relative;
    z-index: 1;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .footer-content {
        gap: 50px;
    }
}

@media (max-width: 968px) {
    .about-section {
        flex-direction: column;
    }

    .about-image,
    .about-content {
        flex: 1 1 100%;
        width: 100%;
    }

    .about-image {
        height: auto !important;
    }

    .about-image img {
        height: auto !important;
    }

    .about-page-section {
        flex-direction: column;
        gap: 40px;
    }

    .about-page-image,
    .about-page-text-box {
        flex: 1 1 100%;
        width: 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .ensembles-cards-container {
        gap: 30px;
    }

    .ensembles-cards-container > div {
        flex: 1 1 calc(50% - 15px);
        min-width: calc(50% - 15px);
        max-width: calc(50% - 15px);
    }

    .ensembles-gallery-container {
        gap: 25px;
        justify-content: center;
    }

    .ensembles-gallery-item {
        flex: 0 1 calc(50% - 12.5px);
        min-width: calc(50% - 12.5px);
        max-width: calc(50% - 12.5px);
    }

    .ensembles-gallery-item img {
        height: 350px;
    }

    .about-page-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .about-page-image img {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .image-gallery-section {
        padding: 60px 20px;
    }

    .gallery-container {
        gap: 15px;
    }

    .gallery-item {
        flex: 1 1 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
        max-width: calc(50% - 7.5px);
    }

    .faq-section {
        padding: 60px 30px;
    }

    .faq-container {
        gap: 40px;
    }

    .faq-header {
        flex: 1 1 100%;
        min-width: 100%;
        border-left: 4px solid #4A90E2;
        padding-left: 20px;
    }

    .faq-header h2 {
        font-size: 36px;
    }

    .faq-content {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .testimonials-section {
        padding: 60px 30px;
    }

    .testimonial-slide {
        min-width: 100% !important;
        width: 100% !important;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 35px;
        max-width: 100%;
    }

    /* Tablet: 2 columns */
    @media (min-width: 641px) {
        .service-card {
            flex: 1 1 calc(50% - 20px);
            min-width: calc(50% - 20px);
            max-width: calc(50% - 20px);
        }
    }

    /* Mobile: 1 column */
    @media (max-width: 640px) {
        .services-grid {
            flex-direction: column;
            gap: 30px;
        }

        .service-card {
            flex: 1 1 100%;
            min-width: 100%;
            max-width: 100%;
        }
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .contact-form .form-row,
    .footer-contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-row > div,
    .footer-contact-form .form-row > div {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
    }
}

/* Tablet breakpoint for form */
@media (max-width: 968px) and (min-width: 641px) {
    .contact-form .form-row > div,
    .footer-contact-form .form-row > div {
        flex: 1 1 calc(50% - 7.5px);
        min-width: calc(50% - 7.5px);
    }
}

@media (max-width: 768px) {
    header {
        padding: 15px 20px;
        flex-wrap: wrap;
        position: relative;
        z-index: 1002;
        background-color: rgba(0, 0, 0, 0.95);
    }

    .logo {
        font-size: 18px;
        letter-spacing: 1px;
        z-index: 1003;
        position: relative;
    }

    .menu-toggle {
        display: flex;
        z-index: 1003;
        position: relative;
    }

    /* Mobile Menu Overlay */
    nav {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        height: 100vh;
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        display: none;
        z-index: 1001;
        overflow-y: auto;
        padding-top: 80px;
        opacity: 0;
        transition: opacity 0.3s ease;
    }

    nav.active {
        display: block;
        opacity: 1;
    }

    /* Hide body scroll when menu is open */
    body.menu-open {
        overflow: hidden;
    }

    nav ul {
        flex-direction: column;
        gap: 0;
        padding: 0;
        width: 100%;
        list-style: none;
        margin: 0;
        display: flex;
    }

    nav ul li {
        width: 100%;
        margin: 0;
    }

    nav a {
        display: block;
        padding: 15px 30px;
        color: #fff;
        text-decoration: none;
        font-size: 18px;
        transition: background-color 0.3s ease, color 0.3s ease;
        width: 100%;
        text-align: left;
        border-bottom: none;
    }

    nav a:hover,
    nav a:active {
        background-color: rgba(219, 94, 255, 0.1);
        color: #DB5EFF;
        border-bottom: none;
    }

    nav a::after {
        display: none;
    }

    .hero-carousel {
        height: 350px;
    }

    .about-section {
        padding: 40px 20px;
        gap: 30px;
    }

    .about-image {
        height: auto !important;
    }

    .about-image img {
        height: auto !important;
    }

    .about-page-header {
        padding: 80px 20px 15px;
    }

    .about-page-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .about-page-subtitle {
        font-size: 16px;
    }

    .ensembles-page-header {
        padding: 80px 20px 20px;
    }

    .ensembles-page-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .ensembles-page-subtitle {
        font-size: 16px;
    }

    .djs-section {
        padding: 80px 20px 60px;
    }

    .djs-page-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .djs-page-subtitle {
        font-size: 16px;
    }

    .djs-main-image {
        margin-bottom: 20px;
    }

    .djs-gallery-thumbnails {
        gap: 12px;
    }

    .djs-gallery-thumb {
        flex: 0 0 calc(20% - 10px);
        min-width: 120px;
        max-width: 180px;
    }

    .djs-second-gallery {
        margin-top: 25px;
        gap: 15px;
    }

    .djs-second-gallery-item {
        flex: 0 0 calc(50% - 7.5px);
    }

    .music-coordination-section {
        padding: 80px 20px;
    }

    .music-coordination-content {
        margin-bottom: 40px;
    }

    .music-coordination-title {
        font-size: 32px;
        margin-bottom: 15px;
    }

    .music-coordination-subtitle {
        font-size: 16px;
    }

    .music-coordination-blocks {
        flex-direction: column;
        gap: 30px;
    }

    .coordination-block {
        flex-direction: column;
        gap: 20px;
    }

    .coordination-block-reverse {
        flex-direction: column;
    }

    .coordination-block-image {
        width: 100%;
        margin-bottom: 15px;
    }

    .coordination-block-image img {
        height: 100%;
    }

    .coordination-block-content {
        text-align: left;
        padding: 0;
    }

    .coordination-block-title {
        font-size: 28px;
    }

    .coordination-block-description {
        font-size: 15px;
    }

    .ensembles-cards-section {
        padding: 60px 20px;
    }

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

    .ensembles-cards-container > div {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .ensembles-cards-container > div img {
        height: 350px;
        width: 100%;
    }

    .ensembles-card-content {
        padding: 25px 20px;
    }

    .ensembles-card-title {
        font-size: 22px;
        margin-bottom: 10px;
    }

    .ensembles-card-description {
        font-size: 15px;
    }

    .ensembles-gallery-section {
        padding: 0 20px 60px;
    }

    .ensembles-gallery-container {
        gap: 25px;
        flex-direction: column;
    }

    .ensembles-gallery-item {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .ensembles-gallery-item img {
        height: 300px;
    }

    .about-page-section {
        padding: 15px 20px 40px;
        gap: 30px;
    }

    .about-page-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .about-page-image img {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .about-page-text-box {
        padding: 30px 25px 12px 25px;
    }

    .about-page-text-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-page-text-box p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .about-page-contact {
        margin-top: 12px;
        padding-top: 0px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .about-page-contact p {
        font-size: 15px;
    }

    .about-content h2 {
        font-size: 28px;
    }

    .about-content p {
        font-size: 15px;
    }

    .about-text-box {
        padding: 30px 25px;
    }

    .about-text-box h3 {
        font-size: 20px;
        margin-bottom: 20px;
    }

    .about-text-box p {
        font-size: 15px;
        margin-bottom: 15px;
    }

    .about-contact {
        margin-top: 25px;
        padding-top: 20px;
    }

    .about-contact p {
        font-size: 15px;
    }

    .image-gallery-section {
        padding: 50px 20px;
    }

    .gallery-container {
        gap: 10px;
    }

    .gallery-item {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .faq-section {
        padding: 50px 20px;
    }

    .faq-container {
        gap: 30px;
    }

    .faq-header {
        flex: 1 1 100%;
        min-width: 100%;
        padding-left: 15px;
    }

    .faq-header h2 {
        font-size: 32px;
    }

    .faq-content {
        flex: 1 1 100%;
        min-width: 100%;
    }

    .faq-item {
        margin-bottom: 30px;
    }

    .faq-question {
        font-size: 18px;
    }

    .faq-answer {
        font-size: 15px;
    }

    .testimonials-section {
        padding: 50px 20px;
    }

    .testimonial-slide {
        min-width: 100%;
        width: 100%;
        padding: 0 10px;
    }

    .testimonial-card {
        padding: 30px;
        max-width: 100%;
    }

    .testimonial-quote {
        font-size: 16px;
    }

    .testimonial-dots {
        margin-top: 25px;
    }

    .services-section {
        padding: 40px 20px;
    }

    .services-header {
        margin-bottom: 40px;
    }

    .services-header h2 {
        font-size: 28px;
    }

    .services-header p {
        font-size: 16px;
    }

    .services-grid {
        gap: 25px;
    }

    .service-card {
        padding: 15px;
    }

    .email-inquiry {
        padding: 40px 20px;
    }

    .email-inquiry p {
        font-size: 16px;
    }

    .contact-form .form-row {
        flex-direction: column;
    }

    .contact-form .form-row > div {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
    }

    footer {
        padding: 50px 20px 20px;
    }

    .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-logo img {
        max-width: 150px;
    }

    .footer-description {
        font-size: 13px;
        line-height: 1.7;
    }

    .footer-heading {
        font-size: 18px;
        margin-bottom: 20px;
    }

    .contact-info {
        gap: 20px;
    }

    .contact-item {
        gap: 12px;
    }

    .contact-label,
    .contact-value {
        font-size: 13px;
    }

    .social-icons {
        gap: 12px;
    }

    .social-icon {
        width: 40px;
        height: 40px;
        font-size: 18px;
    }

    .footer-contact-form {
        gap: 15px;
    }

    .contact-form input,
    .contact-form select,
    .contact-form textarea,
    .footer-contact-form input,
    .footer-contact-form select,
    .footer-contact-form textarea {
        padding: 10px 12px;
        font-size: 13px;
    }

    .contact-form .form-row,
    .footer-contact-form .form-row {
        flex-direction: column;
        gap: 15px;
    }

    .contact-form .form-row > div,
    .footer-contact-form .form-row > div {
        flex: 1 1 100%;
        min-width: 100%;
        width: 100%;
    }

    .contact-form .send-button,
    .footer-contact-form .send-button {
        padding: 10px 30px;
        font-size: 13px;
        width: auto;
    }

    .recaptcha-placeholder {
        padding: 12px;
        flex-wrap: wrap;
    }

    .recaptcha-logo {
        width: 100%;
        margin-top: 10px;
        align-items: flex-start;
    }

    .copyright {
        font-size: 12px;
        padding-top: 25px;
    }

    .service-card img {
        height: 200px;
    }

    .service-card h3 {
        font-size: 20px;
    }

    .service-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .logo {
        font-size: 16px;
    }

    .hero-carousel {
        height: 250px;
    }

    .about-page-title {
        font-size: 28px;
    }

    .about-page-subtitle {
        font-size: 14px;
    }

    .ensembles-page-header {
        padding: 60px 15px 30px;
    }

    .ensembles-page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .ensembles-page-subtitle {
        font-size: 14px;
    }

    .djs-section {
        padding: 60px 15px 40px;
    }

    .djs-page-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .djs-page-subtitle {
        font-size: 14px;
    }

    .djs-main-image {
        margin-bottom: 15px;
    }

    .djs-main-image img[src=""],
    .djs-main-image img:not([src]) {
        min-height: 300px;
    }

    .djs-gallery-thumbnails {
        gap: 10px;
    }

    .djs-gallery-thumb {
        flex: 0 0 calc(50% - 5px);
        min-width: calc(50% - 5px);
        max-width: calc(50% - 5px);
    }

    .djs-second-gallery {
        margin-top: 20px;
        gap: 10px;
    }

    .djs-second-gallery-item {
        flex: 0 0 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .music-coordination-section {
        padding: 60px 15px;
    }

    .music-coordination-content {
        margin-bottom: 30px;
    }

    .music-coordination-title {
        font-size: 28px;
        margin-bottom: 12px;
    }

    .music-coordination-subtitle {
        font-size: 14px;
    }

    .music-coordination-blocks {
        flex-direction: column;
        gap: 25px;
    }

    .coordination-block {
        flex-direction: column;
        gap: 15px;
    }

    .coordination-block-reverse {
        flex-direction: column;
    }

    .coordination-block-image {
        width: 100%;
        margin-bottom: 15px;
    }

    .coordination-block-image img {
        height: 100%;
    }

    .coordination-block-content {
        text-align: left;
        padding: 0;
    }

    .coordination-block-title {
        font-size: 24px;
    }

    .coordination-block-description {
        font-size: 14px;
    }

    .ensembles-cards-section {
        padding: 40px 15px;
    }

    .ensembles-cards-container {
        gap: 25px;
        flex-direction: column;
    }

    .ensembles-cards-container > div {
        flex: 1 1 100% !important;
        min-width: 100% !important;
        max-width: 100% !important;
        width: 100% !important;
    }

    .ensembles-cards-container > div img {
        height: 300px;
        width: 100%;
    }

    .ensembles-gallery-section {
        padding: 0 15px 40px;
    }

    .ensembles-gallery-container {
        gap: 20px;
        flex-direction: column;
    }

    .ensembles-gallery-item {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .ensembles-gallery-item img {
        height: 250px;
    }

    .ensembles-cards-container > div img {
        height: 300px;
    }

    .ensembles-card-content {
        padding: 20px 15px;
    }

    .ensembles-card-title {
        font-size: 20px;
        margin-bottom: 8px;
    }

    .ensembles-card-description {
        font-size: 14px;
    }

    .ensembles-cards-container > div {
        min-width: 100% !important;
    }

    .about-page-section {
        padding: 30px 15px;
        gap: 25px;
    }

    .about-page-image {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .about-page-image img {
        height: auto !important;
        min-height: auto !important;
        max-height: none !important;
    }

    .about-page-text-box {
        padding: 25px 20px;
    }

    .about-page-text-box h3 {
        font-size: 18px;
    }

    .about-page-text-box p {
        font-size: 14px;
    }

    .about-page-contact {
        margin-top: 12px;
        padding-top: 0px;
        margin-bottom: 0;
        padding-bottom: 0;
    }

    .about-page-contact p {
        font-size: 14px;
    }

    .about-content h2 {
        font-size: 24px;
    }

    .about-text-box {
        padding: 25px 20px;
    }

    .about-text-box h3 {
        font-size: 18px;
    }

    .about-text-box p {
        font-size: 14px;
    }

    .image-gallery-section {
        padding: 40px 15px;
    }

    .gallery-container {
        gap: 10px;
    }

    .gallery-item {
        flex: 1 1 100%;
        min-width: 100%;
        max-width: 100%;
    }

    .faq-section {
        padding: 40px 15px;
    }

    .faq-container {
        gap: 25px;
    }

    .faq-header {
        padding-left: 12px;
        border-left: 3px solid #4A90E2;
    }

    .faq-header h2 {
        font-size: 28px;
    }

    .faq-item {
        margin-bottom: 25px;
    }

    .faq-question {
        font-size: 16px;
        margin-bottom: 10px;
    }

    .faq-answer {
        font-size: 14px;
    }

    .testimonials-section {
        padding: 40px 15px;
    }

    .testimonial-slide {
        min-width: 100%;
        width: 100%;
        padding: 0 5px;
    }

    .testimonial-card {
        padding: 25px;
        max-width: 100%;
    }

    .testimonial-dots {
        margin-top: 20px;
    }

    .testimonial-dot {
        width: 10px;
        height: 10px;
    }

    .testimonial-stars {
        font-size: 20px;
        margin-bottom: 15px;
    }

    .testimonial-quote {
        font-size: 15px;
        margin-bottom: 25px;
    }

    .testimonial-avatar {
        width: 50px;
        height: 50px;
    }

    .testimonial-name {
        font-size: 14px;
    }

    .services-header h2 {
        font-size: 24px;
    }

    .carousel-dots {
        bottom: 10px;
    }

    .dot {
        width: 8px;
        height: 8px;
    }

    footer {
        padding: 40px 15px 15px;
    }

    .footer-content {
        gap: 35px;
    }

    .footer-logo img {
        max-width: 120px;
    }

    .footer-description {
        font-size: 12px;
        margin-bottom: 20px;
    }

    .footer-heading {
        font-size: 16px;
        margin-bottom: 15px;
    }

    .contact-info {
        gap: 18px;
    }

    .contact-icon {
        font-size: 16px;
    }

    .contact-label,
    .contact-value {
        font-size: 12px;
    }

    .social-icon {
        width: 38px;
        height: 38px;
        font-size: 16px;
    }

    .footer-contact-form input,
    .footer-contact-form select,
    .footer-contact-form textarea {
        padding: 10px;
        font-size: 12px;
        min-height: 100px;
    }

    .footer-contact-form .checkbox-label {
        font-size: 12px;
    }

    .footer-contact-form .send-button {
        padding: 12px 20px;
        font-size: 12px;
    }

    .recaptcha-placeholder {
        padding: 10px;
        gap: 10px;
    }

    .recaptcha-placeholder .recaptcha-label {
        font-size: 12px;
    }

    .recaptcha-logo {
        font-size: 10px;
    }

    .copyright {
        font-size: 11px;
        padding-top: 20px;
    }
}

/* ============================================================
*  CATEGORY ALT PAGE STYLES
* ============================================================ */
.category-alt-main {
    background-color: #000;
    padding: 110px 20px 80px;
    min-height: calc(100vh - 200px);
}

.category-alt-container {
    max-width: 1360px;
    margin: 0 auto;
    position: relative;
}

.category-alt-search-wrapper {
    display: flex;
    gap: 12px;
    align-items: center;
    justify-content: flex-end;
    margin-bottom: 20px;
    flex-wrap: wrap;
    width: 100%;
}

.category-alt-search-input {
    padding: 12px 18px;
    background-color: #0f0f0f;
    border: 1px solid rgba(219, 94, 255, 0.4);
    border-radius: 10px;
    color: #fff;
    min-width: 220px;
    transition: all 0.3s ease;
}

.category-alt-search-input:focus {
    outline: none;
    border-color: var(--accent-color);
    box-shadow: 0 0 14px rgba(219, 94, 255, 0.2);
}

.category-alt-search-wrapper.full-width {
    flex-direction: column;
    align-items: stretch;
}

.category-alt-search-button {
    padding: 12px 26px;
    background-color: var(--accent-color);
    color: #000;
    border: none;
    border-radius: 999px;
    font-weight: 700;
    letter-spacing: 1px;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    text-transform: uppercase;
}

.category-alt-search-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 18px rgba(219, 94, 255, 0.35);
}

.category-alt-search-results {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(219, 94, 255, 0.2);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 25px;
}

.category-alt-search-results h4 {
    margin: 0 0 15px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 16px;
}

.category-alt-search-result-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.category-alt-search-result-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    padding: 14px 18px;
    background: #0e0e0e;
    border-radius: 12px;
    border: 1px solid rgba(255, 255, 255, 0.05);
    cursor: pointer;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.category-alt-search-result-item:hover {
    border-color: var(--accent-color);
    transform: translateX(4px);
}

.category-alt-search-result-info {
    flex: 1;
}

.category-alt-search-result-title {
    margin: 0;
    color: #fff;
    font-size: 16px;
}

.category-alt-search-result-desc {
    margin: 4px 0 0;
    color: #a0a0a0;
    font-size: 13px;
}

.category-alt-search-result-type {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(219, 94, 255, 0.15);
    color: var(--accent-color);
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.category-alt-steps {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.category-alt-step {
    background: linear-gradient(135deg, #050505, #111);
    border: 1px solid rgba(219, 94, 255, 0.15);
    border-radius: 20px;
    padding: 40px;
    display: none;
    box-shadow: 0 20px 70px rgba(0, 0, 0, 0.4);
}

.category-alt-step.active {
    display: block;
}

.category-alt-hero {
    text-align: center;
    margin-bottom: 30px;
}

.category-alt-hero h2 {
    margin: 0 0 10px;
    font-size: 32px;
    color: #fff;
}

.category-alt-hero p {
    margin: 0 auto 18px;
    color: #c5c5c5;
    font-size: 16px;
    max-width: 640px;
}

.category-alt-category-list {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
    gap: 24px;
}

.category-alt-category-card {
    width: 100%;
    max-width: 100%;
    min-width: 0;
    background: #0c0c0c;
    border-radius: 16px;
    border: 1px solid rgba(219, 94, 255, 0.18);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    flex-direction: column;
}

.category-alt-category-card.active {
    border-color: var(--accent-color);
    transform: translateY(-6px);
    box-shadow: 0 15px 40px rgba(219, 94, 255, 0.25);
}

.category-alt-category-card img {
    width: 100%;
    height: 180px;
    object-fit: cover;
    object-position: center top;
    display: block;
    border-top-left-radius: 16px;
    border-top-right-radius: 16px;
}

.category-alt-category-card-content {
    padding: 16px 20px 22px;
}

.category-alt-category-card-content h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 20px;
}

.category-alt-category-card-content p {
    margin: 0;
    color: #989898;
    font-size: 14px;
    line-height: 1.5;
}

.category-alt-subcategory-panel {
    margin-top: 35px;
    padding: 30px;
    background: rgba(255, 255, 255, 0.02);
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.category-alt-subcategory-panel h3 {
    margin: 0 0 20px;
    color: #fff;
    font-size: 22px;
    letter-spacing: 1px;
}

.category-alt-subcategory-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
}

.category-alt-subcategory-group {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    width: 100%;
}

.category-alt-subcategory-card {
    flex: 1 1 calc(33.333% - 18px);
    min-width: 220px;
    background: #121212;
    border-radius: 14px;
    padding: 18px 20px;
    border: 1px solid rgba(219, 94, 255, 0.18);
    cursor: pointer;
    transition: transform 0.25s ease, border-color 0.25s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.category-alt-subcategory-card:hover {
    transform: translateY(-5px);
    border-color: var(--accent-color);
    box-shadow: 0 10px 25px rgba(219, 94, 255, 0.2);
}

.category-alt-subcategory-card h4 {
    margin: 0;
    color: #fff;
    font-size: 17px;
    letter-spacing: 0.5px;
}

.category-alt-subcategory-card::after {
    content: '→';
    color: var(--accent-color);
    font-size: 20px;
    font-weight: 700;
}

.category-alt-step-two-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
    margin-bottom: 25px;
}

.category-alt-back-step {
    border: 1px solid var(--accent-color);
    background: transparent;
    color: var(--accent-color);
    padding: 10px 26px;
    border-radius: 999px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 13px;
    cursor: pointer;
    transition: all 0.25s ease;
}

.category-alt-back-step:hover {
    background: var(--accent-color);
    color: #000;
}

.category-alt-step-context {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.category-alt-context-pill {
    background: rgba(219, 94, 255, 0.12);
    border: 1px solid rgba(219, 94, 255, 0.4);
    border-radius: 999px;
    padding: 8px 18px;
    color: #fff;
    font-size: 13px;
    letter-spacing: 0.3px;
}

.category-alt-persons {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.category-alt-persons-group {
    display: flex;
    flex-direction: column;
    gap: 22px;
}

.category-alt-person-card {
    background: #0c0c0c;
    border-radius: 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    padding: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.45);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.category-alt-person-trigger {
    width: 100%;
    background: transparent;
    border: none;
    color: inherit;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    cursor: pointer;
}

.category-alt-person-trigger-info {
    display: flex;
    align-items: center;
    gap: 15px;
}

.category-alt-person-trigger-info img {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 14px;
}

.category-alt-person-trigger-info h3 {
    margin: 0;
    color: #fff;
    font-size: 20px;
}

.category-alt-person-trigger-icon {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(219, 94, 255, 0.4);
    color: var(--accent-color);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    transition: background 0.3s ease, color 0.3s ease;
}

.category-alt-person-body {
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.35s ease, opacity 0.25s ease, margin-top 0.25s ease;
}

.category-alt-person-card.open {
    border-color: rgba(219, 94, 255, 0.4);
    box-shadow: 0 15px 45px rgba(219, 94, 255, 0.2);
}

.category-alt-person-card.open .category-alt-person-body {
    max-height: 1200px;
    opacity: 1;
    margin-top: 20px;
}

.category-alt-person-card.open .category-alt-person-trigger-icon {
    background: var(--accent-color);
    color: #000;
}

.category-alt-person-top {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    align-items: stretch;
    margin-bottom: 20px;
}

.category-alt-person-top img {
    width: 160px;
    max-width: 200px;
    height: 100%;
    min-height: 160px;
    object-fit: cover;
    border-radius: 16px;
}

.category-alt-person-info {
    flex: 1;
}

.category-alt-person-info h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 22px;
}

.category-alt-person-info p, .category-alt-person-info ul {
    margin: 0;
    color: #b8b8b8;
    line-height: 1.6;
}
.category-alt-person-info ul {
    margin:10px 20px;
}
.category-alt-performance-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.category-alt-performance-item {
    background: #131313;
    border-radius: 14px;
    padding: 15px 18px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.category-alt-performance-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.category-alt-performance-header h4 {
    margin: 0;
    color: #fff;
    font-size: 18px;
}

.category-alt-performance-type {
    padding: 6px 14px;
    border-radius: 999px;
    background: rgba(219, 94, 255, 0.18);
    color: var(--accent-color);
    text-transform: uppercase;
    font-size: 11px;
    letter-spacing: 1px;
}

.category-alt-performance-item p {
    margin: 10px 0 0;
    color: #bdbdbd;
    line-height: 1.6;
}

.category-alt-performance-media {
    margin-top: 12px;
}

.category-alt-performance-media audio,
.category-alt-performance-media video {
    width: 100%;
    border-radius: 10px;
    background: #000;
}
.category-alt-performance-media video {
    max-height: 420px;
    object-fit: cover;
}

.category-alt-performance-media img {
    width: 100%;
    border-radius: 12px;
}

.category-alt-placeholder {
    width: 100%;
    text-align: center;
    color: #8d8d8d;
    margin: 10px 0;
    font-size: 15px;
    letter-spacing: 0.3px;
}

.category-alt-subcategory-empty,
.category-alt-no-performers {
    width: 100%;
    text-align: center;
    color: #9ea0a5;
    font-size: 14px;
    line-height: 1.5;
}

.category-alt-no-performers {
    font-style: italic;
    margin-top: 20px;
}

@media (max-width: 1200px) {
    .category-alt-category-card {
        flex: 1 1 calc(50% - 20px);
    }

    .category-alt-subcategory-card {
        flex: 1 1 calc(50% - 18px);
    }
}

@media (max-width: 992px) {
    .category-alt-category-card {
        flex: 1 1 calc(50% - 15px);
    }

    .category-alt-subcategory-card {
        flex: 1 1 calc(50% - 15px);
    }

    .category-alt-person-trigger-info {
        flex-wrap: wrap;
    }

    .category-alt-person-trigger-info img {
        width: 72px;
        height: 72px;
    }

    .category-alt-person-top {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-alt-person-top img {
        width: 100%;
        max-width: 280px;
        min-height: auto;
        height: auto;
    }
}

@media (max-width: 768px) {
    .category-alt-main {
        padding: 90px 15px 60px;
    }

    .category-alt-step {
        padding: 30px 20px;
    }

    .category-alt-step-two-header {
        flex-direction: column;
        align-items: stretch;
    }

    .category-alt-back-step {
        width: 100%;
        text-align: center;
    }

    .category-alt-hero h2 {
        font-size: 26px;
    }

    .category-alt-hero p {
        font-size: 14px;
    }

    .category-alt-search-results {
        padding: 18px;
    }

    .category-alt-category-card {
        flex: 1 1 100%;
    }

    .category-alt-subcategory-card {
        flex: 1 1 100%;
    }

    .category-alt-person-top {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .category-alt-person-top img {
        width: 200px;
        height: 200px;
        min-height: 200px;
    }

    .category-alt-person-info h3 {
        font-size: 20px;
    }

    .category-alt-search-wrapper {
        justify-content: center;
    }
}

@media (max-width: 576px) {
    .category-alt-search-wrapper {
        flex-direction: column;
        align-items: stretch;
    }

    .category-alt-search-input,
    .category-alt-search-button {
        width: 100%;
    }

    .category-alt-step {
        padding: 24px 18px;
    }

    .category-alt-category-card,
    .category-alt-subcategory-card {
        flex: 1 1 100%;
    }

    .category-alt-category-card-content h3 {
        font-size: 18px;
    }

    .category-alt-person-trigger-info {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .category-alt-person-trigger-info img {
        width: 56px;
        height: 56px;
    }

    .category-alt-person-top img {
        max-width: 220px;
    }

    .category-alt-performance-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .category-alt-performance-type {
        align-self: flex-start;
    }
}

