:root {
    --bg-dark: #08091a;
    --bg-card: #12132b;
    --bg-card-hover: #1b1c3d;
    --bg-purple-box: #1c0f38;
    --primary-yellow: #ffcc00;
    --primary-yellow-hover: #ffd633;
    --accent-pink: #ff007f;
    --accent-cyan: #00f0ff;
    --accent-purple: #9b51e0;
    --accent-orange: #ff5722;
    --accent-green: #00e676;
    --text-main: #ffffff;
    --text-muted: #a0aec0;
    --text-dim: #718096;
    --gradient-btn: linear-gradient(135deg, #ff007f 0%, #ff5722 100%);
    --gradient-hero-btn: linear-gradient(135deg, #e11d48 0%, #ea580c 50%, #f97316 100%);
    --gradient-water: linear-gradient(135deg, #e91e63 0%, #00bcd4 100%);
    --gradient-purple: linear-gradient(135deg, #2b1055 0%, #7597de 100%);
    --glass-bg: rgba(18, 19, 43, 0.75);
    --glass-border: rgba(255, 255, 255, 0.12);
    --glass-glow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
    --radius-lg: 24px;
    --radius-md: 16px;
    --radius-sm: 10px;
    --font-heading: 'Cabinet Grotesk', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
    --font-body: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    overflow-x: hidden;
    line-height: 1.6;
}

h1, h2, h3, h4, h5, h6, .brand-font {
    font-family: var(--font-heading);
    font-weight: 800;
    letter-spacing: -0.5px;
}

a {
    color: inherit;
    text-decoration: none;
    transition: all 0.3s ease;
}

/* Glassmorphism & Cards */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius-lg);
    box-shadow: var(--glass-glow);
}

.glass-pill {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
}

/* Signature Header & Top Utility Bar */
.signature-header-wrap {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    transition: all 0.4s ease;
}

.signature-top-bar {
    background: rgba(6, 7, 20, 0.88);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 0.76rem;
    color: #cbd5e1;
    padding: 6px 0;
    transition: all 0.3s ease;
}

.signature-header-wrap.scrolled .signature-top-bar {
    display: none;
}

.signature-top-pill {
    color: #e2e8f0;
    text-decoration: none;
    padding: 2px 10px;
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-weight: 600;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.signature-top-pill:hover {
    color: #fed100;
    border-color: #fed100;
    background: rgba(254, 209, 0, 0.1);
}

/* Navbar */
.navbar-wonderpark {
    background: rgba(6, 7, 20, 0.5);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 12px 0;
    z-index: 1050;
}

.signature-header-wrap.scrolled .navbar-wonderpark,
.navbar-wonderpark.scrolled {
    padding: 10px 0;
    background: rgba(6, 7, 20, 0.96);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(255, 204, 0, 0.25);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

.brand-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.6rem;
    font-weight: 900;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 204, 0, 0.4);
}

.brand-logo span.highlight {
    color: var(--primary-yellow);
}

.brand-logo .tagline {
    font-size: 0.52rem;
    letter-spacing: 2px;
    color: #ffd633;
    display: block;
    text-transform: uppercase;
    font-weight: 700;
    margin-top: -4px;
}

.nav-link-wonder {
    color: #e2e8f0 !important;
    font-size: 0.85rem;
    font-weight: 700;
    padding: 7px 12px !important;
    border-radius: 20px;
    transition: all 0.25s ease;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.nav-link-wonder:hover, .nav-link-wonder.active {
    color: var(--primary-yellow) !important;
    background: rgba(255, 255, 255, 0.08);
}

.nav-dropdown-menu {
    background: rgba(11, 15, 38, 0.97) !important;
    backdrop-filter: blur(20px) !important;
    border: 1px solid rgba(255, 204, 0, 0.3) !important;
    border-radius: 16px !important;
    padding: 10px !important;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7) !important;
}

.nav-dropdown-item {
    color: #e2e8f0 !important;
    font-size: 0.85rem !important;
    font-weight: 600 !important;
    padding: 8px 14px !important;
    border-radius: 10px !important;
    transition: all 0.2s ease !important;
}

.nav-dropdown-item:hover {
    background: rgba(255, 204, 0, 0.15) !important;
    color: var(--primary-yellow) !important;
    transform: translateX(4px);
}

.header-menu-toggle-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    padding: 8px 12px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-yellow) !important;
    transition: all 0.25s ease;
    cursor: pointer;
}

.header-menu-toggle-btn:hover {
    background: rgba(255, 204, 0, 0.15);
    border-color: var(--primary-yellow);
    transform: scale(1.05);
    box-shadow: 0 0 15px rgba(255, 204, 0, 0.4);
}

/* Offcanvas Slide-out Drawer */
.wonderpark-offcanvas {
    background: #090a1c !important;
    border-right: 1px solid rgba(255, 255, 255, 0.12) !important;
    color: #fff !important;
    width: 320px !important;
}

