:root {
    --primary-bg: #ffffff;
    --secondary-bg: #f8fbff;
    --accent-yellow: #FFD000;
    --accent-blue: #00BFFF;
    --accent-green: #2eb82e;
    --accent-gradient: linear-gradient(135deg, #FFD000 0%, #ff6600 100%);
    --text-main: #0a192f;
    --text-dim: #4a5568;
    --white: #ffffff;
    --glass: rgba(255, 255, 255, 0.9);
    --glass-border: rgba(0, 0, 0, 0.05);
    --transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    --shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    --shadow-hover: 0 20px 40px rgba(255, 208, 0, 0.2);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

section {
    scroll-margin-top: 100px;
}

body {
    font-family: 'Outfit', sans-serif;
    background-color: var(--primary-bg);
    color: var(--text-main);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, .logo {
    font-family: 'Plus Jakarta Sans', sans-serif;
    letter-spacing: -1px;
    font-weight: 800;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.section-padding {
    padding: 100px 0;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.gradient-text {
    background: var(--accent-gradient);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

/* Background Bubbles */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 10% 20%, rgba(255, 208, 0, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 90% 80%, rgba(0, 191, 255, 0.1) 0%, transparent 20%),
        radial-gradient(circle at 50% 50%, rgba(50, 205, 50, 0.1) 0%, transparent 20%);
    z-index: -1;
}

/* Loader */
.loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--primary-bg);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}

.loader {
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    animation: bounce 1s ease-in-out infinite alternate;
    box-shadow: 0 5px 15px rgba(255, 208, 0, 0.3);
}

@keyframes bounce {
    from { transform: translateY(0); }
    to { transform: translateY(-30px); }
}

.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: var(--accent-blue);
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    z-index: 20;
    transition: var(--transition);
}

.bounce-arrow {
    font-size: 1.5rem;
    animation: bounceArrow 2s infinite;
}

@keyframes bounceArrow {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(-10px); }
    60% { transform: translateY(-5px); }
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    transform: rotate(180deg);
    z-index: 15;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 80px;
}

.hero-wave .shape-fill {
    fill: #ffffff;
}

/* Navbar */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    padding: 25px 0;
    z-index: 1000;
    transition: var(--transition);
}

.navbar.sticky {
    background: var(--glass);
    backdrop-filter: blur(15px);
    padding: 15px 0;
    border-bottom: 1px solid var(--glass-border);
    box-shadow: var(--shadow);
}

.nav-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-text {
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -1px;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    transition: var(--transition);
}

.logo-text:hover {
    transform: scale(1.05);
}

.footer-logo.logo-text {
    font-size: 2.2rem;
    color: #fff;
}

.nav-links {
    display: flex;
    gap: 35px;
    align-items: center;
}

.nav-links a {
    font-weight: 600;
    color: var(--text-dim);
    font-size: 1.05rem;
}

.nav-links a:hover, .nav-links a.active {
    color: var(--accent-blue);
    transform: scale(1.1);
}

.nav-cta {
    background: var(--accent-gradient);
    color: var(--white) !important;
    padding: 12px 28px;
    border-radius: 50px;
    box-shadow: 0 8px 20px rgba(255, 140, 0, 0.2);
}

.nav-cta:hover {
    transform: translateY(-3px) scale(1.05) !important;
    box-shadow: 0 12px 25px rgba(255, 140, 0, 0.4);
}

