
:root {
    --primary-purple: #a855f7;
    --primary-pink: #ec4899;
    --primary-blue: #06b6d4;
    --neon-purple: #a855f7;
    --neon-pink: #ec4899;
    --neon-blue: #06b6d4;
    --dark-bg: #111827;
    --darker-bg: #0f172a;
}

* {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 25%, #1f2937 50%, #111827 75%, #0f172a 100%);
    background-attachment: fixed;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}


body.modal-open {
    overflow: hidden !important;
}


.particle {
    will-change: transform, opacity;
}

.feature-card,
.feature-card-simple,
.pricing-card,
.attraction-card {
    will-change: transform;
}


@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .particle {
        display: none;
    }
}


nav {
    background: rgba(0, 0, 0, 0.9) !important;
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
    will-change: transform;
    top: 0;
    z-index: 1000;
    position: fixed;
    width: 100%;
}


.nav-link-mobile {
    position: relative;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.75rem 1rem;
    border-radius: 0.5rem;
    border-left: 3px solid transparent;
}

.nav-link-mobile:hover {
    color: var(--primary-purple);
    background: rgba(168, 85, 247, 0.1);
    border-left-color: var(--primary-purple);
    transform: translateX(5px);
}

.nav-link-mobile.active {
    color: var(--primary-pink);
    background: rgba(236, 72, 153, 0.1);
    border-left-color: var(--primary-pink);
    transform: translateX(5px);
}

#mobile-menu {
    border-top: 1px solid rgba(168, 85, 247, 0.2);
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(10px);
    border-radius: 0 0 1rem 1rem;
}


@media (max-width: 1024px) and (min-width: 769px) {
    nav {
        top: 0;
    }
    
    .hero-section {
        padding-top: 72px;
    }
    
   
    .combo-card.premium,
    .combo-card.vip {
        animation: none !important;
        border: 2px solid rgba(168, 85, 247, 0.3) !important;
        background: rgba(15, 23, 42, 0.8) !important;
    }
    
    .combo-badge {
        animation: none !important;
    }
    
   
    .grid.lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
   
    .amount {
        font-size: 3rem;
    }
    
   
    #privacy-modal .bg-gray-900,
    #terms-modal .bg-gray-900 {
        max-width: 90vw !important;
        max-height: 80vh !important;
        padding: 1rem !important;
    }
    
    #privacy-modal h2,
    #terms-modal h2 {
        font-size: 1.2rem !important;
    }
    
    .py-20 {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
   
    .contact-card {
        padding: 2rem 1.5rem;
    }
    
   
    .contact-form-wrapper {
        padding: 2rem;
    }
    
   
    .social-media-modern {
        gap: 1rem;
    }
    
    .social-modern-icon {
        padding: 1rem 0.8rem;
        min-width: 80px;
    }
    
   
    .attraction-content {
        padding: 1.5rem;
        min-height: 250px;
    }
    
   
    .pricing-card {
        padding: 1.5rem;
    }
}

@media (max-width: 1024px) {
    nav {
        padding: 0.5rem 0;
    }
    
    nav .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
    nav .text-2xl {
        font-size: 1.5rem;
    }
}

.nav-link {
    position: relative;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 0.5rem 1rem;
}

.nav-link:hover {
    color: var(--primary-purple);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary-purple), var(--primary-pink));
    transform: translateX(-50%);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 80%;
}

.nav-link.active {
    color: var(--primary-pink);
}

.nav-link.active::after {
    width: 100%;
    background: linear-gradient(90deg, var(--primary-pink), var(--primary-purple));
}



.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 50%, rgba(168, 85, 247, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(236, 72, 153, 0.3) 0%, transparent 50%),
        radial-gradient(circle at 40% 80%, rgba(6, 182, 212, 0.3) 0%, transparent 50%);
    animation: backgroundFloat 20s ease-in-out infinite;
}

@keyframes backgroundFloat {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; }
}

.hero-title {
    font-size: 6rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink), #06b6d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
    line-height: 1.1;
    padding: 0.2rem 0;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}


