

@import url('https://fonts.googleapis.com/css2?family=Montserrat+Alternates:wght@400;600;700;800&family=Manrope:wght@300;400;500;600;700&display=swap');

:root {
    
    --deep-midnight: #0E0E11;
    --soft-graphite: #1B1C22;
    --spotlight-white: #F5F5F7;

    --vivid-violet: #B85EFF;
    --cool-cyan: #00D1FF;
    --warm-amber: #FF9C4A;
    --pink-neon: #FF4B73;
    --gold-sparkle: #FFD452;

    --font-heading: 'Montserrat Alternates', sans-serif;
    --font-body: 'Manrope', sans-serif;

    --glow-violet: 0 0 20px rgba(184, 94, 255, 0.5);
    --glow-cyan: 0 0 20px rgba(0, 209, 255, 0.5);
    --glow-amber: 0 0 20px rgba(255, 156, 74, 0.5);
    --glow-pink: 0 0 20px rgba(255, 75, 115, 0.5);
    --glow-gold: 0 0 20px rgba(255, 212, 82, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background-color: var(--deep-midnight);
    color: var(--spotlight-white);
    line-height: 1.6;
    overflow-x: hidden;
    position: relative;
}

.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--vivid-violet);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 15s infinite ease-in-out;
}

.particle:nth-child(2n) {
    background: var(--cool-cyan);
    animation-duration: 20s;
}

.particle:nth-child(3n) {
    background: var(--gold-sparkle);
    animation-duration: 25s;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) translateX(0);
        opacity: 0.6;
    }
    50% {
        transform: translateY(-100px) translateX(50px);
        opacity: 0.3;
    }
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

h1 {
    font-size: clamp(2.5rem, 5vw, 4.5rem);
    text-shadow: var(--glow-violet);
}

h2 {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2.5rem);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    margin-bottom: 1rem;
}

a {
    color: var(--cool-cyan);
    text-decoration: none;
    transition: all 0.3s ease;
}

a:hover {
    color: var(--vivid-violet);
    text-shadow: var(--glow-violet);
}

header {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(14, 14, 17, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: 1rem 0;
    border-bottom: 1px solid rgba(184, 94, 255, 0.2);
}

nav {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--spotlight-white);
    text-shadow: var(--glow-violet);
    letter-spacing: 1px;
}

.nav-links {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.nav-links a {
    color: var(--spotlight-white);
    font-weight: 500;
    position: relative;
    padding: 0.5rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--vivid-violet);
    transition: width 0.3s ease;
    box-shadow: var(--glow-violet);
}

.nav-links a:hover::after {
    width: 100%;
}

.burger-menu {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    background: none;
    border: none;
    padding: 0.5rem;
}

.burger-menu span {
    width: 25px;
    height: 3px;
    background: var(--vivid-violet);
    border-radius: 3px;
    transition: all 0.3s ease;
    box-shadow: var(--glow-violet);
}

.burger-menu.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
}

.burger-menu.active span:nth-child(2) {
    opacity: 0;
}

.burger-menu.active span:nth-child(3) {
    transform: rotate(-45deg) translate(7px, -7px);
}

main {
    position: relative;
    z-index: 2;
    margin-top: 80px;
}

.hero {
    min-height: 90vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: radial-gradient(ellipse at center, rgba(184, 94, 255, 0.1) 0%, var(--deep-midnight) 70%);
}

.spotlight {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(184, 94, 255, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: spotlight-sweep 8s infinite ease-in-out;
    pointer-events: none;
}

@keyframes spotlight-sweep {
    0%, 100% {
        transform: translate(-200px, -200px);
    }
    50% {
        transform: translate(200px, 200px);
    }
}

.hero-content {
    text-align: center;
    z-index: 10;
    position: relative;
    padding: 2rem;
}

.hero h1 {
    margin-bottom: 1.5rem;
    animation: fade-in-up 1s ease-out;
}

.hero p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    margin-bottom: 2rem;
    opacity: 0.9;
    animation: fade-in-up 1s ease-out 0.2s both;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fade-in-up 1s ease-out 0.4s both;
}

