/* Basic Reset & Variables */
:root {
    /* --primary-green: #4a7d5a;
    --primary-dark: #3a6347; */
    --primary-green: #067A8D;
    --primary-dark: #055f70;
    --primary-green-o: 6, 124, 142;
    --orange: #eb684b;
    --dark-slate: #4C5C65;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    /* --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif; */
    --font-heading: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --font-body: -apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,"Helvetica Neue",Arial,"Noto Sans",sans-serif,"Apple Color Emoji","Segoe UI Emoji","Segoe UI Symbol","Noto Color Emoji";
    --transition: all 0.3s ease;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: var(--font-body);
    color: var(--text-color);
    line-height: 1.6;
    background-color: var(--white);
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Typography */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 700;
}

.section-title {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 1rem;
    letter-spacing: .5px;
}

.section-desc {
    max-width: 700px;
    margin: 0 auto;
    font-size: 1.1rem;
    color: var(--dark-slate);
}

.text-center { text-align: center; }
.text-white { color: var(--white) !important; }

.section-padding {
    padding: 80px 0;
}

.bg-light { background-color: var(--bg-light); }
.bg-dark { background-color: var(--dark-slate); }

/* Buttons */
.btn {
    display: inline-block;
    padding: 12px 30px;
    /* border-radius: 4px; */
    font-weight: 700;
    /* text-transform: uppercase; */
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;

    font-family: 'PT Sans', sans-serif;
}

.btn-rounded{ border-radius: 99px;}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--white);
    border: 2px solid var(--primary-green);
}

.btn-primary:hover {
    background-color: var(--primary-dark);
    border-color: var(--primary-dark);
}

.btn-outline {
    background-color: transparent;
    color: var(--primary-green);
    border: 2px solid var(--primary-green);
}

.btn-outline:hover {
    background-color: var(--primary-green);
    color: var(--white) !important;
}

.btn-white {
    background-color: var(--white);
    color: var(--dark-slate);
    border: 2px solid var(--white);
}

.btn-white:hover {
    background-color: transparent;
    color: var(--white);
}

.btn-link {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: underline;
}

/* Header Structure */
.site-header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
    /* position: sticky; */
    /* top: 0; */
    position: relative;
    z-index: 1000;
}

/* Header Top: Logo & Actions */
.header-top {
    background-color: var(--white);
}

