/* ============================================================
   GYMBOREE BIRTHDAY LANDING PAGE – CUSTOM CSS
   Brand: Gymboree | Theme: Light Beige, Premium Playful
   ============================================================ */

/* ============================================================
   1. CSS VARIABLES & ROOT
   ============================================================ */
:root {
    --gb-orange:        #f59c1a;
    --gb-orange-dark:   #d9850e;
    --gb-orange-light:  #fef3dc;
    --gb-beige:         #fdf6ec;
    --gb-beige-mid:     #f7ede0;
    --gb-beige-dark:    #eedfc8;
    --gb-text-dark:     #2c2c2c;
    --gb-text-mid:      #555555;
    --gb-text-light:    #888888;
    --gb-white:         #ffffff;
    --gb-shadow-sm:     0 4px 16px rgba(245, 156, 26, 0.10);
    --gb-shadow-md:     0 8px 32px rgba(245, 156, 26, 0.15);
    --gb-shadow-lg:     0 16px 48px rgba(245, 156, 26, 0.18);
    --gb-radius-sm:     10px;
    --gb-radius-md:     18px;
    --gb-radius-lg:     28px;
    --gb-radius-xl:     40px;
    --gb-font-heading:  'Nunito', sans-serif;
    --gb-font-body:     'Poppins', sans-serif;
    --gb-transition:    all 0.3s ease;
}

/* ============================================================
   2. GLOBAL BASE STYLES
   ============================================================ */
*, *::before, *::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--gb-font-body);
    background-color: var(--gb-beige);
    color: var(--gb-text-dark);
    line-height: 1.7;
    overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--gb-font-heading);
    font-weight: 800;
    color: var(--gb-text-dark);
}

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

img {
    max-width: 100%;
    height: auto;
}

/* Section spacing */
.gb-section {
    padding: 90px 0;
}

.gb-bg-light {
    background-color: var(--gb-beige-mid);
}

/* ============================================================
   3. REUSABLE COMPONENTS
   ============================================================ */

/* Section Label */
.gb-section-label {
    display: inline-block;
    background: var(--gb-orange-light);
    color: var(--gb-orange-dark);
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.82rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 18px;
    border-radius: 50px;
    margin-bottom: 14px;
}

/* Section Heading */
.gb-section-heading {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    line-height: 1.25;
    margin-bottom: 18px;
    color: var(--gb-text-dark);
}

/* Section Paragraph */
.gb-section-para {
    font-size: 1rem;
    color: var(--gb-text-mid);
    line-height: 1.8;
    margin-bottom: 0;
}

/* Primary Button */
/* Primary button — orange fill, white text; hover → white fill, orange text */
.gb-btn-primary {
    background: var(--gb-orange);
    color: var(--gb-white) !important;
    border: 2px solid var(--gb-orange);
    border-radius: 50px;
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 28px;
    transition: var(--gb-transition);
    box-shadow: 0 4px 18px rgba(245, 156, 26, 0.30);
    display: inline-flex;
    align-items: center;
}

.gb-btn-primary:hover,
.gb-btn-primary:focus {
    background: var(--gb-white);
    border-color: var(--gb-orange);
    color: var(--gb-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 156, 26, 0.25);
}

/* Outline button — orange fill, white text (same as primary); hover → white fill, orange text */
.gb-btn-outline {
    background: var(--gb-orange);
    color: var(--gb-white) !important;
    border: 2px solid var(--gb-orange);
    border-radius: 50px;
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 11px 28px;
    transition: var(--gb-transition);
    box-shadow: 0 4px 18px rgba(245, 156, 26, 0.25);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.gb-btn-outline:hover,
.gb-btn-outline:focus {
    background: var(--gb-white);
    border-color: var(--gb-orange);
    color: var(--gb-orange) !important;
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(245, 156, 26, 0.18);
}

/* Large button variant */
.gb-btn-lg {
    padding: 15px 40px;
    font-size: 1.05rem;
}

/* Checklist */
.gb-check-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.gb-check-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: var(--gb-text-mid);
    border-bottom: 1px solid var(--gb-beige-dark);
}

.gb-check-list li:last-child {
    border-bottom: none;
}

.gb-check-list li i {
    color: var(--gb-orange);
    font-size: 1.1rem;
    flex-shrink: 0;
}

/* ============================================================
   4. NAVBAR
   ============================================================ */
.gb-navbar {
    background: rgba(253, 246, 236, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--gb-beige-dark);
    padding: 12px 0;
    transition: var(--gb-transition);
    z-index: 100;
}

.gb-navbar.scrolled {
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
}

.gb-logo {
    height: 42px;
    object-fit: contain;
    border-radius: 5px;
}

.gb-logo-text {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    font-size: 1.6rem;
    color: var(--gb-orange);
}

.gb-navbar .nav-link {
    font-family: var(--gb-font-heading);
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--gb-text-dark);
    padding: 8px 14px;
    border-radius: 8px;
    transition: var(--gb-transition);
}

.gb-navbar .nav-link:hover {
    color: var(--gb-orange);
    background: var(--gb-orange-light);
}

/* ============================================================
   5. HERO SECTION WITH VIDEO + WAVE DIVIDER
   ============================================================ */
.gb-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #1a1008;
}

/* Background Video */
.gb-hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    z-index: 0;
    transition: transform 8s ease-out;
    will-change: transform;
}

/* Subtle parallax zoom effect on scroll */
.gb-hero.scrolled .gb-hero-video {
    transform: scale(1.05);
}