.mobile-menu-btn {
    display: none;
    cursor: pointer;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-btn span {
    width: 32px;
    height: 3px;
    background: var(--accent-blue);
    border-radius: 10px;
    transition: var(--transition);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: 
        linear-gradient(rgba(255, 255, 255, 0.6), rgba(255, 255, 255, 0.6)), 
        url('https://images.unsplash.com/photo-1572508589584-94d778209ca9?auto=format&fit=crop&q=80&w=1920');
    background-size: cover;
    background-position: center;
    padding-top: 100px;
    overflow: hidden;
}

.hero-bubbles .bubble {
    position: absolute;
    background: rgba(255, 208, 0, 0.2);
    border-radius: 50%;
    pointer-events: none;
    animation: float 15s infinite ease-in-out;
}

.hero-bubbles .bubble:nth-child(1) { width: 100px; height: 100px; left: 10%; top: 20%; animation-delay: 0s; background: rgba(0, 191, 255, 0.15); }
.hero-bubbles .bubble:nth-child(2) { width: 150px; height: 150px; right: 10%; top: 30%; animation-delay: -2s; background: rgba(255, 208, 0, 0.15); }
.hero-bubbles .bubble:nth-child(3) { width: 80px; height: 80px; left: 20%; bottom: 20%; animation-delay: -5s; background: rgba(50, 205, 50, 0.15); }
.hero-bubbles .bubble:nth-child(4) { width: 120px; height: 120px; right: 20%; bottom: 10%; animation-delay: -7s; background: rgba(0, 191, 255, 0.15); }
.hero-bubbles .bubble:nth-child(5) { width: 60px; height: 60px; left: 50%; top: 10%; animation-delay: -3s; background: rgba(255, 208, 0, 0.15); }

@keyframes float {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    33% { transform: translate(30px, -50px) rotate(10deg); }
    66% { transform: translate(-20px, 20px) rotate(-10deg); }
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 20px;
}

.hero-text-bubble {
    background: rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(15px);
    border: 1px solid rgba(255, 255, 255, 0.5);
    padding: 80px 60px;
    border-radius: 80px 40px 100px 60px;
    box-shadow: 0 30px 60px rgba(0,0,0,0.05), inset 0 0 30px rgba(255,255,255,0.5);
    animation: bubbleWobble 6s infinite ease-in-out alternate, popIn 1.2s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
}

.hero-text-bubble::before {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 60px;
    height: 60px;
    background: var(--accent-yellow);
    border-radius: 50%;
    opacity: 0.6;
    animation: float 4s infinite ease-in-out;
}

@keyframes bubbleWobble {
    0% { border-radius: 80px 40px 100px 60px; transform: rotate(0deg); }
    50% { border-radius: 60px 100px 40px 80px; transform: rotate(1deg); }
    100% { border-radius: 100px 60px 80px 40px; transform: rotate(-1deg); }
}

.hero h1 {
    font-size: 5.2rem;
    line-height: 1.1;
    margin-bottom: 25px;
    color: var(--text-main);
    font-weight: 800;
}

.hero p {
    font-size: 1.5rem;
    color: var(--text-dim);
    margin-bottom: 45px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .hero h1 { font-size: 3.5rem; }
    .hero-text-bubble { padding: 50px 30px; border-radius: 40px; }
    .hero p { font-size: 1.2rem; }
}

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

.hero-btns {
    display: flex;
    gap: 25px;
    justify-content: center;
}

.btn {
    padding: 18px 45px;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    display: inline-block;
    transition: var(--transition);
    border: none;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.1rem;
}

.btn-primary {
    background: var(--accent-gradient);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(255, 140, 0, 0.2);
}

.btn-primary:hover {
    transform: translateY(-5px) rotate(-2deg);
    box-shadow: 0 15px 30px rgba(255, 140, 0, 0.4);
}

.btn-secondary {
    background: var(--accent-blue);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.2);
}

.btn-secondary:hover {
    transform: translateY(-5px) rotate(2deg);
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.4);
}

/* Catalog */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 3.5rem;
    margin-bottom: 20px;
}

.section-header p {
    color: var(--text-dim);
    max-width: 600px;
    margin: 0 auto 40px;
}

.filters {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
}

.filter-btn {
    padding: 12px 35px;
    background: #fff;
    border: 2px solid #eee;
    color: var(--text-dim);
    font-weight: 600;
    font-family: 'Plus Jakarta Sans', sans-serif;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}

.filter-btn.active, .filter-btn:hover {
    background: var(--accent-blue);
    color: #fff;
    border-color: var(--accent-blue);
    transform: scale(1.1) rotate(-1deg);
}

.catalog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
}