.header-top-container {
    padding: 15px 15px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

.logo img {
    height: 80px; /* Adjust as needed */
    display: block;
}

.header-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.new-utility-nav{
    display: flex;
    align-items: center;
    color: var(--primary-green);
}

.new-utility-nav .t{ display: flex; gap: 15px; top: 5px; right: 15px; position: absolute;}
.new-utility-nav .t > a{ font-size: 13px; font-weight: 600;}

.new-utility-nav .c{ display: flex; font-size: 13px; color: var(--primary-dark);}
.new-utility-nav .c > div{ display: flex; flex-direction: column; text-align: center;}
.new-utility-nav .c > div span{}
.new-utility-nav .c > p{ border-left: 1px solid rgba(var(--primary-green-o), .2); padding-left: 15px; margin-left: 15px; text-align: center;}


.header-info{ color: var(--primary-green); background-color: rgba(var(--primary-green-o), .075);}
.header-info > div{ padding: 5px 15px; display: flex; align-items: center; justify-content: space-between;}
.header-info > div span{ font-size: 24px; font-weight: 600;}
.header-info > div a{ font-size: 24px; font-weight: 600; color: inherit;}


.utility-nav {
    display: flex;
    align-items: center;
    gap: 20px;
    font-size: 0.85rem;
    font-weight: 400;
    font-family: var(--font-body);
}

.utility-nav a {
    color: var(--primary-green);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.utility-nav a:hover {
    text-decoration: underline;
}

/* Custom Book Now Button */
.btn-book-now {
    border: 2px solid var(--primary-green);
    background-color: var(--white);
    color: var(--primary-green);
    font-weight: 700;
    padding: 10px 25px;
    text-transform: uppercase;
    font-size: 0.9rem;
    border-radius: 0; /* Square/Sharp corners as per reference usually, or slight radius */
    transition: var(--transition);
}

.btn-book-now:hover {
    background-color: var(--primary-green);
    color: var(--white);
}

/* Header Bottom: Green Navigation Bar */
.header-bottom {
    background-color: var(--primary-green);
    /* border-top: 5px solid var(--primary-dark); */
}

.header-bottom > div{ padding: 0 10px;}

.main-nav{ display: flex; align-items: center; justify-content: space-between;}
.main-nav > a{ color: var(--primary-green) !important; border-radius: 7px; padding: 3px 10px !important; transition: all .2s ease !important;}
.main-nav > a:hover{ color: #fff !important; background-color: var(--primary-dark) !important;}

.main-nav > ul {
    display: flex;
    gap: 0; /* Remove gap, handle with padding on items */
    list-style: none;
    margin: 0;
    padding: 0;
}

.main-nav > ul > li {
    position: relative; /* For dropdown positioning */
}

.main-nav a {
    display: block;
    /* padding: 13px 25px; */
    padding: 13px 10px;
    color: var(--white);
    font-size: 14.5px;
    font-weight: 600;
    /* text-transform: uppercase; */
    /* letter-spacing: 0.5px; */
    transition: background-color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

@media screen and (min-width: 992px){
    .main-nav > ul > li > a:hover,
    .main-nav > ul > li.active > a,
    .main-nav > ul > li:hover > a{
        background-color: var(--primary-dark);
        color: var(--white);
    }
}

/* Dropdown/Submenu Styles (Desktop) */
.main-nav .submenu {
    display: none; /* Stronger specificity */
    position: absolute;
    top: 100%;
    left: 0;
    /* background-color: var(--white); */
    background-color: var(--primary-dark);
    min-width: 180px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    /* border-top: 3px solid var(--primary-dark); */
    z-index: 1001;
    flex-direction: column;
    padding: 10px 0;
}

.submenu li {
    /* border-bottom: 1px solid #eee; */
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    color: var(--dark-slate); /* Submenu text color */
    color: #fff;
    /* padding: 12px 20px; */
    padding: 5px 15px;
    font-size: 13px;
    text-transform: none; /* Normal case for sub items usually looks cleaner */
    font-weight: 600;
}

.submenu a:hover {
    /* background-color: #f5f5f5; */
    /* color: var(--primary-green); */
    text-decoration: underline;
}

/* Show submenu on hover for desktop */
@media (min-width: 993px) {
    .has-submenu:hover .submenu {
        display: flex; /* Changed to flex to respect flex-direction: column if needed, or block works too */
    }
}

.arrow {
    display: inline-block;
    font-size: 0.7em;
    margin-left: 5px;
    transition: transform 0.3s;
}

.has-submenu:hover .arrow {
    transform: rotate(180deg);
}

/* Mobile Menu Button */
.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    margin-left: 20px;
}

.mobile-menu-btn span {
    display: block;
    width: 30px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 6px 0;
    transition: var(--transition);
}

.main-nav > button{ position: absolute; top: 10px; right: 10px; line-height: 1; display: flex; background-color: transparent; border: none; outline: none; z-index: 100;}
.main-nav > button svg{ height: 20px;}

.header-filter{ position: fixed; top: 0; left: 0; width: 100%; height: 100dvh; background-color: rgba(0, 0, 0, .5); pointer-events: none; opacity: 0; transition: all .3s ease;}

.header-mobile-info{ padding: 15px;}
.header-mobile-info > a{ width: 100%; border-radius: 10px; text-align: center; justify-content: center; margin-bottom: 15px;}
.header-mobile-info > p{ font-size: 18px; color: var(--primary-dark); font-weight: 600; text-align: center;}
.header-mobile-info > div{ color: var(--primary-dark); padding-top: 10px; margin-top: 10px; position: relative; display: flex; flex-direction: column; gap: 0px; justify-content: center; align-items: center;}
.header-mobile-info > div::before{ content: ''; display: inline-block; position: absolute; left: 50%; top: 0; transform: translateX(-50%); width: 100px; height: 1px; background-color: var(--primary-green);}
.header-mobile-info > div span{ font-size: 18px; font-weight: 600;}

/* Responsive Design for Header */
@media (min-width: 768px) {
    .main-nav > button,
    .header-mobile-info{ display: none;}
}
@media (max-width: 768px) {
    .header-bottom {
        position: fixed;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 300px;
        background-color: var(--white);
        /* box-shadow: 0 0 0px 10000px rgba(0,0,0,0.5); */
        height: 100dvh;
        overflow-y: auto;
        transition: all .3s ease;
        z-index: 999;
        transform: translateX(-100%);
        opacity: 0;
        pointer-events: none;
    }
    /* .header-bottom {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        max-width: 300px;
        background-color: var(--white);
        border-top: 1px solid rgba(0,0,0,0.05);
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        height: 100dvh;
        overflow-y: auto;
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
    } */
    
    .header-bottom > div{ padding: 0 15px;}

    .site-header.active .header-bottom {
        transform: translateX(0);
        opacity: 1;
        pointer-events: auto;
    }

    .site-header.active .header-filter{
        opacity: 1;
        pointer-events: auto;
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
        gap: 5px;
    }

    .main-nav > ul > li {
        width: 100%;
        /* border-bottom: 1px solid #f1f1f1; */
    }
    
    .main-nav > ul > li:last-child {
        border-bottom: none;
    }

    .main-nav a {
        color: var(--dark-slate);
        padding: 10px 5px 0;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 20px;
        font-weight: 600;
    }
    
    .main-nav a:hover, .main-nav a:active {
        background-color: #fafafa;
        color: var(--primary-green);
    }
    
    /* Active link style in mobile */
    .main-nav > ul > li.active > a {
        background-color: #f0fdf4; /* Light green bg */
        color: var(--primary-dark);
    }

    /* Mobile Submenu Behavior */
    .submenu {
        position: static;
        box-shadow: none;
        border-top: none;
        background-color: #f8f9fa;
        display: none;
        width: 100%;
        padding: 0;
    }
    
    .has-submenu.open .submenu {
        display: block;
        animation: fadeIn 0.3s ease;
    }
    
    .submenu li {
        border-bottom: 1px solid #eee;
    }
    
    .submenu li:last-child {
        border-bottom: none;
    }

    .has-submenu.open > a .arrow {
        transform: rotate(180deg);
        color: var(--primary-green);
    }
    
    .submenu a {
        padding: 14px 25px 14px 45px; /* Deep indentation */
        color: #666;
        font-size: 0.95rem;
        font-weight: 500;
        text-align: start;
    }
    
    .submenu a:hover {
        background-color: #eee;
        color: var(--primary-green);
    }

    /* Hide Desktop-only elements */
    /* .header-actions-wrapper { display: none;} */
    .header-actions-wrapper > a,
    .header-actions-wrapper > .utility-nav > a:not(.hdr-login-link){ display: none;}
    
    .hdr-login-link{ padding: 0 !important; font-size: 22px !important;}
    .hdr-login-link span,
    .new-utility-nav .t,
    .new-utility-nav .c{ display: none;}

    
    .header-top-container{ padding: 10px 15px; flex-direction: column; align-items: center; justify-content: center; position: relative;}
    .mobile-menu-btn{ position: absolute; left: 15px; top: 50%; transform: translateY(-50%); margin: 0;}
    .logo img{ height: 70px;}
    
    .header-info > div{ padding: 15px 15px 30px; flex-direction: column; justify-content: center; gap: 15px;}
    .header-info > div span{ font-weight: 500; font-size: 28px;}
    .header-info > div a{ padding: 5px 0; font-size: 18px; font-weight: 600; display: flex; background-color: #fff; box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.25); border-radius: 10px; width: 100%; justify-content: center; text-align: center;}

    
    /* Show Mobile Toggle */
    .mobile-menu-btn { display: block;}
}

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideDown {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}

/* Hero Section */
.hero {
    position: relative;
    height: 50dvh; /* Reduced slightly to accommodate overlay */
    min-height: 500px;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-bottom: 80px; /* Space for overlay content overlap if needed */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.3);
}

/* ... existing hero styles ... */

.hero-bg img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: -1;
    filter: brightness(0.85); /* Darken slightly for text readability */
}

.hero-bg img.mobile {
    display: none;
}

@media (max-width: 768px) {
    .hero-bg img.web {
        display: none;
    }
    .hero-bg img.mobile {
        display: block;
    }
}

.hero-content {
    z-index: 1;
    width: 100%;
    margin-top: -50px; /* Shift text up slightly */
}

/* ... existing hero content styles ... */

.hero-content h1 {
    font-size: 3.5rem;
    color: var(--white);
    margin-bottom: 20px;
    line-height: 1.2;
    text-shadow: 0 2px 4px rgba(0,0,0,0.3);
}

.hero-content p {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 30px;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
}

/* Combined Action & Intro Section */
.action-intro-combined {
    background-color: #f9f9f9;
    background-image: url('../assets/images/background-body.png');
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    /* padding-bottom: 80px; */
    padding-bottom: 40px;
    position: relative;
    z-index: 10;
}

.hero-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    /* margin-bottom: 20px; */
    transform: translateY(-10px);
}

.action-card {
    background-color: var(--primary-green);
    /* background-image: url('../assets/images/background-promo-tiles2.png'); */
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    padding: 50px 30px;
    text-align: center;
    color: var(--white);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    border: 2px solid #fff; /* White border from reference */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    transition: transform 0.3s ease;
}

.action-card:hover {
    transform: translateY(-5px);
}

.action-card h2 {
    font-size: 1.8rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
    line-height: 1.3;
}

.action-card p {
    font-size: 1.05rem;
    margin-bottom: 30px;
    opacity: 0.95;
    max-width: 90%;
}

.intro-content {
    max-width: 900px;
    margin: 0 auto;
}

.intro-content .section-title {
    color: var(--primary-green);
    font-size: 2.2rem;
    margin-bottom: 20px;
}

.intro-content .section-desc {
    color: var(--dark-slate);
    font-size: 1.1rem;
    line-height: 1.8;
}

.btn-card {
    background-color: var(--white);
    color: #52795A;
    padding: 12px 35px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: none;
    border-radius: 0;
    display: inline-block;
    transition: all 0.3s;
}

.btn-card:hover {
    background-color: #f0f0f0;
    color: var(--primary-dark);
    box-shadow: 0 5px 15px rgba(0,0,0,0.2);
}

/* Responsive adjustment */
@media (max-width: 992px) {
    .hero-actions-grid {
        grid-template-columns: 1fr; /* Stack on mobile */
        gap: 20px;
        margin-top: -40px;
    }
    
    .action-card {
        padding: 40px 20px;
    }
}



/* Testimonials Section */
.testimonials {
    background-color: var(--primary-green);
    /* background-image: url('../assets/images/background-client-reviews.png'); */
    background-position: 10% 50%; /* Position the quote mark slightly left */
    background-repeat: no-repeat;
    background-size: auto;
    padding: 100px 0;
    color: var(--white);
    position: relative;
}

.testimonials .section-title {
    color: var(--white);
    margin-bottom: 50px;
}

.testimonial-slider {
    max-width: 900px;
    margin: 0 auto;
    padding-bottom: 50px !important; /* Space for pagination */
}

.testimonial-item {
    padding: 0 40px;
    cursor: grab;
}

.testimonial-item:active {
    cursor: grabbing;
}

.quote-text {
    font-size: 1.6rem;
    font-family: var(--font-heading); /* Serif font for quotes often looks better */
    font-style: italic;
    line-height: 1.5;
    margin-bottom: 30px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s forwards;
}

@keyframes fadeInUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.quote-author {
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.95rem;
    letter-spacing: 2px;
    color: rgba(255,255,255,0.8);
}

/* Swiper Customization & Overrides */
:root {
    --swiper-theme-color: #ffffff !important; /* Force white theme globally for slider */
    --swiper-navigation-size: 20px; /* Smaller default size override */
}

.testimonial-slider .swiper-pagination-bullet {
    background-color: transparent !important;
    border: 1px solid rgba(255, 255, 255, 0.6) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.testimonial-slider .swiper-pagination-bullet-active {
    background-color: #fff !important;
    border-color: #fff !important;
    transform: scale(1.3);
}

.testimonial-slider .swiper-button-prev,
.testimonial-slider .swiper-button-next {
    color: #fff !important;
    width: 50px;
    height: 50px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    transition: all 0.3s ease;
    /* Remove default Swiper icons by hiding ::after but we will use custom content */
}

/* Custom Icons - Replacing default Swiper font icons with elegant CSS shapes */
.testimonial-slider .swiper-button-prev::after,
.testimonial-slider .swiper-button-next::after {
    font-size: 0; /* Hide default text/icon */
    content: '';
    width: 12px;
    height: 12px;
    border-top: 2px solid #fff;
    border-right: 2px solid #fff;
    display: block;
}

.testimonial-slider .swiper-button-prev::after {
    transform: rotate(-135deg); /* Point left */
    margin-left: 5px;
}

.testimonial-slider .swiper-button-next::after {
    transform: rotate(45deg); /* Point right */
    margin-right: 5px;
}

.testimonial-slider .swiper-button-prev:hover,
.testimonial-slider .swiper-button-next:hover {
    background-color: #fff;
    border-color: #fff;
    transform: scale(1.1);
    box-shadow: 0 0 15px rgba(255,255,255,0.3);
}

.testimonial-slider .swiper-button-prev:hover::after,
.testimonial-slider .swiper-button-next:hover::after {
    border-color: var(--primary-green); /* Techincal green on hover */
}

/* Positioning adjustments */
.testimonial-slider .swiper-button-prev { left: 0px; }
.testimonial-slider .swiper-button-next { right: 0px; }

@media (max-width: 992px) {
    .testimonial-slider .swiper-button-prev,
    .testimonial-slider .swiper-button-next {
        display: none; /* Mobile: Hide arrows, use dots only */
    }
}

@media (max-width: 768px) {
    .quote-text {
        font-size: 1.3rem;
    }
    .swiper-button-prev,
    .swiper-button-next {
        display: none;
    }
}

/* Brands Section Removed - Now part of Footer */

/* Footer */
.site-footer {
    background-color: #4C5C65;
    color: var(--white);
    padding: 60px 0 40px;
    font-family: var(--font-body);
}

/* Brand Bar */
.brand-bar {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    margin-bottom: 50px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(255,255,255,0.1); /* Optional separator from main nav */
    gap: 20px;
}

.keep-glowing span {
    font-family: var(--font-heading); /* Use heading font for script-like feel */
    font-size: 1.8rem;
    font-style: italic;
    color: var(--white);
}

.brand-separator {
    width: 1px;
    height: 40px;
    background-color: rgba(255,255,255,0.5);
    margin: 0 10px;
    display: inline-block;
}

.sister-brands {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}

.sister-brands span {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255,255,255,0.7);
    /* In real implementation, these would be img tags */
}

/* Footer Navigation */
.footer-nav {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 15px 30px;
    margin-bottom: 40px;
}

.footer-nav a {
    color: rgba(255,255,255,0.9);
    font-size: 1rem;
    font-weight: 400;
    text-transform: capitalize;
    transition: color 0.3s;
}

.footer-nav a:hover {
    color: var(--primary-green); /* Or a lighter green highlight */
    text-decoration: underline;
}

/* Social Media */
.footer-social {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
}

.footer-social a {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background-color: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    transition: all 0.3s;
}

.footer-social a:hover {
    background-color: var(--white);
    color: #4C5C65;
    transform: translateY(-3px);
}

/* Legal Links & Copyright */
.footer-legal {
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.1);
    padding-top: 30px;
}

