/* ==========================================================================
   Baby World — homepage business-line sections (2026-07)
   Shares the design language of the ticket / food / shop pages: gradient
   icon chips, soft white cards, square imagery, one accent gradient.
   Also slims the legacy CMS sections, which used very tall paddings.
   ========================================================================== */

:root {
    --hm-grad: linear-gradient(150deg, var(--primary-color), #7b2ff7);
    --hm-soft: #faf7fb;
}

/* ---------- slim down the legacy sections ---------- */
.section-gap {
    padding-top: 62px;
    padding-bottom: 62px;
}

.section-head {
    margin-bottom: 34px;
}

.section-head-title {
    font-size: 36px;
    line-height: 1.22;
}

.section-head-text {
    font-size: 15.5px;
    max-width: 620px;
    margin-inline: auto;
}

/* ---------- shared bits ---------- */
.hm-section {
    padding: 62px 0;
}

.hm-section-soft {
    background: var(--hm-soft);
}

.hm-head {
    text-align: center;
    max-width: 660px;
    margin: 0 auto 36px;
}

.hm-eyebrow {
    display: inline-block;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--primary-color);
    margin-bottom: 8px;
}

.hm-eyebrow-light {
    color: rgba(255, 255, 255, .85);
}

.hm-head h2 {
    font-size: 34px;
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 10px;
}

.hm-head p {
    color: #6c757d;
    font-size: 15.5px;
    margin: 0;
}

.hm-chips {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.hm-chip {
    background: #fff;
    border: 1.5px solid var(--primary-color);
    border-radius: 22px;
    padding: 7px 16px;
    font-size: 14px;
    font-weight: 600;
    color: var(--secondary-color);
}

.hm-chip b {
    color: var(--primary-color);
}

.hm-chip i,
.hm-btn i,
.hm-link i,
.hm-pkg-meta i,
.hm-branch-body i {
    display: inline-flex;
    vertical-align: -2px;
    line-height: 1;
}

.hm-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    width: 100%;
    border: none;
    background: var(--hm-grad);
    color: #fff;
    border-radius: 12px;
    padding: 11px 16px;
    font-weight: 700;
    font-size: 14.5px;
    box-shadow: 0 5px 14px rgba(245, 68, 128, .25);
    transition: all .15s ease;
}

.hm-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 9px 20px rgba(245, 68, 128, .35);
    color: #fff;
}

.hm-btn-light {
    width: auto;
    display: inline-flex;
    background: #fff;
    color: var(--primary-color);
    box-shadow: 0 6px 16px rgba(0, 0, 0, .18);
}

.hm-btn-light:hover {
    color: var(--primary-color);
}

.hm-link {
    font-weight: 700;
    font-size: 14.5px;
    color: var(--primary-color);
    white-space: nowrap;
}

.hm-more {
    text-align: center;
    margin-top: 30px;
}

.hm-more a {
    font-weight: 700;
    color: var(--primary-color);
    border-bottom: 2px solid rgba(245, 68, 128, .3);
    padding-bottom: 3px;
}

/* ---------- 1. business lines strip ---------- */
.hm-lines-wrap {
    padding: 34px 0 6px;
}

.hm-lines {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

.hm-line {
    background: #fff;
    border: 2px solid #eef0f3;
    border-radius: 16px;
    padding: 20px 18px 18px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    transition: all .17s ease;
}

.hm-line:hover {
    border-color: transparent;
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .1);
}

.hm-line-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: var(--hm-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 16px rgba(245, 68, 128, .28);
    margin-bottom: 6px;
}

.hm-line-icon i {
    color: #fff;
    font-size: 24px;
    line-height: 1;
    display: inline-flex;
}

.hm-line-title {
    font-weight: 800;
    font-size: 16.5px;
    color: var(--secondary-color);
}

.hm-line-sub {
    font-size: 13px;
    color: #8a929a;
    font-weight: 500;
}

/* ---------- 2. day package cards ---------- */
.hm-pkg-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 22px;
    max-width: 900px;
    margin: 0 auto;
}

.hm-pkg {
    position: relative;
    background: #fff;
    border-radius: 18px;
    padding: 18px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, .07);
    text-align: center;
    display: flex;
    flex-direction: column;
    transition: all .18s ease;
}

.hm-pkg:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 32px rgba(0, 0, 0, .12);
}

.hm-pkg-featured {
    border: 2px solid var(--primary-color);
}

.hm-pkg-tag {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hm-grad);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 4px 14px;
    border-radius: 12px;
    white-space: nowrap;
}

