/* =====================================================
   LET'SBIRTHDAY — EVENT PLANNING & DECOR
===================================================== */

:root {
    --blue: #1ea7f2;
    --purple: #7550df;
    --dark-purple: #5838bd;
    --pink: #ff2b87;
    --yellow: #ffbd20;
    --green: #17ad67;
    --navy: #18233a;
    --text: #4f5b70;
    --light-purple: #f6f1ff;
    --light-pink: #fff2f8;
    --light-blue: #effaff;
    --light-bg: #fbfcff;
    --white: #ffffff;
    --shadow: 0 15px 38px rgba(34, 38, 72, 0.1);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    color: var(--navy);
    background: var(--white);
    font-family: "Montserrat", sans-serif;
}

img {
    max-width: 100%;
}

a {
    text-decoration: none;
}

button,
a {
    -webkit-tap-highlight-color: transparent;
}

.planning-container {
    width: min(1180px, calc(100% - 44px));
    margin: 0 auto;
}

.planning-section {
    padding: 100px 0;
}

.planning-eyebrow {
    margin: 0 0 14px;
    color: var(--pink);
    font-size: 0.76rem;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;
}

.planning-section-heading {
    max-width: 760px;
    margin: 0 auto 50px;
    text-align: center;
}

.planning-section-heading h2 {
    margin: 0;
    color: var(--navy);
    font-family: "Fredoka", sans-serif;
    font-size: clamp(2.3rem, 5vw, 3.7rem);
    line-height: 1.05;
}

.planning-section-heading > p:last-child {
    max-width: 690px;
    margin: 18px auto 0;
    color: var(--text);
    font-size: 1rem;
    line-height: 1.75;
}

/* =====================================================
   HERO
===================================================== */

.planning-hero {
    position: relative;
    min-height: 660px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 12% 16%,
            rgba(255, 43, 135, 0.09),
            transparent 25%
        ),
        radial-gradient(
            circle at 88% 20%,
            rgba(117, 80, 223, 0.11),
            transparent 27%
        ),
        linear-gradient(135deg, #ffffff 0%, #fcf9ff 55%, #f2ebff 100%);
}

.planning-hero-inner {
    position: relative;
    z-index: 3;
    min-height: 620px;
    display: grid;
    grid-template-columns: 48% 52%;
    align-items: center;
    gap: 48px;
    padding: 60px 0 130px;
}

.planning-hero-copy h1 {
    max-width: 650px;
    margin: 0;
    color: var(--navy);
    font-family: "Fredoka", sans-serif;
    font-size: clamp(3.3rem, 5.5vw, 5.3rem);
    line-height: 0.98;
    letter-spacing: -0.03em;
}

.planning-hero-copy h1 span {
    display: block;
    color: var(--purple);
}

.planning-hero-description {
    max-width: 600px;
    margin: 25px 0 0;
    color: var(--text);
    font-size: 1.06rem;
    line-height: 1.75;
}

.planning-hero-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-top: 30px;
}

.planning-primary-button,
.planning-secondary-button {
    min-height: 54px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    padding: 13px 25px;
    border-radius: 999px;
    font-size: 0.92rem;
    font-weight: 800;
    transition:
        transform 0.2s ease,
        box-shadow 0.2s ease;
}

.planning-primary-button {
    color: var(--white);
    background: linear-gradient(135deg, var(--pink), #ec3fc9);
    box-shadow: 0 12px 26px rgba(255, 43, 135, 0.25);
}

.planning-primary-button span {
    width: 29px;
    height: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--pink);
    background: var(--white);
    border-radius: 50%;
}

.planning-secondary-button {
    color: var(--purple);
    background: var(--white);
    border: 2px solid #ded2ff;
}

.planning-primary-button:hover,
.planning-secondary-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(40, 36, 80, 0.14);
}

/* Hero visual */

.planning-hero-visual {
    position: relative;
    min-height: 480px;
}

.planning-visual-card {
    position: absolute;
    z-index: 3;
    display: flex;
    flex-direction: column;
    color: var(--white);
    border-radius: 30px;
    box-shadow: 0 25px 55px rgba(65, 39, 137, 0.22);
}

