:root {
    --serenity-teal: #4BB4A8;
    --tranquil-white: #FFFFFF;
    --slate-gray: #4A4A4A;
    --healing-sage: #9FC5AF;
    --calm-blue: #BFDCE5;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Montserrat', sans-serif;
    color: var(--slate-gray);
    line-height: 1.7;
    background-color: var(--tranquil-white);
    overflow-x: hidden;
}

h1, h2, h3 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 600;
}

/* --- Navigation --- */
.navbar {
    background-color: transparent;
    position: absolute;
    width: 100%;
    z-index: 100;
}

.navbar-burger {
    color: var(--slate-gray); /* Use defined variable */
    height: 3rem;
    width: 3rem;
    margin-right: 0rem;
}

.navbar-item {
    font-size: 1.2rem; /* Increased by 20% from 0.9rem */
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: color 0.3s ease;
}

.navbar-item:hover {
    color: var(--serenity-teal) !important;
    background-color: transparent !important;
}

.contact-button {
    background-color: var(--healing-sage) !important;
    color: var(--slate-gray) !important;
    font-weight: 600 !important;
    border: none;
    transition: all 0.3s ease;
}

.contact-button:hover {
    background-color: var(--serenity-teal) !important;
    color: var(--tranquil-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

@media screen and (max-width: 1023px) {
    .navbar-menu {
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        padding: 1rem 0;
    }
    .navbar-menu.is-active {
        display: block;
        background-color: var(--tranquil-white);
        position: absolute;
        width: 100%;
        left: 0;
        top: 100%;
        text-align: center;
        padding-top: 2rem;
        padding-bottom: 2rem;
    }
    .navbar-item {
        padding: 0.75rem 0;
        display: block;
    }
    .navbar-end {
        flex-direction: column;
        align-items: center;
    }
    .navbar-end .navbar-item.is-hidden-touch { /* Hide actual nav items in burger on mobile */
        display: none !important;
    }
    .navbar-item.is-hidden-desktop { /* Show mobile-specific contact button */
         display: block !important;
    }
}

@media screen and (min-width: 1024px) {
    .navbar {
        position: absolute;
        width: 100%;
        top: 0;
        left: 0;
        z-index: 100;
        background-color: transparent;
    }

    .navbar .container {
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 15px 50px;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
    }

    .navbar-burger {
        display: none; /* Hide burger on desktop */
    }

    .navbar-menu {
        display: block !important;
        width: auto;
        background-color: transparent;
    }

    .navbar-end {
        display: flex;
        align-items: center;
        gap: 30px; /* Space between nav items */
    }

    .navbar-item {
        font-size: 0.9rem;
        letter-spacing: 1.5px;
        color: var(--slate-gray);
        text-transform: uppercase;
        transition: color 0.3s ease;
        padding: 0;
    }

    .navbar-item:hover {
        color: var(--serenity-teal);
        background-color: transparent;
    }

    .navbar-item.is-hidden-desktop {
        display: none !important;
    }

    /* --- Sub-page Hero Styles for Desktop --- */
    .hero-subpage .hero-body .container .hero-content .hero-title-subpage {
        font-size: 4.5rem !important;
        line-height: 1.2 !important;
        margin-bottom: 1rem !important;
    }

    .hero-subpage .hero-body .container .hero-content .hero-subtitle-subpage {
        font-size: 1.1rem !important;
        line-height: 1.6 !important;
        margin-top: 0.5rem !important;
    }
}

.navbar-brand {
    min-height: 125px; /* Accommodate reduced logo height */
    display: flex;
    align-items: center; /* Vertically center the logo */
    padding: 0 1rem; /* Add some horizontal padding */
}

    .navbar-logo {
        height: 180px !important; /* Further reduced logo height */
        width: auto !important; /* Keep width as auto to maintain aspect ratio */
        max-height: none !important; /* Override Bulma's default max-height with !important */
    }


/* --- Hero Section --- */
.hero-section {
    background: linear-gradient(to bottom right, var(--calm-blue), rgba(255, 255, 255, 0.7)); /* Calm blue to 70% transparent white */
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    min-height: 60vh;
}
.hero-section .hero-body {
    padding-top: 0rem;
    padding-bottom: 4rem; /* Make space for wave */
    width: 100%;
}
.hero-image-wrapper {
    position: relative;
    min-height: 760px; /* Ensure enough height to prevent clipping of the absolutely positioned image */
    overflow: visible; /* Allow image content to extend beyond the bounding box if necessary */
}
.hero-image {
    max-width: 532px; /* 650px * 0.85 = 552px */
    width: 100%;
    height: auto; /* Allow height to adjust naturally */
    position: absolute;
    bottom: 0;
    right: 0;
    border: 8px solid var(--tranquil-white);
    border-radius: 12px;
    box-shadow: 0 15px 30px rgba(0,0,0,0.2);
}
.hero-title {
    font-size: 6rem; /* Increased by 20% from 5rem */
    color: var(--serenity-teal);
    line-height: 1.1;
}

.hero-name {
    font-family: 'Mr De Haviland', cursive;
    font-weight: 400;
}
.hero-subtitle {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.44rem; /* Increased by 20% from 1.2rem */
    color: var(--slate-gray);
    text-transform: uppercase;
    letter-spacing: 3px;
    margin-top: 1rem;
}

.hero-logo {
    text-align: center;
    margin-bottom: 2rem;
}

    .mobile-hero-logo img {
        height: 200px; /* Slightly smaller to fit better */
        width: auto;
        max-width: 100%;
        object-fit: contain;
    }

.hero-title, .hero-subtitle {
    text-align: center; /* Default center for desktop */
}

/* --- Top Wave Divider --- */
.wave-divider {
    position: absolute;
    bottom: -1px;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 10;
}
.wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
}
.wave-divider .shape-fill {
    fill: var(--tranquil-white);
}

/* --- Main Content --- */
.main-content {
    background-color: var(--tranquil-white);
    padding-bottom: 50px; /* Reduced space after removing CTA section */
    position: relative;
    z-index: 1;
}

/* --- Mission and Vision --- */
#mission-vision {
    position: relative;
    background: linear-gradient(135deg, var(--calm-blue) 0%, var(--healing-sage) 50%, var(--serenity-teal) 100%);
    padding: 8rem 0 4rem 0; /* More padding at top to accommodate wave */
    margin: 2rem 0;
}

