/* We The Nurses - Custom Design System */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

:root {
    --color-primary: #D4DE27;
    /* Lime Yellow-Green */
    --color-primary-rgb: 200, 243, 29;
    --color-dark: #112520;
    --color-black: #000000;
    /* Dark Forest Green */
    --color-dark-rgb: 17, 37, 32;
    --color-dark-light: #1D322D;
    /* Slightly Lighter Forest Green */
    --color-lavender: #A2A4D2;
    /* Belief Lavender */
    --color-cream: #FAF9F5;
    /* Warm background cream */
    --color-light-grey: #EAECE9;
    --font-heading: "Poppins", sans-serif;
    --font-body: "Poppins", sans-serif;
    --transition-smooth: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Global Reset & Base Styles */
body {
    font-family: var(--font-body);
    color: var(--color-dark);
    background-color: #ffffff;
    overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    font-weight: 700;
}

/* Custom Typography Utilities */
.text-display-font {
    font-family: var(--font-heading);
    font-weight: 600;
}

/* Navbar Custom Styles */
.navbar {
    background: transparent;
    padding: 26px 0;
    transition: .4s;
    z-index: 1000;
}

.navbar.scrolled {
    background: rgba(255, 255, 255, 1);
    backdrop-filter: blur(12px);
    padding: 15px 0;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .08);
}

.navbar-brand {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1;
    text-decoration: none;
}

.navbar-brand img {
    width: 100%;
    max-width: 160px;
}

.dark-logo {
    display: none;
}

.navbar.scrolled .dark-logo {
    display: block;
}

.navbar.scrolled .light-logo {
    display: none;
}

.brand-top {
    color: #000;
    font-size: 20px;
    font-weight: 800;
    font-family: var(--font-heading);
    line-height: 1;
}

.brand-bottom {
    color: #d9ef19;
    font-size: 56px;
    font-weight: 900;
    font-style: italic;
    line-height: .8;
    margin-top: -3px;
    font-family: cursive;
}

.brand-star {
    position: absolute;
    width: 18px;
    height: 18px;
    fill: #d9ef19;
    margin-left: 102px;
    margin-top: 2px;
}

.nav-link {
    color: #1d2d2b !important;
    font-weight: 600;
    padding: 8px 16px !important;
    position: relative;
    transition: color .25s ease;
}

/* Animated underline for standard nav links (not the Contact pill button) */
.nav-link:not(.btn-nav-contact)::after {
    content: "";
    position: absolute;
    left: 16px;
    right: 16px;
    bottom: 5px;
    height: 3px;
    background: #1d2d2b;
    border-radius: 10px;
    transform: scaleX(0);
    transform-origin: center;
    transition: transform .28s ease;
}

.nav-link:not(.btn-nav-contact):hover::after,
.nav-link.active::after {
    transform: scaleX(1);
}

.nav-link:not(.btn-nav-contact):hover {
    color: #000 !important;
}

.btn-nav-contact {
    background: #19312f;
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 28px !important;
}

.btn-nav-contact:hover {
    background-color: var(--color-primary) !important;
    color: var(--color-dark) !important;
    transform: translateY(-2px);
}

/* Hand-Drawn Custom Highlight Circles */
.circled-text {
    position: relative;
    display: inline-block;
    z-index: 1;
    padding: 0 4px;
}

.circled-text::after {
    content: "";
    position: absolute;
    top: -10%;
    left: -10%;
    width: 120%;
    height: 120%;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    z-index: -1;
    pointer-events: none;
}

.circled-yellow::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none'><path d='M3,20 C10,5 90,2 97,18 C102,32 15,39 5,34 C-3,30 20,10 85,8' fill='none' stroke='%23C8F31D' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.circled-white::after {
    background-image: url("../Images/white-circle.svg");
}

.circled-white-long::after {
    background-image: url("../Images/circle-white-2.svg");
}

.circled-dark::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 40' preserveAspectRatio='none'><path d='M3,20 C10,5 90,2 97,18 C102,32 15,39 5,34 C-3,30 20,10 85,8' fill='none' stroke='%23112520' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Custom Scribble Underline */
.scribble-underline {
    position: relative;
    display: inline-block;
}

.scribble-underline::after {
    content: "";
    position: absolute;
    bottom: -15px;
    left: 0;
    width: 100%;
    height: 12px;
    background-repeat: no-repeat;
    background-size: 100% 100%;
    pointer-events: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M2,6 C15,2 35,9 50,5 C70,1 85,9 98,3 C80,7 40,4 25,7' fill='none' stroke='%23C8F31D' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

.scribble-dark::after {
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 100 10' preserveAspectRatio='none'><path d='M2,6 C15,2 35,9 50,5 C70,1 85,9 98,3 C80,7 40,4 25,7' fill='none' stroke='%23112520' stroke-width='3' stroke-linecap='round' stroke-linejoin='round'/></svg>");
}

/* Custom Button Styles */
.btn-custom-dark {
    display: inline-flex;
    align-items: center;
    background-color: var(--color-dark);
    color: #fff !important;
    border: none;
    padding: 12px 28px;
    border-radius: 50px;
    font-family: var(--font-heading);
    font-weight: 600;
    transition: var(--transition-smooth);
    text-decoration: none;
    border: 2px solid var(--color-dark);
}

.btn-custom-dark:hover {
    background-color: transparent;
    color: var(--color-dark) !important;
    transform: translateY(-2px);
}

.btn-custom-dark .btn-arrow-circle {
    background-color: var(--color-primary);
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 14px;
    color: var(--color-dark);
    font-size: 10px;
    transition: var(--transition-smooth);
}

.btn-custom-dark:hover .btn-arrow-circle {
    background-color: var(--color-dark);
    color: var(--color-primary);
}

/* Social Buttons */
.btn-social-custom {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    background-color: var(--color-dark);
    color: #fff !important;
    border-radius: 50px;
    padding: 10px 10px 10px 24px;
    font-family: var(--font-heading);
    font-weight: 600;
    text-decoration: none;
    margin-right: 12px;
    margin-bottom: 12px;
    transition: var(--transition-smooth);
    border: 2px solid var(--color-dark);
}

.btn-social-custom:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    background-color: transparent;
    color: var(--color-dark) !important;
}