.planning-visual-main {
    top: 45px;
    right: 0;
    width: min(440px, 88%);
    min-height: 325px;
    justify-content: flex-end;
    padding: 38px;
    background:
        radial-gradient(
            circle at 78% 20%,
            rgba(255, 255, 255, 0.18),
            transparent 30%
        ),
        linear-gradient(145deg, #8354e8, #5636bb);
    transform: rotate(2deg);
}

.planning-visual-main i {
    margin-bottom: auto;
    font-size: 4.4rem;
    opacity: 0.95;
}

.planning-visual-main strong {
    font-family: "Fredoka", sans-serif;
    font-size: 2rem;
}

.planning-visual-main span {
    margin-top: 8px;
    line-height: 1.55;
    opacity: 0.88;
}

.planning-visual-small {
    left: 10px;
    bottom: 35px;
    width: 245px;
    min-height: 155px;
    align-items: center;
    justify-content: center;
    padding: 25px;
    color: var(--navy);
    background: var(--white);
    border: 6px solid var(--yellow);
    transform: rotate(-4deg);
}

.planning-visual-small i {
    margin-bottom: 12px;
    color: var(--pink);
    font-size: 2.4rem;
}

.planning-visual-small strong {
    font-family: "Fredoka", sans-serif;
    font-size: 1.35rem;
}

/* Decorative balloons */

.planning-balloon {
    position: absolute;
    z-index: 2;
    width: 76px;
    height: 92px;
    border-radius: 50% 50% 48% 48%;
    box-shadow: inset 12px 10px 16px rgba(255, 255, 255, 0.25);
}

.planning-balloon::after {
    content: "";
    position: absolute;
    left: 50%;
    top: 88px;
    width: 1px;
    height: 105px;
    background: rgba(87, 67, 151, 0.35);
}

.balloon-pink {
    top: 5px;
    left: 45px;
    background: var(--pink);
    transform: rotate(-7deg);
}

.balloon-purple {
    top: 12px;
    right: 20px;
    background: var(--purple);
    transform: rotate(8deg);
}

.balloon-yellow {
    right: 5px;
    bottom: 20px;
    background: var(--yellow);
    transform: rotate(5deg);
}

.planning-star {
    position: absolute;
    z-index: 2;
    font-size: 1.7rem;
}

.planning-star-one {
    top: 70px;
    left: 4%;
    color: var(--yellow);
}

.planning-star-two {
    top: 120px;
    right: 4%;
    color: var(--pink);
}

.planning-star-three {
    left: 46%;
    bottom: 150px;
    color: var(--blue);
}

.planning-hero-wave {
    position: absolute;
    z-index: 1;
    left: -5%;
    bottom: -105px;
    width: 110%;
    height: 210px;
    background: var(--purple);
    border-radius: 50% 50% 0 0 / 45% 45% 0 0;
    transform: rotate(-1deg);
}

/* =====================================================
   PLANNING PACKAGES
===================================================== */

.packages-section {
    position: relative;
    padding-top: 115px;
    background: var(--white);
}

.planning-package-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    align-items: start;
    gap: 24px;
}

.planning-package-card {
    --package-color: var(--blue);
    --package-soft: var(--light-blue);

    position: relative;
    min-height: 610px;
    display: flex;
    flex-direction: column;
    padding: 38px 30px 30px;
    overflow: hidden;
    background:
        radial-gradient(
            circle at 100% 0,
            var(--package-soft),
            transparent 42%
        ),
        var(--white);
    border: 2px solid var(--package-color);
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.planning-package-card:hover {
    transform: translateY(-7px);
    box-shadow: 0 22px 46px rgba(34, 38, 72, 0.15);
}

.package-basic {
    --package-color: var(--blue);
    --package-soft: var(--light-blue);
}

.package-premium {
    --package-color: var(--pink);
    --package-soft: var(--light-pink);
    margin-top: -14px;
}

.package-exclusive {
    --package-color: var(--purple);
    --package-soft: var(--light-purple);
}

.popular-badge {
    position: absolute;
    top: 0;
    left: 50%;
    padding: 7px 23px;
    color: var(--white);
    background: var(--pink);
    border-radius: 0 0 16px 16px;
    font-size: 0.71rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    transform: translateX(-50%);
}

.package-icon {
    width: 62px;
    height: 62px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 19px;
    color: var(--white);
    background: var(--package-color);
    border-radius: 19px;
    box-shadow: 0 10px 22px rgba(34, 38, 72, 0.14);
    font-size: 1.5rem;
}

.package-premium .package-icon {
    margin-top: 13px;
}

.package-label {
    margin: 0 0 5px;
    color: var(--package-color);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-align: center;
    text-transform: uppercase;
}

.planning-package-card h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Fredoka", sans-serif;
    font-size: 2rem;
    text-align: center;
}

.planning-price {
    margin: 10px 0 0;
    color: var(--package-color);
    font-family: "Fredoka", sans-serif;
    font-size: 2.6rem;
    font-weight: 700;
    text-align: center;
}

.custom-price {
    font-size: 2rem;
}

.package-divider {
    width: 100%;
    height: 1px;
    margin: 22px 0;
    background: color-mix(
        in srgb,
        var(--package-color) 28%,
        white
    );
}

.planning-package-card h4 {
    margin: 0 0 15px;
    font-size: 0.88rem;
}

.planning-package-card ul {
    display: flex;
    flex-direction: column;
    gap: 13px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.planning-package-card li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: var(--text);
    font-size: 0.87rem;
    line-height: 1.45;
}

.planning-package-card li i {
    width: 21px;
    height: 21px;
    min-width: 21px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--package-color);
    border-radius: 50%;
    font-size: 0.66rem;
}

.package-note {
    margin: 17px 0 0;
    padding: 12px;
    color: var(--text);
    background: var(--package-soft);
    border-radius: 12px;
    font-size: 0.74rem;
    line-height: 1.5;
}