.legal-links {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 20px;
    flex-wrap: wrap;
}

.legal-links a {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.6);
}

.legal-links a:hover {
    color: var(--white);
    text-decoration: underline;
}

.footer-disclaimer {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.6;
}

.footer-disclaimer p {
    margin-bottom: 15px;
}

.footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Appointment Page Styles */
.appointment-section {
    padding: 60px 0;
    min-height: 80vh;
    background-image: url('../assets/images/background-body.png'); /* Reuse pattern */
    background-size: cover;
}

.booking-wrapper {
    display: flex;
    background-color: var(--white);
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden;
    min-height: 600px;
}

/* Sidebar */
.booking-sidebar {
    width: 300px;
    background-color: var(--primary-green);
    color: var(--white);
    padding: 40px 30px;
    flex-shrink: 0;
}

.sidebar-header h3 {
    font-size: 1.8rem;
    margin-bottom: 10px;
}

.progress-steps {
    margin-top: 50px;
}

.progress-steps .step {
    display: flex;
    align-items: center;
    margin-bottom: 25px;
    opacity: 0.5;
    transition: all 0.3s;
}

.progress-steps .step.active {
    opacity: 1;
}

.progress-steps .step.completed .step-num {
    background-color: var(--primary-dark);
    content: '✓'; 
    color: transparent; /* Hide number, show tick via background if using image or just color change */
    /* Let's keep it simple: */
    background-color: var(--white);
    color: var(--primary-green);
    border-color: var(--white);
}

.step-num {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid var(--white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-right: 15px;
}

/* Content */
.booking-content {
    flex: 1;
    padding: 50px;
}

.booking-step {
    display: none;
    animation: fadeIn 0.5s ease;
}

.booking-step.active {
    display: block;
}

.step-title {
    color: var(--primary-green);
    margin-bottom: 30px;
    font-size: 2rem;
}

/* Service Grid */
.service-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.service-card {
    cursor: pointer;
    position: relative;
}

.service-card input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.card-inner {
    border: 2px solid #eee;
    padding: 30px;
    border-radius: 8px;
    text-align: center;
    transition: all 0.3s;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.card-inner .icon {
    font-size: 40px;
    color: #ccc;
    margin-bottom: 15px;
    transition: color 0.3s;
}

.service-card input:checked + .card-inner {
    border-color: var(--primary-green);
    background-color: #f9fff9;
    box-shadow: 0 10px 20px rgba(74, 125, 90, 0.1);
}

.service-card input:checked + .card-inner .icon {
    color: var(--primary-green);
}

.service-card h4 {
    margin-bottom: 10px;
    color: var(--dark-slate);
}

.service-card .price {
    margin-top: 15px;
    font-weight: 700;
    color: var(--primary-green);
}

/* Date Time */
.datetime-container {
    display: flex;
    gap: 40px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-top: 10px;
}

.time-slot {
    padding: 10px 20px;
    border: 1px solid #ddd;
    background: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s;
    font-family: var(--font-body);
}

.time-slot.active, .time-slot:hover {
    background-color: var(--primary-green);
    color: var(--white);
    border-color: var(--primary-green);
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 700;
    color: var(--dark-slate);
}

.form-control {
    width: 100%;
    padding: 12px 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 1rem;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
}

.summary-box {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    margin-bottom: 30px;
    border-left: 5px solid var(--primary-green);
}

.step-actions {
    display: flex;
    justify-content: space-between;
    margin-top: 20px;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}


/* Updated Appointment Page Styles for Content V2 */
.mt-50 { margin-top: 50px; }

.service-category h3 {
    font-size: 1.5rem;
    color: var(--dark-slate);
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.service-row {
    background-color: #fff;
    margin-bottom: 30px;
    display: flex; justify-content: space-between; gap: 20px;
}

.service-row .pricing-tiers{ min-width: 175px;}
.service-row .service-info{ max-width: 450px;}

.service-info {
    margin-bottom: 15px;
}

.service-info h4 {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 5px;
}

.service-note {
    font-size: 0.85rem;
    color: #888;
    font-style: italic;
}

.pricing-tiers {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.price-tier {
    flex: 1;
    min-width: 140px;
    cursor: pointer;
    position: relative;
}

.price-tier input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0;
}

.tier-box {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
    background-color: #fff;
    position: relative;
    overflow: hidden;
}

.tier-name {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    color: #999;
    margin-bottom: 5px;
}

.tier-price {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-slate);
}

/* Selected State */
.price-tier input:checked + .tier-box {
    border-color: var(--primary-green);
    background-color: #f0f7f2;
    box-shadow: 0 4px 10px rgba(74, 125, 90, 0.15);
}

.price-tier input:checked + .tier-box .tier-price {
    color: var(--primary-green);
}

/* Best Value Badge */
.tier-tag {
    position: absolute;
    top: 0;
    right: 0;
    background-color: var(--primary-green);
    color: #fff;
    font-size: 0.65rem;
    padding: 3px 8px;
    border-bottom-left-radius: 8px;
    text-transform: uppercase;
    font-weight: 700;
}

/* Pressure Grid */
.pressure-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-top: 20px;
}

.pressure-card {
    cursor: pointer;
    position: relative;
}

.pressure-card input {
    position: absolute;
    opacity: 0;
}

.p-inner {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 15px;
    text-align: center;
    transition: all 0.3s;
}

.p-level {
    height: 6px;
    background-color: #eee;
    margin-bottom: 10px;
    border-radius: 3px;
    position: relative;
    overflow: hidden;
}

.p-level::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 100%; /* Filled by parent width style */
    background-color: var(--primary-green);
}

.pressure-card input:checked + .p-inner {
    border-color: var(--primary-green);
    background-color: #f0f7f2;
}