.btn {
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: linear-gradient(135deg, var(--vivid-violet), var(--cool-cyan));
    border-color: var(--vivid-violet);
    color: var(--spotlight-white);
    box-shadow: var(--glow-violet);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(184, 94, 255, 0.6);
}

.btn-secondary {
    background: transparent;
    border-color: var(--cool-cyan);
    color: var(--cool-cyan);
    box-shadow: var(--glow-cyan);
}

.btn-secondary:hover {
    background: var(--cool-cyan);
    color: var(--deep-midnight);
    transform: translateY(-3px);
}

.confetti {
    position: absolute;
    width: 10px;
    height: 10px;
    background: var(--vivid-violet);
    animation: confetti-fall 3s infinite;
}

.confetti:nth-child(2n) {
    background: var(--cool-cyan);
    animation-delay: 0.5s;
}

.confetti:nth-child(3n) {
    background: var(--gold-sparkle);
    animation-delay: 1s;
}

.confetti:nth-child(4n) {
    background: var(--pink-neon);
    animation-delay: 1.5s;
}

@keyframes confetti-fall {
    0% {
        transform: translateY(-100vh) rotate(0deg);
        opacity: 1;
    }
    100% {
        transform: translateY(100vh) rotate(720deg);
        opacity: 0;
    }
}

.section {
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
}

.section-title {
    text-align: center;
    margin-bottom: 3rem;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 4px;
    background: linear-gradient(90deg, var(--vivid-violet), var(--cool-cyan));
    border-radius: 2px;
    box-shadow: var(--glow-violet);
}

.categories-wheel {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    min-height: 500px;
}

.wheel-container {
    position: relative;
    width: 400px;
    height: 400px;
    margin: 0 auto;
}

.wheel-item {
    position: absolute;
    width: 120px;
    height: 120px;
    background: rgba(27, 28, 34, 0.8);
    border: 2px solid var(--vivid-violet);
    border-radius: 50%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: var(--glow-violet);
    transform: translate(-50%, -50%);
}

.wheel-item[data-category="weddings"] {
    top: 0;
    left: 50%;
}

.wheel-item[data-category="corporate"] {
    top: 50%;
    right: 0;
    left: auto;
    transform: translate(50%, -50%);
}

.wheel-item[data-category="kids"] {
    bottom: 0;
    top: auto;
    left: 50%;
    transform: translate(-50%, 50%);
}

.wheel-item[data-category="birthday"] {
    top: 50%;
    left: 0;
    transform: translate(-50%, -50%);
}

.wheel-item[data-category="themed"] {
    top: 15%;
    right: 15%;
    left: auto;
    transform: translate(50%, -50%);
}

.wheel-item:hover {
    transform: translate(-50%, -50%) scale(1.1);
    box-shadow: 0 0 30px rgba(184, 94, 255, 0.8);
    background: rgba(184, 94, 255, 0.2);
    z-index: 5;
}

.wheel-item[data-category="corporate"]:hover,
.wheel-item[data-category="themed"]:hover {
    transform: translate(50%, -50%) scale(1.1);
}

.wheel-item[data-category="kids"]:hover {
    transform: translate(-50%, 50%) scale(1.1);
}

.wheel-item i {
    font-size: 2rem;
    margin-bottom: 0.5rem;
    color: var(--vivid-violet);
}

.wheel-item span {
    font-size: 0.875rem;
    font-weight: 600;
    text-align: center;
}

.wheel-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 140px;
    height: 140px;
    background: linear-gradient(135deg, var(--vivid-violet), var(--cool-cyan));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: 700;
    box-shadow: 0 0 40px rgba(184, 94, 255, 0.6);
    z-index: 10;
}

.before-after-wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.before-after-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
}

.before-after-grid > div {
    background: rgba(27, 28, 34, 0.6);
    padding: 2.5rem;
    border-radius: 15px;
}