.planning-package-card > a {
    min-height: 47px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
    margin-top: auto;
    padding: 12px 18px;
    color: var(--white);
    background: var(--package-color);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 800;
}

/* =====================================================
   BUNDLE
===================================================== */

.planning-bundle-section {
    padding: 0 0 95px;
    background: var(--white);
}

.planning-bundle-card {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 28px;
    padding: 34px 40px;
    color: var(--white);
    overflow: hidden;
    background:
        radial-gradient(
            circle at 85% 10%,
            rgba(255, 255, 255, 0.16),
            transparent 25%
        ),
        linear-gradient(135deg, #ff2b87, #7b4ee4);
    border-radius: 28px;
    box-shadow: 0 18px 40px rgba(117, 80, 223, 0.22);
}

.bundle-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    background: var(--white);
    border-radius: 22px;
    font-size: 1.8rem;
}

.bundle-copy p {
    margin: 0 0 5px;
    color: #ffe0f0;
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.bundle-copy h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.7rem);
}

.bundle-copy span {
    display: block;
    margin-top: 7px;
    line-height: 1.55;
    opacity: 0.88;
}

.planning-bundle-card > a {
    min-width: 145px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 14px 20px;
    color: var(--purple);
    background: var(--white);
    border-radius: 999px;
    font-weight: 800;
}

/* =====================================================
   THEMES
===================================================== */

.themes-section {
    position: relative;
    background:
        radial-gradient(
            circle at 5% 10%,
            rgba(30, 167, 242, 0.07),
            transparent 24%
        ),
        radial-gradient(
            circle at 95% 85%,
            rgba(255, 43, 135, 0.08),
            transparent 25%
        ),
        var(--light-bg);
}

.theme-category-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 25px;
}

.theme-category-card {
    --theme-color: var(--blue);
    --theme-soft: var(--light-blue);

    padding: 30px;
    background:
        radial-gradient(
            circle at 100% 0,
            var(--theme-soft),
            transparent 45%
        ),
        var(--white);
    border: 2px solid color-mix(
        in srgb,
        var(--theme-color) 60%,
        white
    );
    border-radius: 26px;
    box-shadow: var(--shadow);
}

.theme-blue {
    --theme-color: var(--blue);
    --theme-soft: var(--light-blue);
}

.theme-pink {
    --theme-color: var(--pink);
    --theme-soft: var(--light-pink);
}

.theme-green {
    --theme-color: var(--green);
    --theme-soft: #edfff6;
}

.theme-purple {
    --theme-color: var(--purple);
    --theme-soft: var(--light-purple);
}

.theme-card-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.theme-icon {
    width: 58px;
    height: 58px;
    min-width: 58px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--theme-color);
    border-radius: 18px;
    font-size: 1.35rem;
}

.theme-card-heading p {
    margin: 0 0 4px;
    color: var(--theme-color);
    font-size: 0.69rem;
    font-weight: 800;
    letter-spacing: 0.09em;
    text-transform: uppercase;
}

.theme-card-heading h3 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: 1.65rem;
}

.theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
}

.theme-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 7px 13px;
    color: var(--text);
    background: var(--theme-soft);
    border: 1px solid color-mix(
        in srgb,
        var(--theme-color) 25%,
        white
    );
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 650;
}

/* =====================================================
   CUSTOM THEME
===================================================== */

.custom-theme-section {
    padding: 95px 0;
    background: var(--white);
}

.custom-theme-card {
    position: relative;
    display: grid;
    grid-template-columns: 65% 35%;
    align-items: center;
    overflow: hidden;
    color: var(--white);
    background:
        radial-gradient(
            circle at 86% 50%,
            rgba(255, 255, 255, 0.15),
            transparent 22%
        ),
        linear-gradient(135deg, #6540ce, #8c57ec);
    border-radius: 30px;
    box-shadow: 0 20px 45px rgba(86, 54, 187, 0.24);
}

.custom-theme-copy {
    padding: 48px;
}

.custom-theme-copy .planning-eyebrow {
    color: #ffd0e5;
}

.custom-theme-copy h2 {
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    line-height: 1.05;
}

.custom-theme-copy > p {
    max-width: 650px;
    margin: 17px 0 0;
    line-height: 1.7;
    opacity: 0.9;
}

.custom-theme-copy small {
    display: block;
    margin-top: 13px;
    color: #f1eaff;
    line-height: 1.5;
}

.custom-theme-copy > a {
    display: inline-flex;
    align-items: center;
    gap: 22px;
    margin-top: 26px;
    padding: 13px 20px;
    color: var(--purple);
    background: var(--white);
    border-radius: 999px;
    font-weight: 800;
}

.custom-theme-visual {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 18px;
    background: rgba(255, 255, 255, 0.08);
    text-align: center;
}

.custom-theme-visual i {
    width: 110px;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    background: var(--white);
    border-radius: 50%;
    font-size: 2.8rem;
}

.custom-theme-visual span {
    max-width: 170px;
    font-weight: 700;
    line-height: 1.4;
}

/* =====================================================
   PROCESS
===================================================== */

.process-section {
    background: var(--light-purple);
}

.planning-process-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 23px;
}