.hm-pkg-img {
    aspect-ratio: 1 / 1;
    border-radius: 14px;
    overflow: hidden;
    background: #f4f6f8;
    margin-bottom: 14px;
}

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

.hm-pkg h6 {
    font-weight: 800;
    font-size: 16px;
    line-height: 1.3;
    margin-bottom: 8px;
    min-height: 42px;
}

.hm-pkg-meta {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 6px;
    margin-bottom: 10px;
    min-height: 22px;
}

.hm-pkg-meta span {
    background: #f1f3f5;
    border-radius: 12px;
    padding: 2px 10px;
    font-size: 12px;
    font-weight: 600;
    color: #495057;
}

.hm-pkg-price {
    font-size: 27px;
    font-weight: 800;
    color: var(--primary-color);
    margin-top: auto;
    margin-bottom: 12px;
}

/* ---------- 3. how it works ---------- */
.hm-steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 18px;
    max-width: 1000px;
    margin: 0 auto;
}

.hm-step {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: #fff;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
}

.hm-step-icon {
    width: 52px;
    height: 52px;
    flex-shrink: 0;
    border-radius: 15px;
    background: var(--hm-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 6px 14px rgba(245, 68, 128, .26);
}

.hm-step-icon i {
    color: #fff;
    font-size: 22px;
    line-height: 1;
    display: inline-flex;
}

.hm-step h6 {
    font-weight: 800;
    margin-bottom: 4px;
    font-size: 16px;
}

.hm-step p {
    margin: 0;
    font-size: 13.5px;
    color: #6c757d;
}

/* ---------- 4. membership + birthday duo ---------- */
.hm-duo {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 22px;
}

.hm-duo-card {
    border-radius: 20px;
    padding: 32px 30px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.hm-duo-member {
    background: linear-gradient(140deg, #7b2ff7, #4b1fae);
}

.hm-duo-bday {
    background: var(--hm-grad);
}

.hm-duo-icon {
    width: 56px;
    height: 56px;
    border-radius: 17px;
    background: rgba(255, 255, 255, .2);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 14px;
}

.hm-duo-icon i {
    color: #fff;
    font-size: 25px;
    line-height: 1;
    display: inline-flex;
}

.hm-duo-card h3 {
    color: #fff;
    font-weight: 800;
    font-size: 27px;
    line-height: 1.24;
    margin-bottom: 10px;
}

.hm-duo-card p {
    color: rgba(255, 255, 255, .9);
    font-size: 15px;
    margin-bottom: 16px;
}

.hm-duo-price {
    background: rgba(255, 255, 255, .16);
    border-radius: 12px;
    padding: 10px 16px;
    margin-bottom: 18px;
    font-size: 14px;
    color: rgba(255, 255, 255, .9);
}

.hm-duo-price b {
    font-size: 25px;
    font-weight: 800;
    color: #fff;
    margin: 0 4px;
}

/* ---------- 5. food + shop split ---------- */
.hm-split {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 40px;
}

.hm-split-head {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 20px;
}

.hm-split-head h3 {
    font-weight: 800;
    font-size: 25px;
    margin: 0;
}

.hm-mini-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
}

.hm-mini {
    background: #fff;
    border-radius: 14px;
    padding: 10px;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .06);
    display: flex;
    flex-direction: column;
    gap: 3px;
    transition: all .16s ease;
}

.hm-mini:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 26px rgba(0, 0, 0, .11);
}

.hm-mini-img {
    aspect-ratio: 1 / 1;
    border-radius: 10px;
    overflow: hidden;
    background: #f4f6f8;
    margin-bottom: 6px;
}

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

.hm-mini-name {
    font-weight: 700;
    font-size: 13.5px;
    line-height: 1.3;
    color: var(--secondary-color);
}

.hm-mini-price {
    font-weight: 800;
    color: var(--primary-color);
    font-size: 15px;
}

/* ---------- 6. branches ---------- */
.hm-branch-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 22px;
}

.hm-branch {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .07);
    transition: all .18s ease;
}

.hm-branch:hover {
    transform: translateY(-5px);
    box-shadow: 0 14px 30px rgba(0, 0, 0, .12);
}

.hm-branch-img {
    height: 170px;
    background: #f4f6f8;
}

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

.hm-branch-body {
    padding: 16px 18px 18px;
}

.hm-branch-body h6 {
    font-weight: 800;
    font-size: 17px;
    margin-bottom: 8px;
}