#mission-vision::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(255, 255, 255, 0.1) 0%, 
        rgba(255, 255, 255, 0.05) 50%, 
        rgba(255, 255, 255, 0.1) 100%);
    pointer-events: none;
}

.mission-vision-row {
    position: relative;
    display: flex;
    height: 400px;
    margin-bottom: 2rem;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 15px 35px rgba(75, 180, 168, 0.2);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    z-index: 10; /* Above wave divider */
}

.mission-vision-row:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 45px rgba(75, 180, 168, 0.3);
}

.mission-vision-row:nth-child(2) {
    flex-direction: row-reverse;
}

.mission-vision-row:nth-child(1) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(191, 220, 229, 0.3) 100%);
}

.mission-vision-row:nth-child(2) {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(159, 197, 175, 0.3) 100%);
}

.image-half {
    width: 50%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    min-height: 400px;
}

.mission-image-half {
    background-color: var(--calm-blue);
}

.vision-image-half {
    background-color: var(--healing-sage);
}

.image-half::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, 
        rgba(75, 180, 168, 0.2) 0%, 
        rgba(159, 197, 175, 0.1) 100%);
    z-index: 1;
}

.mission-image-half {
    background-image: url('images/mission.png');
}

.vision-image-half {
    background-image: url('images/vision.png');
}

.text-half {
    width: 50%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 3rem;
    background-color: transparent;
    position: relative;
    z-index: 2;
}