.planning-process-grid article {
    position: relative;
    padding: 34px 28px;
    overflow: hidden;
    background: var(--white);
    border: 1px solid #e6dcff;
    border-radius: 25px;
    box-shadow: var(--shadow);
}

.planning-process-grid article > span {
    position: absolute;
    top: 12px;
    right: 20px;
    color: #eee8ff;
    font-family: "Fredoka", sans-serif;
    font-size: 4rem;
    font-weight: 700;
    line-height: 1;
}

.planning-process-grid article > i {
    position: relative;
    z-index: 2;
    width: 57px;
    height: 57px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--purple);
    border-radius: 18px;
    font-size: 1.35rem;
}

.planning-process-grid h3 {
    position: relative;
    z-index: 2;
    margin: 22px 0 10px;
    font-family: "Fredoka", sans-serif;
    font-size: 1.55rem;
}

.planning-process-grid p {
    position: relative;
    z-index: 2;
    margin: 0;
    color: var(--text);
    font-size: 0.88rem;
    line-height: 1.65;
}

/* =====================================================
   CHANAH CONTACT
===================================================== */

.planning-contact-section {
    padding: 90px 0;
    color: var(--white);
    background:
        radial-gradient(
            circle at 85% 20%,
            rgba(255, 43, 135, 0.24),
            transparent 25%
        ),
        linear-gradient(135deg, #332071, #6845c9);
}

.planning-contact-inner {
    display: grid;
    grid-template-columns: 1fr minmax(360px, 0.72fr);
    align-items: center;
    gap: 60px;
}

.planning-contact-copy .planning-eyebrow {
    color: #ffacd1;
}

.planning-contact-copy h2 {
    max-width: 650px;
    margin: 0;
    font-family: "Fredoka", sans-serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    line-height: 1.04;
}

.planning-contact-copy > p:last-child {
    max-width: 620px;
    margin: 18px 0 0;
    line-height: 1.7;
    opacity: 0.85;
}

.chanah-contact-card {
    padding: 30px;
    color: var(--navy);
    background: var(--white);
    border-radius: 27px;
    box-shadow: 0 20px 45px rgba(20, 12, 53, 0.24);
}

.chanah-heading {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.chanah-heading > span {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--pink);
    border-radius: 19px;
    font-size: 1.4rem;
}

.chanah-heading small {
    color: var(--pink);
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.07em;
    text-transform: uppercase;
}

.chanah-heading h3 {
    margin: 3px 0 0;
    font-family: "Fredoka", sans-serif;
    font-size: 2rem;
}

.chanah-contact-card > a:not(.chanah-book-button) {
    display: flex;
    align-items: center;
    gap: 13px;
    margin-top: 12px;
    padding: 14px;
    color: var(--text);
    background: var(--light-purple);
    border-radius: 14px;
    font-size: 0.86rem;
    font-weight: 650;
    overflow-wrap: anywhere;
}

.chanah-contact-card > a:not(.chanah-book-button) i {
    color: var(--purple);
}

.chanah-book-button {
    min-height: 49px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 20px;
    padding: 12px 20px;
    color: var(--white);
    background: var(--pink);
    border-radius: 999px;
    font-weight: 800;
}

/* =====================================================
   FOOTER
===================================================== */

.site-footer {
    padding-top: 30px;
    background: var(--white);
}

.footer-container {
    width: min(1180px, calc(100% - 44px));
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 30px;
    margin: 0 auto;
    padding: 24px 0;
}

.footer-logo img {
    width: 145px;
    display: block;
}

.footer-navigation {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 10px 20px;
}

.footer-navigation a {
    color: var(--navy);
    font-size: 0.75rem;
    font-weight: 650;
}

.footer-socials {
    display: flex;
    gap: 9px;
}

.footer-socials a {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--purple);
    background: var(--light-purple);
    border-radius: 50%;
}

.footer-copyright {
    padding: 17px 20px 22px;
    border-top: 1px solid #edf0f6;
    text-align: center;
}

.footer-copyright p {
    margin: 0;
    color: var(--text);
    font-size: 0.73rem;
}

/* =====================================================
   TABLET
===================================================== */

@media screen and (max-width: 950px) {
    .planning-hero-inner {
        grid-template-columns: 1fr 0.9fr;
        gap: 25px;
    }

    .planning-package-grid {
        grid-template-columns: 1fr;
        max-width: 650px;
        margin: 0 auto;
    }

    .planning-package-card {
        min-height: 0;
    }

    .package-premium {
        margin-top: 0;
    }

    .theme-category-grid {
        grid-template-columns: 1fr;
    }

    .planning-contact-inner {
        grid-template-columns: 1fr 0.8fr;
        gap: 35px;
    }

    .footer-container {
        grid-template-columns: 1fr;
        justify-items: center;
    }
}

