/*
Theme Name: Osteopathy
Theme URI: https://example.com/osteopathy
Author: Your Name
Author URI: https://example.com
Description: A custom WordPress theme for osteopathy practice
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: osteopathy
Tags: custom, medical, osteopathy
*/

/* ==========================================================================
   Reset & Base Styles
   ========================================================================== */
    /* CSS File */
    @import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');
   * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Segoe UI", sans-serif;
    /* font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', sans-serif; */
    font-size: 16px;
    line-height: 1.6;
    color: #333;
    background-color: #fff;
}

a:hover {
    text-decoration: none !important;
}
/* ==========================================================================
   Header Styles
   ========================================================================== */

.site-header {
    background-color: #f5f5f5;
    padding: 15px 0;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 1000;
    transition: all 0.3s ease;
}

/* Scrolled state for sticky header */
.site-header.scrolled {
    background-color: rgba(245, 245, 245, 0.98);
    box-shadow: 0 2px 15px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(10px);
}

.header-container {
    max-width: 1536px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Logo Styles */
.site-branding {
    flex-shrink: 0;
}

.custom-logo-link {
    display: block;
    text-decoration: none;
}

.logo-wrapper {
    display: flex;
    align-items: center;
    gap: 15px;
}

.logo-icon svg {
    display: block;
}

.logo-text {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.logo-title {
    font-size: 22px;
    font-weight: 700;
    color: #2c3e50;
    letter-spacing: 1px;
}

.logo-tagline {
    font-size: 10px;
    font-weight: 500;
    color: #999;
    letter-spacing: 2px;
    margin-bottom: 2px;
}

.logo-subtitle {
    font-size: 11px;
    font-weight: 500;
    color: #50b3a2;
    letter-spacing: 2px;
    margin-top: -2px;
}

/* Navigation Styles */
.main-navigation {
    flex-grow: 1;
    display: flex;
    justify-content: center;
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 35px;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    color: #364153;
    text-decoration: none;
    font-size: 16px;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
}

.nav-menu a:hover,
.nav-menu .current-menu-item a {
    color: #50b3a2;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: #50b3a2;
    transition: width 0.3s ease;
}

/*.nav-menu a:hover::after,*/
/*.nav-menu .current-menu-item a::after {*/
/*    width: 100%;*/
/*}*/

/* Header CTA Button */
.header-cta {
    flex-shrink: 0;
}

.mobile-menu-cta {
    display: none;
}

.btn-book-appointment {
    display: inline-block;
    padding: 12px 28px;
    background-color: #429196;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 25px;
    transition: all 0.3s ease;
}

/*.btn-book-appointment:hover {*/
/*    background-color: #3a9484;*/
/*    transform: translateY(-2px);*/
/*    box-shadow: 0 4px 15px rgba(80, 179, 162, 0.3);*/
/*}*/

/* Mobile Menu Toggle */
.mobile-menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
    padding: 10px;
}

.menu-toggle-icon {
    display: block;
    width: 25px;
    height: 2px;
    background-color: #2c3e50;
    margin: 5px 0;
    transition: all 0.3s ease;
}

/* Remove all transparent header styles */
.home .site-header,
.page-template-front-page .site-header {
    background-color: #f5f5f5;
    box-shadow: 0px 1px 3px 0px #0000001A;

}

.home .site-header .logo-title,
.page-template-front-page .site-header .logo-title {
    color: #2c3e50;
    text-shadow: none;
}

.home .site-header .logo-tagline,
.page-template-front-page .site-header .logo-tagline {
    color: #999;
    text-shadow: none;
}

.home .site-header .logo-subtitle,
.page-template-front-page .site-header .logo-subtitle {
    color: #50b3a2;
    text-shadow: none;
}

.home .site-header .logo-icon svg circle,
.home .site-header .logo-icon svg path,
.home .site-header .logo-icon svg ellipse,
.page-template-front-page .site-header .logo-icon svg circle,
.page-template-front-page .site-header .logo-icon svg path,
.page-template-front-page .site-header .logo-icon svg ellipse {
    stroke: #c48b8b;
    fill: #c48b8b;
}

.home .site-header .nav-menu a,
.page-template-front-page .site-header .nav-menu a {
    color: #2c3e50;
    text-shadow: none;
}

.home .site-header .nav-menu a:hover,
.page-template-front-page .site-header .nav-menu a:hover {
    color: #50b3a2;
}

.home .site-header .nav-menu a::after,
.page-template-front-page .site-header .nav-menu a::after {
    background-color: #50b3a2;
}

/* ==========================================================================
   Hero Slider Section
   ========================================================================== */

.hero-slider-section {
    position: relative;
    width: 100%;
    height: 758px;
    min-height: 600px;
    overflow: hidden;
}

.hero-swiper {
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to right, rgba(0, 0, 0, 0.3) 0%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-content-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    padding: 20px;
    z-index: 2;
}

.hero-content {
    max-width: 900px;
    text-align: center;
    color: #fff;
    animation: fadeInUp 1s ease-out;
}

.hero-title {
    font-size: 72px;
    font-weight: 700;
    color: #fff;
    text-transform: uppercase;
    line-height: normal;
}

.hero-subtitle {
    font-size: 30px;
    font-weight: 400;
    margin: 10px 0;
    letter-spacing: 3px;
    color: #fff;
}

.hero-description {
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 35px;
    max-width: 610px;
    margin-left: auto;
    margin-right: auto;
    color: #f5f5f5;
    font-weight: 300;
}

.hero-description p {
    margin-bottom: 0;
    font-size: 20px;
    font-weight: 400;
    color: #E5E7EB;
    letter-spacing: normal;
    line-height: 32px;
}

.hero-button-wrapper {
    margin-top: 35px;
}

.hero-button {
    display: inline-block;
    padding: 16px 25px;
    background-color: #429196;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
    text-decoration: none;
    border-radius: 80px;
    transition: all 0.3s ease;
    text-transform: capitalize;
    letter-spacing: 0.5px;
}

.hero-button:hover {
    background-color: #3a9484;
    transform: translateY(-3px);
    box-shadow: 0 6px 25px rgba(80, 179, 162, 0.5);
    text-decoration: none;
}

/* Swiper Navigation Buttons */
.hero-swiper .swiper-button-prev,
.hero-swiper .swiper-button-next {
    color: #fff;
    width: 50px;
    height: 50px;
    background-color: rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    transition: all 0.3s ease;
    backdrop-filter: blur(5px);
}

.hero-swiper .swiper-button-prev:after,
.hero-swiper .swiper-button-next:after {
    font-size: 20px;
}

.hero-swiper .swiper-button-prev:hover,
.hero-swiper .swiper-button-next:hover {
    background-color: rgba(80, 179, 162, 0.9);
    transform: scale(1.1);
}

/* Swiper Pagination */
.hero-swiper .swiper-pagination {
    bottom: 40px;
}

.hero-swiper .swiper-pagination-bullet {
    width: 12px;
    height: 12px;
    background-color: #fff;
    opacity: 0.6;
    transition: all 0.3s ease;
}

.hero-swiper .swiper-pagination-bullet-active {
    opacity: 1;
    background-color: #50b3a2;
    width: 35px;
    border-radius: 6px;
}

/* Scroll Indicator */
.scroll-indicator {
    position: absolute;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 10;
    cursor: pointer;
}

.scroll-icon {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.9);
    border-radius: 25px;
    position: relative;
    background: transparent;
}

.scroll-icon:before {
content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 8px;
    border: 2px solid #fff;
    border-radius: 10px;
    transform: translate(-50%, -50%);
    animation: scrollBounce 2s infinite;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

@keyframes scrollDown {
    0% {
        opacity: 0;
        top: 8px;
    }
    50% {
        opacity: 1;
        top: 16px;
    }
    100% {
        opacity: 0;
        top: 28px;
    }
}

@keyframes scrollBounce {
    0%, 100% {
        top: 45%;
        opacity: 0;
    }
    50% {
        top: 55%;
        opacity: 1;
    }
}

/* ==========================================================================
   Floating Book Now Button
   ========================================================================== */

.book-now-floating {
    position: fixed;
    bottom: 35px;
    right: 35px;
    z-index: 999;
    background-color: #429196;
    color: #fff;
    padding: 14px 28px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    box-shadow: 0px 25px 50px -12px #00000040;
    display: flex;
    align-items: center;
    gap: 10px;
    height: 58px;
}

.book-now-floating:before {
    content: '';
    display: inline-block;
    width: 20px;
    height: 20px;
    background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" fill="white"><path d="M19 4h-1V2h-2v2H8V2H6v2H5c-1.11 0-1.99.9-1.99 2L3 20c0 1.1.89 2 2 2h14c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 16H5V10h14v10zM9 14H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2zm-8 4H7v-2h2v2zm4 0h-2v-2h2v2zm4 0h-2v-2h2v2z"/></svg>');
    background-size: contain;
    background-repeat: no-repeat;
}

/*.book-now-floating:hover {*/
/*    background-color: #3a9484;*/
/*    transform: translateY(-3px);*/
/*    box-shadow: 0 6px 25px rgba(80, 179, 162, 0.5);*/
/*    text-decoration: none;*/
/*}*/

body.book-modal-open {
    overflow: hidden;
}

.book-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: none;
}