.drawer-nav-link {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px 18px;
    color: #cbd5e1;
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.drawer-nav-link:hover, .drawer-nav-link.active {
    color: #fff;
    background: rgba(255, 204, 0, 0.12);
    color: var(--primary-yellow);
    transform: translateX(5px);
}

.drawer-nav-link i {
    width: 24px;
    text-align: center;
    font-size: 1.1rem;
}

/* Buttons */
.btn-yellow-cta {
    background: var(--gradient-hero-btn);
    color: #ffffff !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 12px 26px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(234, 88, 12, 0.45);
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.btn-yellow-cta:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 8px 30px rgba(234, 88, 12, 0.65);
    color: #ffffff !important;
}

.btn-gradient-cta {
    background: var(--gradient-btn);
    color: #ffffff !important;
    font-weight: 800;
    text-transform: uppercase;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    box-shadow: 0 4px 20px rgba(255, 0, 127, 0.4);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    transition: all 0.3s ease;
}

.btn-gradient-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(255, 0, 127, 0.6);
}

.btn-outline-wonder {
    border: 2px solid rgba(255, 255, 255, 0.3);
    color: #fff !important;
    font-weight: 700;
    padding: 12px 26px;
    border-radius: 50px;
    backdrop-filter: blur(8px);
    transition: all 0.3s ease;
}

.btn-outline-wonder:hover {
    border-color: #fff;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
}

/* Fullwidth & Fullsize Hero Section & 4K Video Banner */
.hero-section {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
    background: #08091a;
}

/* Fullwidth & Fullsize Multi-Image Carousel Slider */
.hero-multi-carousel {
    position: relative;
    width: 100%;
    min-height: 100vh;
    height: 100vh;
    overflow: hidden;
    background: #08091a;
}

.hero-carousel-item {
    min-height: 100vh;
    height: 100vh;
    width: 100%;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding-top: 100px;
    padding-bottom: 80px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
}

.hero-carousel-indicators {
    bottom: 40px;
    z-index: 10;
    gap: 8px;
}

.hero-carousel-indicators [data-bs-target] {
    width: 32px;
    height: 6px;
    border-radius: 4px;
    background-color: rgba(255, 255, 255, 0.4);
    border: none;
    transition: all 0.3s ease;
}

.hero-carousel-indicators .active {
    width: 50px;
    background-color: var(--primary-yellow);
    box-shadow: 0 0 12px rgba(255, 204, 0, 0.8);
}

.hero-carousel-arrow {
    width: 56px;
    height: 56px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.45);
    border-radius: 50%;
    backdrop-filter: blur(8px);
    margin: 0 25px;
    opacity: 0.75;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-carousel-arrow:hover {
    background: #fed100;
    color: #000;
    opacity: 1;
    box-shadow: 0 0 24px rgba(254, 209, 0, 0.8);
}

.hero-bg-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    object-fit: cover;
    z-index: 0;
    pointer-events: none;
    transform: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(14, 11, 40, 0.45) 0%, rgba(8, 9, 26, 0.88) 100%),
                linear-gradient(180deg, rgba(8, 9, 26, 0.4) 0%, rgba(8, 9, 26, 0.95) 100%);
    z-index: 1;
    transition: opacity 0.4s ease;
}

.hero-overlay-none {
    background: transparent !important;
}

.hero-overlay-subtle {
    background: radial-gradient(circle at center, rgba(14, 11, 40, 0.15) 0%, rgba(8, 9, 26, 0.4) 100%),
                linear-gradient(180deg, rgba(8, 9, 26, 0.15) 0%, rgba(8, 9, 26, 0.5) 100%) !important;
}

.hero-overlay-medium {
    background: radial-gradient(circle at center, rgba(14, 11, 40, 0.45) 0%, rgba(8, 9, 26, 0.88) 100%),
                linear-gradient(180deg, rgba(8, 9, 26, 0.4) 0%, rgba(8, 9, 26, 0.95) 100%) !important;
}

.hero-overlay-dark {
    background: radial-gradient(circle at center, rgba(14, 11, 40, 0.7) 0%, rgba(8, 9, 26, 0.96) 100%),
                linear-gradient(180deg, rgba(8, 9, 26, 0.6) 0%, rgba(8, 9, 26, 0.98) 100%) !important;
}

.hero-overlay-glass {
    background: rgba(8, 9, 26, 0.35) !important;
    backdrop-filter: blur(10px) !important;
    -webkit-backdrop-filter: blur(10px) !important;
}

.hero-content {
    position: relative;
    z-index: 2;
}

.hero-subtitle {
    font-size: 1.6rem;
    font-weight: 800;
    letter-spacing: 4px;
    color: #ffffff;
    text-transform: uppercase;
}

.hero-title {
    font-size: 5rem;
    font-weight: 900;
    line-height: 0.95;
    text-transform: uppercase;
    color: var(--primary-yellow);
    text-shadow: 0 0 40px rgba(255, 204, 0, 0.5), 0 4px 10px rgba(0, 0, 0, 0.8);
    margin: 10px 0;
}