/* =====================================================
   MOBILE
===================================================== */

@media screen and (max-width: 700px) {
    .planning-container {
        width: min(100% - 30px, 1180px);
    }

    .planning-section {
        padding: 72px 0;
    }

    .planning-section-heading {
        margin-bottom: 35px;
    }

    .planning-section-heading h2 {
        font-size: 2.35rem;
    }

    .planning-hero {
        min-height: auto;
    }

    .planning-hero-inner {
        display: flex;
        flex-direction: column;
        gap: 25px;
        padding: 70px 0 125px;
    }

    .planning-hero-copy {
        text-align: center;
    }

    .planning-hero-copy h1 {
        font-size: clamp(3rem, 14vw, 4.25rem);
    }

    .planning-hero-description {
        margin-right: auto;
        margin-left: auto;
        font-size: 0.94rem;
    }

    .planning-hero-buttons {
        justify-content: center;
    }

    .planning-primary-button,
    .planning-secondary-button {
        width: 100%;
    }

    .planning-hero-visual {
        width: 100%;
        min-height: 390px;
    }

    .planning-visual-main {
        top: 35px;
        right: 0;
        width: 88%;
        min-height: 270px;
        padding: 27px;
    }

    .planning-visual-main i {
        font-size: 3rem;
    }

    .planning-visual-main strong {
        font-size: 1.6rem;
    }

    .planning-visual-small {
        left: 0;
        bottom: 10px;
        width: 190px;
        min-height: 125px;
    }

    .planning-hero-wave {
        bottom: -125px;
    }

    .planning-star-three {
        display: none;
    }

    .packages-section {
        padding-top: 88px;
    }

    .planning-package-grid {
        gap: 20px;
    }

    .planning-package-card {
        padding: 34px 23px 25px;
        border-radius: 23px;
    }

    .planning-bundle-section {
        padding-bottom: 70px;
    }

    .planning-bundle-card {
        display: flex;
        flex-direction: column;
        align-items: flex-start;
        padding: 29px 24px;
    }

    .planning-bundle-card > a {
        width: 100%;
    }

    .theme-category-card {
        padding: 23px 19px;
        border-radius: 22px;
    }

    .theme-card-heading {
        align-items: center;
        gap: 13px;
    }

    .theme-icon {
        width: 50px;
        height: 50px;
        min-width: 50px;
        border-radius: 15px;
    }

    .theme-card-heading h3 {
        font-size: 1.45rem;
    }

    .theme-tags {
        gap: 7px;
    }

    .theme-tags span {
        min-height: 31px;
        padding: 6px 10px;
        font-size: 0.69rem;
    }

    .custom-theme-section {
        padding: 70px 0;
    }

    .custom-theme-card {
        grid-template-columns: 1fr;
        border-radius: 24px;
    }

    .custom-theme-copy {
        padding: 30px 24px;
        text-align: center;
    }

    .custom-theme-copy > a {
        width: 100%;
        justify-content: center;
    }

    .custom-theme-visual {
        min-height: 220px;
        padding: 30px;
    }

    .custom-theme-visual i {
        width: 90px;
        height: 90px;
        font-size: 2.2rem;
    }

    .planning-process-grid {
        grid-template-columns: 1fr;
    }

    .planning-contact-inner {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .planning-contact-copy {
        text-align: center;
    }

    .chanah-contact-card {
        padding: 24px 19px;
    }

    .footer-navigation {
        gap: 11px 15px;
    }
}

/* =====================================================
   SMALL PHONES
===================================================== */

@media screen and (max-width: 420px) {
    .planning-hero-copy h1 {
        font-size: 3rem;
    }

    .planning-hero-visual {
        min-height: 350px;
    }

    .planning-visual-main {
        min-height: 245px;
    }

    .planning-visual-small {
        width: 165px;
        min-height: 112px;
        padding: 18px;
    }

    .planning-visual-small strong {
        font-size: 1.1rem;
    }

    .planning-balloon {
        width: 58px;
        height: 72px;
    }

    .planning-balloon::after {
        top: 68px;
        height: 75px;
    }

    .planning-package-card {
        padding-right: 19px;
        padding-left: 19px;
    }

    .bundle-copy h2 {
        font-size: 1.8rem;
    }

    .theme-card-heading h3 {
        font-size: 1.25rem;
    }

    .chanah-contact-card > a:not(.chanah-book-button) {
        font-size: 0.76rem;
    }
}

/* =====================================================
   NEW VISUAL THEME GALLERY
===================================================== */

.visual-theme-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    align-items: start;
    gap: 28px;
}

.visual-theme-card {
    --visual-theme-color: var(--blue);
    --visual-theme-soft: var(--light-blue);

    overflow: hidden;
    background: var(--white);
    border: 2px solid var(--visual-theme-color);
    border-radius: 28px;
    box-shadow: var(--shadow);
    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.visual-theme-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 22px 48px rgba(34, 38, 72, 0.15);
}