.book-modal.is-open {
    display: block;
}

.book-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(17, 24, 39, 0.5);
}

.book-modal__panel {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    max-width: 448px;
    margin: 0;
    background: #fff;
    border-radius: 25px;
    padding: 28px;
    z-index: 9999;
    box-shadow: 0 10px 55px rgba(0, 0, 0, 0.22);
    /* Changed to 0.4s and cubic-bezier for a smoother feel */
    animation: slideUp 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

@keyframes slideUp {
    from { 
        opacity: 0;
        transform: translate(-50%, 20%); 
    }
    to { 
        opacity: 1;
        transform: translate(-50%, -50%); 
    }
}


.book-modal__close {
    position: absolute;
    top: 1px;
    right: 1px;
    border: 0;
    background: transparent;
    color: #4A5565;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.book-modal__title {
    margin: 0;
    font-size: clamp(18px, 5vw, 28px);
    line-height: 1.15;
    color: #101828;
    font-weight: 700;
    text-align: center;
}

.book-modal__subtitle {
    margin: 5px 0 22px;
    color: #364153;
    font-size: 18px;
    font-weight: 400;
    text-align: center;
}

.book-modal__qr-wrap {
    border: 2px solid #C1EADA;
    border-radius: 16px;
    padding: 16px;
    background: #F7FEFB;
    min-height: 300px;
    display: flex;
    align-items: center;
    justify-content: center;

}

.book-modal__qr-image {
    max-width: 100%;
    width: 280px;
    height: auto;
    border-radius: 0;
    display: block;
    image-rendering: pixelated;
    image-rendering: crisp-edges;
}

.book-modal__qr-link {
    display: inline-block;
}

.book-modal__qr-placeholder {
    color: #6b7280;
    font-size: 0.95rem;
}

.book-modal__contact {
    list-style: none;
    margin: 18px 0 0;
    padding: 0;
    display: grid;
    justify-content: center;
    gap: 10px;
}

.book-modal__contact li {
    color: #4b5563;
    font-size: 0.98rem;
    line-height: 1.45;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin: 6px 0 0;
}

.book-modal__contact strong {
    color: #111827;
    font-weight: 700;
}

.book-modal__dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #009966;
    flex-shrink: 0;
}

.book-modal__cta-wrap {
    margin: 14px 0 0;
    text-align: center;
}

.book-modal__cta {
    display: inline-block;
    padding: 10px 16px;
    border-radius: 10px;
    text-decoration: none;
    background: #2f8d88;
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
}

.book-modal__cta:hover {
    background: #26756f;
    color: #fff;
}

/* ==========================================================================
   Home Extra Sections (Philosophy / Expect / Approach)
   ========================================================================== */
.home-extra-container {
    max-width: 1295px;
    margin: 0 auto;
    padding: 0 20px;
}

.home-extra-title {
    margin: 0;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.2;
    color: #101828;
}

.home-extra-subtitle p {
    margin: 0;
    font-size: 16px;
    line-height: 1.65;
    color: #4a5565;
}

.home-philosophy-section {
    background: #eff3f5;
    padding: 88px 0 82px;
    text-align: center;
}

.home-philosophy-section .home-extra-title {
    margin-bottom: 10px;
}

.home-philosophy-section .home-extra-subtitle {
    max-width: 600px;
    margin: 0 auto;
}

