/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --primary-color: #00e5ff;
    /* Vibrant Cyan */
    --primary-dark: #00b8d4;
    --secondary-color: #ff4081;
    /* Hot Pink */
    --accent-color: #ffea00;
    /* Sunny Yellow */
    --text-color: #2d3436;
    --light-bg: #f0f8ff;
    --white: #ffffff;
    --glass-bg: rgba(255, 255, 255, 0.15);
    --glass-border: rgba(255, 255, 255, 0.2);
    --glass-shadow: 0 8px 32px 0 rgba(31, 38, 135, 0.37);
    --card-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    --gradient-primary: linear-gradient(135deg, #00e5ff 0%, #2979ff 100%);
    --gradient-hot: linear-gradient(135deg, #ff4081 0%, #ff1744 100%);
    --gradient-sun: linear-gradient(135deg, #ffea00 0%, #ff9100 100%);
    --transition-fast: 0.3s ease;
    --transition-medium: 0.5s ease;
}

html {
    scroll-behavior: smooth;
}

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

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 40px, 0);
    }

    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes zoomIn {
    from {
        opacity: 0;
        transform: scale3d(0.3, 0.3, 0.3);
    }

    50% {
        opacity: 1;
    }
}

@keyframes float {
    0% {
        transform: translateY(0px);
    }

    50% {
        transform: translateY(-15px);
    }

    100% {
        transform: translateY(0px);
    }
}

@keyframes pulse-glow {
    0% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.4);
    }

    70% {
        box-shadow: 0 0 0 15px rgba(0, 229, 255, 0);
    }

    100% {
        box-shadow: 0 0 0 0 rgba(0, 229, 255, 0);
    }
}

@keyframes sheen {
    0% {
        transform: skewX(-45deg) translateX(0);
    }

    100% {
        transform: skewX(-45deg) translateX(400%);
    }
}

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

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

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

/* Navigation */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: var(--shadow);
    z-index: 1000;
    transition: all 0.3s ease;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 20px;
}

.nav-brand h1 {
    font-size: 2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 800;
    transition: all 0.3s ease;
    text-shadow: 0 2px 10px rgba(0, 229, 255, 0.2);
}

.nav-brand h1:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 4px 8px rgba(0, 229, 255, 0.4));
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-link {
    text-decoration: none;
    color: var(--text-color);
    font-weight: 600;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
}

.nav-link:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

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

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

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
    gap: 5px;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: var(--dark-color);
    transition: all 0.3s ease;
    border-radius: 3px;
}

/* Hero Section */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 0;
    overflow: hidden;
    width: 100%;
}

/* Navbar inside Hero Section */
.navbar-hero {
    position: absolute;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    width: 95%;
    max-width: 1400px;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 100;
    transition: all 0.3s ease;
    padding: 0.8rem 2rem;
    margin-top: 10px;
}

.container-hero {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
}

.nav-brand-hero {
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.nav-brand-hero h1 {
    font-size: 1.4rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    white-space: nowrap;
    margin: 0;
}

.nav-menu-hero {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
    margin: 0;
    padding: 0;
    flex: 1;
    justify-content: center;
}

.nav-link-hero {
    text-decoration: none;
    color: #2d3436;
    font-weight: 700;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    position: relative;
    padding: 0.5rem 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.nav-link-hero:hover {
    color: var(--primary-color);
    transform: translateY(-2px);
}

.nav-link-hero::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--gradient-primary);
    transition: width 0.3s ease;
    border-radius: 2px;
}

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

.nav-cta {
    display: flex;
    align-items: center;
}

.btn-nav-book {
    background: var(--gradient-hot);
    color: var(--white);
    padding: 0.8rem 2.2rem;
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 4px 15px rgba(255, 64, 129, 0.4);
    white-space: nowrap;
    border: none;
    position: relative;
    overflow: hidden;
}

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

.btn-nav-book:hover::before {
    left: 100%;
}

.btn-nav-book:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 8px 25px rgba(255, 64, 129, 0.6);
}

.btn-nav-login {
    margin-left: 1rem;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary-color);
    border-radius: 50%;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    font-size: 1.6rem;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.btn-nav-login:hover {
    transform: translateY(-2px) rotate(15deg);
    box-shadow: 0 6px 20px rgba(0, 229, 255, 0.5);
    background: var(--white);
    color: var(--secondary-color);
    border-color: var(--secondary-color);
}

.btn-nav-login i {
    transition: transform 0.3s ease;
}

.btn-nav-login:hover i {
    transform: scale(1.1);
}

/* Hero Image Slider */
.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    opacity: 0;
    transition: opacity 1.5s ease-in-out, transform 6s linear;
    transform: scale(1);
}

.hero-slide.active {
    opacity: 1;
    transform: scale(1.1);
    /* Ken Burns effect */
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.5) 0%, rgba(0, 0, 0, 0.6) 100%);
    z-index: 1;
}

/* Water Animation */
.water-animation {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 2;
    overflow: hidden;
}

.wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 200%;
    height: 100px;
    background-repeat: repeat-x;
    opacity: 0.6;
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.wave1 {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.2) 25%,
            rgba(255, 255, 255, 0.3) 50%,
            rgba(255, 255, 255, 0.2) 75%,
            transparent 100%);
    animation: wave-animation 15s linear infinite;
    height: 120px;
    opacity: 0.5;
}

.wave2 {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.15) 30%,
            rgba(255, 255, 255, 0.25) 60%,
            rgba(255, 255, 255, 0.15) 90%,
            transparent 100%);
    animation: wave-animation 12s linear infinite reverse;
    height: 100px;
    opacity: 0.4;
    bottom: 20px;
}

.wave3 {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.1) 20%,
            rgba(255, 255, 255, 0.2) 50%,
            rgba(255, 255, 255, 0.1) 80%,
            transparent 100%);
    animation: wave-animation 18s linear infinite;
    height: 80px;
    opacity: 0.3;
    bottom: 40px;
}

.wave4 {
    background: linear-gradient(90deg,
            transparent 0%,
            rgba(255, 255, 255, 0.08) 35%,
            rgba(255, 255, 255, 0.15) 65%,
            rgba(255, 255, 255, 0.08) 95%,
            transparent 100%);
    animation: wave-animation 20s linear infinite reverse;
    height: 60px;
    opacity: 0.25;
    bottom: 60px;
}

@keyframes wave-animation {
    0% {
        transform: translateX(0) translateZ(0) scaleY(1);
    }

    50% {
        transform: translateX(-25%) translateZ(0) scaleY(0.8);
    }

    100% {
        transform: translateX(-50%) translateZ(0) scaleY(1);
    }
}

/* Additional water ripple effect */
.water-animation::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 200px;
    background:
        radial-gradient(circle at 20% 50%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 60% 80%, rgba(255, 255, 255, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 50%);
    animation: ripple 8s ease-in-out infinite;
    z-index: 1;
}

@keyframes ripple {

    0%,
    100% {
        transform: scale(1);
        opacity: 0.5;
    }

    50% {
        transform: scale(1.1);
        opacity: 0.7;
    }
}

/* Bubbles Animation */
.bubble {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    border: 2px solid rgba(255, 255, 255, 0.5);
    animation: bubble-rise linear infinite;
    z-index: 2;
}

.bubble1 {
    left: 5%;
    width: 20px;
    height: 20px;
    animation-duration: 8s;
    animation-delay: 0s;
    bottom: -20px;
}

.bubble2 {
    left: 12%;
    width: 15px;
    height: 15px;
    animation-duration: 10s;
    animation-delay: 0.5s;
    bottom: -15px;
}

.bubble3 {
    left: 18%;
    width: 25px;
    height: 25px;
    animation-duration: 12s;
    animation-delay: 1s;
    bottom: -25px;
}

.bubble4 {
    left: 25%;
    width: 18px;
    height: 18px;
    animation-duration: 9s;
    animation-delay: 0.3s;
    bottom: -18px;
}

.bubble5 {
    left: 32%;
    width: 22px;
    height: 22px;
    animation-duration: 11s;
    animation-delay: 1.5s;
    bottom: -22px;
}

.bubble6 {
    left: 40%;
    width: 16px;
    height: 16px;
    animation-duration: 13s;
    animation-delay: 2s;
    bottom: -16px;
}

.bubble7 {
    left: 48%;
    width: 20px;
    height: 20px;
    animation-duration: 10s;
    animation-delay: 0.8s;
    bottom: -20px;
}

.bubble8 {
    left: 55%;
    width: 14px;
    height: 14px;
    animation-duration: 14s;
    animation-delay: 1.2s;
    bottom: -14px;
}

.bubble9 {
    left: 62%;
    width: 19px;
    height: 19px;
    animation-duration: 9s;
    animation-delay: 0.6s;
    bottom: -19px;
}

.bubble10 {
    left: 68%;
    width: 23px;
    height: 23px;
    animation-duration: 11s;
    animation-delay: 1.8s;
    bottom: -23px;
}

.bubble11 {
    left: 75%;
    width: 17px;
    height: 17px;
    animation-duration: 12s;
    animation-delay: 2.3s;
    bottom: -17px;
}