.card {
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    transition: var(--transition);
    border: 2px solid #f0f4f8;
    padding: 15px;
    position: relative;
    box-shadow: var(--shadow);
    cursor: pointer;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.card:hover {
    transform: translateY(-15px) scale(1.02);
    border-color: var(--accent-yellow);
    box-shadow: 0 20px 40px rgba(255, 208, 0, 0.15);
}

.card-img {
    height: 220px;
    overflow: hidden;
    position: relative;
    border-radius: 30px;
}

.card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.card:hover .card-img img {
    transform: scale(1.1) rotate(2deg);
}

.card-badge {
    position: absolute;
    top: 20px;
    right: 20px;
    background: var(--accent-green);
    color: #fff;
    padding: 8px 15px;
    border-radius: 15px;
    font-size: 0.9rem;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.card-content {
    padding: 25px 15px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.card-content h3 {
    font-size: 1.7rem;
    margin-bottom: 10px;
    color: var(--accent-blue);
}

.card-content .price {
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-size: 1.2rem;
}

.card-content .desc {
    color: var(--text-dim);
    font-size: 1rem;
    margin-bottom: 25px;
    min-height: 4.5em;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-card {
    margin-top: auto;
    display: block;
    width: 100%;
    padding: 15px;
    text-align: center;
    background: var(--accent-yellow);
    border-radius: 20px;
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    box-shadow: 0 5px 0px #e6bb00;
    transition: 0.2s;
    border: none;
}

.btn-card:hover {
    transform: translateY(3px);
    box-shadow: 0 2px 0px #e6bb00;
    background: var(--accent-gradient);
    color: #fff;
}

/* Modal Styles */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(10, 25, 47, 0.9);
    backdrop-filter: blur(10px);
    justify-content: center;
    align-items: center;
    overflow-y: auto;
}

.modal-content {
    background: #fff;
    width: 90%;
    max-width: 1000px;
    border-radius: 40px;
    position: relative;
    animation: modalIn 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    margin: 20px auto;
}

@keyframes modalIn {
    from { transform: scale(0.8); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.close-modal {
    position: absolute;
    top: 20px;
    right: 30px;
    font-size: 3rem;
    cursor: pointer;
    color: var(--accent-blue);
    z-index: 10;
}

.modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    padding: 40px;
}

.modal-gallery {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

#modal-main-img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    border-radius: 30px;
}

.modal-thumbs {
    display: flex;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 10px;
}

.modal-thumbs img {
    width: 80px;
    height: 80px;
    object-fit: cover;
    border-radius: 15px;
    cursor: pointer;
    border: 2px solid transparent;
    transition: 0.2s;
}

.modal-thumbs img.active {
    border-color: var(--accent-blue);
}

.modal-info h2 {
    font-size: 2.5rem;
    margin-bottom: 15px;
    color: var(--accent-blue);
}

.modal-price {
    font-size: 1.5rem;
    color: var(--accent-green);
    font-weight: 700;
    margin-bottom: 25px;
}

.modal-desc {
    color: var(--text-dim);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
}

.feature-item {
    background: #fff;
    padding: 50px 30px;
    border-radius: 40px;
    text-align: center;
    box-shadow: var(--shadow);
    transition: var(--transition);
    border: 2px solid transparent;
}

.feature-item:hover {
    background: var(--accent-yellow);
    transform: translateY(-10px) rotate(2deg);
    border-color: #fff;
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 25px;
    color: var(--accent-blue);
    background: #f0f8ff;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 25px;
}

.feature-item h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

/* Testimonials */
.testimonials {
    background: var(--accent-blue);
    color: #fff;
    border-radius: 80px 80px 0 0;
}

.testimonial-slide {
    padding: 60px 40px;
}

.stars {
    color: var(--accent-yellow);
    font-size: 1.5rem;
}

.quote {
    font-size: 1.8rem;
    font-family: 'Plus Jakarta Sans', sans-serif;
    line-height: 1.4;
    margin-bottom: 30px;
}

.author {
    font-weight: 700;
    font-size: 1.3rem;
    color: var(--accent-yellow);
}



/* Accordion */
.accordion-item {
    background: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    box-shadow: var(--shadow);
}

.accordion-header h3 {
    color: var(--accent-blue);
}

/* Reservation Box & Form Base */
.reservation-box {
    background: #fff;
    padding: 80px;
    border-radius: 80px;
    box-shadow: 0 50px 150px rgba(0, 0, 0, 0.08);
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    overflow: visible;
    border: 1px solid rgba(0,0,0,0.03);
}

.reservation-box::after {
    content: '';
    position: absolute;
    top: -20px;
    right: -20px;
    width: 100px;
    height: 100px;
    background: var(--accent-gradient);
    border-radius: 30px;
    z-index: -1;
    opacity: 0.3;
    filter: blur(20px);
}

.reservation-box::before {
    content: '';
    position: absolute;
    bottom: -30px;
    left: -30px;
    width: 150px;
    height: 150px;
    background: var(--accent-blue);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.1;
    filter: blur(40px);
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 20px;
}

.form-group label {
    font-weight: 700;
    font-family: 'Plus Jakarta Sans', sans-serif;
    color: var(--text-main);
    font-size: 0.95rem;
    margin-left: 10px;
}

.input-wrapper {
    position: relative;
}

.input-wrapper input, 
.input-wrapper select, 
.input-wrapper textarea {
    width: 100%;
    background: #fcfdfe;
    border: 2px solid #eef2f7;
    border-radius: 25px;
    padding: 20px 20px 20px 55px;
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    transition: var(--transition);
    color: var(--text-main);
    box-shadow: inset 0 2px 4px rgba(0,0,0,0.02);
}

.input-wrapper i {
    position: absolute;
    left: 22px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--accent-blue);
    font-size: 1.2rem;
    pointer-events: none;
    transition: var(--transition);
}

.input-wrapper input:focus, 
.input-wrapper select:focus {
    border-color: var(--accent-blue);
    background: #fff;
    outline: none;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.1), 0 0 0 1px var(--accent-blue);
    transform: translateY(-2px);
}

.input-wrapper input:focus + i,
.input-wrapper select:focus + i {
    color: var(--accent-yellow);
    transform: translateY(-50%) scale(1.1);
}

.form-message {
    padding: 24px;
    border-radius: 24px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    gap: 20px;
    font-weight: 600;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    animation: slideInDown 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.form-message i {
    font-size: 1.5rem;
    flex-shrink: 0;
}

.form-message.success {
    background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%);
    color: #1b5e20;
    border: 1px solid rgba(46, 125, 50, 0.15);
}

.form-message.error {
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    color: #b71c1c;
    border: 1px solid rgba(211, 47, 47, 0.15);
}

/* Booking Wizard Modern Styles */
.booking-progress {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.progress-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    position: relative;
    transition: var(--transition);
}

.progress-step span {
    width: 45px;
    height: 45px;
    background: #f0f4f8;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
    color: var(--text-dim);
    border: 3px solid #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: var(--transition);
}

.progress-step p {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-dim);
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.progress-step.active span {
    background: var(--accent-blue);
    color: #fff;
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
    transform: scale(1.15);
}

.progress-step.active p {
    color: var(--accent-blue);
}

.progress-step.completed span {
    background: var(--accent-green);
    color: #fff;
}

.progress-line {
    position: absolute;
    top: 22px;
    left: 10%;
    width: 80%;
    height: 4px;
    background: #f0f4f8;
    z-index: 1;
    border-radius: 10px;
}

.line-fill {
    width: 0%;
    height: 100%;
    background: var(--accent-blue);
    border-radius: 10px;
    transition: width 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.wizard-step {
    display: none;
    animation: fadeInStep 0.5s ease-out;
}

.wizard-step.active {
    display: block;
}

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

.step-header {
    text-align: center;
    margin-bottom: 40px;
}

.step-header h3 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.step-header p {
    color: var(--text-dim);
}

/* Attraction Selector Grid */
.attraction-selector-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.attraction-option {
    background: #fff;
    border: 2px solid #f0f4f8;
    border-radius: 25px;
    padding: 15px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.attraction-option:hover {
    border-color: var(--accent-blue);
    transform: translateY(-5px);
}

.attraction-option.selected {
    border-color: var(--accent-blue);
    background: #f0faff;
    box-shadow: 0 15px 30px rgba(0, 191, 255, 0.1);
}

.opt-img {
    height: 120px;
    border-radius: 18px;
    overflow: hidden;
    margin-bottom: 15px;
}

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

.opt-info {
    text-align: center;
}

.opt-info strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--text-main);
}

.opt-info span {
    color: var(--accent-green);
    font-weight: 700;
}

.opt-check {
    position: absolute;
    top: 10px;
    right: 10px;
    color: var(--accent-blue);
    font-size: 1.2rem;
    opacity: 0;
    transform: scale(0.5);
    transition: var(--transition);
}

.attraction-option.selected .opt-check {
    opacity: 1;
    transform: scale(1);
}

/* Calendar Styling */
.calendar-container-wizard {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 40px;
}

/* Premium Flatpickr Calendar Styling */
.flatpickr-calendar {
    background: #ffffff !important;
    border-radius: 30px !important;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    padding: 15px !important;
    font-family: 'Plus Jakarta Sans', sans-serif !important;
    animation: popIn 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275) !important;
}

.flatpickr-calendar.inline {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.08) !important;
    border: 1px solid rgba(0, 0, 0, 0.05) !important;
    background: #ffffff !important;
}

