/* -----------------------------------------
   JASE CENTER — Whimsical Kid-Friendly Theme
   Brand Colors Included
----------------------------------------- */

:root {
    --jase-blue: #00709f;
    --jase-yellow: #ffcd00;
    --jase-orange: #ee6b2b;
    --jase-green: #8eba3a;
    --jase-teal: #52BAD5;
    --jase-teal-dark: #2D9AB7;
    --jase-purple: #684077;
    --jase-pink: #f266ab;

    --bg-soft: #f7f9fb;
    --text-dark: #1f2933;
    --text-light: #6b7280;
}

body {
    font-family: "Poppins", sans-serif;
    background: var(--bg-soft);
    color: var(--text-dark);
    overflow-x: hidden;
}

/* -----------------------------------------
   NAVIGATION
----------------------------------------- */

.navbar {
    background: rgba(255,205,0,1.0);
    border-bottom: 3px solid rgba(0,112,159,0.1);
}

.nav-link {
    font-weight: 500;
    margin-right: 0.5rem;
    font-size: 1rem;
}

.nav-link:hover {
    color: var(--jase-blue);
}

.btn-nav-cta {
    background: var(--jase-orange);
    color: #fff !important;
    border-radius: 50px;
    padding: 0.45rem 1.1rem;
    font-weight: 600;
    transition: 0.25s ease;
}

.btn-nav-cta:hover {
    background: #d8571e;
}

/* NAVBAR BRAND UPGRADE */
.navbar-brand {
    display: flex;
    align-items: center;
    padding-bottom: 0 !important;
}


.jase-robot-nav {
    height: 200px;  /* small + clean */
    width: auto;
    margin-bottom: 3px;
}
/*
.jase-tagline {
    font-size: 0.7rem;
    font-weight: 600;
    color: #00709f; /* JASE blue 
    line-height: 1.1;
    white-space: nowrap;
}*/

/* MOBILE 
@media (max-width: 767px) {
    .navbar-brand {
        flex-direction: column;
        text-align: center;
    }
    .jase-robot-nav {
        height: 200px;
        margin: 3px 0;
        width: auto;
    }
    .jase-tagline {
        white-space: normal;
        max-width: 150px;
        font-size: 0.65rem;
    }
}*/
/* TAGLINE UNDER LOGO */
.jase-tagline-animated {
    font-size: 0.8rem;
    font-weight: 600;
    color: #00709f;
    margin-top: 0 !important; /* remove space */
    letter-spacing: 0.3px;
    text-align: left;
    padding: 0 !important;
    line-height: 1.1;
    /* animation */
    opacity: 0;
    transform: translateY(10px);
    animation: taglineFadeUp 1.2s ease-out forwards;
    animation-delay: 0.4s;
}
.brand-stack {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;

    margin: 0 !important;
    padding: 0 !important;
}
/* Remove spacing below logo */
.main-logo {
    display: block !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 0 !important;
}