/* Enhancements List */
.enhancements-list {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.enhancement-item {
    display: flex;
    align-items: center;
    border: 1px solid #eee;
    padding: 15px;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s;
}

.enhancement-item:hover {
    background-color: #f9f9f9;
}

.enhancement-item input {
    display: none;
}

.check-circle {
    width: 24px;
    height: 24px;
    border: 2px solid #ddd;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 15px;
    color: transparent;
    transition: all 0.2s;
}

.enhancement-item input:checked + .check-circle {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

.env-info {
    flex: 1;
}

.env-header {
    display: flex;
    justify-content: space-between;
}

.env-header .price {
    font-weight: 700;
    color: var(--primary-green);
}

/* Step 2: Therapist & Calendar Styles */

/* Therapist Grid */
.therapist-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.therapist-card {
    cursor: pointer;
    position: relative;
}

.therapist-card input {
    position: absolute;
    opacity: 0;
}

.t-inner {
    border: 1px solid #ddd;
    border-radius: 10px;
    padding: 20px;
    display: flex;
    align-items: center;
    gap: 15px;
    transition: all 0.3s;
    background-color: #fff;
}

.t-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background-size: cover;
    background-position: center;
    background-color: #f0f0f0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.any-therapist {
    background-color: var(--primary-green);
    color: #fff;
    font-size: 1.2rem;
}

.t-info h4 {
    font-size: 1rem;
    margin-bottom: 5px;
    color: var(--dark-slate);
}

.t-bio {
    font-size: 0.8rem;
    color: #888;
    line-height: 1.3;
}

.t-select-icon {
    margin-left: auto;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    border: 2px solid #ddd;
    display: flex; /* Hidden by default or show check */
    align-items: center;
    justify-content: center;
    color: transparent;
    flex-shrink: 0;
    transition: all 0.2s;
}

/* Selected Therapist */
.therapist-card input:checked + .t-inner {
    border-color: var(--primary-green);
    background-color: #f0f7f2;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.therapist-card input:checked + .t-inner .t-select-icon {
    background-color: var(--primary-green);
    border-color: var(--primary-green);
    color: #fff;
}

/* Date Time Wrapper */
.datetime-wrapper {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.card-box {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 10px;
    padding: 25px;
}

/* Custom Calendar */
.custom-calendar {
    flex: 1.5;
    min-width: 320px;
}

.calendar-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.current-month {
    font-size: 1.2rem;
    color: var(--dark-slate);
}

.cal-nav {
    background: none;
    border: 1px solid #ddd;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    color: #666;
    transition: all 0.2s;
}

.cal-nav:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.calendar-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    font-weight: 700;
    font-size: 0.9rem;
    color: #999;
    margin-bottom: 10px;
}

.calendar-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.day {
    aspect-ratio: 1; /* Square */
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.95rem;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.2s;
}

.day:hover:not(.disabled):not(.empty) {
    background-color: #f0f0f0;
}

.day.active {
    background-color: var(--primary-green);
    color: #fff;
}

.day.disabled {
    color: #ccc;
    cursor: not-allowed;
}

.day.empty {
    cursor: default;
}

/* Time Slots */
.time-slots-wrapper {
    flex: 1;
    min-width: 280px;
    background-color: #fcfcfc;
}

.time-slots-wrapper h4 {
    color: var(--dark-slate);
    margin-bottom: 5px;
}

.slots-date {
    font-size: 0.9rem;
    color: var(--primary-green);
    font-weight: 700;
    margin-bottom: 25px;
}

.time-grid {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.time-zone span {
    display: block;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    color: #aaa;
    margin-bottom: 10px;
}

.t-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.t-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 8px 16px;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: all 0.2s;
}

.t-btn:hover {
    border-color: var(--primary-green);
    color: var(--primary-green);
}

.t-btn.active {
    background-color: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

@media (max-width: 768px) {
    .datetime-wrapper {
        flex-direction: column;
    }
}

/* Step 2 Extra Styles: Filters & Headers */
.category-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
    margin-bottom: 25px;
}

.category-header-row h3 {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.therapist-filters {
    display: flex;
    gap: 10px;
}

.filter-btn {
    border: 1px solid #ddd;
    background: #fff;
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 0.85rem;
    cursor: pointer;
    transition: all 0.2s;
    color: var(--dark-slate);
}

.filter-btn:hover {
    background-color: #f5f5f5;
}

.filter-btn.active {
    background-color: var(--primary-green);
    color: #fff;
    border-color: var(--primary-green);
}

/* Step 1: Location Styles */
.location-grid {
    display: grid;
    /* grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); */
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

@media screen and (max-width: 768px){
    .location-grid {
        display: flex;
        flex-direction: column;
    }
}

.location-card {
    cursor: pointer;
    position: relative;
    height: 100%;
}

.location-card input {
    position: absolute;
    opacity: 0;
}

.loc-inner {
    border: 1px solid #ddd;
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    background: #fff;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.loc-img {
    height: 160px;
    background-size: cover;
    background-position: center;
}

.loc-info {
    padding: 20px;
    text-align: left;
}

.loc-info h4 {
    font-size: 1.1rem;
    margin-bottom: 5px;
    color: var(--dark-slate);
}

.loc-info p {
    font-size: 0.9rem;
    color: #666;
    margin: 0;
}

.loc-check {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 30px;
    height: 30px;
    background: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: transparent;
    transition: all 0.2s;
    box-shadow: 0 4px 10px rgba(0,0,0,0.1);
}

.location-card input:checked + .loc-inner {
    border-color: var(--primary-green);
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
}

.location-card input:checked + .loc-inner .loc-check {
    background: var(--primary-green);
    color: #fff;
}


/* Step 4: Payment Styles */
.row-layout {
    display: flex;
    gap: 40px;
    align-items: flex-start;
}

.form-section { flex: 2; }
.summary-section { flex: 1; }

.payment-methods {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 15px;
    margin-bottom: 30px;
}

.payment-card {
    cursor: pointer;
}

.payment-card input { display: none; }

.pay-inner {
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    transition: all 0.3s;
    background: #fcfcfc;
}

.pay-inner i {
    font-size: 1.8rem;
    display: block;
    margin-bottom: 10px;
    color: #ccc;
}

.payment-card input:checked + .pay-inner {
    border-color: var(--primary-green);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}

.payment-card input:checked + .pay-inner i {
    color: var(--primary-green);
}

.payment-details-box {
    background: #f9f9f9;
    padding: 25px;
    border-radius: 8px;
    border: 1px solid #eee;
    animation: fadeIn 0.3s ease;
}

.payment-details-box.hidden { display: none; }

.iban-box {
    background: #fff;
    padding: 15px;
    border: 1px dashed #ccc;
    border-radius: 6px;
}

.iban {
    font-family: monospace;
    font-size: 1.1rem;
    letter-spacing: 1px;
    color: var(--primary-dark);
    margin: 10px 0;
    font-weight: 700;
}

/* Summary Box Updates */
.summary-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.summary-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    font-size: 0.95rem;
    border-bottom: 1px solid #eee;
    padding-bottom: 8px;
}

.summary-list li:last-child {
    border-bottom: none;
}

.total-price {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--dark-slate);
    margin-top: 15px;
}

.price-val { color: var(--primary-green); }

.mt-20 { margin-top: 20px; }

@media (max-width: 900px) {
    .row-layout { flex-direction: column; }
    .summary-section { width: 100%; order: -1; margin-bottom: 30px; }
}

/* Ensure hidden works with specificity */
.payment-details-box.hidden {
    display: none !important;
}

/* --- Step 4 Enhancements --- */

/* Layout Reset for Step 4 */
#step-4 .row-layout {
    display: block; /* Stack vertically instead of flex row */
}

/* Payment Porm Grid */
.payment-details-box {
    margin-top: 25px;
    padding: 30px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    border-radius: 10px;
}
.payment-details-box h4 {
    margin-bottom: 25px;
    font-size: 1.1rem;
    color: var(--primary-dark);
    border-bottom: 1px solid #dee2e6;
    padding-bottom: 10px;
}

.card-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.card-grid .full-width {
    grid-column: 1 / -1;
}

/* Summary Section (Moved to Bottom) */
.summary-section-bottom {
    margin-top: 50px;
    padding-top: 40px;
    border-top: 2px dashed #e0e0e0;
}
.summary-box-wide {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 12px;
    padding: 30px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    margin-top: 30px !important;
}
.summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 30px;
    margin-bottom: 30px;
}
.s-item strong {
    display: block;
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.s-item span {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--primary-dark);
}
.total-row {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 20px;
    padding-top: 20px;
    border-top: 1px solid #eee;
}
.total-row span { font-size: 1.2rem; }
.total-row .price-val { 
    font-size: 2rem; 
    font-weight: 700; 
    color: var(--primary-green); 
}

/* Success Step */
.success-step {
    text-align: center;
    padding: 60px 20px;
}
.success-icon {
    width: 100px;
    height: 100px;
    background: #e8f5e9;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    margin: 0 auto 30px;
    animation: bounceIn 0.8s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}
/* --- Gift Cards Page --- */

/* Page Hero */
.page-hero {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: #fff;
    margin-top: 0;
}

/* Breadcrumbs */
.hero-breadcrumb {
    margin-top: 15px;
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    opacity: 0.9;
    animation: fadeInUp 0.8s ease 0.3s forwards;
    opacity: 0; /* Animated entry */
}
.hero-breadcrumb a {
    color: #fff;
    text-decoration: none;
    transition: color 0.3s;
}
.hero-breadcrumb a:hover {
    color: var(--primary-green);
}
.hero-breadcrumb .sep {
    margin: 0 8px;
    color: rgba(255,255,255,0.6);
}
.hero-breadcrumb span {
    color: rgba(255,255,255,0.8);
}
.hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.4);
}
.hero-content {
    position: relative;
    z-index: 2;
}

.hero-content h1 {
    font-size: 3.5rem;
    font-family: var(--font-heading);
    margin-bottom: 15px;
}

/* Hero Button Group */
.hero-btn-group {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 20px;
}

/* Animations */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 30px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

.animate-fade-up {
    opacity: 0; /* Initially hidden */
    animation: fadeInUp 0.8s ease forwards;
}

.delay-1 { animation-delay: 0.2s; }
.delay-2 { animation-delay: 0.4s; }
.delay-3 { animation-delay: 0.6s; }

/* Gift Builder Section */
.gift-builder-section {
    padding: 80px 0;
    /* Match Appointment Page Background */
    background-image: url('../assets/images/background-body.png');
    background-size: cover;
    min-height: 80vh;
}

.gift-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    overflow: hidden; 
}

/* Left: Preview - Clean & Minimal */
.gift-preview {
    background: #fff; /* White background */
    border-right: 1px solid #f0f0f0;
    padding: 60px 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    top: 0;
}

.preview-card-container {
    position: relative;
    z-index: 2;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    /* 3D Effect Preserved */
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
    width: 100%;
    max-width: 420px;
}
.preview-card-container:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg) scale(1.02);
    box-shadow: 0 30px 60px -12px rgba(0, 0, 0, 0.5);
}

.card-overlay-text {
    position: absolute;
    bottom: 25px;
    left: 25px;
    right: 25px;
    color: #e3c878; /* Gold text */
    text-shadow: 0 2px 4px rgba(0,0,0,0.7);
}

.card-overlay-text h3 {
    font-size: 2.2rem;
    margin-bottom: 5px;
    font-family: var(--font-heading);
    letter-spacing: 1px;
}

.card-code {
    font-family: 'Courier New', monospace;
    font-size: 0.95rem;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0.9;
    font-weight: 600;
}

.card-names {
    display: flex;
    justify-content: space-between;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    border-top: 1px solid rgba(227, 200, 120, 0.4); /* Goldish border */
    padding-top: 15px;
    letter-spacing: 0.5px;
}

.preview-note {
    margin-top: 30px;
    text-align: center;
    color: #999;
    font-size: 0.9rem;
}

/* Right: Form */
.gift-form-container {
    padding: 50px;
}