.before-after-grid > div:first-child {
    border: 1px solid rgba(184, 94, 255, 0.3);
}

.before-after-grid > div:last-child {
    border: 1px solid rgba(0, 209, 255, 0.3);
}

.before-after-grid > div h3 {
    margin-bottom: 1.5rem;
    font-size: 1.75rem;
}

.before-after-grid > div:first-child h3 {
    color: var(--vivid-violet);
}

.before-after-grid > div:last-child h3 {
    color: var(--cool-cyan);
}

.before-after-grid > div p {
    margin-bottom: 1rem;
    line-height: 1.8;
}

.before-after-grid > div ul {
    list-style: none;
    padding: 0;
    margin-top: 1.5rem;
}

.before-after-grid > div ul li {
    margin-bottom: 0.75rem;
    padding-left: 1.5rem;
    position: relative;
}

.before-after-grid > div:first-child ul li i {
    position: absolute;
    left: 0;
    color: var(--pink-neon);
}

.before-after-grid > div:last-child ul li i {
    position: absolute;
    left: 0;
    color: var(--cool-cyan);
}

.before-after-cta {
    text-align: center;
    margin-top: 3rem;
}

.before-after-cta p {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    opacity: 0.9;
}

.before-after-container {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
    overflow: hidden;
    border-radius: 20px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.before-after-slider {
    position: relative;
    width: 100%;
    height: 500px;
    overflow: hidden;
}

.before-after-slider img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.curtain {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    background: var(--deep-midnight);
    z-index: 5;
    transition: left 0.5s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    border-right: 3px solid var(--vivid-violet);
    box-shadow: var(--glow-violet);
}

.curtain::before {
    content: 'BEFORE';
    color: var(--spotlight-white);
    font-size: 2rem;
    font-weight: 700;
    text-shadow: var(--glow-violet);
}

.curtain.open {
    left: 100%;
}

.curtain.open::before {
    content: 'AFTER';
}

.masonry-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2rem;
    padding: 2rem 0;
}

.masonry-item {
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
    cursor: pointer;
}

.masonry-item:hover {
    border-color: var(--vivid-violet);
    box-shadow: var(--glow-violet);
    transform: translateY(-5px);
}

.masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.3s ease;
}

.masonry-item:hover img {
    transform: scale(1.1);
}

.masonry-item-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(14, 14, 17, 0.95), transparent);
    padding: 1.5rem;
    transform: translateY(100%);
    transition: transform 0.3s ease;
}