.bubble12 {
    left: 82%;
    width: 21px;
    height: 21px;
    animation-duration: 10s;
    animation-delay: 1.5s;
    bottom: -21px;
}

.bubble13 {
    left: 88%;
    width: 15px;
    height: 15px;
    animation-duration: 13s;
    animation-delay: 2.5s;
    bottom: -15px;
}

.bubble14 {
    left: 15%;
    width: 18px;
    height: 18px;
    animation-duration: 8s;
    animation-delay: 0.2s;
    bottom: -18px;
}

.bubble15 {
    left: 35%;
    width: 24px;
    height: 24px;
    animation-duration: 11s;
    animation-delay: 1.3s;
    bottom: -24px;
}

.bubble16 {
    left: 58%;
    width: 16px;
    height: 16px;
    animation-duration: 9s;
    animation-delay: 0.7s;
    bottom: -16px;
}

.bubble17 {
    left: 72%;
    width: 20px;
    height: 20px;
    animation-duration: 12s;
    animation-delay: 2.1s;
    bottom: -20px;
}

.bubble18 {
    left: 85%;
    width: 13px;
    height: 13px;
    animation-duration: 14s;
    animation-delay: 2.8s;
    bottom: -13px;
}

.bubble19 {
    left: 28%;
    width: 19px;
    height: 19px;
    animation-duration: 10s;
    animation-delay: 1s;
    bottom: -19px;
}

.bubble20 {
    left: 65%;
    width: 22px;
    height: 22px;
    animation-duration: 11s;
    animation-delay: 1.7s;
    bottom: -22px;
}

@keyframes bubble-rise {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }

    50% {
        transform: translateX(20px);
        opacity: 1;
    }

    100% {
        transform: translateY(calc(-100vh - 50px)) translateX(-20px);
        opacity: 0;
    }
}