/* Fade + slide up */
@keyframes taglineFadeUp {
    0% {
        opacity: 0;
        transform: translateY(12px);
    }
    60% {
        opacity: 1;
        transform: translateY(0);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {

    /* Make the navbar-brand stack and center EVERYTHING */
   .navbar-brand {
        width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        text-align: center !important;
        padding: 0 !important;
        margin: 0 auto !important;
    }

    /* Center the logo */
    .navbar-brand .main-logo {
        display: block !important;
        margin-left: auto !important;
        margin-right: auto !important;
        height: 75px !important;
        width: auto !important;
         padding: 0 !important;
    }

    /* Center the tagline fully */
    .jase-tagline-animated {
        display: block !important;
        text-align: center !important;
        width: 100% !important;
        margin: 2px auto 0 auto !important;
        padding: 0 !important;
        line-height: 1.2;
    }

}


/* -----------------------------------------
   HERO SECTION
----------------------------------------- */

.hero-section {
    position: relative;
    padding: 4rem 0 4rem;
    background: radial-gradient(circle at top left,
        #fff7d1,
        #fdf4ff 45%,
        #f7f9fb 80%
    );
    overflow: hidden;
}

/* Floating soft bubbles */
.hero-section::before,
.hero-section::after {
    content: "";
    position: absolute;
    width: 180px;
    height: 180px;
    border-radius: 50%;
    background: rgba(82,186,213,0.25);
    animation: float 8s ease-in-out infinite;
}

.hero-section::before {
    top: 30px;
    right: 10%;
}

.hero-section::after {
    bottom: 20px;
    left: 5%;
    background: rgba(255,205,0,0.3);
    animation-duration: 10s;
}

@keyframes float {
    0% { transform: translateY(0px) }
    50% { transform: translateY(-25px) }
    100% { transform: translateY(0px) }
}

/* HERO CONTENT */
.hero-badge {
    display: inline-block;
    background: rgba(0,112,159,0.09);
    color: var(--jase-blue);
    padding: 0.35rem 1rem;
    font-size: .75rem;
    border-radius: 20px;
    font-weight: 600;
    margin-bottom: .5rem;
}

.hero-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 800;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-title .highlight {
    color: var(--jase-blue);
}

.hero-subtitle {
    color: var(--text-light);
    font-size: 1.05rem;
}

.hero-list {
    list-style: none;
    padding-left: 0;
    margin: 1rem 0;
}

.hero-list li {
    display: flex;
    align-items: flex-start;
    gap: .6rem;
    margin-bottom: .5rem;
    font-size: 1rem;
}

.hero-list .icon {
    background: var(--jase-teal);
    color: #fff;
    width: 28px;
    height: 28px;
    border-radius: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-actions .btn {
    border-radius: 40px;
    padding: .9rem 1.5rem;
    font-size: 1rem;
    font-weight: 600;
}

.btn-hero-primary {
    background: var(--jase-blue);
    color: #fff;
    border: none;
    transition: 0.25s ease;
}

.btn-hero-primary:hover {
    background: var(--jase-teal-dark);
}

.btn-hero-secondary {
    background: #fff;
    border: 2px solid rgba(0,0,0,0.1);
}

.btn-hero-secondary:hover {
    background: #f3f4f6;
}

/* Hero Card */
.hero-visual-card {
    background: #fff;
    border-radius: 25px;
    padding: 1.8rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.08);
    position: relative;
}
.hero-pill {
            display: inline-flex;
            align-items: center;
            gap: 0.35rem;
            padding: 0.2rem 0.7rem;
            font-size: 0.75rem;
            border-radius: 999px;
            background: rgba(242,102,171,0.08);
            color: var(--jase-pink);
            font-weight: 600;
}
/* HERO METRICS */
.hero-metrics {
    margin-top: 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.hero-metric .value {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jase-purple);
}
 .hero-metric {
            flex: 1 1 100px;
        }

.hero-metric .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.hero-pill-strip span {
    display: inline-block;
    padding: .3rem .8rem;
    color: #555;
    background: #f1f1f1;
    border-radius: 20px;
    font-size: .8rem;
    margin-right: 0.3rem;
    margin-top: 0.3rem;
}


/* PARTY PAGE HERO */
.party-hero {
    position: relative;
    width: 100%;
    height: 60vh !important;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.party-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;              /* responsive*/
    z-index: 1;
    object-position: center;
    opacity: 2;                     /* start hidden */
    animation: bgFadeIn 1.6s ease-out forwards;
    animation-delay: 0.2s;
    z-index: 1;
}

/* Soft overlay for text readability */
.party-hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
   background: linear-gradient(
        rgba(0,112,159,0.35),
        rgba(0,112,159,0.35)
    ) !important;
    z-index: 2;
}

.party-hero-content {
    position: relative;
    z-index: 3;
    color: #fff;
    padding: 20px;
    text-align: center;
}

/* Title + subtitle */
.party-hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin: 0;
}