.cta-button {
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border: none;
    color: white;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% {
        box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
        transform: scale(1);
    }
    50% {
        box-shadow: 0 0 30px rgba(168, 85, 247, 0.8);
        transform: scale(1.05);
    }
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s;
}

.cta-button:hover::before {
    left: 100%;
}




.section-title {
    font-size: 3rem;
    font-weight: bold;
    margin-bottom: 2rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}


.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.slide-in-left {
    opacity: 0;
    transform: translateX(-50px);
    transition: all 0.8s ease;
}

.slide-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.slide-in-right {
    opacity: 0;
    transform: translateX(50px);
    transition: all 0.8s ease;
}

.slide-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}


.zoom-in {
    opacity: 0;
    transform: scale(0.8);
    transition: all 0.8s ease;
}

.zoom-in.visible {
    opacity: 1;
    transform: scale(1);
}

.rotate-in {
    opacity: 0;
    transform: rotate(-10deg) scale(0.9);
    transition: all 0.8s ease;
}

.rotate-in.visible {
    opacity: 1;
    transform: rotate(0deg) scale(1);
}


.neon-glow {
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    transition: box-shadow 0.3s ease;
}

@media (min-width: 769px) {
    .neon-glow:hover {
        box-shadow: 0 0 40px rgba(168, 85, 247, 0.6);
    }
}


.stat-card {
    background: rgba(168, 85, 247, 0.1);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 0.5rem;
    padding: 1rem;
    text-align: center;
    transition: all 0.3s ease;
}

.stat-card:hover {
    background: rgba(168, 85, 247, 0.2);
    border-color: var(--primary-purple);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}


.service-card {
    background: rgba(15, 23, 42, 0.95);
    border: 1px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.service-card h3 {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-card p {
    flex-grow: 1;
    display: flex;
    align-items: flex-start;
}

.service-card:hover {
    transform: translate3d(0, -8px, 0);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    background: rgba(15, 23, 42, 0.8);
}



.service-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.3s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(168, 85, 247, 0.3);
}


.particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    animation: float-particle linear infinite;
}

.particle-gradient {
    background: radial-gradient(circle, rgba(168, 85, 247, 0.8) 0%, rgba(236, 72, 153, 0.6) 50%, transparent 100%);
    box-shadow: 0 0 10px rgba(168, 85, 247, 0.5);
}

.particle-glow {
    background: radial-gradient(circle, rgba(6, 182, 212, 0.7) 0%, rgba(168, 85, 247, 0.5) 70%, transparent 100%);
    box-shadow: 0 0 15px rgba(6, 182, 212, 0.4);
}

.particle-small {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.6) 0%, transparent 70%);
    box-shadow: 0 0 8px rgba(236, 72, 153, 0.3);
}

@keyframes float-particle {
    0% {
        transform: translateY(100vh) translateX(0px) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: scale(1);
    }
    90% {
        opacity: 1;
    }
    100% {
        transform: translateY(-100px) translateX(var(--random-x)) scale(0);
        opacity: 0;
    }
}


.particle-slow {
    animation-duration: 15s;
}

.particle-medium {
    animation-duration: 10s;
}

.particle-fast {
    animation-duration: 7s;
}


.reviews-slider {
    display: flex;
    gap: 2rem;
    overflow-x: auto;
    padding: 1rem 0;
    scroll-behavior: smooth;
}

.review-card {
    flex: 0 0 400px;
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 2rem;
    backdrop-filter: blur(10px);
    transition: all 0.4s ease;
    position: relative;
}

.review-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-pink);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.2);
}

.review-card::after {
    content: '"';
    position: absolute;
    top: -10px;
    left: 20px;
    font-size: 4rem;
    color: var(--primary-purple);
    opacity: 0.3;
    font-family: serif;
}


.feature-card {
    background: rgba(15, 23, 42, 0.6);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    padding: 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.feature-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary-purple);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.1);
}

.feature-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
}


.feature-card-simple {
    background: rgba(15, 23, 42, 0.95);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature-card-simple:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    background: rgba(15, 23, 42, 0.8);
}

