/* Import Elegant Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;0,700;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Variables & Design Tokens --- */
:root {
    /* Color Palette from Branding */
    --color-gold-start: #A58658;      /* Gold Start */
    --color-gold-end: #D2B57F;        /* Gold End */
    --color-brand-pink-light: #F4D9D5; /* Soft Rose */
    --color-brand-beige: #EADAC8;     /* Soft Sand/Beige */
    --color-brand-pink-muted: #D2A79F;/* Muted Dark Rose */
    --color-brand-taupe: #B79B88;     /* Warm Grey-Brown */
    
    /* Functional Colors */
    --color-bg-primary: #FCFAF7;       /* Warm Off-White */
    --color-bg-secondary: var(--color-brand-beige);  /* Soft Sand */
    --color-text-primary: #1E1D1B;     /* Deep Charcoal */
    --color-text-secondary: var(--color-brand-taupe);/* Muted Grey-Brown */
    --color-accent-gold: var(--color-gold-start);
    --color-accent-light: var(--color-gold-end);
    --color-accent-dark: #5C4D37;      /* Warm Dark Bronze */
    --color-white: #FFFFFF;
    --color-error: #D93838;
    
    /* Typography */
    --font-heading: 'Cormorant Garamond', serif;
    --font-body: 'Inter', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 8rem;
    
    /* Layout */
    --max-width: 1200px;
    --header-height: 80px;
    --border-radius-sm: 4px;
    --border-radius-md: 12px;
    --border-radius-lg: 24px;
    
    /* Transitions & Shadow */
    --transition-smooth: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --shadow-soft: 0 8px 30px rgba(30, 29, 27, 0.04);
    --shadow-medium: 0 12px 40px rgba(30, 29, 27, 0.08);
}

/* --- CSS Reset & Base Styles --- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-body);
    background-color: var(--color-bg-primary);
    color: var(--color-text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}


h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 500;
    line-height: 1.2;
    color: var(--color-text-primary);
}

p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 300;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition-smooth);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

button {
    font-family: var(--font-body);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
}

/* --- Scrollbar --- */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--color-bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--color-accent-light);
    border-radius: var(--border-radius-sm);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--color-accent-gold);
}

/* --- Layout Utilities --- */
.container {
    max-width: var(--max-width);
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section-padding {
    padding: var(--spacing-lg) 0;
}

@media(min-width: 768px) {
    .section-padding {
        padding: var(--spacing-xl) 0;
    }
}

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

.flex-center {
    display: flex;
    justify-content: center;
    align-items: center;
}

/* --- Typography Utilities --- */
.section-title {
    font-size: 2.5rem;
    margin-bottom: var(--spacing-sm);
    letter-spacing: -0.02em;
}

@media(min-width: 768px) {
    .section-title {
        font-size: 3.5rem;
    }
}

.section-subtitle {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-accent-gold);
    margin-bottom: var(--spacing-xs);
    font-weight: 500;
}

/* --- Sticky Header / Navigation --- */
header {
    position: fixed;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    width: calc(100% - 40px);
    max-width: var(--max-width);
    height: 70px;
    display: flex;
    align-items: center;
    z-index: 1000;
    transition: var(--transition-smooth);
    border-radius: 40px;
    border: 1px solid rgba(210, 167, 159, 0.25);
    background-color: rgba(252, 250, 247, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 10px 30px rgba(30, 29, 27, 0.06);
    padding: 0 var(--spacing-sm);
}

header.scrolled {
    top: 8px;
    background-color: rgba(252, 250, 247, 0.96);
    box-shadow: 0 12px 40px rgba(30, 29, 27, 0.09);
    border-color: rgba(165, 134, 88, 0.18);
}

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

.logo {
    display: flex;
    align-items: center;
}

.logo img {
    height: 48px;
    width: auto;
    display: block;
    transition: var(--transition-smooth);
}

.footer-logo {
    display: inline-block;
    margin-bottom: var(--spacing-sm);
}

.footer-logo img {
    height: 70px;
    width: auto;
    display: block;
    filter: brightness(0.95);
}

.nav-menu {
    display: none;
}

@media(min-width: 992px) {
    /* Direct sibling layout for desktop with space-between even spacing */
    .nav-container {
        position: relative;
        display: flex;
        justify-content: space-between;
        align-items: center;
        width: 100%;
        max-width: 900px; /* Constrain width for a compact, aesthetic layout */
        margin: 0 auto; /* Center inside the header pill */
    }
    
    .nav-link {
        font-size: 0.85rem;
        text-transform: uppercase;
        letter-spacing: 0.1em;
        font-weight: 500;
        color: var(--color-text-primary);
        position: relative;
        padding: 5px 0;
    }
    
    .nav-link::after {
        content: '';
        position: absolute;
        bottom: 0;
        left: 50%;
        width: 0;
        height: 1px;
        background-color: var(--color-accent-gold);
        transition: var(--transition-smooth);
        transform: translateX(-50%);
    }
    
    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }
    
    .nav-link:hover {
        color: var(--color-accent-gold);
    }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.9rem 2rem;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    border-radius: var(--border-radius-sm);
    transition: var(--transition-smooth);
    border: 1px solid transparent;
}

.btn-primary {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(165, 134, 88, 0.15);
    border: none;
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--color-gold-end), var(--color-gold-start));
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(165, 134, 88, 0.25);
}

.btn-outline {
    border-color: var(--color-accent-gold);
    color: var(--color-accent-gold);
    background: transparent;
}

.btn-outline:hover {
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-white);
    border-color: transparent;
    transform: translateY(-2px);
}

/* --- Mobile Menu Toggle --- */
.mobile-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    z-index: 1001;
}

.mobile-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background-color: var(--color-text-primary);
    transition: var(--transition-smooth);
}

@media(min-width: 992px) {
    .mobile-toggle {
        display: none;
    }
}

/* Open states for toggle */
.mobile-toggle.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.mobile-toggle.open span:nth-child(2) {
    opacity: 0;
}

.mobile-toggle.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