.flatpickr-months .flatpickr-prev-month, 
.flatpickr-months .flatpickr-next-month {
    fill: var(--accent-blue) !important;
    padding: 10px !important;
    transition: var(--transition) !important;
    border-radius: 50% !important;
}

.flatpickr-months .flatpickr-prev-month:hover, 
.flatpickr-months .flatpickr-next-month:hover {
    background: rgba(0, 191, 255, 0.08) !important;
    color: var(--accent-blue) !important;
    transform: scale(1.1) !important;
}

.flatpickr-current-month {
    font-weight: 700 !important;
    font-size: 1.15rem !important;
    color: var(--text-main) !important;
}

.flatpickr-current-month .numInputWrapper span.arrowUp,
.flatpickr-current-month .numInputWrapper span.arrowDown {
    display: none !important;
}

span.flatpickr-weekday {
    font-weight: 700 !important;
    color: var(--text-dim) !important;
    font-size: 0.9rem !important;
}

.flatpickr-day {
    border-radius: 14px !important;
    transition: all 0.2s ease !important;
    font-weight: 600 !important;
    height: 40px !important;
    line-height: 36px !important;
    margin: 2px !important;
}

.flatpickr-day:hover {
    background: #f0faff !important;
    color: var(--accent-blue) !important;
}