.feature-icon-simple {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
}

.feature-card-simple:hover .feature-icon-simple {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.about-details ul li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.5rem;
}

.about-details ul li i {
    flex-shrink: 0;
    width: 16px;
    text-align: center;
}


.contact-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    backdrop-filter: blur(15px);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    height: 100%;
}

.contact-card h3 {
    min-height: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card p {
    min-height: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-card .contact-link {
    margin-top: auto;
}

.contact-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 15px 40px rgba(168, 85, 247, 0.2);
    background: rgba(15, 23, 42, 0.9);
}

.contact-card-icon {
    width: 4rem;
    height: 4rem;
    margin: 0 auto 1.5rem;
    background: linear-gradient(45deg, var(--primary-purple), var(--primary-pink));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    transition: all 0.3s ease;
}

.contact-card:hover .contact-card-icon {
    transform: scale(1.1);
    box-shadow: 0 10px 30px rgba(168, 85, 247, 0.4);
}

.contact-link {
    color: var(--primary-purple);
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
}

.contact-link:hover {
    color: var(--primary-pink);
    transform: translateX(5px);
}


.contact-form-wrapper {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 2rem;
    padding: 3rem;
    backdrop-filter: blur(15px);
}

.form-field {
    margin-bottom: 1.5rem;
}

.form-label {
    display: block;
    color: var(--primary-purple);
    font-weight: 600;
    margin-bottom: 0.5rem;
    font-size: 0.9rem;
}

.form-input {
    width: 100%;
    padding: 1rem 1.5rem;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    color: white;
    font-size: 1rem;
    transition: all 0.3s ease;
    backdrop-filter: blur(10px);
}

.form-input:focus {
    outline: none;
    border-color: var(--primary-purple);
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.3);
    background: rgba(15, 23, 42, 0.9);
}

.form-input::placeholder {
    color: rgba(156, 163, 175, 0.7);
}


.form-input[type="date"] {
    color: white !important;
    color-scheme: dark;
    background-color: rgba(15, 23, 42, 0.8) !important;
}

.form-input[type="date"]::-webkit-calendar-picker-indicator {
    filter: invert(1) brightness(2);
    cursor: pointer;
    opacity: 1;
}

.form-input[type="date"]::-webkit-datetime-edit {
    color: white !important;
    padding: 0;
}

.form-input[type="date"]::-webkit-datetime-edit-text {
    color: white !important;
}

.form-input[type="date"]::-webkit-datetime-edit-month-field {
    color: white !important;
}

.form-input[type="date"]::-webkit-datetime-edit-day-field {
    color: white !important;
}

.form-input[type="date"]::-webkit-datetime-edit-year-field {
    color: white !important;
}


.form-input[type="date"]::-moz-placeholder {
    color: white !important;
}


* {
    box-sizing: border-box;
}


html {
    scroll-behavior: smooth;
}


.service-card,
.feature-card-simple,
.attraction-card,
.pricing-card,
.contact-card,
.faq-item,
.nav-link,
.nav-link-mobile {
    will-change: transform;
    transform: translateZ(0);
}


body {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: optimizeSpeed;
}


@media (max-width: 768px) {
   
    .service-card,
    .feature-card-simple,
    .attraction-card {
        transition: transform 0.2s ease;
    }
    
   
    .service-card:hover,
    .feature-card-simple:hover,
    .attraction-card:hover {
        transform: none;
        box-shadow: none;
    }
}


@media (max-width: 480px) {
   
    * {
        animation-duration: 0.1s !important;
        transition-duration: 0.1s !important;
    }
}


input[type="date"]::-webkit-inner-spin-button,
input[type="date"]::-webkit-outer-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input[type="date"] {
    -webkit-appearance: none;
    -moz-appearance: textfield;
    appearance: none;
}



.social-media-modern {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.social-modern-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 1.5rem 1rem;
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1rem;
    color: white;
    text-decoration: none;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    min-width: 100px;
}