.hero-tagline {
    font-size: 2.2rem;
    font-weight: 800;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.hero-desc {
    font-size: 1.15rem;
    color: #e2e8f0;
    margin-top: 15px;
    margin-bottom: 25px;
    max-width: 550px;
    font-weight: 500;
}

/* Hero Stats */
.hero-stats-row {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 35px;
}

.hero-stat-badge {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    padding: 10px 18px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.hero-stat-badge .stat-icon {
    font-size: 1.5rem;
}

.hero-stat-badge .stat-val {
    font-size: 1.4rem;
    font-weight: 900;
    color: #ffffff;
    line-height: 1;
}

.hero-stat-badge .stat-lbl {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #cbd5e1;
    font-weight: 700;
}

/* Floating Quick Actions Bar */
.floating-actions-bar {
    position: fixed;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(14, 15, 36, 0.85);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 40px;
    padding: 12px 8px;
    display: flex;
    flex-direction: column;
    gap: 18px;
    z-index: 1040;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6);
}

.floating-action-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #cbd5e1;
    font-size: 0.75rem;
    font-weight: 700;
    gap: 4px;
    transition: all 0.25s ease;
    padding: 8px;
    border-radius: 20px;
}

.floating-action-btn i {
    font-size: 1.25rem;
}

.floating-action-btn:hover {
    color: var(--primary-yellow);
    transform: scale(1.15);
}

/* Floating AI Chat Assistant Widget */
.floating-chat-bubble {
    position: fixed;
    right: 30px;
    bottom: 30px;
    z-index: 1045;
    display: flex;
    align-items: center;
    gap: 12px;
    background: #ffffff;
    color: #1a202c;
    padding: 10px 18px 10px 14px;
    border-radius: 40px;
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.5);
    font-weight: 700;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.3s ease;
}

.floating-chat-bubble:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.6);
}

.chat-avatar {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 2px solid var(--accent-pink);
    object-fit: cover;
}

/* Smart Booking Search Bar - Floating at Bottom of Fullsize Hero Banner */
.hero-bottom-search-wrap {
    position: absolute;
    bottom: 30px;
    left: 0;
    right: 0;
    z-index: 25;
    margin: 0 auto;
}

.booking-search-bar {
    position: relative;
    background: rgba(14, 16, 42, 0.92);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border: 2px solid rgba(255, 204, 0, 0.45);
    border-radius: 60px;
    padding: 14px 20px 14px 28px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.6), 0 0 30px rgba(255, 204, 0, 0.2);
    transition: all 0.3s ease;
    margin-top: 0;
}

.booking-search-bar:hover {
    border-color: rgba(255, 204, 0, 0.7);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 204, 0, 0.35);
}

.search-field-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 8px 16px;
    border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.search-field-item:last-child {
    border-right: none;
}

.search-field-icon {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
}

.search-field-content label {
    font-size: 0.68rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 2px;
    display: block;
}

.search-field-content select, .search-field-content input {
    background: transparent;
    border: none;
    color: #ffffff;
    font-weight: 700;
    font-size: 0.98rem;
    outline: none;
    cursor: pointer;
    width: 100%;
}

.search-field-content select option {
    background: #12132b;
    color: #fff;
}

/* Section Titles */
.section-title-wrap {
    text-align: center;
    margin-bottom: 40px;
    position: relative;
}