.gift-form-container h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
}

.form-step {
    margin-bottom: 30px;
    padding-bottom: 25px;
    border-bottom: 1px solid #eee;
}
.section-label {
    display: block;
    font-weight: 700;
    color: var(--primary-dark);
    margin-bottom: 15px;
    font-size: 1.1rem;
}

/* Amount Grid */
.amount-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}
.amount-option {
    cursor: pointer;
}
.amount-option input {
    display: none;
}
.amount-option span {
    display: block;
    text-align: center;
    padding: 20px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--primary-dark);
    transition: all 0.3s;
}
.amount-option input:checked + span {
    border-color: var(--primary-green);
    background-color: #f0fdf4; /* Light green tint */
    color: var(--primary-green);
}

/* Total Bar */
.total-bar {
    background: #fff;
    padding: 20px;
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: sticky;
    bottom: 20px;
    z-index: 10;
}
.total-display span {
    display: block;
    font-size: 0.9rem;
    color: #888;
}
.total-display strong {
    font-size: 1.8rem;
    color: var(--primary-dark);
}

/* Features Section */
.features-section {
    padding: 100px 0;
    background: #fff;
    position: relative;
    z-index: 10;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-top: 60px;
}
.feature-item {
    text-align: center;
    padding: 40px 30px;
    background: #fff;
    border-radius: 4px; /* Slightly squarer for elegance or minimal rounding */
    transition: all 0.4s ease;
    border: 1px solid transparent; /* Prepare for hover border */
    position: relative;
}

/* Hover Effect: Lift & Subtle Border/Shadow */
.feature-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
    border-color: #f5f5f5;
}

/* Icon Styling */
.feature-item i {
    width: 80px;
    height: 80px;
    line-height: 80px;
    font-size: 2rem;
    color: var(--primary-dark);
    background: rgba(var(--primary-green-o), .025); /* Cream background */
    border: 1px solid #e3c878; /* Gold border */
    border-radius: 50%;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
    display: inline-block;
}

/* On hover, invert icon colors */
.feature-item:hover i {
    background: var(--primary-dark);
    color: #e3c878;
    border-color: var(--primary-dark);
}

.feature-item h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
    letter-spacing: 0.5px;
}

.feature-item p {
    font-size: 0.95rem;
    color: #777;
    line-height: 1.6;
    max-width: 300px;
    margin: 0 auto;
}

/* --- Locations Page (Branches) --- */
.branches-section {
    padding: 80px 0;
    /* Reuse background */
    background-image: url('../assets/images/background-body.png');
    background-size: cover;
}
.branches-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.branch-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transition: transform 0.3s ease;
}
.branch-card:hover {
    transform: translateY(-10px);
}

.branch-img {
    height: 250px;
    overflow: hidden;
}
.branch-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}
.branch-card:hover .branch-img img {
    transform: scale(1.1);
}

.branch-info {
    padding: 30px;
}
.branch-info h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 10px;
    color: var(--primary-dark);
}
.branch-desc {
    color: #666;
    margin-bottom: 20px;
    line-height: 1.6;
}
.branch-divider {
    border: 0;
    border-top: 1px solid #eee;
    margin: 20px 0;
}
.branch-details li {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 10px;
    color: #555;
    font-weight: 500;
}
.branch-details i {
    color: var(--primary-green);
    width: 20px;
}

.branch-actions {
    margin-top: 25px;
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}
.branch-actions .btn {
    width: 100%;
    text-align: center;
}

/* --- Branch Detail Page --- */
.branch-detail-section {
    padding: 80px 0;
    /* Reuse consistent patterned background */
    background-image: url('../assets/images/background-body.png');
    background-size: cover;
}

.b-grid {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 50px;
}

/* Sidebar Info Cards */
.b-card {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}
.b-card h2 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
    border-bottom: 2px solid #f0f0f0;
    padding-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 10px;
}
.b-card h2 i { color: var(--primary-green); }

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid #f9f9f9;
}
.hours-list li:last-child { border: none; }

.contact-card p {
    margin-bottom: 15px;
    display: flex;
    gap: 10px;
    color: #666;
}
.contact-card i { color: var(--primary-green); margin-top: 3px; }
.contact-card a:not(.btn) { color: var(--primary-dark); font-weight: 600; text-decoration: none; }

.social-links-branch {
    display: flex;
    gap: 15px;
    margin-top: 20px;
}
.social-links-branch a {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    color: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s;
}
.social-links-branch a:hover {
    background: var(--primary-green);
    color: #fff;
    transform: translateY(-3px);
}

/* Main Content */
.b-about h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 20px;
    color: var(--primary-dark);
}
.b-about .lead {
    font-size: 1.2rem;
    color: var(--primary-green);
    margin-bottom: 20px;
    font-weight: 500;
}
.b-about p {
    color: #555;
    line-height: 1.8;
    margin-bottom: 15px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 20px;
    margin-top: 40px;
}
.amenity {
    background: #fff;
    padding: 20px;
    text-align: center;
    border-radius: 8px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.03);
    transition: transform 0.3s;
}
.amenity:hover { transform: translateY(-5px); }
.amenity i {
    font-size: 2rem;
    color: #ceb56f;
    margin-bottom: 10px;
    display: block;
}
.amenity span {
    font-weight: 600;
    color: #555;
    font-size: 0.9rem;
}

.b-map {
    margin-top: 50px;
}
.b-map h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
    font-family: var(--font-heading);
}
.b-map iframe {
    border-radius: 12px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
}

.branch-services {
    padding: 50px 0 120px;
}

.cta-section {
    padding: 80px 0;
    text-align: center;
    background: var(--primary-dark);
    color: #fff;
}
.cta-box h2 {
    font-family: var(--font-heading);
    font-size: 40px;
    margin-bottom: 15px;
    color: #ceb56f;
}
.cta-box p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
}

/* --- Services Listing Page (Massages) --- */
.services-list-section {
    padding: 80px 0;
    background-image: url('../assets/images/background-body.png');
    background-size: cover;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
}

.service-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0,0,0,0.06);
    transition: all 0.4s ease;
    position: relative; /* For full link overlay */
    border: 1px solid #f9f9f9;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 35px rgba(0,0,0,0.1);
}

.service-img {
    height: 240px;
    overflow: hidden;
    position: relative;
}
.service-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}
.service-card:hover .service-img img {
    transform: scale(1.1);
}

.service-content {
    padding: 30px;
}
.service-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 1lh;
    word-break: break-all;
}
.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px; /* Alignment fix */
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    min-height: 3lh;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid #eee;
    padding-top: 20px;
    color: #888;
    font-size: 0.9rem;
    font-weight: 500;
}
.service-meta i {
    
    vertical-align: middle;
}
.service-meta span:first-child i {
    margin-right: 8px;
    color: var(--primary-green);
}
.service-meta span:last-child {
    color: var(--primary-green);
    transition: transform 0.3s;
}
.service-card:hover .service-meta span:last-child {
    transform: translateX(5px);
}

/* Full card clickable link */
.full-link {
    position: absolute;
    inset: 0;
    z-index: 2;
}

/* --- Career Page --- */
.career-list {
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.job-card {
    background: #fff;
    border-radius: 8px;
    padding: 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: all 0.3s ease;
    border-left: 4px solid transparent;
}

.job-card:hover {
    transform: translateX(10px);
    border-left-color: var(--primary-green);
    box-shadow: 0 8px 25px rgba(0,0,0,0.1);
}

.job-info h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    margin-bottom: 8px;
}

.job-loc, .job-type {
    font-size: 0.9rem;
    color: #777;
    margin-right: 15px;
    display: inline-block;
}
.job-loc i, .job-type i {
    color: var(--primary-green);
    margin-right: 5px;
}

@media (max-width: 768px) {
    .job-card {
        flex-direction: column;
        align-items: flex-start;
        gap: 20px;
    }
    .job-card .btn {
        width: 100%;
        text-align: center;
    }
}


/* Responsive */
@media (max-width: 900px) {
    .gift-wrapper {
        grid-template-columns: 1fr;
    }
    .gift-preview {
        position: relative;
        top: 0;
        margin-bottom: 40px;
    }
    .features-grid {
        grid-template-columns: 1fr;
    }
}


/* Responsive Footer */
@media (max-width: 768px) {
    .brand-bar {
        flex-direction: column;
        gap: 15px;
    }
    
    .brand-separator {
        width: 50px;
        height: 1px; /* Horizontal on mobile */
    }

    .footer-nav {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }
}

/* Responsive */
@media (max-width: 768px) {
    .header-actions { display: none; } /* Hide 'Randevu Al' button on mobile for simplicity, or move to menu */
    
    .mobile-menu-btn { display: block; }
    
    .main-nav {
        /* position: absolute;
        top: 100%;
        left: 0; */
        width: 100%;
        background-color: var(--white);
        /* padding: 20px; */
        /* box-shadow: 0 5px 10px rgba(0,0,0,0.1); */
        /* display: none; */
        flex-direction: column;
    }

    .main-nav.active {
        display: flex;
    }

    .main-nav ul {
        flex-direction: column;
        text-align: center;
        width: 100%;
    }

    .main-nav a .arrow{ display: none;}
    .main-nav .submenu{ box-shadow: none; position: static; display: flex; background-color: transparent; border: none; padding-left: 20px; gap: 7px; padding-bottom: 0;}
    .submenu a{ padding: 0;}
    .submenu li{ border: none;}
    
    .hero-content h1 {
        font-size: 2rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }


    .booking-wrapper {
        flex-direction: column;
    }
    .booking-sidebar {
        width: 100%;
        padding: 20px;
    }
    .progress-steps {
        display: flex;
        margin-top: 20px;
        justify-content: space-between;
        margin-bottom: 0;
    }
    .progress-steps .step {
        margin-bottom: 0;
        flex-direction: column;
        font-size: 0.8rem;
        text-align: center;
    }
    .step-num { margin-right: 0; margin-bottom: 5px; width: 30px; height: 30px; }
    .booking-content { padding: 30px 20px; }
    
    .service-row{ flex-direction: column; gap: 10px;}
    .tier-box{ display: flex; align-items: center; justify-content: space-between;}
    .tier-name{ margin-bottom: 0;}
    .service-info{ margin-bottom: 0;}
}









