/* Basic Reset & Variables */
:root {
    --primary-green: #4a7d5a;
    --primary-dark: #3a6347;
    --dark-slate: #4C5C65;
    --text-color: #333;
    --bg-light: #f9f9f9;
    --white: #ffffff;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Lato', sans-serif;
    --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: 2.5rem;
    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; /* Slightly rounded, clean look */
    font-weight: 700;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 1px;
    cursor: pointer;
}

.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);
}

.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;
    z-index: 1000;
}

/* Header Top: Logo & Actions */
.header-top {
    padding: 15px 0;
    background-color: var(--white);
}

.header-top-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo img {
    height: 80px; /* Adjust as needed */
    display: block;
}

.header-actions-wrapper {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 10px;
}

.utility-nav {
    display: flex;
    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);
}

.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: 15px 25px;
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: background-color 0.3s;
    text-decoration: none;
    cursor: pointer;
}

.main-nav > ul > li > a:hover,
.main-nav > ul > li.active > 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);
    min-width: 220px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border-top: 3px solid var(--primary-dark);
    z-index: 1001;
    flex-direction: column;
}

.submenu li {
    border-bottom: 1px solid #eee;
}

.submenu li:last-child {
    border-bottom: none;
}

.submenu a {
    color: var(--dark-slate); /* Submenu text color */
    padding: 12px 20px;
    font-size: 0.9rem;
    text-transform: none; /* Normal case for sub items usually looks cleaner */
    font-weight: 600;
}

.submenu a:hover {
    background-color: #f5f5f5;
    color: var(--primary-green);
}

/* 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(--dark-slate);
    margin: 6px 0;
    transition: var(--transition);
}

/* Responsive Design for Header */
@media (max-width: 992px) {
    .header-bottom {
        /* Mobile Menu Container */
        position: absolute;
        top: 100%;
        left: 0;
        width: 100%;
        background-color: var(--white);
        border-top: 1px solid rgba(0,0,0,0.05); /* Subtle separator */
        box-shadow: 0 15px 30px rgba(0,0,0,0.1);
        max-height: 85vh;
        overflow-y: auto;
        
        /* Transition States */
        visibility: hidden;
        opacity: 0;
        transform: translateY(-10px);
        transition: all 0.3s ease-in-out;
        z-index: 999;
    }
    
    .site-header.active .header-bottom {
        visibility: visible;
        opacity: 1;
        transform: translateY(0);
        display: block; /* Ensure it takes space if needed, though absolute handles it */
    }

    .main-nav ul {
        flex-direction: column;
        width: 100%;
        padding: 10px 0;
    }

    .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: 18px 25px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 1rem;
        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;
    }
    
    .submenu a:hover {
        background-color: #eee;
        color: var(--primary-green);
    }

    /* Hide Desktop-only elements */
    .header-actions-wrapper {
        display: none; 
    }

    /* 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: 70vh; /* 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 */
}

/* ... 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-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;
    position: relative;
    z-index: 10;
}

.hero-actions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    margin-bottom: 0px;
    transform: translateY(-80px);
}

.action-card {
    background-color: #52795A;
    background-image: url('../assets/images/background-promo-tiles2.png'); /* Pattern for cards */
    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: #52795A;
    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: 'Playfair Display', serif; /* 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;
}

.copyright {
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
    max-width: 800px;
    margin: 0 auto;
    line-height: 1.5;
}

/* 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: 2.5rem;
    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); }
}

@media (max-width: 768px) {
    .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; }
}

/* 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;
}

.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));
    gap: 20px;
    margin-bottom: 30px;
}

.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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: #fdfaf5; /* 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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
    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: 'Playfair Display', serif;
}
.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: 'Playfair Display', serif;
    font-size: 2.5rem;
    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: 'Playfair Display', serif;
    font-size: 1.5rem;
    margin-bottom: 12px;
    color: var(--primary-dark);
}
.service-content p {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    margin-bottom: 25px;
    min-height: 45px; /* Alignment fix */
}

.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: 'Playfair Display', serif;
    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 .submenu{ position: static;}
    
    .hero-content h1 {
        font-size: 2.5rem;
    }

    .grid-2 {
        grid-template-columns: 1fr;
    }
}