@media (max-width: 991px) {
    .nav-container {
        position: relative;
        justify-content: center;
    }
    .nav-container > .nav-link,
    .nav-container > .btn {
        display: none !important;
    }
    .logo {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    .mobile-toggle {
        position: absolute;
        right: 0;
    }
}

/* Mobile Nav Overlay */
.mobile-nav {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100vh;
    background-color: var(--color-bg-primary);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: var(--spacing-md);
    z-index: 999;
    transition: var(--transition-smooth);
}

.mobile-nav.open {
    right: 0;
}

.mobile-nav-link {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    color: var(--color-text-primary);
}

.mobile-nav-link:hover {
    color: var(--color-accent-gold);
}

/* ================================================
   Hero Section — Split Screen
   ================================================ */

.hero {
    padding-top: 0;
    overflow: hidden;
    position: relative; /* Anchor absolute mobile layers */
}

/* Mobile-only inline Treatwell badge - hidden on desktop */
.hero-badge-mobile {
    display: none;
}

.hero-split {
    display: grid;
    grid-template-columns: 1fr;
    min-height: 100vh;
}

@media (min-width: 900px) {
    .hero-split {
        grid-template-columns: 55% 45%;
    }
}

/* LEFT PANEL: Soft Rose */
.hero-left {
    background-color: var(--color-brand-pink-light);
    display: flex;
    align-items: center;
    padding: calc(var(--header-height) + 4rem) 4rem 4rem;
    position: relative;
    overflow: hidden;
    color: var(--color-text-primary);
}

.hero-left::before {
    content: '';
    position: absolute;
    top: -50px;
    left: -50px;
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(165, 134, 88, 0.12) 0%, rgba(229, 168, 82, 0.04) 50%, transparent 70%);
    pointer-events: none;
    filter: blur(40px);
    border-radius: 50%;
    opacity: 0.85;
    animation: driftGlow 25s infinite alternate ease-in-out;
}

@keyframes driftGlow {
    0% {
        transform: translate(0, 0) scale(1);
    }
    33% {
        transform: translate(110px, 70px) scale(1.12);
    }
    66% {
        transform: translate(-30px, 130px) scale(0.92);
    }
    100% {
        transform: translate(50px, -20px) scale(1.04);
    }
}

@media (max-width: 900px) {
    .hero-left {
        position: relative;
        z-index: 2;
        width: 100%;
        min-height: 100vh;
        background-color: transparent;
        display: flex;
        align-items: flex-end; /* Align the card to the bottom half of the screen */
        justify-content: center;
        padding: calc(var(--header-height) + 1.5rem) 1.2rem 3.5rem; /* Anchor at bottom */
    }

    .hero-left-inner {
        background: rgba(252, 250, 247, 0.88);
        backdrop-filter: blur(16px);
        -webkit-backdrop-filter: blur(16px);
        border: 1px solid rgba(165, 134, 88, 0.25);
        border-radius: var(--border-radius-md);
        padding: 1.8rem 1.2rem; /* Compact padding */
        width: 100%;
        max-width: 520px;
        box-shadow: 0 16px 36px rgba(30, 29, 27, 0.18);
        margin: 0 auto;
        animation: cardFadeIn 0.8s ease-out forwards;
    }

    /* Reduce margins inside the card to keep it compact */
    .hero-left-inner .hero-eyebrow {
        margin-bottom: 0.8rem;
    }

    .hero-left-inner .hero-headline {
        margin-bottom: 0.5rem;
    }

    .hero-left-inner .hero-tagline-desktop {
        display: none !important;
    }

    .hero-left-inner .hero-tagline-mobile {
        display: block !important;
        margin-bottom: 1.2rem;
        font-size: 0.95rem;
        line-height: 1.55;
    }

    /* Hide descriptions on mobile to keep the overlay card compact and balanced */
    .hero-desc-main,
    .hero-desc-short {
        display: none !important;
    }

    .hero-left-inner .hero-actions {
        margin-bottom: 1rem;
        justify-content: center; /* Center CTA buttons on mobile */
    }
}

@keyframes cardFadeIn {
    from {
        opacity: 0;
        transform: scale(0.96) translateY(10px);
    }
    to {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
}

.hero-left-inner {
    max-width: 520px;
}

.hero-left-inner > * {
    opacity: 0;
    transform: translateY(24px);
    animation: heroFadeInUp 0.85s cubic-bezier(0.25, 0.46, 0.45, 0.94) forwards;
}

/* Staggered delays */
.hero-left-inner .hero-eyebrow {
    animation-delay: 0.15s;
}
.hero-left-inner .hero-headline {
    animation-delay: 0.3s;
}
.hero-left-inner .hero-tagline {
    animation-delay: 0.45s;
}
.hero-left-inner p:nth-of-type(1) {
    animation-delay: 0.6s;
}
.hero-left-inner p:nth-of-type(2) {
    animation-delay: 0.7s;
}
.hero-left-inner .hero-actions {
    animation-delay: 0.85s;
}
.hero-left-inner .hero-stats {
    animation-delay: 1s;
}

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

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.22em;
    font-weight: 600;
    color: var(--color-gold-start);
    font-family: var(--font-body);
    margin-bottom: 1.6rem;
}

.hero-eyebrow i { font-size: 0.65rem; }

.hero-headline {
    font-family: var(--font-heading);
    font-size: clamp(1.1rem, 3.5vw, 2.25rem);
    font-weight: 400;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 1rem;
    white-space: nowrap;
}

.hero-tagline {
    display: block;
    font-family: var(--font-heading);
    font-weight: 500;
    font-size: 1.1rem;
    color: var(--color-accent-gold);
    line-height: 1.45;
    margin-bottom: 1.2rem;
}

.hero-tagline-mobile {
    display: none !important;
}

.hero-desc-main,
.hero-desc-short {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    font-weight: 300;
}

.hero-desc-main {
    margin-bottom: 0.8rem;
}

.hero-desc-short {
    margin-bottom: 2rem;
}

.hero-subtext {
    font-size: 0.97rem;
    color: var(--color-text-secondary);
    line-height: 1.75;
    max-width: 380px;
    margin-bottom: 2.2rem;
    font-weight: 400;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-family: var(--font-body);
    color: var(--color-gold-start);
    border: 1px solid var(--color-gold-start);
    border-radius: var(--border-radius-sm);
    text-decoration: none;
    transition: var(--transition-smooth);
    cursor: pointer;
    background: transparent;
}

.btn-ghost:hover {
    background: rgba(165, 134, 88, 0.08);
    border-color: var(--color-gold-end);
    color: var(--color-gold-end);
}

.hero-stats {
    display: inline-flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: var(--border-radius-md);
    padding: 1.35rem 2rem 1.05rem; /* Visually offset top/bottom padding to center content */
    box-shadow: 0 8px 32px rgba(165, 134, 88, 0.05);
    transition: var(--transition-smooth);
    margin-top: 0.5rem;
}

.hero-stats:hover {
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.65);
    box-shadow: 0 12px 36px rgba(165, 134, 88, 0.08);
    border-color: rgba(165, 134, 88, 0.2);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 500;
    color: var(--color-gold-start);
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.65rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
    line-height: 1; /* Reset line-height to remove extra bottom whitespace */
}

.hero-stat-divider {
    width: 1px;
    height: 32px;
    background: rgba(165, 134, 88, 0.18);
    margin: 0 1.8rem;
    flex-shrink: 0;
}