.party-hero-subtitle {
    font-size: 1.3rem;
    font-weight: 500;
    margin-top: 10px;
}

/* Fade-in animation */
@keyframes heroFadeIn {
    0% { opacity: 0; transform: scale(1.05); }
    100% { opacity: 1; transform: scale(1); }
}
/* MOBILE RESPONSIVE */
@media (max-width: 768px) {
   
    .party-hero {
        height: 42vh !important;              /* smaller, fits the screen */
        background-size: cover !important;
        background-position: top center !important;  /* prevents image from cutting */
        background-repeat: no-repeat !important;
        background-attachment: scroll !important;    /* iPhone fix */
    }
    
      .party-hero-bg {
        object-position: center top;   /* prevents cropping */
    }
 .party-hero-title {
       font-size: 1.9rem;
        line-height: 1.2;
    }

    .party-hero-subtitle {
        font-size: 1rem;
        line-height: 1.2;
    }
}

/* iPhone Safari background bug fix */
@supports (-webkit-touch-callout: none) {
    .party-hero-bg {
        object-fit: cover !important;
        width: 100vw !important;
        height: 100% !important;
    }
}
/* -----------------------------------------
   PROGRAM CARDS
----------------------------------------- */

.programs-section {
    padding: 4rem 0;
}

.program-card {
    background: #fff;
    border-radius: 25px;
    padding: 2.2rem;
    border: 1px solid rgba(0,0,0,0.05);
    transition: .3s ease;
    box-shadow: 0 8px 22px rgba(0,0,0,0.05);
    height: 100%;
    overflow: hidden;
}

.program-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 32px rgba(0,0,0,0.08);
    border-color: rgba(0,112,159,0.18);
}

.program-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
}

.program-title {
    margin-top: 0.7rem;
    font-size: 1.2rem;
    font-weight: 700;
}
.program-card img {
  width: 100%;
  /*height: 220px;*/
  object-fit: cover;
  border-bottom: 1px solid #f266ab;
  margin-bottom: 5px;
}
/* -----------------------------------------
   WHY JASE SECTION
----------------------------------------- */

.why-section {
    padding: 4rem 0;
    background: #fff;
}

.why-list li {
    font-size: 1rem;
    margin-bottom: .6rem;
}

.why-card {
    background: linear-gradient(135deg, var(--jase-blue), var(--jase-teal-dark));
    color: #fff;
    border-radius: 25px;
    padding: 2rem;
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.why-avatar {
    margin-top: 1rem;
    display: flex;
    gap: .7rem;
    align-items: center;
}

.why-avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255,255,255,0.3);
    display: flex;
    justify-content: center;
    align-items: center;
}

/* -----------------------------------------
   CTA SECTION
----------------------------------------- */

.cta-section {
    padding: 4rem 0;
}

.cta-card {
    background: linear-gradient(135deg, var(--jase-yellow), var(--jase-pink));
    border-radius: 30px;
    padding: 2.5rem;
    color: #111;
    text-align: center;
    position: relative;
}

.cta-card .btn {
    border-radius: 50px;
}

/* -----------------------------------------
   FOOTER
----------------------------------------- */

footer {
    background: #fff;
}

.footer-links a {
    color: var(--text-light);
    margin: 0 0.4rem;
    text-decoration: none;
}

.footer-links a:hover {
    color: var(--jase-blue);
}


/* Circle check icons for party list */
.party-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.party-list li {
    position: relative;
    padding-left: 30px;
    margin-bottom: 10px;
    font-size: 1rem;
}

/* Circle check icon */
.party-list li::before {
    content: "\f058"; /* Font Awesome circle-check */
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    color: #8eba3a; /* JASE green */
    position: absolute;
    left: 0;
    top: 1px;
    font-size: 1.25rem;
}


.price-tag {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--jase-blue);
}

.addon-card {
    background:#fff;
    border-radius:20px;
    padding:1.5rem;
    border:1px solid rgba(0,0,0,0.06);
    box-shadow:0 8px 20px rgba(0,0,0,0.06);
}