.flatpickr-day.today {
    border-color: var(--accent-blue) !important;
    color: var(--accent-blue) !important;
    background: rgba(0, 191, 255, 0.05) !important;
}

.flatpickr-day.selected, 
.flatpickr-day.selected:hover,
.flatpickr-day.selected:focus {
    background: linear-gradient(135deg, var(--accent-blue) 0%, #0099ff 100%) !important;
    border-color: transparent !important;
    color: #fff !important;
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3) !important;
    transform: scale(1.05) !important;
}

.flatpickr-day.flatpickr-disabled, 
.flatpickr-day.flatpickr-disabled:hover {
    color: #cbd5e1 !important;
    background: transparent !important;
}

/* Custom keyframes for premium animations */
@keyframes popIn {
    0% { opacity: 0; transform: scale(0.9) translateY(10px); }
    100% { opacity: 1; transform: scale(1) translateY(0); }
}

@keyframes slideInDown {
    0% { opacity: 0; transform: translateY(-20px); }
    100% { opacity: 1; transform: translateY(0); }
}

#availability-hint-wizard {
    margin-top: 20px;
    padding: 12px 25px;
    border-radius: 15px;
    font-weight: 700;
    font-size: 1rem;
}

/* Form Grid Wizard */
.form-grid-wizard {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 25px;
    margin-bottom: 40px;
}