.home-philosophy-grid {
    margin-top: 42px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.home-philosophy-card {
    position: relative;
    background: #f8fbfc;
    border-radius: 16px;
    min-height: 84px;
    border: 1px solid rgba(127, 150, 168, 0.2);
    box-shadow: 0 10px 24px rgba(16, 24, 40, 0.04);
    display: flex;
    align-items: center;
    padding: 0 24px;
    justify-content: flex-start;
    overflow: hidden;
}

.home-philosophy-card::before {
    content: "2";
    position: absolute;
    left: 12px;
    top: 2px;
    color: rgba(16, 24, 40, 0.05);
    font-size: 58px;
    font-weight: 700;
    line-height: 1;
}

.home-philosophy-card span {
    position: relative;
    z-index: 1;
    font-size: 13px;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: #2f8d88;
    text-transform: uppercase;
}

.home-philosophy-footer {
    max-width: 940px;
    margin: 28px auto 0;
    font-size: 15px;
    line-height: 1.75;
    color: #374151;
}

.home-expect-section {
    background: radial-gradient(circle at 3% 50%, rgba(38, 174, 166, 0.45), rgba(2, 23, 29, 0) 28%), radial-gradient(circle at 98% 50%, rgba(131, 226, 255, 0.28), rgba(2, 23, 29, 0) 22%), linear-gradient(90deg, #02161d 0%, #001018 100%);
    padding: 74px 0;
}

.home-expect-layout {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 34px;
    align-items: center;
}

.home-expect-title {
    color: #ffffff;
    margin-bottom: 12px;
}

.home-expect-section .home-extra-subtitle p {
    color: #d1d9df;
}

.home-expect-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.home-expect-pill {
    min-height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(148, 163, 184, 0.3);
    background: rgba(8, 28, 36, 0.82);
    color: #f8fafc;
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 0 18px;
    font-size: 13px;
    line-height: 1.35;
    font-weight: 500;
}

.home-expect-pill-icon {
    width: 18px;
    height: 18px;
    flex-shrink: 0;
    border-radius: 999px;
    border: 1px solid rgba(110, 231, 211, 0.65);
    color: #6ee7d3;
    font-size: 11px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.home-expect-pill-icon img {
    width: 12px;
    height: 12px;
    object-fit: contain;
    display: block;
}

.home-approach-section {
    background: #f5f7f8;
    padding: 80px 0 96px;
}

.home-approach-layout {
    display: grid;
    grid-template-columns: minmax(280px, 525px) 1fr;
    gap: 66px;
    align-items: center;
}

.home-approach-image-wrap {
    position: relative;
    width: 100%;
    max-width: 430px;
}

.home-approach-image-wrap::before {
    content: "";
    position: absolute;
    top: -9px;
    left: -9px;
    right: 15px;
    bottom: 15px;
    border: 1px solid #62bfc2;
    border-radius: 12px;
    transform: rotate(3deg);
}

.home-approach-image-frame {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    aspect-ratio: 1 / 1;
    background: #d9dee2;
}

.home-approach-image-frame img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

.home-approach-title {
    margin-bottom: 12px;
}

.home-approach-section .home-extra-subtitle {
    margin-bottom: 18px;
}

.home-approach-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 11px;
}

.home-approach-list li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    line-height: 1.65;
    color: #1f2937;
}

.home-approach-list-icon {
    width: 16px;
    height: 16px;
    flex-shrink: 0;
    border-radius: 999px;
    border: 1px solid #56babf;
    color: #56babf;
    font-size: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-top: 4px;
}

.home-approach-list-icon img {
    width: 10px;
    height: 10px;
    object-fit: contain;
    display: block;
}

@media (max-width: 991px) {
    .home-philosophy-grid {
        grid-template-columns: 1fr;
    }

    .home-expect-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .home-expect-grid {
        grid-template-columns: 1fr;
    }

    .home-approach-layout {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .home-approach-image-wrap {
        max-width: 540px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .home-philosophy-section {
        padding: 64px 0 60px;
    }

    .home-expect-section {
        padding: 58px 0;
    }

    .home-approach-section {
        padding: 60px 0 70px;
    }

    .home-philosophy-card {
        min-height: 72px;
    }
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
    padding: 100px 20px;
    background: linear-gradient(180deg, rgba(66, 145, 150, 0.05) 0%, rgba(66, 145, 150, 0) 100%);
}

.about-container {
    max-width: 1295px;
    margin: 0 auto;
}

.about-main-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #101828;
}

.about-content-wrapper {
    display: grid;
    /* grid-template-columns: 1fr 1.2fr; */
    /* This tells the first column: "Don't get bigger than your content (684px)" */
    grid-template-columns: minmax(0, 684px) 1.2fr;
    /* gap: 10px; */
    align-items: center;
}

.about-image-wrapper {
    position: relative;
}

/* .about-image-frame {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(80, 179, 162, 0.15);
    border: 8px solid #50b3a2;
} */

.about-image-frame {
    /* 1. This sets the desktop limit */
    max-width: 680px; 
    
    /* 2. This allows it to shrink on mobile */
    width: 100%; 
    
    /* 3. Centers the frame if the screen is wider than 684px */
    margin: 0 auto;
}
.about-image-frame img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text-wrapper {
    padding-left: 5px;
}

.about-title {
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #101828;
}

.about-description {
    margin-bottom: 30px;
}

.about-description p {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.8;
    color: #4A5565;
    margin-bottom: 10px;
}

.about-description p:last-child {
    margin-bottom: 0;
}

.about-credentials {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 15px;
    box-shadow: 0px 4px 6px -1px #0000001A;
    border-top: 0.1px solid #0000000f;
    padding: 20px;
    border-radius: 14px;
    transition: all 0.3s ease;
}

.credential-item:hover {
    background-color: #e8f4f2;
    transform: translateX(5px);
}

.credential-icon {
    width: 40px;
    height: 40px;
    background: #4291961A;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.credential-icon svg {
    width: 24px;
    height: 24px;
    color: #fff;
    fill: #fff;
}

.credential-content {
    flex: 1;
}

.credential-label {
    font-size: 14px;
    color: #6A7282;
    margin-bottom: 3px;
    font-weight: 400;
}

.credential-value {
    font-size: 1rem;
    font-weight: 600;
    color: #101828;
    line-height: 1.4;
}

/* About Section Responsive */
@media (max-width: 1024px) {
    .about-content-wrapper {
        gap: 60px;
    }
    
    .about-main-title {
        font-size: 2.5rem;
        margin-bottom: 60px;
    }
    
    .about-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .about-section {
        padding: 60px 20px;
    }
    
    .insight-details-page {
        padding: 40px 20px !important;
    }
    
    .about-content-wrapper {
        grid-template-columns: 1fr;
        gap: 15px;
    }
    
    .about-main-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .about-text-wrapper {
        padding-left: 0;
    }
    
    .about-title {
        font-size: 1.8rem;
        text-align: center;
    }
    
    .about-description {
        text-align: center;
    }
    
    .about-credentials {
        grid-template-columns: 1fr;
        gap: 20px;
    }
}

@media (max-width: 480px) {
    .about-section {
        padding: 50px 15px;
    }
    
    .about-main-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .about-title {
        font-size: 1.5rem;
    }
    
    .about-description p {
        font-size: 1rem;
    }
    
    .credential-item {
        padding: 18px;
    }
    
    .credential-icon {
        width: 40px;
        height: 40px;
    }
    
    .credential-icon svg {
        width: 20px;
        height: 20px;
    }
    
    .credential-value {
        font-size: 0.95rem;
    }
}

/* ==========================================================================
   Layout & Content
   ========================================================================== */

.site-content {
    /* max-width: 1200px; */
    width: 100%;
    /* margin: 60px auto; */
    padding: 0 0;
}

.content-area {
    width: 100%;
}

.site-footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
}


.insight-details-page{
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 20px;
}

.grid-box {
    display: grid;
    grid-template-columns: 530px;
    gap: 35px;
    margin-bottom: 50px;
    justify-content: center;
    align-items: center;
}

.article-hero {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0px 10px 15px -3px #0000001A;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.insight-title {
font-size: 20px !important;
    font-weight: 700;
    margin-bottom: 15px !important;
    color: #2c3e50 !important;
    line-height: 1.3;
}

.insight-body {
    margin-bottom: 20px !important;
      padding: 30px 30px 0 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.article-content {
    text-align: center;
}

.back-to-insights {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background-color: #429196;
    height: 48px;
    color: #fff !important;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 30px;
        margin-top: 1rem;
}

.back-to-insights a{
    color: #fff;
}

.back-to-insights:hover {
    background-color: #3a9484;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(80, 179, 162, 0.3);
    text-decoration: none;
}
/* ==========================================================================
   Posts & Pages
   ========================================================================== */

/* .post,
.page {
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid #e0e0e0;
} */

.entry-header {
    margin-bottom: 20px;
}

.entry-title {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: #2c3e50;
}

.entry-title a {
    color: #2c3e50;
    text-decoration: none;
}

.entry-title a:hover {
    color: #50b3a2;
}

.entry-meta {
    font-size: 0.9rem;
    color: #777;
    margin-bottom: 20px;
}

/*.entry-content {*/
/*    margin-bottom: 20px;*/
/*}*/

.entry-content p {
    line-height: 1.7;
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #101828;
}

.span.nav-label {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
    font-weight: 400;
    margin-bottom: 8px;
}

.nav-previous a {
    color: #429196;
    font-weight: 400;
    font-size: 16px;
}

.article-navigation {
    display: flex;
    column-gap: 15px;
    justify-content: center;
    flex-wrap: wrap;
}

.nav-previous {
    margin-bottom: 8px;
}

.nav-next a {
    color: #429196;
    font-weight: 400;
    font-size: 16px;
}

.entry-content img {
    max-width: 100%;
    height: auto;
}

.entry-content h1,
.entry-content h2,
.entry-content h3,
.entry-content h4,
.entry-content h5,
.entry-content h6 {
    margin-top: 1.5em;
    margin-bottom: 0.5em;
    color: #2c3e50;
}

/* ==========================================================================
   Buttons & Links
   ========================================================================== */

a {
    color: #50b3a2;
    text-decoration: none;
}

a:hover {
    text-decoration: underline;
}

.button,
button,
input[type="submit"] {
    background-color: #50b3a2;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    transition: background-color 0.3s;
}

/*.button:hover,*/
/*button:hover,*/
/*input[type="submit"]:hover {*/
/*    background-color: #3a9484;*/
/*    text-decoration: none;*/
/*}*/

/* ==========================================================================
   Responsive Styles
   ========================================================================== */

@media (max-width: 1024px) {
    .header-container {
        padding: 0 30px;
    }
    
    .nav-menu {
        gap: 25px;
    }
    
    .nav-menu a {
        font-size: 14px;
    }
    
    .hero-title {
        font-size: 4rem;
        letter-spacing: 6px;
    }
    
    .hero-subtitle {
        font-size: 1.3rem;
    }
    
    .hero-description {
        font-size: 1rem;
    }
}

@media (max-width: 1199px) {
    /* Header Mobile */
    .header-container {
        padding: 0 20px;
        flex-wrap: wrap;
    }
    
    .site-branding {
        order: 1;
    }
    
    .mobile-menu-toggle {
        display: block;
        order: 3;
    }
    
    .header-cta {
        display: none;
    }
    
    .btn-book-appointment {
        padding: 10px 20px;
        font-size: 13px;
    }
    
    .main-navigation {
        order: 4;
        width: 100%;
        margin-top: 15px;
        display: none;
    }
    
    .main-navigation.active {
        display: block;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        background-color: #fff;
        border-radius: 8px 8px 0 0;
        overflow: hidden;
        box-shadow: 0 0px 10px rgba(0, 0, 0, 0.1);
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid #f0f0f0;
    }
    
    .nav-menu li:last-child {
        border-bottom: none;
    }
    
    .nav-menu a {
        padding: 15px 20px;
        display: block;
    }
    
    .nav-menu a::after {
        display: none;
    }

    .mobile-menu-cta {
        display: block;
        background-color: #fff;
        border-top: 1px solid #f0f0f0;
        border-radius: 0 0 8px 8px;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
        padding: 16px 20px;
    }

    .mobile-menu-cta .btn-book-appointment {
        display: block;
        text-align: center;
        width: 100%;
    }
    
    /* Content Sections Mobile */
    .content-section {
        padding: 50px 20px;
    }
    
    .section-container.full-width {
        padding: 0 20px;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .section-text {
        font-size: 1rem;
    }
    
    .content-section.has-image-left .section-container,
    .content-section.has-image-right .section-container {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .content-section.has-image-left .section-image,
    .content-section.has-image-right .section-image {
        order: 1;
    }
    
    .content-section.has-image-left .section-content,
    .content-section.has-image-right .section-content {
        order: 2;
        text-align: center;
    }
    
    
    
    
    /* Hero Mobile */
    .hero-slider-section {
        height: 500px;
        min-height: 400px;
    }
    
    .hero-title {
        font-size: 2.8rem;
        letter-spacing: 4px;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
        letter-spacing: 2px;
    }
    
    .hero-description {
        font-size: 0.95rem;
        padding: 0 10px;
    }
    
    .hero-button {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        width: 40px;
        height: 40px;
    }
    
    .hero-swiper .swiper-button-prev:after,
    .hero-swiper .swiper-button-next:after {
        font-size: 16px;
    }
    
    .scroll-indicator {
        bottom: 30px;
    }
    
    .book-now-floating {
        bottom: 25px;
        right: 25px;
        padding: 12px 20px;
        font-size: 14px;
    }
    
    /* Content */
    .site-title {
        font-size: 1.5rem;
    }
    
    .entry-title {
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    /* Header Extra Small */
    .logo-title {
        font-size: 16px;
    }
    
    .logo-tagline {
        font-size: 8px;
    }
    
    .logo-subtitle {
        font-size: 9px;
    }
    
    .logo-icon svg {
        width: 45px;
        height: 45px;
    }
    
    .btn-book-appointment {
        padding: 8px 16px;
        font-size: 12px;
    }
    
    /* Hero Extra Small */
    .hero-slider-section {
        height: 400px;
        min-height: 350px;
    }
    
    .hero-title {
        font-size: 2rem;
        letter-spacing: 2px;
    }
    
    .hero-subtitle {
        font-size: 1rem;
        letter-spacing: 1px;
    }
    
    .hero-description {
        font-size: 0.9rem;
    }
    
    .hero-button {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .hero-swiper .swiper-button-prev,
    .hero-swiper .swiper-button-next {
        display: none;
    }
    
    .hero-swiper .swiper-pagination {
        bottom: 20px;
    }
    
    .scroll-indicator {
        bottom: 20px;
    }
    
    .book-now-floating {
        bottom: 20px;
        right: 20px;
        padding: 10px 15px;
        font-size: 13px;
        height: 48px;

    }
    
    .book-now-floating:before {
        font-size: 16px;
    }
    
    /* Content Sections Extra Small */
    .content-section {
        padding: 40px 15px;
    }
    
    .section-title {
    font-size: 1.6rem !important;
    margin-bottom: 15px !important;
    }
    
    .section-text {
        font-size: 0.95rem;
    }

}

/* ==========================================================================
   Content Sections
   ========================================================================== */

.content-section {
    padding: 80px 20px;
    position: relative;
}

.section-container {
    max-width: 1280px;
    margin: 0 auto;
}

.section-container.wide-width {
    max-width: 1400px;
}

.section-container.full-width {
    max-width: 100%;
    padding: 0 40px;
}

.section-image {
    margin-bottom: 40px;
    text-align: center;
}

.section-image img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.section-content {
    text-align: center;
}

.section-title {
    font-size: 3rem;
    font-weight: 700;
    margin-bottom: 30px;
    color: #101828;
    line-height: 1.2;
}

.section-text {
    max-width: 1285px;
    margin: 0 auto;
}

.section-text p {
    font-size: 18px;
    font-weight: 400;
    color: #4A5565;
    line-height: 36px;
}

.section-text p:nth-child(2) {
   max-width: 1280px;
}

.section-text p:last-child {
    margin-bottom: 0;
}

/* Alternative layout - Image & Text Side by Side */
.content-section.has-image-left .section-container,
.content-section.has-image-right .section-container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.content-section.has-image-left .section-image {
    order: 1;
}

.content-section.has-image-left .section-content {
    order: 2;
    text-align: left;
}

.content-section.has-image-right .section-image {
    order: 2;
}

.content-section.has-image-right .section-content {
    order: 1;
    text-align: left;
}

/* Green Border Style (like in screenshot) */
.content-section.bordered {
    border-top: 4px solid #50b3a2;
    border-bottom: 4px solid #50b3a2;
}

/* ==========================================================================
   Services Section
   ========================================================================== */

.services-section {
    padding: 80px 20px;
    /* background-color: #f8f9fa; */
    background: linear-gradient(180deg, rgba(66, 145, 150, 0.1) 0%, rgba(66, 145, 150, 0.05) 50%, rgba(66, 145, 150, 0) 100%);

}

.services-container {
    max-width: 1295px;
    margin: 0 auto;
}

.services-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #101828;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.service-card {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
box-shadow: 0px 20px 25px -5px #0000001A;

    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

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

.service-image {
    position: relative;
    width: 100%;
    height: 303px;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.service-card:hover .service-image img {
    transform: scale(1.05);
}

.service-icon {
    position: absolute;
    bottom: 20px;
    left: 20px;
    width: 56px;
    height: 56px;
    background-color: #50b3a2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-icon img {
    width: 28px;
    height: 28px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.service-icon svg {
    width: 40px;
    height: 40px;
}

.service-content {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.service-name {
    font-size: 24px;
    font-weight: 700;
    margin-bottom: 15px;
    color: #101828;
    line-height: 1.3;

    /*text-overflow: ellipsis;*/
    /*white-space: nowrap;*/
    /*overflow: hidden;*/
}

.service-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.service-description p {
    margin-bottom: 0;
    font-size: 16px;
    font-weight: 400;
    color: #4A5565;
}

.service-link {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #429196;
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.service-link:hover {
    gap: 10px;
    text-decoration: none;
}

.service-link .arrow {
    display: inline-flex;
    align-items: center;    
    transition: transform 0.3s ease;
}
.service-link .arrow img {
    display: block;
    width: 20px;
    height: 20px;
    object-fit: contain;
}
.service-link:hover .arrow {
    transform: translateX(3px);
}

/* Services Section Responsive */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 25px;
    }
}

@media (max-width: 992px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .services-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .grid-box {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .services-section {
        padding: 60px 20px;
    }
    
    .scroll-icon {
        width: 25px;
        height: 32px;
    }
    
    .scroll-icon:before {
        height: 4px;
        border: 2px solid #fff;
    }

.hero-description p {
    font-size: 16px;
    line-height: 22px;
}
    
.content-section {
    padding: 55px 20px;
}    
    
    
    
    
    
    .services-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .services-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .service-image {
        height: 220px;
    }
}

@media (max-width: 480px) {
    .services-section {
        padding: 50px 15px;
    }
    
    .services-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .service-image {
        height: 200px;
    }
    
    .service-content {
        padding: 20px;
    }
    
    .service-name {
        font-size: 1.2rem;
    }
}

/* ==========================================================================
   Techniques Section
   ========================================================================== */

.techniques-section {
    padding: 80px 20px;
}

.techniques-container {
    max-width: 1295px;
    margin: 0 auto;
}

.techniques-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 40px;
    color: #101828;
}

.techniques-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.technique-card {
    background: linear-gradient(135deg, rgba(66, 145, 150, 0.1) 0%, rgba(66, 145, 150, 0.05) 100%);
    border-radius: 16px;
    text-align: left;
    transition: all 0.3s ease;
    border: 1px solid #42919633;
    min-height: 200px;
    position: relative;
    overflow: hidden;
}

.technique-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    background: #dae6f0;
}

.technique-card-link {
    display: block;
    height: 100%;
    padding: 25px 25px;
    color: inherit;
    text-decoration: none;
}

.technique-icon {
    width: 48px;
    height: 48px;
    background: #429196;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 25px;
    transition: all 0.3s ease;
    overflow: hidden;
    flex-shrink: 0;

}

.technique-icon img {
    width: 24px;
    height: 24px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.technique-card:hover .technique-icon {
    transform: scale(1.08);
    box-shadow: 0 6px 20px rgba(80, 179, 162, 0.35);
}

.technique-icon svg {
    width: 32px;
    height: 32px;
    color: #fff;
}

.technique-name {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
    color: #101828;
    line-height: 1.4;
}

.technique-description {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #5a6c7d;
}

.technique-description p {
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    color: #4A5565;
}

/* Techniques Section Responsive */
@media (max-width: 992px) {
    .techniques-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .techniques-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .techniques-section {
        padding: 60px 20px;
    }
    
    .techniques-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .techniques-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .technique-card {
        min-height: auto;
    }

    .technique-card-link {
        padding: 35px 25px;
    }
}

@media (max-width: 480px) {
    .techniques-section {
        padding: 50px 15px;
    }
    
    .techniques-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .technique-card {
        min-height: auto;
    }

    .technique-card-link {
        padding: 20px 20px;
    }
    
    .technique-icon {
        width: 58px;
        height: 58px;
    }
    
    .technique-icon img {
        width: 24px;
        height: 24px;
    }
    
    .technique-name {
        font-size: 1.1rem;
    }
    
    .technique-description {
        font-size: 0.9rem;
    }
    
    .service-icon img {
        width: 24px;
        height: 24px;
    }
    
    .site-branding a img {
        width: 150px;
        height: auto;
    }
    
    .get-in-touch-header {
        margin-bottom: 20px;
    }
}

/* ==========================================================================
   Floating Book Now Button
   ========================================================================== */

/* ==========================================================================
   Blog Insights Archive & Single
   ========================================================================== */
/* Homepage Blog Insights Section */
.blog-insights-section {
    padding: 100px 20px;
    background-color: #fff;
}

.blog-insights-section .blog-insights-container {
    max-width: 1280px;
    margin: 0 auto;
}

.blog-insights-section .blog-insights-header {
    text-align: center;
    margin-bottom: 60px;
    /* border-top: 4px solid #2c3e50;
    padding-top: 40px; */
}

.blog-insights-section .blog-insights-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #101828;
}

.blog-insights-section .blog-insights-subtitle {
    font-size: 1rem;
    color: #4A5565;
    font-weight: 400;
    max-width: 900px;
    margin: 0 auto;
}

.blog-insights-section .blog-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-bottom: 50px;
}

.blog-insights-section .blog-insight-card {
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
box-shadow: 0px 10px 15px -3px #0000001A;
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-insights-section .blog-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
}

.blog-insights-section .blog-insight-image {
    position: relative;
    width: 100%;
    height: 273px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.blog-insights-section .blog-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-insights-section .blog-insight-card:hover .blog-insight-image img {
    transform: scale(1.05);
}

.blog-insights-section .blog-insight-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    background: #fff;
}

.blog-insights-section .blog-insight-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.blog-insights-section .blog-insight-date,
.blog-insights-section .blog-insight-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 14px;
    font-weight: 400;
    color: #6A7282;
}

.blog-insights-section .blog-insight-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.blog-insights-section .blog-insight-card-title a {
    color: #101828;
    font-size: 20px;
    text-decoration: none;
    transition: color 0.3s ease;
    font-weight: 700;
}

.blog-insights-section .blog-insight-card-title a:hover {
    color: #50b3a2;
}

.blog-insights-section .blog-insight-excerpt {
    font-size: 16px;
    line-height: 1.7;
    color: #4A5565;
    font-weight: 400;
    margin-bottom: 8px;
    flex-grow: 1;
}

.blog-insights-section .blog-insight-read-more {
    display: inline-flex;
        align-items: center;
        gap: 5px;
        color: #429196;
        font-weight: 400;
        font-size: 16px;
        text-decoration: none;
        transition: gap 0.3s ease;
}

.blog-insights-section .blog-insight-read-more:hover {
    gap: 10px;
    text-decoration: none;
}

.blog-insights-section .blog-insight-read-more .arrow {
    display: inline-flex;
    align-items: center;    
    transition: transform 0.3s ease;
}

.blog-insights-section .blog-insight-read-more .arrow img {
    display: block;
    width: 18px;
    height: 18px;
}

.blog-insights-section .blog-insight-read-more:hover .arrow {
    transform: translateX(3px);
}

/* View All Articles Button */
.blog-insights-footer {
    text-align: center;
    margin-top: 50px;
}

.view-all-articles {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 28px;
    background-color: #429196;
    height: 48px;
    color: #fff;
    font-size: 1rem;
    font-weight: 400;
    text-decoration: none;
    border-radius: 30px;
    transition: all 0.3s ease;
}

.view-all-articles:hover {
    background-color: #3a9484;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(80, 179, 162, 0.4);
    text-decoration: none;
    gap: 15px;
}

.view-all-articles .arrow {
    display: inline-flex;
    align-items: center;
    line-height: 0;
    transform: translateY(1px);
    transition: transform 0.3s ease;
}

.view-all-articles .arrow svg {
    display: block;
    width: 18px;
    height: 18px;
}

.view-all-articles:hover .arrow {
    transform: translateX(5px);
}

/* Blog Insights Section Responsive */
@media (max-width: 992px) {
    .blog-insights-section .blog-insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-insights-section .blog-insights-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-insights-section {
        padding: 60px 20px;
    }
    
    .blog-insights-section .blog-insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-insights-section .blog-insights-header {
        margin-bottom: 40px;
        padding-top: 30px;
    }
    
    .blog-insights-section .blog-insights-title {
        font-size: 2rem;
    }
    
    .blog-insights-section .blog-insights-subtitle {
        font-size: 1rem;
    }
    
    .view-all-articles {
        padding: 14px 35px;
        font-size: 0.95rem;
    }
}

@media (max-width: 480px) {
    .blog-insights-section {
        padding: 0px 15px;
    }
    
    .blog-insights-section .blog-insights-title {
        font-size: 1.8rem;
    }
    
    .blog-insights-section .blog-insight-image {
        height: 200px;
    }
    
    .blog-insights-section .blog-insight-content {
        padding: 25px 20px;
    }
    
    .blog-insights-section .blog-insight-card-title {
        font-size: 1.3rem;
    }
    
    .view-all-articles {
        padding: 12px 28px;
        font-size: 0.9rem;
    }
    
    .get-in-touch-subtitle {
        max-width: 350px;
    }

}

/* Blog Insights Archive Page */
.blog-insights-archive {
    padding: 80px 20px;
    background-color: #fff;
}

.blog-insights-container {
    max-width: 1400px;
    margin: 0 auto;
}

.blog-insights-header {
    text-align: center;
    margin-bottom: 60px;
}

.blog-insights-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 15px;
}

.blog-insights-subtitle {
    font-size: 1.1rem;
    color: #666;
    max-width: 700px;
    margin: 0 auto;
}

.blog-insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
}

.blog-insight-card {
    background: #fff;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
}

.blog-insight-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.12);
}

.blog-insight-image {
    position: relative;
    width: 100%;
    height: 250px;
    overflow: hidden;
    background-color: #f0f0f0;
}

.blog-insight-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.blog-insight-card:hover .blog-insight-image img {
    transform: scale(1.05);
}

.blog-insight-content {
    padding: 30px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.blog-insight-meta {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 15px;
    font-size: 0.85rem;
    color: #999;
}

.blog-insight-date,
.blog-insight-read-time {
    display: flex;
    align-items: center;
    gap: 5px;
}

.blog-insight-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 15px;
    color: #2c3e50;
    line-height: 1.3;
}

.blog-insight-card-title a {
    color: #2c3e50;
    text-decoration: none;
    transition: color 0.3s ease;
}

.blog-insight-card-title a:hover {
    color: #50b3a2;
}

.blog-insight-excerpt {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #666;
    margin-bottom: 20px;
    flex-grow: 1;
}

.blog-insight-read-more {
    display: inline-flex;
    align-items: center;
    gap: 5px;
    color: #50b3a2;
    font-weight: 600;
    font-size: 0.95rem;
    text-decoration: none;
    transition: gap 0.3s ease;
}

.blog-insight-read-more:hover {
    gap: 10px;
    text-decoration: none;
}

.blog-insight-read-more .arrow {
    display: inline-flex;
    align-items: center;    
    transition: transform 0.3s ease;
}

.blog-insight-read-more .arrow svg {
    display: block;
    width: 10px;
    height: 16px;
}

.blog-insight-read-more:hover .arrow {
    transform: translateX(3px);
}

/* Single Blog Insight */
.single-blog-insight {
    padding: 80px 20px;
    background-color: #fff;
}

.single-blog-insight-container {
    max-width: 900px;
    margin: 0 auto;
}

.single-blog-insight-header {
    text-align: center;
    margin-bottom: 40px;
}

.single-blog-insight-title {
    font-size: 3rem;
    font-weight: 700;
    color: #2c3e50;
    margin-bottom: 20px;
    line-height: 1.2;
}

.single-blog-insight-meta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    font-size: 0.95rem;
    color: #999;
}