/* Stat Badge Image Alignment */
.hero-stat-badge {
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-stat-badge-img {
    height: 64px;
    width: auto;
    object-fit: contain;
    display: block;
    transition: var(--transition-smooth);
}

.hero-stats:hover .hero-stat-badge-img {
    transform: scale(1.05);
}

/* RIGHT PANEL: Full-height image slideshow */
.hero-right {
    position: relative;
    height: 100%;
    overflow: hidden;
}

@media (max-width: 900px) {
    .hero-split {
        position: relative;
    }

    .hero-right {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        z-index: 1;
        background-color: var(--color-brand-pink-light);
    }

    /* Hide the floating badge container to avoid overlapping card boxes */
    .hero-badge {
        display: none !important;
    }

    /* Style the inline Treatwell badge to float as a simple gold label inside the card */
    .hero-badge-mobile {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 0.45rem;
        margin: 1.4rem auto 0.4rem auto;
        color: var(--color-gold-start);
        font-family: var(--font-heading);
        font-size: 0.95rem;
        font-weight: 600;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        width: 100%;
        text-align: center;
    }

    .hero-badge-mobile svg {
        width: 18px;
        height: 18px;
        fill: #E5A852;
        flex-shrink: 0;
    }

    /* Semi-transparent stats card bar on mobile, perfectly centered */
    .hero-stats {
        background: rgba(255, 255, 255, 0.45);
        backdrop-filter: blur(10px);
        -webkit-backdrop-filter: blur(10px);
        border: 1px solid rgba(255, 255, 255, 0.6);
        border-radius: var(--border-radius-md);
        box-shadow: 0 8px 32px rgba(165, 134, 88, 0.05);
        padding: 1.15rem 1rem 0.95rem; /* Visually offset to center content vertically */
        margin-top: 1.2rem;
        width: 100%;
        display: flex;
        justify-content: space-around;
        align-items: center;
    }

    .hero-stats:hover {
        transform: none;
        background: transparent;
        box-shadow: none;
        border-color: transparent;
    }

    .hero-stat-divider {
        margin: 0 0.5rem;
    }

    .hero-stat {
        align-items: center;
        text-align: center;
    }

    .hero-stat-badge-img {
        height: 52px;
    }
}

/* Gradient transition from hero bottom to section below */
.hero-right::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 150px;
    background: linear-gradient(to bottom, transparent, var(--color-brand-pink-light));
    pointer-events: none;
    z-index: 3;
}

.hero-slideshow {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
    z-index: 1;
}

.hero-slide.active {
    opacity: 1;
    z-index: 2;
}

.hero-split-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
    display: block;
    transform: scale(1.08);
    transition: none;
}

.hero-slide.active .hero-split-img {
    transform: scale(1.01);
    transition: transform 6.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Ensure float badge is above slideshow overlays */
.hero-badge {
    z-index: 5;
}

.hero-badge {
    position: absolute;
    bottom: 2rem;
    left: 2rem;
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(165, 134, 88, 0.35);
    border-radius: var(--border-radius-md);
    padding: 0.9rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    box-shadow: 0 8px 30px rgba(30, 29, 27, 0.1);
    transition: var(--transition-smooth);
    animation: heroBadgeFloat 4s ease-in-out infinite;
}

.hero-badge:hover {
    animation-play-state: paused;
    transform: translateY(-6px) scale(1.04);
    border-color: var(--color-gold-start);
    box-shadow: 0 12px 35px rgba(165, 134, 88, 0.15);
}

@keyframes heroBadgeFloat {
    0%, 100% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-8px);
    }
}

.hero-badge svg {
    width: 22px;
    height: 22px;
    fill: #E5A852;
    flex-shrink: 0;
}

.hero-badge-title {
    display: block;
    font-size: 0.62rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-text-secondary);
    font-family: var(--font-body);
}

.hero-badge-sub {
    display: block;
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    line-height: 1.2;
}

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

/* ================================================
   Page Hero Banner (inner pages)
   ================================================ */

.page-hero {
    background-color: var(--color-brand-pink-light);
    padding: calc(var(--header-height) + 4rem) 1.5rem 4rem;
    text-align: center;
    margin-top: 0;
}

.page-hero-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin: 0.5rem 0 1rem;
    line-height: 1.15;
}

.page-hero-sub {
    font-size: 1rem;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.7;
}

/* ================================================
   Services Teaser Grid (homepage)
   ================================================ */

.services-teaser-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 1.2rem;
    margin-top: 2.5rem;
}

.services-teaser-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6rem;
    padding: 2rem 1.2rem;
    background: var(--color-white);
    border: 1px solid rgba(210, 167, 159, 0.3);
    border-radius: var(--border-radius-md);
    text-decoration: none;
    color: var(--color-text-primary);
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
}

.services-teaser-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-medium);
    border-color: rgba(165, 134, 88, 0.4);
}

.services-teaser-card i {
    font-size: 1.6rem;
    color: var(--color-gold-start);
    margin-bottom: 0.2rem;
}

.services-teaser-card h3 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 500;
    color: var(--color-text-primary);
    margin: 0;
}

.services-teaser-card p {
    font-size: 0.78rem;
    color: var(--color-text-secondary);
    margin: 0;
    line-height: 1.5;
}

/* nav active state */
.nav-link.active {
    color: var(--color-gold-start);
    font-weight: 600;
}

/* ================================================
   About Page
   ================================================ */

/* About Page Hero and Header */
.about-hero {
    position: relative;
    background-image: url('assets/about_hero_bg.jpg');
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    padding: calc(var(--header-height) + 7rem) 2rem 7rem; /* Increased top/bottom padding */
}

@media (min-width: 900px) {
    .about-hero {
        background-position: center 85%; /* Shifts image lower on desktop to show injection details */
    }
}

.about-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(244, 217, 213, 0.93) 0%,
        rgba(244, 217, 213, 0.82) 60%,
        var(--color-bg-primary) 100%
    );
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.hero-scroll-indicator {
    margin-top: 2.5rem;
    font-size: 1.1rem;
    color: var(--color-gold-start);
    animation: bounce 2s infinite;
    display: inline-block;
}

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

.services-hero {
    position: relative;
    background-image: url('assets/about_hero_bg.jpg');
    background-size: cover;
    background-position: center 65%;
    background-repeat: no-repeat;
    padding: calc(var(--header-height) + 7rem) 2rem 7rem; /* Increased top/bottom padding to match About hero */
}

@media (min-width: 900px) {
    .services-hero {
        background-position: center 85%; /* Shifts image lower on desktop to show injection details */
    }
}

.services-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        to bottom,
        rgba(244, 217, 213, 0.93) 0%,
        rgba(244, 217, 213, 0.82) 60%,
        var(--color-bg-primary) 100%
    );
    z-index: 1;
}

.services-hero .container {
    position: relative;
    z-index: 2;
}