.section-title-wrap .sub-heading {
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-weight: 700;
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.section-title-wrap .main-heading {
    font-size: 2.3rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: -0.5px;
    color: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.sparkle-deco {
    color: var(--accent-pink);
    font-size: 1.2rem;
}

/* ==========================================================================
   YELLOW FULLWIDTH SECTION (PURE SOLID YELLOW #fed100)
   ========================================================================== */
.coupon-yellow-fullwidth-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: #fed100;
    padding: 60px 0 65px 0;
    box-shadow: none;
    position: relative;
    z-index: 20;
    overflow: hidden;
}

.coupon-zone-badge-yellow {
    background: #0f172a;
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fed100;
    padding: 6px 18px;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 1px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
    text-transform: uppercase;
    box-shadow: none;
}

.coupon-zone-title-yellow {
    font-size: 2.6rem;
    font-weight: 900;
    color: #0f172a;
    letter-spacing: -0.5px;
    margin-bottom: 6px;
    text-transform: uppercase;
    font-family: var(--font-heading);
}

.coupon-zone-desc-yellow {
    color: #1e293b;
    font-weight: 600;
    font-size: 0.95rem;
    margin-bottom: 0;
}

.coupon-tab-btn-yellow {
    background: rgba(15, 23, 42, 0.08);
    border: 1.5px solid rgba(15, 23, 42, 0.2);
    color: #0f172a;
    font-weight: 800;
    font-size: 0.8rem;
    padding: 7px 16px;
    border-radius: 50px;
    transition: all 0.25s ease;
    cursor: pointer;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.coupon-tab-btn-yellow:hover {
    background: rgba(15, 23, 42, 0.16);
    color: #000000;
    transform: translateY(-2px);
}

.coupon-tab-btn-yellow.active {
    background: #0f172a;
    color: #fed100;
    border-color: #0f172a;
    font-weight: 900;
    box-shadow: none;
    transform: translateY(-2px);
}

/* Coupon Carousel Swiper Container */
.coupon-carousel-swiper {
    position: relative;
    padding: 16px 4px 36px 4px;
    overflow: hidden;
}

.coupon-nav-btn {
    background: #0f172a;
    color: #fed100;
    border: 2px solid #0f172a;
    border-radius: 50%;
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    cursor: pointer;
    transition: all 0.25s ease;
    box-shadow: none;
}

.coupon-nav-btn:hover {
    background: #1e293b;
    color: #ffffff;
    transform: scale(1.08);
}

/* ==========================================================================
   VERTICAL COUPON TICKET DESIGN (PREMIUM PORTRAIT TICKETS WITH TEAR-OFF STUB)
   ========================================================================== */
.vertical-coupon-card {
    border-radius: 22px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 440px;
    width: 100%;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 0 6px 18px rgba(15, 23, 42, 0.12);
    border: 2px solid rgba(255, 255, 255, 0.5);
}

.vertical-coupon-card:hover {
    transform: translateY(-8px) scale(1.02);
    box-shadow: 0 14px 28px rgba(15, 23, 42, 0.2);
    border-color: #ffffff;
}
/* Top Main Ticket Body */
.v-coupon-body {
    height: 310px;
    background: var(--coupon-body-bg, #0066ff);
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    padding: 20px 22px 16px 22px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    overflow: hidden;
}

.v-coupon-top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.v-coupon-badge {
    background: rgba(0, 0, 0, 0.3);
    color: #ffffff;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.v-coupon-validity-text {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.72rem;
    font-weight: 700;
}

.v-coupon-headline {
    font-size: 1.85rem;
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -0.5px;
    color: #ffffff;
    text-transform: uppercase;
    font-family: var(--font-heading);
    text-shadow: 0 3px 6px rgba(0, 0, 0, 0.35);
    margin-bottom: 4px;
}

.v-coupon-title {
    font-size: 1.02rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 6px;
    line-height: 1.25;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
}

.v-coupon-desc {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    line-height: 1.4;
    margin-bottom: 8px;
}

.v-coupon-perks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 8px;
}

.v-coupon-perk-tag {
    background: rgba(255, 255, 255, 0.2);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 2px 8px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.v-coupon-barcode-row {
    font-family: 'Courier New', monospace;
    font-size: 0.7rem;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.75);
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Image-Based Top Body */
.v-coupon-img-body {
    height: 310px;
    background: #0f172a;
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.v-coupon-img-body img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.vertical-coupon-card:hover .v-coupon-img-body img {
    transform: scale(1.06);
}

/* Horizontal Perforation Divider (Clean Dashed Tear Line) */
.v-coupon-perforation {
    position: relative;
    height: 0;
    width: 100%;
    border-top: 2.5px dashed rgba(255, 255, 255, 0.75);
    z-index: 8;
}

/* Bottom Tear-off Stub (Fixed 130px Height Across All Cards) */
.v-coupon-stub {
    height: 130px;
    background: var(--coupon-stub-bg, #9b51e0);
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    padding: 14px 18px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    text-align: center;
    position: relative;
    z-index: 2;
}

.v-coupon-stub-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 8px;
}

.v-coupon-stub-label {
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.9);
    text-transform: uppercase;
}

.v-coupon-code-chip {
    background: #ffffff;
    color: var(--coupon-stub-text, #0f172a);
    font-family: monospace;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 3px 10px;
    border-radius: 6px;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    border: 1.5px dashed #0f172a;
}

.v-coupon-actions-row {
    display: flex;
    align-items: center;
    gap: 8px;
    width: 100%;
}

.btn-v-coupon-copy {
    background: rgba(255, 255, 255, 0.25);
    border: 1.5px solid rgba(255, 255, 255, 0.6);
    color: #ffffff;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 7px 12px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    flex-shrink: 0;
}

.btn-v-coupon-copy:hover {
    background: #ffffff;
    color: #0b0f19;
    border-color: #ffffff;
}

.btn-v-coupon-claim {
    background: #0f172a;
    color: #ffffff !important;
    font-weight: 900;
    font-size: 0.78rem;
    padding: 7px 14px;
    border-radius: 8px;
    text-decoration: none;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.35);
    white-space: nowrap;
}

.btn-v-coupon-claim:hover {
    background: #000000;
    color: #fed100 !important;
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.5);
}

.btn-v-coupon-bulk {
    background: #fed100;
    color: #0f172a !important;
    font-weight: 900;
    font-size: 0.78rem;
    padding: 7px 14px;
    border-radius: 8px;
    border: none;
    flex: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
    cursor: pointer;
    white-space: nowrap;
}

.btn-v-coupon-bulk:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: scale(1.03);
    box-shadow: 0 6px 16px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   VERTICAL COUPON COLOR PALETTES
   ========================================================================== */
.flat-theme-birthday {
    --coupon-body-bg: #00a8ff;
    --coupon-stub-bg: #e84393;
    --coupon-stub-text: #e84393;
}

.flat-theme-water {
    --coupon-body-bg: #1877f2;
    --coupon-stub-bg: #9b51e0;
    --coupon-stub-text: #9b51e0;
}

.flat-theme-vip {
    --coupon-body-bg: #d97706;
    --coupon-stub-bg: #0f172a;
    --coupon-stub-text: #d97706;
}

.flat-theme-squad {
    --coupon-body-bg: #ff5722;
    --coupon-stub-bg: #b71c1c;
    --coupon-stub-text: #b71c1c;
}

.flat-theme-student {
    --coupon-body-bg: #059669;
    --coupon-stub-bg: #0369a1;
    --coupon-stub-text: #0369a1;
}

.flat-theme-resort {
    --coupon-body-bg: #e11d48;
    --coupon-stub-bg: #4f46e5;
    --coupon-stub-text: #4f46e5;
}

.flat-theme-brunch {
    --coupon-body-bg: #7c3aed;
    --coupon-stub-bg: #db2777;
    --coupon-stub-text: #db2777;
}

.flat-theme-earlybird {
    --coupon-body-bg: #0d9488;
    --coupon-stub-bg: #ea580c;
    --coupon-stub-text: #ea580c;
}
/* ==========================================================================
   CORPORATE & BULK BOOKING BANNER (HIGH-CONTRAST LUXURY CARD)
   ========================================================================== */
.coupon-bulk-banner-yellow {
    background: linear-gradient(135deg, #0b1120 0%, #1e293b 100%);
    border: 2px solid rgba(254, 209, 0, 0.5);
    border-radius: 22px;
    padding: 24px 30px;
    margin-top: 30px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 20px;
    box-shadow: none;
    position: relative;
    z-index: 10;
}

.coupon-bulk-icon-box {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(254, 209, 0, 0.15);
    border: 2px solid rgba(254, 209, 0, 0.4);
    color: #fed100;
    font-size: 1.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: none;
}

.coupon-bulk-title {
    color: #ffffff;
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 4px;
    letter-spacing: -0.3px;
    font-family: var(--font-heading);
}

.coupon-bulk-desc {
    color: #cbd5e1;
    font-size: 0.9rem;
    line-height: 1.5;
    margin-bottom: 8px;
}

.coupon-bulk-perks-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.coupon-bulk-perk {
    background: rgba(15, 23, 42, 0.85);
    border: 1px solid rgba(254, 209, 0, 0.35);
    color: #fed100;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 4px 12px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.btn-coupon-bulk-cta {
    background: #fed100 !important;
    color: #0f172a !important;
    font-size: 0.85rem;
    font-weight: 900;
    padding: 12px 24px;
    border-radius: 50px;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    box-shadow: 0 6px 20px rgba(254, 209, 0, 0.35);
    transition: all 0.25s ease;
    white-space: nowrap;
    cursor: pointer;
}

.btn-coupon-bulk-cta:hover {
    background: #ffffff !important;
    color: #000000 !important;
    transform: scale(1.05);
    box-shadow: 0 8px 25px rgba(255, 255, 255, 0.4);
}

/* ==========================================================================
   BULK ORDER & CORPORATE ENQUIRY MODAL & CALL ACTIONS
   ========================================================================== */
.bulk-modal-header {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    border-bottom: 2px solid #fed100;
    color: #ffffff;
    padding: 20px 24px;
}

.bulk-modal-body {
    background: #0f172a;
    color: #ffffff;
    padding: 24px;
}

.bulk-input-field {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, 0.15);
    color: #ffffff;
    border-radius: 10px;
    padding: 10px 14px;
}

.bulk-input-field:focus {
    background: #1e293b;
    border-color: #fed100;
    color: #ffffff;
    box-shadow: 0 0 0 3px rgba(254, 209, 0, 0.25);
}

.bulk-call-strip {
    background: rgba(254, 209, 0, 0.12);
    border: 1px dashed rgba(254, 209, 0, 0.4);
    border-radius: 12px;
    padding: 14px 18px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.btn-bulk-direct-call {
    background: #fed100;
    color: #0f172a !important;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
    box-shadow: 0 4px 12px rgba(254, 209, 0, 0.3);
}

.btn-bulk-direct-call:hover {
    background: #ffffff;
    color: #000000 !important;
    transform: scale(1.05);
}

.btn-bulk-direct-wa {
    background: #25d366;
    color: #ffffff !important;
    font-weight: 900;
    font-size: 0.85rem;
    padding: 8px 18px;
    border-radius: 50px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: all 0.25s ease;
}

.btn-bulk-direct-wa:hover {
    background: #1ebe57;
    transform: scale(1.05);
}

/* Toast Notification for Copied Coupon */
.offer-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    border: 1px solid var(--accent-cyan);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 9999;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
}

/* Toast Notification for Copied Code */
.offer-toast {
    position: fixed;
    bottom: 30px;
    right: 30px;
    background: #0f172a;
    border: 1px solid var(--accent-cyan);
    color: #ffffff;
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 20px rgba(0, 240, 255, 0.3);
    z-index: 9999;
    font-weight: 700;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
    animation: slideInUp 0.3s ease;
}

.jaw-card-headline {
    font-size: 1.45rem;
    font-weight: 900;
    line-height: 1.15;
    text-transform: uppercase;
    margin-bottom: 6px;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.jaw-card-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 900;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    margin-top: 4px;
    width: fit-content;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}

.jaw-card-subtitle {
    font-size: 0.76rem;
    font-weight: 700;
    opacity: 0.95;
    margin-top: 6px;
    line-height: 1.3;
}

.jaw-card-terms {
    font-size: 0.65rem;
    font-weight: 700;
    opacity: 0.75;
    text-align: right;
    margin-top: 8px;
    text-transform: uppercase;
}

.btn-jaw-offers-cta {
    background: #2b3990;
    color: #ffffff !important;
    font-weight: 800;
    font-size: 1rem;
    padding: 13px 32px;
    border-radius: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 22px rgba(43, 57, 144, 0.45);
    transition: all 0.25s ease;
    border: none;
    text-transform: capitalize;
}

.btn-jaw-offers-cta:hover {
    background: #1b266d;
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 12px 28px rgba(43, 57, 144, 0.6);
    color: #ffd600 !important;
}

.jaw-arrow-btn {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: #ffffff;
    color: #2b3990;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    border: none;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    transition: all 0.2s ease;
    cursor: pointer;
}

.jaw-arrow-btn:hover {
    background: #2b3990;
    color: #ffffff;
    transform: scale(1.12);
}

/* Amazing Offers Section - Overlapping Box */
.offers-wrapper-box {
    background: var(--bg-purple-box);
    border: 1px solid rgba(255, 0, 127, 0.3);
    border-radius: var(--radius-lg);
    padding: 45px 35px;
    margin-top: 30px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.65), 0 0 35px rgba(255, 0, 127, 0.15);
    position: relative;
    z-index: 20;
}

.offer-card {
    background: #12142e !important;
    border: 1px solid rgba(255, 255, 255, 0.15) !important;
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s ease;
    height: 100%;
    display: flex;
    flex-direction: column;
    opacity: 1 !important;
    visibility: visible !important;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.4);
}