.single-blog-insight-date,
.single-blog-insight-read-time {
    display: flex;
    align-items: center;
    gap: 8px;
}

.single-blog-insight-featured-image {
    margin-bottom: 50px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
}

.single-blog-insight-featured-image img {
    width: 100%;
    height: auto;
    display: block;
}

.single-blog-insight-content {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #333;
}

.single-blog-insight-content p {
    margin-bottom: 1.5em;
}

.single-blog-insight-content h2,
.single-blog-insight-content h3,
.single-blog-insight-content h4 {
    margin-top: 2em;
    margin-bottom: 0.8em;
    color: #2c3e50;
    font-weight: 700;
}

.single-blog-insight-content h2 {
    font-size: 2rem;
}

.single-blog-insight-content h3 {
    font-size: 1.5rem;
}

.single-blog-insight-content h4 {
    font-size: 1.2rem;
}

.single-blog-insight-content ul,
.single-blog-insight-content ol {
    margin-bottom: 1.5em;
    padding-left: 2em;
}

.single-blog-insight-content li {
    margin-bottom: 0.5em;
}

.single-blog-insight-content blockquote {
    border-left: 4px solid #50b3a2;
    padding-left: 20px;
    margin: 2em 0;
    font-style: italic;
    color: #666;
}

.single-blog-insight-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 2em 0;
}