/* Seaweed Animation */
.seaweed {
    position: absolute;
    bottom: 0;
    width: 8px;
    background: linear-gradient(to top, #2d5016 0%, #4a7c2a 50%, #6ba844 100%);
    border-radius: 4px 4px 0 0;
    z-index: 1;
    animation: seaweed-sway 3s ease-in-out infinite;
}

.seaweed1 {
    left: 5%;
    height: 120px;
    animation-delay: 0s;
}

.seaweed2 {
    left: 25%;
    height: 140px;
    animation-delay: 0.5s;
}

.seaweed3 {
    left: 50%;
    height: 150px;
    animation-delay: 1s;
}

.seaweed4 {
    left: 70%;
    height: 110px;
    animation-delay: 1.2s;
}

.seaweed5 {
    left: 90%;
    height: 130px;
    animation-delay: 1.5s;
}

@keyframes seaweed-sway {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

/* Coral */
.coral {
    position: absolute;
    bottom: 0;
    z-index: 1;
}

.coral1 {
    left: 8%;
    width: 30px;
    height: 60px;
    background: linear-gradient(to top, #ff6b6b 0%, #ee5a6f 50%, #c44569 100%);
    clip-path: polygon(50% 0%, 0% 100%, 20% 100%, 30% 70%, 40% 100%, 60% 100%, 70% 70%, 80% 100%, 100% 100%);
    animation: coral-glow 3s ease-in-out infinite;
}

.coral2 {
    left: 45%;
    width: 25px;
    height: 50px;
    background: linear-gradient(to top, #ffa502 0%, #ff6348 50%, #ff4757 100%);
    clip-path: polygon(50% 0%, 0% 100%, 25% 100%, 35% 60%, 50% 100%, 65% 60%, 75% 100%, 100% 100%);
    animation: coral-glow 3s ease-in-out infinite 1s;
}

.coral3 {
    left: 78%;
    width: 28px;
    height: 55px;
    background: linear-gradient(to top, #ff9ff3 0%, #f368e0 50%, #ee5a6f 100%);
    clip-path: polygon(50% 0%, 0% 100%, 22% 100%, 32% 65%, 45% 100%, 55% 100%, 68% 65%, 78% 100%, 100% 100%);
    animation: coral-glow 3s ease-in-out infinite 1.5s;
}

@keyframes coral-glow {

    0%,
    100% {
        opacity: 0.8;
        filter: brightness(1);
    }

    50% {
        opacity: 1;
        filter: brightness(1.2);
    }
}

/* Starfish */
.starfish {
    position: absolute;
    bottom: 20px;
    z-index: 2;
    animation: starfish-rotate 8s linear infinite;
}

.starfish1 {
    left: 20%;
    width: 30px;
    height: 30px;
    background: #ff6b6b;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
}

.starfish2 {
    left: 60%;
    width: 25px;
    height: 25px;
    background: #ffa502;
    clip-path: polygon(50% 0%, 61% 35%, 98% 35%, 68% 57%, 79% 91%, 50% 70%, 21% 91%, 32% 57%, 2% 35%, 39% 35%);
    animation-delay: 2s;
}

@keyframes starfish-rotate {

    0%,
    100% {
        transform: rotate(0deg) scale(1);
    }

    50% {
        transform: rotate(180deg) scale(1.1);
    }
}

/* Seahorse */
.seahorse {
    position: absolute;
    z-index: 3;
    animation: seahorse-swim linear infinite;
}

.seahorse1 {
    left: 35%;
    bottom: -80px;
    animation-delay: 2s;
    animation-duration: 18s;
    transform: scale(0.7);
}

.seahorse2 {
    left: 70%;
    bottom: -80px;
    animation-delay: 6s;
    animation-duration: 20s;
    transform: scale(0.6);
}

.seahorse::before {
    content: '';
    position: absolute;
    width: 40px;
    height: 50px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    transform: rotate(-20deg);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.seahorse::after {
    content: '';
    position: absolute;
    top: 35px;
    left: 15px;
    width: 20px;
    height: 30px;
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 100%);
    border-radius: 0 0 50% 50%;
    transform: rotate(20deg);
    animation: seahorse-tail 1s ease-in-out infinite;
}

@keyframes seahorse-swim {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }

    50% {
        transform: translateX(15px) rotate(5deg);
        opacity: 1;
    }

    100% {
        transform: translateY(calc(-100vh - 100px)) translateX(-15px) rotate(-5deg);
        opacity: 0;
    }
}

@keyframes seahorse-tail {

    0%,
    100% {
        transform: rotate(20deg);
    }

    50% {
        transform: rotate(30deg);
    }
}

/* Better Fish Animations - CSS Based */
.fish {
    position: absolute;
    z-index: 3;
    animation: swim-up linear infinite;
}

.fish-body {
    width: 70px;
    height: 40px;
    background: linear-gradient(135deg, #4a90e2 0%, #357abd 50%, #2a5a8a 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), inset 0 -5px 10px rgba(255, 255, 255, 0.2);
}

.fish-eye {
    position: absolute;
    width: 14px;
    height: 14px;
    background: #fff;
    border-radius: 50%;
    top: 12px;
    left: 18px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), inset 0 0 3px rgba(0, 0, 0, 0.3);
}

.fish-eye::after {
    content: '';
    position: absolute;
    width: 8px;
    height: 8px;
    background: #000;
    border-radius: 50%;
    top: 3px;
    left: 3px;
}

.fish-scale {
    position: absolute;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.3) 2px, transparent 2px),
        radial-gradient(circle at 60% 50%, rgba(255, 255, 255, 0.2) 1.5px, transparent 1.5px);
    background-size: 15px 15px;
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
}

.fish-tail {
    position: absolute;
    right: -25px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 20px solid transparent;
    border-bottom: 20px solid transparent;
    border-left: 30px solid #357abd;
    animation: tail-swim 0.25s ease-in-out infinite;
}

.tail-fin {
    position: absolute;
    right: -5px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 0;
    border-top: 12px solid transparent;
    border-bottom: 12px solid transparent;
    border-left: 15px solid rgba(42, 90, 138, 0.6);
}

.fish-fin-top {
    position: absolute;
    top: -10px;
    left: 25px;
    width: 0;
    height: 0;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    border-bottom: 18px solid #4a90e2;
    animation: fin-swim 0.35s ease-in-out infinite;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

.fish-fin-bottom {
    position: absolute;
    bottom: -8px;
    left: 30px;
    width: 0;
    height: 0;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    border-top: 15px solid #4a90e2;
    animation: fin-swim 0.4s ease-in-out infinite 0.1s;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.3));
}

/* Fish Color Variations */
.fish-body-orange {
    background: linear-gradient(135deg, #ff8c42 0%, #ff6b35 50%, #e55a2b 100%);
}

.fish-tail-orange {
    border-left-color: #ff6b35;
}

.fish-fin-orange {
    border-bottom-color: #ff8c42;
    border-top-color: #ff8c42;
}

.fish-body-blue {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 50%, #0077aa 100%);
}

.fish-tail-blue {
    border-left-color: #0099cc;
}

.fish-fin-blue {
    border-bottom-color: #00d4ff;
    border-top-color: #00d4ff;
}

.fish-body-yellow {
    background: linear-gradient(135deg, #ffe66d 0%, #ffd93d 50%, #e6c435 100%);
}

.fish-tail-yellow {
    border-left-color: #ffd93d;
}

.fish-fin-yellow {
    border-bottom-color: #ffe66d;
    border-top-color: #ffe66d;
}

.fish-body-purple {
    background: linear-gradient(135deg, #a78bfa 0%, #8b5cf6 50%, #7c3aed 100%);
}

.fish-tail-purple {
    border-left-color: #8b5cf6;
}

.fish-fin-purple {
    border-bottom-color: #a78bfa;
    border-top-color: #a78bfa;
}

.fish-body-green {
    background: linear-gradient(135deg, #4ecdc4 0%, #44a08d 50%, #3a8a7a 100%);
}

.fish-tail-green {
    border-left-color: #44a08d;
}

.fish-fin-green {
    border-bottom-color: #4ecdc4;
    border-top-color: #4ecdc4;
}

@keyframes tail-swim {

    0%,
    100% {
        transform: translateY(-50%) rotate(0deg);
    }

    50% {
        transform: translateY(-50%) rotate(-15deg);
    }
}

@keyframes fin-swim {

    0%,
    100% {
        transform: rotate(0deg);
    }

    50% {
        transform: rotate(-10deg);
    }
}

/* Fish positions and delays */
.fish1 {
    left: 10%;
    bottom: -80px;
    animation-delay: 0s;
    animation-duration: 12s;
    transform: scale(0.8);
}

.fish2 {
    left: 25%;
    bottom: -80px;
    animation-delay: 2s;
    animation-duration: 14s;
    transform: scale(1);
}

.fish3 {
    left: 45%;
    bottom: -80px;
    animation-delay: 4s;
    animation-duration: 16s;
    transform: scale(0.9);
}

.fish4 {
    left: 65%;
    bottom: -80px;
    animation-delay: 6s;
    animation-duration: 13s;
    transform: scale(1.1);
}

.fish5 {
    left: 80%;
    bottom: -80px;
    animation-delay: 8s;
    animation-duration: 15s;
    transform: scale(0.85);
}

.fish6 {
    left: 15%;
    bottom: -80px;
    animation-delay: 10s;
    animation-duration: 14s;
    transform: scale(0.9);
}

@keyframes swim-up {
    0% {
        transform: translateY(0) translateX(0) rotate(0deg);
        opacity: 0.7;
    }

    10% {
        opacity: 1;
    }

    25% {
        transform: translateX(15px) rotate(3deg);
    }

    50% {
        transform: translateX(25px) rotate(-3deg);
    }

    75% {
        transform: translateX(15px) rotate(2deg);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(calc(-100vh - 100px)) translateX(-25px) rotate(-2deg);
        opacity: 0;
    }
}

/* Jellyfish Animation */
.jellyfish {
    position: absolute;
    z-index: 3;
    animation: jellyfish-float linear infinite;
}

.jellyfish-body {
    width: 60px;
    height: 70px;
    background: radial-gradient(ellipse at center, rgba(255, 182, 193, 0.95) 0%, rgba(255, 105, 180, 0.8) 50%, rgba(255, 20, 147, 0.6) 100%);
    border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
    position: relative;
    box-shadow: 0 0 30px rgba(255, 182, 193, 0.7), inset 0 -10px 20px rgba(255, 255, 255, 0.3);
    animation: jellyfish-pulse 2s ease-in-out infinite;
}

.jellyfish-top {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    width: 40px;
    height: 25px;
    background: radial-gradient(ellipse at center, rgba(255, 182, 193, 0.8) 0%, rgba(255, 105, 180, 0.5) 100%);
    border-radius: 50% 50% 0 0;
    box-shadow: 0 0 15px rgba(255, 182, 193, 0.5);
}

.jellyfish-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    background: radial-gradient(circle, rgba(255, 182, 193, 0.3) 0%, transparent 70%);
    border-radius: 50%;
    animation: glow-pulse 2s ease-in-out infinite;
}

@keyframes glow-pulse {

    0%,
    100% {
        opacity: 0.5;
        transform: translate(-50%, -50%) scale(1);
    }

    50% {
        opacity: 0.8;
        transform: translate(-50%, -50%) scale(1.2);
    }
}

.jellyfish-body-pink {
    background: radial-gradient(ellipse at center, rgba(255, 192, 203, 0.9) 0%, rgba(255, 105, 180, 0.7) 100%);
    box-shadow: 0 0 20px rgba(255, 192, 203, 0.5);
}

.jellyfish-body-blue {
    background: radial-gradient(ellipse at center, rgba(173, 216, 230, 0.9) 0%, rgba(135, 206, 250, 0.7) 100%);
    box-shadow: 0 0 20px rgba(173, 216, 230, 0.5);
}

.jellyfish-tentacle {
    position: absolute;
    top: 100%;
    width: 4px;
    background: linear-gradient(to bottom, rgba(255, 182, 193, 0.9) 0%, rgba(255, 105, 180, 0.7) 50%, rgba(255, 20, 147, 0.5) 100%);
    border-radius: 2px;
    animation: tentacle-wave 2s ease-in-out infinite;
    box-shadow: 0 0 5px rgba(255, 182, 193, 0.5);
}

.tentacle1 {
    left: 8px;
    height: 45px;
    animation-delay: 0s;
}

.tentacle2 {
    left: 18px;
    height: 55px;
    animation-delay: 0.2s;
}

.tentacle3 {
    left: 28px;
    height: 50px;
    animation-delay: 0.4s;
}

.tentacle4 {
    left: 38px;
    height: 60px;
    animation-delay: 0.6s;
}

.tentacle5 {
    left: 48px;
    height: 45px;
    animation-delay: 0.8s;
}

.tentacle6 {
    left: 52px;
    height: 50px;
    animation-delay: 1s;
}

.jellyfish1 {
    left: 15%;
    bottom: -100px;
    animation-delay: 1s;
    animation-duration: 18s;
}

.jellyfish2 {
    left: 55%;
    bottom: -100px;
    animation-delay: 5s;
    animation-duration: 22s;
}

.jellyfish3 {
    left: 75%;
    bottom: -100px;
    animation-delay: 9s;
    animation-duration: 20s;
}

.jellyfish4 {
    left: 40%;
    bottom: -100px;
    animation-delay: 7s;
    animation-duration: 19s;
    transform: scale(0.9);
}

@keyframes jellyfish-float {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0.7;
    }

    10% {
        opacity: 1;
    }

    50% {
        transform: translateX(10px);
    }

    90% {
        opacity: 1;
    }

    100% {
        transform: translateY(calc(-100vh - 150px)) translateX(-10px);
        opacity: 0;
    }
}

@keyframes jellyfish-pulse {

    0%,
    100% {
        transform: scaleY(1);
    }

    50% {
        transform: scaleY(1.1);
    }
}

@keyframes tentacle-wave {

    0%,
    100% {
        transform: translateX(0);
    }

    25% {
        transform: translateX(-3px);
    }

    75% {
        transform: translateX(3px);
    }
}

/* Octopus Animation */
.octopus {
    position: absolute;
    z-index: 3;
    animation: swim-up linear infinite;
}

.octopus-head {
    width: 55px;
    height: 55px;
    background: radial-gradient(circle, #ff6b9d 0%, #c44569 50%, #a83d5a 100%);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.4), inset 0 -5px 10px rgba(255, 255, 255, 0.2);
}

.octopus-eye {
    position: absolute;
    width: 12px;
    height: 12px;
    background: #fff;
    border-radius: 50%;
    top: 18px;
    box-shadow: 0 0 8px rgba(0, 0, 0, 0.5), inset 0 0 4px rgba(0, 0, 0, 0.3);
}

.octopus-eye:first-child {
    left: 12px;
}

.octopus-eye:last-child {
    right: 12px;
}

.octopus-eye::after {
    content: '';
    position: absolute;
    width: 7px;
    height: 7px;
    background: #000;
    border-radius: 50%;
    top: 2.5px;
    left: 2.5px;
}

.octopus-arm {
    position: absolute;
    width: 10px;
    height: 50px;
    background: linear-gradient(to bottom, #ff6b9d 0%, #c44569 50%, #a83d5a 100%);
    border-radius: 5px;
    top: 50px;
    animation: arm-wave 1.5s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.arm1 {
    left: 3px;
    animation-delay: 0s;
}

.arm2 {
    left: 12px;
    animation-delay: 0.2s;
}

.arm3 {
    left: 22px;
    animation-delay: 0.4s;
}

.arm4 {
    left: 32px;
    animation-delay: 0.6s;
}

.arm5 {
    left: 42px;
    animation-delay: 0.8s;
}

.arm6 {
    left: 47px;
    animation-delay: 1s;
}

@keyframes arm-wave {

    0%,
    100% {
        transform: rotate(0deg);
    }

    25% {
        transform: rotate(-15deg);
    }

    75% {
        transform: rotate(15deg);
    }
}

.octopus1 {
    left: 30%;
    bottom: -100px;
    animation-delay: 3s;
    animation-duration: 20s;
    transform: scale(0.9);
}

.hero-content {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 10;
    text-align: center;
    color: var(--white);
    padding: 1.5rem;
    animation: fadeInUp 1s ease;
    text-shadow: 2px 2px 8px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 1200px;
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    box-sizing: border-box;
}

.hero-title {
    font-weight: 700;
    margin-bottom: 1.5rem;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
    animation: fadeInUp 1s ease-out;
    word-wrap: break-word;
    overflow-wrap: break-word;
    width: 100%;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.hero-title-line1 {
    font-size: 3.5rem;
    line-height: 1.2;
    text-align: center;
}

.hero-title-line2 {
    font-size: 5rem;
    line-height: 1.1;
    text-align: center;
    font-weight: 900;
}

.hero-subtitle {
    font-size: 1.3rem;
    margin-bottom: 2rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 2px 2px 6px rgba(0, 0, 0, 0.6);
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    word-wrap: break-word;
    overflow-wrap: break-word;
    line-height: 1.4;
    width: 100%;
    box-sizing: border-box;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.btn {
    padding: 1rem 2rem;
    border: none;
    border-radius: 50px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: all 0.3s ease;
    box-shadow: var(--shadow);
}

.btn-primary {
    background: var(--white);
    color: var(--primary-color);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    transition: left 0.5s ease;
    z-index: 0;
}

.btn-primary:hover::before {
    left: 0;
}

.btn-primary span,
.btn-primary {
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    transition: color 0.3s ease;
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(0, 212, 255, 0.4);
    border-color: transparent;
}

.btn-primary:hover span,
.btn-primary:hover {
    color: var(--white) !important;
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    position: relative;
    overflow: hidden;
}

.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 100%;
    background: var(--white);
    transition: width 0.4s ease;
    z-index: 0;
}

.btn-secondary:hover::before {
    width: 100%;
}

.btn-secondary span,
.btn-secondary {
    position: relative;
    z-index: 2;
    color: var(--white);
    transition: color 0.3s ease;
}

.btn-secondary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover span,
.btn-secondary:hover {
    color: var(--primary-color) !important;
}

.scroll-indicator {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-indicator span {
    display: block;
    width: 30px;
    height: 50px;
    border: 2px solid var(--white);
    border-radius: 25px;
    position: relative;
}

.scroll-indicator span::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: var(--white);
    border-radius: 50%;
    animation: scroll 2s infinite;
}

@keyframes scroll {
    0% {
        opacity: 1;
        top: 10px;
    }

    100% {
        opacity: 0;
        top: 30px;
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Section Styles */
section {
    padding: 5rem 0;
}

.section-title {
    font-size: 2.8rem;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--dark-color);
    font-weight: 700;
    position: relative;
    display: inline-block;
    width: 100%;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    animation: fadeInUp 0.8s ease-out;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: #666;
    margin-bottom: 3rem;
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: 0.5px;
}

/* Attractions Section */
.attractions {
    padding: 6rem 0;
    background: linear-gradient(180deg, var(--light-bg) 0%, #e0f7fa 100%);
    position: relative;
    z-index: 2;
    overflow: hidden;
}

.attractions::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(0, 229, 255, 0.1) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.attractions .container {
    position: relative;
    z-index: 2;
}

.attractions-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 3rem;
    margin-top: 4rem;
    position: relative;
    z-index: 1;
}

.attraction-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 1px solid var(--white);
    padding: 3rem 2rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    height: 100%;
}

.attraction-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
    background: var(--white);
}

.attraction-icon {
    font-size: 3.5rem;
    margin-bottom: 2rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    transition: all 0.5s ease;
    position: relative;
    z-index: 2;
    color: var(--primary-color);
    background: rgba(0, 229, 255, 0.1);
    border-radius: 50%;
}

.attraction-card:hover .attraction-icon {
    transform: scale(1.1) rotate(10deg);
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 10px 20px rgba(0, 229, 255, 0.3);
}

.attraction-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text-color);
    font-weight: 700;
    transition: color 0.3s ease;
}

.attraction-card p {
    color: #636e72;
    line-height: 1.8;
    font-size: 1rem;
}

/* Gallery Section */
.gallery {
    padding: 6rem 0;
    background-color: var(--white);
    position: relative;
}

.gallery-section-title {
    font-size: 2rem;
    margin-bottom: 2rem;
    padding-left: 1.5rem;
    border-left: 6px solid var(--secondary-color);
    color: var(--text-color);
    font-weight: 800;
    letter-spacing: 1px;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-bottom: 4rem;
}

.gallery-item {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.4s ease;
}

.gallery-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.gallery-item img,
.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.gallery-item:hover img,
.gallery-item:hover video {
    transform: scale(1.1);
}

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    transition: all 0.4s ease;
    backdrop-filter: blur(4px);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-icon {
    color: var(--white);
    font-size: 3rem;
    transform: translateY(30px);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 4px 10px rgba(0, 0, 0, 0.3);
}

.gallery-item:hover .gallery-icon {
    transform: translateY(0);
}


/* Lightbox */
.lightbox {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    align-items: center;
    justify-content: center;
}

.lightbox.active {
    display: flex;
}

.lightbox-image,
.lightbox-video {
    max-width: 90%;
    max-height: 90%;
    object-fit: contain;
    border-radius: 10px;
}

.lightbox-video {
    width: 90%;
    max-width: 1200px;
}

.lightbox-close {
    position: absolute;
    top: 30px;
    right: 40px;
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    transition: transform 0.3s ease;
    z-index: 2001;
    background: rgba(0, 0, 0, 0.5);
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    line-height: 1;
}

.lightbox-close:hover {
    transform: rotate(90deg);
    background: rgba(0, 0, 0, 0.8);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    color: var(--white);
    font-size: 3rem;
    cursor: pointer;
    padding: 1rem;
    transition: all 0.3s ease;
    user-select: none;
}

.lightbox-prev {
    left: 30px;
}

.lightbox-next {
    right: 30px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
}

/* Book Tickets Section */
.book-tickets {
    background: linear-gradient(180deg, #e0f7fa 0%, var(--light-bg) 100%);
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
}

.book-tickets::before {
    content: '';
    position: absolute;
    top: -100px;
    left: -100px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 64, 129, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
}

.booking-content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
}

.booking-forms-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    margin-top: 3rem;
    align-items: start;
}

.ticket-pricing {
    margin-bottom: 0;
}

.ticket-pricing h3 {
    text-align: center;
    font-size: 2.2rem;
    color: var(--primary-dark);
    margin-bottom: 2.5rem;
    font-weight: 800;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 1.5rem;
}

.pricing-card {
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(10px);
    padding: 2rem 1.5rem;
    border-radius: 25px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
}

.pricing-card:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 20px 40px rgba(0, 229, 255, 0.2);
    border-color: var(--primary-color);
    background: var(--white);
}

.pricing-icon {
    font-size: 3rem;
    margin-bottom: 1rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 70px;
    height: 70px;
    background: var(--gradient-primary);
    border-radius: 50%;
    color: var(--white);
    margin: 0 auto 1.5rem;
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.3);
    transition: all 0.5s ease;
}

.pricing-card:hover .pricing-icon {
    transform: scale(1.2) rotate(15deg);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.5);
}