.masonry-item:hover .masonry-item-overlay {
    transform: translateY(0);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.feature-block {
    background: rgba(27, 28, 34, 0.6);
    padding: 2rem;
    border-radius: 15px;
    border: 1px solid rgba(184, 94, 255, 0.3);
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-block::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(184, 94, 255, 0.1) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.feature-block:hover::before {
    opacity: 1;
}

.feature-block:hover {
    transform: translateY(-10px);
    border-color: var(--vivid-violet);
    box-shadow: var(--glow-violet);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    color: var(--vivid-violet);
    filter: drop-shadow(var(--glow-violet));
}

.feature-block h3 {
    margin-bottom: 1rem;
    color: var(--spotlight-white);
}

.form-container {
    background: rgba(27, 28, 34, 0.8);
    padding: 3rem;
    border-radius: 20px;
    border: 1px solid rgba(184, 94, 255, 0.3);
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    color: var(--spotlight-white);
    font-weight: 500;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem;
    background: rgba(14, 14, 17, 0.8);
    border: 2px solid rgba(184, 94, 255, 0.3);
    border-radius: 10px;
    color: var(--spotlight-white);
    font-family: var(--font-body);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--vivid-violet);
    box-shadow: var(--glow-violet);
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.checkbox-group input[type="checkbox"] {
    width: auto;
    margin-top: 0.25rem;
    cursor: pointer;
}

.checkbox-group label {
    margin-bottom: 0;
    font-size: 0.9rem;
}

footer {
    background: var(--soft-graphite);
    padding: 3rem 2rem;
    text-align: center;
    border-top: 1px solid rgba(184, 94, 255, 0.2);
    margin-top: 5rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
}

.footer-links {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.footer-links a {
    color: var(--spotlight-white);
    opacity: 0.8;
    transition: opacity 0.3s ease;
}

.footer-links a:hover {
    opacity: 1;
    color: var(--vivid-violet);
}

.cookie-popup {
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    max-width: 500px;
    background: rgba(27, 28, 34, 0.95);
    padding: 2rem;
    border-radius: 15px;
    border: 2px solid var(--vivid-violet);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5), var(--glow-violet);
    z-index: 10000;
    transform: translateY(150%);
    transition: transform 0.5s ease;
}

.cookie-popup.show {
    transform: translateY(0);
}

.cookie-popup p {
    margin-bottom: 1rem;
    font-size: 0.9rem;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
}

.cookie-buttons button {
    flex: 1;
    padding: 0.75rem;
    border: none;
    border-radius: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-accept {
    background: var(--vivid-violet);
    color: var(--spotlight-white);
}

.cookie-accept:hover {
    background: var(--cool-cyan);
}

.cookie-decline {
    background: transparent;
    color: var(--spotlight-white);
    border: 1px solid var(--spotlight-white);
}

.cookie-decline:hover {
    background: rgba(255, 255, 255, 0.1);
}

.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(14, 14, 17, 0.98);
    z-index: 10000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    max-width: 90%;
    max-height: 90%;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 90vh;
    border-radius: 10px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--spotlight-white);
    font-size: 2rem;
    cursor: pointer;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.lightbox-close:hover {
    background: var(--vivid-violet);
    box-shadow: var(--glow-violet);
}

.scene-builder {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    padding: 3rem 0;
}

.photo-zone-card {
    position: relative;
    background: rgba(27, 28, 34, 0.8);
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(184, 94, 255, 0.3);
    transition: all 0.3s ease;
    cursor: pointer;
}

.photo-zone-card:hover {
    border-color: var(--vivid-violet);
    box-shadow: var(--glow-violet);
    transform: translateY(-10px);
}

.photo-zone-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(184, 94, 255, 0.3) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.photo-zone-card:hover::before {
    opacity: 1;
    animation: flash 0.5s ease;
}

@keyframes flash {
    0%, 100% {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
}

.photo-zone-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.photo-zone-card:hover .photo-zone-image {
    transform: scale(1.05);
}

.photo-zone-info {
    padding: 1.5rem;
    position: relative;
    z-index: 2;
}

.photo-zone-info h3 {
    margin-bottom: 0.5rem;
    color: var(--vivid-violet);
}

.split-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 500px;
    margin: 3rem 0;
}

.split-section.reverse {
    grid-template-columns: 1fr 1fr;
}

.split-content {
    padding: 3rem;
    display: flex;
    flex-direction: column;
    justify-content: center;
    background: rgba(27, 28, 34, 0.6);
    position: relative;
}

.split-image {
    position: relative;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-image::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184, 94, 255, 0.2), rgba(0, 209, 255, 0.2));
}