.offer-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink) !important;
    box-shadow: 0 16px 40px rgba(255, 0, 127, 0.4);
}

.offer-badge-circle {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--accent-pink);
    color: #fff;
    font-weight: 900;
    font-size: 0.72rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    line-height: 1;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(255, 0, 127, 0.5);
}

.offer-img-box {
    height: 140px;
    overflow: hidden;
    position: relative;
}

.offer-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.offer-card:hover .offer-img-box img {
    transform: scale(1.08);
}

.offer-body {
    padding: 18px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.offer-title {
    font-size: 1.05rem;
    font-weight: 800;
    color: #ffffff;
    margin-bottom: 4px;
}

.offer-subtitle {
    color: var(--primary-yellow);
    font-size: 0.88rem;
    font-weight: 700;
    margin-bottom: 8px;
}

.offer-desc {
    color: #a0aec0;
    font-size: 0.8rem;
    margin-bottom: 14px;
}

.offer-code-pill {
    position: absolute;
    bottom: 8px;
    left: 10px;
    background: rgba(14, 15, 36, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 204, 0, 0.4);
    padding: 3px 8px;
    border-radius: 8px;
    font-size: 0.7rem;
    font-weight: 700;
    color: #fff;
    letter-spacing: 0.5px;
}

.offer-perks-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.offer-perks-list .perk-item {
    font-size: 0.75rem;
    color: #cbd5e1;
    font-weight: 600;
}

.btn-book-offer {
    background: var(--primary-yellow);
    color: #1a1000 !important;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    padding: 8px 18px;
    border-radius: 20px;
    text-align: center;
    display: block;
    width: 100%;
    transition: all 0.25s ease;
}

.btn-book-offer:hover {
    background: #fff;
    transform: scale(1.02);
}

/* Explore Our Rides - Rich Interactive Video Cards */
.ride-video-card {
    background: #11142e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.ride-video-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-pink);
    box-shadow: 0 16px 40px rgba(255, 0, 127, 0.35);
}

.ride-video-thumb-box {
    height: 180px;
    width: 100%;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: #000000;
}

.ride-card-live-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.ride-video-card:hover .ride-card-live-video {
    transform: scale(1.08);
}

.ride-video-thumb-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.ride-video-card:hover .ride-video-thumb-box img {
    transform: scale(1.08);
}

.ride-play-btn-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: #fed100; /* Golden Yellow Play Button */
    color: #0f172a;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    box-shadow: 0 0 24px rgba(254, 209, 0, 0.7);
    transition: all 0.3s ease;
    z-index: 3;
    cursor: pointer;
}