.social-modern-icon i {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.social-modern-icon span {
    font-size: 0.8rem;
    font-weight: 600;
}

.social-modern-icon.facebook:hover {
    border-color: #1877f2;
    box-shadow: 0 10px 30px rgba(24, 119, 242, 0.3);
    transform: translateY(-5px);
}

.social-modern-icon.instagram:hover {
    border-color: #e4405f;
    box-shadow: 0 10px 30px rgba(228, 64, 95, 0.3);
    transform: translateY(-5px);
}

.social-modern-icon.youtube:hover {
    border-color: #ff0000;
    box-shadow: 0 10px 30px rgba(255, 0, 0, 0.3);
    transform: translateY(-5px);
}

.social-modern-icon.tiktok:hover {
    border-color: #000000;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    transform: translateY(-5px);
}


#particles-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}


section {
    position: relative;
    z-index: 10;
    background: rgba(15, 23, 42, 0.2);
    will-change: transform;
    transform: translateZ(0);
}


section:not(.hero-section):not(#about):before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(168, 85, 247, 0.5) 25%, rgba(236, 72, 153, 0.6) 50%, rgba(168, 85, 247, 0.5) 75%, transparent 100%);
    z-index: 1;
}


section:not(.hero-section):not(#about):after {
    content: '♪';
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 30px;
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.9), rgba(236, 72, 153, 0.9));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 16px;
    font-weight: bold;
    z-index: 2;
    box-shadow: 0 0 20px rgba(168, 85, 247, 0.5);
}


.hero-section {
    background: 
        linear-gradient(rgba(15, 23, 42, 0.7), rgba(49, 46, 129, 0.8)),
        url('./images/dj_background.webp') center/cover no-repeat !important;
    position: relative;
    backdrop-filter: none !important;
    z-index: 20;
    background-attachment: scroll;
    will-change: auto;
    transform: translateZ(0);
    backface-visibility: hidden;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    padding-top: 72px;
}


img {
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
    transform: translateZ(0);
    backface-visibility: hidden;
}


.pricing-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    padding: 2rem;
    position: relative;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    height: 100%;
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--primary-purple);
    box-shadow: 0 25px 50px rgba(168, 85, 247, 0.2);
}

.pricing-card.premium {
    border-color: var(--primary-pink);
    background: rgba(236, 72, 153, 0.1);
    transform: scale(1.05);
}

.pricing-card.premium:hover {
    transform: scale(1.05) translateY(-10px);
    box-shadow: 0 30px 60px rgba(236, 72, 153, 0.3);
}

.popular-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 1rem;
    font-size: 0.8rem;
    font-weight: bold;
    text-align: center;
}

.pricing-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
    margin-bottom: 1rem;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 2rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.feature {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.feature:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateX(3px);
}

.feature i {
    color: var(--primary-purple);
    margin-right: 0.75rem;
    width: 18px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.feature i.text-green-400 {
    color: #10b981 !important;
}

.feature i.text-red-400 {
    color: #f87171 !important;
}

.feature:has(i.text-red-400) {
    opacity: 0.6;
}

.feature:has(i.text-red-400) span {
    text-decoration: line-through;
    color: #9ca3af;
}


.feature span {
    color: #e5e7eb !important;
    font-size: 0.95rem !important;
    font-weight: 400 !important;
    line-height: 1.4 !important;
}

.pricing-header h3 {
    color: white !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
    margin-bottom: 1rem !important;
}

.pricing-header p {
    color: #9ca3af !important;
    font-size: 1rem !important;
    font-weight: 400 !important;
    line-height: 1.5 !important;
}


.pricing-card h3.text-2xl {
    font-size: 1.5rem !important;
}

.pricing-card p.text-gray-400 {
    color: #9ca3af !important;
    font-size: 1rem !important;
}


.attraction-content p.text-gray-400 {
    color: #9ca3af !important;
    font-size: 1.125rem !important;
    font-weight: 400 !important;
}

.price-label {
    font-size: 1rem;
    font-weight: bold;
    color: var(--primary-purple);
    display: block;
    margin-bottom: 0.5rem;
}

.amount {
    font-size: 3rem;
    font-weight: bold;
    color: white;
    margin-right: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: bold;
    color: white;
}

.pricing-btn {
    cursor: pointer;
    transition: all 0.3s ease;
    font-size: 1.1rem;
}

.pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(168, 85, 247, 0.4);
}