.full-width {
    grid-column: span 2;
}

.step-actions {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.step-actions .btn {
    padding: 18px 40px;
    border-radius: 20px;
}

@media (max-width: 768px) {
    .attraction-selector-grid {
        grid-template-columns: 1fr 1fr;
    }
    .form-grid-wizard {
        grid-template-columns: 1fr;
    }
    .full-width {
        grid-column: span 1;
    }
}

/* Footer Modernization */
.footer {
    background: var(--text-main);
    color: #fff;
    position: relative;
    padding-top: 150px;
    padding-bottom: 50px;
    margin-top: 100px;
}

.footer-wave {
    position: absolute;
    top: -99px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.footer-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 100px;
}

.footer-wave .shape-fill {
    fill: var(--text-main);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1.2fr;
    gap: 80px;
    margin-bottom: 80px;
}

.footer-brand .logo-img {
    display: inline-block;
    margin-bottom: 25px;
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 35px;
    font-size: 1.05rem;
}

.social-links {
    display: flex;
    gap: 15px;
}

.social-icon {
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 15px;
    color: #fff;
    font-size: 1.2rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.social-icon:hover {
    background: var(--accent-blue);
    transform: translateY(-5px) rotate(8deg);
    border-color: var(--accent-blue);
    box-shadow: 0 10px 20px rgba(0, 191, 255, 0.3);
}

.footer-links h3, .footer-contacts h3 {
    font-size: 1.5rem;
    margin-bottom: 35px;
    position: relative;
    padding-bottom: 15px;
    font-family: 'Plus Jakarta Sans', sans-serif;
    font-weight: 700;
}

.footer-links h3::after, .footer-contacts h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 3px;
    background: var(--accent-yellow);
    border-radius: 10px;
}

.footer-links ul li {
    margin-bottom: 18px;
}

.footer-links ul li a {
    color: rgba(255, 255, 255, 0.7);
    display: flex;
    align-items: center;
    gap: 10px;
    font-weight: 500;
    transition: var(--transition);
}

.footer-links ul li a i {
    font-size: 0.8rem;
    color: var(--accent-blue);
}

.footer-links ul li a:hover {
    color: var(--accent-yellow);
    transform: translateX(8px);
}

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

.contact-list li {
    display: flex;
    align-items: center;
    gap: 20px;
}

.icon-box {
    width: 55px;
    height: 55px;
    background: rgba(0, 191, 255, 0.1);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent-blue);
    font-size: 1.3rem;
    flex-shrink: 0;
}

.contact-text span {
    display: block;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 3px;
}

.contact-text strong {
    display: block;
    font-size: 1.1rem;
    color: #fff;
    font-family: 'Plus Jakarta Sans', sans-serif;
}

.footer-bottom {
    padding-top: 40px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.copyright p {
    color: rgba(255, 255, 255, 0.5);
}

.copyright strong {
    color: #fff;
}

.footer-legal {
    display: flex;
    gap: 30px;
}

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.95rem;
}

.footer-legal a:hover {
    color: #fff;
}
/* Mobile Navigation & Premium Responsive Design */
@media (max-width: 992px) {
    .nav-container {
        padding: 15px 25px;
    }

    .mobile-menu-btn {
        display: flex;
        flex-direction: column;
        gap: 6px;
        cursor: pointer;
        z-index: 1001;
    }

    .mobile-menu-btn span {
        display: block;
        width: 30px;
        height: 3px;
        background: var(--text-main);
        border-radius: 10px;
        transition: var(--transition);
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -7px); }

    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 85%;
        height: 100vh;
        background: #fff;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: 40px;
        transition: 0.5s cubic-bezier(0.7, 0, 0.3, 1);
        box-shadow: -20px 0 50px rgba(0,0,0,0.1);
        z-index: 1000;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li a {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-main);
    }

    .nav-cta {
        width: 80%;
        text-align: center;
        padding: 20px !important;
        font-size: 1.5rem !important;
    }

    /* Hero Responsive */
    .hero {
        padding-top: 150px;
        padding-bottom: 80px;
        text-align: center;
    }
}

