:root {
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-secondary: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    --gradient-accent: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    --gradient-dark: linear-gradient(135deg, #0f0c29 0%, #302b63 50%, #24243e 100%);
    --gradient-vibrant: linear-gradient(135deg, #fa709a 0%, #fee140 100%);
    --color-dark: #0f172a;
    --color-darker: #020617;
    --color-light: #f8fafc;
    --color-primary: #8b5cf6;
    --color-secondary: #ec4899;
    --color-accent: #06b6d4;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Exo 2', sans-serif;
    background-color: var(--color-darker);
    color: var(--color-light);
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'Orbitron', sans-serif;
}

.navbar {
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 0;
    transition: all 0.3s ease;
    border-bottom: 1px solid rgba(139, 92, 246, 0.2);
}

.navbar-brand {
    font-family: 'Orbitron', sans-serif;
    font-weight: 700;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

.brand-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.navbar-brand:hover {
    transform: scale(1.05);
}

.nav-link {
    color: rgba(248, 250, 252, 0.8) !important;
    font-weight: 500;
    margin: 0 0.5rem;
    position: relative;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--color-light) !important;
}

.nav-link:hover::after {
    width: 100%;
}

.offcanvas {
    background: linear-gradient(180deg, #0f172a 0%, #1e1b4b 100%);
    border-left: 1px solid rgba(139, 92, 246, 0.3);
}

.offcanvas-title {
    font-family: 'Orbitron', sans-serif;
    color: var(--color-light);
}

.hero-section {
    min-height: 100vh;
    position: relative;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 50%, #1e1b4b 100%);
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(139, 92, 246, 0.1), transparent 50%);
    pointer-events: none;
}

.hero-shapes {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.3;
    animation: float 20s infinite ease-in-out;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: var(--gradient-primary);
    top: 10%;
    left: -10%;
    animation-delay: 0s;
}

.shape-2 {
    width: 500px;
    height: 500px;
    background: var(--gradient-accent);
    bottom: -10%;
    right: -10%;
    animation-delay: 5s;
}

.shape-3 {
    width: 300px;
    height: 300px;
    background: var(--gradient-secondary);
    top: 50%;
    right: 10%;
    animation-delay: 10s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(50px, -50px) scale(1.1);
    }
    66% {
        transform: translate(-30px, 30px) scale(0.9);
    }
}

.q142 {
    width: 100%;
    text-align: center;
}

.hero-content {
    position: relative;
    z-index: 2;
    animation: fadeInUp 1s ease;
    width: 100%;
}

.hBut {
    justify-content: center;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-title {
    font-weight: 900;
    background: linear-gradient(135deg, #ffffff 0%, #a78bfa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.hero-subtitle {
    color: rgba(248, 250, 252, 0.8);
    font-size: 1.25rem;
}

.btn-primary {
    background: var(--gradient-primary);
    border: none;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: left 0.5s ease;
}

.btn-primary:hover::before {
    left: 100%;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(139, 92, 246, 0.4);
}

.btn-outline-light {
    border: 2px solid rgba(248, 250, 252, 0.5);
    color: var(--color-light);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.btn-outline-light:hover {
    background: rgba(248, 250, 252, 0.1);
    border-color: var(--color-light);
    transform: translateY(-2px);
}

section {
    position: relative;
}

#experiences {
    background: linear-gradient(180deg, var(--color-darker) 0%, #1e1b4b 100%);
}

.section-title {
    position: relative;
    display: inline-block;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
}

.experience-card {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.8) 0%, rgba(49, 46, 129, 0.8) 100%);
    padding: 2.5rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.3);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: 0;
}

.experience-card:hover::before {
    opacity: 0.1;
}

.experience-card:hover {
    transform: translateY(-10px);
    border-color: var(--color-primary);
    box-shadow: 0 20px 40px rgba(139, 92, 246, 0.3);
}

.experience-card > * {
    position: relative;
    z-index: 1;
}

.card-icon-wrapper {
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    border-radius: 15px;
    transition: all 0.4s ease;
}

.experience-card:hover .card-icon-wrapper {
    transform: rotateY(360deg);
}

.card-icon-wrapper i {
    background: linear-gradient(135deg, #ffffff 0%, #e0e7ff 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.destinations-section {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--color-darker) 100%);
}

.destination-card {
    transition: all 0.4s ease;
    position: relative;
}

.destination-card:hover {
    transform: translateY(-5px);
}

.destination-img {
    transition: all 0.5s ease;
    object-fit: cover;
    height: 100%;
}

.destination-card:hover .destination-img {
    transform: scale(1.1);
}

.destination-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to top, rgba(15, 23, 42, 0.95) 0%, rgba(15, 23, 42, 0.4) 50%, transparent 100%);
    display: flex;
    align-items: flex-end;
    padding: 2rem;
    transition: all 0.4s ease;
}