/* Dark Overlay */
.gb-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(20, 10, 0, 0.40) 0%,
        rgba(20, 10, 0, 0.35) 50%,
        rgba(20, 10, 0, 0.45) 100%
    );
    z-index: 1;
}

/* SVG Wave Divider at Bottom - Multi-layered elegant design */
.gb-wave-divider {
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 100%;
    height: 180px;
    z-index: 2;
    line-height: 0;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    pointer-events: none;
}

/* Show wave only when scrolling */
.gb-hero.scrolled .gb-wave-divider {
    opacity: 1;
    transform: translateY(0);
}

.gb-wave-divider svg {
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    display: block;
    width: 100vw;
    min-width: 100%;
    height: 180px;
}

/* Animate each wave layer independently for depth */
.gb-wave-divider svg path:nth-child(1) {
    animation: gb-wave-animation-1 18s ease-in-out infinite;
}

.gb-wave-divider svg path:nth-child(2) {
    animation: gb-wave-animation-2 15s ease-in-out infinite;
}

.gb-wave-divider svg path:nth-child(3) {
    animation: gb-wave-animation-3 12s ease-in-out infinite;
}

/* Wave animations with different speeds for layered effect */
@keyframes gb-wave-animation-1 {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-25px) translateY(-3px);
    }
}

@keyframes gb-wave-animation-2 {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(20px) translateY(2px);
    }
}

@keyframes gb-wave-animation-3 {
    0%, 100% {
        transform: translateX(0) translateY(0);
    }
    50% {
        transform: translateX(-15px) translateY(-2px);
    }
}

/* Hero Content */
.gb-hero-content {
    position: relative;
    z-index: 2;
    width: 100%;
    padding: 120px 0 80px;
}

/* Hero Badge */
.gb-hero-badge {
    display: inline-block;
    background: rgba(245, 156, 26, 0.20);
    border: 1px solid rgba(245, 156, 26, 0.50);
    color: var(--gb-orange);
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.85rem;
    letter-spacing: 0.1em;
    padding: 7px 20px;
    border-radius: 50px;
    margin-bottom: 24px;
    backdrop-filter: blur(4px);
}

/* Hero Heading */
.gb-hero-heading {
    font-size: clamp(2rem, 5vw, 3.6rem);
    font-weight: 900;
    color: var(--gb-white);
    line-height: 1.15;
    margin-bottom: 22px;
    text-shadow: 0 2px 20px rgba(0,0,0,0.3);
}

/* Hero Subheading */
.gb-hero-subheading {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

/* Hero CTA */
.gb-hero-cta {
    font-size: 1.1rem;
    padding: 16px 44px;
    box-shadow: 0 8px 32px rgba(245, 156, 26, 0.45);
    animation: gb-pulse 2.5s infinite;
}

@keyframes gb-pulse {
    0%, 100% { box-shadow: 0 8px 32px rgba(245, 156, 26, 0.45); }
    50%       { box-shadow: 0 8px 48px rgba(245, 156, 26, 0.70); }
}

/* Hero Trust Indicators */
.gb-hero-trust {
    display: flex;
    justify-content: center;
    gap: 28px;
    flex-wrap: wrap;
}

.gb-hero-trust span {
    font-family: var(--gb-font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.80);
}

/* ============================================================
   6. SECTION 2 – INTRO (Left Image / Right Text)
   ============================================================ */
.gb-section-intro {
    background: var(--gb-beige);
}

.gb-intro-image-wrap {
    position: relative;
    display: inline-block;
    width: 100%;
}

.gb-intro-image {
    width: 100%;
    border-radius: var(--gb-radius-lg);
    box-shadow: var(--gb-shadow-lg);
    object-fit: cover;
    aspect-ratio: 5 / 4;
}

/* Floating badge on image */
.gb-float-badge {
    position: absolute;
    bottom: 28px;
    right: -18px;
    background: var(--gb-orange);
    color: var(--gb-white);
    border-radius: var(--gb-radius-md);
    padding: 14px 22px;
    text-align: center;
    box-shadow: var(--gb-shadow-md);
    min-width: 110px;
}

.gb-float-badge-num {
    display: block;
    font-family: var(--gb-font-heading);
    font-weight: 900;
    font-size: 1.8rem;
    line-height: 1;
}

.gb-float-badge-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    opacity: 0.9;
    margin-top: 4px;
}

.gb-intro-content {
    padding-left: 10px;
}

/* ============================================================
   7. SECTION 3 – FEATURE CARDS
   ============================================================ */
.gb-section-features {
    background: var(--gb-beige-mid);
}

.gb-feature-card {
    background: var(--gb-white);
    border-radius: var(--gb-radius-md);
    overflow: hidden;
    box-shadow: var(--gb-shadow-sm);
    transition: var(--gb-transition);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.gb-feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--gb-shadow-lg);
}

.gb-feature-card-img-wrap {
    overflow: hidden;
    height: 200px;
}

.gb-feature-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gb-feature-card:hover .gb-feature-card-img {
    transform: scale(1.06);
}