.ride-video-thumb-box:hover .ride-play-btn-pulse {
    transform: translate(-50%, -50%) scale(1.15);
    background: #ffffff;
    color: #000000;
    box-shadow: 0 0 32px rgba(255, 255, 255, 0.9);
}

.gallery-card-live-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    transition: transform 0.5s ease;
}

.glass-card:hover .gallery-card-live-video {
    transform: scale(1.06);
}

.ride-card-body {
    padding: 16px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    background: rgba(14, 16, 42, 0.98);
}

/* Explore Our Parks - Rich Interactive Cards */
.park-card {
    background: #11142e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 18px;
    overflow: hidden;
    position: relative;
    transition: all 0.35s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.park-card:hover {
    transform: translateY(-8px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 40px rgba(0, 240, 255, 0.35);
}

.park-city-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(8, 9, 26, 0.85);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 204, 0, 0.4);
    border-radius: 20px;
    padding: 4px 10px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.5px;
    color: #fff;
    z-index: 2;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.5);
}

.park-card-img {
    height: 220px;
    width: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.park-card:hover .park-card-img {
    transform: scale(1.08);
}

.park-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 16px;
    background: linear-gradient(180deg, rgba(8, 9, 26, 0) 0%, rgba(8, 9, 26, 0.82) 45%, rgba(8, 9, 26, 0.98) 100%);
}