.pricing-card h4 {
    font-size: 1.3rem;
    color: var(--text-color);
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.price {
    font-size: 2.2rem;
    font-weight: 800;
    background: var(--gradient-hot);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
}

.pricing-card p {
    color: #636e72;
    font-size: 0.9rem;
}

.booking-form {
    background: rgba(255, 255, 255, 0.85);
    padding: 3rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 6px;
    background: var(--gradient-primary);
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 5px;
    background: var(--gradient-primary);
    z-index: 1;
}

.booking-form-header {
    text-align: center;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.booking-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.3);
    animation: float 3s ease-in-out infinite;
}

.booking-icon i {
    font-size: 2.5rem;
    color: var(--white);
}

.booking-form h3 {
    font-size: 2.2rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-align: center;
}

.booking-subtitle {
    color: #666;
    font-size: 1rem;
    text-align: center;
    margin-top: 0.5rem;
    font-weight: 400;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-bottom: 1.5rem;
}

.booking-form .form-group {
    position: relative;
}

.booking-form .form-group label {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-bottom: 0.8rem;
    color: var(--primary-color);
    font-weight: 600;
    font-size: 0.95rem;
}

.booking-form .form-group label i {
    font-size: 1rem;
    color: var(--secondary-color);
}

.booking-form .form-group input {
    width: 100%;
    padding: 1rem 1.2rem;
    border: 2px solid #e0e0e0;
    border-radius: 12px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 2;
}

.booking-form .form-group input:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(0, 212, 255, 0.1);
    transform: translateY(-2px);
}

.booking-form .form-group input::placeholder {
    color: #999;
    transition: opacity 0.3s ease;
}

.booking-form .form-group input:focus::placeholder {
    opacity: 0.5;
}

.ticket-selection {
    margin: 2.5rem 0;
    padding: 2.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.06) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.15);
    position: relative;
    overflow: hidden;
    width: 100%;
    box-sizing: border-box;
}