.modern-cta-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    border: none;
    border-radius: 50px;
    padding: 1rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 200px;
}

.modern-cta-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 35px rgba(168, 85, 247, 0.4);
}

.hero-btn {
    font-size: 1.3rem;
    padding: 1.2rem 3rem;
    min-width: 300px;
}

.btn-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.1), transparent);
    transform: rotate(45deg);
    transition: all 0.6s ease;
    opacity: 0;
}

.modern-cta-btn:hover .btn-glow {
    animation: glow-sweep 0.8s ease;
}

@keyframes glow-sweep {
    0% { transform: translateX(-100%) translateY(-100%) rotate(45deg); opacity: 0; }
    50% { opacity: 1; }
    100% { transform: translateX(100%) translateY(100%) rotate(45deg); opacity: 0; }
}

.modern-pricing-btn {
    width: 100%;
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    font-size: 1.1rem;
}

.modern-pricing-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 25px rgba(168, 85, 247, 0.4);
}

.modern-form-btn {
    position: relative;
    background: linear-gradient(135deg, var(--primary-purple), var(--primary-pink));
    color: white;
    border: none;
    border-radius: 12px;
    padding: 1.2rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    overflow: hidden;
    font-size: 1.1rem;
}

.modern-form-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(168, 85, 247, 0.4);
}


.attraction-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid rgba(168, 85, 247, 0.3);
    border-radius: 1.5rem;
    overflow: hidden;
    transition: all 0.4s ease;
    backdrop-filter: blur(10px);
}

.attraction-card:hover {
    transform: translateY(-8px);
    border-color: var(--primary-purple);
    box-shadow: 0 20px 40px rgba(168, 85, 247, 0.2);
}

.attraction-image {
    background: linear-gradient(135deg, rgba(168, 85, 247, 0.1), rgba(236, 72, 153, 0.1));
    padding: 2rem;
    text-align: center;
    border-bottom: 1px solid rgba(168, 85, 247, 0.2);
}

.attraction-content {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    min-height: 300px;
}

.attraction-content h3 {
    color: white !important;
    margin-bottom: 1rem !important;
    font-size: 1.5rem !important;
    font-weight: bold !important;
}

.attraction-content p {
    color: #9ca3af !important;
    line-height: 1.6 !important;
    margin-bottom: 1.5rem !important;
    font-size: 1.125rem !important;
    font-weight: 400 !important;
}

.attraction-features {
    list-style: none;
    padding: 0;
    margin: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    flex-grow: 1;
}

.attraction-features li {
    display: flex;
    align-items: center;
    padding: 0.75rem;
    background: rgba(15, 23, 42, 0.5);
    border-radius: 0.5rem;
    border: 1px solid rgba(168, 85, 247, 0.2);
    transition: all 0.3s ease;
    color: #e5e7eb;
    font-size: 0.95rem;
}

.attraction-features li:hover {
    background: rgba(168, 85, 247, 0.1);
    border-color: rgba(168, 85, 247, 0.4);
    transform: translateX(3px);
}

.attraction-features li i {
    color: #10b981;
    margin-right: 0.75rem;
    width: 18px;
    font-size: 0.9rem;
    flex-shrink: 0;
}

.attraction-price {
    color: white;
    font-size: 1.8rem;
    font-weight: bold;
    margin-top: 1.5rem;
}

.combo-card {
    background: rgba(15, 23, 42, 0.8);
    border: 2px solid var(--primary-pink);
    border-radius: 1rem;
    padding: 2rem;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
}

.combo-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 30px rgba(236, 72, 153, 0.3);
}


.combo-card.premium {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)) padding-box,
                linear-gradient(45deg, 
                    var(--primary-pink), 
                    var(--primary-purple), 
                    #06b6d4, 
                    var(--primary-pink), 
                    var(--primary-purple)
                ) border-box;
    background-size: 100% 100%, 300% 300%;
    animation: comboPremiumBorder 3s ease-in-out infinite;
}