.social-circle-icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: 16px;
    color: white;
    font-size: 16px;
}

.ig-bg {
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

.tiktok-bg {
    background-color: #010101;
    border: 1px solid #ffffff44;
}

/* Section Common Backgrounds & Spacers */
.section-padding {
    padding: 100px 0;
}

.bg-brand-primary {
    background-color: var(--color-primary);
}

.bg-brand-lavender {
    background-color: var(--color-lavender);
}

.bg-brand-cream {
    background-color: var(--color-cream);
}

.pill-badge {
    background-color: var(--color-dark);
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 1.5px;
    padding: 8px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 24px;
}

/* Organic Blob Shapes */
.blob-container-1 {
    position: relative;
    max-width: 540px;
    margin: 0 auto;
}

.blob-border-yellow {
    /* border: 5px solid var(--color-primary); */
    /* border-radius: 43% 57% 65% 35% / 40% 43% 57% 60%; */
    overflow: hidden;
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.blob-border-yellow img {
    width: 100%;
    height: 500px;
    object-fit: contain;
}

.blob-container-1::before {
    content: "";
    position: absolute;
    top: 7%;
    left: 8%;
    width: 100%;
    height: 100%;
    background: url(../Images/orange-blob.svg) no-repeat center center;
    background-size: contain;
    z-index: 1;
    transform: rotate(15deg);
}

.blob-border-yellow:hover {
    /* border-radius: 50% 50% 50% 50% / 50% 50% 50% 50%; */
}

.blob-mask-green {
    background-color: var(--color-primary);
    border-radius: 45% 55% 40% 60% / 55% 45% 55% 45%;
    overflow: hidden;
    max-width: 480px;
    margin: 0 auto;
}

.blob-mask-green img {
    width: 100%;
    height: 480px;
    object-fit: cover;
}

/* Home Hero Section */
.hero-section {
    background: url("../Images/shutterstock.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}

.hero-star-decorative {
    position: absolute;
    width: 84px;
    height: 84px;
    fill: var(--color-primary);
    top: 29%;
    right: 41%;
    z-index: 5;
    /* animation: rotateStar 8s linear infinite; */
}

.sparkle-decor {
    width: 24px;
    height: 24px;
    fill: var(--color-primary);
    margin-right: 8px;
}

@keyframes rotateStar {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

.hero-subtitle {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 24px;
    color: var(--color-black);
}

.hero-title {
    font-size: 62px;
    line-height: 1.15;
    font-weight: 600;
    margin-bottom: 30px;
    color: var(--color-black);
}

.curve-vector {
    margin: -7px 0px 2px 22%;
    display: block;
    max-width: 140px;
}

@media (max-width: 991px) {
    .hero-title {
        font-size: 42px;
    }
}

/* Video Reels Cards (Community Section) */
svg.star-vector-left {
    position: absolute;
    left: -50px
}

svg.stars-vector-right {
    position: absolute;
    right: -60px;
    bottom: -30px;
}

svg.star-vector-left2 {
    position: absolute;
    left: -70px;
    top: -5%;
}

.reel-card {
    background-color: var(--color-light-grey);
    border-radius: 24px;
    height: 340px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.reel-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.08);
}

.play-circle-btn {
    width: 60px;
    height: 60px;
    background-color: rgba(255, 255, 255, 0.95);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-dark);
    font-size: 18px;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.reel-card:hover .play-circle-btn {
    transform: scale(1.1);
    background-color: var(--color-primary);
}

/* Instagram widget embed (Community Section) */
.ig-embed {
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

/* Most feed widgets inject an iframe or their own container — keep them fluid */
.ig-embed iframe {
    width: 100% !important;
    max-width: 100%;
    border: 0;
}

/* Center Instagram's official post embeds if that markup is used */
.ig-embed .instagram-media {
    margin-left: auto !important;
    margin-right: auto !important;
}

/* Our Belief Image Grid */

.belief-wrapper {
    position: relative;
}

.belief-wrapper::before {
    content: "";
    position: absolute;
    top: -170px;
    left: 0;
    width: 35%;
    height: 50%;
    background: url(../Images/blob-left-top.svg) no-repeat;
    background-size: contain;
    z-index: 1;
}


.belief-wrapper::after {
    content: "";
    position: absolute;
    bottom: 0;
    right: 0;
    width: 30%;
    height: 30%;
    background: url(../Images/blob-bottom.svg) no-repeat;
    background-size: contain;
    z-index: 1;
    background-position: right;
}

/* .belief-wrapper .eclipse {
    position: absolute;
    width: 50%;
    height: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    background: #ffffff75;
    filter: blur(250px);
    z-index: 0;
} */

.belief-grid {
    position: relative;
}

.belief-img-small {
    border-radius: 20px;
    width: 100%;
    object-fit: cover;
    height: 140px;
    transition: var(--transition-smooth);
}

.belief-img-small:hover,
.belief-img-center:hover,
.belief-img-right:hover {
    transform: scale(1.03);
}

.belief-img-center {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    height: 300px;
    transition: var(--transition-smooth);
}

.belief-img-right {
    border-radius: 24px;
    width: 100%;
    object-fit: cover;
    height: 300px;
    transition: var(--transition-smooth);
}

/* Icon / Features Section */
.icon-feature-circle {
    width: 110px;
    height: 110px;
    background-color: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px auto;
    font-size: 32px;
    color: var(--color-dark);
    transition: var(--transition-smooth);
}

.icon-feature-circle:hover {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 10px 20px rgba(200, 243, 29, 0.3);
}

.icon-feature-title {
    font-family: var(--font-heading);
    font-size: 16px;
    font-weight: 700;
    margin-top: 12px;
}

/* Video Showcase Section */
.video-large-placeholder {
    background-color: var(--color-light-grey);
    border-radius: 30px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.03);
    position: relative;
    overflow: hidden;
}

.video-large-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0.8;
}

/* Blog Tip Cards */
.tip-card {
    background: #ffffff;
    border-radius: 24px;
    border: 1px solid rgba(0, 0, 0, 0.05);
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    gap: 22px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
}

.tip-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.06);
}

.tip-card-img {
    height: 320px;
    border-radius: 0;
    object-fit: cover;
    width: 100%;
    display: block;
}

.tip-card-body {
    padding: 0 26px 30px;
}

.tip-card-title {
    font-family: var(--font-heading);
    font-size: 20px;
    line-height: 1.35;
    font-weight: 700;
    margin-bottom: 14px;
}

.tip-card .btn-custom-dark {
    margin-top: auto;
    align-self: flex-start;
}

/* Creator Banner (CTA Section) */
.creator-banner-box {
    border-radius: 36px;
    position: relative;
    padding: 20px 80px 0px 80px;
    background-color: var(--color-primary);
}

.creator-banner-img {
    border-radius: 24px;
    width: 100%;
    object-fit: contain;
    margin-top: -90px;
    position: relative;
    z-index: 1;
}

.floating-emoji {
    position: absolute;
    font-size: 28px;
    border-radius: 50%;
    background-color: white;
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
    animation: floatAnimation 4s ease-in-out infinite;
    z-index: 5;
}

@keyframes floatAnimation {
    0% {
        transform: translateY(0px) rotate(0deg);
    }

    50% {
        transform: translateY(-10px) rotate(5deg);
    }

    100% {
        transform: translateY(0px) rotate(0deg);
    }
}

.emoji-thumb {
    top: -1%;
    left: 12%;
    animation-delay: 0.2s;
}

.emoji-heart {
    top: 10%;
    right: 30%;
    animation-delay: 0.5s;
}

.emoji-heart-eyes {
    top: 75%;
    left: 15%;
    animation-delay: 0.8s;
}

.emoji-smile {
    top: 30%;
    right: 25%;
    animation-delay: 1.1s;
}

/* Footer Styles */
.footer-section {
    background-color: var(--color-dark);
    color: rgba(255, 255, 255, 0.7);
}

/* Footer with creator banner overlap */
.footer-with-banner {
    padding-top: 0;
}

/* Creator banner box overlapping footer top */
.creator-banner-overlap {
    position: relative;
    top: -100px;
    margin-bottom: -70px;
}

/* Footer actual content sits below */
.footer-content-area {
    padding: 60px 0 40px 0;
}

/* Footer Logo */
.footer-logo-link {
    text-decoration: none;
    display: flex;
    flex-direction: column;
    line-height: 1;
}

.footer-logo-top {
    color: #ffffff;
    font-size: 18px;
    font-weight: 700;
    font-family: var(--font-heading);
    display: flex;
    align-items: center;
    gap: 6px;
}

.footer-logo-star {
    display: inline-block;
    vertical-align: middle;
}

.footer-logo-nurses {
    color: var(--color-primary);
    font-size: 52px;
    font-weight: 900;
    font-style: italic;
    font-family: cursive;
    line-height: 0.85;
    margin-top: 2px;
}

.social-footer-circle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--color-primary) !important;
    font-size: 16px;
    transition: var(--transition-smooth);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.social-footer-circle:hover {
    background-color: var(--color-primary);
    color: var(--color-dark) !important;
    transform: translateY(-3px);
}