.ticket-selection::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;
}

.ticket-selection:hover::before {
    left: 100%;
}

.ticket-selection-header {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.ticket-selection-header i {
    font-size: 1.8rem;
    color: var(--primary-color);
    animation: pulse 2s ease-in-out infinite;
}

.ticket-selection h4 {
    font-size: 1.5rem;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin: 0;
    font-weight: 700;
}

.ticket-input-group {
    margin-bottom: 1.8rem;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.7);
    border-radius: 15px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
    position: relative;
    z-index: 1;
}

.ticket-input-group:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--primary-color);
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
}

.ticket-input-group label {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-weight: 600;
    color: #333;
    margin-bottom: 0.8rem;
    font-size: 1rem;
}

.ticket-input-group label span {
    color: var(--primary-color);
}

.quantity-control {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.qty-btn {
    width: 40px;
    height: 40px;
    border: 2px solid var(--primary-color);
    background: var(--white);
    color: var(--primary-color);
    border-radius: 50%;
    font-size: 1.2rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.qty-btn:hover {
    background: var(--primary-color);
    color: var(--white);
    transform: scale(1.1);
}

.qty-btn:active {
    transform: scale(0.95);
}

.quantity-control input {
    width: 60px;
    text-align: center;
    padding: 0.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-color);
}

.total-section {
    margin: 2rem 0;
    padding: 1.5rem 2rem;
    background: var(--gradient-primary);
    border-radius: 15px;
    text-align: center;
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.3);
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
    z-index: 2;
    display: block;
}

.total-display {
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--white);
    font-size: 1.5rem;
    font-weight: 700;
    width: 100%;
    box-sizing: border-box;
    gap: 1rem;
    flex-wrap: nowrap;
    min-width: 0;
}

.total-display span {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.total-display span:first-child {
    flex: 1;
    text-align: left;
    min-width: 0;
}

.total-display span:last-child {
    flex-shrink: 0;
    text-align: right;
}

.booking-message {
    padding: 1rem 1.5rem;
    border-radius: 12px;
    margin: 1.5rem auto;
    font-size: 1rem;
    font-weight: 500;
    text-align: center;
    animation: slideDown 0.3s ease-out;
    position: relative;
    z-index: 2;
    max-width: 600px;
    display: block;
    width: 90%;
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
}

.booking-message.success {
    background: linear-gradient(135deg, rgba(76, 175, 80, 0.15) 0%, rgba(56, 142, 60, 0.1) 100%);
    color: #2e7d32;
    border: 2px solid rgba(76, 175, 80, 0.3);
}

.booking-message.error {
    background: linear-gradient(135deg, rgba(244, 67, 54, 0.15) 0%, rgba(198, 40, 40, 0.1) 100%);
    color: #c62828;
    border: 2px solid rgba(244, 67, 54, 0.3);
}

@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.btn-book {
    width: 100%;
    padding: 1.4rem;
    font-size: 1.3rem;
    margin-top: 1.5rem;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.btn-book::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;
}

.btn-book:hover::before {
    left: 100%;
}

.btn-book:hover {
    transform: translateY(-5px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
}

.btn-book:active {
    transform: translateY(-2px) scale(1);
}

/* Digital Ticket Modal */
.ticket-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 3000;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    overflow-y: auto;
}

.ticket-modal.active {
    display: flex;
}

.ticket-modal-content {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.95) 100%);
    border-radius: 25px;
    max-width: 550px;
    width: 90%;
    max-height: 90vh;
    position: relative;
    box-shadow: 0 25px 80px rgba(0, 212, 255, 0.3), 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: slideUp 0.4s ease;
    overflow-y: auto;
    border: 2px solid rgba(0, 212, 255, 0.2);
    backdrop-filter: blur(10px);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateY(50px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.ticket-close {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 2rem;
    color: #999;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
}

.ticket-close:hover {
    background: #f0f0f0;
    color: var(--primary-color);
    transform: rotate(90deg);
}

.digital-ticket {
    padding: 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 50%, #e0f2fe 100%);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 212, 255, 0.15);
}

.digital-ticket::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.1) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
    pointer-events: none;
}

.digital-ticket::after {
    content: '🌊';
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 3rem;
    opacity: 0.1;
    animation: float 3s ease-in-out infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }

    to {
        transform: rotate(360deg);
    }
}

.ticket-header {
    text-align: center;
    margin-bottom: 2rem;
    padding-bottom: 1.5rem;
    border-bottom: 3px dashed rgba(0, 212, 255, 0.3);
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.05) 100%);
    padding: 1.5rem;
    border-radius: 15px;
    margin-bottom: 2rem;
}

.ticket-header h2 {
    font-size: 1.8rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.5rem;
    font-weight: 700;
    text-shadow: 0 2px 10px rgba(0, 212, 255, 0.2);
    letter-spacing: 1px;
}

.ticket-subtitle {
    color: #0099cc;
    font-size: 0.95rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.ticket-body {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

.ticket-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.ticket-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.8) 0%, rgba(240, 249, 255, 0.6) 100%);
    border-radius: 12px;
    border: 1px solid rgba(0, 212, 255, 0.2);
    transition: all 0.3s ease;
}

.ticket-info-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 5px 15px rgba(0, 212, 255, 0.2);
    border-color: rgba(0, 212, 255, 0.4);
}

.ticket-label {
    font-size: 0.75rem;
    color: #0099cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-value {
    font-size: 1rem;
    color: #003d52;
    font-weight: 700;
}

.ticket-details {
    margin: 1.5rem 0;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.08) 100%);
    border-radius: 15px;
    border: 2px solid rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.ticket-details::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    animation: shimmer 3s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.ticket-details h4 {
    font-size: 1.1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-details>div {
    margin-bottom: 0.8rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 8px;
}

.ticket-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 12px;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    margin-top: 1rem;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
    animation: pulse 2s ease-in-out infinite;
}

.ticket-qr {
    text-align: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.8) 100%);
    border-radius: 15px;
    margin: 1.5rem 0;
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
}

.ticket-qr::before {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(45deg, #00d4ff, #0099cc, #00d4ff);
    border-radius: 15px;
    z-index: -1;
    opacity: 0.5;
    animation: borderGlow 3s ease-in-out infinite;
}

@keyframes borderGlow {

    0%,
    100% {
        opacity: 0.5;
    }

    50% {
        opacity: 0.8;
    }
}

.qr-placeholder {
    width: 140px;
    height: 140px;
    margin: 0 auto 1rem;
    background: linear-gradient(135deg, #ffffff 0%, #f0f9ff 100%);
    border: 3px solid rgba(0, 212, 255, 0.4);
    border-radius: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.qr-placeholder::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(45deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    animation: rotate 3s linear infinite;
}

.ticket-qr p {
    color: #0099cc;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.ticket-footer {
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.08) 0%, rgba(0, 153, 204, 0.05) 100%);
    border-radius: 15px;
    text-align: center;
    border: 1px solid rgba(0, 212, 255, 0.2);
    position: relative;
    z-index: 1;
}

.ticket-footer p {
    margin-bottom: 0.5rem;
    color: #003d52;
    font-size: 0.8rem;
    font-weight: 500;
    line-height: 1.6;
}

.ticket-footer p strong {
    color: #0099cc;
    font-weight: 700;
}

.ticket-actions {
    display: flex;
    gap: 1rem;
    padding: 1.5rem;
    border-top: 3px solid rgba(0, 212, 255, 0.2);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 249, 255, 0.8) 100%);
    position: relative;
    z-index: 1;
}

.ticket-actions .btn {
    flex: 1;
    padding: 1rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 12px;
    position: relative;
    overflow: hidden;
}

.ticket-actions .btn-primary {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: var(--white);
    border: none;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.ticket-actions .btn-primary::before {
    background: linear-gradient(135deg, #0099cc 0%, #00d4ff 100%);
}

.ticket-actions .btn-primary:hover {
    box-shadow: 0 8px 30px rgba(0, 212, 255, 0.6);
}

.ticket-actions .btn-secondary {
    background: transparent;
    color: #0099cc;
    border: 2px solid #0099cc;
}

.ticket-actions .btn-secondary::before {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
}

.ticket-actions .btn-secondary:hover {
    border-color: #00d4ff;
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.3);
}

/* My Booking Section */
.my-booking-section {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.95) 50%, rgba(248, 249, 250, 0.98) 100%);
    padding: 3.5rem;
    border-radius: 30px;
    box-shadow: 0 20px 60px rgba(0, 212, 255, 0.2), 0 10px 30px rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    border: 2px solid rgba(0, 212, 255, 0.3);
    position: relative;
    overflow: hidden;
    height: fit-content;
    animation: sectionFadeIn 0.6s ease;
}

@keyframes sectionFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.my-booking-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #00d4ff, #0099cc, #00d4ff);
    background-size: 200% 100%;
    z-index: 1;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {

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

    50% {
        background-position: 100% 50%;
    }
}

.my-booking-section::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(0, 212, 255, 0.08) 0%, transparent 70%);
    animation: rotate 25s linear infinite;
    pointer-events: none;
    z-index: 0;
}