.hm-branch-body p {
    font-size: 13.5px;
    color: #6c757d;
    margin-bottom: 5px;
}

.hm-branch-body p a {
    color: #6c757d;
}

.hm-branch-body i {
    color: var(--primary-color);
    margin-right: 5px;
}

/* ---------- responsive ---------- */
@media (max-width: 991px) {

    .hm-head h2,
    .section-head-title {
        font-size: 28px;
    }

    .hm-section,
    .section-gap {
        padding: 46px 0;
    }

    .hm-duo-card {
        padding: 26px 22px;
    }

    .hm-duo-card h3 {
        font-size: 23px;
    }
}

@media (max-width: 575px) {
    .hm-pkg h6 {
        min-height: auto;
    }

    .hm-mini-grid {
        gap: 10px;
    }
}

/* ==========================================================================
   Membership page — same design language as the homepage sections.
   ========================================================================== */
.ms-section {
    padding: 62px 0 72px;
}

.ms-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 46px;
}

.ms-benefit {
    display: flex;
    gap: 13px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 17px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}

.ms-benefit-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    border-radius: 13px;
    background: rgba(245, 68, 128, .1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.ms-benefit-icon i {
    color: var(--primary-color);
    font-size: 19px;
    line-height: 1;
    display: inline-flex;
}

.ms-benefit h6 {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 3px;
}

.ms-benefit p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

/* plan cards */
.ms-plan-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(268px, 1fr));
    gap: 22px;
    align-items: start;
}

.ms-plan {
    position: relative;
    background: #fff;
    border: 2px solid #eef0f3;
    border-radius: 18px;
    padding: 26px 22px 22px;
    display: flex;
    flex-direction: column;
    transition: all .18s ease;
}

.ms-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 34px rgba(0, 0, 0, .11);
}

.ms-plan-featured {
    border-color: var(--primary-color);
    box-shadow: 0 12px 30px rgba(245, 68, 128, .17);
}

.ms-plan-tag {
    position: absolute;
    top: -13px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--hm-grad);
    color: #fff;
    font-size: 11.5px;
    font-weight: 800;
    letter-spacing: .5px;
    padding: 5px 15px;
    border-radius: 12px;
    white-space: nowrap;
}

.ms-plan-head {
    text-align: center;
    margin-bottom: 12px;
}

.ms-plan-head h5 {
    font-weight: 800;
    font-size: 19px;
    margin-bottom: 6px;
    line-height: 1.25;
}

.ms-plan-benefit {
    display: inline-block;
    background: rgba(123, 47, 247, .1);
    color: #7b2ff7;
    border-radius: 12px;
    padding: 3px 12px;
    font-size: 11.5px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.ms-plan-price {
    text-align: center;
    font-size: 40px;
    font-weight: 800;
    color: var(--primary-color);
    line-height: 1.05;
}

.ms-currency {
    font-size: 24px;
    vertical-align: 6px;
    margin-right: 2px;
}

.ms-per-visit {
    text-align: center;
    font-size: 12.5px;
    color: #8a929a;
    font-weight: 600;
    margin-bottom: 18px;
}

.ms-plan-specs {
    list-style: none;
    padding: 0;
    margin: 0 0 16px;
    border-top: 1px dashed #e6e9ec;
    padding-top: 14px;
}

.ms-plan-specs li {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13.8px;
    color: #495057;
    padding: 5px 0;
}

.ms-plan-specs li b {
    color: var(--secondary-color);
}

.ms-plan-specs i {
    color: var(--primary-color);
    font-size: 15px;
    line-height: 1;
    display: inline-flex;
    flex-shrink: 0;
}

.ms-plan-desc {
    font-size: 13px;
    color: #6c757d;
    margin-bottom: 14px;
}

.ms-plan-desc ul {
    padding-left: 18px;
    margin: 0;
}

.ms-plan-actions {
    margin-top: auto;
}

.ms-details-link {
    display: block;
    text-align: center;
    margin-top: 10px;
    font-size: 13px;
    font-weight: 700;
    color: #8a929a;
}

.ms-details-link:hover {
    color: var(--primary-color);
}

.ms-how {
    margin-top: 62px;
}

.ms-how h3 {
    text-align: center;
    font-weight: 800;
    font-size: 27px;
    margin-bottom: 26px;
}

.ms-note {
    margin-top: 34px;
    background: #fff8ec;
    border: 1px dashed #f4a622;
    border-radius: 12px;
    padding: 15px 20px;
    color: #8a6d3b;
    font-size: 13.8px;
    text-align: center;
}

.ms-note i {
    color: #f4a622;
    display: inline-flex;
    vertical-align: -2px;
    margin-right: 5px;
}

/* ==========================================================================
   About page additions
   ========================================================================== */
.ab-offer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
    gap: 18px;
}