/* ==========================================================================
   Professional Mobile Optimization
   ========================================================================== */

@media (max-width: 991px) {
    /* Mobile Menu - Premium Overlay */
    .nav-links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(25px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        transition: 0.6s cubic-bezier(0.77, 0.2, 0.05, 1.0);
        z-index: 999;
        gap: 25px;
    }

    .nav-links.active {
        right: 0;
    }

    .nav-links li {
        margin: 15px 0;
        opacity: 0;
        transform: translateY(20px);
        transition: 0.4s ease-out;
    }

    .nav-links.active li {
        opacity: 1;
        transform: translateY(0);
    }

    /* Staggered animation */
    .nav-links.active li:nth-child(1) { transition-delay: 0.2s; }
    .nav-links.active li:nth-child(2) { transition-delay: 0.3s; }
    .nav-links.active li:nth-child(3) { transition-delay: 0.4s; }
    .nav-links.active li:nth-child(4) { transition-delay: 0.5s; }

    .nav-links a {
        font-size: 2rem;
        font-weight: 800;
        color: var(--text-main);
    }

    .mobile-menu-btn {
        display: flex;
        z-index: 1000;
        position: relative;
    }

    .mobile-menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(8px, 8px); background: var(--accent-blue); }
    .mobile-menu-btn.active span:nth-child(2) { opacity: 0; }
    .mobile-menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); background: var(--accent-blue); }

    /* Section Spacing */
    .section-padding {
        padding: 80px 0;
    }

    .section-header {
        margin-bottom: 50px;
    }

    /* Hero Section - Better Scaling */
    .hero {
        padding-top: 130px;
        min-height: auto;
        padding-bottom: 80px;
    }

    .hero h1 {
        font-size: 2.8rem;
        line-height: 1.2;
    }

    .hero p {
        font-size: 1.1rem;
        margin-bottom: 35px;
    }

    .hero-text-bubble {
        padding: 45px 25px;
        border-radius: 40px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 15px;
    }

    .hero-btns .btn {
        width: 100%;
        padding: 18px 30px;
    }

    /* Grid Layouts */
    .catalog-grid, .features-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .card {
        border-radius: 35px;
    }

    /* Product Page */
    .product-grid {
        grid-template-columns: 1fr;
        padding: 20px;
        border-radius: 40px;
        gap: 30px;
    }

    .main-img-box {
        height: 320px;
        border-radius: 30px;
        border-width: 5px;
    }

    .thumb-list img {
        width: 80px;
        height: 80px;
        border-radius: 15px;
    }

    .product-content h1 {
        font-size: 2.2rem;
        text-align: center;
    }

    .price-badge {
        font-size: 1.6rem;
        display: block;
        text-align: center;
        margin: 0 auto 30px;
    }

    .spec-grid {
        grid-template-columns: 1fr;
    }

    .action-btns {
        flex-direction: column;
    }

    /* Reservation Wizard */
    .booking-progress {
        margin-bottom: 35px;
    }

    .progress-step p {
        display: none;
    }

    .progress-step span {
        width: 35px;
        height: 35px;
        font-size: 0.9rem;
    }

    .reservation-box {
        padding: 30px 15px;
        border-radius: 35px;
    }

    .attraction-selector-grid {
        grid-template-columns: 1fr;
    }

    .step-actions {
        flex-direction: column;
        gap: 12px;
    }

    .step-actions .btn {
        width: 100%;
    }

    /* Footer Mobile - Clean Layout */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 50px;
        text-align: center;
    }

    .footer-brand, .footer-links, .footer-contacts {
        grid-column: span 1;
    }

    .social-links {
        justify-content: center;
    }

    .contact-list li {
        justify-content: center;
        text-align: center;
    }
}

/* Animations */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.8s cubic-bezier(0.17, 0.67, 0.83, 0.67);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