.about-story-section {
    background: linear-gradient(to bottom, var(--color-bg-primary) 75%, #F8F4EE 100%);
    border-bottom: none;
    padding-bottom: 0; /* Let the stats bar overflow naturally */
}

.about-practitioner-section {
    background: linear-gradient(to bottom, #F8F4EE 75%, var(--color-white) 100%) !important;
    border-bottom: none;
    padding-top: calc(var(--spacing-lg) + 3rem) !important; /* Offset for stats bar overlap */
}

@media (min-width: 768px) {
    .about-practitioner-section {
        padding-top: calc(var(--spacing-xl) + 4rem) !important; /* Deeper offset on desktop */
    }
}

.about-why-section {
    background: var(--color-white) !important;
    border-bottom: none;
    padding-top: var(--spacing-lg) !important;
}

@media (min-width: 768px) {
    .about-why-section {
        padding-top: var(--spacing-xl) !important;
    }
}

/* Practitioner Section Styling */
.about-practitioner-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3.5rem;
    align-items: center;
}

.about-practitioner-image-wrap {
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
}

.practitioner-image-container {
    position: relative;
    width: 100%;
    max-width: 380px;
}

.practitioner-placeholder-img {
    width: 100%;
    height: 480px;
    background: #FAF8F5;
    border: 1px solid rgba(165, 134, 88, 0.2);
    border-radius: var(--border-radius-md);
    display: flex;
    justify-content: center;
    align-items: center;
    box-shadow: var(--shadow-medium);
    z-index: 2;
    position: relative;
}

.practitioner-placeholder-inner {
    text-align: center;
    color: var(--color-gold-start);
}

.practitioner-placeholder-inner i {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
    opacity: 0.8;
}

.practitioner-placeholder-inner span {
    font-family: var(--font-primary);
    text-transform: uppercase;
    font-size: 0.85rem;
    letter-spacing: 0.12em;
    opacity: 0.7;
    display: block;
}

.practitioner-image-border {
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--color-gold-start);
    border-radius: var(--border-radius-md);
    z-index: 1;
    pointer-events: none;
    transition: var(--transition-smooth);
}

.practitioner-image-container:hover .practitioner-image-border {
    transform: translate(-6px, -6px);
    border-color: var(--color-brand-pink-muted);
}

.practitioner-title {
    display: block;
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--color-gold-start);
    margin-top: 0.5rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.practitioner-bio p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 0.97rem;
}

.practitioner-credentials {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-top: 1.5rem;
}

.credential-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    color: var(--color-text-primary);
    font-size: 0.95rem;
}

.credential-item i {
    color: var(--color-gold-start);
    font-size: 1.1rem;
    width: 20px;
    text-align: center;
}

@media (min-width: 900px) {
    .about-practitioner-grid {
        grid-template-columns: 1fr 1.2fr;
        gap: 5.5rem;
    }
}

/* Story Header (Centred Editorial Layout) */
.about-story-header {
    max-width: 800px;
    margin: 0 auto 3.5rem auto;
    text-align: center;
}

.about-story-lead p {
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-story-header .deco-divider {
    margin: 1.5rem auto 2rem auto;
}

.about-story-header .btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* Story Polaroid Gallery Row (Horizontal tabletop spread) */
.about-story-gallery-row {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 2rem;
    width: 100%;
    margin-top: 1rem;
}

/* Polaroid Scrapbook Card styles */
.polaroid-card {
    display: block;
    width: 100%;
    border-radius: var(--border-radius-sm);
    position: relative;
    transition: transform 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), box-shadow 0.5s cubic-bezier(0.165, 0.84, 0.44, 1), border-color 0.5s cubic-bezier(0.165, 0.84, 0.44, 1);
    background: #FAF8F5; /* Polaroid paper background */
    border: 1px solid rgba(165, 134, 88, 0.15);
    box-shadow: 0 10px 25px rgba(165, 134, 88, 0.05);
    padding: 0.8rem; /* Polaroid frame padding */
    z-index: 1;
}

.polaroid-img-wrapper {
    position: relative;
    width: 100%;
    overflow: hidden;
    background-color: var(--color-bg-primary);
    border-radius: 2px;
    border: 1px solid rgba(165, 134, 88, 0.08);
}

.polaroid-img-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.polaroid-card.card-regular .polaroid-img-wrapper {
    aspect-ratio: 4 / 5;
}

/* Hover Zoom & Alignment Reset */
.polaroid-card:hover {
    transform: rotate(0deg) translateY(-10px) scale(1.03) !important;
    box-shadow: 0 20px 40px rgba(165, 134, 88, 0.18);
    border-color: var(--color-gold-start);
    z-index: 10;
}

.polaroid-card:hover .polaroid-img-wrapper img {
    transform: scale(1.08);
}

/* Organic scattered rotational offsets */
.polaroid-card:nth-child(5n+1) {
    transform: rotate(-1.5deg) translateY(5px);
}
.polaroid-card:nth-child(5n+2) {
    transform: rotate(1.2deg) translateY(-5px);
}
.polaroid-card:nth-child(5n+3) {
    transform: rotate(-0.8deg) translateY(8px);
}
.polaroid-card:nth-child(5n+4) {
    transform: rotate(1.8deg) translateY(-2px);
}
.polaroid-card:nth-child(5n) {
    transform: rotate(-1deg) translateY(3px);
}

/* Responsive Swipeable Carousel Track for Tablet & Mobile */
@media (max-width: 991px) {
    .about-story-gallery-row {
        display: flex;
        overflow-x: auto;
        gap: 1.8rem;
        padding: 1.5rem 1rem;
        margin: 0 -1.5rem; /* Bleed off-edge effect */
        scroll-snap-type: x mandatory;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none; /* Firefox */
    }
    
    .about-story-gallery-row::-webkit-scrollbar {
        display: none; /* Safari & Chrome */
    }
    
    .about-story-gallery-row .polaroid-card {
        flex: 0 0 280px;
        scroll-snap-align: center;
    }
}

/* Floating Stats Bar */
.about-stats-bar {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 4rem;
    margin-bottom: -4rem; /* Overlap section transition */
    background-color: var(--color-white);
    border: 1px solid rgba(165, 134, 88, 0.12);
    border-radius: var(--border-radius-md);
    padding: 2.2rem 1.2rem;
    box-shadow: var(--shadow-soft);
    text-align: center;
    position: relative;
    z-index: 3;
}

@media (min-width: 768px) {
    .about-stats-bar {
        grid-template-columns: repeat(4, 1fr);
        padding: 3rem 2rem;
        margin-top: 5.5rem;
        margin-bottom: -6rem; /* Deeper overlap on desktop */
    }
}

.about-stat-item {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    position: relative;
}