.combo-card.premium:hover {
    animation: comboPremiumBorder 1.5s ease-in-out infinite;
}


.combo-card.vip {
    position: relative;
    border: 3px solid transparent;
    background: linear-gradient(rgba(15, 23, 42, 0.8), rgba(15, 23, 42, 0.8)) padding-box,
                linear-gradient(45deg, 
                    #ffd700, 
                    var(--primary-purple), 
                    #ff6b6b, 
                    #4ecdc4, 
                    #ffd700
                ) border-box;
    background-size: 100% 100%, 400% 400%;
    animation: comboVipBorder 4s ease-in-out infinite;
}

.combo-card.vip:hover {
    animation: comboVipBorder 2s ease-in-out infinite;
}


.combo-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(45deg, var(--primary-pink), var(--primary-purple));
    color: white;
    padding: 0.4rem 0.8rem;
    border-radius: 0.8rem;
    font-size: 0.7rem;
    font-weight: bold;
    text-align: center;
    animation: comboBadgePulse 2s ease-in-out infinite;
    box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
}

.combo-card.vip .combo-badge {
    background: linear-gradient(45deg, #ffd700, #ff6b6b);
    box-shadow: 0 0 15px rgba(255, 215, 0, 0.5);
}


@keyframes comboPremiumBorder {
    0%, 100% {
        background-position: 0% 0%, 0% 50%;
    }
    50% {
        background-position: 0% 0%, 100% 50%;
    }
}

@keyframes comboVipBorder {
    0%, 100% {
        background-position: 0% 0%, 0% 50%;
    }
    25% {
        background-position: 0% 0%, 100% 0%;
    }
    50% {
        background-position: 0% 0%, 100% 100%;
    }
    75% {
        background-position: 0% 0%, 0% 100%;
    }
}

@keyframes comboBadgePulse {
    0%, 100% {
        transform: translateX(-50%) scale(1);
        box-shadow: 0 0 15px rgba(236, 72, 153, 0.5);
    }
    50% {
        transform: translateX(-50%) scale(1.05);
        box-shadow: 0 0 25px rgba(236, 72, 153, 0.8);
    }
}

.combo-price {
    font-size: 1.8rem;
    font-weight: bold;
    color: white;
}

.original-price {
    font-size: 1.2rem;
    text-decoration: line-through;
    color: #9ca3af;
    margin-left: 0.5rem;
}


.faq-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.faq-item {
    background: rgba(15, 23, 42, 0.8);
    border: 1px solid rgba(168, 85, 247, 0.2);
    border-radius: 1rem;
    overflow: hidden;
    transition: all 0.3s ease;
    margin-bottom: 1rem;
}

.faq-item:hover {
    border-color: var(--primary-purple);
    box-shadow: 0 5px 15px rgba(168, 85, 247, 0.1);
}

.faq-question {
    width: 100%;
    background: none;
    border: none;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    padding: 1.5rem;
    text-align: left;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(168, 85, 247, 0.05);
}

.faq-icon {
    transition: transform 0.3s ease;
}

.faq-question.active .faq-icon {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease, padding 0.4s ease;
}

.faq-answer.active {
    max-height: 200px;
    padding: 0 1.5rem 1.5rem 1.5rem;
}

.faq-answer p {
    color: var(--gray-300);
    line-height: 1.6;
    margin: 0;
}


#calendar-container {
    min-height: 400px;
    border: 1px solid rgba(168, 85, 247, 0.3);
}