.park-title {
    font-size: 1.15rem;
    font-weight: 900;
    color: #fff;
    text-transform: uppercase;
    margin-bottom: 4px;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.8);
}

.btn-know-more {
    background: var(--primary-yellow);
    color: #000 !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    transition: all 0.2s ease;
}

.btn-know-more:hover {
    background: #fff;
    transform: scale(1.03);
}

.btn-quick-park-book {
    background: rgba(255, 0, 127, 0.2);
    border: 1px solid var(--accent-pink);
    color: #fff !important;
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 20px;
    display: inline-flex;
    align-items: center;
    gap: 4px;
    transition: all 0.2s ease;
}

.btn-quick-park-book:hover {
    background: var(--accent-pink);
    color: #fff !important;
    transform: scale(1.05);
}

/* Park Highlights Neon Box */
.highlights-container {
    background: #11142e;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 28px;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
}

.highlight-stat-box {
    background: rgba(18, 20, 50, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 16px 10px;
    text-align: center;
    transition: all 0.3s ease;
}

.highlight-stat-box:hover {
    transform: translateY(-4px);
    border-color: rgba(255, 204, 0, 0.4);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5);
}

.highlight-stat-icon {
    font-size: 2.2rem;
    margin-bottom: 8px;
    filter: drop-shadow(0 0 10px currentColor);
}

.highlight-stat-val {
    font-size: 2.1rem;
    font-weight: 900;
    color: #fff;
    line-height: 1;
}

.highlight-stat-lbl {
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 1px;
    color: #94a3b8;
    text-transform: uppercase;
    margin-top: 5px;
}

/* WonderPark Luxury Resort & Spa True Edge-to-Edge Fullwidth Banner */
.resort-fullwidth-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    min-height: 520px;
    display: flex;
    align-items: center;
    overflow: hidden;
    box-shadow: inset 0 20px 30px rgba(0,0,0,0.5), inset 0 -20px 30px rgba(0,0,0,0.5);
}

.resort-banner-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1s ease;
    z-index: 1;
}

.resort-fullwidth-section:hover .resort-banner-bg {
    transform: scale(1.05);
}

.resort-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, rgba(8, 9, 26, 0.94) 0%, rgba(8, 9, 26, 0.72) 48%, rgba(8, 9, 26, 0.15) 100%);
    z-index: 2;
}

.resort-inner-glass-card {
    background: rgba(10, 12, 32, 0.78);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 24px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.65), 0 0 30px rgba(0, 240, 255, 0.12);
    max-width: 680px;
    position: relative;
    z-index: 3;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.resort-inner-glass-card:hover {
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.75), 0 0 40px rgba(255, 204, 0, 0.2);
}

.resort-inner-title {
    font-size: 2.2rem;
    line-height: 1.15;
    letter-spacing: -0.5px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.85);
}