@media (min-width: 768px) {
    .about-stat-item:not(:last-child)::after {
        content: '';
        position: absolute;
        right: 0;
        top: 15%;
        height: 70%;
        width: 1px;
        background-color: rgba(165, 134, 88, 0.12);
    }
}

.about-stat-item .about-stat-num {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 500;
    color: var(--color-gold-start);
    line-height: 1;
}

.about-stat-item .about-stat-label {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--color-text-secondary);
}

/* CTA Banner Framed Box */
.about-cta-section {
    background: linear-gradient(to bottom, var(--color-brand-pink-light) 75%, var(--color-white) 100%);
    position: relative;
    overflow: hidden;
    padding: 3.5rem 0; /* Tighter padding for balanced spacing */
}

@media (min-width: 768px) {
    .about-cta-section {
        padding: 5.5rem 0;
    }
}

.about-cta-inner {
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
    border: 1px solid rgba(165, 134, 88, 0.22);
    border-radius: var(--border-radius-md);
    padding: 3.5rem 2.5rem;
    background-color: rgba(255, 255, 255, 0.42);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
}

.about-cta-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.about-cta-inner p {
    color: var(--color-text-secondary);
    font-size: 1.02rem;
    line-height: 1.7;
    margin-bottom: 2.2rem;
}

.about-cta-btns {
    display: flex;
    gap: 1.2rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Why Choose Us Section --- */
.why-section {
    background: linear-gradient(to bottom, var(--color-brand-pink-light) 0%, var(--color-white) 150px, var(--color-white) calc(100% - 150px), #F8F4EE 100%);
    border-bottom: none;
}

.why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media(min-width: 768px) {
    .why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width: 992px) {
    .why-grid {
        grid-template-columns: 1fr 1fr 1fr 1fr;
    }
}

.why-card {
    padding: var(--spacing-md);
    border-radius: var(--border-radius-md);
    background-color: var(--color-bg-primary);
    transition: var(--transition-smooth);
    border: 1px solid rgba(210, 167, 159, 0.22); /* Soft Muted Dark Rose */
}

.why-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(165, 134, 88, 0.08);
    background-color: var(--color-white);
    border-color: var(--color-gold-start);
}

.why-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background-color: rgba(165, 134, 88, 0.1);
    color: var(--color-accent-gold);
    margin-bottom: var(--spacing-sm);
    font-size: 1.2rem;
}

.why-card h3 {
    font-size: 1.4rem;
    margin-bottom: var(--spacing-xs);
}

.why-card p {
    font-size: 0.9rem;
}

/* --- Interactive Services Section --- */
.services-section {
    background: linear-gradient(to bottom, var(--color-bg-primary) 85%, #F8F4EE 100%);
    border-bottom: none;
    padding-top: 0 !important;
}

.services-intro {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg) auto;
}

/* Tab Navigation - 10 Category Direct Tabs */
.tabs-container {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    margin: -2.2rem auto var(--spacing-lg) auto; /* Floating overlap on hero boundary */
    padding: 0.6rem 1.2rem;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none; /* Hide scrollbar for Firefox */
    max-width: 100%;
    background: rgba(255, 255, 255, 0.82); /* Semi-transparent white glass */
    border: 1px solid rgba(165, 134, 88, 0.18);
    border-radius: 40px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: var(--shadow-medium);
    z-index: 10;
    position: relative;
}

.tabs-container::-webkit-scrollbar {
    display: none; /* Hide scrollbar for Chrome/Safari/Opera */
}

@media (min-width: 1024px) {
    .tabs-container {
        justify-content: center;
        max-width: fit-content;
        padding: 0.5rem 1.5rem;
    }
}

.tab-btn {
    padding: 0.6rem 1.3rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    color: var(--color-text-secondary);
    border-radius: 30px;
    border: 1px solid transparent;
    background-color: transparent;
    transition: var(--transition-smooth);
    white-space: nowrap; /* Prevent wrap in horizontal scroll */
    cursor: pointer;
}

.tab-btn:hover {
    color: var(--color-accent-gold);
    background-color: rgba(234, 218, 200, 0.2);
}

.tab-btn.active {
    color: var(--color-white);
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    border-color: transparent;
    box-shadow: 0 4px 12px rgba(165, 134, 88, 0.25);
}

/* Tab Panels */
.tab-panel {
    display: none;
}

.tab-panel.active {
    display: block;
    animation: fadeIn 0.6s ease-in-out;
}

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

.subtab-panel {
    display: none;
}

.subtab-panel.active {
    display: block;
    animation: fadeIn 0.5s ease-in-out;
}

/* Service Grid & Card Styles */
.service-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
}

@media(min-width: 768px) {
    .service-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.service-card {
    position: relative;
    background-color: var(--color-white);
    padding: 2.2rem 1.8rem;
    border-radius: var(--border-radius-md);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: var(--transition-smooth);
    border: 1px solid rgba(165, 134, 88, 0.08);
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-color: var(--color-gold-start);
}

/* Sub-category header card */
.service-card--header {
    background: transparent;
    box-shadow: none;
    border: none;
    border-bottom: 1px solid rgba(165, 134, 88, 0.25);
    border-radius: 0;
    padding: 2rem 0 0.5rem 0;
    grid-column: 1 / -1;
    transform: none !important;
    pointer-events: none;
}

.service-category-label {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 450;
    font-style: italic;
    color: var(--color-gold-start);
    letter-spacing: 0.02em;
    margin: 0;
}

/* Treatment area bullet list (fat dissolving) */
.service-areas {
    list-style: none;
    padding: 0;
    margin: 0.6rem 0 1rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.service-areas li {
    font-size: 0.72rem;
    font-family: var(--font-body);
    color: var(--color-text-secondary);
    background: rgba(165, 134, 88, 0.08);
    border: 1px solid rgba(165, 134, 88, 0.2);
    border-radius: 20px;
    padding: 0.2rem 0.7rem;
    letter-spacing: 0.03em;
}

/* Info banner below service grid */
.service-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: rgba(244, 217, 213, 0.25);
    border: 1px solid rgba(165, 134, 88, 0.12);
    border-radius: var(--border-radius-md);
    padding: 1.2rem 1.5rem;
    margin-top: 2rem;
}

.service-info-banner i {
    color: var(--color-gold-start);
    font-size: 1.1rem;
    margin-top: 2px;
    flex-shrink: 0;
}

.service-info-banner p {
    font-size: 0.88rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

/* Custom Popular Service Badges */
.service-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 0.58rem;
    font-family: var(--font-body);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    background-color: rgba(165, 134, 88, 0.06);
    color: var(--color-accent-gold);
    border: 1px solid rgba(165, 134, 88, 0.2);
    font-weight: 600;
}

.service-meta {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: var(--spacing-sm);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-text-primary);
    max-width: 70%;
    font-weight: 500;
    line-height: 1.25;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.45rem;
    color: var(--color-accent-gold);
    font-weight: 500;
}