.footer-title {
    color: white;
    font-size: 28px;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 24px;
}

/* Subscribe Form */
.subscribe-form-wrapper {
    position: relative;
    display: flex;
    align-items: center;
}

.subscribe-icon {
    position: absolute;
    left: 20px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 16px;
    z-index: 2;
    pointer-events: none;
}

.subscribe-input {
    background-color: rgba(255, 255, 255, 0.08);
    border: 1px solid rgb(212 222 39);
    border-radius: 50px;
    padding: 16px 28px;
    color: white !important;
    font-size: 16px;
    outline: none;
    transition: var(--transition-smooth);
    margin-right: 12px;
}

.subscribe-input-icon {
    padding-left: 48px;
}

.subscribe-input:focus {
    background-color: rgba(255, 255, 255, 0.12);
    border-color: var(--color-primary);
}

.subscribe-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.btn-subscribe-submit {
    background-color: var(--color-primary);
    color: var(--color-dark);
    border: none;
    border-radius: 50px;
    padding: 16px 28px;
    font-family: var(--font-heading);
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    transition: var(--transition-smooth);
}

.btn-subscribe-submit i.fa-solid.fa-arrow-right.ms-2 {
    background: #112520;
    padding: 3px 4px;
    border-radius: 12px;
    color: #d4de27;
}