.section-title {
    font-size: 2.5rem;
    color: var(--serenity-teal);
    margin-bottom: 1.5rem;
    font-weight: 700;
    position: relative;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--serenity-teal), var(--healing-sage));
    border-radius: 2px;
}

.text-half p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-gray);
    margin-bottom: 0;
}

.wave-divider-mission, .wave-divider-vision {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 200px;
    z-index: 3;
    opacity: 0.8;
}

.wave-divider-mission svg, .wave-divider-vision svg {
    width: 100%;
    height: 100%;
    filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.1));
}

.wave-divider-mission .shape-fill {
    fill: var(--healing-sage);
}

.wave-divider-vision .shape-fill {
    fill: var(--serenity-teal);
}
#welcome {
    position: relative;
    background-color: var(--tranquil-white);
}

.welcome-title {
    font-size: 3rem;
    color: var(--slate-gray);
}
.welcome-subtitle {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
    font-size: 1.1rem;
    color: var(--slate-gray);
}

/* --- Welcome Wave Divider --- */
.welcome-wave-divider {
    position: absolute;
    bottom: -140px; /* Push down 60px from the bottom */
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    z-index: 5;
}

.welcome-wave-divider svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 120px;
}

.welcome-wave-divider path {
    fill: var(--tranquil-white);
}

/* --- Conditions Section --- */
.conditions-title {
    font-size: 3rem;
    color: var(--slate-gray);
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.conditions-subtitle {
    max-width: 800px;
    margin: 0 auto 2rem auto;
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-gray);
}

#conditions .columns {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    gap: 2rem;
}

#conditions .column {
    flex: 1;
    max-width: none;
}

.condition-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(191, 220, 229, 0.2) 100%);
    border: 1px solid var(--healing-sage);
    border-radius: 20px;
    padding: 2.5rem;
    height: 100%;
    text-align: center;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: 0 10px 25px rgba(75, 180, 168, 0.15);
}

.condition-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(75, 180, 168, 0.25);
}

.condition-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    color: var(--serenity-teal);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.condition-card-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 50px;
    height: 2px;
    background: linear-gradient(90deg, var(--serenity-teal), var(--healing-sage));
    border-radius: 1px;
}

.condition-list {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
    width: 100%;
}

.condition-list li {
    padding: 0.5rem 0;
    border-bottom: 1px solid rgba(159, 197, 175, 0.2);
    color: var(--slate-gray);
    font-size: 1rem;
    position: relative;
    padding-left: 1.5rem;
}

.condition-list li::before {
    content: '•';
    position: absolute;
    left: 0;
    color: var(--serenity-teal);
    font-weight: bold;
}

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

.see-all-link {
    display: inline-block;
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--serenity-teal);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 2px solid var(--serenity-teal);
    border-radius: 50px;
    transition: all 0.3s ease;
    background-color: transparent;
}

.see-all-link:hover {
    background-color: var(--serenity-teal);
    color: var(--tranquil-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 180, 168, 0.3);
}

/* --- Get In Touch Button --- */
.get-in-touch-button {
    background-color: var(--healing-sage) !important;
    color: var(--slate-gray) !important;
    font-weight: 600 !important;
    border: none;
    padding: 1.5em 3em;
    transition: all 0.3s ease;
}
.get-in-touch-button:hover {
    background-color: var(--serenity-teal) !important;
    color: var(--tranquil-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
}

/* --- Services Page Hero --- */
.hero-image-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    z-index: 1;
}

.hero-background-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
}

.hero-content {
    position: relative;
    z-index: 10;
    display: flex;
    flex-direction: column;
    justify-content: center;
    min-height: 60vh;
}

@media (max-width: 768px) {
    .hero-content {
        min-height: 60vh;
    }
}