.addon-icon {
    font-size:2rem;
}

.addon-price {
    font-size:1.2rem;
    font-weight:700;
    color:var(--jase-orange);
}

/* Calendar */
.calendar-box {
    max-width:600px;
    background:#fff;
    border-radius:20px;
    padding:1rem;
    box-shadow:0 10px 28px rgba(0,0,0,0.05);
}

.calendar-header {
    font-weight:600;
    margin-bottom:1rem;
    color:var(--jase-blue);
}
/*
.calendar-grid {
  .calendar-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    margin-top: 15px;
}

.day {
    background:#f3f4f6;
    border-radius:10px;
    padding:.6rem;
    text-align:center;
    font-weight:600;
    color:#374151;
}

.day.booked {
    background:#fcd7d7;
    color:#b91c1c;
}
.calendar-grid .day.selected {
    background: #ffcd00 !important;
    border-color: #e2b800 !important;
    color: #4b3f00 !important;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(255,205,0,0.4) !important;
    transform: translateY(-3px);
}*/
.testimonial-cards {
    display:flex;
    gap:1rem;
    justify-content:center;
    flex-wrap:wrap;
}

.testimonial-card {
    max-width:280px;
    background:#fff;
    padding:1.3rem;
    border-radius:20px;
    box-shadow:0 10px 30px rgba(0,0,0,0.06);
    text-align:center;
}

.testimonial-card .author {
    display:block;
    margin-top:.5rem;
    font-weight:600;
    color:var(--jase-blue);
}

/* ======================================
   GOOGLE REVIEWS
====================================== */

.review-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.3rem;
    padding: 0 1rem;
}

.review-card {
    background: #ffffff;
    border-radius: 22px;
    padding: 1.5rem;
    box-shadow: 0 12px 30px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,112,159,0.08);
    transition: all .3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(0,0,0,0.12);
}

.stars i {
    color: #ffcd00;
    font-size: 1.1rem;
}

.review-text {
    font-size: .97rem;
    color: #4b5563;
    line-height: 1.4;
    min-height: 60px;
}

.review-author {
    display: flex;
    align-items: center;
    gap: .8rem;
}

.avatar-circle {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--jase-teal);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-weight: 700;
    font-size: 1.1rem;
}

.author-name {
    font-weight: 600;
    font-size: .95rem;
    color: var(--jase-blue);
}

.review-time {
    font-size: .8rem;
    color: #6b7280;
}

/* Background bubbles */
#google-reviews {
    position: relative;
}

#google-reviews::before,
#google-reviews::after {
    content: "";
    position: absolute;
    width: 140px;
    height: 140px;
    background: rgba(82,186,213,0.18);
    border-radius: 50%;
    z-index: -1;
    animation: float 8s ease-in-out infinite;
}

#google-reviews::before {
    top: -30px;
    left: -10px;
}

#google-reviews::after {
    bottom: -40px;
    right: -10px;
    background: rgba(242,102,171,0.2);
    animation-duration: 10s;
}

/* -----------------------------------------
   REVIEW CAROUSEL STYLING
----------------------------------------- */

#reviewCarousel .carousel-item {
    padding: 1.5rem 0;
    transition: transform .6s ease-in-out;
}

.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: var(--jase-teal);
}

.carousel-indicators .active {
    background-color: var(--jase-pink);
    transform: scale(1.2);
}

.carousel-control-next-icon,
.carousel-control-prev-icon {
    filter: invert(50%) sepia(60%) saturate(300%) hue-rotate(180deg);
}

.review-card {
    border-radius: 22px;
    padding: 1.5rem;
    background: #ffffff;
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
    border: 1px solid rgba(0,112,159,0.08);
}

.review-card:hover {
    transform: scale(1.02);
    transition: .3s ease;
}

.review-text {
    font-size: 1rem;
    line-height: 1.4;
    color: #4b5563;
}