.visual-theme-blue {
    --visual-theme-color: var(--blue);
    --visual-theme-soft: var(--light-blue);
}

.visual-theme-pink {
    --visual-theme-color: var(--pink);
    --visual-theme-soft: var(--light-pink);
}

.visual-theme-green {
    --visual-theme-color: var(--green);
    --visual-theme-soft: #edfff6;
}

.visual-theme-purple {
    --visual-theme-color: var(--purple);
    --visual-theme-soft: var(--light-purple);
}

/* Theme photographs */

.visual-theme-image {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: var(--visual-theme-soft);
}

.visual-theme-image::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        linear-gradient(
            to top,
            rgba(18, 26, 44, 0.36),
            transparent 48%
        );
}

.visual-theme-image img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transition: transform 0.5s ease;
}

.visual-theme-card:hover .visual-theme-image img {
    transform: scale(1.035);
}

.visual-theme-label {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    padding: 9px 16px;
    color: var(--white);
    background: var(--visual-theme-color);
    border: 3px solid rgba(255, 255, 255, 0.85);
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    box-shadow: 0 8px 20px rgba(20, 25, 50, 0.17);
}

/* Card content */

.visual-theme-content {
    padding: 27px 27px 29px;
}

.visual-theme-heading {
    display: flex;
    align-items: center;
    gap: 15px;
}

.visual-theme-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--visual-theme-color);
    border-radius: 17px;
    font-size: 1.3rem;
    box-shadow: 0 9px 20px rgba(31, 41, 55, 0.13);
}

.visual-theme-heading p {
    margin: 0 0 4px;
    color: var(--visual-theme-color);
    font-size: 0.67rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    line-height: 1.35;
    text-transform: uppercase;
}

.visual-theme-heading h3 {
    margin: 0;
    color: var(--navy);
    font-family: "Fredoka", sans-serif;
    font-size: 1.75rem;
    line-height: 1.05;
}

.visual-theme-description {
    min-height: 72px;
    margin: 19px 0 0;
    color: var(--text);
    font-size: 0.86rem;
    line-height: 1.65;
}

/* Popular preview themes */

.popular-theme-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 18px;
}

.popular-theme-tags span {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 6px 12px;
    color: var(--visual-theme-color);
    background: var(--visual-theme-soft);
    border: 1px solid color-mix(
        in srgb,
        var(--visual-theme-color) 28%,
        white
    );
    border-radius: 999px;
    font-size: 0.7rem;
    font-weight: 750;
}

/* Expandable complete theme lists */

.theme-details {
    margin-top: 21px;
    border-top: 1px solid color-mix(
        in srgb,
        var(--visual-theme-color) 20%,
        white
    );
}

.theme-details summary {
    min-height: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding-top: 17px;
    color: var(--visual-theme-color);
    cursor: pointer;
    list-style: none;
    font-size: 0.78rem;
    font-weight: 800;
}

.theme-details summary::-webkit-details-marker {
    display: none;
}

.theme-details summary span {
    width: 29px;
    height: 29px;
    min-width: 29px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    background: var(--visual-theme-color);
    border-radius: 50%;
    font-size: 1rem;
    transition: transform 0.25s ease;
}

.theme-details[open] summary span {
    transform: rotate(45deg);
}

.expanded-theme-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    padding: 8px 0 3px;
}

.expanded-theme-list span {
    display: inline-flex;
    align-items: center;
    min-height: 31px;
    padding: 6px 11px;
    color: var(--text);
    background: var(--visual-theme-soft);
    border: 1px solid color-mix(
        in srgb,
        var(--visual-theme-color) 24%,
        white
    );
    border-radius: 999px;
    font-size: 0.69rem;
    font-weight: 650;
}

/* Theme pricing note */

.theme-pricing-note {
    max-width: 800px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 13px;
    margin: 32px auto 0;
    padding: 17px 21px;
    color: #5d4c9e;
    background: #f4efff;
    border: 1px solid #ded2ff;
    border-radius: 17px;
}

.theme-pricing-note i {
    margin-top: 3px;
    color: var(--purple);
}

.theme-pricing-note p {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.6;
}

/* Tablet */

@media screen and (max-width: 900px) {
    .visual-theme-grid {
        grid-template-columns: 1fr;
        max-width: 690px;
        margin: 0 auto;
    }

    .visual-theme-description {
        min-height: 0;
    }
}

/* Phone */