/* --- About Page Styles --- */
.bio-paragraph {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 1.5rem;
    text-align: center;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.tagline {
    font-family: 'Mr De Haviland', cursive;
    font-size: 3rem;
    color: var(--serenity-teal);
    font-weight: normal;
    line-height: 1.2;
    margin-top: 2rem;
}

.approach-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: rgba(255, 255, 255, 0.8);
    border-radius: 15px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    height: 100%;
}

.approach-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.approach-icon {
    font-size: 2.5rem;
    color: var(--serenity-teal);
}

.approach-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-gray);
    margin-bottom: 1rem;
}

.approach-description {
    font-size: 1rem;
    line-height: 1.6;
    color: var(--slate-gray);
}

/* --- Footer --- */
.footer-section {
    position: relative;
    background-color: var(--calm-blue);
    color: var(--slate-gray);
    z-index: 2;
}

/* --- CORRECTED FOOTER WAVE --- */
.top-wave {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
    /*transform: translateY(-100%); /* Pulls the wave container up to overlap the white section */
    opacity: 1;
}

.top-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 150px;
    transform: rotate(180deg); /* Flips the SVG to make the curve appear at the top */
    opacity: 1;
}

.top-wave .shape-fill {
    fill: var(--healing-sage); /* Must match the footer's background color */
    opacity: 1;
}

.footer-content {
     /* No padding-top needed as the wave is now positioned outside the footer's flow */
    padding: 2rem 1.5rem 3rem;
}
.footer-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    height: 50px;
    background-color: var(--healing-sage);
    border-radius: 50%;
    color: var(--slate-gray) !important;
    transition: all 0.3s ease;
    font-size: 1.2rem;
    text-decoration: none;
}

.footer-icon i,
.footer-icon .fa-solid,
.footer-icon .fa-brands,
.footer-icon .fa-regular,
.footer-icon .fas {
    font-size: 1.2rem;
    line-height: 1;
    color: var(--slate-gray) !important;
}
.footer-icon:hover {
    background-color: var(--serenity-teal);
    color: var(--tranquil-white);
}

/* --- Reponsiveness --- */
@media (max-width: 768px) {
    body {
        overflow-x: hidden;
        width: 100%;
    }

    .navbar {
        padding: 0 15px;
        position: relative;
        background-color: var(--tranquil-white);
    }

    #mission-vision {
        padding: 2rem 0;
        margin: 1rem 0;
    }

    .mission-vision-row {
        flex-direction: column;
        height: auto;
        margin-bottom: 1.5rem;
        border-radius: 15px;
    }

    .mission-vision-row:nth-child(2) {
        flex-direction: column;
    }

    .image-half {
        width: 100%;
        height: 250px;
        order: 1;
    }

    .text-half {
        width: 100%;
        padding: 2rem 1.5rem;
        order: 2;
    }

    .section-title {
        font-size: 1.8rem;
        margin-bottom: 1rem;
    }

    .section-title::after {
        width: 40px;
        height: 2px;
        bottom: -6px;
    }

    .text-half p {
        font-size: 1rem;
    }

    .wave-divider-mission, .wave-divider-vision {
        display: none;
    }

    #conditions .columns {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    #conditions .column {
        width: 100%;
        max-width: 500px;
    }

    .top-wave{
     display:none;
  }

    .navbar {
        padding: 0 15px;
        position: relative;
        background-color: var(--tranquil-white);
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        width: 100%;
        min-height: auto;
        padding: 10px 15px;
    }

    .navbar-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-controls-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-contact {
        order: -1;
        margin: 0;
        padding: 0.5em 1em;
        font-size: 0.9rem;
        background-color: var(--healing-sage) !important;
        color: var(--slate-gray) !important;
    }

    .navbar-burger {
        margin-left: auto;
        height: 2.5rem;
        width: 2.5rem;
    }

    .navbar-brand .navbar-logo {
        display: none; /* Hide navbar logo on mobile */
        margin: 0 auto; /* Center the logo */
    }

    .mobile-hero-logo {
        display: block !important; /* Make mobile logo visible */
        order: 1; /* Logo first */
        margin-bottom: 1rem;
        text-align: center; /* Center the logo */
    }

    .mobile-hero-logo img {
        height: 150px; /* Slightly smaller logo */
        width: auto;
    }

    .hero-section {
        padding: 0 15px;
        min-height: auto;
    }

    .hero-text-column {
        text-align: center; /* Center headings on mobile */
        order: 3; /* Headings third */
        padding-top: 0.5rem !important;
        margin-top: -1rem; /* Pull up to reduce gap */
    }

    .hero-title {
        font-size: 3rem; /* Reduced font size for mobile */
        line-height: 1.1;
        margin-bottom: 0.5rem;
    }

    .hero-subtitle {
        font-size: 1rem; /* Smaller subtitle */
        letter-spacing: 2px;
        margin-top: 0.25rem;
    }

    .hero-image-column {
        text-align: center; /* Center image on mobile */
        order: 2; /* Image second */
        margin-bottom: 0.5rem;
    }

    .hero-image-wrapper {
        min-height: 330px; /* Slightly reduced height */
        position: relative;
    }

    .hero-image {
        max-width: 280px; /* Slightly smaller image */
        position: relative;
        bottom: auto;
        right: auto;
        margin: 0 auto;
    }

    .hero-section .columns.is-vcentered {
        align-items: center;
    }

    .hero-section .columns.is-vcentered {
        flex-direction: column; /* Stack columns vertically */
        margin: 0 !important;
    }

    .navbar-menu.is-active {
        position: static;
        box-shadow: none;
    }

    /* --- Sub-page Hero Styles for Mobile --- */
    .hero-subpage .hero-body .container .hero-content .hero-title-subpage {
        font-size: 2rem !important;
    }
    
    .hero-subpage .hero-body .container .hero-content .hero-subtitle-subpage {
        font-size: 0.9rem !important;
    }
}