.service-desc {
    font-size: 0.92rem;
    margin-bottom: var(--spacing-md);
    flex-grow: 1;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.service-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(165, 134, 88, 0.1);
    padding-top: var(--spacing-sm);
}

.service-duration {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 4px;
}

.service-duration i {
    color: var(--color-accent-light);
}

.service-book-link {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    color: var(--color-accent-gold);
    display: inline-flex;
    align-items: center;
    gap: var(--spacing-xs);
    transition: var(--transition-smooth);
}

.service-book-link i {
    transition: transform 0.3s ease;
}

.service-book-link:hover {
    color: var(--color-brand-pink-muted);
}

.service-book-link:hover i {
    transform: translateX(4px);
}

/* --- Testimonials Section --- */
.testimonials-section {
    background: linear-gradient(to bottom, #F8F4EE 0%, #F8F4EE calc(100% - 150px), var(--color-brand-pink-light) 100%);
    border-bottom: none;
    overflow: hidden;
}

.slider-container {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 50px;
}

.slider-wrapper {
    overflow: hidden;
    width: 100%;
}

.slides {
    display: flex;
    gap: 20px;
    transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    will-change: transform;
}

.slide-card {
    flex: 0 0 calc(33.333% - 13.33px);
    box-sizing: border-box;
    background-color: var(--color-white);
    border: 1px solid rgba(165, 134, 88, 0.12);
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 270px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.slide-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(165, 134, 88, 0.08);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.stars {
    color: var(--color-accent-gold);
    font-size: 0.9rem;
    display: flex;
    gap: 2px;
    margin-bottom: 0;
}

.review-platform-img {
    height: 22px;
    width: auto;
    object-fit: contain;
    display: inline-block;
}

.review-platform-img.google {
    height: 18px;
}

.review-text {
    font-size: 0.9rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    font-style: normal;
    font-weight: 300;
    margin-bottom: 20px;
    display: -webkit-box;
    -webkit-line-clamp: 5;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.card-footer {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: auto;
    border-top: 1px solid rgba(165, 134, 88, 0.08);
    padding-top: 12px;
}

.client-info {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.client-name {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.review-date {
    font-size: 0.75rem;
    color: var(--color-text-secondary);
}

.review-service {
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--color-accent-gold);
    background-color: var(--color-brand-pink-light);
    padding: 3px 8px;
    border-radius: 4px;
}

/* Slider Controls */
.slider-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-primary);
    border: 1px solid rgba(165, 134, 88, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-primary);
    z-index: 10;
    cursor: pointer;
    transition: var(--transition-smooth);
}

.slider-btn:hover {
    background-color: var(--color-accent-gold);
    color: var(--color-white);
    border-color: var(--color-accent-gold);
}

.slider-btn.prev { left: -10px; }
.slider-btn.next { right: -10px; }

.reviews-counter {
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-secondary);
    margin-top: 20px;
    letter-spacing: 0.05em;
}

#current-review-num {
    font-weight: 600;
    color: var(--color-accent-gold);
}

@media (max-width: 992px) {
    .slide-card {
        flex: 0 0 calc(50% - 10px);
    }
    .slider-container {
        padding: 0 40px;
    }
}

@media (max-width: 600px) {
    .slide-card {
        flex: 0 0 100%;
    }
    .slider-container {
        padding: 0 35px;
    }
    .slider-btn.prev { left: -15px; }
    .slider-btn.next { right: -15px; }
}

/* --- Clinic Policies Section --- */
.policies-section {
    background: linear-gradient(to bottom, #F8F4EE 75%, var(--color-brand-pink-light) 100%);
    border-bottom: none;
}

.services-policies {
    /* Inherited from global policies-section */
}

.policies-intro {
    max-width: 600px;
    margin: 0 auto var(--spacing-lg) auto;
}

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

.accordion-item {
    background-color: var(--color-white);
    margin-bottom: 1.25rem; /* Increased margin for card separation */
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-soft);
    border: 1px solid rgba(165, 134, 88, 0.08);
    transition: var(--transition-smooth);
    border-left: 3px solid transparent;
}

.accordion-item.active {
    border-color: var(--color-gold-start);
    border-left-color: var(--color-gold-start);
}

.accordion-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.3rem 1.8rem;
    text-align: left;
    background: none;
    border: none;
    cursor: pointer;
    outline: none;
}

.accordion-title {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--color-text-primary);
    letter-spacing: 0.01em;
}

.accordion-icon {
    font-size: 0.9rem;
    color: var(--color-accent-gold);
    transition: var(--transition-smooth);
}

.accordion-header:hover {
    background-color: rgba(234, 218, 200, 0.18);
}

.accordion-item.active .accordion-icon {
    transform: rotate(180deg);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), padding 0.4s ease-out;
    padding: 0 1.8rem;
}

.accordion-item.active .accordion-content {
    padding-bottom: 1.5rem;
}

.accordion-content p {
    font-size: 0.95rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.accordion-content ul {
    list-style: disc;
    margin-left: 1.5rem;
    margin-top: 0.5rem;
    font-size: 0.95rem;
    color: var(--color-text-secondary);
}

.accordion-content li {
    margin-bottom: 0.3rem;
}

/* --- Contact & Location Section --- */
.contact-section {
    background: linear-gradient(to bottom, var(--color-white) 75%, var(--color-brand-pink-light) 100%);
    border-bottom: none;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-lg);
    margin-top: var(--spacing-lg);
}

@media(min-width: 992px) {
    .contact-grid {
        grid-template-columns: 1.2fr 1.8fr;
    }
}

.contact-info-panel {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
}

.info-item {
    display: flex;
    gap: var(--spacing-sm);
    align-items: flex-start;
}

.info-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background-color: var(--color-bg-secondary);
    color: var(--color-accent-gold);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.1rem;
}

.info-content h4 {
    font-size: 1.2rem;
    margin-bottom: 4px;
}

.info-content p {
    font-size: 0.95rem;
}

.map-wrapper {
    width: 100%;
    height: 380px;
    border-radius: var(--border-radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-medium);
    border: 1px solid rgba(165, 134, 88, 0.15);
}

.map-wrapper iframe {
    width: 100%;
    height: 100%;
    border: 0;
    filter: grayscale(1) contrast(0.9) opacity(0.85);
    transition: var(--transition-smooth);
}

.map-wrapper:hover iframe {
    filter: grayscale(0) contrast(1) opacity(1);
}

/* --- Footer --- */
footer {
    background-color: var(--color-brand-pink-light);
    border-top: 1px solid rgba(165, 134, 88, 0.15); /* Gold/Taupe border */
    padding: var(--spacing-lg) 0 var(--spacing-md) 0;
}
.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-bottom: var(--spacing-lg);
}