.gb-feature-card-body {
    padding: 24px 22px 28px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.gb-feature-icon {
    width: 48px;
    height: 48px;
    background: var(--gb-orange-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
    transition: var(--gb-transition);
}

.gb-feature-icon i {
    font-size: 1.4rem;
    color: var(--gb-orange);
}

.gb-feature-card:hover .gb-feature-icon {
    background: var(--gb-orange);
}

.gb-feature-card:hover .gb-feature-icon i {
    color: var(--gb-white);
}

.gb-feature-card-title {
    font-size: 1.05rem;
    font-weight: 800;
    margin-bottom: 10px;
    color: var(--gb-text-dark);
}

.gb-feature-card-text {
    font-size: 0.88rem;
    color: var(--gb-text-mid);
    line-height: 1.7;
    margin-bottom: 0;
    flex: 1;
}

/* ============================================================
   7B. SECTION 3 – PACKAGE CARDS  (viewport-fit, 2-col features)
   ============================================================ */

/* Section fills viewport, centres content vertically */
.gb-section-packages {
    position: relative;
    overflow: hidden;
    background: var(--gb-beige-mid);
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 60px 0;
}

/* Inner wrapper – max-width container */
.gb-pkg-inner {
    width: 100%;
    max-width: 1140px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 2;
}

/* Section header */
.gb-pkg-header {
    text-align: center;
    margin-bottom: 36px;
}

.gb-pkg-header .gb-section-heading { margin-bottom: 8px; }
.gb-pkg-header .gb-section-para    { margin-bottom: 0; }

/* 2-column card grid */
.gb-pkg-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    align-items: start;
}

/* ── Card shell ── */
.gb-pkg-card {
    background: var(--gb-white);
    border-radius: var(--gb-radius-md);
    overflow: hidden;
    box-shadow: var(--gb-shadow-sm);
    transition: var(--gb-transition);
    display: flex;
    flex-direction: column;
    position: relative;
    max-height: 640px;          /* hard cap – no vertical stretch */
}

.gb-pkg-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--gb-shadow-lg);
}

.gb-pkg-card-premium {
    border: 2px solid var(--gb-orange);
}

/* "Most Popular" ribbon – small */
.gb-pop-ribbon {
    position: absolute;
    top: 16px;
    right: -26px;
    background: var(--gb-orange);
    color: var(--gb-white);
    font-family: var(--gb-font-heading);
    font-weight: 800;
    font-size: 0.65rem;
    letter-spacing: 0.06em;
    padding: 4px 34px;
    transform: rotate(45deg);
    z-index: 3;
    box-shadow: 0 2px 8px rgba(245,156,26,0.35);
}

/* ── Image ── */
.gb-pkg-img-wrap {
    position: relative;
    width: 100%;
    height: 200px;
    overflow: hidden;
    background: var(--gb-beige);
    flex-shrink: 0;
}

.gb-pkg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 30%;   /* show upper-centre of party scene */
    display: block;
    transition: transform 0.5s ease;
}

.gb-pkg-card:hover .gb-pkg-img { transform: scale(1.04); }

/* Badge on image */
.gb-pkg-badge {
    position: absolute;
    bottom: 10px;
    left: 14px;
    font-family: var(--gb-font-heading);
    font-weight: 800;
    font-size: 0.68rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 3px 12px;
    border-radius: 50px;
    z-index: 2;
    backdrop-filter: blur(4px);
}