.filter-buttons {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.filter-btn {
    padding: 0.75rem 1.5rem;
    background: rgba(27, 28, 34, 0.8);
    border: 2px solid rgba(184, 94, 255, 0.3);
    border-radius: 25px;
    color: var(--spotlight-white);
    font-family: var(--font-body);
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.filter-btn:hover,
.filter-btn.active {
    background: var(--vivid-violet);
    border-color: var(--vivid-violet);
    box-shadow: var(--glow-violet);
}

@keyframes fade-in-up {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fade-in-up 0.6s ease-out;
}

.error-page {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
}

.neon-sign {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 8vw, 6rem);
    color: var(--vivid-violet);
    text-shadow: 
        0 0 10px var(--vivid-violet),
        0 0 20px var(--vivid-violet),
        0 0 30px var(--vivid-violet),
        0 0 40px var(--vivid-violet);
    animation: neon-flicker 2s infinite;
    margin-bottom: 2rem;
}

@keyframes neon-flicker {
    0%, 100% {
        opacity: 1;
        text-shadow: 
            0 0 10px var(--vivid-violet),
            0 0 20px var(--vivid-violet),
            0 0 30px var(--vivid-violet),
            0 0 40px var(--vivid-violet);
    }
    50% {
        opacity: 0.8;
        text-shadow: 
            0 0 5px var(--vivid-violet),
            0 0 10px var(--vivid-violet),
            0 0 15px var(--vivid-violet),
            0 0 20px var(--vivid-violet);
    }
}

.thank-you-container {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2rem;
    position: relative;
    overflow: hidden;
}

.confetti-burst {
    position: absolute;
    width: 100%;
    height: 100%;
    pointer-events: none;
}

.legal-page {
    background: white;
    color: black;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    font-family: Arial, sans-serif;
}

.legal-page h1,
.legal-page h2 {
    color: black;
    font-family: Arial, sans-serif;
}

.legal-page a {
    color: black;
    text-decoration: underline;
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100%;
        background: rgba(14, 14, 17, 0.98);
        flex-direction: column;
        padding: 2rem;
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        border-top: 1px solid rgba(184, 94, 255, 0.2);
    }
    
    .nav-links.active {
        transform: translateX(0);
    }
    
    .burger-menu {
        display: flex;
    }
    
    .split-section {
        grid-template-columns: 1fr;
    }
    
    .categories-wheel {
        min-height: 400px;
        padding: 2rem 0;
    }
    
    .wheel-container {
        width: 300px;
        height: 300px;
    }
    
    .wheel-item {
        width: 90px;
        height: 90px;
    }
    
    .wheel-item i {
        font-size: 1.5rem;
    }
    
    .wheel-item span {
        font-size: 0.75rem;
    }
    
    .wheel-center {
        width: 100px;
        height: 100px;
        font-size: 1.2rem;
    }
    
    .cookie-popup {
        left: 10px;
        right: 10px;
        bottom: 10px;
    }
    
    .before-after-wrapper {
        max-width: 100% !important;
        padding: 0 1rem;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
        margin-top: 2rem !important;
    }
    
    .before-after-grid > div {
        padding: 2rem 1.5rem !important;
    }
    
    .before-after-grid > div h3 {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
    }
    
    .before-after-grid > div p {
        font-size: 1rem !important;
        line-height: 1.7 !important;
    }
    
    .before-after-cta {
        margin-top: 2rem !important;
    }
    
    .before-after-cta p {
        font-size: 1.1rem !important;
        margin-bottom: 1.5rem !important;
    }
    
    .section {
        padding: 3rem 1.5rem;
    }
    
    .hero {
        min-height: 70vh;
    }
    
    .masonry-grid {
        grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
        gap: 1.5rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 1.5rem;
    }
    
    .before-after-container {
        border-radius: 15px;
    }
    
    .before-after-slider {
        height: 400px;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 2rem !important;
    }
}