.btn-subscribe-submit:hover {
    background-color: white;
    transform: scale(1.03);
}

/* Page 2: Become a Creator Page specific styles */
.checklist-card {
    background-color: white;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.04);
}

.checklist-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.checklist-card li {
    font-weight: 500;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    font-size: 16px;
}

.checklist-card li::before {
    content: "✓";
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 22px;
    height: 22px;
    color: var(--color-dark);
    font-size: 16px;
    font-weight: 800;
    border-radius: 50%;
    margin-right: 6px;
}

/* Multi-Step Form Custom styling */
.form-step-title {
    font-family: var(--font-heading);
    font-weight: 800;
    font-size: 26px;
    display: flex;
    align-items: center;
    margin-bottom: 24px;
}

.form-step-number {
    color: var(--color-primary);
    margin-right: 12px;
    font-weight: 600;
}

.form-input-underline {
    border: none;
    border-bottom: 2px solid #1D322D;
    border-radius: 0;
    padding: 10px 0;
    font-size: 16px;
    font-weight: 500;
    background-color: transparent !important;
    outline: none;
    transition: var(--transition-smooth);
}

.form-input-underline:focus {
    border-color: var(--color-dark);
    box-shadow: none;
}

.form-input-underline::placeholder {
    color: rgba(17, 37, 32, 0.35);
}

/* Custom Circle Checkbox / Radio styling */
.custom-checkbox-wrapper {
    display: flex;
    align-items: center;
    margin-bottom: 14px;
    cursor: pointer;
    user-select: none;
}

.custom-circle-check {
    width: 24px;
    height: 24px;
    border: 2px solid #D4DE27;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-right: 12px;
    transition: var(--transition-smooth);
}

.custom-checkbox-wrapper input {
    display: none;
}

.custom-checkbox-wrapper input:checked+.custom-circle-check {
    background-color: var(--color-primary);
    border-color: var(--color-primary);
}

.custom-checkbox-wrapper input:checked+.custom-circle-check::after {
    content: "✓";
    color: var(--color-dark);
    font-weight: 800;
    font-size: 12px;
}

/* Page 3: Blog Page Styles */
.blog-header {
    background-color: var(--color-primary);
    background-image: url('../Images/form-hero-vector.svg');
    background-size: 60%;
    background-position: right top;
    background-repeat: no-repeat;
}

.blog-header::before {
    content: "";
    position: absolute;
    width: 20%;
    height: 60px;
    top: -0%;
    right: 29%;
    background: #FFFFFF;
    filter: blur(150px);
}

.blog-post-title {
    font-size: 48px;
    line-height: 1.2;
    margin: 40px auto;
    text-align: center;
    max-width: 900px;
}

.blog-hero-image {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 36px;
    margin-bottom: 60px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.05);
}

.blog-body-content {
    font-size: 18px;
    line-height: 1.7;
    color: rgba(17, 37, 32, 0.85);
    padding-bottom: 0px;;
}

.blog-body-content h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 40px;
    margin-bottom: 20px;
}

.blog-body-content h3 {
    font-size: 22px;
    font-weight: 600;
    color: var(--color-dark);
    margin-top: 30px;
    margin-bottom: 15px;
}

.blog-body-content ul,
.blog-body-content ol {
    margin-bottom: 30px;
    padding-left: 20px;
}

.blog-body-content li {
    margin-bottom: 12px;
}

@media (max-width: 767px) {
    .blog-post-title {
        font-size: 32px;
    }

    .blog-hero-image {
        height: 300px;
    }
}