/* Revert desktop specific styles for hero section if flex-direction was added to .hero-section .container */
.hero-section .container {
    display: block; /* Revert to default block for desktop */
}

/* Ensure desktop ordering is default */
.hero-image-column {
    order: unset;
}

.hero-text-column {
    order: unset;
}

@media (min-width: 769px) and (max-width: 1023px) {
    .hero-section .container {
        padding: 0 30px;
        max-width: 1200px;
        margin: 0 auto;
    }

    .hero-section .columns.is-vcentered {
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 !important;
    }

    .hero-image-column {
        width: 40%;
        order: 1;
        display: flex;
        justify-content: flex-end;
        align-items: center;
        padding-left: 1rem;
    }

    .hero-text-column {
        width: 60%;
        order: 2;
        padding-right: 2rem;
        text-align: left;
    }

    .hero-image-wrapper {
        min-height: 400px;
        max-height: 500px;
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .hero-image {
        max-width: 350px;
        width: 100%;
        height: auto;
        position: relative;
        bottom: auto;
        right: auto;
        border: 6px solid var(--tranquil-white);
        border-radius: 12px;
        box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    }

    .hero-title {
        font-size: 3rem;
        line-height: 1.1;
        margin-bottom: 0.5rem;
        text-align: left;
    }

    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
        margin-top: 0.5rem;
        text-align: left;
        text-transform: uppercase;
    }

    .hero-title-container {
        max-width: 500px;
    }

    .hero-section .hero-body {
        padding-top: 2rem;
        padding-bottom: 2rem;
    }

    .navbar .container {
        width: 100%;
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 15px;
    }

    .navbar-mobile-controls {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
        height: 100%;
    }

    .mobile-controls-wrapper {
        display: flex;
        align-items: center;
        justify-content: space-between;
        width: 100%;
    }

    .mobile-contact {
        order: -1;
        margin: 0;
        padding: 0.3em 0.7em;
        font-size: 0.75rem;
        background-color: var(--healing-sage) !important;
        color: var(--slate-gray) !important;
    }

    .navbar-burger {
        margin-left: auto;
        height: 2.25rem;
        width: 2.25rem;
    }

    .navbar-brand {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        padding: 0;
    }

    .navbar-brand .navbar-logo {
        display: none;
    }

    .mobile-hero-logo {
        display: none; /* Hide mobile logo in this resolution range */
    }

    .hero-section {
        padding-top: 10px; /* Adjust to account for navbar height */
        background: linear-gradient(to bottom right, var(--calm-blue), rgba(255, 255, 255, 0.7)); /* Restore blue gradient */
    }

    .top-wave {
        display: none;
    }

    .wave-divider {
        position: absolute;
        bottom: -25px;
        left: 0;
        width: 100%;
        overflow: hidden;
        line-height: 0;
        z-index: 10;
    }

    .hero-section .container {
        padding-top: 0;
    }

    .hero-image-wrapper {
        min-height: auto;
    }

    .hero-title {
        font-size: 2.5rem; /* Slightly smaller title */
    }

    .hero-subtitle {
        font-size: 0.9rem;
    }

    .navbar-brand .navbar-logo {
        display: none;
        margin: 0 auto;
    }

    .mobile-hero-logo {
        display: block !important;
        text-align: center;
        margin-bottom: 1rem;
    }

    .mobile-hero-logo img {
        height: 200px;
        width: auto;
        margin: 0 auto;
    }

    .navbar-menu {
        background-color: var(--tranquil-white);
        box-shadow: none;
    }

    .navbar-menu.is-active {
        display: block;
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        background-color: var(--tranquil-white);
        box-shadow: 0 8px 16px rgba(10, 10, 10, 0.1);
        z-index: -20;
        padding: 1rem 0;
    }

    .navbar-end {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 15px;
        padding: 1rem 0;
    }

    .consultation-info {
        padding: 0;
        margin-bottom: 1.5rem;
    }

    .consultation-note-text {
        font-size: 0.8rem;
    }

    .insurance-check-inline {
        padding: 1.25rem;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .insurance-check-title {
        font-size: 1.15rem;
    }

    .insurance-check-text {
        font-size: 0.85rem;
    }

    .insurance-check-button {
        padding: 0.7rem 1.6rem !important;
        font-size: 0.9rem !important;
    }
}

/* --- Insurance Check Inline Styles --- */
.insurance-check-inline {
    background: linear-gradient(135deg, rgba(75, 180, 168, 0.08) 0%, rgba(159, 197, 175, 0.08) 100%);
    border-left: 4px solid var(--serenity-teal);
    border-radius: 8px;
    padding: 1.5rem;
    text-align: center;
}

.insurance-check-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.3rem;
    color: var(--serenity-teal);
    font-weight: 600;
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.insurance-check-text {
    font-size: 0.9rem;
    line-height: 1.5;
    color: var(--slate-gray);
    margin-bottom: 0;
}

.insurance-check-button {
    background-color: var(--healing-sage) !important;
    color: var(--slate-gray) !important;
    font-weight: 600 !important;
    border: none;
    padding: 0.75rem 1.75rem !important;
    font-size: 0.9rem !important;
    transition: all 0.3s ease;
}

.insurance-check-button:hover {
    background-color: var(--serenity-teal) !important;
    color: var(--tranquil-white) !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(75, 180, 168, 0.25);
}

/* --- Contact Page Styles --- */
#contact-intro {
    padding-bottom: 2rem !important;
}