@media (max-width: 480px) {
    .hero {
        min-height: 60vh;
    }
    
    .hero-content {
        padding: 1rem;
    }
    
    .section {
        padding: 2rem 1rem;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn {
        width: 100%;
        padding: 0.875rem 1.5rem;
        font-size: 1rem;
    }
    
    .categories-wheel {
        min-height: 350px;
        padding: 1.5rem 0;
    }
    
    .wheel-container {
        width: 280px;
        height: 280px;
    }
    
    .wheel-item {
        width: 80px;
        height: 80px;
    }
    
    .wheel-item i {
        font-size: 1.25rem;
        margin-bottom: 0.25rem;
    }
    
    .wheel-item span {
        font-size: 0.65rem;
    }
    
    .wheel-center {
        width: 90px;
        height: 90px;
        font-size: 1rem;
    }
    
    .before-after-slider {
        height: 300px;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div {
        padding: 1.5rem !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div h3 {
        font-size: 1.5rem !important;
    }
    
    .split-content {
        padding: 2rem 1.5rem;
    }
    
    .form-container {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 320px) {
    .hero {
        min-height: 50vh;
        padding: 1rem;
    }
    
    .hero-content {
        padding: 1rem 0.5rem;
    }
    
    .hero h1 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
        line-height: 1.3;
    }
    
    .hero p {
        font-size: 0.9rem;
        margin-bottom: 1.5rem;
    }
    
    .section {
        padding: 1.5rem 0.5rem;
    }
    
    .section-title {
        font-size: 1.25rem;
        margin-bottom: 1.5rem;
        padding: 0 0.5rem;
    }
    
    .section-title::after {
        width: 60px;
        height: 3px;
    }
    
    .categories-wheel {
        min-height: 280px;
        padding: 1rem 0;
    }
    
    .wheel-container {
        width: 240px;
        height: 240px;
    }
    
    .wheel-item {
        width: 65px;
        height: 65px;
    }
    
    .wheel-item i {
        font-size: 0.9rem;
        margin-bottom: 0.15rem;
    }
    
    .wheel-item span {
        font-size: 0.55rem;
        line-height: 1.2;
    }
    
    .wheel-center {
        width: 75px;
        height: 75px;
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.7rem 1rem;
        font-size: 0.85rem;
        width: 100%;
        max-width: 280px;
    }
    
    .cta-buttons {
        gap: 0.75rem;
        width: 100%;
        padding: 0 0.5rem;
    }
    
    .before-after-slider {
        height: 220px;
    }
    
    .before-after-container {
        border-radius: 10px;
        margin: 0 0.5rem;
    }
    
    .before-after-wrapper {
        max-width: 100% !important;
        padding: 0 0.5rem !important;
        margin: 0 !important;
    }
    
    .before-after-grid {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 1.5rem !important;
    }
    
    .before-after-grid > div {
        padding: 1.25rem 1rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .before-after-grid > div h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .before-after-grid > div p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .before-after-grid > div ul {
        margin-left: 1.25rem !important;
        margin-top: 0.75rem !important;
    }
    
    .before-after-grid > div ul li {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        padding-left: 1.25rem !important;
    }
    
    .before-after-grid > div ul li i {
        font-size: 0.75rem !important;
    }
    
    .before-after-cta {
        margin-top: 1.5rem !important;
        padding: 0 0.5rem;
    }
    
    .before-after-cta p {
        font-size: 0.9rem !important;
        margin-bottom: 1.25rem !important;
        line-height: 1.5 !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] {
        grid-template-columns: 1fr !important;
        gap: 1.25rem !important;
        margin-top: 1.5rem !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div {
        padding: 1.25rem 1rem !important;
        border-radius: 12px !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div h3 {
        font-size: 1.15rem !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div p {
        font-size: 0.85rem !important;
        line-height: 1.6 !important;
        margin-bottom: 0.75rem !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div ul {
        margin-left: 1.25rem !important;
        margin-top: 0.75rem !important;
    }
    
    .section > div[style*="grid-template-columns: 1fr 1fr"] > div ul li {
        font-size: 0.8rem !important;
        margin-bottom: 0.5rem !important;
        padding-left: 1.25rem !important;
    }
    
    .masonry-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .masonry-item {
        border-radius: 10px;
    }
    
    .masonry-item-overlay {
        padding: 0.875rem;
    }
    
    .masonry-item-overlay h3 {
        font-size: 0.95rem;
        margin-bottom: 0.5rem;
    }
    
    .masonry-item-overlay p {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 1.5rem 0;
    }
    
    .feature-block {
        padding: 1.25rem 1rem;
        border-radius: 12px;
    }
    
    .feature-icon {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-block h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .feature-block p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .filter-buttons {
        gap: 0.5rem;
        margin-bottom: 1.5rem;
        flex-wrap: wrap;
        padding: 0 0.5rem;
    }
    
    .filter-btn {
        padding: 0.6rem 1rem;
        font-size: 0.8rem;
        border-radius: 20px;
    }
    
    .split-section {
        grid-template-columns: 1fr !important;
        gap: 0 !important;
        margin: 2rem 0 !important;
    }
    
    .split-content {
        padding: 1.5rem 1rem !important;
    }
    
    .split-content h2 {
        font-size: 1.25rem;
        margin-bottom: 1rem;
    }
    
    .split-content p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .split-content ul {
        margin-left: 1.25rem;
        margin-top: 1rem;
    }
    
    .split-content ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }
    
    .split-image {
        height: 200px;
    }
    
    .form-container {
        padding: 1.25rem 0.875rem;
        border-radius: 12px;
    }
    
    .form-group {
        margin-bottom: 1.25rem;
    }
    
    .form-group label {
        font-size: 0.9rem;
        margin-bottom: 0.5rem;
    }
    
    .form-group input,
    .form-group textarea {
        padding: 0.75rem;
        font-size: 0.9rem;
        border-radius: 8px;
    }
    
    .form-group textarea {
        min-height: 120px;
    }
    
    .checkbox-group {
        margin-bottom: 1.25rem;
    }
    
    .checkbox-group label {
        font-size: 0.8rem;
        line-height: 1.4;
    }
    
    .cookie-popup {
        padding: 1.25rem;
        left: 5px;
        right: 5px;
        bottom: 5px;
        border-radius: 12px;
    }
    
    .cookie-popup p {
        font-size: 0.8rem;
        margin-bottom: 0.875rem;
    }
    
    .cookie-buttons {
        gap: 0.75rem;
    }
    
    .cookie-buttons button {
        padding: 0.65rem;
        font-size: 0.85rem;
    }
    
    .logo {
        font-size: 1.1rem;
    }
    
    nav {
        padding: 0 0.75rem;
    }
    
    header {
        padding: 0.75rem 0;
    }
    
    .nav-links {
        padding: 1.5rem;
        top: 60px;
    }
    
    .nav-links li {
        margin-bottom: 0.75rem;
    }
    
    .nav-links a {
        font-size: 0.95rem;
    }
    
    footer {
        padding: 2rem 1rem;
    }
    
    .footer-links {
        gap: 1rem;
        flex-wrap: wrap;
        margin-bottom: 1.5rem;
    }
    
    .footer-links a {
        font-size: 0.85rem;
    }
    
    footer p {
        font-size: 0.8rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .scene-builder {
        grid-template-columns: 1fr;
        gap: 1.25rem;
        padding: 1.5rem 0;
    }
    
    .photo-zone-card {
        border-radius: 12px;
    }
    
    .photo-zone-image {
        height: 200px;
    }
    
    .photo-zone-info {
        padding: 1.25rem 1rem;
    }
    
    .photo-zone-info h3 {
        font-size: 1.1rem;
        margin-bottom: 0.75rem;
    }
    
    .photo-zone-info p {
        font-size: 0.85rem;
        line-height: 1.6;
        margin-bottom: 0.75rem;
    }
    
    .photo-zone-info ul {
        margin-left: 1.25rem;
        margin-top: 0.75rem;
    }
    
    .photo-zone-info ul li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }
    
    h1 {
        font-size: 1.5rem;
    }
    
    h2 {
        font-size: 1.25rem;
    }
    
    h3 {
        font-size: 1.1rem;
    }
    
    p {
        font-size: 0.85rem;
        line-height: 1.6;
    }
    
    .lightbox-content {
        max-width: 95%;
        padding: 0.5rem;
    }
    
    .lightbox-close {
        top: -35px;
        right: -5px;
        width: 35px;
        height: 35px;
        font-size: 1.5rem;
    }
}

.map-container {
    width: 100%;
    height: 400px;
    border-radius: 15px;
    overflow: hidden;
    margin-top: 2rem;
    border: 2px solid rgba(184, 94, 255, 0.3);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