.calendar-day {
    padding: 0.5rem;
    border: 1px solid rgba(75, 85, 99, 0.5);
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.calendar-day:hover {
    background: rgba(168, 85, 247, 0.2);
}

.calendar-day.available {
    background: rgba(34, 197, 94, 0.2);
    border-color: rgba(34, 197, 94, 0.5);
}

.calendar-day.booked {
    background: rgba(239, 68, 68, 0.2);
    border-color: rgba(239, 68, 68, 0.5);
    cursor: not-allowed;
}


@media (max-width: 768px) {
    body {
        background-attachment: scroll;
    }
    
   
    .particle {
        display: none;
    }
    
    .hero-bg {
        animation: none;
    }
    
   
    * {
        animation-duration: 0.2s !important;
        transition-duration: 0.2s !important;
    }
    
   
    .service-card:hover,
    .feature-card-simple:hover,
    .attraction-card:hover {
        transform: translateY(-4px);
    }
    
   
    .service-card h3 {
        min-height: 2.5rem;
    }
    
    .contact-card h3 {
        min-height: 1.5rem;
    }
    
    .contact-card p {
        min-height: 3rem;
    }
    
   
    .combo-card.premium,
    .combo-card.vip {
        animation: none !important;
        border: 2px solid rgba(168, 85, 247, 0.3) !important;
        background: rgba(15, 23, 42, 0.8) !important;
    }
    
    .combo-badge {
        animation: none !important;
    }
    
    .hero-title {
        font-size: 2.8rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.8rem;
        margin-bottom: 2rem;
    }
    
    .about-details {
        margin-bottom: 1.5rem;
    }
    
    .contact-info {
        margin-bottom: 2rem;
    }
    
    .grid.md\:grid-cols-2 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid.md\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid.lg\:grid-cols-3 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .grid.lg\:grid-cols-4 {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .feature-card-simple {
        padding: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .attraction-card {
        margin-bottom: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
    
    .reviews-slider {
        gap: 1rem;
        padding: 1rem 0;
    }
    
    .review-card {
        flex: 0 0 280px;
    }
    
    .cta-button,
    .modern-cta-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
        min-width: auto;
    }
    
    .hero-btn {
        font-size: 1.1rem;
        padding: 1rem 2.5rem;
        min-width: auto;
    }
    
   
    .container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
    
   
    section {
        padding-top: 3rem;
        padding-bottom: 3rem;
    }
    
   
    .faq-question {
        font-size: 1rem;
        padding: 1rem;
    }
    
    .faq-answer {
        font-size: 0.9rem;
    }
    
   
    .form-group input,
    .form-group select,
    .form-group textarea {
        font-size: 16px;
    }
    
   
    #privacy-modal .bg-gray-900 {
        margin: 1rem;
        padding: 1.5rem;
        max-height: 85vh;
    }
}


@media (max-width: 1024px) and (min-width: 769px) {
    .hero-title {
        font-size: 4rem;
        line-height: 1.1;
    }
    
    .grid.lg\\:grid-cols-4 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .grid.lg\\:grid-cols-3 {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .attraction-card {
        margin-bottom: 1.5rem;
    }
    
    .feature-card-simple {
        padding: 2rem 1.5rem;
    }
    
    .container {
        padding-left: 1.5rem;
        padding-right: 1.5rem;
    }
    
    .pricing-card {
        margin-bottom: 1.5rem;
    }
}


@media (max-width: 480px) {
    .hero-title {
        font-size: 2.2rem;
        line-height: 1.1;
    }
    
    .section-title {
        font-size: 1.4rem;
        margin-bottom: 1.5rem;
    }
    
    .service-card,
    .feature-card {
        padding: 1rem;
        margin-bottom: 1rem;
    }
    
    .feature-card-simple {
        padding: 1rem;
    }
    
   
    .contact-form-wrapper {
        padding: 1.5rem;
        border-radius: 1rem;
    }
    
    .form-input {
        padding: 0.8rem 1rem;
    }
    
    .social-modern-icon i {
        font-size: 1.2rem;
    }
    
    .social-modern-icon span {
        font-size: 0.7rem;
    }
    
    .about-details ul {
        font-size: 0.9rem;
    }
    
    .about-details h3 {
        font-size: 1.1rem;
    }
    
    .contact-item {
        padding: 0.75rem;
        gap: 0.75rem;
    }
    
    .social-icon {
        width: 2.25rem;
        height: 2.25rem;
        font-size: 1rem;
    }
    
    .container {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
    
    section {
        padding-top: 2.5rem;
        padding-bottom: 2.5rem;
    }
    
    .hero-btn {
        font-size: 1rem;
        padding: 0.875rem 2rem;
    }
    
    .pricing-card {
        padding: 1.5rem;
    }
    
    .attraction-content {
        padding: 1.5rem;
    }
    
    .attraction-image {
        padding: 1.5rem;
    }
    
    .attraction-image i {
        font-size: 3rem;
    }
}


#privacy-modal:not(.hidden),
#terms-modal:not(.hidden) {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    padding: 1rem !important;
    box-sizing: border-box !important;
    z-index: 10002 !important;
    overflow-y: auto !important;
}

#privacy-modal.hidden,
#terms-modal.hidden {
    display: none !important;
}

#privacy-modal .bg-gray-900,
#terms-modal .bg-gray-900 {
    max-width: 50vw !important;
    max-height: 80vh !important;
    width: 100% !important;
    padding: 1.5rem !important;
    margin: 0 auto !important;
    box-sizing: border-box !important;
    overflow-y: auto !important;
    scrollbar-width: thin;
    scrollbar-color: rgba(168, 85, 247, 0.6) rgba(15, 23, 42, 0.3);
    scroll-behavior: smooth;
    position: relative !important;
    z-index: 10003 !important;
    -webkit-overflow-scrolling: touch;
}


#privacy-modal .text-gray-300,
#terms-modal .text-gray-300 {
    padding-right: 1rem;
}