.single-blog-insight-footer {
    margin-top: 60px;
    padding-top: 40px;
    border-top: 2px solid #f0f0f0;
    text-align: center;
}



/* Blog Insights Responsive */
@media (max-width: 992px) {
    .blog-insights-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .blog-insights-title {
        font-size: 2.5rem;
    }
    
    .single-blog-insight-title {
        font-size: 2.5rem;
    }
}

@media (max-width: 768px) {
    .blog-insights-archive,
    .single-blog-insight {
        padding: 60px 20px;
    }
    
    .blog-insights-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .blog-insights-title {
        font-size: 2rem;
        margin-bottom: 40px;
    }
    
    .single-blog-insight-title {
        font-size: 2rem;
    }
    
    .single-blog-insight-meta {
        flex-direction: column;
        gap: 10px;
    }
    
    .single-blog-insight-content {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .blog-insights-archive,
    .single-blog-insight {
        padding: 50px 15px;
    }
    
    .blog-insights-title {
        font-size: 1.8rem;
        margin-bottom: 30px;
    }
    
    .blog-insight-image {
        height: 200px;
    }
    
    .blog-insight-content {
        padding: 25px 20px;
    }
    
    .blog-insight-card-title {
        font-size: 1.3rem;
    }
    
    .single-blog-insight-title {
        font-size: 1.8rem;
    }
    
    .single-blog-insight-content h2 {
        font-size: 1.6rem;
    }
    
    .single-blog-insight-content h3 {
        font-size: 1.3rem;
    }
}

/* ==========================================================================
   Get In Touch Section
   ========================================================================== */
.get-in-touch-section {
    background: linear-gradient(180deg, rgba(66, 145, 150, 0) 0%, rgba(66, 145, 150, 0.09) 100%);
    padding: 70px 20px 70px;
}

.get-in-touch-container {
    max-width: 1152px;
    margin: 0 auto;
}

.get-in-touch-header {
    text-align: center;
    margin-bottom: 40px;
}

.get-in-touch-title {
    font-size: 3rem;
    font-weight: 700;
    text-align: center;
    margin-bottom: 8px;
    color: #101828;
}

.get-in-touch-subtitle {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1rem;
    color: #6b7280;
}

.get-in-touch-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 35px;
}