.stars i {
    color: #ffcd00;
    font-size: 1.2rem;
}

.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--jase-teal);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.author-name {
    font-size: 1rem;
    color: var(--jase-blue);
    font-weight: 600;
}

.review-time {
    font-size: .8rem;
    color: #6b7280;
}

/* MULTI-CARD CAROUSEL UPGRADE */

#reviewCarousel .carousel-item {
    transition: transform 0.7s ease, opacity 0.7s ease;
}

.carousel-inner {
    padding-bottom: 2rem;
}

.upgraded-card {
    transition: transform .4s ease, box-shadow .4s ease;
}

.carousel-item.active .upgraded-card:hover {
    transform: scale(1.05);
}

/* INDICATORS */
.carousel-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--jase-teal);
    margin: 0 4px;
    opacity: .6;
}

.carousel-indicators .active {
    background: var(--jase-pink);
    opacity: 1;
    transform: scale(1.2);
}

/* CONTROL COLORS */
.carousel-control-prev-icon,
.carousel-control-next-icon {
    filter: invert(80%) sepia(20%) saturate(500%) hue-rotate(180deg);
}

/* FANCY SCALE ACTIVE CARD EFFECT */
.carousel-item.active .upgraded-card {
    transform: scale(1);
}
.carousel-item.active .upgraded-card:hover {
    transform: scale(1.05);
}

.review-card {
    border-radius: 22px;
    background: #fff;
    padding: 1.3rem;
    border: 1px solid rgba(0,112,159,0.08);
    box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

/* Stars */
.stars i {
    color: #ffcd00;
    font-size: 1.2rem;
}

/* Avatar */
.avatar-circle {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--jase-teal);
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    font-weight: 700;
}

/* Review Text */
.review-text {
    min-height: 70px;
}
/* ================================
   PREMIUM REVIEW CAROUSEL UPGRADE
================================ */

/* Parallax background with floating glow */
.premium-reviews {
    position: relative;
    overflow: hidden;
}

.premium-reviews::before,
.premium-reviews::after {
    content: "";
    position: absolute;
    width: 220px;
    height: 220px;
    background: rgba(82,186,213,0.25);
    border-radius: 50%;
    filter: blur(50px);
    animation: float 12s ease-in-out infinite;
    z-index: -1;
}

.premium-reviews::before { top: -60px; left: -40px; }
.premium-reviews::after  { bottom: -60px; right: -40px; background: rgba(242,102,171,0.25); }

/* GOOGLE RATING BADGE */
.google-rating-badge {
    display: flex;
    align-items: center;
    gap: .8rem;
    background: #fff;
    padding: .6rem 1rem;
    border-radius: 50px;
    box-shadow: 0 6px 20px rgba(0,0,0,0.08);
    border: 1px solid #e5e5e5;
    width: fit-content;
}

.google-rating-badge .google-logo {
    height: 26px;
}

.google-rating-badge .rating-text {
    font-weight: 600;
}

.google-rating-badge .stars {
    color: #ffcd00;
    font-size: 1.2rem;
}

.google-rating-badge .score {
    color: var(--jase-blue);
    font-size: 1.1rem;
    margin-left: .4rem;
}

/* PREMIUM REVIEW CARD */
.premium-review-card {
    position: relative;
    background: white;
    border-radius: 22px;
    padding: 1.6rem;
    box-shadow: 0 12px 35px rgba(0,0,0,0.08);
    transition: transform .4s ease, box-shadow .4s ease;
    overflow: hidden;
    height:100%;
}

/* Bubbles inside card */
.premium-review-card .bubble {
    position: absolute;
    width: 80px;
    height: 80px;
    background: rgba(82,186,213,0.15);
    border-radius: 50%;
    z-index: -1;
}

.premium-review-card .b1 { top: -20px; right: -20px; }
.premium-review-card .b2 { bottom: -20px; left: -20px; background: rgba(242,102,171,0.15); }