.gb-badge-std  { background: rgba(253,246,236,.92); color: var(--gb-orange-dark); border: 1.5px solid var(--gb-orange); }
.gb-badge-prem { background: rgba(240,244,255,.92); color: #3a56d4;               border: 1.5px solid #4e6ef2; }

/* ── Header: title + price inline ── */
.gb-pkg-head {
    padding: 14px 20px 10px;
    border-bottom: 1px solid var(--gb-beige-dark);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.gb-pkg-title-row {
    display: flex;
    align-items: center;
    gap: 8px;
}

.gb-pkg-dot {
    width: 11px;
    height: 11px;
    border-radius: 50%;
    flex-shrink: 0;
}

.gb-pkg-title {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    font-size: 1.05rem;
    color: var(--gb-text-dark);
    margin: 0;
}

/* Prices inline – two small pills */
.gb-pkg-prices {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.gb-pkg-prices span {
    font-size: 0.78rem;
    color: var(--gb-text-mid);
    background: var(--gb-beige);
    border-radius: 6px;
    padding: 3px 10px;
    white-space: nowrap;
}

.gb-pkg-prices span strong {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    color: var(--gb-text-dark);
    margin-right: 3px;
}

/* ── Body: 2-col feature grid ── */
.gb-pkg-body {
    padding: 12px 20px 8px;
    flex: 1;
}

.gb-pkg-inc-label {
    font-family: var(--gb-font-heading);
    font-weight: 800;
    font-size: 0.82rem;
    color: var(--gb-text-dark);
    margin-bottom: 8px;
}

/* 2-column feature list – cuts height by ~40% */
.gb-pkg-features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5px 14px;
}

.gb-pkg-features li {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.8rem;
    color: var(--gb-text-mid);
    line-height: 1.35;
}

.gb-pkg-features li i {
    color: var(--gb-orange);
    font-size: 0.78rem;
    flex-shrink: 0;
}

/* ── Footer: tagline + CTA ── */
.gb-pkg-footer {
    padding: 10px 20px 18px;
    border-top: 1px solid var(--gb-beige-dark);
}

.gb-pkg-tagline {
    font-size: 0.78rem;
    color: var(--gb-text-mid);
    font-style: italic;
    margin-bottom: 10px;
    line-height: 1.4;
}

/* ── Responsive ── */

/* Tablet: stack cards, keep compact */
@media (max-width: 991px) {
    .gb-section-packages {
        min-height: auto;
        padding: 60px 0;
    }

    .gb-pkg-grid {
        grid-template-columns: 1fr;
        max-width: 520px;
        margin: 0 auto;
        gap: 24px;
    }

    .gb-pkg-card {
        max-height: none;
    }
}

/* Mobile: single col features */
@media (max-width: 575px) {
    .gb-pkg-features {
        grid-template-columns: 1fr;
        gap: 4px;
    }

    .gb-pkg-head {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    .gb-pkg-inner {
        padding: 0 16px;
    }
}

/* ============================================================
   8. SECTION 4 – PARTY THEMES & DÉCOR
   ============================================================ */
.gb-section-themes {
    background: var(--gb-beige);
}

.gb-themes-content {
    background: var(--gb-beige-mid);
    border-radius: var(--gb-radius-lg);
    padding: 48px 44px;
    box-shadow: var(--gb-shadow-sm);
}

/* Theme List */
.gb-theme-list {
    list-style: none;
    padding: 0;
    margin: 24px 0;
}

.gb-theme-list li {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 0;
    border-bottom: 1px solid var(--gb-beige-dark);
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 1rem;
    color: var(--gb-text-dark);
    transition: var(--gb-transition);
}

.gb-theme-list li:last-child {
    border-bottom: none;
}

.gb-theme-list li:hover {
    color: var(--gb-orange);
    padding-left: 8px;
}

.gb-theme-icon {
    font-size: 1.4rem;
    width: 42px;
    height: 42px;
    background: var(--gb-white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--gb-shadow-sm);
    flex-shrink: 0;
}

/* Themes Image */
.gb-themes-image-wrap {
    border-radius: var(--gb-radius-lg);
    overflow: hidden;
    box-shadow: var(--gb-shadow-lg);
}

.gb-themes-image {
    width: 100%;
    object-fit: cover;
    aspect-ratio: 5 / 4;
    display: block;
    transition: transform 0.5s ease;
}

.gb-themes-image-wrap:hover .gb-themes-image {
    transform: scale(1.03);
}

/* Theme option cards (Generic / Customised) */
.gb-theme-option-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin: 22px 0 20px;
}

.gb-theme-option-card {
    background: var(--gb-white);
    border-radius: var(--gb-radius-sm);
    padding: 16px 14px;
    display: flex;
    gap: 12px;
    align-items: flex-start;
    box-shadow: var(--gb-shadow-sm);
    border: 1px solid var(--gb-beige-dark);
    transition: var(--gb-transition);
}

.gb-theme-option-card:hover {
    border-color: var(--gb-orange);
    box-shadow: var(--gb-shadow-md);
    transform: translateY(-3px);
}

.gb-theme-option-icon {
    font-size: 1.5rem;
    line-height: 1;
    flex-shrink: 0;
    margin-top: 2px;
}

.gb-theme-option-title {
    font-family: var(--gb-font-heading);
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--gb-text-dark);
    margin: 0 0 5px;
}

.gb-theme-option-desc {
    font-size: 0.8rem;
    color: var(--gb-text-mid);
    line-height: 1.5;
    margin: 0;
}

/* Balloon & Cake Table block */
.gb-balloon-block {
    background: var(--gb-orange-light);
    border-radius: var(--gb-radius-sm);
    padding: 18px 20px;
    border-left: 4px solid var(--gb-orange);
}

.gb-balloon-block-title {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.95rem;
    color: var(--gb-text-dark);
    margin-bottom: 12px;
}

.gb-balloon-block-title span {
    font-size: 1.2rem;
}

.gb-balloon-block-title strong {
    font-family: var(--gb-font-heading);
    font-weight: 800;
}

.gb-balloon-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.gb-balloon-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.87rem;
    color: var(--gb-text-mid);
    padding: 5px 0;
    border-bottom: 1px solid var(--gb-beige-dark);
}

.gb-balloon-list li:last-child {
    border-bottom: none;
}

.gb-balloon-list li i {
    color: var(--gb-orange);
    font-size: 0.85rem;
    flex-shrink: 0;
}

/* Small package tags inline */
.gb-tag {
    display: inline-block;
    background: rgba(245,156,26,0.12);
    color: var(--gb-orange-dark);
    border: 1px solid var(--gb-orange);
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.65rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 2px 8px;
    border-radius: 50px;
    margin-left: 4px;
}

.gb-tag-premium {
    background: rgba(78,110,242,0.10);
    color: #3a56d4;
    border-color: #4e6ef2;
}

/* Mobile: stack theme option cards */
@media (max-width: 575px) {
    .gb-theme-option-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   9. SECTION 5 – BOOKING FORM + FAQ (combined)
   ============================================================ */
.gb-section-booking-faq {
    background: var(--gb-beige-mid);
    position: relative;
    overflow: hidden;
    /* Tightened from 90px → fits section in one viewport */
    padding: 48px 0 44px;
}

/* ── Blue Form Card ── */
.gb-form-card {
    background: #2b6cb0;
    border-radius: var(--gb-radius-lg);
    /* Reduced from 36px 32px 32px */
    padding: 24px 26px 20px;
    box-shadow: 0 16px 48px rgba(43,108,176,0.25);
}

.gb-form-card-header {
    /* Reduced from 26px */
    margin-bottom: 14px;
}

.gb-form-card-title {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    /* Reduced from 1.7rem */
    font-size: 1.45rem;
    color: #ffffff;
    margin: 0 0 4px;
}

.gb-form-card-sub {
    /* Reduced from 0.9rem */
    font-size: 0.82rem;
    color: rgba(255,255,255,0.80);
    margin: 0;
}

/* Form field rows */
.gb-fc-field {
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.12);
    border: 1.5px solid rgba(255,255,255,0.20);
    border-radius: 50px;
    padding: 0 16px;
    /* Reduced from 14px */
    margin-bottom: 9px;
    transition: var(--gb-transition);
}