.resort-perk-pill {
    background: rgba(14, 16, 42, 0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 700;
    color: #fff;
    display: inline-flex;
    align-items: center;
    box-shadow: 0 4px 15px rgba(0,0,0,0.4);
    transition: all 0.25s ease;
}

.resort-perk-pill:hover {
    background: rgba(255, 204, 0, 0.2);
    border-color: var(--primary-yellow);
    transform: translateY(-2px);
    color: #ffd600;
}

/* Thrilling Rides Carousel */
.ride-cat-circle {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.ride-cat-img-wrap {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    padding: 5px;
    border: 3px solid rgba(255, 255, 255, 0.15);
    background: radial-gradient(circle, rgba(255, 0, 127, 0.2) 0%, transparent 70%);
    overflow: hidden;
    position: relative;
    transition: all 0.3s ease;
}

.ride-cat-img-wrap img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.ride-cat-circle:hover .ride-cat-img-wrap {
    border-color: var(--accent-pink);
    box-shadow: 0 0 25px rgba(255, 0, 127, 0.6);
    transform: scale(1.06);
}

.ride-cat-title {
    margin-top: 12px;
    font-size: 0.88rem;
    font-weight: 800;
    text-transform: uppercase;
    color: #e2e8f0;
}

/* Water Park Banner */
.water-park-banner {
    background: var(--gradient-water);
    border-radius: var(--radius-lg);
    padding: 40px;
    color: #fff;
    position: relative;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(0, 188, 212, 0.3);
}

.water-park-banner .water-badge {
    font-size: 0.85rem;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: #fff;
    opacity: 0.9;
}

.water-park-banner h2 {
    font-size: 3rem;
    font-weight: 900;
    text-transform: uppercase;
    margin: 6px 0;
}

/* Experience Bar */
.experience-bottom-bar {
    background: #110c29;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
    margin-top: 60px;
}

.experience-item {
    display: flex;
    align-items: center;
    gap: 14px;
    color: #fff;
    padding: 10px;
}

.exp-icon-box {
    width: 46px;
    height: 46px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: #fff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.exp-title {
    font-size: 0.95rem;
    font-weight: 800;
    text-transform: uppercase;
    line-height: 1.1;
}

.exp-sub {
    font-size: 0.75rem;
    color: #94a3b8;
}

/* Footer */
.footer-wonderpark {
    background: #04050e;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding: 70px 0 30px;
    color: #94a3b8;
}

.footer-wonderpark h5 {
    color: #fff;
    font-size: 1.05rem;
    margin-bottom: 20px;
}

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

.footer-wonderpark ul li {
    margin-bottom: 10px;
}

.footer-wonderpark ul li a {
    color: #94a3b8;
    font-size: 0.9rem;
}

.footer-wonderpark ul li a:hover {
    color: var(--primary-yellow);
    padding-left: 5px;
}

/* Responsive adjustments */
@media (max-width: 991px) {
    .hero-section {
        padding-top: 100px;
        padding-bottom: 90px;
    }
    .hero-title {
        font-size: 3.4rem;
    }
    .booking-search-bar {
        border-radius: 30px;
        margin-top: -50px;
        padding: 20px;
    }
    .search-field-item {
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        padding: 12px 0;
    }
    .floating-actions-bar {
        display: none;
    }
}

@media (max-width: 576px) {
    .hero-title {
        font-size: 2.3rem;
    }
    .hero-tagline {
        font-size: 1.3rem;
    }
    .booking-search-bar {
        margin-top: -35px;
    }
    .offers-wrapper-box {
        padding: 25px 15px;
        margin-top: 20px;
    }
    .restaurant-section-title {
        font-size: 2.2rem;
    }
}

/* ==========================================================================
   RESTAURANTS FULLWIDTH SECTION (VIBRANT RED & ORANGE SUNSET GRADIENT)
   ========================================================================== */
.restaurant-yellow-fullwidth-section {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #7f1d1d 0%, #b91c1c 20%, #c2410c 45%, #ea580c 70%, #f97316 100%);
    padding: 70px 0 75px 0;
    z-index: 20;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 20px 40px rgba(0, 0, 0, 0.35), inset 0 -20px 40px rgba(0, 0, 0, 0.35);
}

.restaurant-section-title {
    font-size: 3.2rem;
    font-weight: 900;
    color: #ffffff;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    text-align: center;
    margin-bottom: 35px;
    text-shadow: 0 4px 25px rgba(0, 0, 0, 0.6);
}

.restaurant-section-title span {
    color: #ffd233;
    text-shadow: 0 0 20px rgba(255, 210, 51, 0.6);
}

.restaurant-carousel-track {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    padding: 10px 10px 25px 10px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.restaurant-carousel-track::-webkit-scrollbar {
    display: none;
}

.restaurant-card {
    min-width: 275px;
    max-width: 295px;
    flex: 0 0 285px;
    background: #ffffff;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    border: none;
}

.restaurant-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 18px 35px rgba(0, 0, 0, 0.15);
}

.restaurant-img-wrap {
    height: 185px;
    position: relative;
    overflow: hidden;
    background: #0f172a;
}

.restaurant-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.restaurant-card:hover .restaurant-img-wrap img {
    transform: scale(1.06);
}

.restaurant-tag-badge {
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    color: #ffffff;
    border-radius: 50px;
    font-size: 0.68rem;
    font-weight: 700;
    padding: 4px 11px;
    letter-spacing: 0.3px;
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.restaurant-img-dots {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 5px;
    z-index: 5;
}

.restaurant-img-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #ffffff;
    opacity: 0.7;
}

.restaurant-img-dot.active {
    width: 14px;
    border-radius: 4px;
    opacity: 1;
}

.restaurant-card-body {
    padding: 16px 18px 18px 18px;
    display: flex;
    flex-direction: column;
    flex-grow: 1;
}

.restaurant-name {
    font-size: 1.15rem;
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 2px;
    line-height: 1.25;
}

.restaurant-location {
    font-size: 0.76rem;
    font-weight: 600;
    color: #64748b;
    margin-bottom: 12px;
}

.restaurant-desc-item {
    display: flex;
    gap: 8px;
    align-items: flex-start;
    margin-bottom: 18px;
    flex-grow: 1;
}

.food-type-icon {
    width: 16px;
    height: 16px;
    min-width: 16px;
    border: 1.5px solid #ef4444;
    border-radius: 3px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.food-type-icon i {
    font-size: 8px;
    color: #ef4444;
}

.food-type-icon.veg {
    border-color: #22c55e;
}

.food-type-icon.veg i {
    color: #22c55e;
}

.restaurant-desc-text {
    font-size: 0.8rem;
    color: #475569;
    line-height: 1.45;
    font-weight: 500;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.btn-explore-menu {
    width: 100%;
    background: #2b50ed;
    color: #ffffff;
    font-weight: 800;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-radius: 8px;
    padding: 10px 0;
    border: none;
    transition: all 0.2s ease;
    text-align: center;
    cursor: pointer;
    text-decoration: none;
    display: block;
}

.btn-explore-menu:hover {
    background: #1e3bbd;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(43, 80, 237, 0.35);
}

.restaurant-pagination-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
}

.resto-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all 0.3s ease;
}

.resto-dot.active {
    width: 24px;
    border-radius: 4px;
    background: var(--primary-yellow);
    box-shadow: 0 0 10px rgba(255, 204, 0, 0.6);
}