.touch-card {
    background: #fff;
    border-radius: 24px;
    box-shadow: 0px 20px 25px -5px #0000001A;
    padding: 35px;

}

.touch-form-card {
    padding: 35px;
}

.touch-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #101828;
    margin-bottom: 18px;
}

.touch-form-group {
    margin-bottom: 12px;
}

.touch-form-alert {
    margin-bottom: 14px;
    padding: 10px 12px;
    border-radius: 6px;
    font-size: 0.9rem;
    line-height: 1.4;
}

.touch-form-alert-success {
    background: #e7f8ef;
    border: 1px solid #9ddbb8;
    color: #1f6a41;
}

.touch-form-alert-error {
    background: #fdecec;
    border: 1px solid #efb7b7;
    color: #9f2a2a;
}

.touch-form-group label {
    display: block;
    font-size: 16px;
    font-weight: 400;
    color: #364153;
    margin-bottom: 5px;
}

.touch-form-group input,
.touch-form-group textarea {
    width: 100%;
    border: 1px solid #D1D5DC;
    height: 50px;
    border-radius: 10px;
    background: #fff;
    color: #1f2937;
    font-size: 0.92rem;
    padding: 10px 11px;
    margin-bottom: 2px;
}

.touch-form-group textarea {
    resize: vertical;
    min-height: 88px;
}

.touch-field-error {
    min-height: 14px;
    margin: 2px 0 0;
    color: #b42318;
    font-size: 11px;
    line-height: 1.2;
}

.touch-word-counter {
    margin: 2px 0 0;
    color: #6b7280;
    font-size: 11px;
    line-height: 1.2;
}

.touch-input-error {
    border-color: #d92d20 !important;
}

.touch-submit-btn {
    width: 100%;
    margin-top: 8px;
    border: 0;
    border-radius: 10px;
    background: #429196;
    height: 48px;
    color: #fff;
    font-size: 16px;
    font-weight: 400;
    line-height: 1;
    padding: 12px 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    cursor: pointer;
    transition: background-color 0.25s ease;
}

.touch-submit-btn:hover {
    background: #2f888c;
}

.touch-submit-btn.is-loading {
    opacity: 0.75;
    cursor: not-allowed;
}

.touch-submit-btn.is-loading::after {
    content: " Sending...";
    font-size: 13px;
}

.touch-submit-icon {
    display: inline-flex;
    align-items: center;
    line-height: 1;
}

.touch-submit-icon img {
    width: 16px;
    height: 16px;
    object-fit: contain;
    display: block;
}

.touch-info-column {
    display: grid;
    gap: 35px;
}

.touch-info-card {
    padding: 35px;
}

.touch-contact-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    gap: 20px;
}

.touch-contact-list li {
    display: grid;
    gap: 4px 16px;
}

.touch-contact-item {
    grid-template-columns: 24px 1fr;
    column-gap: 14px;
}

.touch-contact-icon-wrap {
    grid-row: 1 / span 2;
    align-self: start;
    width: 24px;
    height: 24px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.touch-contact-icon {
    width: 24px;
    height: 28px;
    object-fit: contain;
    display: block;
}

.touch-contact-icon-fallback {
    fill: #3d9ca0;
}

.touch-contact-label {
    font-size: 1rem;
    line-height: 1.25;
    color: #101828;
    font-weight: 400;
}

.touch-contact-list a,
.touch-contact-text {
    font-size: 1rem;
    line-height: 1.45;
    color: #4A5565;
    text-decoration: none;
    font-weight: 400;
}

.touch-contact-list a:hover {
    color: #3d9ca0;
}

@media (max-width: 991px) {
    .touch-contact-label {
        font-size: 1rem;
    }

    .touch-contact-list a,
    .touch-contact-text {
        font-size: 0.95rem;
    }
}

.touch-map-card {
    padding: 16px;
    overflow: hidden;
    min-height: 256px;
    height: 100%;
}

.touch-map-card iframe {
    width: 100%;
    min-height: auto;
    height: 100%;
    border-radius: 24px;
    display: block;
}

.touch-map-card img {
    width: 100%;
    height: 170px;
    object-fit: cover;
    border-radius: 8px;
    display: block;
}

.touch-map-link {
    display: block;
}

.touch-map-placeholder {
    min-height: 170px;
    border-radius: 8px;
    border: 1px dashed #b7bfc4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #6b7280;
    font-size: 0.9rem;
    background: #fff;
}

/* ==========================================================================
   Footer (Dynamic)
   ========================================================================== */
.site-footer {
    margin-top: 0;
    background: #031c1f;
    color: #d3e1e3;
    text-align: left;
    padding: 0;
}

.footer-main {
    background: #001112;
}

.footer-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 75px 20px 20px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 30px;
}

.footer-brand-col {
    max-width: none;
}

.footer-branding {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 14px;
}

.footer-logo-image {
    max-width: 280px;
    width: 100%;
    height: auto;
    display: block;
}

.footer-logo-mark {
    width: 35px;
    height: 35px;
    border: 1px solid #6fa5ab;
    border-radius: 50%;
    position: relative;
}

.footer-logo-mark:before {
    content: "";
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #6fa5ab;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.footer-brand-text {
    display: inline-flex;
    flex-direction: column;
    line-height: 1.1;
}

.footer-brand-subtitle {
    font-size: 0.56rem;
    letter-spacing: 1.2px;
    color: #9ab4b8;
}

.footer-brand-title {
    font-size: 1rem;
    letter-spacing: 0.8px;
    font-weight: 700;
    color: #fff;
}

.footer-description {
    max-width: 280px;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.65;
    color: #99A1AF;
    margin-bottom: 18px;
}

.footer-social {
    display: flex;
    gap: 10px;
}

.footer-social a {
    width: 28px;
    height: 28px;
    border-radius: 4px;
    border: 0;
    color: #c5d7da;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: transparent;
}