.gb-fc-field:focus-within {
    background: rgba(255,255,255,0.20);
    border-color: rgba(255,255,255,0.55);
}

.gb-fc-textarea {
    border-radius: var(--gb-radius-sm);
    padding: 0 16px;
    align-items: flex-start;
}

.gb-fc-icon {
    color: rgba(255,255,255,0.70);
    font-size: 0.9rem;
    margin-right: 10px;
    flex-shrink: 0;
}

.gb-fc-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-family: var(--gb-font-body);
    font-size: 0.875rem;
    /* Reduced from 13px */
    padding: 9px 0;
    width: 100%;
}

.gb-fc-input::placeholder {
    color: rgba(255,255,255,0.55);
}

.gb-fc-input option {
    color: var(--gb-text-dark);
    background: #fff;
}

/* Select arrow white */
.gb-fc-field select.gb-fc-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='rgba(255,255,255,0.6)' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 2px center;
    padding-right: 20px;
    cursor: pointer;
}

textarea.gb-fc-input {
    resize: none;
    padding: 9px 0;
    /* Reduced from 80px */
    min-height: 58px;
}

/* Submit button */
.gb-fc-submit {
    width: 100%;
    background: var(--gb-orange);
    color: #ffffff;
    border: none;
    border-radius: 50px;
    font-family: var(--gb-font-heading);
    font-weight: 800;
    font-size: 0.95rem;
    /* Reduced from 14px */
    padding: 10px 24px;
    margin-top: 4px;
    cursor: pointer;
    transition: var(--gb-transition);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 20px rgba(245,156,26,0.40);
}

.gb-fc-submit:hover {
    background: var(--gb-white);
    color: var(--gb-orange);
    border: 2px solid var(--gb-orange);
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(245,156,26,0.25);
}

.gb-fc-note {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.55);
    text-align: center;
    /* Reduced from 10px */
    margin: 6px 0 0;
}

/* ── FAQ side panel ── */
.gb-faq-side {
    padding-top: 4px;
}

/* Tighten FAQ heading block — scoped so other sections are unaffected */
.gb-faq-side .gb-section-label {
    margin-bottom: 8px;
    padding: 4px 14px;
    font-size: 0.78rem;
}

.gb-faq-side .gb-section-heading {
    font-size: clamp(1.35rem, 2.4vw, 1.9rem);
    margin-bottom: 8px;
}

.gb-faq-side .gb-section-para {
    font-size: 0.875rem;
    line-height: 1.6;
    margin-bottom: 16px;
}

/* Responsive – stack on tablet/mobile */
@media (max-width: 991px) {
    .gb-section-booking-faq {
        padding: 60px 0;
    }
    .gb-faq-side {
        padding-top: 0;
    }
}

/* .gb-booking-form replaced by .gb-form-card (blue form card) */

/* Form Labels */
.gb-form-label {
    font-family: var(--gb-font-heading);
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--gb-text-dark);
    margin-bottom: 8px;
    display: block;
}

/* Form Inputs */
.gb-form-input {
    border: 2px solid var(--gb-beige-dark);
    border-radius: var(--gb-radius-sm);
    padding: 12px 16px;
    font-family: var(--gb-font-body);
    font-size: 0.92rem;
    color: var(--gb-text-dark);
    background: var(--gb-beige);
    transition: var(--gb-transition);
    width: 100%;
}

.gb-form-input:focus {
    border-color: var(--gb-orange);
    background: var(--gb-white);
    box-shadow: 0 0 0 4px rgba(245, 156, 26, 0.12);
    outline: none;
}

.gb-form-input::placeholder {
    color: var(--gb-text-light);
}

/* Submit Button */
.gb-submit-btn {
    min-width: 220px;
    font-size: 1rem;
}

/* Form Note */
.gb-form-note {
    font-size: 0.82rem;
    color: var(--gb-text-light);
    margin-bottom: 0;
}