@media(max-width: 599px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr; /* 50/50 split on mobile */
        gap: 2.5rem 1rem;
        text-align: center;
        margin-bottom: var(--spacing-md);
    }
    
    .footer-about {
        grid-column: span 2; /* Centered full-width top branding/info */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        width: 100%;
        max-width: 100%;
        margin: 0 auto 0.5rem auto;
    }
    
    .footer-about .footer-logo {
        display: flex;
        justify-content: center;
        align-items: center;
        margin: 0 auto 1rem auto;
        width: 100%;
    }
    
    .footer-about .footer-logo img {
        margin: 0 auto;
    }
    
    .footer-about .social-links {
        display: flex;
        justify-content: center;
        align-items: center;
        gap: 12px;
        margin: 0 auto 0.8rem auto;
        width: 100%;
    }
    
    .footer-about .footer-contact-info {
        width: 100%;
        margin-top: 1rem !important;
        display: flex;
        justify-content: center;
    }
    
    .footer-about .footer-contact-info p {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 0.5rem;
        width: 100%;
        max-width: 320px; /* limits wrapping width for elegant centering */
        margin: 0 auto;
    }
    
    .footer-about .footer-contact-info p span {
        text-align: center;
        display: block;
        line-height: 1.5;
    }
    
    .footer-about .footer-contact-info i {
        margin-top: 0;
        font-size: 1.1rem;
    }

    .footer-links {
        grid-column: span 1; /* Left column middle tier */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
    
    .footer-links-list {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 0.65rem;
    }
    
    .footer-links h4::after {
        left: 50%;
        transform: translateX(-50%);
    }

    .footer-trust {
        grid-column: span 1; /* Right column middle tier */
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        position: relative;
    }
    
    .footer-trust h4::after {
        left: 50%;
        transform: translateX(-50%);
    }
    
    .footer-badge-wrapper {
        display: flex;
        justify-content: center;
        margin-top: 1.2rem;
    }
}

@media(min-width: 600px) {
    .footer-grid {
        grid-template-columns: 1.4fr 1fr 1.2fr; /* 3 columns on tablet */
        gap: var(--spacing-md);
    }
}

@media(min-width: 992px) {
    .footer-grid {
        grid-template-columns: 2fr 1.2fr 1.5fr; /* 3 columns on desktop */
        gap: var(--spacing-lg);
    }
}

.footer-about {
    max-width: 400px;
}

.footer-about p {
    margin: var(--spacing-sm) 0;
    font-size: 0.9rem;
    line-height: 1.6;
}

.social-links {
    display: flex;
    gap: 12px;
}

.social-icon {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--color-gold-start), var(--color-gold-end));
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    transition: var(--transition-smooth);
    box-shadow: 0 4px 10px rgba(165, 134, 88, 0.15);
}

.social-icon:hover {
    background: linear-gradient(135deg, var(--color-gold-end), var(--color-gold-start));
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 6px 15px rgba(165, 134, 88, 0.25);
}

.footer-grid h4 {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: var(--spacing-sm);
    color: var(--color-text-primary);
    position: relative;
    padding-bottom: 8px;
}

.footer-grid h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background-color: var(--color-accent-gold);
}

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

.footer-links-list li {
    margin-bottom: 10px;
}

.footer-links-list a {
    font-size: 0.9rem;
    color: var(--color-text-primary);
    text-decoration: none;
    position: relative;
    display: inline-block;
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.footer-links-list a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background-color: var(--color-accent-gold);
    transition: width 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.footer-links-list a:hover {
    color: var(--color-accent-gold);
}

.footer-links-list a:hover::after {
    width: 100%;
}

.footer-hours-list {
    font-size: 0.88rem;
    line-height: 1.6;
    color: var(--color-text-primary);
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-hours-list li {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    border-bottom: 1px dashed rgba(165, 134, 88, 0.12);
    padding-bottom: 4px;
}

.footer-hours-list li span.day {
    font-weight: 600;
}

.footer-hours-list li span.time {
    color: var(--color-text-secondary);
}

.footer-contact-info {
    font-size: 0.88rem;
    line-height: 1.6;
    margin-top: 1.2rem;
    color: var(--color-text-primary);
}

.footer-contact-info p {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin: 0;
}

.footer-contact-info i {
    color: var(--color-accent-gold);
    font-size: 0.95rem;
    margin-top: 3px;
    flex-shrink: 0;
}

.footer-badge-wrapper {
    margin-top: 1.5rem;
    display: flex;
    justify-content: flex-start;
}

.footer-badge {
    width: 90px;
    height: 90px;
    object-fit: contain;
    border-radius: 50%;
    box-shadow: 0 4px 15px rgba(30, 29, 27, 0.08);
    transition: var(--transition-smooth);
}

.footer-badge:hover {
    transform: scale(1.08) rotate(3deg);
}

.footer-bottom {
    border-top: 1px solid rgba(210, 167, 159, 0.2); /* Muted Dark Rose */
    padding-top: var(--spacing-md);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

@media(min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
    }
}

.footer-bottom p {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.footer-bottom a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition-smooth);
    border-bottom: 1px solid transparent;
}

.footer-bottom a:hover {
    color: var(--color-accent-gold);
    border-bottom-color: var(--color-accent-gold);
}

/* --- Premium Aesthetic Enhancements --- */



/* 2. Editorial Typography Highlights */
.accent-serif {
    font-family: var(--font-heading);
    font-style: italic;
    font-weight: 300;
    color: var(--color-accent-gold);
    letter-spacing: 0.03em;
}

/* 3. Section Title Dividers */
.deco-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-brand-pink-muted), transparent);
    margin: 1.2rem auto var(--spacing-md) auto;
}

/* 4. Luxury Hero Image Offset Frame */
.hero-image-wrapper {
    position: relative;
    border-radius: var(--border-radius-lg);
}

.hero-image-wrapper::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 15px;
    right: -15px;
    bottom: -15px;
    border: 1px solid var(--color-gold-start);
    border-radius: var(--border-radius-lg);
    z-index: -1;
    transition: var(--transition-smooth);
}

.hero-image-wrapper:hover::before {
    top: 8px;
    left: 8px;
    right: -8px;
    bottom: -8px;
    border-color: var(--color-gold-end);
}

/* 5. Service Card sliding gold line animation */
.service-card {
    position: relative;
    overflow: hidden;
}

.service-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--color-gold-start), var(--color-gold-end));
    transform: scaleX(0);
    transform-origin: left;
    transition: var(--transition-smooth);
}

.service-card:hover::after {
    transform: scaleX(1);
}