.premium-review-card:hover {
    transform: translateY(-6px) scale(1.04);
    box-shadow: 0 16px 45px rgba(0,0,0,0.12);
    
}

/* Stars */
.star-gold {
    color: #ffcd00;
    font-size: 1.25rem;
}

/* Multi-card fade effect */
.premium-inner .carousel-item {
    transition: opacity .8s ease-in-out;
}

/* Indicators */
.premium-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--jase-teal);
    opacity: .4;
}

.premium-indicators .active {
    background: var(--jase-pink);
    opacity: 1;
    transform: scale(1.3);
}

/* Arrow Controls */
.premium-control .carousel-control-next-icon,
.premium-control .carousel-control-prev-icon {
    filter: invert(80%) sepia(30%) saturate(300%) hue-rotate(180deg);
}
.google-badge {
    display: flex;
    align-items: center;
    gap: 10px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 40px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.06);
    width: fit-content;
    border: 1px solid #e7e7e7;
    position: relative;
    line-height: 1;
}

.google-badge-logo {
    height: 22px;
    object-fit: contain;
    margin-right: 4px;
}

.google-badge .stars {
    color: #ffcd00;
    font-size: 1rem;
}

.google-badge .score {
    color: #2D9AB7;
    font-weight: 700;
    font-size: 1.1rem;
    margin-left: 4px;
}

.google-badge .small {
    position: absolute;
    bottom: -18px;
    left: 50%;
    font-size: 0.72rem;
    transform: translateX(-50%);
    color: #666;
    white-space: nowrap;
}

.carousel-indicators button {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: var(--jase-orange);
    opacity: .5;
    margin: 0 6px;
    border: none;
    transition: .3s;
}

.carousel-indicators .active {
    background: var(--jase-green);
    opacity: 1;
    transform: scale(1.4);
}
/* PINK DOTS / GREEN ACTIVE */
.premium-indicators button {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #f266ab !important; /* pink */
    opacity: .5;
    margin: 0 6px;
    border: none;
    transition: .3s ease;
}

.premium-indicators .active {
    background: #8eba3a !important; /* green */
    opacity: 1;
    transform: scale(1.4);
}
/* Uniform Image Card Gallery */
.party-gallery .gallery-card {
    width: 100%;
    height: 120px;              /* adjust height as needed */
    overflow: hidden;
    border-radius: 10px;
    box-shadow: 0 8px 20px rgba(0,0,0,0.08);
}

.party-gallery .gallery-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;          /* key for uniform size */
    object-position: center;    /* keeps focus centered */
    display: block;
}

/* Larger height on desktop for better layout */
@media (min-width: 768px) {
    .party-gallery .gallery-card {
        height: 150px;          /* adjust desktop height */
    }
}


/* Soft page background */
.party-page {
    background: #f7fafc;
    position: relative;
    overflow: hidden;
}

/* Floating background shapes */
.party-page::before,
.party-page::after {
    content: "";
    position: absolute;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    filter: blur(50px);
    z-index: 0;
}

.party-page::before {
    top: -40px;
    left: -40px;
    background: rgba(82,186,213,0.25); /* teal */
}

.party-page::after {
    bottom: -60px;
    right: -60px;
    background: rgba(242,102,171,0.25); /* pink */
}

/* ================================
   SLIM HERO HEADER (Option B)
================================ */