.video-section {
    background: url("../Images/video-image.png");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.creator-section {
    background-color: #D4DE27;
    background-image: url('../Images/form-hero-vector.svg');
    background-size: 50%;
    background-position: right top;
    background-repeat: no-repeat;
    padding-top: 160px;
    padding-bottom: 100px;
    position: relative;
}


.creator-section::before {
    content: "";
    position: absolute;
    width: 320px;
    height: 400px;
    top: -30%;
    right: 29%;
    background: #FFFFFF;
    filter: blur(150px);
}

/* ===== Our Mission Section (New) ===== */
.mission-section-new {
    position: relative;
    overflow: hidden;
    background-color: #FFF;
    background-image: url('../Images/our-mission-bg.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: cover;
}


/* Left column */
.msn-left-col {
    min-height: 480px;
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 40px 0 0 0;
    position: relative;
}

/* we2.png — wavy lines decoration, bottom-left */
.msn-we2-decor {
    position: absolute;
    bottom: 15px;
    left: 15px;
    width: 110px;
    height: auto;
    z-index: 3;
    pointer-events: none;
    opacity: 0.8;
}

/* Yellow-green organic blob BEHIND nurse-3 */
.msn-blob-shape {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-44%, -50%);
    width: 65%;
    height: 78%;
    background-color: var(--color-primary);
    border-radius: 55% 45% 50% 50% / 45% 55% 50% 50%;
    z-index: 0;
}

/* nurse-3.png — over blob, controlled size */
.msn-nurse-img {
    position: relative;
    z-index: 1;
    width: 100%;
    object-fit: contain;
    object-position: bottom center;
    display: block;
    margin: 0 auto;
    align-self: flex-end;
}

.group-img {
    margin-left: 300px
}

.sub-image {
    position: absolute;
    bottom: 0;
    left: 0;
}

/* Right col — we1.png as background, tall curved shape on right edge */
.msn-right-col {
    position: relative;
    z-index: 1;
    padding: 60px 0 60px 50px;
    /* background-image: url('../Images/we1.png');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: auto 100%; */
}

/* Sparkle stars — vertically centered, between image & text */
.msn-sparkles {
    position: absolute;
    top: 30%;
    left: -14%;
    transform: translateY(-50%);
    z-index: 2;
    pointer-events: none;
}

/* Text content */
.msn-text-content {
    position: relative;
    z-index: 2;
    max-width: 460px;
}

.nurse {
    margin-bottom: 40px;
}


/* ================================================
   MOBILE RESPONSIVE STYLES — All 3 Pages
   (Media queries merged — one block per breakpoint)
   ================================================ */

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

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

    /* ---- Navbar Mobile ---- */

    /* creator page navbar on yellow bg */
    .creator-navbar {
        background: rgba(212, 222, 39, 0.97) !important;
    }

    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        padding: 16px;
        margin-top: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar.scrolled .navbar-collapse {
        box-shadow: none !important;
        background: transparent;
    }

    /* Creator page collapse on yellow */
    .creator-navbar .navbar-collapse {
        background: rgba(212, 222, 39, 0.98);
    }

    .navbar-toggler {
        border: 2px solid var(--color-dark);
        border-radius: 8px;
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        filter: brightness(0);
    }

    .nav-link {
        padding: 10px 12px !important;
        border-radius: 8px;
    }

    .btn-nav-contact {
        display: inline-block;
        margin-top: 8px;
        text-align: center;
    }

    /* logo-white.svg sizing */
    .navbar-brand img {
        max-width: 140px;
        height: auto;
    }

    /* ---- HOME PAGE: Hero Section ---- */
    .hero-section {
        padding-top: 110px;
        padding-bottom: 60px;
        text-align: center;
    }

    .hero-title {
        font-size: 38px;
        line-height: 1.2;
    }

    .curve-vector {
        margin: -7px auto 2px auto;
    }

    .hero-star-decorative {
        width: 56px;
        height: 56px;
        top: 18%;
        right: 8%;
    }

    .blob-container-1 {
        max-width: 420px;
        margin: 40px auto 0;
    }

    .blob-border-yellow img {
        height: 380px;
    }

    .btn-social-custom {
        margin-right: 8px;
        font-size: 14px;
    }

    /* ---- HOME PAGE: Community / Reels Section ---- */

    svg.star-vector-left,
    svg.stars-vector-right {
        display: none;
    }

    .reel-card {
        height: 260px;
    }

    /* ---- HOME PAGE: Mission Section ---- */
    .mission-section-new {
        background-position: top right;
        background-size: 100%;
        padding: 60px 16px;
    }

    .msn-left-col {
        min-height: auto;
        padding: 30px 16px 0;
        justify-content: center;
    }

    .msn-blob-shape {
        width: 75%;
        height: 80%;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
    }

    .msn-nurse-img {
        height: auto !important;
        max-width: 100%;
        width: 85%;
    }

    /* we2 wavy decoration */
    .msn-we2-decor {
        width: 80px;
        bottom: 8px;
        left: 8px;
    }

    /* group-img — remove hard left margin */
    .group-img {
        margin-left: 0 !important;
        display: flex;
        justify-content: center;
        position: relative;
        padding: 20px;
    }

    .sub-image {
        width: 300px;
        bottom: 50px;
        left: 0;
    }

    .msn-right-col {
        padding: 40px 16px;
        text-align: center;
    }

    .msn-sparkles {
        display: none;
    }

    .msn-text-content {
        max-width: 100%;
        margin: 0 auto;
        text-align: center;
    }

    .msn-text-content p {
        margin: 0 auto;
        max-width: 100% !important;
    }

    .tip-card-img {
        height: 200px;
    }

    .belief-wrapper::after {
        width: 20%;
        height: 20%;
    }

    /* ---- FOOTER: Creator Banner ---- */
    .flex-class {
        display: flex;
        justify-content: center;
    }

    .creator-banner-box {
        padding: 40px 30px 0px 30px;
        top: -80px;
        margin-bottom: -50px;
    }

    /* Clear the button above the pulled-up banner (rise 80, stacked = no image poke). */
    #tips {
        padding-bottom: 130px;
    }

    .creator-banner-box p {
        margin: 0 auto;
    }

    .creator-banner-box .btn-arrow {
        position: absolute;
        max-width: 90px;
        margin-left: 12px;
        margin-top: 12px
    }

    .creator-banner-img {
        max-height: 320px;
        margin-top: 24px;
    }

    /* hide emojis on mobile to prevent overflow */
    .floating-emoji {
        display: none;
    }

    /* ---- CREATOR PAGE: Hero Section ---- */
    .creator-section {
        padding-top: 110px;
        padding-bottom: 60px;
        background-image: none;
    }

    .creator-hero-title {
        font-size: 42px;
    }

    .creator-hero-gradient-bg {
        width: 360px;
        height: 360px;
    }

    .creator-hero-img {
        height: 380px;
        width: 85%;
    }

    /* White star SVG */
    .creator-hero-star {
        width: 28px;
        height: 28px;
        left: -5px;
        top: 5px;
    }

    /* emojis hide on mobile */
    .creator-emoji-1,
    .creator-emoji-2,
    .creator-emoji-3,
    .creator-emoji-4 {
        display: none;
    }

    /* checklist card star */
    svg.star-vector-left2 {
        display: none;
    }

    /* blob mask green for old creator hero */
    .blob-mask-green {
        max-width: 340px;
    }

    .blob-mask-green img {
        height: 400px;
    }

    /* pill badge */
    .pill-badge {
        font-size: 11px;
        padding: 6px 14px;
    }

    /* ---- BLOG PAGE: Title & Hero Image ---- */
    .blog-post-title {
        font-size: 36px;
        margin: 30px auto;
    }

    .blog-hero-image {
        height: 360px;
        border-radius: 24px;
        margin-bottom: 40px;
    }

    /* ---- Prevent horizontal overflow ---- */
    .container,
    .container-fluid {
        overflow-x: hidden;
        overflow-y: hidden;
    }
}