.footer-social a img {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.footer-social a:hover {
    color: #fff;
}

.footer-col-title {
    margin: 0 0 18px;
    font-size: 18px;
    font-weight: 400;
    color: #fff;
}

.footer-links,
.footer-contact {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-links li,
.footer-contact li {
    margin-bottom: 12px;
}

.footer-links a,
.footer-links li,
.footer-contact a,
.footer-contact li {
    color: #99A1AF;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
}

.footer-links a:hover,
.footer-contact a:hover {
    color: #fff;
}

.footer-contact li {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    column-gap: 10px;
}

.footer-contact-icon img {
    width: 20px;
    height: 20px;
    display: block;
    margin-top: 2px;
    object-fit: contain;
}

.footer-bottom {
    margin-top: 24px;
    padding-top: 40px;
    padding-bottom: 45px;
    border-top: 1px solid #1E2939;
    text-align: center;
}

.footer-bottom p {
    margin: 0 0 6px;
    font-size: 16px;
    color: #99A1AF;
    font-weight: 400;
}

.footer-bottom p:last-child {
    margin-bottom: 0;
}

@media (max-width: 992px) {
    .get-in-touch-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 768px) {
    .get-in-touch-section {
        padding: 50px 15px 55px;
    }

    .get-in-touch-title {
        font-size: 2rem;
    }

    .touch-form-card,
    .touch-info-card {
        padding: 20px;
    }

    .footer-container {
        padding: 42px 15px 12px;
    }

    .footer-description {
        max-width: none;
    }
}

@media (max-width: 560px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .footer-description {
        max-width: none;
    }
    
    .book-modal__subtitle {
        font-size: 14px;
    }
    
        .book-modal__contact {
        gap: 0px;
    }
    
    .book-modal__qr-image {
        width: 170px;
    }
    
    .book-modal__qr-wrap {
        min-height: 206px;
        min-width: 206px;
        margin: 0 auto;
        width: 206px;
    }

    .book-modal__panel {
        top: 50% !important;
        left: 50% !important;
        transform: translate(-50%, -50%) !important;
        margin: 0 !important;
        width: 90%;
        max-width: 448px;
        padding: 30px 30px;
        max-height: 90vh;
        overflow-y: auto;
        animation: modalFadeIn 0.4s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
    }
    
    @keyframes modalFadeIn {
        0% {
            opacity: 0;
            transform: translate(-50%, -45%) scale(0.95);
        }
        100% {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }
    }
    
    }

/* Single service page */
.single-service-page {
    background: #f2f6f8;
}

.service-single-hero {
    position: relative;
    min-height: 260px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    color: #ffffff;
}

.service-single-hero.no-hero-image {
    background: linear-gradient(135deg, #173042 0%, #274c66 100%);
}

.service-single-hero-overlay {
    min-height: 260px;
    background: rgba(10, 32, 46, 0.58);
    display: flex;
    align-items: center;
}

.service-single-hero-inner,
.service-single-container {
    width: 100%;
    max-width: 1153px;
    margin: 0 auto;
    padding-left: 20px;
    padding-right: 20px;
}

.service-single-hero-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;

    position: relative;
}

.service-single-back-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 48px;
    border-radius: 50%;
    color: #ffffff;
    text-decoration: none;
    font-size: 46px;
    line-height: 1;

    position: absolute;
    left: 0
}

.service-single-title {
    margin: 0;
    font-size: clamp(1.5rem, 4vw, 42px);
    font-weight: 700;
    color: #ffffff;
    line-height: normal;
}
.service-single-global-note-section {
    background: #d7e0e8;
    padding: 20px 0;
}

.service-single-global-note {
    margin: 0;
    text-align: center;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.45;
    color: #0066cc;
}
.service-single-detail-section {
    padding: 70px 0 30px;
}

.service-single-detail-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 36px;
    align-items: center;
}

.service-single-detail-grid.has-detail-image {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 466px);
    gap: 56px;
}

.service-single-detail-content--full {
    max-width: 100%;
}

.service-single-detail-grid.has-detail-image .service-single-detail-content--full {
    max-width: 720px;
}

.service-single-detail-content h2 {
    margin: 0 0 14px;
    font-size: clamp(1.5rem, 3vw, 48px);
    font-weight: 700;
    color: #101828;
    text-align: center;
}

.service-single-detail-grid.has-detail-image .service-single-detail-content h2 {
    text-align: left;
    margin-bottom: 20px;
}

.service-single-booking-action {
    margin: 0 0 24px;
}

.service-single-booking-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 50px;
    padding: 12px 24px;
    border-radius: 12px;
    background: #429196;
    color: #ffffff;
    text-decoration: none;
    font-size: 16px;
    font-weight: 600;
    transition: background-color 0.25s ease, transform 0.25s ease;
}

.service-single-booking-btn:hover {
    background: #2f888c;
    transform: translateY(-1px);
}

.service-single-description {
    color: #2f4654;
    font-size: 1rem;
    line-height: 1.7;
}

.service-single-detail-grid.has-detail-image .service-single-description {
    max-width: 640px;
}

.service-single-description p:last-child {
    margin-bottom: 0;
    font-size: 18px;
    font-weight: 400;
    color: #364153;
}

.service-single-detail-image {
    justify-self: end;
    width: 100%;
    max-width: 466px;
}

.service-single-detail-image img {
    width: 100%;
    display: block;
    min-height: 430px;
    object-fit: cover;
    border-radius: 18px;
}

.service-single-benefits-section {
    padding: 5rem 0 4rem;
    background: #F6FAFA;
}

.service-single-benefits-title {
    margin: 0 0 24px;
    text-align: center;
    font-size: clamp(1.6rem, 3vw, 48px);
    color: #101828;
    font-weight: 700;
}

.service-single-benefits-grid {
    display: grid;
    gap: 25px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-single-benefit-card {
    position: relative;
    padding: 25px;
    border-radius: 10px;
    background: #ffffff;
    box-shadow: 0 8px 20px rgba(15, 46, 63, 0.08);
    min-height: 218px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;

}

.service-single-benefit-number {
    position: absolute;
    top: 3px;
    left: 19px;
    font-size: 92px;
    line-height: 1;
    color: #42919630;
    font-weight: 900;
    font-family: 'Montserrat', sans-serif;
}

.service-single-benefit-card h3 {
    margin: 14px 0 8px;
    font-size: 20px;
    color: #429196;
    font-weight: 700;
}

.service-single-benefit-card p {
    margin: 0;
    color: #364153;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.6;
}

.service-single-benefit-icon-wrap {
    display: inline-flex;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: #eef6f8;
    align-items: center;
    justify-content: center;
}

.service-single-benefit-icon {
    max-width: 24px;
    max-height: 24px;
    display: block;
}

.service-single-womens-section {
    padding: 4.25rem 0;
    background: #f6fbfc;
}

.service-single-womens-card {
    display: grid;
    grid-template-columns: minmax(0, 520px) minmax(0, 1fr);
    gap: 48px;
    align-items: center;
}

.service-single-womens-media {
    position: relative;
    padding: 18px 20px 14px 12px;
}

.service-single-womens-image {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 410px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.service-single-womens-title {
    margin: 0 0 18px;
    color: #182133;
    font-size: clamp(2rem, 3.5vw, 3rem);
    line-height: 1.08;
    font-weight: 700;
}

.service-single-womens-copy {
    color: #364153;
    font-size: 1rem;
    line-height: 1.85;
}

.service-single-womens-copy p {
    margin: 0 0 18px;
}

.service-single-womens-copy p:last-child {
    margin-bottom: 0;
}

.service-single-newborn-section {
    padding: 0;
    background: #ffffff;
}

.service-single-newborn-shell {
    position: relative;
    overflow: hidden;
    padding: 54px 0 56px;
    background:
        radial-gradient(circle at 10% 90%, rgba(37, 87, 86, 0.5), transparent 28%),
        radial-gradient(circle at 90% 10%, rgba(19, 55, 56, 0.35), transparent 24%),
        linear-gradient(180deg, #001c1d 0%, #011515 100%);
}

.service-single-newborn-group {
    max-width: 940px;
    margin: 0 auto;
}

.service-single-newborn-group + .service-single-newborn-group {
    margin-top: 44px;
    padding-top: 46px;
    border-top: 1px solid rgba(223, 240, 241, 0.12);
}

.service-single-newborn-title {
    margin: 0 0 26px;
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 3vw, 2.55rem);
    line-height: 1.08;
    font-weight: 700;
}

.service-single-newborn-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 14px 12px;
}

.service-single-newborn-pill {
    min-height: 46px;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    border: 1px solid rgba(223, 240, 241, 0.16);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #f6fbfb;
    font-size: 13px;
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0;
    white-space: nowrap;
    text-transform: capitalize;
}

.service-single-newborn-check {
    width: 18px;
    height: 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f3f8f8;
    flex: 0 0 18px;
}

.service-single-newborn-check svg {
    width: 18px;
    height: 18px;
}

.service-single-newborn-check-image {
    width: 18px;
    height: 18px;
    display: block;
    object-fit: contain;
}

.service-single-course-section {
    padding: 4rem 0 5rem;
    background: #ffffff;
}

.service-single-feature-section {
    padding: 4.5rem 0 5rem;
    background: #f2f6f8;
}

.service-single-feature-title {
    font-size: clamp(2rem, 3.8vw, 3.5rem);
    line-height: 1.08;
}

.service-single-feature-subtitle {
    margin-bottom: 26px;
    color: #4b5563;
    font-size: clamp(1.05rem, 1.8vw, 1.55rem);
}

.service-single-feature-list {
    gap: 18px;
}

.service-single-course-card {
    display: grid;
    grid-template-columns: minmax(0, 530px) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
    position: relative;
}

.service-single-course-media {
    position: relative;
    padding: 20px 22px 18px 14px;
}

.service-single-course-frame {
    position: absolute;
    inset: 2px 10px 0 0;
    border: 1.5px solid #4aa2aa;
    border-radius: 24px;
    transform: rotate(5deg);
    transform-origin: center;
}

.service-single-course-image {
    position: relative;
    z-index: 1;
    width: 100%;
    min-height: 520px;
    display: block;
    object-fit: cover;
    border-radius: 18px;
}

.service-single-course-content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}