/* Decorative Elements */
.my-booking-decorative-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.decorative-wave {
    position: absolute;
    width: 200%;
    height: 100px;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    border-radius: 50%;
    animation: waveMove 8s ease-in-out infinite;
}

.decorative-wave-1 {
    top: 10%;
    left: -100%;
    animation-delay: 0s;
}

.decorative-wave-2 {
    bottom: 15%;
    right: -100%;
    animation-delay: 2s;
    animation-duration: 10s;
}

@keyframes waveMove {

    0%,
    100% {
        transform: translateX(0) translateY(0);
    }

    50% {
        transform: translateX(50%) translateY(-20px);
    }
}

.decorative-bubble {
    position: absolute;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.15), rgba(0, 153, 204, 0.1));
    animation: bubbleFloat 6s ease-in-out infinite;
}

.decorative-bubble-1 {
    width: 60px;
    height: 60px;
    top: 20%;
    right: 10%;
    animation-delay: 0s;
}

.decorative-bubble-2 {
    width: 40px;
    height: 40px;
    bottom: 25%;
    left: 8%;
    animation-delay: 1.5s;
}

.decorative-bubble-3 {
    width: 30px;
    height: 30px;
    top: 60%;
    right: 15%;
    animation-delay: 3s;
}

@keyframes bubbleFloat {

    0%,
    100% {
        transform: translateY(0) scale(1);
        opacity: 0.6;
    }

    50% {
        transform: translateY(-30px) scale(1.1);
        opacity: 0.8;
    }
}

.my-booking-icon {
    position: relative;
    animation: iconBounce 2s ease-in-out infinite;
}

.my-booking-icon .icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    height: 100%;
    border-radius: 50%;
    border: 3px solid rgba(0, 212, 255, 0.4);
    animation: pulse 2s ease-out infinite;
}

@keyframes iconBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-5px);
    }
}

@keyframes pulse {
    0% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 1;
    }

    100% {
        transform: translate(-50%, -50%) scale(1.5);
        opacity: 0;
    }
}

.my-booking-form {
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 2;
}

.my-booking-input-group {
    position: relative;
}

.input-wrapper {
    position: relative;
}

.input-wrapper .input-icon {
    position: absolute;
    right: 1.2rem;
    top: 50%;
    transform: translateY(-50%);
    color: var(--primary-color);
    font-size: 1.2rem;
    pointer-events: none;
    transition: all 0.3s ease;
}

.my-booking-form input:focus+.input-icon {
    color: var(--secondary-color);
    transform: translateY(-50%) scale(1.1);
}

.my-booking-form .form-group {
    margin-bottom: 1.5rem;
}

.btn-search {
    width: 100%;
    padding: 1.2rem 1.5rem;
    font-size: 1.1rem;
    margin-top: 0.5rem;
    position: relative;
    overflow: hidden;
    border-radius: 15px;
    transition: all 0.3s ease;
}

.btn-search .btn-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
}

.btn-search .btn-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
    transition: left 0.5s ease;
    z-index: 1;
}

.btn-search:hover .btn-shine {
    left: 100%;
}

.btn-search:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 212, 255, 0.4);
}

.btn-search:active {
    transform: translateY(-1px);
}

.bookings-list {
    margin-top: 2rem;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.bookings-list-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 3px solid rgba(0, 212, 255, 0.2);
    position: relative;
}

.bookings-list-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100px;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, transparent);
    animation: lineExpand 2s ease infinite;
}

@keyframes lineExpand {

    0%,
    100% {
        width: 100px;
    }

    50% {
        width: 200px;
    }
}

.bookings-list-title {
    font-size: 1.4rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.bookings-list-title i {
    color: var(--primary-color);
    -webkit-text-fill-color: var(--primary-color);
    animation: iconSpin 3s linear infinite;
}

@keyframes iconSpin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.bookings-count-badge {
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 3px 15px rgba(0, 212, 255, 0.4);
    animation: badgePulse 2s ease-in-out infinite;
}

@keyframes badgePulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.bookings-container {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.booking-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.98) 0%, rgba(240, 249, 255, 0.95) 100%);
    border-radius: 20px;
    border: 2px solid rgba(0, 212, 255, 0.25);
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.15);
    position: relative;
    animation: cardSlideIn 0.5s ease backwards;
}

.booking-card:nth-child(1) {
    animation-delay: 0.1s;
}

.booking-card:nth-child(2) {
    animation-delay: 0.2s;
}

.booking-card:nth-child(3) {
    animation-delay: 0.3s;
}

.booking-card:nth-child(4) {
    animation-delay: 0.4s;
}

@keyframes cardSlideIn {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.booking-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 212, 255, 0.1), transparent);
    transition: left 0.5s ease;
    z-index: 0;
}

.booking-card:hover::before {
    left: 100%;
}

.booking-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.3);
    border-color: rgba(0, 212, 255, 0.5);
}

.booking-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.12) 0%, rgba(0, 153, 204, 0.1) 100%);
    border-bottom: 3px solid rgba(0, 212, 255, 0.25);
    position: relative;
    z-index: 1;
}

.booking-card-header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, #00d4ff, #0099cc);
    transition: width 0.5s ease;
}

.booking-card:hover .booking-card-header::after {
    width: 100%;
}

.booking-card-id {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-weight: 700;
    color: var(--primary-color);
    font-size: 1.1rem;
}

.booking-card-id i {
    font-size: 1.3rem;
    color: var(--secondary-color);
}

.booking-card-status {
    padding: 0.5rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.booking-card-status.active {
    background: linear-gradient(135deg, #4caf50 0%, #388e3c 100%);
    color: white;
    box-shadow: 0 3px 10px rgba(76, 175, 80, 0.3);
}

.booking-card-body {
    padding: 1.5rem;
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, transparent 0%, rgba(240, 249, 255, 0.3) 100%);
}

.booking-info-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.booking-info-item {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.booking-label {
    font-size: 0.8rem;
    color: #0099cc;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-label i {
    font-size: 0.9rem;
}

.booking-value {
    font-size: 1rem;
    color: #003d52;
    font-weight: 700;
}

.booking-ticket-details {
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.05) 0%, rgba(0, 153, 204, 0.03) 100%);
    padding: 1.2rem;
    border-radius: 12px;
    margin-bottom: 1rem;
    border: 1px solid rgba(0, 212, 255, 0.15);
}

.booking-ticket-details h5 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-ticket-item {
    display: flex;
    justify-content: space-between;
    padding: 0.6rem 0;
    border-bottom: 1px solid rgba(0, 212, 255, 0.1);
    font-size: 0.95rem;
    color: #333;
}

.booking-ticket-item:last-of-type {
    border-bottom: none;
}

.booking-total {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    border-radius: 10px;
    margin-top: 1rem;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    box-shadow: 0 3px 15px rgba(0, 212, 255, 0.3);
}

.booking-card-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 1.5rem;
    background: rgba(0, 212, 255, 0.03);
    border-top: 1px solid rgba(0, 212, 255, 0.1);
}

.booking-booked-date {
    font-size: 0.85rem;
    color: #666;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.booking-booked-date i {
    color: var(--secondary-color);
}

.btn-view-ticket {
    padding: 0.7rem 1.5rem;
    background: linear-gradient(135deg, #00d4ff 0%, #0099cc 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 3px 10px rgba(0, 212, 255, 0.3);
}

.btn-view-ticket:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 20px rgba(0, 212, 255, 0.4);
}

.btn-view-ticket:active {
    transform: translateY(0);
}

/* About Section */
.about {
    background: linear-gradient(135deg, #e8f4f8 0%, #d6eaf5 50%, #f5f7fa 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 15% 40%, rgba(0, 168, 232, 0.08) 0%, transparent 50%),
        radial-gradient(circle at 85% 60%, rgba(0, 119, 190, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-text {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.9) 0%, rgba(248, 249, 250, 0.9) 100%);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.about-text p {
    font-size: 1.15rem;
    line-height: 2;
    margin-bottom: 2rem;
    color: #444;
    text-align: justify;
    position: relative;
}

.about-text p::first-letter {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-color);
    float: left;
    line-height: 1;
    margin-right: 0.5rem;
    margin-top: 0.2rem;
}

.about-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 1.8rem 1.5rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
}

.feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.1), transparent);
    transition: left 0.5s;
}

.feature-item:hover::before {
    left: 100%;
}

.feature-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(0, 119, 190, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.feature-item:hover::after {
    opacity: 1;
}

.feature-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.25);
    border-color: var(--primary-color);
}