/* Alert Messages */
.gb-alert-success {
    background: #d4edda;
    border-color: #c3e6cb;
    color: #155724;
    border-radius: var(--gb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 28px;
}

.gb-alert-error {
    background: #f8d7da;
    border-color: #f5c6cb;
    color: #721c24;
    border-radius: var(--gb-radius-sm);
    padding: 16px 20px;
    margin-bottom: 28px;
}

/* ============================================================
   10. SECTION 6 – CONTACT + MAP
   ============================================================ */
.gb-section-contact {
    background: var(--gb-beige);
    /* Override gb-section's 90px — fits in one viewport */
    padding: 44px 0 40px !important;
}

/* Tighten section header block */
.gb-section-contact .gb-section-heading {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    margin-bottom: 8px;
}

.gb-section-contact .gb-section-label {
    margin-bottom: 8px;
}

.gb-section-contact .gb-section-para {
    font-size: 0.9rem;
    margin-bottom: 0;
}

.gb-contact-card {
    background: var(--gb-white);
    border-radius: var(--gb-radius-lg);
    /* Reduced from 40px 36px */
    padding: 24px 26px;
    box-shadow: var(--gb-shadow-sm);
}

.gb-contact-card-title {
    font-size: 1.15rem;
    font-weight: 900;
    /* Reduced from 28px */
    margin-bottom: 16px;
    color: var(--gb-text-dark);
    /* Reduced from 16px */
    padding-bottom: 10px;
    border-bottom: 2px solid var(--gb-beige-dark);
}

.gb-contact-item {
    display: flex;
    /* Reduced from 16px */
    gap: 12px;
    align-items: flex-start;
    /* Reduced from 22px */
    margin-bottom: 14px;
}

.gb-contact-item:last-of-type {
    margin-bottom: 0;
}

.gb-contact-icon {
    /* Reduced from 44px */
    width: 36px;
    height: 36px;
    background: var(--gb-orange-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 1px;
}

.gb-contact-icon i {
    /* Reduced from 1.1rem */
    font-size: 0.9rem;
    color: var(--gb-orange);
}

.gb-whatsapp-icon {
    background: #e8f8f0;
}

.gb-whatsapp-icon i {
    color: #25D366;
}

.gb-contact-item strong {
    display: block;
    font-family: var(--gb-font-heading);
    font-weight: 700;
    /* Reduced from 0.85rem */
    font-size: 0.8rem;
    color: var(--gb-text-dark);
    margin-bottom: 2px;
}

.gb-contact-item p {
    /* Reduced from 0.9rem */
    font-size: 0.82rem;
    color: var(--gb-text-mid);
    margin-bottom: 0;
    line-height: 1.5;
}

.gb-contact-item a {
    color: var(--gb-orange);
    font-weight: 600;
}

.gb-contact-item a:hover {
    color: var(--gb-orange-dark);
}

/* Social Buttons in Contact */
.gb-contact-social {
    display: flex;
    gap: 12px;
}

.gb-social-btn {
    /* Reduced from 42px */
    width: 34px;
    height: 34px;
    background: var(--gb-orange-light);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gb-orange);
    /* Reduced from 1.1rem */
    font-size: 0.9rem;
    transition: var(--gb-transition);
}

.gb-social-btn:hover {
    background: var(--gb-orange);
    color: var(--gb-white);
    transform: translateY(-3px);
}

/* Map */
.gb-map-wrap {
    border-radius: var(--gb-radius-lg);
    overflow: hidden;
    box-shadow: var(--gb-shadow-md);
}

.gb-map-wrap iframe {
    display: block;
    border-radius: var(--gb-radius-lg);
}

/* ============================================================
   11. FAQ SECTION – ACCORDION
   ============================================================ */
.gb-section-faq {
    background: var(--gb-beige-mid);
}

.gb-accordion .accordion-item.gb-accordion-item {
    background: var(--gb-white);
    border: none;
    border-radius: var(--gb-radius-md) !important;
    /* Reduced from 14px */
    margin-bottom: 8px;
    box-shadow: var(--gb-shadow-sm);
    overflow: hidden;
}

.gb-accordion-btn {
    background: var(--gb-white);
    color: var(--gb-text-dark);
    font-family: var(--gb-font-heading);
    font-weight: 700;
    /* Reduced from 1rem */
    font-size: 0.92rem;
    /* Reduced from 20px 24px */
    padding: 13px 18px;
    border: none;
    display: flex;
    align-items: center;
    /* Reduced from 16px */
    gap: 12px;
    transition: var(--gb-transition);
}

.gb-accordion-btn:not(.collapsed) {
    background: var(--gb-orange-light);
    color: var(--gb-orange-dark);
    box-shadow: none;
}

.gb-accordion-btn:focus {
    box-shadow: none;
    outline: none;
}

.gb-accordion-btn::after {
    filter: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23f59c1a'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}

.gb-faq-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    /* Reduced from 34px */
    width: 28px;
    height: 28px;
    background: var(--gb-orange-light);
    color: var(--gb-orange);
    border-radius: 7px;
    font-size: 0.75rem;
    font-weight: 900;
    flex-shrink: 0;
    transition: var(--gb-transition);
}

.gb-accordion-btn:not(.collapsed) .gb-faq-num {
    background: var(--gb-orange);
    color: var(--gb-white);
}

.gb-accordion-body {
    /* Reduced from 0 24px 22px 74px */
    padding: 0 18px 14px 58px;
    font-size: 0.875rem;
    color: var(--gb-text-mid);
    line-height: 1.65;
}

/* ============================================================
   12. FOOTER
   ============================================================ */
.gb-footer {
    background: var(--gb-beige);
    padding: 16px 0;
    border-top: 2px solid var(--gb-beige-dark);
}

.gb-footer-inner {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 52px;
}

.gb-footer-logo {
    height: 44px;
    object-fit: contain;
    border-radius: 6px;
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}

.gb-footer-logo-text {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--gb-orange);
}

.gb-footer-tagline {
    font-size: 0.88rem;
    color: var(--gb-text-light);
    margin-bottom: 0;
}

.gb-header-jumps,
.gb-footer-jumps {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    pointer-events: none;
}

.gb-footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 6px 20px;
}

.gb-footer-links a {
    font-family: var(--gb-font-heading);
    font-weight: 600;
    font-size: 0.88rem;
    color: var(--gb-text-mid);
    transition: var(--gb-transition);
}

.gb-footer-links a:hover {
    color: var(--gb-orange);
}

.gb-footer-social {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
}