#contact-form-section {
    padding-top: 2rem !important;
    padding-bottom: 4rem !important;
}

/* --- Consultation Info Styles --- */
.consultation-info {
    text-align: center;
    padding: 0;
}

.consultation-note-text {
    font-size: 0.8rem;
    line-height: 1.5;
    color: var(--slate-gray);
    margin-bottom: 0;
    opacity: 0.85;
}

/* --- Booking Page Styles --- */
.booking-card {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.95) 0%, rgba(191, 220, 229, 0.3) 100%);
    border: 1px solid var(--healing-sage);
    border-radius: 20px;
    padding: 3rem;
    text-align: center;
    box-shadow: 0 10px 25px rgba(75, 180, 168, 0.15);
    transition: all 0.3s ease;
}

.booking-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(75, 180, 168, 0.25);
}

.booking-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.2rem;
    color: var(--serenity-teal);
    font-weight: 700;
    margin-bottom: 1.5rem;
    position: relative;
}

.booking-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--serenity-teal), var(--healing-sage));
    border-radius: 2px;
}

.booking-description {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--slate-gray);
    max-width: 600px;
    margin: 0 auto 2rem auto;
}

.booking-info {
    margin-top: 3rem;
}

.info-item {
    text-align: center;
    padding: 2rem 1rem;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 15px;
    transition: all 0.3s ease;
    height: 100%;
}