/* Location Section Modern */
.location-box {
    display: flex;
    background: #fff;
    border-radius: 40px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0,0,0,0.05);
    min-height: 550px;
    border: 1px solid rgba(0,0,0,0.03);
}

.location-card {
    flex: 1;
    padding: 60px;
    background: #ffffff;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.card-logo {
    margin-bottom: 50px;
}
.card-logo img {
    height: 65px;
}

.address-details {
    margin-bottom: 50px;
}

.detail-item {
    display: flex;
    gap: 20px;
    margin-bottom: 35px;
    align-items: flex-start;
}

.detail-item i {
    width: 24px;
    height: 24px;
    color: #e2e8f0;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
    margin-top: 4px;
}

.detail-item strong {
    display: block;
    font-size: 1.15rem;
    color: var(--text-main);
    margin-bottom: 8px;
    font-weight: 800;
}

.detail-item p {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
    max-width: 280px;
}

.btn-directions {
    background: linear-gradient(90deg, #FFC700 0%, #FF8A00 100%);
    color: #fff;
    padding: 22px 40px;
    border-radius: 40px;
    font-weight: 800;
    font-size: 1.1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    box-shadow: 0 15px 30px rgba(255, 138, 0, 0.3);
    transition: var(--transition);
    border: none;
    width: fit-content;
}

.btn-directions:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(255, 138, 0, 0.4);
}

.map-wrapper {
    flex: 1.8;
    background: #f1f5f9;
}

@media (max-width: 992px) {
    .location-box {
        flex-direction: column;
    }
    .location-card {
        padding: 50px 30px;
    }
    .map-wrapper {
        height: 400px;
    }
    .btn-directions {
        width: 100%;
    }
}

/* Floating Mobile CTA */
.mobile-cta-floating {
    position: fixed;
    bottom: 25px;
    left: 20px;
    right: 20px;
    z-index: 9999;
    display: none;
    animation: slideUpFloating 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275) forwards;
}

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

.mobile-cta-floating .btn {
    width: 100%;
    padding: 16px 20px;
    border-radius: 20px;
    font-weight: 800;
    font-size: 1.05rem;
    background: linear-gradient(90deg, #FFC700 0%, #FF8A00 100%);
    color: #fff;
    box-shadow: 0 15px 35px rgba(255, 138, 0, 0.4);
    border: 2px solid rgba(255, 255, 255, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

@media (max-width: 768px) {
    .mobile-cta-floating {
        display: block;
        transition: opacity 0.3s ease, transform 0.3s ease;
    }
    
    /* Add padding to footer so it's not covered */
    .footer {
        padding-bottom: 100px;
    }

    /* Fluid Text Sizing & Word Wrap Protection to prevent screen overflow */
    .hero h1 {
        font-size: clamp(1.8rem, 8vw, 2.5rem) !important;
        word-wrap: break-word !important;
    }

    .section-header h2 {
        font-size: clamp(1.6rem, 7vw, 2.2rem) !important;
        word-wrap: break-word !important;
        line-height: 1.25 !important;
    }

    .step-header h3 {
        font-size: clamp(1.4rem, 6vw, 1.8rem) !important;
        word-wrap: break-word !important;
    }

    .success-title {
        font-size: clamp(1.4rem, 6vw, 2rem) !important;
        word-wrap: break-word !important;
    }

    .product-content h1 {
        font-size: clamp(1.6rem, 6vw, 2.2rem) !important;
        word-wrap: break-word !important;
    }

    /* Premium Horizontal Scroll Filters */
    .filters {
        display: flex !important;
        overflow-x: auto !important;
        justify-content: flex-start !important;
        padding: 10px 20px 20px 20px !important;
        gap: 12px !important;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
        max-width: 100vw;
        margin-left: -20px;
        margin-right: -20px;
    }
    
    .filters::-webkit-scrollbar {
        display: none;
    }
    
    .filter-btn {
        flex-shrink: 0 !important;
        padding: 10px 24px !important;
        font-size: 0.9rem !important;
    }
}