/* ================================================
   BREAKPOINT: max-width: 767px
   ================================================ */
@media (max-width: 767px) {

    /* ---- Section Padding Reduction ---- */
    .section-padding {
        padding: 60px 0;
    }

    /* ---- HOME PAGE: Belief Section ---- */
    .belief-img-small {
        height: 120px;
    }

    .belief-img-center,
    .belief-img-right {
        height: 220px;
    }

    /* ---- HOME PAGE: Icon Features Section ---- */
    .icon-feature-circle {
        width: 80px;
        height: 80px;
        font-size: 24px;
    }

    .icon-feature-circle svg {
        width: 50px;
        height: 50px;
    }

    .icon-feature-title {
        font-size: 14px;
    }

    .belief-wrapper::before {
        top: -100px;
        height: 180px;
    }

    .belief-wrapper::after {
        width: 20%;
        height: 90px;
    }

    /* ---- HOME PAGE: Tip Cards ---- */
    .tip-card-img {
        height: auto;
    }

    .tip-card-title {
        font-size: 17px;
    }

    .nurse {
        margin-bottom: 40px;
    }

    /* ---- FOOTER: Creator Banner ---- */
    .creator-banner-box {
        padding: 32px 20px 0px 20px;
        border-radius: 24px;
    }

    .creator-banner-overlap {
        top: -50px;
        margin-bottom: -30px;
    }

    /* Clear the button above the pulled-up banner (rise 50, stacked). */
    #tips {
        padding-bottom: 110px;
    }

    .creator-banner-box h2 {
        font-size: 26px !important;
    }

    .creator-banner-img {
        max-height: 260px;
    }

    /* ---- FOOTER: Subscribe Form ---- */
    .footer-content-area {
        padding: 40px 0 30px;
    }

    .footer-title {
        font-size: 22px;
    }

    .footer-logo-nurses {
        font-size: 40px;
    }

    /* ---- CREATOR PAGE: Hero Section ---- */
    .creator-section {
        /* padding-top: 70px; */
        padding-bottom: 36px;
        text-align: center;
    }

    .creator-hero-title {
        font-size: 34px;
    }

    .creator-hero-img {
        height: 320px;
    }

    .blob-mask-green {
        max-width: 100%;
        margin: 0 auto;
    }

    .blob-mask-green img {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    .checklist-card {
        padding: 28px 20px;
        margin-top: 24px;
    }

    .checklist-card li {
        font-size: 14px;
    }

    .creator-logo-nurses {
        font-size: 36px;
    }

    .blob-mask-green {
        max-width: 280px;
    }

    .blob-mask-green img {
        height: 320px;
    }

    /* ---- CREATOR PAGE: Form Section ---- */
    .form-step-title {
        font-size: 20px;
    }

    .form-step-number {
        font-size: 18px;
    }

    .custom-checkbox-wrapper span:last-child {
        font-size: 14px;
    }

    .creator-section .hero-title {
        font-size: 36px;
    }

    /* ---- GLOBAL: Text Size Adjustments ---- */
    h2[style*="font-size: 38px"] {
        font-size: 28px !important;
        line-height: 1.3 !important;
    }

    h2[style*="font-size: 36px"] {
        font-size: 26px !important;
    }

    h2[style*="font-size: 40px"] {
        font-size: 28px !important;
    }

    .fs-5 {
        font-size: 15px !important;
    }

    .lead {
        font-size: 15px !important;
    }
}

/* ================================================
   BREAKPOINT: max-width: 575px
   ================================================ */