/* 6. Why card border active transitions */
.why-card {
    border: 1px solid rgba(210, 167, 159, 0.2);
    transition: var(--transition-smooth);
}

.why-card:hover {
    border-color: var(--color-gold-start);
}

/* 7. Subtle animation keyframes on page load */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 8. Hero Carousel Styling */
.hero-carousel {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-carousel-img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transition: opacity 1.5s ease-in-out;
}

.hero-carousel-img.active {
    opacity: 1;
}

/* ================================================
   Clinical Standards & Safety Section
   Matches the "Why Choose Nara" card style exactly.
   Uses why-card, why-icon — only the grid is custom.
   ================================================ */

.standards-section {
    background: linear-gradient(to bottom, var(--color-white) 75%, #F8F4EE 100%);
    border-bottom: none;
}

/* 6-card grid: 1 → 2 → 3 columns */
.standards-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

@media(min-width: 640px) {
    .standards-why-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media(min-width: 992px) {
    .standards-why-grid {
        grid-template-columns: 1fr 1fr 1fr;
    }
}

/* Custom safety standard cards styles */
.standard-card {
    background-color: var(--color-white);
    border: 1px solid rgba(165, 134, 88, 0.08);
    border-top: 3px solid var(--color-gold-start);
    border-radius: var(--border-radius-md);
    padding: 2.2rem 1.8rem;
    transition: var(--transition-smooth);
    box-shadow: var(--shadow-soft);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.standard-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-medium);
    border-top-color: var(--color-brand-pink-muted);
}

.standard-card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.standard-num {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    color: rgba(165, 134, 88, 0.25);
    font-weight: 500;
}

.standard-icon {
    font-size: 1.3rem;
    color: var(--color-gold-start);
    background-color: rgba(234, 218, 200, 0.25);
    width: 45px;
    height: 45px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-smooth);
}

.standard-card:hover .standard-icon {
    background-color: var(--color-brand-pink-light);
    color: var(--color-brand-pink-muted);
    transform: rotate(15deg);
}

.standard-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--color-text-primary);
}

.standard-card p {
    font-size: 0.92rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

/* ================================================
   Transformations Preview Gallery Section
   ================================================ */

.gallery-preview-section {
    background: linear-gradient(to bottom, #F8F4EE 0%, var(--color-white) 150px, var(--color-white) calc(100% - 150px), #F8F4EE 100%);
    border-bottom: none;
}

.preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 8px;
    margin-top: var(--spacing-lg);
}

@media (min-width: 768px) {
    .preview-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 15px;
    }
}

.preview-item {
    position: relative;
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    overflow: hidden;
    border: 1px solid rgba(165, 134, 88, 0.12);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.02);
    transition: var(--transition-smooth);
    cursor: pointer;
}

.preview-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 25px rgba(165, 134, 88, 0.1);
}

.preview-img-placeholder {
    width: 100%;
    height: 100%;
    background-color: var(--color-brand-pink-light);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    color: var(--color-accent-gold);
    transition: var(--transition-smooth);
    padding: 6px;
    text-align: center;
}

.preview-img-placeholder i {
    font-size: 1.1rem;
    transition: var(--transition-smooth);
}

.preview-img-placeholder span {
    font-size: 0.55rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--color-text-primary);
}

@media (min-width: 768px) {
    .preview-img-placeholder {
        gap: 10px;
        padding: 10px;
    }
    .preview-img-placeholder i {
        font-size: 1.6rem;
    }
    .preview-img-placeholder span {
        font-size: 0.7rem;
        letter-spacing: 0.05em;
    }
}

.preview-item:hover .preview-img-placeholder i {
    transform: scale(1.1);
    color: var(--color-accent-dark);
}

.preview-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.preview-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to top, rgba(165, 134, 88, 0.95), rgba(210, 181, 127, 0.85));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    transition: var(--transition-smooth);
    color: var(--color-white);
    padding: 15px;
    text-align: center;
}

.preview-item:hover .preview-overlay {
    opacity: 1;
}

.preview-tag {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.4);
    padding-bottom: 4px;
}

.preview-action {
    font-size: 0.8rem;
    font-weight: 300;
}

/* Hero Primary Action Glow Pulse & Shimmer */
.hero-left .hero-actions .btn-primary {
    position: relative;
    animation: goldGlowPulse 3s infinite;
    overflow: hidden; /* clip the shimmer overlay */
}

.hero-left .hero-actions .btn-primary::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.38) 50%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: btnShimmer 5s infinite ease-in-out;
}

@keyframes btnShimmer {
    0% {
        left: -100%;
    }
    15% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}

/* Ghost Button Arrow Transition */
.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
}

.btn-ghost-arrow {
    transition: transform 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

.btn-ghost:hover .btn-ghost-arrow {
    transform: translateX(4px);
}

@keyframes goldGlowPulse {
    0% {
        box-shadow: 0 0 0 0 rgba(165, 134, 88, 0.4);
    }
    70% {
        box-shadow: 0 0 0 10px rgba(165, 134, 88, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(165, 134, 88, 0);
    }
}

/* --- Homepage Continuous Gradient Background --- */
body.home-page {
    background: linear-gradient(
        to bottom,
        var(--color-brand-pink-light) 0%,
        var(--color-brand-pink-light) 100vh,
        var(--color-white) 120vh,
        var(--color-white) 180vh,
        #F8F4EE 220vh,
        #F8F4EE 270vh,
        var(--color-brand-pink-light) 320vh,
        var(--color-brand-pink-light) 100%
    );
    background-attachment: scroll;
}

body.home-page .why-section,
body.home-page .gallery-preview-section,
body.home-page .testimonials-section,
body.home-page footer {
    background: transparent !important;
}

/* --- Meet Gina Section Credentials Grids --- */
.certifications-title,
.why-choose-title {
    font-family: var(--font-primary);
    font-size: 0.95rem;
    color: var(--color-text-primary);
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem;
    padding: 0;
    margin: 0;
    list-style: none;
}

.certifications-grid li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-secondary);
    font-size: 0.88rem;
    line-height: 1.4;
}

.certifications-grid li i {
    color: var(--color-gold-start);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.certifications-grid li.span-full {
    grid-column: span 2;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.8rem;
    padding: 0;
    margin: 0;
}

.why-choose-item {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    color: var(--color-text-primary);
    font-size: 0.92rem;
    line-height: 1.4;
}

.why-choose-item i {
    color: var(--color-gold-start);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.why-choose-item.span-full {
    grid-column: span 2;
}

@media (max-width: 500px) {
    .certifications-grid,
    .why-choose-grid {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid li.span-full,
    .why-choose-item.span-full {
        grid-column: span 1;
    }
}

/* --- About Page Philosophy 3-Pillar Layout Grid Override --- */
@media (min-width: 992px) {
    .about-why-section .why-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