.ab-offer {
    background: #fff;
    border-radius: 16px;
    padding: 22px 20px;
    box-shadow: 0 5px 18px rgba(0, 0, 0, .06);
    transition: all .18s ease;
}

.ab-offer:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 32px rgba(0, 0, 0, .11);
}

.ab-offer-icon {
    width: 54px;
    height: 54px;
    border-radius: 16px;
    background: var(--hm-grad);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 7px 16px rgba(245, 68, 128, .27);
    margin-bottom: 13px;
}

.ab-offer-icon i {
    color: #fff;
    font-size: 23px;
    line-height: 1;
    display: inline-flex;
}

.ab-offer h6 {
    font-weight: 800;
    font-size: 16.5px;
    margin-bottom: 6px;
}

.ab-offer p {
    font-size: 13.5px;
    color: #6c757d;
    margin-bottom: 10px;
}

.ab-safety {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 16px;
}

.ab-safety-item {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    background: #fff;
    border-radius: 14px;
    padding: 17px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, .06);
}

.ab-safety-item i {
    color: #16b47f;
    font-size: 21px;
    line-height: 1;
    display: inline-flex;
    flex-shrink: 0;
    margin-top: 2px;
}

.ab-safety-item h6 {
    font-weight: 800;
    font-size: 15px;
    margin-bottom: 3px;
}

.ab-safety-item p {
    font-size: 13px;
    color: #6c757d;
    margin: 0;
}

@media (max-width: 991px) {
    .ms-section {
        padding: 46px 0 54px;
    }

    .ms-plan-price {
        font-size: 34px;
    }

    .ms-how h3 {
        font-size: 23px;
    }
}

/* ==========================================================================
   Landing-page polish pass (2026-07)
   ========================================================================== */

/* ---- sticky header: the legacy rule kept 20px vertical padding, making the
   scrolled bar noticeably thicker than the resting one ---- */
.header.sticky .header-inner {
    padding: 8px 22px;
}

.header.sticky {
    padding-top: 0;
    border-bottom: 1px solid rgba(23, 38, 58, .07);
}

.header.sticky .header-logo img {
    max-width: 104px;
}

/* ---- indoor section: the two Webflow decorations were removed from the
   markup, so the padding and min-height that reserved space for them (285px
   top / 1010px tall) are no longer needed ---- */
.indoor-area {
    padding-top: 62px;
}

@media only screen and (min-width: 1200px) {
    .indoor-area {
        min-height: 0;
    }
}

/* ---- tone down the tilted collage frames used by the visit-us / moment and
   adventure sections: heavy multi-colour borders and strong rotation read as
   clip-art rather than premium ---- */
.visit-us-single-wrap,
.adventure-cl-grid-wrap .adventure-collection-item,
.moment-single-wrap {
    transform: none !important;
}

.visit-us-img-wrap,
.moment-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(23, 38, 58, .1);
    border: none;
}

.visit-us-img,
.moment-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* ---- gallery: give every photo the same rounded frame, and alternate a
   taller / shorter frame so the strip has rhythm (client asked for one big,
   one small) ---- */
.gallery-item {
    margin: 0 8px;
    border-radius: 18px;
    overflow: hidden;
    background: #f4f6f8;
    box-shadow: 0 8px 24px rgba(23, 38, 58, .1);
    aspect-ratio: 4 / 3;
    display: block;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform .4s ease;
}

.gallery-item:hover img {
    transform: scale(1.06);
}

.gallery-slider .swiper-slide {
    display: flex;
    align-items: center;
}

/* every other photo sits a little shorter for a staggered look */
.gallery-slider .swiper-slide:nth-child(even) .gallery-item {
    aspect-ratio: 1 / 1;
    transform: scale(.88);
}

/* ---- funfact strip: align it with the new stat-card language ---- */
.funfact-area {
    padding: 46px 0;
}

/* ---- FAQ: the near-black block was a hard jump from the light page; keep
   the brand navy but soften the entry into it ---- */
.faq-area {
    border-radius: 26px;
    margin: 0 auto;
    max-width: 1560px;
}

@media (max-width: 991px) {
    .faq-area {
        border-radius: 0;
    }

    .indoor-area {
        padding-top: 46px;
    }
}