/* Contact Page Styles */
.contact-grid {
    display: grid; 
    grid-template-columns: 1fr 1fr; 
    gap: 50px;
}

.contact-info-card {
    background: #f9f9f9;
    border: 1px solid #ebebeb;
    padding: 30px;
    border-radius: 8px;
    transition: transform 0.3s ease;
    background-color: var(--white);
    box-shadow: 0 5px 15px rgba(0,0,0,0.03);
}

.contact-info-card:hover {
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
    transform: translateY(-5px);
    border-color: var(--primary-green);
}

.contact-item {
    display: flex;
    align-items: center;
}

.contact-icon {
    width: 60px;
    height: 60px;
    background-color: #f0fdf4; /* Light green */
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 25px;
    flex-shrink: 0;
    font-size: 1.5rem;
    transition: all 0.3s;
}

.contact-info-card:hover .contact-icon {
    background-color: var(--primary-green);
    color: var(--white);
}

.contact-details h4 {
    font-size: 1.1rem;
    color: var(--dark-slate);
    margin-bottom: 5px;
    font-weight: 700;
}

.contact-details p, .contact-details a {
    color: #666;
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 0;
}

.contact-details a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.map-container {
    height: 450px;
    width: 100%;
    background-color: #eee;
    /* margin-top: 80px; */
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.contact-form-wrapper {
    background: white;
    padding: 40px;
    border-radius: 12px;
    border: 1px solid #ebebeb;
    box-shadow: 0 15px 40px rgba(0,0,0,0.05);
}

.contact-form-wrapper h3 {
    margin-bottom: 30px;
    color: var(--dark-slate);
    font-size: 1.8rem;
    position: relative;
    padding-bottom: 15px;
}

.contact-form-wrapper h3::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--primary-green);
}

@media (max-width: 992px) {
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .contact-form-wrapper {
        padding: 30px 20px;
    }
}

/* Massage Description Styling */
.massage-description {
    line-height: 1.8;
    color: #666;
    color: var(--primary-dark);
    margin-bottom: 30px;
    overflow: hidden;
}

.massage-float-img {
    float: right;
    width: 380px;
    max-width: 45%;
    margin-left: 25px;
    margin-top: 10px;
    /* margin-bottom: 25px; */
    /* border-radius: 15px; */
    /* box-shadow: 0 15px 35px rgba(0,0,0,0.1); */
    /* border: 8px solid #fff; */
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
    object-fit: cover;
    aspect-ratio: 4/3;
}

.massage-float-img:hover {
    transform: translateY(-5px) scale(1.02);
}

@media (max-width: 991px) {
    .massage-float-img {
        width: 320px;
    }
}

@media (max-width: 767px) {
    .massage-float-img {
        float: none;
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        margin-bottom: 25px;
        aspect-ratio: 16/9;
    }
}

.massage-description > p:first-child {
    margin-top: 0;
    margin-bottom: 20px;
}

.massage-description h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--primary-dark);
    /* margin-top: 30px; */
    margin-bottom: 15px;
    font-weight: 600;
}

.massage-description ul,
.massage-description ol {
    margin: 15px 0 25px 0;
    padding-left: 0;
    list-style: none;
}

.massage-description ul li,
.massage-description ol li {
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
    line-height: 1.7;
    color: #555;
}

.massage-description ul li::before {
    content: "✓";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
    font-size: 1.1em;
}

.massage-description ol {
    counter-reset: massage-counter;
}

.massage-description ol li {
    counter-increment: massage-counter;
}

.massage-description ol li::before {
    content: counter(massage-counter) ".";
    position: absolute;
    left: 0;
    color: var(--primary-green);
    font-weight: bold;
}

.massage-description strong {
    color: var(--primary-dark);
    font-weight: 600;
}

.massage-description p {
    margin-bottom: 15px;
}

/* --- New Global Utilities & Components --- */

/* Sections */
.section-padding { padding: 80px 0; }
.section-padding-sm { padding: 60px 0; }
.bg-cream { background-color: rgba(var(--primary-green-o), .025); }
.bg-light-gray { background-color: #f9f9f9; }
.bg-white { background-color: #fff; }

/* Typography */
.font-serif { font-family: var(--font-heading); }
.text-primary-dark { color: var(--primary-dark); }
.text-primary-green { color: var(--primary-green); }
.text-orange { color: var(--orange); }
.text-muted { color: #666; }
.text-center { text-align: center; }

.section-header-centered {
    text-align: center;
    margin-bottom: 60px;
}
.section-title {
    font-family: var(--font-heading);
    font-size: 40px;
    color: var(--primary-dark);
    margin-bottom: 20px;
}
.section-subtitle {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: #888;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.section-desc {
    font-size: 1.1rem;
    color: #666;
    max-width: 900px;
    margin: 0 auto;
    line-height: 1.8;
}
.sep-line {
    width: 80px;
    height: 3px;
    background-color: var(--primary-green);
    margin: 0 auto 30px;
}

/* Hero Standard */
.page-hero-standard {
    height: 500px; /* Default height */
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-position: center;
    background-size: cover;
    position: relative;
    height: fit-content;
    padding: 50px 0;
}
.page-hero-standard.hero-sm { min-height: 350px; }
.page-hero-standard.hero-md { min-height: 400px; }

.hero-overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.5);
}
.hero-content-standard {
    position: relative;
    z-index: 2;
    color: #fff;
}
.hero-title-lg {
    font-family: var(--font-heading);
    font-size: 3rem;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 1.2rem;
    max-width: 800px;
    margin: 0 auto;
}

/* Feature Grid & Cards */
.features-grid-3 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}
.features-grid-4 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(366px, 1fr));
    gap: 30px;
}

.feature-card-std {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
    text-align: center;
}
.feature-card-std:hover {
    transform: translateY(-10px);
}
.feature-icon-lg {
    font-size: 40px;
    color: var(--primary-green);
    margin-bottom: 20px;
}
.feature-title-md {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

/* Info Box */
.info-box-cream {
    background-color: rgba(var(--primary-green-o), .025);
    padding: 20px;
    border-radius: 8px;
    border-left: 4px solid var(--primary-green);
    color: var(--primary-dark);
}

/* Call to Action Section */
.cta-section-std {
    padding: 80px 0;
    background-size: cover;
    background-attachment: fixed;
    color: #fff;
    text-align: center;
    position: relative;
    background-color: var(--primary-dark); /* Fallback */
}
.cta-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,0.6);
}
.cta-content {
    position: relative;
    z-index: 2;
}
.btn-cta-lg {
    padding: 15px 40px;
    font-size: 1.1rem;
    background-color: var(--primary-green);
    border: none;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    display: inline-block;
    text-decoration: none;
}
.btn-cta-lg:hover {
    background-color: #55711c; /* Darker shade */
    color: #fff;
    transform: scale(1.05);
}

/* Component: Ritual List (SPA) */
.ritual-item {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 50px;
    align-items: center;
    border-bottom: 1px solid #eee;
    padding-bottom: 50px;
}
.ritual-item:last-child {
    margin-bottom: 0;
    border-bottom: none;
}
.ritual-content {
    flex: 1;
    min-width: 300px;
}
.ritual-icon {
    flex: 0 0 100px;
    text-align: center;
    color: var(--orange);
    font-size: 4rem;
}
.ritual-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: var(--primary-dark);
    margin-bottom: 15px;
}
.ritual-item.reverse {
    flex-direction: row-reverse;
}
.ritual-item .ritual-content { padding-right: 30px; }
.ritual-item.reverse .ritual-content { padding-left: 30px; padding-right: 0; }

@media (max-width: 768px) {
    .ritual-item, .ritual-item.reverse { flex-direction: column !important; text-align: center; }
    .ritual-content, .ritual-item.reverse .ritual-content { padding: 0 !important; margin-bottom: 20px; }
}