.info-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.8);
    box-shadow: 0 8px 20px rgba(75, 180, 168, 0.2);
}

.info-icon {
    font-size: 2.5rem;
    color: var(--serenity-teal);
    margin-bottom: 1rem;
}

.info-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--slate-gray);
    margin-bottom: 0.5rem;
}

.info-description {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-gray);
}

/* Mobile responsive styles for booking page */
@media (max-width: 768px) {
    .booking-card {
        padding: 2rem 1.5rem;
        margin: 0 1rem;
    }
    
    .booking-title {
        font-size: 1.8rem;
    }
    
    .booking-description {
        font-size: 1rem;
    }

    .consultation-info {
        padding: 0;
    }

    .consultation-note-text {
        font-size: 0.75rem;
        line-height: 1.4;
    }

    .insurance-check-inline {
        padding: 1rem;
        margin-top: 1.5rem !important;
        margin-bottom: 1.5rem !important;
    }

    .insurance-check-title {
        font-size: 1.1rem;
        margin-bottom: 0.5rem;
    }

    .insurance-check-text {
        font-size: 0.8rem;
        line-height: 1.4;
    }

    .insurance-check-button {
        padding: 0.6rem 1.5rem !important;
        font-size: 0.85rem !important;
    }
    
    .booking-info .columns {
        flex-direction: column;
        gap: 1rem;
    }
    
    .info-item {
        padding: 1.5rem 1rem;
    }
}

/* --- Smaller Hero Styles for Non-Landing Pages --- */
.hero-title-smaller {
    font-size: 2.5rem !important;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.hero-subtitle-smaller {
    font-size: 1rem !important;
    line-height: 1.6;
    margin-top: 0.5rem;
}

@media (max-width: 768px) {
    .hero-title-smaller {
        font-size: 2rem !important;
    }
    
    .hero-subtitle-smaller {
        font-size: 0.9rem !important;
    }
}

/* --- Hero Body with Navigation Overlap Fix --- */
.hero-body-with-nav {
    padding-top: 100px !important;
}

@media (max-width: 768px) {

.booking-button-custom:hover {
    background-color: var(--serenity-teal);
    color: var(--tranquil-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(75, 180, 168, 0.3);
}

.booking-button-custom:hover .booking-button-text,
.booking-button-custom:hover .booking-button-subtext {
    color: var(--tranquil-white);
}

.booking-button-text {
    font-family: 'Montserrat', sans-serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: 2px;
    color: var(--serenity-teal);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.booking-button-subtext {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.8rem;
    color: var(--serenity-teal);
    opacity: 0.8;
    margin-top: 0.25rem;
    transition: color 0.3s ease;
}

.booking-powered {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    color: var(--slate-gray);
    opacity: 0.6;
    margin-top: 1rem;
    display: block;
}

@media (max-width: 768px) {
    .booking-button-custom {
        padding: 0.8rem 1.5rem;
        min-width: 180px;
    }
    
    .booking-button-text {
        font-size: 1.1rem;
    }
    
    .booking-button-subtext {
        font-size: 0.75rem;
    }
}