.destination-card:hover .destination-overlay {
    background: linear-gradient(to top, rgba(15, 23, 42, 0.98) 0%, rgba(15, 23, 42, 0.6) 70%, rgba(15, 23, 42, 0.3) 100%);
}

.featured-park .destination-overlay {
    padding: 3rem;
}

.special-offer {
    background: var(--gradient-vibrant);
    font-weight: 700;
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-tag {
    display: flex;
    flex-direction: column;
}

.price-label {
    font-size: 0.875rem;
    color: rgba(248, 250, 252, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price-value {
    font-size: 2.5rem;
    font-weight: 900;
    font-family: 'Orbitron', sans-serif;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

#benefits {
    background: linear-gradient(135deg, var(--color-darker) 0%, #1e1b4b 50%, var(--color-darker) 100%);
}

.benefits-image-wrapper {
    position: relative;
}

.floating-badge {
    position: absolute;
    background: rgba(15, 23, 42, 0.95);
    backdrop-filter: blur(10px);
    padding: 1rem 1.5rem;
    border-radius: 50px;
    border: 1px solid rgba(139, 92, 246, 0.5);
    font-weight: 600;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    animation: floatBadge 3s infinite ease-in-out;
}

.floating-badge i {
    color: var(--color-primary);
}

.badge-1 {
    top: 10%;
    right: -5%;
    animation-delay: 0s;
}

.badge-2 {
    bottom: 15%;
    left: -5%;
    animation-delay: 1.5s;
}

@keyframes floatBadge {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-10px);
    }
}

.benefit-item {
    display: flex;
    gap: 1.5rem;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.benefit-item:hover .benefit-icon {
    transform: rotate(5deg) scale(1.1);
}

.benefit-icon i {
    font-size: 1.5rem;
    color: var(--color-light);
}

.gallery-section {
    background: linear-gradient(180deg, var(--color-darker) 0%, #1e1b4b 100%);
}

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: scale(1.02);
}

.gallery-item img {
    transition: all 0.5s ease;
    width: 100%;
    display: block;
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: brightness(0.7);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(139, 92, 246, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: all 0.4s ease;
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay i {
    color: var(--color-light);
}

#contact {
    background: linear-gradient(180deg, #1e1b4b 0%, var(--color-darker) 100%);
}

.contact-form-wrapper {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.9) 0%, rgba(49, 46, 129, 0.9) 100%);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 20px;
    backdrop-filter: blur(10px);
}

.form-label {
    color: rgba(248, 250, 252, 0.9);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.875rem;
    letter-spacing: 0.5px;
}

.form-control, .form-select {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.3);
    color: var(--color-light);
    padding: 0.75rem 1rem;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.form-control:focus, .form-select:focus {
    background: rgba(15, 23, 42, 0.9);
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
    color: var(--color-light);
}

.form-control::placeholder {
    color: rgba(248, 250, 252, 0.4);
}

.form-select option {
    background: var(--color-dark);
    color: var(--color-light);
}

.info-item {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.6) 0%, rgba(49, 46, 129, 0.6) 100%);
    border: 1px solid rgba(139, 92, 246, 0.2);
    transition: all 0.3s ease;
}

.info-item:hover {
    border-color: var(--color-primary);
    transform: translateX(5px);
}

.info-icon {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.info-icon i {
    color: var(--color-light);
}

.info-item a {
    color: rgba(248, 250, 252, 0.8);
    transition: all 0.3s ease;
}

.info-item a:hover {
    color: var(--color-primary);
}

.map-wrapper {
    height: 400px;
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(20%) contrast(1.2);
}

.footer {
    background: linear-gradient(180deg, var(--color-darker) 0%, #000000 100%);
    border-top: 1px solid rgba(139, 92, 246, 0.2);
}

.footer-content {
    padding: 5rem 0 3rem;
}

.footer-brand img {
    filter: drop-shadow(0 0 10px rgba(139, 92, 246, 0.5));
}

.footer-description {
    color: rgba(248, 250, 252, 0.6);
    line-height: 1.8;
}

.footer-heading {
    font-family: 'Orbitron', sans-serif;
    font-size: 1.125rem;
    color: var(--color-light);
    position: relative;
    padding-bottom: 1rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background: var(--gradient-primary);
}

.footer-links li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    display: inline-block;
}

.footer-links a:hover {
    color: var(--color-primary);
    transform: translateX(5px);
}

.footer-contact li {
    margin-bottom: 1rem;
    color: rgba(248, 250, 252, 0.6);
}

.footer-contact a {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
}

.footer-contact a:hover {
    color: var(--color-primary);
}

.footer-contact i {
    color: var(--color-primary);
}

.newsletter-form .input-group {
    background: rgba(15, 23, 42, 0.7);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.newsletter-form .input-group:focus-within {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 0.2rem rgba(139, 92, 246, 0.25);
}

.newsletter-form .form-control {
    border: none;
    background: transparent;
}

.newsletter-form .form-control:focus {
    box-shadow: none;
}

.newsletter-form .btn-primary {
    border-radius: 0;
}

.footer-bottom {
    padding: 2rem 0;
    border-top: 1px solid rgba(139, 92, 246, 0.1);
    background: rgba(0, 0, 0, 0.5);
}

.footer-bottom p {
    color: rgba(248, 250, 252, 0.5);
    margin: 0;
}

.footer-policy-link {
    color: rgba(248, 250, 252, 0.6);
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.footer-policy-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.footer-policy-link:hover {
    color: var(--color-primary);
}

.footer-policy-link:hover::after {
    width: 100%;
}

.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.98) 0%, rgba(49, 46, 129, 0.98) 100%);
    backdrop-filter: blur(20px);
    padding: 1.5rem 0;
    border-top: 2px solid rgba(139, 92, 246, 0.5);
    z-index: 9999;
    transform: translateY(100%);
    transition: transform 0.5s ease;
    box-shadow: 0 -10px 40px rgba(0, 0, 0, 0.5);
}

.cookie-banner.show {
    transform: translateY(0);
}

.cookie-icon {
    color: var(--color-primary);
    flex-shrink: 0;
}

.cookie-banner a {
    color: var(--color-light);
}

.cookie-banner a:hover {
    color: var(--color-primary);
}

.privacy-hero {
    padding: 150px 0 80px;
    background: linear-gradient(135deg, #1e1b4b 0%, #312e81 100%);
    text-align: center;
}

.privacy-content {
    background: var(--color-darker);
}

.privacy-text {
    background: linear-gradient(135deg, rgba(30, 27, 75, 0.6) 0%, rgba(49, 46, 129, 0.4) 100%);
    padding: 4rem;
    border-radius: 20px;
    border: 1px solid rgba(139, 92, 246, 0.2);
}

.privacy-text h2 {
    color: var(--color-light);
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    font-size: 2rem;
    position: relative;
    padding-bottom: 0.75rem;
}

.privacy-text h2:first-child {
    margin-top: 0;
}

.privacy-text h2::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background: var(--gradient-primary);
}

.privacy-text h3 {
    color: rgba(248, 250, 252, 0.9);
    margin-top: 2rem;
    margin-bottom: 1rem;
    font-size: 1.5rem;
}

.privacy-text p {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.privacy-text ul {
    color: rgba(248, 250, 252, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
}

.privacy-text li {
    margin-bottom: 0.75rem;
}

.privacy-text strong {
    color: var(--color-light);
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .floating-badge {
        position: static;
        margin-bottom: 1rem;
        display: inline-flex;
    }
    
    .privacy-text {
        padding: 2rem;
    }
}

@media (max-width: 767px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .experience-card {
        padding: 2rem;
    }
    
    .price-value {
        font-size: 2rem;
    }
    
    .footer-content {
        padding: 3rem 0 2rem;
    }
    
    .privacy-text {
        padding: 1.5rem;
    }
    
    .cookie-banner .btn {
        width: 100%;
        margin-bottom: 0.5rem;
    }
}


.text-muted {
    color: rgba(255, 255, 255, 0.63) !important;
}

.qw2243 {
    width: 100%;
}

#contact {
    width: 100%;
    overflow: hidden;
}