.feature-icon {
    font-size: 2rem;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.feature-item:hover .feature-icon {
    transform: scale(1.3) rotate(10deg);
    filter: drop-shadow(0 4px 8px rgba(0, 168, 232, 0.3));
}

.feature-item span:last-child {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.feature-item:hover span:last-child {
    color: var(--primary-color);
}


/* Contact Section */
.contact {
    background: linear-gradient(135deg, #f0f8ff 0%, #e6f3ff 50%, #d6eaf5 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(0, 168, 232, 0.05) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 119, 190, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    margin-top: 3rem;
    position: relative;
    z-index: 1;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.contact-item {
    display: flex;
    gap: 1.5rem;
    align-items: flex-start;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    border-radius: 20px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
    border: 2px solid transparent;
    backdrop-filter: blur(10px);
}

.contact-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(0, 168, 232, 0.1), transparent);
    transition: left 0.5s;
}

.contact-item:hover::before {
    left: 100%;
}

.contact-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.05) 0%, rgba(0, 119, 190, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: 20px;
}

.contact-item:hover::after {
    opacity: 1;
}

.contact-item:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 15px 40px rgba(0, 168, 232, 0.25);
    border-color: var(--primary-color);
}

.contact-icon {
    font-size: 2.5rem;
    flex-shrink: 0;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    z-index: 2;
    filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
    color: var(--primary-color);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.1) 0%, rgba(0, 119, 190, 0.1) 100%);
    border-radius: 50%;
}

.contact-icon i {
    font-size: 1.8rem;
}

.contact-item:hover .contact-icon {
    transform: scale(1.2) rotate(5deg);
    filter: drop-shadow(0 4px 8px rgba(0, 168, 232, 0.3));
    background: linear-gradient(135deg, rgba(0, 168, 232, 0.2) 0%, rgba(0, 119, 190, 0.2) 100%);
    color: var(--secondary-color);
}

.contact-item p i {
    color: var(--primary-color);
    margin-right: 0.5rem;
    font-size: 0.9rem;
}

.contact-item h3 {
    color: var(--primary-color);
    margin-bottom: 0.8rem;
    font-size: 1.3rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.contact-item:hover h3 {
    color: var(--secondary-color);
    text-shadow: 0 2px 4px rgba(0, 168, 232, 0.2);
}

.contact-item p {
    color: #555;
    line-height: 1.8;
    font-size: 1rem;
    position: relative;
    z-index: 2;
    transition: color 0.3s ease;
}

.contact-item:hover p {
    color: #444;
}

.map-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding: 0.8rem 1.5rem;
    background: linear-gradient(135deg, var(--primary-color) 0%, var(--secondary-color) 100%);
    color: var(--white);
    text-decoration: none;
    border-radius: 25px;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(0, 168, 232, 0.3);
    position: relative;
    z-index: 2;
}

.map-link:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 20px rgba(0, 168, 232, 0.4);
    background: linear-gradient(135deg, var(--secondary-color) 0%, var(--primary-color) 100%);
}

.map-link i {
    font-size: 1.1rem;
}

/* Map Container */
.map-container {
    margin: 3rem 0;
    position: relative;
    z-index: 1;
}

.map-title {
    font-size: 1.8rem;
    color: var(--primary-color);
    text-align: center;
    margin-bottom: 2rem;
    font-weight: 700;
}

.map-wrapper {
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.15);
    background: var(--white);
    padding: 0.5rem;
    transition: all 0.3s ease;
}

.map-wrapper:hover {
    box-shadow: 0 15px 50px rgba(0, 168, 232, 0.3);
    transform: translateY(-5px);
}

.map-wrapper iframe {
    width: 100%;
    height: 450px;
    border-radius: 15px;
    display: block;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.8rem;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 2.5rem;
    border-radius: 25px;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.5);
}

.form-group {
    display: flex;
    flex-direction: column;
    position: relative;
}

.form-group label {
    position: absolute;
    top: -10px;
    left: 15px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(248, 249, 250, 0.95) 100%);
    padding: 0 8px;
    font-size: 0.85rem;
    color: var(--primary-color);
    font-weight: 600;
    opacity: 0;
    transition: opacity 0.3s ease;
    z-index: 1;
}

.form-group input:focus~label,
.form-group textarea:focus~label,
.form-group input:not(:placeholder-shown)~label,
.form-group textarea:not(:placeholder-shown)~label {
    opacity: 1;
}

.form-group input,
.form-group textarea {
    padding: 1.2rem 1.5rem;
    border: 2px solid #e0e0e0;
    border-radius: 15px;
    font-family: 'Poppins', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.8);
    position: relative;
    z-index: 2;
    width: 100%;
}

.form-group input[type="date"] {
    color: #333;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator {
    cursor: pointer;
    font-size: 1.2rem;
    opacity: 0.7;
    transition: opacity 0.3s ease;
}

.form-group input[type="date"]::-webkit-calendar-picker-indicator:hover {
    opacity: 1;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    background: rgba(255, 255, 255, 1);
    box-shadow: 0 0 0 4px rgba(0, 168, 232, 0.1);
    transform: translateY(-2px);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #999;
    transition: opacity 0.3s ease;
}

.form-group input:focus::placeholder,
.form-group textarea:focus::placeholder {
    opacity: 0.5;
}

.form-group textarea {
    resize: vertical;
    min-height: 140px;
    font-family: 'Poppins', sans-serif;
}

.contact-form .btn {
    margin-top: 0.5rem;
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 700;
    border-radius: 50px;
    background: var(--gradient-primary);
    color: var(--white);
    border: none;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 8px 25px rgba(0, 212, 255, 0.4);
    position: relative;
    overflow: hidden;
}

.contact-form .btn::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.contact-form .btn:hover::after {
    width: 300px;
    height: 300px;
}

.contact-form .btn::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;
}

.contact-form .btn:hover::before {
    left: 100%;
}

.contact-form .btn:hover {
    transform: translateY(-5px) scale(1.08);
    box-shadow: 0 15px 40px rgba(0, 212, 255, 0.5);
    background: var(--gradient-primary);
}

.contact-form .btn:active {
    transform: translateY(-1px) scale(1.02);
}


/* Footer */
.footer {
    background: linear-gradient(135deg, #003d52 0%, #006680 100%);
    color: var(--white);
    padding: 4rem 0 2rem;
    position: relative;
    margin-top: 4rem;
}

.footer::before {
    content: '';
    position: absolute;
    top: -50px;
    left: 0;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #003d52 0%, #006680 100%);
    border-radius: 50% 50% 0 0 / 100% 100% 0 0;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 1;
}

.footer-section h3 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.5rem;
    font-weight: 700;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--primary-color);
    font-size: 1.2rem;
    font-weight: 600;
}

.footer-section p {
    color: #e0f7fa;
    line-height: 1.8;
    font-size: 0.95rem;
}

.footer-section ul {
    list-style: none;
    padding: 0;
}

.footer-section ul li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #e0f7fa;
    text-decoration: none;
    transition: color 0.3s ease;
    font-size: 0.95rem;
}

.footer-section a:hover {
    color: var(--primary-color);
    text-decoration: underline;
}

.social-links {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(0, 229, 255, 0.15);
    color: #e0f7fa;
    font-size: 1.3rem;
    transition: all 0.3s ease;
    text-decoration: none;
    border: 2px solid rgba(0, 229, 255, 0.3);
}

.social-link:hover {
    transform: translateY(-5px) scale(1.1);
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.4);
}

.social-link.facebook:hover {
    background: #1877f2;
    color: white;
    border-color: #1877f2;
    box-shadow: 0 5px 15px rgba(24, 119, 242, 0.4);
}

.social-link.instagram:hover {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
    border-color: transparent;
    box-shadow: 0 5px 15px rgba(188, 24, 136, 0.4);
}

.social-link.twitter:hover {
    background: #1da1f2;
    color: white;
    border-color: #1da1f2;
    box-shadow: 0 5px 15px rgba(29, 161, 242, 0.4);
}

.social-link.youtube:hover {
    background: #ff0000;
    color: white;
    border-color: #ff0000;
    box-shadow: 0 5px 15px rgba(255, 0, 0, 0.4);
}

.social-link i {
    display: inline-block;
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 229, 255, 0.3);
    color: #e0f7fa;
    font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .hero-title-line1 {
        font-size: 2.5rem;
        line-height: 1.2;
    }

    .hero-title-line2 {
        font-size: 3.5rem;
        line-height: 1.1;
    }

    .hero-subtitle {
        font-size: 1.1rem;
        line-height: 1.4;
    }

    .hero-content {
        padding: 1.5rem;
        width: 95%;
    }
}