#privacy-modal .bg-gray-900::-webkit-scrollbar,
#terms-modal .bg-gray-900::-webkit-scrollbar {
    width: 8px;
}

#privacy-modal .bg-gray-900::-webkit-scrollbar-track,
#terms-modal .bg-gray-900::-webkit-scrollbar-track {
    background: rgba(15, 23, 42, 0.3);
    border-radius: 4px;
}

#privacy-modal .bg-gray-900::-webkit-scrollbar-thumb,
#terms-modal .bg-gray-900::-webkit-scrollbar-thumb {
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.6), rgba(236, 72, 153, 0.6));
    border-radius: 4px;
    transition: all 0.3s ease;
}

#privacy-modal .bg-gray-900::-webkit-scrollbar-thumb:hover,
#terms-modal .bg-gray-900::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(45deg, rgba(168, 85, 247, 0.8), rgba(236, 72, 153, 0.8));
}


@media (max-width: 1024px) and (min-width: 769px) {
    #privacy-modal .bg-gray-900,
    #terms-modal .bg-gray-900 {
        max-width: 65vw !important;
    }
}

@media (max-width: 768px) {
    #privacy-modal .bg-gray-900,
    #terms-modal .bg-gray-900 {
        max-width: 95vw !important;
        max-height: 85vh !important;
        padding: 1rem !important;
    }
    
   
    #privacy-modal .bg-gray-900::-webkit-scrollbar,
    #terms-modal .bg-gray-900::-webkit-scrollbar {
        width: 6px;
    }
    
    #privacy-modal .text-gray-300,
    #terms-modal .text-gray-300 {
        padding-right: 0.5rem;
    }
    
    #privacy-modal h2 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    #terms-modal h2 {
        font-size: 1.3rem !important;
        margin-bottom: 1rem !important;
    }
    
    #privacy-modal h3,
    #terms-modal h3 {
        font-size: 1.1rem !important;
        margin-bottom: 0.5rem !important;
    }
    
    #privacy-modal p,
    #terms-modal p,
    #privacy-modal li,
    #terms-modal li {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
    }
    
    #privacy-modal .space-y-4 > *,
    #terms-modal .space-y-4 > * {
        margin-bottom: 0.75rem !important;
    }
    
    #privacy-modal ul,
    #terms-modal ul {
        margin-left: 0.5rem !important;
    }
}



@media (max-width: 768px) {
    nav {
        top: 0;
    }
    
    .hero-section {
        padding-top: 72px;
    }
}


@media (max-width: 480px) {
    nav {
        top: 0;
    }
    
    .hero-section {
        padding-top: 72px;
    }
}