.gb-footer-social-btn {
    width: 40px;
    height: 40px;
    background: var(--gb-beige-mid);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gb-text-mid);
    font-size: 1rem;
    transition: var(--gb-transition);
}

.gb-footer-social-btn:hover {
    background: var(--gb-orange);
    color: var(--gb-white);
    transform: translateY(-3px);
}

.gb-footer-divider {
    border-color: var(--gb-beige-dark);
    margin: 30px 0 20px;
}

.gb-footer-copy {
    font-size: 0.82rem;
    color: var(--gb-text-light);
    margin: 0;
    text-align: center;
    line-height: 1.45;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: max-content;
    max-width: min(520px, 70%);
}

/* ============================================================
   12b. MEAL BROCHURE MODAL
   ============================================================ */
.gb-meal-modal {
    border-radius: 20px;
    border: none;
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.14);
}

.gb-meal-modal-title {
    font-family: var(--gb-font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--gb-text-dark);
}

.gb-meal-modal-sub {
    font-size: 0.88rem;
    color: var(--gb-text-mid);
    margin-bottom: 20px;
}

.gb-meal-field {
    display: flex;
    align-items: center;
    background: var(--gb-beige-mid);
    border: 1.5px solid var(--gb-beige-dark);
    border-radius: 50px;
    padding: 0 18px;
    margin-bottom: 12px;
    transition: var(--gb-transition);
}

.gb-meal-field:focus-within {
    border-color: var(--gb-orange);
    background: #fff;
}

.gb-meal-icon {
    color: var(--gb-orange);
    font-size: 0.95rem;
    margin-right: 12px;
    flex-shrink: 0;
}

.gb-meal-input {
    flex: 1;
    background: transparent;
    border: none;
    outline: none;
    color: var(--gb-text-dark);
    font-family: var(--gb-font-body);
    font-size: 0.9rem;
    padding: 12px 0;
    width: 100%;
}

.gb-meal-input::placeholder { color: var(--gb-text-light); }

.gb-meal-error {
    color: #e53e3e;
    font-size: 0.82rem;
    margin-bottom: 8px;
    padding-left: 4px;
}

/* ============================================================
   13. FLOATING WHATSAPP BUTTON
   ============================================================ */
.gb-whatsapp-float {
    position: fixed;
    bottom: 28px;
    right: 28px;
    width: 58px;
    height: 58px;
    background: #25D366;
    color: var(--gb-white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    box-shadow: 0 6px 24px rgba(37, 211, 102, 0.45);
    z-index: 999;
    transition: var(--gb-transition);
    animation: gb-bounce 2s infinite;
}

.gb-whatsapp-float:hover {
    background: #1da851;
    color: var(--gb-white);
    transform: scale(1.12);
    animation: none;
}

@keyframes gb-bounce {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}

/* ============================================================
   14. SCROLL TO TOP BUTTON
   ============================================================ */
.gb-scroll-top {
    position: fixed;
    bottom: 96px;
    right: 28px;
    width: 44px;
    height: 44px;
    background: var(--gb-orange);
    color: var(--gb-white);
    border: none;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    box-shadow: var(--gb-shadow-sm);
    z-index: 999;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--gb-transition);
}

.gb-scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.gb-scroll-top:hover {
    background: var(--gb-orange-dark);
    transform: translateY(-3px);
}

/* ============================================================
   15. FLOATING DECORATIONS SYSTEM - REDESIGNED WITH STRICT RULES
   ============================================================ */

/* Safe zone structure - content always above decorations */
.gb-section {
    position: relative;
    overflow: hidden;
}

.gb-section > .container {
    position: relative;
    z-index: 2;
}

/* Base floating decoration class - STRICT VISIBILITY RULES */
.gb-decoration {
    position: absolute;
    pointer-events: none;
    opacity: 0.9;
    z-index: 1;
    width: 100px;
    height: auto;
    will-change: transform;
    filter: drop-shadow(0 8px 15px rgba(0,0,0,0.08));
}

/* Floating animations - SLOW & SMOOTH */
@keyframes gb-float-1 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-15px) rotate(2deg); }
}

@keyframes gb-float-2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-12px) rotate(-2deg); }
}

@keyframes gb-float-3 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-18px) rotate(3deg); }
}

@keyframes gb-float-4 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-14px) rotate(-3deg); }
}

/* Apply animations with delays */
.gb-decoration.float-1 { animation: gb-float-1 8s ease-in-out infinite; animation-delay: 0s; }
.gb-decoration.float-2 { animation: gb-float-2 9s ease-in-out infinite; animation-delay: 1s; }
.gb-decoration.float-3 { animation: gb-float-3 10s ease-in-out infinite; animation-delay: 2s; }
.gb-decoration.float-4 { animation: gb-float-4 7s ease-in-out infinite; animation-delay: 1.5s; }

/* Decoration types - MINIMUM VISIBLE SIZES */
.gb-decoration.balloon { 
    width: 90px; 
    opacity: 0.92;
}

.gb-decoration.gift { 
    width: 100px; 
    opacity: 0.9;
}

.gb-decoration.candle { 
    width: 80px; 
    opacity: 0.88;
}

.gb-decoration.ribbon { 
    width: 110px; 
    opacity: 0.95;
    filter: drop-shadow(0 8px 20px rgba(255, 126, 179, 0.25)) brightness(1.1);
}

.gb-decoration.confetti { 
    width: 85px; 
    opacity: 0.85;
}