.service-single-course-title {
    margin: 0 0 20px;
    color: #182133;
    font-size: clamp(2.25rem, 4vw, 4.25rem);
    line-height: 0.95;
    font-weight: 700;
    max-width: 600px;
}

.service-single-course-subtitle {
    margin: 0 0 30px;
    color: #666666;
    font-size: clamp(1.3rem, 2vw, 2.05rem);
    font-weight: 700;
}

.service-single-course-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: 24px;
}

.service-single-course-list li {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    color: #2f3747;
    font-size: clamp(1rem, 1.3vw, 1.12rem);
    line-height: 1.6;
    font-weight: 500;
}

.service-single-course-check {
    width: 28px;
    height: 28px;
    border: 2px solid #4aa2aa;
    border-radius: 50%;
    color: #4aa2aa;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex: 0 0 28px;
    margin-top: 2px;
}

.service-single-course-check svg {
    width: 16px;
    height: 16px;
}

.service-single-course-check-image {
    width: 28px;
    height: 28px;
    display: block;
    object-fit: contain;
}

.service-single-included-section {
    padding: 0;
    background: #ffffff;
}

.service-single-included-shell {
    position: relative;
    overflow: hidden;
    padding: 56px 0 64px;
    border-radius: 0;
    background:
        radial-gradient(circle at 10% 80%, rgba(77, 138, 144, 0.26), transparent 32%),
        radial-gradient(circle at 95% 8%, rgba(210, 241, 244, 0.18), transparent 18%),
        linear-gradient(180deg, #021717 0%, #021414 100%);
}

.service-single-included-title {
    margin: 0 0 40px;
    color: #ffffff;
    text-align: center;
    font-size: clamp(2rem, 4vw, 3.75rem);
    line-height: 1;
    font-weight: 700;
}

.service-single-included-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px 20px;
    align-items: start;
}

.service-single-included-pill {
    min-height: 56px;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 26px;
    border: 1px solid rgba(223, 240, 241, 0.28);
    border-radius: 999px;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.04));
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    color: #f6fbfb;
    font-size: 16px;
    line-height: 1.45;
    font-weight: 400;
}

.service-single-included-check {
    width: 20px;
    height: 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #f3f8f8;
    flex: 0 0 20px;
}

.service-single-included-check svg {
    width: 20px;
    height: 20px;
}

.service-single-included-check-image {
    width: 20px;
    height: 20px;
    display: block;
    object-fit: contain;
}

.service-single-included-note-wrap {
    margin-top: 46px;
    padding-top: 46px;
    border-top: 1px solid rgba(223, 240, 241, 0.18);
}

.service-single-included-note {
    margin: 0 auto;
    max-width: 960px;
    color: #f8fbfb;
    text-align: center;
    font-size: clamp(1.15rem, 1.6vw, 1.45rem);
    line-height: 1.45;
    font-weight: 400;
}

.service-booking-modal {
    position: fixed;
    inset: 0;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 20px;
    z-index: 10001;
}

.service-booking-modal.is-open {
    display: flex;
}

.service-booking-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.55);
}

.service-booking-modal__panel {
    position: relative;
    width: min(100%, 520px);
    max-height: calc(100vh - 40px);
    overflow-y: auto;
    background: #ffffff;
    border-radius: 18px;
    padding: 28px 28px 32px;
    box-shadow: 0 28px 70px rgba(15, 23, 42, 0.22);
}

.service-booking-modal__close {
    position: absolute;
    top: 14px;
    right: 16px;
    border: 0;
    background: transparent;
    color: #8c8c8c;
    font-size: 38px;
    line-height: 1;
    cursor: pointer;
}

.service-booking-modal__title {
    margin: 0 0 8px;
    padding-right: 32px;
    font-size: clamp(1.8rem, 3vw, 2.2rem);
    line-height: 1.2;
    color: #182133;
}

.service-booking-modal__subtitle {
    margin: 0 0 22px;
    color: #475467;
    font-size: 16px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .service-single-detail-grid {
        grid-template-columns: 1fr;
    }

    .service-single-benefits-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .service-single-course-card {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .service-single-detail-grid.has-detail-image {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-single-detail-grid.has-detail-image .service-single-detail-content--full,
    .service-single-detail-grid.has-detail-image .service-single-description {
        max-width: none;
    }

    .service-single-womens-card {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .service-single-included-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 640px) {
    .service-single-hero,
    .service-single-hero-overlay {
        min-height: 150px;
    }

    .service-single-detail-section {
        padding-top: 50px;
    }
    .service-single-global-note {
        font-size: 20px;
    }
    .service-single-detail-content h2,
    .service-single-detail-grid.has-detail-image .service-single-detail-content h2 {
        text-align: left;
    }

    .service-single-benefits-grid {
        grid-template-columns: 1fr;
    }

    .service-single-course-section {
        padding: 3rem 0 4rem;
    }

    .service-single-included-section {
        padding: 0;
    }

    .service-single-newborn-shell {
        padding: 48px 0 50px;
    }

    .service-single-newborn-group + .service-single-newborn-group {
        margin-top: 40px;
        padding-top: 40px;
    }

    .service-single-newborn-title {
        margin-bottom: 22px;
        font-size: clamp(1.85rem, 7vw, 2.45rem);
    }

    .service-single-newborn-pill {
        width: 100%;
        justify-content: flex-start;
        min-height: 44px;
        padding: 10px 16px;
        white-space: normal;
    }

    .service-single-course-media {
        padding: 12px 14px 12px 10px;
    }

    .service-single-course-frame {
        border-radius: 18px;
        transform: rotate(4deg);
    }

    .service-single-course-image {
        min-height: 320px;
        border-radius: 14px;
    }

    .service-single-detail-image img {
        min-height: 280px;
        border-radius: 14px;
    }

    .service-single-course-list {
        gap: 18px;
    }

    .service-single-included-shell {
        padding: 42px 0 46px;
    }

    .service-single-included-title {
        margin-bottom: 28px;
    }

    .service-single-included-grid {
        gap: 16px;
    }

    .service-single-included-pill {
        padding: 14px 18px;
        border-radius: 24px;
        font-size: 15px;
    }

    .service-single-included-note-wrap {
        margin-top: 32px;
        padding-top: 32px;
    }

    .service-booking-modal__panel {
        padding: 24px 20px 26px;
    }


    .service-single-hero-inner {
        flex-direction: row;
        align-items: center;
        justify-content: flex-start;
        gap: 12px;
        padding-left: 15px;
        padding-right: 15px;
    }

    .service-single-back-link {
        position: static;
        width: 40px;
        height: 40px;
        font-size: 32px;
        flex-shrink: 0;
    }

    .service-single-title {
        font-size: clamp(1.5rem, 5vw, 2.5rem);
        line-height: 1.2;
        text-align: left;
    }
   .service-single-global-note {
        font-size: 16px;
        line-height: 1.6;
    }
    p{
        font-size: 16px !important;
    }
}