/* Component: Therapist Levels (About) */
.level-card {
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    transition: transform 0.3s ease;
    background: #fff;
}
.level-header {
    padding: 30px;
    text-align: center;
}
.level-body {
    padding: 30px;
}
.level-card .level-icon {
    font-size: 3rem;
    margin-bottom: 10px;
}
.level-card h3 {
    font-family: var(--font-heading);
    margin-bottom: 5px;
}
.level-badge {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.85rem;
}
/* Elite Variant */
.level-card.elite .level-header { background-color: rgba(var(--primary-green-o), .025); }
.level-card.elite h3 { color: var(--primary-dark); }
.level-card.elite .level-badge { background: #fff; color: #888; border: 1px solid #ddd; }
/* Master Variant */
.level-card.master { transform: scale(1.02); box-shadow: 0 10px 30px rgba(0,0,0,0.05); }
.level-card.master .level-header { background-color: var(--primary-dark); color: #fff; }
.level-card.master h3 { color: #fff; }
.level-card.master .level-badge { background: rgba(255,255,255,0.2); color: #eee; }

/* Component: Membership List */
.features-list-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
}
.feature-item-bordered {
    border: 1px solid #eee;
    padding: 25px;
    border-radius: 8px;
}
.feature-item-bordered h4 {
    color: var(--primary-green);
    margin-bottom: 10px;
}


@media screen and (max-width: 600px) {
    .services-grid,
    .branches-grid{ display: flex; flex-direction: column;}

    .hero-title-lg{ font-size: 28px;}
    .hero-desc{ font-size: 15px;}
    .hero-breadcrumb{ font-size: 15px;}

    .section-title{ font-size: 26px;}

    .feature-title-md{ font-size: 18px; font-weight: 600;}

    .ritual-content h3{ font-size: 20px;}

    .ritual-icon{ order: 1;}
    .ritual-content{ order: 2;}

    .btn-cta-lg{ font-size: 15px;}

    .total-row{ flex-direction: column;}
    .card-grid{ display: flex; flex-direction: column; gap: 0;}
}


/* Sidebar Layout Grid (Responsive) */
.sidebar-layout-grid {
    display: grid;
    grid-template-columns: 350px 1fr;
    gap: 40px;
    align-items: start;
}
.sidebar-layout-grid.reverse {
    grid-template-columns: 1fr 350px;
}
.sidebar-col {
    /* position: sticky; */
    /* top: 100px; */
}
.content-col {
    /* Base styles handled by utility classes, layout here */
    background: #fff;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
}

@media (max-width: 992px) {
    .sidebar-layout-grid {
        display: flex;
        flex-direction: column;
        gap: 30px;
    }
    .sidebar-col {
        position: static;
        order: 2; /* Sidebar below content on mobile usually better for SEO/UX if content is main focus */
    }
    /* If user prefers sidebar first, remove order: 2 */
    .content-col {
        /* order: 1; default */
    }
}

/* Skincare Specific Styles */
.intro-subtitle {
    display: block;
    color: var(--primary-green);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.services-padding {
    padding: 80px 0;
}
.service-item-box {
    background: #fff;
    padding: 40px 30px;
    height: 100%;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}
.service-item-box:hover {
    transform: translateY(-5px);
}
.trust-image-wrapper {
    position: relative;
    padding-left: 30px;
    padding-bottom: 30px;
}
.trust-image {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center;
    border-radius: 12px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.1);
}
.experience-badge {
    position: absolute;
    bottom: 0;
    left: 0;
    background: var(--primary-dark);
    color: #fff;
    padding: 30px;
    border-radius: 8px;
    font-family: var(--font-heading);
    z-index: 2;
}
.exp-number {
    font-size: 40px;
    display: block;
    line-height: 1;
}
.exp-text {
    font-size: 1rem;
    opacity: 0.8;
}

@media (max-width: 992px) {
    .trust-image-wrapper {
        margin-top: 40px;
        padding-left: 0;
        padding-bottom: 0;
    }
    .trust-image {
        height: 300px;
    }
    .experience-badge {
        bottom: -20px;
        left: 20px;
        padding: 20px;
    }
}

/* Skincare Specific Layouts & Utilities */
.max-w-800 { max-width: 800px; }
.mx-auto { margin-left: auto; margin-right: auto; }
.mt-20 { margin-top: 20px; }
.mb-20 { margin-bottom: 20px; }
.mb-25 { margin-bottom: 25px; }
.mb-30 { margin-bottom: 30px; }
.mb-40 { margin-bottom: 40px; }
.m-0 { margin: 0; }
.text-center { text-align: center; }
.text-left { text-align: left; }
.lh-18 { line-height: 1.8; }
.lh-16 { line-height: 1.6; }
.font-light { font-weight: 300; }
.bg-dark { background-color: var(--primary-dark); }
.no-shadow { box-shadow: none !important; }
.bg-transparent { background: transparent !important; }
.p-0 { padding: 0 !important; }

.two-col-balanced {
    grid-template-columns: 1fr 1fr;
    align-items: center;
}
.sidebar-layout-grid.two-col-balanced .sidebar-col {
    order: 2; /* Image on right by default */
    width: 100%;
}

@media (max-width: 992px) {
    .sidebar-layout-grid.two-col-balanced {
        grid-template-columns: 1fr;
    }
    .sidebar-layout-grid.two-col-balanced .sidebar-col {
        order: 1; /* Image first on mobile */
        margin-top: 30px;
    }
}

.custom-list-check { list-style: none; padding: 0; }
.pl-25 { padding-left: 25px; }
.relative { position: relative; }
.mb-15 { margin-bottom: 15px; }
.list-check-icon { 
    position: absolute; 
    left: 0; 
    top: 4px; 
    color: var(--primary-green); 
    margin-right: 10px;
}

/* Branch Detail Specific Styles */
.hero-btn-group {
    margin-top: 30px;
    display: flex;
    gap: 15px;
    justify-content: center;
}
.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 20px;
    margin-top: 30px;
}
.amenity {
    text-align: center;
    background: #f9f9f9;
    padding: 20px;
    border-radius: 8px;
    transition: transform 0.3s ease;
}
.amenity:hover {
    transform: translateY(-5px);
    background: #fff;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
}
.amenity i {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
    display: block;
}
.amenity span {
    font-size: 0.9rem;
    color: #555;
    font-weight: 500;
}
.b-map {
    margin-top: 40px;
}
.b-map h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}
.social-links-branch {
    margin-top: 20px;
    display: flex;
    gap: 15px;
}
.social-links-branch a {
    width: 40px;
    height: 40px;
    background: #f0fdf4;
    color: var(--primary-green);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}
.social-links-branch a:hover {
    background: var(--primary-green);
    color: #fff;
}

/* --- Refined Footer Styles --- */
.footer-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-bottom: 60px;
    padding-bottom: 40px;
}

.footer-col h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 10px;
}

.footer-col h3::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 30px;
    height: 2px;
    background-color: var(--primary-green);
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links li a {
    color: rgba(255,255,255,0.7);
    font-size: 0.95rem;
    transition: all 0.3s;
    text-decoration: none;
}

.footer-links li a:hover {
    color: var(--primary-green);
    padding-left: 5px;
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .footer-col h3::after {
        left: 50%;
        transform: translateX(-50%);
    }
    .footer-links li a:hover {
        padding-left: 0;
    }
}
/* --- Blog Detail Page Styles --- */
.hero-meta {
    margin-bottom: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 0.9rem;
}

.blog-post-content {
    background: #fff;
    padding: 40px;
    border-radius: 8px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.05);
    font-size: 1.1rem;
    line-height: 1.8;
    color: #444;
}

.share-post {
    /* margin-top: 30px; */
    padding: 20px;
    border-top: 1px solid #eee;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.share-label {
    font-weight: 700;
    color: var(--primary-dark);
}

.share-icons a {
    color: #666;
    margin-left: 15px;
    font-size: 1.1rem;
}

.blog-sidebar-widget {
    background: #fff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.blog-sidebar-widget h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--primary-green);
}

.recent-posts-list {
    list-style: none;
    padding: 0;
}

.recent-post-item {
    margin-bottom: 15px;
    display: flex;
    align-items: center;
}

.recent-post-thumb {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 4px;
    margin-right: 15px;
}

.recent-post-info h4 {
    font-size: 0.95rem;
    margin: 0 0 5px;
}

.recent-post-info h4 a {
    color: #333;
    text-decoration: none;
}

.recent-post-date {
    font-size: 0.8rem;
    color: #999;
}

.newsletter-widget {
    background: var(--primary-dark);
    padding: 30px;
    border-radius: 8px;
    color: #fff;
    text-align: center;
}

.newsletter-widget h3 {
    font-family: var(--font-heading);
    margin-bottom: 15px;
    border-bottom: none;
}

.newsletter-widget p {
    font-size: 0.9rem;
    margin-bottom: 20px;
    opacity: 0.8;
}

.newsletter-widget input {
    width: 100%;
    padding: 12px;
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    color: #333;
}

.newsletter-widget .btn {
    width: 100%;
}

.newsletter-message {
    margin-top: 15px;
    font-size: 0.85rem;
}

/* Membership Page Utilities */
.mt-10 { margin-top: 10px; }
.mt-30 { margin-top: 30px; }
.mb-10 { margin-bottom: 10px; }
.mb-60 { margin-bottom: 60px; }
.max-w-900 { max-width: 900px; }
.p-20 { padding: 20px; }
.justify-center { justify-content: center; }
.font-bold { font-weight: bold; }
.font-italic { font-style: italic; }
.font-sm { font-size: 0.95rem; }
.font-18 { font-size: 1.8rem; }
.font-20 { font-size: 2rem; }
.lh-17 { line-height: 1.7; }
.text-dim { color: #777; }
.text-dark { color: #444; }

.highlight-cream {
    background-color: var(--primary-green); 
    color: #fff;
    padding: 40px; 
    border-radius: 8px;
}

.terms-grid {
    column-count: 2; 
    column-gap: 40px;
}

@media (max-width: 768px) {
    .terms-grid { column-count: 1 !important; }
}
@media (max-width: 768px) {
    .hero-title-lg { font-size: 2rem !important; }
}

/* Blog & News Styles */
.page-hero.h-400 { height: 400px; }
.page-hero.h-450 { height: 450px; }

.section-padding-60 { padding: 60px 0; }
.section-padding-80 { padding: 80px 0; }

.blog-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.blog-card {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    transition: transform 0.3s ease;
}

.blog-card:hover { transform: translateY(-5px); }

.blog-img {
    height: 250px;
    overflow: hidden;
}

.blog-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.blog-card:hover .blog-img img { transform: scale(1.05); }

.blog-content { padding: 25px; }

.blog-meta {
    font-size: 0.85rem;
    color: #888;
    margin-bottom: 10px;
}

.blog-meta .sep-pipe { margin: 0 10px; }

.blog-card h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    margin-bottom: 15px;
}

.blog-card h3 a {
    color: var(--primary-dark);
    text-decoration: none;
}

.blog-card p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 20px;
}