@media screen and (max-width: 600px) {
    .visual-theme-grid {
        gap: 21px;
    }

    .visual-theme-card {
        border-radius: 22px;
    }

    .visual-theme-image {
        aspect-ratio: 16 / 10;
    }

    .visual-theme-label {
        left: 15px;
        bottom: 14px;
        padding: 7px 12px;
        border-width: 2px;
        font-size: 0.7rem;
    }

    .visual-theme-content {
        padding: 22px 18px 23px;
    }

    .visual-theme-heading {
        gap: 12px;
    }

    .visual-theme-icon {
        width: 48px;
        height: 48px;
        min-width: 48px;
        border-radius: 15px;
        font-size: 1.1rem;
    }

    .visual-theme-heading p {
        font-size: 0.58rem;
    }

    .visual-theme-heading h3 {
        font-size: 1.5rem;
    }

    .visual-theme-description {
        margin-top: 16px;
        font-size: 0.79rem;
    }

    .popular-theme-tags {
        margin-top: 15px;
        gap: 7px;
    }

    .popular-theme-tags span,
    .expanded-theme-list span {
        font-size: 0.65rem;
    }

    .theme-details {
        margin-top: 17px;
    }

    .theme-details summary {
        font-size: 0.72rem;
    }

    .theme-pricing-note {
        padding: 14px 15px;
    }

    .theme-pricing-note p {
        font-size: 0.72rem;
    }
}

/* =====================================================
   EVENT PLANNING PHOTO HERO
===================================================== */

.planning-photo-hero {
    position: relative;
    min-height: 500px;
}

.planning-main-photo {
    position: absolute;
    z-index: 2;
    top: 30px;
    right: 0;
    width: 475px;
    height: 420px;
    overflow: hidden;
    background: #ffffff;
    border: 9px solid var(--purple);
    border-radius:
        45% 55% 48% 52%
        /
        42% 45% 55% 58%;
    box-shadow: 0 24px 50px rgba(79, 52, 165, 0.2);
    transform: rotate(1.5deg);
}

.planning-main-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
    transform: scale(1.02);
}

.planning-detail-photo {
    position: absolute;
    z-index: 4;
    left: 2px;
    bottom: 15px;
    width: 205px;
    height: 205px;
    overflow: hidden;
    background: #ffffff;
    border: 8px solid var(--yellow);
    border-radius: 50%;
    box-shadow: 0 18px 38px rgba(41, 31, 84, 0.2);
}

.planning-detail-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Floating service badge */

.planning-photo-badge {
    position: absolute;
    z-index: 5;
    right: 10px;
    bottom: 12px;
    min-width: 220px;
    display: flex;
    align-items: center;
    gap: 13px;
    padding: 14px 18px;
    color: var(--navy);
    background: rgba(255, 255, 255, 0.96);
    border: 2px solid #eadfff;
    border-radius: 18px;
    box-shadow: 0 13px 28px rgba(41, 31, 84, 0.15);
    font-family: "Montserrat", sans-serif;
}

.planning-photo-badge i {
    width: 43px;
    height: 43px;
    min-width: 43px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    background: var(--pink);
    border-radius: 14px;
    font-size: 1.1rem;
}

.planning-photo-badge span {
    display: flex;
    flex-direction: column;
    color: var(--text);
    font-size: 0.68rem;
    font-weight: 700;
    line-height: 1.35;
}

.planning-photo-badge strong {
    color: var(--navy);
    font-family: "Fredoka", sans-serif;
    font-size: 1.15rem;
}

/* Decorative stars */

.planning-photo-star {
    position: absolute;
    z-index: 5;
    font-size: 1.7rem;
}

.planning-photo-star-one {
    top: 16px;
    left: 42px;
    color: var(--yellow);
    transform: rotate(-10deg);
}

.planning-photo-star-two {
    top: 102px;
    right: -10px;
    color: var(--pink);
    transform: rotate(12deg);
}

/* Tablet */

@media screen and (max-width: 1050px) {
    .planning-main-photo {
        width: 415px;
        height: 375px;
    }

    .planning-detail-photo {
        width: 175px;
        height: 175px;
    }

    .planning-photo-badge {
        right: 0;
        min-width: 205px;
    }
}

/* Mobile */

@media screen and (max-width: 700px) {
    .planning-photo-hero {
        width: 100%;
        min-height: 430px;
    }

    .planning-main-photo {
        top: 24px;
        right: 0;
        width: 90%;
        height: 330px;
        border-width: 7px;
    }

    .planning-detail-photo {
        left: 0;
        bottom: 10px;
        width: 145px;
        height: 145px;
        border-width: 6px;
    }

    .planning-photo-badge {
        right: 0;
        bottom: 14px;
        min-width: 185px;
        padding: 11px 13px;
    }

    .planning-photo-badge i {
        width: 38px;
        height: 38px;
        min-width: 38px;
    }

    .planning-photo-badge strong {
        font-size: 1rem;
    }

    .planning-photo-star-one {
        left: 18px;
    }

    .planning-photo-star-two {
        right: 0;
    }
}

/* Small phones */

@media screen and (max-width: 420px) {
    .planning-photo-hero {
        min-height: 385px;
    }

    .planning-main-photo {
        width: 94%;
        height: 290px;
    }

    .planning-detail-photo {
        width: 125px;
        height: 125px;
    }

    .planning-photo-badge {
        min-width: 170px;
        max-width: 185px;
    }
}

/* Third hero photo — adventure décor */