@media (max-width: 575px) {

    /* ---- HOME PAGE: Hero Section ---- */
    .hero-section {
        padding-top: 90px;
        padding-bottom: 48px;
    }

    .hero-title {
        font-size: 30px;

    }

    .sub-image {
        width: 100px;
        bottom: 47px !important;
        left: 33px !important;
    }

    .hero-m {
        margin-top: 40px;
    }

    .blob-border-yellow img {
        height: 280px;
    }

    .hero-subtitle {
        font-size: 16px;
    }

    /* ---- HOME PAGE: Community / Reels Section ---- */
    .reel-card {
        height: 200px;
    }

    /* ---- HOME PAGE: Mission Section ---- */
    .mission-section-new {
        background-size: 180% auto;
        background-position: center;
        padding: 50px 12px;
    }

    .msn-nurse-img {
        height: auto !important;
        width: 100%;
    }

    .msn-blob-shape {
        width: 80%;
        height: 75%;
    }

    .msn-right-col {
        padding: 32px 12px;
    }

    .msn-right-col h2 {
        font-size: 26px !important;
    }

    /* ---- FOOTER: Creator Banner ---- */
    .creator-banner-overlap {
        top: -60px;
    }

    /* Clear the button above the pulled-up banner (rise 60, stacked). */
    #tips {
        padding-bottom: 120px;
    }

    .flex-class {
        display: flex;
        justify-content: center;
    }

    /* ---- FOOTER: Subscribe Form ---- */
    .subscribe-form-wrapper {
        flex-direction: column;
        gap: 12px;
    }

    .subscribe-input {
        width: 100%;
    }

    .subscribe-icon {
        top: 14%;
    }

    .btn-subscribe-submit {
        position: static;
        width: 100%;
        justify-content: center;
        padding: 14px 20px;
        border-radius: 50px;
    }


    /* ---- CREATOR PAGE: Hero Section ---- */
    .creator-section {
        /* padding-top: 60px; */
        padding-bottom: 32px;
    }

    .creator-hero-title {
        font-size: 28px;
    }

    .creator-hero-img {
        height: auto;
        width: 100%;
        max-width: 420px;
    }

    .blob-mask-green {
        max-width: 100%;
        margin: 0 auto;
    }

    .blob-mask-green img {
        width: 100%;
        height: auto !important;
        max-width: 100%;
        object-fit: contain;
    }

    /* ---- CREATOR PAGE: Form Section ---- */
    .form-step-title {
        font-size: 17px;
    }

    /* ---- BLOG PAGE: Title & Hero Image ---- */
    .blog-post-title {
        font-size: 26px;
        margin: 20px auto;
    }

    .blog-hero-image {
        height: 220px;
        border-radius: 16px;
        margin-bottom: 30px;
    }

    .blog-body-content {
        padding-bottom: 0px;
    }

    .blog-body-content {
        font-size: 16px;
    }

    .blog-body-content h2 {
        font-size: 22px;
    }

    .blog-body-content h3 {
        font-size: 18px;
    }

    /* ---- GLOBAL: Text Size Adjustments ---- */
    h2[style*="font-size: 38px"] {
        font-size: 24px !important;
    }

    h2[style*="font-size: 36px"] {
        font-size: 22px !important;
    }

    h2[style*="font-size: 40px"] {
        font-size: 24px !important;
    }

    /* ---- GLOBAL: Button adjustments ---- */
    .btn-custom-dark {
        padding: 10px 20px;
        font-size: 14px;
    }

    .hero-star-decorative {
        top: 65%;
        right: 79%;
    }

    .btn-social-custom {
        font-size: 13px;
        padding: 8px 8px 8px 16px;
    }

    .footer-mobile {
        padding-top: 20px;
        padding-bottom: 20px;
    }

    .footer-logo-link {
        max-width: 150px;
    }

    .footer-logo-link img {
        width: 100%;
    }
}

/* ================================================
   BREAKPOINT: max-width: 480px
   ================================================ */
@media (max-width: 480px) {

    /* ---- Section Padding Reduction ---- */
    .section-padding {
        padding: 48px 0;
    }

    .creator-banner-box .btn-arrow {
        display: none;
    }

    .blog-body-content {
        font-size: 14px;
    }
}

/* ================================================
   "Stay In The Loop" join modal
   ================================================ */
.wtn-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.wtn-modal.is-open {
    display: flex;
}

.wtn-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 37, 32, .55);
    backdrop-filter: blur(3px);
}

.wtn-modal__dialog {
    position: relative;
    width: 100%;
    max-width: 940px;
    background: #fff;
    border-radius: 28px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0, 0, 0, .35);
    animation: wtnModalIn .32s cubic-bezier(0.4, 0, 0.2, 1);
}

@keyframes wtnModalIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(.98);
    }

    to {
        opacity: 1;
        transform: none;
    }
}

.wtn-modal__grid {
    display: grid;
    grid-template-columns: 1.02fr 0.98fr;
    min-height: 540px;
}

.wtn-modal__body {
    padding: 52px 46px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.wtn-modal__title {
    font-size: 40px;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 18px;
    color: var(--color-dark);
}

.wtn-modal__lead {
    font-weight: 600;
    color: var(--color-dark);
    margin-bottom: 34px;
    max-width: 400px;
}

.join-field {
    margin-bottom: 26px;
}

.join-field label {
    display: block;
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 10px;
    color: var(--color-dark);
}

.join-field input {
    width: 100%;
    border: none;
    border-bottom: 2px solid var(--color-dark);
    background: transparent;
    padding: 6px 2px;
    font-size: 16px;
    color: var(--color-dark);
    outline: none;
    transition: border-color .25s ease;
}

.join-field input::placeholder {
    color: #9b9b9b;
}

.join-field input:focus {
    border-bottom-color: var(--color-primary);
}

.btn-join-submit {
    margin-top: 10px;
    align-self: flex-start;
    border: 2px solid var(--color-dark);
    cursor: pointer;
    font-size: 16px;
}

/* Inline form confirmation (replaces the old browser alert on submit). */
.wtn-form__feedback {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 18px 20px;
    border-radius: 16px;
    margin-top: 4px;
    outline: none;
    animation: wtnFeedbackIn .35s ease both;
}

.wtn-form__feedback--success {
    background: rgba(212, 222, 39, .16);
    border: 2px solid var(--color-primary);
    color: var(--color-dark);
}

.wtn-form__feedback--error {
    background: #fdecea;
    border: 2px solid #e6b7b2;
    color: #8a2a20;
}

.wtn-form__feedback-icon {
    flex: none;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    font-size: 19px;
}

.wtn-form__feedback--success .wtn-form__feedback-icon {
    background: var(--color-primary);
    color: var(--color-dark);
}

.wtn-form__feedback--error .wtn-form__feedback-icon {
    background: #e6b7b2;
    color: #8a2a20;
}

.wtn-form__feedback-msg {
    margin: 0;
    font-weight: 700;
    font-size: 16px;
    line-height: 1.4;
}

@keyframes wtnFeedbackIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: none; }
}