.btn-text {
    color: var(--primary-green);
    font-weight: 700;
    text-decoration: none;
}

/* News Detail Styles */
.news-detail-meta {
    margin-bottom: 15px;
}

.news-date-badge {
    background: var(--primary-green);
    color: #fff;
    padding: 5px 15px;
    border-radius: 4px;
    font-size: 0.9rem;
}

.news-date-badge.pill {
    border-radius: 20px;
    font-size: 0.85rem;
}

.max-w-900-centered {
    max-width: 900px;
    margin: 0 auto;
}

.news-full-content {
    background: #fff;
    padding: 50px;
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.05);
}

.content-body {
    font-size: 1.15rem;
    line-height: 1.8;
    color: #444;
}

.content-body .lead {
    font-size: 1.3rem;
    margin-bottom: 30px;
    color: var(--primary-dark);
    font-weight: 500;
}

.back-btn-wrapper {
    margin-top: 50px;
    text-align: center;
}

.other-news-section {
    margin-top: 60px;
}

.other-news-section h3 {
    text-align: center;
    margin-bottom: 40px;
    font-family: var(--font-heading);
}

.news-mini-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}

.mini-news-card {
    display: block;
    text-decoration: none;
    padding: 20px;
    background: #fff;
    border-radius: 8px;
    transition: transform 0.3s ease;
}

.mini-news-card:hover { transform: translateY(-3px); }

.mini-news-card span {
    font-size: 0.8rem;
    color: #999;
    display: block;
    margin-bottom: 5px;
}

.mini-news-card h4 {
    color: var(--primary-dark);
    margin: 0;
    font-size: 1.1rem;
}

/* News Index Styles */
.news-item {
    display: flex;
    flex-wrap: wrap;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.05);
    margin-bottom: 30px;
}

.news-item-img {
    flex: 1;
    min-width: 300px;
    height: 300px;
}

.news-item-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.news-item-content {
    flex: 1.5;
    min-width: 300px;
    padding: 40px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.news-item h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    margin-bottom: 15px;
    color: var(--primary-dark);
}

.news-item h3 a {
    color: inherit;
    text-decoration: none;
}

.news-item p {
    color: #666;
    line-height: 1.6;
    margin-bottom: 25px;
    font-size: 1.1rem;
}



/* Responsiveness for blog & news */
@media (max-width: 992px) {
    .news-item { flex-direction: column; }
    .news-item-img { height: 250px; }
    .news-item-content { padding: 30px; }
}

@media (max-width: 768px) {
    .news-full-content { padding: 30px; }
    .content-body { font-size: 1.05rem; }
    .content-body .lead { font-size: 1.15rem; }
    .blog-grid { grid-template-columns: 1fr; }

    .features-grid-4{ display: flex; flex-direction: column;}
}

/* Location Info Section */
.location-section {
    background-color: var(--white);
}

.location-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 50px;
}

@media (max-width: 992px) {
    .location-grid {
        grid-template-columns: 1fr;
    }
}

.location-slider-col {
    position: relative;
    /* border-radius: 8px; */
    overflow: hidden;
    /* box-shadow: 0 5px 15px rgba(0,0,0,0.1); */
}

.location-slider-col .swiper{ padding-bottom: 40px;}

.location-slider .swiper-slide img {
    width: 100%;
    height: 450px;
    object-fit: contain;
    display: block;
}

.location-slider .swiper-pagination {
    bottom: 15px;
}

.location-slider .swiper-pagination-bullet {
    background-color: transparent !important;
    border: 1px solid var(--primary-green) !important;
    opacity: 1 !important;
    width: 10px;
    height: 10px;
    margin: 0 6px !important;
    transition: all 0.3s ease;
}

.location-slider .swiper-pagination-bullet-active {
    background-color: var(--primary-green) !important;
    border-color: var(--primary-green) !important;
    transform: scale(1.3);
}

.location-map-col {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(0,0,0,0.1);
    height: 450px;
}

.location-map-col iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Location Bottom Text */
.location-text-area {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    color: var(--dark-slate);
}

.location-text-area a {
    color: var(--primary-green);
    text-decoration: underline;
    font-weight: 600;
}

.location-text-area-title {
    color: var(--primary-green);
    margin-bottom: 15px;
    font-size: 2rem;
}

.location-subtitle {
    font-size: 1.4rem;
    color: var(--primary-green);
    margin-bottom: 25px;
    font-family: var(--font-heading);
    font-weight: 700;
}

.location-text-area p {
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 15px;
}

.location-benefits {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 20px 0;
}

.location-benefits ul {
    list-style: none;
    text-align: center;
    padding: 0;
    margin: 0;
}

.location-benefits > ul > li {
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--primary-green);
}

.location-benefits > ul > li > ul {
    margin-top: 5px;
    margin-left: 0;
}

.location-benefits > ul > li > ul > li {
    margin-bottom: 5px;
    font-weight: 500;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    gap: 8px;
}

.location-benefits > ul > li > ul > li::before {
    content: "•";
    color: var(--primary-green);
    font-size: 1.2rem;
    line-height: 1.5;
}

/* --- NEW FOOTER STYLES --- */
.site-footer-new {
    background-color: #fdfaf4; /* Light cream background similar to the image */
    color: var(--dark-slate);
    padding: 60px 0 40px;
    font-family: var(--font-body);
}

.new-footer-top {
    border-bottom: 1px solid rgba(0,0,0,0.1);
    padding-bottom: 30px;
    margin-bottom: 30px;
}

.nft-row-1 {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 40px;
}

.nft-connect {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.nft-connect-title {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--dark-slate);
}

.nft-social {
    display: flex;
    gap: 15px;
}

.nft-social a {
    color: var(--dark-slate);
    font-size: 1.2rem;
    transition: color 0.3s;
}

.nft-social a:hover {
    color: var(--primary-green);
}

.nft-links-right {
    display: flex;
    flex-wrap: wrap;
    gap: 20px 25px;
    justify-content: flex-end;
    align-items: center;
}

.nft-links-right a {
    color: var(--dark-slate);
    font-size: 0.95rem;
    font-weight: 500;
    transition: color 0.3s;
}

.nft-links-right a:hover {
    color: var(--primary-green);
}

.nft-row-2 {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
}

.nft-legal-links {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 15px 30px;
}

.nft-legal-links a {
    color: var(--dark-slate);
    font-size: 0.9rem;
    font-weight: 500;
}

.nft-legal-links a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.nft-privacy-pref a {
    color: var(--dark-slate);
    font-size: 0.9rem;
    font-weight: 500;
}

.nft-privacy-pref a:hover {
    color: var(--primary-green);
    text-decoration: underline;
}

.new-footer-disclaimer {
    font-size: 0.75rem;
    color: #555;
    text-align: center;
    max-width: 1000px;
    margin: 0 auto;
    line-height: 1.6;
}

.new-footer-disclaimer p {
    margin-bottom: 15px;
}

.new-footer-disclaimer p:last-child {
    margin-bottom: 0;
}

/* Responsive new footer */
@media (max-width: 992px) {
    .nft-row-1 {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 25px;
    }
    
    .nft-social {
        justify-content: center;
    }
    
    .nft-links-right {
        justify-content: center;
    }
}

/* Policy & Simple Pages */
.simple-page-wrapper {
    max-width: 1200px;
    /* margin: 60px auto; */
    margin-inline: auto;
    padding: 40px 15px;
    font-family: var(--font-body, 'Lato', sans-serif);
    color: var(--primary-green);
}
.simple-page-title {
    color: var(--primary-green);
    font-size: 2.5rem;
    font-family: var(--font-heading, "Playfair Display", serif);
    font-weight: 700;
    margin-bottom: 30px;
}
.simple-page-content {
    font-size: 1.05rem;
    line-height: 1.8;
}
.simple-page-content p {
    /* color: var(--dark-slate); */
    margin-bottom: 20px;
}
.simple-page-content h3, .simple-page-content h4 {
    color: var(--primary-green);
    font-family: var(--font-heading, "Playfair Display", serif);
    margin-top: 30px;
    margin-bottom: 15px;
    font-size: 1.5rem;
}
.simple-page-content ul {
    list-style-type: disc;
    padding-left: 20px;
    margin-bottom: 20px;
}
.simple-page-content a {
    color: var(--primary-green, #0087a3);
    text-decoration: underline;
}
@media (max-width: 768px) {
    .simple-page-wrapper {
        margin: 30px auto;
        padding: 20px 15px;
    }
}