@media (max-width: 768px) {
    .navbar-hero {
        top: 15px;
        width: 95%;
        padding: 0.7rem 1.5rem;
        border-radius: 40px;
        margin-top: 5px;
    }

    .container-hero {
        padding: 0;
    }

    .nav-brand-hero h1 {
        font-size: 1rem;
    }

    .nav-menu-hero {
        position: fixed;
        top: 80px;
        left: -100%;
        width: 90%;
        max-width: 400px;
        height: calc(100vh - 100px);
        background: rgba(255, 255, 255, 1);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding: 2rem 0;
        gap: 1.5rem;
        transition: left 0.3s ease;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2);
        z-index: 99;
        border-radius: 20px;
        margin-left: 5%;
    }

    .nav-menu-hero.active {
        left: 0;
    }

    .nav-link-hero {
        font-size: 1rem;
        padding: 0.8rem 2rem;
    }

    .nav-cta {
        margin-top: 1rem;
        display: flex;
        align-items: center;
        gap: 0.5rem;
    }

    .btn-nav-book {
        padding: 0.6rem 1.5rem;
        font-size: 0.8rem;
    }

    .btn-nav-login {
        width: 40px;
        height: 40px;
        font-size: 1.3rem;
        margin-left: 0.5rem;
    }

    .hamburger {
        display: flex;
        z-index: 101;
    }

    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(8px, 8px);
    }

    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }

    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }

    .hero {
        min-height: 600px;
        height: 100vh;
    }

    .hero-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        padding: 1rem;
        margin-top: 20px;
        width: 95%;
        max-width: 100%;
        box-sizing: border-box;
    }

    .hero-title {
        gap: 0.3rem;
    }

    .hero-title-line1 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-title-line2 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
        padding: 0 0.5rem;
    }

    .hero-title-line1 {
        font-size: 1.5rem;
        letter-spacing: 0.5px;
        line-height: 1.2;
        padding: 0 0.5rem;
        word-wrap: break-word;
        overflow-wrap: break-word;
    }

    .hero-title-line2 {
        font-size: 2.2rem;
        letter-spacing: 0.5px;
        line-height: 1.1;
        padding: 0 0.5rem;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.8px;
        line-height: 1.3;
        padding: 0 0.5rem;
    }

    .hamburger {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        left: -100%;
        top: 70px;
        flex-direction: column;
        background: var(--white);
        width: 100%;
        text-align: center;
        transition: left 0.3s ease;
        box-shadow: var(--shadow);
        padding: 2rem 0;
    }

    .nav-menu.active {
        left: 0;
    }

    .hero {
        min-height: 600px;
        height: 100vh;
    }

    .hero-content {
        padding-top: 90px;
        padding: 1.5rem;
    }

    .hero-title {
        font-size: 2.2rem;
        letter-spacing: 1px;
    }

    .hero-subtitle {
        font-size: 0.95rem;
        letter-spacing: 1px;
    }

    .section-title {
        font-size: 2rem;
    }

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

    .gallery-grid {
        grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
        gap: 1.5rem;
    }

    .gallery-section-title {
        font-size: 1.8rem;
    }

    .about-text {
        padding: 2rem 1.5rem;
    }

    .about-text p {
        font-size: 1rem;
        text-align: left;
    }

    .about-text p::first-letter {
        font-size: 2.5rem;
    }

    .about-features {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .contact-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-item {
        padding: 1.5rem;
    }

    .contact-form {
        padding: 2rem 1.5rem;
    }

    .contact-icon {
        font-size: 2rem;
    }

    .contact-item h3 {
        font-size: 1.1rem;
    }

    .map-container {
        margin: 2rem 0;
    }

    .map-title {
        font-size: 1.5rem;
        margin-bottom: 1.5rem;
    }

    .map-wrapper {
        padding: 0.3rem;
    }

    .map-wrapper iframe {
        height: 350px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .booking-form {
        padding: 2rem 1.5rem;
    }

    .booking-form-header {
        margin-bottom: 2rem;
    }

    .booking-icon {
        width: 60px;
        height: 60px;
        margin-bottom: 1rem;
    }

    .booking-icon i {
        font-size: 2rem;
    }

    .booking-form h3 {
        font-size: 1.8rem;
    }

    .booking-subtitle {
        font-size: 0.9rem;
    }

    .ticket-selection {
        padding: 1.5rem;
    }

    .ticket-selection-header i {
        font-size: 1.5rem;
    }

    .ticket-selection h4 {
        font-size: 1.3rem;
    }

    .ticket-input-group {
        padding: 1rem;
    }

    .booking-forms-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .my-booking-section {
        padding: 2rem 1.5rem;
    }

    .decorative-bubble {
        display: none;
    }

    .decorative-wave {
        height: 60px;
    }

    .my-booking-icon {
        width: 60px;
        height: 60px;
    }

    .bookings-list-header {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .bookings-count-badge {
        align-self: flex-end;
    }

    .booking-info-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .booking-card-footer {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .btn-view-ticket {
        width: 100%;
        justify-content: center;
    }

    .booking-card:hover {
        transform: translateY(-3px) scale(1.01);
    }

    .ticket-info-row {
        grid-template-columns: 1fr;
    }

    .ticket-actions {
        flex-direction: column;
    }

    .ticket-modal-content {
        margin: 0.5rem;
        max-width: 95%;
        max-height: 95vh;
    }

    .digital-ticket {
        padding: 1rem;
    }

    .ticket-header h2 {
        font-size: 1.2rem;
    }

    .ticket-info-row {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }

    .qr-placeholder {
        width: 100px;
        height: 100px;
        font-size: 1.5rem;
    }

    .lightbox-prev,
    .lightbox-next {
        font-size: 2rem;
        padding: 0.5rem;
    }

    .lightbox-prev {
        left: 10px;
    }

    .lightbox-next {
        right: 10px;
    }

    .lightbox-close {
        top: 20px;
        right: 20px;
        font-size: 2rem;
    }

    /* Fish and Octopus responsive */
    .fish,
    .octopus {
        font-size: 2rem;
    }

    .fish1 {
        font-size: 1.8rem;
    }

    .fish2 {
        font-size: 2rem;
    }

    .fish3 {
        font-size: 1.9rem;
    }

    .fish4 {
        font-size: 2.1rem;
    }

    .fish5 {
        font-size: 1.9rem;
    }

    .octopus1 {
        font-size: 2.5rem;
    }

    .octopus2 {
        font-size: 2.2rem;
    }

    .octopus3 {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 1.8rem;
        letter-spacing: 0.5px;
    }

    .hero-subtitle {
        font-size: 0.85rem;
        letter-spacing: 0.5px;
    }

    .btn-buy-tickets {
        padding: 0.75rem 1.5rem;
        font-size: 0.85rem;
        letter-spacing: 1px;
    }

    .hero-subtitle-old {
        font-size: 1rem;
    }

    .btn {
        padding: 0.8rem 1.5rem;
        font-size: 0.9rem;
    }

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

/* Attraction Modal Styles */
.attraction-modal {
    display: none;
    position: fixed;
    z-index: 10000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    animation: fadeIn 0.3s ease;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.attraction-modal-content {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f8f9fa 100%);
    border-radius: 20px;
    max-width: 90%;
    max-height: 90vh;
    width: 100%;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
    animation: slideUp 0.4s ease;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

@keyframes slideUp {
    from {
        transform: translateY(50px);
        opacity: 0;
    }

    to {
        transform: translateY(0);
        opacity: 1;
    }
}

.attraction-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    color: #aaa;
    font-size: 35px;
    font-weight: bold;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.3s ease;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.2);
}

.attraction-modal-close:hover,
.attraction-modal-close:focus {
    color: #fff;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    transform: rotate(90deg);
}

.attraction-modal-header {
    padding: 2rem 2rem 1rem;
    border-bottom: 2px solid #e0e0e0;
    background: linear-gradient(135deg, rgba(0, 212, 255, 0.1) 0%, rgba(0, 153, 204, 0.1) 100%);
}

.attraction-modal-header h2 {
    margin: 0;
    color: var(--primary-color);
    font-size: 2rem;
    font-weight: 700;
    text-align: center;
}

.attraction-modal-body {
    padding: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 400px;
    max-height: calc(90vh - 150px);
    overflow: auto;
    position: relative;
}

.attraction-image-loader {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: var(--primary-color);
}

.loader-spinner {
    width: 50px;
    height: 50px;
    border: 5px solid rgba(0, 212, 255, 0.2);
    border-top-color: var(--primary-color);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.attraction-image-loader p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

#attractionModalImage {
    max-width: 100%;
    max-height: calc(90vh - 200px);
    width: auto;
    height: auto;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
    object-fit: contain;
    animation: imageFadeIn 0.5s ease;
}

@keyframes imageFadeIn {
    from {
        opacity: 0;
        transform: scale(0.9);
    }

    to {
        opacity: 1;
        transform: scale(1);
    }
}

.attraction-modal-error {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    color: #dc3545;
    text-align: center;
    padding: 2rem;
}

.attraction-modal-error i {
    font-size: 3rem;
    color: #dc3545;
}

.attraction-modal-error p {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 500;
}

/* Responsive Modal Styles */
@media (max-width: 768px) {
    .attraction-modal-content {
        max-width: 95%;
        max-height: 95vh;
    }

    .attraction-modal-header {
        padding: 1.5rem 1rem 0.75rem;
    }

    .attraction-modal-header h2 {
        font-size: 1.5rem;
    }

    .attraction-modal-body {
        padding: 1rem;
        min-height: 300px;
    }

    .attraction-modal-close {
        top: 10px;
        right: 15px;
        font-size: 28px;
        width: 35px;
        height: 35px;
    }

    #attractionModalImage {
        max-height: calc(95vh - 150px);
    }
}

@media (max-width: 480px) {
    .attraction-modal-header h2 {
        font-size: 1.25rem;
    }

    .attraction-modal-body {
        min-height: 250px;
    }
}