.party-hero-slim {
    background: linear-gradient(90deg, #00709f, #52BAD5);
    color: #fff;
    padding: 45px 0;
    text-align: center;
    border-bottom-left-radius: 32px;
    border-bottom-right-radius: 32px;
    box-shadow: 0 12px 25px rgba(0,0,0,0.08);
    z-index: 2;
    position: relative;
}

.party-hero-slim h1 {
    font-size: 2.4rem;
    font-weight: 900;
    letter-spacing: -0.03em;
}

.party-hero-slim p {
    font-size: 1.1rem;
    font-weight: 500;
    opacity: 0.95;
}

/* ================================
   CARD SHELL
================================ */

.party-booking-card {
    max-width: 850px;
    margin: 50px auto;
    background: #ffffff;
    border-radius: 30px;
    padding: 42px 36px;
    box-shadow: 0 25px 50px rgba(0,0,0,0.07);
    position: relative;
    z-index: 3;
    animation: fadeUp 0.7s ease-out;
}

/* Card entrance animation */
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

.party-booking-card h2 {
    font-size: 1.9rem;
    font-weight: 800;
    color: #00709f;
}

/* ================================
   PROGRESS TRACKER
================================ */

.progress {
    display: flex;
    justify-content: space-between;
    padding: 14px 20px;
    background: #f0f9ff;
    border-radius: 999px;
    margin-bottom: 35px;
}

.step {
    width: 33%;
    text-align: center;
    color: #6c7a87;
    font-weight: 600;
    font-size: 0.95rem;
    position: relative;
}

.step:before {
    content: counter(step);
    counter-increment: step;
    width: 38px;
    height: 38px;
    line-height: 38px;
    border-radius: 50%;
    border: 3px solid #cceaf4;
    display: block;
    margin: 0 auto 6px;
    background: #ffffff;
    font-weight: 700;
    color: #00709f;
}

.step.active:before {
    border-color: #ffcd00;
    background: #fff6d6;
}

.step.completed:before {
    border-color: #8eba3a;
    background: #ecf8dd;
}

/* ================================
   INPUTS & LABELS
================================ */

label {
    font-weight: 700;
    margin-top: 18px;
    font-size: 0.95rem;
    color: #374151;
}

input, select, textarea {
    padding: 12px 14px;
    border-radius: 12px;
    border: 2px solid #cfe7ef;
    font-size: 1rem;
    background: #fdfefe;
    transition: 0.25s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #52BAD5;
    box-shadow: 0 0 0 3px rgba(82,186,213,0.25);
    outline: none;
}

/* ================================
   PACKAGE OPTION CARDS
================================ */

.package-option {
    border-radius: 18px;
    padding: 18px 20px;
    border: 2px solid #dcedf3;
    background: #ffffff;
    transition: 0.25s ease;
    box-shadow: 0 8px 16px rgba(0,0,0,0.04);
}

.package-option:hover {
    border-color: #00709f;
    transform: translateY(-3px);
    box-shadow: 0 12px 28px rgba(0,0,0,0.06);
}

.package-option strong {
    font-size: 1.1rem;
    font-weight: 800;
    color: #00709f;
}

.package-option input[type=radio]:checked + span {
    background: rgba(0,112,159,0.06);
    border-left: 5px solid #00709f;
}

/* ================================
   BUTTONS
================================ */

button,
.btn-modern {
    background: #ee6b2b;
    border: none;
    padding: 12px 22px;
    font-size: 1.1rem;
    font-weight: 700;
    color: white;
    border-radius: 12px;
    transition: 0.25s ease;
    width: auto;
}

button:hover,
.btn-modern:hover {
    background: #00709f;
    transform: translateY(-2px);
}

/* Back button */
button[name=previous] {
    background: #6c757d;
}

button[name=previous]:hover {
    background: #5a6268;
}

/* ================================
   CONFIRMATION TABLE
================================ */

.review-table td {
    padding: 10px 4px;
    font-size: 1rem;
}

.review-table .label {
    font-weight: 800;
    color: #374151;
}

/* ================================
   STRIPE CARD ELEMENT
================================ */

#card-element {
    background: #ffffff;
    border-radius: 14px;
    border: 2px solid #cfe7ef;
    padding: 14px;
    margin-top: 10px;
}

#payment-message {
    margin-top: 20px;
}

/* ================================
   MOBILE OPTIMIZATION
================================ */

@media (max-width: 768px) {
    .party-booking-card {
        padding: 26px 20px;
        border-radius: 24px;
    }

    .party-hero-slim h1 {
        font-size: 1.9rem;
    }

    .step {
        font-size: 0.8rem;
    }
}