/* Section-specific safe zones */
.gb-section-intro,
.gb-section-features,
.gb-section-themes,
.gb-section-booking,
.gb-section-contact,
.gb-section-faq {
    position: relative;
    overflow: hidden;
}


/* ============================================================
   16. ANIMATIONS & UTILITY
   ============================================================ */

/* Fade-in on scroll */
.gb-fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* Stagger delay helpers */
.gb-delay-1 { transition-delay: 0.1s; }
.gb-delay-2 { transition-delay: 0.2s; }
.gb-delay-3 { transition-delay: 0.3s; }
.gb-delay-4 { transition-delay: 0.4s; }

/* ============================================================
   16. RESPONSIVE BREAKPOINTS
   ============================================================ */

/* Tablet */
@media (max-width: 991px) {
    .gb-footer-inner {
        flex-direction: column;
        align-items: center;
        gap: 10px;
        min-height: 0;
    }

    .gb-footer-copy {
        position: static;
        transform: none;
        max-width: 100%;
    }

    .gb-section {
        padding: 70px 0;
    }

    .gb-float-badge {
        right: 10px;
        bottom: 16px;
    }

    .gb-themes-content {
        padding: 36px 28px;
    }

    .gb-booking-form {
        padding: 36px 28px;
    }

    .gb-footer-social {
        justify-content: center;
    }

    /* Adjust wave height on tablet */
    .gb-wave-divider {
        height: 140px;
    }

    .gb-wave-divider svg {
        height: 140px;
    }
}

/* Mobile */
@media (max-width: 767px) {
    .gb-section {
        padding: 56px 0;
    }

    /* Give containers extra horizontal breathing room on mobile */
    .gb-section > .container,
    .gb-section-booking-faq > .container,
    .gb-section-themes > .container,
    .gb-section-contact > .container {
        padding-left: 20px;
        padding-right: 20px;
    }

    .gb-hero-content {
        padding: 100px 0 60px;
    }

    .gb-hero-trust {
        gap: 16px;
    }

    .gb-hero-trust span {
        font-size: 0.78rem;
    }

    /* Adjust wave height on mobile */
    .gb-wave-divider {
        height: 100px;
    }

    .gb-wave-divider svg {
        height: 100px;
    }

    .gb-float-badge {
        position: relative;
        right: auto;
        bottom: auto;
        display: inline-flex;
        gap: 8px;
        align-items: center;
        margin-top: 16px;
        padding: 10px 18px;
    }

    .gb-float-badge-num {
        font-size: 1.3rem;
    }

    .gb-intro-content {
        padding-left: 0;
    }

    .gb-themes-content {
        padding: 28px 22px;
    }

    .gb-booking-form {
        padding: 28px 20px;
    }

    .gb-accordion-body {
        padding-left: 24px;
    }

    .gb-contact-card {
        padding: 28px 22px;
    }

    .gb-whatsapp-float {
        bottom: 20px;
        right: 20px;
        width: 52px;
        height: 52px;
        font-size: 1.4rem;
    }

    .gb-scroll-top {
        bottom: 82px;
        right: 20px;
    }
}

/* ============================================================
   RESPONSIVE DECORATIONS — MOBILE SAFE RULES
   Desktop: fully visible | Tablet: reduced | Mobile: hidden or edge-only
   ============================================================ */

/* ── TABLET (768px – 991px) ──
   Reduce size, keep only corner decorations (float-1 & float-3),
   hide middle decorations (float-2 & float-4) that sit near content */
@media (max-width: 991px) and (min-width: 768px) {

    .gb-decoration {
        width: 60px !important;
        opacity: 0.75;
    }

    /* Hide inner decorations that are mid-section and risk overlapping stacked content */
    .gb-decoration.float-2,
    .gb-decoration.float-4 {
        display: none;
    }

    /* Keep corner decorations small */
    .gb-decoration.float-1,
    .gb-decoration.float-3 {
        width: 55px !important;
    }
}

/* ── MOBILE (≤ 767px) ──
   Hide ALL decorations inside section content areas.
   Only keep ONE small decoration per section, pinned to a far corner
   away from text and cards. */
@media (max-width: 767px) {

    /* Hide ALL decorations by default on mobile */
    .gb-decoration {
        display: none !important;
    }

    /* All decorations hidden — none selectively re-shown.
       Rationale: on narrow screens even corner % positions
       (e.g. right: 2%) end up over stacked content. Hiding all
       is the only way to guarantee zero overlap. */
}

/* ── SMALL MOBILE (≤ 480px) ── */
@media (max-width: 480px) {

    .gb-hero-heading {
        font-size: 1.8rem;
    }

    .gb-section-heading {
        font-size: 1.5rem;
    }

    .gb-hero-cta {
        padding: 13px 32px;
        font-size: 0.95rem;
    }

    /* Hide ALL decorations completely on small screens */
    .gb-decoration {
        display: none !important;
    }
}

/* ── ENSURE SECTIONS ALWAYS CLIP DECORATIONS ── */
.gb-section,
.gb-section-intro,
.gb-section-packages,
.gb-section-themes,
.gb-section-booking-faq,
.gb-section-contact,
.gb-section-faq {
    position: relative;
    overflow: hidden;
}

/* ── ENSURE CONTAINERS ALWAYS ABOVE DECORATIONS ── */
.gb-section > .container,
.gb-section-intro > .container,
.gb-section-packages > .gb-pkg-inner,
.gb-section-themes > .container,
.gb-section-booking-faq > .container,
.gb-section-contact > .container {
    position: relative;
    z-index: 2;
}