.planning-boy-photo {
    position: absolute;
    z-index: 4;
    top: -25px;
    left: -35px;
    width: 290px;
    height: 290px;
    overflow: hidden;
    background: #ffffff;
    border: 8px solid var(--blue);
    border-radius: 50%;
    box-shadow: 0 19px 40px rgba(30, 167, 242, 0.22);
}

.planning-boy-photo img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: center;
}

/* Tablet */

@media screen and (max-width: 1050px) {
    .planning-boy-photo {
        top: -10px;
        left: -20px;
        width: 245px;
        height: 245px;
        border-width: 7px;
    }
}

/* Phone */

@media screen and (max-width: 700px) {
    .planning-boy-photo {
        top: 5px;
        left: -5px;
        width: 190px;
        height: 190px;
        border-width: 6px;
    }
}

/* Small phones */

@media screen and (max-width: 420px) {
    .planning-boy-photo {
        top: 45px;
        width: 165px;
        height: 165px;
        border-width: 5px;
    }
}

/* CUSTOM THEME PHOTO */

.custom-theme-photo {
    position: relative;
    width: 42%;
    min-height: 340px;
    overflow: hidden;
    border-radius: 28px;
    box-shadow: 0 18px 38px rgba(47, 35, 94, 0.2);
}

.custom-theme-photo img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 340px;
    object-fit: cover;
    object-position: center;
}

.custom-theme-photo::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(45, 29, 91, 0.52),
        transparent 48%
    );
    pointer-events: none;
}

.custom-theme-photo span {
    position: absolute;
    z-index: 2;
    left: 22px;
    bottom: 20px;
    display: inline-flex;
    align-items: center;
    gap: 9px;
    padding: 11px 17px;
    color: #ffffff;
    background: rgba(75, 48, 166, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.45);
    border-radius: 999px;
    font-family: "Montserrat", sans-serif;
    font-size: 0.88rem;
    font-weight: 700;
    backdrop-filter: blur(7px);
}

.custom-theme-photo span i {
    color: #fbbf24;
}

@media screen and (max-width: 800px) {
    .custom-theme-photo {
        width: 100%;
        min-height: 280px;
    }

    .custom-theme-photo img {
        min-height: 280px;
    }
}

@media screen and (max-width: 500px) {
    .custom-theme-photo {
        min-height: 230px;
        border-radius: 22px;
    }

    .custom-theme-photo img {
        min-height: 230px;
    }

    .custom-theme-photo span {
        left: 14px;
        bottom: 14px;
        font-size: 0.75rem;
    }
}

/* FIX CUSTOM THEME PHOTO LAYOUT */

.custom-theme-card {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(420px, 0.9fr);
    align-items: stretch;
    gap: 55px;
}

.custom-theme-copy {
    width: auto;
}

.custom-theme-photo {
    width: 100%;
    min-height: 390px;
    align-self: stretch;
}

.custom-theme-photo img {
    width: 100%;
    height: 100%;
    min-height: 390px;
    object-fit: cover;
    object-position: center;
}

@media screen and (max-width: 900px) {
    .custom-theme-card {
        grid-template-columns: 1fr;
        gap: 35px;
    }

    .custom-theme-photo {
        min-height: 320px;
    }

    .custom-theme-photo img {
        min-height: 320px;
    }
}

@media screen and (max-width: 500px) {
    .custom-theme-photo {
        min-height: 240px;
    }

    .custom-theme-photo img {
        min-height: 240px;
    }
}

/* MOBILE PACKAGE BUTTON SPACING FIX */
@media screen and (max-width: 700px) {
    .planning-package-card ul {
        margin-bottom: 28px !important;
    }

    .planning-package-card .package-book-button {
        display: flex !important;
        margin-top: 28px !important;
    }
}

/* ========================================
   HERO FLOATING STARS
======================================== */

.planning-photo-star {
    position: absolute !important;
    z-index: 10 !important;
    display: block !important;
    font-size: 2rem !important;
    line-height: 1 !important;
    pointer-events: none;
    animation: planning-star-float 3.2s ease-in-out infinite;
    transform-origin: center;
}

/* Yellow star near the upper-middle */
.planning-photo-star-one {
    top: 25px !important;
    left: -55px !important;
    right: auto !important;
    color: #ffbd1f !important;
}

/* Pink star near the upper-right, safely inside the page */
.planning-photo-star-two {
    top: 75px !important;
    right: 8% !important;
    left: auto !important;
    color: #ff2b88 !important;
    animation-delay: 1.4s;
}

@keyframes planning-star-float {
    0%,
    100% {
        transform: translateY(0) rotate(-6deg) scale(1);
    }

    50% {
        transform: translateY(-13px) rotate(8deg) scale(1.12);
    }
}

@media screen and (max-width: 700px) {
    .planning-photo-star {
        font-size: 1.6rem !important;
    }

    .planning-photo-star-one {
        top: 10px !important;
        left: 4% !important;
    }

    .planning-photo-star-two {
        top: 50px !important;
        right: 7% !important;
    }
}

@media (prefers-reduced-motion: reduce) {
    .planning-photo-star {
        animation: none;
    }
}