.wtn-modal__close {
    position: absolute;
    top: 18px;
    right: 18px;
    z-index: 5;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: none;
    background: rgba(17, 37, 32, .45);
    color: #fff;
    font-size: 20px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.wtn-modal__close:hover {
    background: var(--color-dark);
    transform: rotate(90deg);
}

.wtn-modal__media {
    position: relative;
}

.wtn-modal__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: 62% center;
    display: block;
}

.wtn-modal__curl {
    position: absolute;
    top: 22%;
    left: -34px;
    width: 74px;
    height: 122px;
    z-index: 3;
    pointer-events: none;
}

.wtn-modal__ig {
    position: absolute;
    bottom: 26px;
    left: 50%;
    transform: translateX(-50%);
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: var(--color-primary);
    color: var(--color-dark) !important;
    font-family: var(--font-heading);
    font-weight: 700;
    padding: 9px 12px 9px 22px;
    border-radius: 50px;
    text-decoration: none;
    white-space: nowrap;
    box-shadow: 0 10px 24px rgba(0, 0, 0, .25);
    transition: var(--transition-smooth);
}

.wtn-modal__ig:hover {
    transform: translateX(-50%) translateY(-2px);
}

.wtn-modal__ig-icon {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 16px;
    background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285AEB 90%);
}

body.modal-open {
    overflow: hidden;
}

@media (max-width: 767px) {
    .wtn-modal__grid {
        grid-template-columns: 1fr;
        min-height: 0;
    }

    .wtn-modal__media {
        display: none;
    }

    .wtn-modal__body {
        padding: 44px 26px;
    }

    .wtn-modal__title {
        font-size: 32px;
    }
}
/* ============================================================
   BLOG — category pills + card meta (added for the blog system)
   ============================================================ */
.cat-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.cat-pill {
    display: inline-block;
    padding: 8px 20px;
    border-radius: 999px;
    border: 1.5px solid rgba(17, 37, 32, 0.15);
    background: #fff;
    color: var(--color-dark);
    font-weight: 500;
    font-size: 14px;
    text-decoration: none;
    transition: var(--transition-smooth);
}
.cat-pill:hover {
    border-color: var(--color-dark);
    color: var(--color-dark);
}
.cat-pill.active {
    background: var(--color-dark);
    border-color: var(--color-dark);
    color: #fff;
}
.tip-card-cat {
    display: inline-block;
    margin-bottom: 10px;
    color: var(--color-dark-light);
    font-weight: 600;
    font-size: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
}
.tip-card-cat:hover {
    color: var(--color-dark);
    text-decoration: underline;
}
.tip-card-ph {
    display: block;
    width: 100%;
    aspect-ratio: 3 / 2;
    background: linear-gradient(135deg, var(--color-primary), #eef2c0);
}
.blog-post-meta {
    font-size: 15px;
}
.blog-related {
    margin-top: 3.5rem;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-info-icon {
    flex: none;
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--color-primary);
    color: var(--color-dark);
    display: grid;
    place-items: center;
    font-size: 18px;
}
.contact-info-item h5 {
    font-size: 16px;
}
.contact-form-card {
    background: #ffffff;
    border: 1px solid rgba(0, 0, 0, 0.06);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 0 30px 60px -30px rgba(17, 37, 32, 0.25);
}
.contact-social {
    background: var(--color-dark);
    color: #fff;
    width: 42px;
    height: 42px;
}
.contact-social:hover {
    background: var(--color-primary);
    color: var(--color-dark);
}
@media (max-width: 767px) {
    .contact-form-card { padding: 1.6rem; }
}

/* ============================================================
   SOCIAL BUTTON ICON BACKGROUNDS (full-button style, all platforms)
   ============================================================ */
.fb-bg { background-color: #1877F2; }
.linkedin-bg { background-color: #0A66C2; }
.yt-bg { background-color: #FF0000; }
.x-bg { background-color: #000000; border: 1px solid #ffffff44; }
.social-btn-group .btn-social-custom { margin: 0; }

/* ============================================================
   Clearance for the overlapping creator banner (homepage footer CTA).
   The banner is pulled up into the Tips section (.creator-banner-overlap
   top:-100px) and the nurse image + its baked-in emojis poke ~70px above the
   lime box (.creator-banner-img margin-top:-90px). Without enough room below
   the Tips section, that rising image covers the "See all articles" button.
   So #tips padding-bottom = banner rise + image poke + a ~50px clear gap, tuned
   per breakpoint because the rise/poke differ (see the responsive blocks).
   Desktop (2-col banner, image pokes up): 100 + 70 + 50 ≈ 220.
   ============================================================ */
@media (min-width: 992px) {
    #tips {
        padding-bottom: 220px;
    }
}

/* Tablet (below the navbar-expand-xl breakpoint): style the collapsed menu
   like the phone version so it doesn't look unstyled between 992–1199px. */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .navbar-collapse {
        background: rgba(255, 255, 255, 0.98);
        border-radius: 16px;
        padding: 16px;
        margin-top: 12px;
        box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    }

    .navbar.scrolled .navbar-collapse {
        box-shadow: none !important;
        background: transparent;
    }

    .creator-navbar {
        background: rgba(212, 222, 39, 0.97) !important;
    }

    .creator-navbar .navbar-collapse {
        background: rgba(212, 222, 39, 0.98);
    }

    .navbar-toggler {
        border: 2px solid var(--color-dark);
        border-radius: 8px;
        padding: 6px 10px;
    }

    .navbar-toggler-icon {
        filter: brightness(0);
    }

    .nav-link {
        padding: 10px 12px !important;
        border-radius: 8px;
    }

    .btn-nav-contact {
        display: inline-block;
        margin-top: 8px;
        text-align: center;
    }
}
