/* ============================================================
   SISIKA MASSAGE CENTER - Premium Luxury Ayurveda Spa
   Complete Stylesheet
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400;1,600&family=Poppins:wght@300;400;500;600;700&display=swap');

/* ============================================================
   1. CSS VARIABLES & ROOT
   ============================================================ */
:root {
    --dark-green: #0d2818;
    --medium-green: #1a5c2e;
    --medium-green-alt: #1a4a28;
    --light-green: #e8f5e9;
    --gold: #c5a028;
    --gold-light: #d4a843;
    --gold-hover: #b8931f;
    --cream: #0a1f12;
    --white: #ffffff;
    --dark-text: #e0e0e0;
    --footer-bg: #071a0d;
    --dark-bg: #0c1f13;
    --card-bg: #122a1a;
    --card-border: rgba(255, 255, 255, 0.06);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.5);
    --shadow-luxury: 0 10px 50px rgba(0, 0, 0, 0.5);
    --shadow-gold: 0 4px 20px rgba(197, 160, 40, 0.25);
    --radius-sm: 8px;
    --radius-md: 15px;
    --radius-lg: 20px;
    --radius-xl: 30px;
    --transition: all 0.3s ease;
    --transition-slow: all 0.5s ease;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Poppins', 'Segoe UI', sans-serif;
}

/* ============================================================
   2. RESET & BASE
   ============================================================ */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 400;
    line-height: 1.7;
    color: var(--dark-text);
    background-color: var(--dark-bg);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.3;
    color: var(--white);
}

h1 { font-size: 3rem; }
h2 { font-size: 2.4rem; }
h3 { font-size: 1.8rem; }
h4 { font-size: 1.4rem; }
h5 { font-size: 1.1rem; }
h6 { font-size: 1rem; }

p {
    margin-bottom: 1rem;
    color: rgba(255, 255, 255, 0.75);
}

a {
    text-decoration: none;
    color: var(--dark-green);
    transition: var(--transition);
}

a:hover {
    color: var(--gold);
}

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

ul, ol {
    list-style: none;
}

::selection {
    background: var(--medium-green);
    color: var(--white);
}

::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: var(--light-green);
}

::-webkit-scrollbar-thumb {
    background: var(--medium-green);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--dark-green);
}

/* ============================================================
   3. UTILITY CLASSES
   ============================================================ */
.section-padding {
    padding: 80px 0;
}

.section-title {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--medium-green);
    margin-bottom: 8px;
    display: block;
}

.section-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--dark-green);
    margin-bottom: 20px;
    line-height: 1.2;
}

.section-heading span {
    color: var(--gold);
}

.section-heading em {
    font-style: italic;
    color: var(--gold);
}

.section-subtext {
    font-size: 1rem;
    color: #666;
    max-width: 600px;
    line-height: 1.8;
}

.section-subtext.centered {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
}

.gold-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 15px 0 25px;
    border-radius: 2px;
}

.gold-divider.centered {
    margin-left: auto;
    margin-right: auto;
}

.text-gold {
    color: var(--gold) !important;
}

.text-green {
    color: var(--dark-green) !important;
}

.bg-cream {
    background-color: var(--cream) !important;
}

.bg-light-green {
    background-color: var(--light-green) !important;
}

/* ============================================================
   4. BUTTONS
   ============================================================ */
.btn-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: var(--dark-green);
    color: var(--white);
    border: 2px solid var(--dark-green);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-transform: none;
}

.btn-green:hover {
    background: var(--medium-green);
    border-color: var(--medium-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-gold:hover {
    background: linear-gradient(135deg, var(--gold-hover), var(--gold));
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-outline-green {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--dark-green);
    border: 2px solid var(--dark-green);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-green:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.btn-outline-white {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--white);
    border: 2px solid var(--white);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-white:hover {
    background: var(--white);
    color: var(--dark-green);
    transform: translateY(-2px);
}

.btn-outline-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
}

.btn-sm {
    padding: 8px 20px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 15px 35px;
    font-size: 1rem;
}

/* ============================================================
   5. TOP BAR
   ============================================================ */
.top-bar {
    background: var(--dark-green);
    color: var(--white);
    padding: 8px 0;
    font-size: 0.82rem;
    font-weight: 400;
    position: relative;
    z-index: 1100;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar a {
    color: rgba(255, 255, 255, 0.9);
    transition: var(--transition);
    text-decoration: none;
}

.top-bar a:hover {
    color: var(--gold-light);
}

.top-bar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.top-bar-left {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.top-bar-left .phone-link,
.top-bar-left .whatsapp-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: rgba(255, 255, 255, 0.9);
    font-weight: 400;
}

.top-bar-left .phone-link i,
.top-bar-left .whatsapp-link i {
    font-size: 0.95rem;
}

.top-bar-left .whatsapp-link:hover {
    color: #25d366;
}

.top-bar-left .phone-link:hover {
    color: var(--gold-light);
}

.top-bar-hours {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    cursor: pointer;
    padding: 3px 12px;
    border-radius: 4px;
    transition: var(--transition);
    color: rgba(255, 255, 255, 0.9);
}

.top-bar-hours:hover {
    background: rgba(255, 255, 255, 0.1);
}

.top-bar-hours i {
    font-size: 0.9rem;
}

.top-bar-hours .dropdown-icon {
    font-size: 0.7rem;
    transition: transform 0.3s ease;
}

.top-bar-hours.active .dropdown-icon {
    transform: rotate(180deg);
}

.top-bar-hours-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 250px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 15px 20px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1200;
    margin-top: 8px;
}

.top-bar-hours-dropdown::before {
    content: '';
    position: absolute;
    top: -6px;
    left: 20px;
    width: 12px;
    height: 12px;
    background: var(--white);
    transform: rotate(45deg);
    box-shadow: -2px -2px 4px rgba(0, 0, 0, 0.04);
}

.top-bar-hours.active .top-bar-hours-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.top-bar-hours-dropdown h6 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--dark-green);
    margin-bottom: 10px;
    padding-bottom: 8px;
    border-bottom: 1px solid var(--light-green);
}

.top-bar-hours-dropdown ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.top-bar-hours-dropdown ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 5px 0;
    font-size: 0.82rem;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.top-bar-hours-dropdown ul li:last-child {
    border-bottom: none;
}

.top-bar-hours-dropdown ul li .day {
    font-weight: 500;
    color: var(--dark-text);
}

.top-bar-hours-dropdown ul li .time {
    color: var(--medium-green);
    font-weight: 500;
}

.top-bar-hours-dropdown ul li .time.closed {
    color: #dc3545;
}

.top-bar-right {
    display: flex;
    align-items: center;
    gap: 12px;
}

.top-bar-social {
    display: flex;
    align-items: center;
    gap: 8px;
}

.top-bar-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    transition: var(--transition);
}

.top-bar-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-2px);
}

.top-bar-social a.facebook:hover { background: #1877f2; }
.top-bar-social a.instagram:hover { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.top-bar-social a.tiktok:hover { background: #000000; }
.top-bar-social a.youtube:hover { background: #ff0000; }

.top-bar-lang {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 3px 10px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 4px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition);
}

.top-bar-lang:hover {
    border-color: var(--gold-light);
    color: var(--gold-light);
}

/* ============================================================
   6. NAVBAR
   ============================================================ */
.navbar {
    background: var(--dark-bg);
    padding: 12px 0;
    transition: var(--transition);
    z-index: 1050;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.navbar.sticky-top {
    position: sticky;
    top: 0;
}

.navbar.scrolled {
    padding: 8px 0;
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.4);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar .logo-img,
.navbar .navbar-logo {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--gold);
    transition: var(--transition);
    box-shadow: 0 2px 12px rgba(197, 160, 40, 0.25);
    background: var(--dark-green);
    padding: 8px;
}

.navbar.scrolled .logo-img,
.navbar.scrolled .navbar-logo {
    width: 65px;
    height: 65px;
}

.navbar .logo-img:hover,
.navbar .navbar-logo:hover {
    border-color: var(--gold-light);
    transform: scale(1.05);
    box-shadow: 0 4px 20px rgba(197, 160, 40, 0.35);
}

.navbar-brand .brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1.2;
}

.navbar-brand .brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.navbar-toggler {
    border: 2px solid var(--dark-green);
    background: var(--white);
    padding: 8px 16px;
    cursor: pointer;
    display: none;
    align-items: center;
    gap: 8px;
    border-radius: 50px;
    z-index: 1060;
    transition: var(--transition);
}

.navbar-toggler:hover {
    background: var(--dark-green);
}

.navbar-toggler:hover .hamburger-lines span {
    background: var(--white);
}

.navbar-toggler:hover .hamburger-label {
    color: var(--white);
}

.hamburger-lines {
    display: flex;
    flex-direction: column;
    gap: 4px;
    width: 20px;
}

.hamburger-lines span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--dark-green);
    transition: var(--transition);
    border-radius: 2px;
}

.hamburger-label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--dark-green);
    transition: var(--transition);
}

.navbar-toggler.active .hamburger-lines span:nth-child(1) {
    transform: rotate(45deg) translate(4px, 4px);
}

.navbar-toggler.active .hamburger-lines span:nth-child(2) {
    opacity: 0;
}

.navbar-toggler.active .hamburger-lines span:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -4px);
}

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

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav .nav-link {
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.8);
    padding: 8px 14px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    position: relative;
    white-space: nowrap;
}

.navbar-nav .nav-link::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    border-radius: 2px;
}

.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after {
    transform: scaleX(1);
}

.navbar-nav .nav-link:hover {
    color: var(--gold-light);
    background: rgba(255, 255, 255, 0.08);
}

.navbar-nav .nav-link.active {
    color: var(--gold-light);
    font-weight: 600;
}

.navbar-nav .nav-link i {
    margin-right: 4px;
    font-size: 0.8rem;
}

.nav-dropdown {
    position: relative;
}

.nav-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    min-width: 220px;
    background: var(--white);
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    padding: 10px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: var(--transition);
    z-index: 1070;
    border: 1px solid rgba(0, 0, 0, 0.05);
}

.nav-dropdown:hover .nav-dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.nav-dropdown-menu a {
    display: block;
    padding: 8px 20px;
    font-size: 0.85rem;
    color: var(--dark-text);
    transition: var(--transition);
}

.nav-dropdown-menu a:hover {
    background: var(--light-green);
    color: var(--dark-green);
    padding-left: 25px;
}

.navbar-actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.navbar-actions .btn-book-nav {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 22px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.navbar-actions .btn-book-nav:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
    color: var(--white);
}

.navbar-actions .btn-book-nav i {
    font-size: 0.8rem;
}

/* ============================================================
   7. HERO SECTION
   ============================================================ */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d3b1a 0%, #1a5c2e 30%, #2d8a4e 60%, #27724a 100%);
    overflow: hidden;
    padding: 60px 0;
    isolation: isolate;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(45, 138, 78, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 160, 40, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 70% 80%, rgba(26, 92, 46, 0.3) 0%, transparent 50%);
    z-index: 0;
}

.hero-section::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    height: 80px;
    background: linear-gradient(to top, var(--white) 0%, transparent 100%);
    z-index: 1;
}

.hero-bg-leaves {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.hero-leaf {
    position: absolute;
    opacity: 0.12;
    animation: float 8s ease-in-out infinite;
}

.hero-leaf:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 120px;
    animation-delay: 0s;
    animation-duration: 7s;
}

.hero-leaf:nth-child(2) {
    top: 60%;
    right: 8%;
    width: 100px;
    animation-delay: 2s;
    animation-duration: 9s;
    transform: rotate(45deg);
}

.hero-leaf:nth-child(3) {
    bottom: 15%;
    left: 15%;
    width: 80px;
    animation-delay: 4s;
    animation-duration: 6s;
    transform: rotate(-30deg);
}

.hero-leaf:nth-child(4) {
    top: 25%;
    right: 20%;
    width: 90px;
    animation-delay: 1s;
    animation-duration: 10s;
    transform: rotate(60deg);
}

.hero-leaf:nth-child(5) {
    top: 5%;
    right: 35%;
    width: 70px;
    animation-delay: 3s;
    animation-duration: 8s;
    transform: rotate(-15deg);
}

.hero-inner {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 60px;
    width: 100%;
}

.hero-logo-col {
    flex: 0 0 45%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.hero-logo-wrapper {
    position: relative;
    width: 380px;
    height: 380px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-logo-wrapper::before {
    content: '';
    position: absolute;
    inset: -8px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    opacity: 0.6;
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo-wrapper::after {
    content: '';
    position: absolute;
    inset: -20px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 40, 0.25);
    animation: pulse 3s ease-in-out infinite 1.5s;
}

.hero-logo-circle {
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.02));
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 3px solid rgba(197, 160, 40, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow:
        0 0 40px rgba(197, 160, 40, 0.15),
        inset 0 0 30px rgba(255, 255, 255, 0.05);
    position: relative;
}

.hero-logo-circle::before {
    content: '';
    position: absolute;
    inset: 8px;
    border-radius: 50%;
    border: 1px dashed rgba(197, 160, 40, 0.3);
}

.hero-logo-wrapper img {
    width: 75%;
    height: 75%;
    object-fit: contain;
    border-radius: 50%;
    filter: drop-shadow(0 4px 20px rgba(0, 0, 0, 0.2));
}

.hero-leaf-decor {
    position: absolute;
    width: 80px;
    height: auto;
    opacity: 0.7;
    z-index: 5;
    filter: brightness(0.9) saturate(1.2);
    animation: float 6s ease-in-out infinite;
}

.hero-leaf-decor.leaf-top-right {
    top: -15px;
    right: -15px;
    transform: rotate(25deg);
    animation-delay: 0s;
}

.hero-leaf-decor.leaf-bottom-left {
    bottom: -15px;
    left: -15px;
    transform: rotate(-145deg);
    animation-delay: 3s;
}

.hero-leaf-decor.leaf-top-left {
    top: 20px;
    left: -25px;
    width: 60px;
    transform: rotate(-40deg);
    animation-delay: 1.5s;
}

.hero-leaf-decor.leaf-bottom-right {
    bottom: 20px;
    right: -25px;
    width: 60px;
    transform: rotate(130deg);
    animation-delay: 4.5s;
}

.hero-content-col {
    flex: 1;
    padding-right: 20px;
}

.hero-content {
    color: var(--white);
}

.hero-content .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gold-light);
    margin-bottom: 20px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.hero-content .hero-badge i {
    font-size: 0.75rem;
}

.hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
    margin-bottom: 20px;
}

.hero-content h1 .line-italic {
    display: block;
    font-style: italic;
    color: var(--gold-light);
    font-weight: 600;
}

.hero-content h1 .line-normal {
    display: block;
}

.hero-content p {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 30px;
    max-width: 500px;
    line-height: 1.8;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 40px;
}

.hero-btns .btn-book {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-btns .btn-book:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.hero-btns .btn-whatsapp {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #25d366;
    color: var(--white);
    border: 2px solid #25d366;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-btns .btn-whatsapp:hover {
    background: #1da851;
    border-color: #1da851;
    transform: translateY(-3px);
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.3);
    color: var(--white);
}

.hero-btns .btn-call {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.hero-btns .btn-call:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--white);
}

.hero-features {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.hero-feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.88rem;
}

.hero-feature-item i {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    color: var(--gold-light);
    font-size: 0.85rem;
}

/* ============================================================
   8. WHY CHOOSE US SECTION
   ============================================================ */
.why-choose-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
    padding: 60px 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.why-choose-bg {
    background-image: url('../images/about-spa.jpg');
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 31, 19, 0.85) 0%, rgba(9, 26, 15, 0.9) 100%);
    z-index: 1;
}

.why-choose-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    padding: 35px 25px;
    display: flex;
    align-items: stretch;
    justify-content: center;
    gap: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.why-choose-wrapper::-webkit-scrollbar {
    display: none;
}

.why-choose-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 15px 18px;
    min-width: 140px;
    flex: 1;
    transition: var(--transition);
    border-radius: var(--radius-md);
    cursor: default;
    position: relative;
}

.why-choose-card:not(:last-child)::after {
    content: '';
    position: absolute;
    right: 0;
    top: 20%;
    height: 60%;
    width: 1px;
    background: linear-gradient(to bottom, transparent, rgba(0, 0, 0, 0.08), transparent);
}

.why-choose-card:hover {
    background: var(--light-green);
    transform: translateY(-5px);
    box-shadow: var(--shadow-sm);
}

.why-choose-card .icon-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-choose-card:hover .icon-circle {
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
    border-color: var(--gold);
    transform: scale(1.1);
}

.why-choose-card .icon-circle i {
    font-size: 1.4rem;
    color: var(--dark-green);
    transition: var(--transition);
}

.why-choose-card:hover .icon-circle i {
    color: var(--white);
}

.why-choose-card .icon-circle img {
    width: 32px;
    height: 32px;
    object-fit: contain;
}

.why-choose-card h6 {
    font-family: var(--font-body);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.4;
}

.why-choose-card p {
    font-size: 0.72rem;
    color: #888;
    margin: 5px 0 0;
    line-height: 1.4;
}

/* ============================================================
   9. ABOUT SECTION
   ============================================================ */
.about-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.about-section::before {
    content: '';
    position: absolute;
    top: -50px;
    right: -50px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(26, 92, 46, 0.03);
    pointer-events: none;
}

.about-section::after {
    content: '';
    position: absolute;
    bottom: -60px;
    left: -60px;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: rgba(197, 160, 40, 0.03);
    pointer-events: none;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.about-text-col {
    padding-right: 10px;
}

.about-text-col p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 15px;
}

.about-text-col .btn-learn-more {
    margin-top: 15px;
}

.about-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.about-images .about-img {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
    aspect-ratio: 4/5;
}

.about-images .about-img:first-child {
    grid-row: 1 / 3;
    aspect-ratio: auto;
}

.about-images .about-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.about-images .about-img:hover img {
    transform: scale(1.05);
}

.about-images .about-img::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 92, 46, 0.2), transparent 40%);
    pointer-events: none;
}

.opening-hours-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid rgba(26, 92, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.opening-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green), var(--gold));
}

.opening-hours-card .card-header-custom {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 1px solid var(--light-green);
}

.opening-hours-card .card-header-custom .icon {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 1.1rem;
}

.opening-hours-card .card-header-custom h4 {
    font-size: 1.2rem;
    margin: 0;
}

.opening-hours-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.opening-hours-card ul li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.88rem;
}

.opening-hours-card ul li:last-child {
    border-bottom: none;
}

.opening-hours-card ul li .day {
    font-weight: 500;
    color: var(--dark-text);
}

.opening-hours-card ul li .time {
    font-weight: 600;
    color: var(--medium-green);
}

.opening-hours-card ul li .time.closed {
    color: #dc3545;
    font-weight: 500;
}

.opening-hours-card ul li.today {
    background: var(--light-green);
    padding: 10px 12px;
    margin: 0 -12px;
    border-radius: var(--radius-sm);
}

.opening-hours-card .emergency-note {
    margin-top: 15px;
    padding: 12px 15px;
    background: var(--light-green);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--dark-green);
    display: flex;
    align-items: center;
    gap: 8px;
}

.opening-hours-card .emergency-note i {
    color: var(--gold);
}

/* ============================================================
   10. TREATMENTS SECTION
   ============================================================ */
.treatments-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.treatments-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.treatments-header .header-left {
    flex: 1;
}

.treatments-nav {
    display: flex;
    align-items: center;
    gap: 10px;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--dark-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-green);
    font-size: 1rem;
}

.slider-arrow:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.slider-arrow.disabled {
    opacity: 0.4;
    cursor: not-allowed;
    pointer-events: none;
}

.treatments-slider-container {
    position: relative;
    overflow: hidden;
}

.treatments-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.treatments-slider::-webkit-scrollbar {
    display: none;
}

.treatment-card {
    flex: 0 0 260px;
    scroll-snap-align: start;
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.treatment-card .card-image {
    position: relative;
    height: 200px;
    overflow: hidden;
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.treatment-card .card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.treatment-card:hover .card-image img {
    transform: scale(1.08);
}

.treatment-card .card-image .duration-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(26, 92, 46, 0.9);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.treatment-card .card-image .popular-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 4px 12px;
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.treatment-card .card-body {
    padding: 18px;
}

.treatment-card .card-body h5 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 5px;
    line-height: 1.3;
}

.treatment-card .card-body .treatment-desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 12px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.treatment-card .card-body .price-row {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.treatment-card .old-price {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
    font-weight: 400;
}

.treatment-card .new-price {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
}

.treatment-card .new-price .currency {
    font-size: 0.85rem;
    font-weight: 500;
}

.treatment-card .discount-tag {
    display: inline-block;
    padding: 2px 8px;
    background: #fff3cd;
    color: var(--gold);
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 600;
}

.btn-book-now {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
    color: var(--white) !important;
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    box-shadow: 0 4px 15px rgba(13, 59, 26, 0.3), 0 0 0 0 rgba(212, 175, 55, 0);
    animation: bookNowPulse 2s ease-in-out infinite;
    position: relative;
    overflow: hidden;
}

.btn-book-now::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.15), transparent);
    transition: left 0.5s ease;
}

.btn-book-now:hover {
    background: linear-gradient(135deg, var(--medium-green), var(--dark-green));
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(13, 59, 26, 0.4), 0 0 20px rgba(212, 175, 55, 0.3);
    color: var(--white) !important;
    border-color: var(--gold-light);
}

.btn-book-now:hover::before {
    left: 100%;
}

@keyframes bookNowPulse {
    0%, 100% { box-shadow: 0 4px 15px rgba(13, 59, 26, 0.3), 0 0 0 0 rgba(212, 175, 55, 0.4); }
    50% { box-shadow: 0 4px 15px rgba(13, 59, 26, 0.3), 0 0 0 8px rgba(212, 175, 55, 0); }
}

.treatment-card .btn-book-now {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    animation: none;
    box-shadow: none;
}

.treatment-card .btn-book-now:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
    color: var(--white);
}

.treatments-view-all {
    text-align: center;
    margin-top: 30px;
}

/* ============================================================
   11. INFO CARDS SECTION
   ============================================================ */
.info-cards-section {
    padding: 80px 0;
    background: #091a0f;
    overflow: hidden;
}

.info-cards-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 25px;
}

.info-card {
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 150px;
    height: 150px;
    border-radius: 50%;
    opacity: 0.1;
    pointer-events: none;
}

.info-card-green {
    background: linear-gradient(145deg, #1a5c2e, #0d3b1a);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(26, 92, 46, 0.3);
}

.info-card-green::before {
    background: rgba(255, 255, 255, 0.2);
    top: -40px;
    right: -40px;
}

.info-card-green h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 5px;
}

.info-card-green .card-subtitle {
    color: var(--gold-light);
    font-size: 0.85rem;
    font-weight: 400;
    margin-bottom: 20px;
}

.info-card-green .checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.info-card-green .checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.info-card-green .checklist li i {
    color: var(--gold-light);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-card-gold {
    background: linear-gradient(145deg, #c5a028, #a68520);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(197, 160, 40, 0.3);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.info-card-gold::before {
    background: rgba(255, 255, 255, 0.15);
    top: -50px;
    right: -50px;
    width: 180px;
    height: 180px;
}

.info-card-gold .therapist-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border: 2px solid rgba(255, 255, 255, 0.3);
}

.info-card-gold .therapist-icon i {
    font-size: 2rem;
    color: var(--white);
}

.info-card-gold .therapist-icon img {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 50%;
}

.info-card-gold h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card-gold p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9rem;
    line-height: 1.7;
    margin-bottom: 20px;
}

.info-card-gold .btn-gold-outline {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.info-card-gold .btn-gold-outline:hover {
    background: var(--white);
    color: var(--gold);
}

.info-card-discount {
    background: linear-gradient(145deg, #2d8a4e, #1a5c2e);
    color: var(--white);
    box-shadow: 0 8px 30px rgba(45, 138, 78, 0.3);
    text-align: center;
    justify-content: center;
    align-items: center;
}

.info-card-discount::before {
    background: rgba(255, 255, 255, 0.12);
    bottom: -50px;
    left: -50px;
    top: auto;
    right: auto;
    width: 180px;
    height: 180px;
}

.info-card-discount .discount-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    animation: pulse 2s ease-in-out infinite;
}

.info-card-discount .discount-badge .percent {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.info-card-discount .discount-badge .off-text {
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

.info-card-discount h4 {
    color: var(--white);
    font-size: 1.3rem;
    margin-bottom: 10px;
}

.info-card-discount p {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.88rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.info-card-discount .btn-discount {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    background: var(--gold);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.info-card-discount .btn-discount:hover {
    background: var(--gold-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

/* ============================================================
   12. REVIEWS SECTION
   ============================================================ */
.reviews-section {
    background: var(--dark-bg);
    padding: 80px 0;
    position: relative;
    overflow: hidden;
}

.reviews-header {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 40px;
    flex-wrap: wrap;
    gap: 20px;
}

.reviews-slider-container {
    position: relative;
    overflow: hidden;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card {
    flex: 0 0 350px;
    scroll-snap-align: start;
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.review-card .stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-card .stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-card .stars i.empty {
    color: #ddd;
}

.review-card .quote-icon {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--light-green);
    font-family: var(--font-heading);
    line-height: 1;
    opacity: 0.5;
}

.review-card .review-text {
    font-size: 0.92rem;
    color: #555;
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px;
}

.review-card .reviewer {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.review-card .reviewer-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    overflow: hidden;
    flex-shrink: 0;
}

.review-card .reviewer-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.review-card .reviewer-info h6 {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
    margin: 0 0 2px;
}

.review-card .reviewer-info span {
    font-size: 0.75rem;
    color: #999;
}

.review-card .review-source {
    position: absolute;
    bottom: 25px;
    right: 25px;
    font-size: 0.75rem;
    color: #bbb;
    display: flex;
    align-items: center;
    gap: 4px;
}

.review-card .review-source i {
    color: #4285f4;
}

/* ============================================================
   13. FOOTER
   ============================================================ */
.footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 60px 0 0;
    position: relative;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-green), var(--gold), var(--dark-green));
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr 1fr 1.2fr;
    gap: 40px;
    padding-bottom: 40px;
}

.footer-col {
    padding: 0 10px;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 18px;
}

.footer-logo img {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 40, 0.4);
    object-fit: cover;
}

.footer-logo .footer-brand-text {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.footer-logo .footer-brand-text small {
    display: block;
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold-light);
}

.footer-col .footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 20px;
}

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

.footer-social a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-social a:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.footer-col h5 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 12px;
}

.footer-col h5::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

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

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

.footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.footer-links li a::before {
    content: '›';
    font-size: 1.1rem;
    color: var(--gold);
    transition: var(--transition);
}

.footer-links li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    font-size: 0.85rem;
}

.footer-hours li:last-child {
    border-bottom: none;
}

.footer-hours li .day {
    color: rgba(255, 255, 255, 0.6);
}

.footer-hours li .time {
    color: var(--gold-light);
    font-weight: 500;
}

.footer-hours li .time.closed {
    color: #ff6b6b;
}

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

.footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li i {
    width: 20px;
    color: var(--gold-light);
    margin-top: 4px;
    flex-shrink: 0;
    text-align: center;
}

.footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
}

.footer-contact li a:hover {
    color: var(--gold-light);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.footer-bottom p a {
    color: var(--gold-light);
}

.footer-bottom-links {
    display: flex;
    gap: 20px;
}

.footer-bottom-links a {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
}

.footer-bottom-links a:hover {
    color: var(--gold-light);
}

/* ============================================================
   FOOTER - Additional rules matching footer.php HTML classes
   ============================================================ */
.site-footer {
    background: var(--footer-bg);
    color: rgba(255, 255, 255, 0.8);
    padding: 0;
    position: relative;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--dark-green), var(--gold), var(--dark-green));
}

.site-footer .footer-heading {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
    position: relative;
    padding-bottom: 12px;
}

.site-footer .footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 35px;
    height: 2px;
    background: var(--gold);
    border-radius: 2px;
}

.site-footer .footer-heading-line {
    display: none;
}

.site-footer .footer-brand {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-brand .footer-logo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 2px solid rgba(197, 160, 40, 0.4);
    object-fit: cover;
}

.site-footer .footer-brand .footer-title {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 8px;
}

.site-footer .footer-brand .footer-desc {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    margin-bottom: 16px;
}

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

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

.site-footer .footer-links li a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.88rem;
    text-decoration: none;
    transition: var(--transition);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

.site-footer .footer-links li a:hover {
    color: var(--gold-light);
    padding-left: 5px;
}

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

.site-footer .footer-hours li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 14px;
    font-size: 0.88rem;
}

.site-footer .footer-hours li i {
    color: var(--gold-light);
    margin-top: 4px;
    flex-shrink: 0;
}

.site-footer .footer-hours li div {
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    gap: 10px;
}

.site-footer .footer-hours .hours-label {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 400;
    white-space: nowrap;
}

.site-footer .footer-hours .hours-value {
    color: var(--gold-light);
    font-weight: 500;
    white-space: nowrap;
    margin-left: auto;
}

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

.site-footer .footer-contact li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 15px;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-contact li i {
    width: 20px;
    color: var(--gold-light);
    margin-top: 4px;
    flex-shrink: 0;
    text-align: center;
}

.site-footer .footer-contact li div {
    display: flex;
    flex-direction: column;
}

.site-footer .footer-contact .contact-label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 2px;
}

.site-footer .footer-contact li a {
    color: rgba(255, 255, 255, 0.65);
    text-decoration: none;
    transition: var(--transition);
}

.site-footer .footer-contact li a:hover {
    color: var(--gold-light);
}

.site-footer .footer-contact li span {
    color: rgba(255, 255, 255, 0.65);
}

.site-footer .footer-social-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.95rem;
    transition: var(--transition);
    border: 1px solid rgba(255, 255, 255, 0.1);
    text-decoration: none;
}

.site-footer .footer-social-icon:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    border-color: var(--gold);
}

.site-footer .footer-map-wrapper {
    border-radius: 12px;
    overflow: hidden;
}

.site-footer .footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

.site-footer .footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.5);
    margin: 0;
}

.site-footer .btn-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 8px 20px;
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    font-weight: 500;
    text-decoration: none;
    transition: var(--transition);
    background: transparent;
}

.site-footer .btn-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
}

/* ============================================================
   HOMEPAGE - Matching actual HTML classes used in index.php
   ============================================================ */

/* Hero Section */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0d3b1a 0%, #1a5c2e 30%, #2d8a4e 60%, #27724a 100%);
    overflow: hidden;
    padding: 60px 0;
    isolation: isolate;
}

.hero-video-wrap {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    overflow: hidden;
}

.hero-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero-video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(13, 59, 26, 0.85) 0%, rgba(26, 92, 46, 0.75) 50%, rgba(39, 114, 74, 0.8) 100%);
    z-index: 1;
}

.hero-section .hero-leaf {
    color: rgba(255, 255, 255, 0.1);
    font-size: 3rem;
    z-index: 2;
    position: absolute;
}

.hero-section .container-fluid {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
}

.hero-section .container-fluid .row {
    width: 100%;
    justify-content: center;
}

.hero-section .container-fluid .col-lg-8 {
    max-width: 800px;
    text-align: center;
}

.hero-section .hero-leaf-tl { top: 15%; left: 3%; }
.hero-section .hero-leaf-tr { top: 20%; right: 5%; }
.hero-section .hero-leaf-bl { bottom: 20%; left: 8%; }
.hero-section .hero-leaf-br { bottom: 15%; right: 3%; }

.hero-logo-frame {
    position: relative;
    display: inline-block;
}

.hero-logo-ring {
    width: 350px;
    height: 350px;
    border-radius: 50%;
    border: 3px solid var(--gold);
    padding: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: pulse 3s ease-in-out infinite;
}

.hero-logo-ring::after {
    content: '';
    position: absolute;
    inset: -15px;
    border-radius: 50%;
    border: 1px solid rgba(197, 160, 40, 0.3);
}

.hero-logo-inner {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.05);
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 50%;
}

.hero-corner {
    position: absolute;
    width: 20px;
    height: 20px;
    border-color: var(--gold);
    border-style: solid;
    opacity: 0.6;
}

.hero-corner-tl { top: -10px; left: -10px; border-width: 2px 0 0 2px; }
.hero-corner-tr { top: -10px; right: -10px; border-width: 2px 2px 0 0; }
.hero-corner-bl { bottom: -10px; left: -10px; border-width: 0 0 2px 2px; }
.hero-corner-br { bottom: -10px; right: -10px; border-width: 0 2px 2px 0; }

.hero-content {
    color: var(--white);
    text-align: center;
}

.hero-buttons {
    justify-content: center;
}

.hero-heading {
    margin-bottom: 20px;
    text-align: center;
}

.hero-heading .hero-line-1,
.hero-heading .hero-line-3 {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-heading .hero-line-2 {
    display: block;
    font-family: var(--font-heading);
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1.2;
}

.hero-heading .hero-line-2 em {
    font-style: italic;
    color: var(--gold-light);
}

.hero-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
    margin-bottom: 20px;
}

.hero-divider-line {
    flex: 0 0 60px;
    max-width: 60px;
    height: 2px;
    background: var(--gold);
}

.hero-divider-icon {
    color: var(--gold-light);
    font-size: 1.2rem;
}

.hero-paragraph {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 25px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
    text-align: center;
}

.hero-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: var(--gold);
    color: var(--white);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-primary:hover {
    background: var(--gold-hover);
    border-color: var(--gold-hover);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
    color: var(--white);
}

.btn-hero-outline-white {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.4);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-outline-white:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    transform: translateY(-3px);
    color: var(--white);
}

.btn-hero-outline-gold {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: transparent;
    color: var(--gold);
    border: 2px solid var(--gold);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-hero-outline-gold:hover {
    background: var(--gold);
    color: var(--white);
    transform: translateY(-3px);
    box-shadow: var(--shadow-gold);
}

/* Why Choose Section */
.why-choose-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
    padding: 60px 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.why-choose-bg {
    background-image: url('../images/about-spa.jpg');
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 31, 19, 0.85) 0%, rgba(9, 26, 15, 0.9) 100%);
    z-index: 1;
}

.why-choose-strip {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-lg);
    padding: 30px 20px;
    overflow-x: auto;
    scrollbar-width: none;
    -ms-overflow-style: none;
}

.why-choose-strip::-webkit-scrollbar {
    display: none;
}

.why-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 12px 15px;
    min-width: 130px;
    transition: var(--transition);
    border-radius: var(--radius-md);
}

.why-item:hover {
    background: var(--light-green);
    transform: translateY(-3px);
}

.why-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 10px;
    transition: var(--transition);
    border: 2px solid transparent;
}

.why-item:hover .why-icon-circle {
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
    border-color: var(--gold);
    transform: scale(1.1);
}

.why-icon-circle i {
    font-size: 1.3rem;
    color: var(--dark-green);
    transition: var(--transition);
}

.why-item:hover .why-icon-circle i {
    color: var(--white);
}

.why-label {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--dark-text);
    line-height: 1.4;
}

/* Section Tag */
.section-tag {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--medium-green);
    margin-bottom: 8px;
    display: block;
}

/* Section Divider */
.section-divider {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin: 10px auto 25px;
    border-radius: 2px;
}

/* About Section */
.about-text-block .section-tag {
    margin-bottom: 10px;
}

.about-text-block .section-heading {
    font-size: 2rem;
    margin-bottom: 15px;
}

.about-text-block .about-text p {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
    margin-bottom: 12px;
}

.about-images {
    display: flex;
    flex-direction: column;
    gap: 15px;
    align-items: center;
}

.about-img-wrapper {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    position: relative;
}

.about-img-wrapper.about-img-top {
    width: 100%;
    max-width: 350px;
}

.about-img-wrapper.about-img-bottom {
    width: 80%;
    max-width: 280px;
    margin-top: -30px;
}

.about-img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.5s ease;
}

.about-img-wrapper:hover .about-img {
    transform: scale(1.05);
}

.about-hours-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--card-border);
    position: relative;
    overflow: hidden;
}

.about-hours-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green), var(--gold));
}

.hours-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
    color: var(--dark-green);
    font-size: 1.3rem;
}

.hours-card-title {
    font-size: 1.3rem;
    margin-bottom: 10px;
    color: var(--dark-green);
}

.hours-card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 20px;
}

.hours-card-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.hours-card-list li {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px dashed rgba(0, 0, 0, 0.06);
    font-size: 0.88rem;
}

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

.hours-card-list .day {
    font-weight: 500;
    color: var(--dark-text);
}

.hours-card-list .time {
    font-weight: 600;
    color: var(--medium-green);
}

.btn-read-more {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--dark-green);
    font-weight: 600;
    font-size: 0.9rem;
    text-decoration: none;
    transition: var(--transition);
}

.btn-read-more:hover {
    color: var(--gold);
    padding-left: 5px;
}

/* Treatments Section */
.treatments-slider-wrap {
    position: relative;
}

.treatments-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.treatments-slider::-webkit-scrollbar {
    display: none;
}

.slider-arrow {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--dark-green);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    color: var(--dark-green);
    font-size: 1rem;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
    box-shadow: var(--shadow-sm);
}

.slider-arrow:hover {
    background: var(--dark-green);
    color: var(--white);
    transform: translateY(-50%) scale(1.05);
    box-shadow: var(--shadow-luxury);
}

.slider-arrow-left { left: -10px; }
.slider-arrow-right { right: -10px; }

.treatment-card-col {
    flex: 0 0 280px;
    scroll-snap-align: start;
}

.treatment-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
    height: 100%;
    display: flex;
    flex-direction: column;
}

.treatment-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-luxury);
}

.treatment-card-img {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.treatment-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

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

.treatment-card-badge {
    position: absolute;
    bottom: 12px;
    right: 12px;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 5px 12px;
    background: rgba(26, 92, 46, 0.9);
    backdrop-filter: blur(4px);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 500;
}

.treatment-card-body {
    padding: 18px;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.treatment-card-title {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--dark-green);
    margin-bottom: 5px;
    line-height: 1.3;
}

.treatment-card-duration {
    font-size: 0.8rem;
    color: #888;
    margin-bottom: 12px;
}

.treatment-card-prices {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
}

.price-normal del {
    font-size: 0.85rem;
    color: #999;
    text-decoration: line-through;
}

.price-online {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--dark-green);
}

.btn-treatment-book {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 100%;
    padding: 10px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    margin-top: auto;
}

.btn-treatment-book:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
    color: var(--white);
}

/* Info Cards Section */
/* ======================== INFO CARDS ======================== */
.info-cards-section {
    padding: 80px 0;
    background: #091a0f;
    overflow: hidden;
}

.info-card {
    border-radius: var(--radius-lg);
    padding: 35px 30px;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    min-height: 320px;
    display: flex;
    flex-direction: column;
}

.info-card:hover {
    transform: translateY(-5px);
}

.info-card-icon-bg {
    position: absolute;
    top: 20px;
    right: 20px;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.3);
}

.info-card-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 15px;
}

.info-card-divider {
    width: 40px;
    height: 2px;
    background: var(--gold);
    margin-bottom: 15px;
}

.info-card-text {
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.7;
    margin-bottom: 15px;
}

.info-checklist {
    list-style: none;
    padding: 0;
    margin: 0;
    flex: 1;
}

.info-checklist li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 6px 0;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.5;
}

.info-checklist li i {
    color: var(--gold-light);
    font-size: 0.8rem;
    margin-top: 4px;
    flex-shrink: 0;
}

.info-card-decoration {
    position: absolute;
    bottom: -10px;
    right: -10px;
    font-size: 4rem;
    color: rgba(255, 255, 255, 0.06);
}

.btn-info-card {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 25px;
    border: 2px solid var(--white);
    color: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 500;
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.btn-info-card:hover {
    background: var(--white);
    color: var(--dark-green);
}

.therapist-signature {
    margin-top: 15px;
}

.therapist-name {
    display: block;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--white);
}

.therapist-title {
    display: block;
    font-size: 0.78rem;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.discount-badge {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.12);
    border: 3px dashed rgba(255, 255, 255, 0.3);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.discount-badge-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.discount-up-to {
    font-size: 0.65rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--white);
}

.discount-percent {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--gold-light);
    line-height: 1;
}

.discount-off {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--white);
}

/* Reviews Section */
.reviews-slider-wrap {
    position: relative;
}

.reviews-slider {
    display: flex;
    gap: 20px;
    overflow-x: auto;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    padding: 10px 0 20px;
}

.reviews-slider::-webkit-scrollbar {
    display: none;
}

.review-card-col {
    flex: 0 0 350px;
    scroll-snap-align: start;
}

.review-card {
    background: var(--card-bg);
    border-radius: var(--radius-lg);
    padding: 30px 25px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 1px solid var(--card-border);
    height: 100%;
}

.review-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-luxury);
}

.review-card-quote {
    position: absolute;
    top: 20px;
    right: 25px;
    font-size: 2rem;
    color: var(--medium-green);
    opacity: 0.3;
}

.review-card-stars {
    display: flex;
    gap: 3px;
    margin-bottom: 15px;
}

.review-card-stars i {
    color: var(--gold);
    font-size: 0.9rem;
}

.review-card-text {
    font-size: 0.92rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 20px;
    font-style: italic;
    min-height: 80px;
}

.review-card-author {
    display: flex;
    align-items: center;
    gap: 12px;
    padding-top: 15px;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.review-avatar {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--light-green), #d4edda);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--dark-green);
    flex-shrink: 0;
}

.review-name {
    display: block;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--dark-text);
}

.review-country {
    display: block;
    font-size: 0.75rem;
    color: #999;
}

/* ============================================================
   14. FLOATING WHATSAPP BUTTON
   ============================================================ */
.whatsapp-float {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.whatsapp-float:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark-text);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

.floating-whatsapp {
    position: fixed;
    bottom: 25px;
    right: 25px;
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 58px;
    height: 58px;
    border-radius: 50%;
    background: #25d366;
    color: var(--white);
    font-size: 1.6rem;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
}

.floating-whatsapp:hover {
    background: #1da851;
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
    color: var(--white);
}

.floating-whatsapp::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    border: 2px solid rgba(37, 211, 102, 0.3);
}

.floating-whatsapp .tooltip-text {
    position: absolute;
    right: 70px;
    top: 50%;
    transform: translateY(-50%);
    background: var(--white);
    color: var(--dark-text);
    padding: 8px 15px;
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    font-weight: 500;
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    pointer-events: none;
}

.floating-whatsapp:hover .tooltip-text {
    opacity: 1;
    visibility: visible;
}

/* ============================================================
   15. BACK TO TOP BUTTON
   ============================================================ */
.back-to-top {
    position: fixed;
    bottom: 90px;
    right: 28px;
    z-index: 9998;
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    cursor: pointer;
    transition: var(--transition);
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    box-shadow: var(--shadow-md);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--medium-green);
    transform: translateY(-3px);
    box-shadow: var(--shadow-luxury);
}

/* ============================================================
   16. PAGE BANNER (Internal Pages)
   ============================================================ */
.page-banner {
    position: relative;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    background-image: url('../images/hero-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26, 92, 46, 0.9) 0%, rgba(13, 59, 26, 0.85) 100%);
    z-index: 1;
}

.page-banner .banner-content {
    position: relative;
    z-index: 2;
    color: var(--white);
}

.page-banner .banner-content h1 {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 10px;
}

.page-banner .banner-content .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.page-banner .banner-content .breadcrumb li {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.page-banner .banner-content .breadcrumb li a {
    color: var(--gold-light);
}

.page-banner .banner-content .breadcrumb li a:hover {
    color: var(--white);
}

.page-banner .banner-content .breadcrumb li + li::before {
    content: '›';
    margin-right: 8px;
    color: rgba(255, 255, 255, 0.4);
}

.page-banner .banner-leaf {
    position: absolute;
    opacity: 0.08;
    z-index: 1;
    animation: float 8s ease-in-out infinite;
}

.page-banner .banner-leaf:nth-child(1) {
    top: 10%;
    left: 5%;
    width: 80px;
}

.page-banner .banner-leaf:nth-child(2) {
    bottom: 10%;
    right: 5%;
    width: 100px;
    animation-delay: 3s;
}

/* ============================================================
   17. BOOKING FORM
   ============================================================ */
.booking-form {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 40px 35px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(26, 92, 46, 0.08);
    position: relative;
    overflow: hidden;
}

.booking-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--dark-green), var(--gold), var(--dark-green));
}

.booking-form h3 {
    font-size: 1.5rem;
    margin-bottom: 5px;
}

.booking-form .form-subtitle {
    color: #888;
    font-size: 0.88rem;
    margin-bottom: 25px;
}

.booking-form .form-group {
    margin-bottom: 20px;
}

.booking-form label {
    display: block;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--dark-text);
    margin-bottom: 6px;
}

.booking-form label .required {
    color: #dc3545;
    margin-left: 2px;
}

.booking-form .form-control {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid #e8e8e8;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--dark-text);
    transition: var(--transition);
    background: var(--white);
    outline: none;
}

.booking-form .form-control:focus {
    border-color: var(--medium-green);
    box-shadow: 0 0 0 3px rgba(45, 138, 78, 0.1);
}

.booking-form .form-control::placeholder {
    color: #bbb;
}

.booking-form .form-control.error {
    border-color: #dc3545;
    box-shadow: 0 0 0 3px rgba(220, 53, 69, 0.1);
}

.booking-form .error-message {
    display: none;
    font-size: 0.78rem;
    color: #dc3545;
    margin-top: 4px;
    padding-left: 2px;
}

.booking-form .form-control.error + .error-message {
    display: block;
}

.booking-form select.form-control {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    padding-right: 40px;
    cursor: pointer;
}

.booking-form textarea.form-control {
    min-height: 120px;
    resize: vertical;
}

.booking-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
}

.booking-form .btn-submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 14px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    margin-top: 10px;
}

.booking-form .btn-submit:hover {
    background: var(--medium-green);
    transform: translateY(-2px);
    box-shadow: var(--shadow-luxury);
}

.booking-form .btn-submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.booking-form .btn-submit .spinner {
    display: none;
    width: 18px;
    height: 18px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-top-color: var(--white);
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
}

.booking-form .btn-submit.loading .spinner {
    display: block;
}

.booking-form .btn-submit.loading .btn-text {
    display: none;
}

.booking-form .form-note {
    font-size: 0.78rem;
    color: #999;
    margin-top: 15px;
    text-align: center;
}

.booking-form .form-note i {
    color: var(--medium-green);
    margin-right: 4px;
}

.form-success-message {
    display: none;
    text-align: center;
    padding: 30px;
}

.form-success-message.show {
    display: block;
}

.form-success-message .success-icon {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    color: var(--dark-green);
}

.form-success-message h4 {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.form-success-message p {
    color: #888;
    font-size: 0.9rem;
}

/* ============================================================
   18. PRICING TABLE
   ============================================================ */
.pricing-table {
    width: 100%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border-collapse: separate;
    border-spacing: 0;
    background: var(--white);
}

.pricing-table thead th {
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green));
    color: var(--white);
    font-family: var(--font-body);
    font-size: 0.88rem;
    font-weight: 600;
    padding: 16px 20px;
    text-align: left;
    border: none;
    letter-spacing: 0.5px;
}

.pricing-table thead th:first-child {
    border-radius: var(--radius-lg) 0 0 0;
}

.pricing-table thead th:last-child {
    border-radius: 0 var(--radius-lg) 0 0;
}

.pricing-table tbody td {
    padding: 14px 20px;
    font-size: 0.88rem;
    color: var(--dark-text);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    vertical-align: middle;
}

.pricing-table tbody tr:nth-child(even) {
    background: var(--cream);
}

.pricing-table tbody tr:hover {
    background: var(--light-green);
}

.pricing-table tbody tr:last-child td:first-child {
    border-radius: 0 0 0 var(--radius-lg);
}

.pricing-table tbody tr:last-child td:last-child {
    border-radius: 0 0 var(--radius-lg) 0;
}

.pricing-table .treatment-name {
    font-weight: 600;
    color: var(--dark-green);
}

.pricing-table .price-cell {
    font-weight: 700;
    color: var(--dark-green);
    font-size: 1rem;
}

.pricing-table .price-cell .old {
    text-decoration: line-through;
    color: #999;
    font-weight: 400;
    font-size: 0.82rem;
    margin-right: 8px;
}

.pricing-table .duration-cell {
    color: #888;
    font-size: 0.82rem;
    display: flex;
    align-items: center;
    gap: 5px;
}

.pricing-table .duration-cell i {
    color: var(--medium-green);
}

.pricing-table .action-cell .btn-table-book {
    padding: 6px 18px;
    background: var(--dark-green);
    color: var(--white);
    border: none;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.pricing-table .action-cell .btn-table-book:hover {
    background: var(--medium-green);
    transform: translateY(-1px);
}

/* Gold header variant */
.pricing-table.gold-header thead th {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
}

/* ============================================================
   19. GALLERY
   ============================================================ */
.gallery-section {
    padding: 80px 0;
    background: var(--cream);
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 35px;
    flex-wrap: wrap;
}

.gallery-filter-btn {
    padding: 8px 22px;
    border: 2px solid var(--dark-green);
    background: transparent;
    color: var(--dark-green);
    border-radius: 50px;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 500;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter-btn:hover,
.gallery-filter-btn.active {
    background: var(--dark-green);
    color: var(--white);
}

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

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    aspect-ratio: 1;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.gallery-item.tall {
    grid-row: span 2;
    aspect-ratio: auto;
}

.gallery-item.wide {
    grid-column: span 2;
    aspect-ratio: 16/9;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.gallery-item:hover img {
    transform: scale(1.08);
}

.gallery-item .gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 92, 46, 0.7) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding: 20px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay .zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.2rem;
    margin-bottom: auto;
    margin-top: auto;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: var(--transition);
}

.gallery-overlay .zoom-icon:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.gallery-overlay .caption {
    color: var(--white);
    font-size: 0.85rem;
    font-weight: 500;
    text-align: center;
}

/* ============================================================
   20. LIGHTBOX
   ============================================================ */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.92);
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.lightbox.active {
    display: flex;
    opacity: 1;
}

.lightbox-content {
    position: relative;
    max-width: 90vw;
    max-height: 90vh;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: var(--radius-sm);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
}

.lightbox-close {
    position: fixed;
    top: 20px;
    right: 25px;
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.3rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: rotate(90deg);
}

.lightbox-arrow {
    position: fixed;
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: var(--white);
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    z-index: 10001;
}

.lightbox-arrow:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-arrow.prev {
    left: 20px;
}

.lightbox-arrow.next {
    right: 20px;
}

.lightbox-caption {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    color: rgba(255, 255, 255, 0.8);
    font-size: 0.9rem;
    text-align: center;
    z-index: 10001;
    padding: 8px 20px;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    border-radius: 50px;
}

.lightbox-counter {
    position: fixed;
    top: 25px;
    left: 25px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
    z-index: 10001;
}

/* ============================================================
   21. CONTACT SECTION
   ============================================================ */
.contact-section {
    padding: 80px 0;
    background: var(--cream);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: start;
}

.contact-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    height: 100%;
    min-height: 450px;
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    min-height: 450px;
    border: none;
}

.contact-info-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.contact-info-card {
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 20px;
    box-shadow: var(--shadow-sm);
    display: flex;
    align-items: flex-start;
    gap: 12px;
    transition: var(--transition);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.contact-info-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-md);
}

.contact-info-card .info-icon {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    background: var(--light-green);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--dark-green);
    font-size: 0.95rem;
    flex-shrink: 0;
}

.contact-info-card h6 {
    font-family: var(--font-body);
    font-size: 0.78rem;
    font-weight: 600;
    color: #999;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 4px;
}

.contact-info-card p {
    font-size: 0.88rem;
    color: var(--dark-text);
    margin: 0;
    line-height: 1.5;
}

.contact-info-card a {
    color: var(--dark-green);
    font-weight: 500;
}

.contact-info-card a:hover {
    color: var(--gold);
}

/* ============================================================
   22. GLASSMORPHISM CARDS
   ============================================================ */
.glass-card {
    background: rgba(255, 255, 255, 0.75);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

.glass-card-dark {
    background: rgba(26, 92, 46, 0.15);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
}

/* ============================================================
   23. ANIMATIONS
   ============================================================ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes float {
    0%, 100% {
        transform: translateY(0) rotate(var(--rotate, 0deg));
    }
    50% {
        transform: translateY(-15px) rotate(var(--rotate, 0deg));
    }
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 1;
    }
    50% {
        transform: scale(1.05);
        opacity: 0.7;
    }
}

@keyframes pulseWhatsApp {
    0% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0.4);
    }
    70% {
        box-shadow: 0 0 0 15px rgba(37, 211, 102, 0);
    }
    100% {
        box-shadow: 0 0 0 0 rgba(37, 211, 102, 0);
    }
}

@keyframes slideIn {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(100%);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

/* Scroll Animation Classes */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

.animate-on-scroll.animate-left {
    transform: translateX(-40px);
}

.animate-on-scroll.animate-left.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-right {
    transform: translateX(40px);
}

.animate-on-scroll.animate-right.animated {
    transform: translateX(0);
}

.animate-on-scroll.animate-scale {
    transform: scale(0.9);
}

.animate-on-scroll.animate-scale.animated {
    transform: scale(1);
}

/* Staggered delay classes */
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.2s; }
.delay-3 { transition-delay: 0.3s; }
.delay-4 { transition-delay: 0.4s; }
.delay-5 { transition-delay: 0.5s; }
.delay-6 { transition-delay: 0.6s; }
.delay-7 { transition-delay: 0.7s; }

/* ============================================================
   24. LOADING / SKELETON
   ============================================================ */
.skeleton {
    background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
    background-size: 200% 100%;
    animation: shimmer 1.5s infinite;
    border-radius: var(--radius-sm);
}

.skeleton-text {
    height: 14px;
    margin-bottom: 8px;
    border-radius: 4px;
}

.skeleton-text.short {
    width: 60%;
}

.skeleton-circle {
    border-radius: 50%;
}

/* ============================================================
   25. ALERTS / TOAST NOTIFICATIONS
   ============================================================ */
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 10005;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.toast {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
    box-shadow: var(--shadow-lg);
    min-width: 300px;
    max-width: 420px;
    animation: slideInRight 0.3s ease;
    font-size: 0.88rem;
}

.toast-success {
    background: var(--white);
    border-left: 4px solid var(--medium-green);
    color: var(--dark-text);
}

.toast-success i {
    color: var(--medium-green);
    font-size: 1.2rem;
}

.toast-error {
    background: var(--white);
    border-left: 4px solid #dc3545;
    color: var(--dark-text);
}

.toast-error i {
    color: #dc3545;
    font-size: 1.2rem;
}

.toast-close {
    margin-left: auto;
    background: none;
    border: none;
    color: #999;
    cursor: pointer;
    padding: 4px;
    font-size: 1rem;
}

.toast-close:hover {
    color: var(--dark-text);
}

/* ============================================================
   26. MISC COMPONENTS
   ============================================================ */

/* Stat counter */
.stat-counter {
    text-align: center;
    padding: 20px;
}

.stat-counter .counter-number {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--dark-green);
    line-height: 1;
    margin-bottom: 5px;
}

.stat-counter .counter-number .suffix {
    font-size: 1.5rem;
    color: var(--gold);
}

.stat-counter .counter-label {
    font-size: 0.85rem;
    color: #888;
    font-weight: 500;
}

/* Badge styles */
.badge-green {
    display: inline-block;
    padding: 4px 12px;
    background: var(--light-green);
    color: var(--dark-green);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.badge-gold {
    display: inline-block;
    padding: 4px 12px;
    background: #fff3cd;
    color: var(--gold);
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

/* Separator */
.section-separator {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(26, 92, 46, 0.1), transparent);
    margin: 0;
}

/* Decorative leaf pseudo-elements */
.leaf-decor-section {
    position: relative;
}

.leaf-decor-section::before {
    content: '🍃';
    position: absolute;
    top: 40px;
    right: 40px;
    font-size: 3rem;
    opacity: 0.06;
    pointer-events: none;
    animation: float 7s ease-in-out infinite;
}

.leaf-decor-section::after {
    content: '🌿';
    position: absolute;
    bottom: 40px;
    left: 40px;
    font-size: 2.5rem;
    opacity: 0.05;
    pointer-events: none;
    animation: float 9s ease-in-out infinite 2s;
}

/* Cookie banner */
.cookie-banner {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 18px 25px;
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 9990;
    display: none;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
}

.cookie-banner.show {
    display: flex;
}

.cookie-banner p {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
    flex: 1;
}

.cookie-banner .cookie-btns {
    display: flex;
    gap: 10px;
    flex-shrink: 0;
}

/* ============================================================
   27. RESPONSIVE DESIGN
   ============================================================ */

/* Extra small devices (phones, 576px and down) */
@media (max-width: 575.98px) {
    h1 { font-size: 2rem; }
    h2 { font-size: 1.8rem; }
    h3 { font-size: 1.4rem; }

    .section-heading {
        font-size: 1.8rem;
    }

    .section-padding {
        padding: 50px 0;
    }

    /* Top bar */
    .container-fluid.px-lg-5 {
        padding-left: 15px !important;
        padding-right: 15px !important;
    }

    .top-bar {
        font-size: 0.75rem;
        padding: 6px 0;
    }

    .top-bar .container {
        justify-content: center;
    }

    .top-bar .row {
        justify-content: center;
    }

    .top-bar-left {
        justify-content: center;
        flex: 0 0 100%;
        text-align: center;
    }

    .top-bar-right {
        justify-content: center !important;
        flex: 0 0 100%;
        text-align: center;
    }

    .top-bar-hours-dropdown {
        display: none;
    }

    .top-bar-social {
        gap: 10px !important;
        justify-content: center;
        width: 100%;
    }

    .top-bar-social .top-bar-social-icon {
        width: 32px;
        height: 32px;
        font-size: 0.8rem;
        background: rgba(255, 255, 255, 0.15);
        border-radius: 50%;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        color: var(--white);
        transition: var(--transition);
    }

    .top-bar-social .top-bar-social-icon:hover {
        background: var(--gold);
        color: var(--dark-green);
        transform: translateY(-2px);
    }

    .top-bar-hours-dropdown {
        left: -60px;
        min-width: 230px;
    }

    /* Navbar */
    .navbar .container {
        flex-wrap: wrap;
    }

    .navbar .logo-img {
        width: 45px;
        height: 45px;
    }

    .navbar-toggler {
        display: flex;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--light-green);
        margin-top: 10px;
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
        width: 100%;
        border-bottom: 1px solid rgba(0, 0, 0, 0.04);
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        border: none;
        padding-left: 20px;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .navbar-actions {
        display: none;
    }

    /* Mobile nav actions inside dropdown */
    .navbar-nav .mobile-nav-actions {
        display: flex;
        flex-direction: column;
        gap: 10px;
        padding: 15px;
        border-top: 1px solid var(--light-green);
    }

    .navbar-collapse .btn-book-now {
        display: flex;
        padding: 14px 20px;
        margin: 10px 15px 15px;
        width: calc(100% - 30px);
        font-size: 1.05rem;
        border-radius: 12px;
        animation: none;
    }

    /* Hero */
    .hero-section {
        min-height: auto;
        padding: 60px 0 80px;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-logo-col {
        flex: none;
        order: 1;
    }

    .hero-content-col {
        order: 2;
        padding-right: 0;
    }

    .hero-logo-wrapper {
        width: 220px;
        height: 220px;
    }

    .hero-logo-circle {
        width: 200px;
        height: 200px;
    }

    .hero-leaf-decor {
        width: 50px;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content p {
        font-size: 0.92rem;
        margin-left: auto;
        margin-right: auto;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-btns .btn-book,
    .hero-btns .btn-whatsapp,
    .hero-btns .btn-call {
        padding: 12px 22px;
        font-size: 0.85rem;
        width: 100%;
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
        gap: 20px;
    }

    .hero-content .hero-badge {
        display: inline-flex;
        margin-left: auto;
        margin-right: auto;
    }

    /* Why Choose */
    .why-choose-section {
        margin-top: -30px;
        padding: 0 10px;
    }

    .why-choose-wrapper {
        padding: 20px 15px;
        gap: 5px;
        overflow-x: auto;
        justify-content: flex-start;
    }

    .why-choose-card {
        min-width: 120px;
        padding: 10px;
    }

    .why-choose-card .icon-circle {
        width: 50px;
        height: 50px;
    }

    .why-choose-card .icon-circle i {
        font-size: 1.1rem;
    }

    .why-choose-card h6 {
        font-size: 0.75rem;
    }

    .why-choose-card:not(:last-child)::after {
        display: none;
    }

    /* About */
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .about-images {
        order: -1;
    }

    /* Treatments */
    .treatments-header {
        flex-direction: column;
        align-items: flex-start;
    }

    .treatment-card {
        flex: 0 0 240px;
    }

    /* Info Cards */
    .info-cards-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .info-card {
        min-height: auto;
    }

    .info-cards-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    /* Reviews */
    .review-card {
        flex: 0 0 280px;
    }

    .reviews-header {
        flex-direction: column;
        align-items: flex-start;
    }

    /* Footer */
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }

    /* Page banner */
    .page-banner {
        height: 250px;
    }

    .page-banner .banner-content h1 {
        font-size: 1.8rem;
    }

    /* Booking form */
    .booking-form {
        padding: 25px 20px;
    }

    .booking-form .form-row {
        grid-template-columns: 1fr;
    }

    /* Gallery */
    .gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 10px;
    }

    .gallery-item.tall,
    .gallery-item.wide {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }

    /* Contact */
    .contact-grid {
        grid-template-columns: 1fr;
    }

    .contact-info-cards {
        grid-template-columns: 1fr;
    }

    .contact-map {
        min-height: 300px;
    }

    /* Pricing table responsive */
    .pricing-table-wrapper {
        overflow-x: auto;
        border-radius: var(--radius-lg);
    }

    .pricing-table {
        min-width: 600px;
    }

    /* Lightbox */
    .lightbox-arrow {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }

    .lightbox-arrow.prev {
        left: 10px;
    }

    .lightbox-arrow.next {
        right: 10px;
    }

    /* Floating buttons */
    .floating-whatsapp {
        width: 50px;
        height: 50px;
        font-size: 1.3rem;
        bottom: 20px;
        right: 20px;
    }

    .floating-whatsapp .tooltip-text {
        display: none;
    }

    .back-to-top {
        width: 38px;
        height: 38px;
        bottom: 78px;
        right: 22px;
    }

    /* Cookie banner */
    .cookie-banner {
        flex-direction: column;
        text-align: center;
    }

    /* Toast */
    .toast-container {
        left: 10px;
        right: 10px;
    }

    .toast {
        min-width: auto;
    }
}

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) and (max-width: 767.98px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--light-green);
        margin-top: 10px;
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
        width: 100%;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 30px;
    }

    .hero-logo-col {
        flex: none;
        order: 1;
    }

    .hero-content-col {
        order: 2;
        padding-right: 0;
    }

    .hero-logo-wrapper {
        width: 280px;
        height: 280px;
    }

    .hero-logo-circle {
        width: 250px;
        height: 250px;
    }

    .hero-content h1 {
        font-size: 2.4rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-content .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .info-cards-grid {
        grid-template-columns: 1fr;
    }

    .info-cards-section .container-fluid {
        padding-left: 20px;
        padding-right: 20px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

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

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .page-banner {
        height: 280px;
    }
}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) and (max-width: 991.98px) {
    .navbar-toggler {
        display: flex;
    }

    .navbar-nav {
        display: none;
        flex-direction: column;
        width: 100%;
        padding: 15px 0;
        gap: 0;
        background: var(--white);
        border-top: 1px solid var(--light-green);
        margin-top: 10px;
    }

    .navbar-nav.show {
        display: flex;
    }

    .navbar-nav .nav-link {
        padding: 12px 15px;
        width: 100%;
    }

    .navbar-nav .nav-link::after {
        display: none;
    }

    .nav-dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        padding-left: 20px;
        display: none;
    }

    .nav-dropdown.open .nav-dropdown-menu {
        display: block;
    }

    .hero-inner {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }

    .hero-logo-col {
        flex: none;
        order: 1;
    }

    .hero-content-col {
        order: 2;
        padding-right: 0;
    }

    .hero-logo-wrapper {
        width: 300px;
        height: 300px;
    }

    .hero-logo-circle {
        width: 270px;
        height: 270px;
    }

    .hero-content h1 {
        font-size: 2.6rem;
    }

    .hero-btns {
        justify-content: center;
    }

    .hero-features {
        justify-content: center;
    }

    .hero-content .hero-badge {
        margin-left: auto;
        margin-right: auto;
    }

    .about-grid {
        grid-template-columns: 1fr 1fr;
    }

    .about-grid .opening-hours-card {
        grid-column: span 2;
    }

    .info-cards-grid {
        grid-template-columns: 1fr 1fr;
    }

    .info-cards-grid .info-card:last-child {
        grid-column: span 2;
    }

    .treatment-card {
        flex: 0 0 230px;
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) and (max-width: 1199.98px) {
    .hero-logo-wrapper {
        width: 320px;
        height: 320px;
    }

    .hero-logo-circle {
        width: 290px;
        height: 290px;
    }

    .hero-content h1 {
        font-size: 2.8rem;
    }

    .treatment-card {
        flex: 0 0 240px;
    }
}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {
    .container {
        max-width: 1200px;
    }

    .hero-content h1 {
        font-size: 3.2rem;
    }
}

/* Print styles */
@media print {
    .top-bar,
    .floating-whatsapp,
    .back-to-top,
    .cookie-banner,
    .navbar-toggler,
    .lightbox {
        display: none !important;
    }

    .navbar {
        position: static;
        box-shadow: none;
        border-bottom: 2px solid var(--dark-green);
    }

    body {
        font-size: 12pt;
        color: #000;
    }

    .hero-section {
        min-height: auto;
        padding: 40px 0;
        background: #f5f5f5 !important;
    }

    .animate-on-scroll {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* ============================================================
   MOBILE BOTTOM NAVIGATION
   ============================================================ */
.mobile-bottom-nav {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 1050;
    background: var(--white);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    box-shadow: 0 -2px 15px rgba(0, 0, 0, 0.1);
    padding: 6px 0 max(6px, env(safe-area-inset-bottom));
    justify-content: space-around;
    align-items: center;
}

.mbn-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2px;
    text-decoration: none;
    color: #888;
    font-size: 0.65rem;
    font-weight: 500;
    padding: 4px 8px;
    border-radius: 8px;
    transition: var(--transition);
    min-width: 56px;
}

.mbn-item i {
    font-size: 1.15rem;
    line-height: 1;
}

.mbn-item span {
    line-height: 1;
    white-space: nowrap;
}

.mbn-item.active {
    color: var(--dark-green);
}

.mbn-item.active i {
    transform: scale(1.15);
}

.mbn-item:hover {
    color: var(--dark-green);
}

.mbn-book {
    background: var(--dark-green);
    color: var(--white) !important;
    border-radius: 14px;
    padding: 8px 14px;
    margin-top: -18px;
    box-shadow: 0 4px 12px rgba(13, 59, 26, 0.35);
}

.mbn-book i {
    font-size: 1.3rem;
}

.mbn-book span {
    font-size: 0.6rem;
    font-weight: 600;
}

.mbn-book:hover {
    background: var(--medium-green);
    color: var(--white) !important;
    transform: translateY(-2px);
}

@media (max-width: 767.98px) {
    .mobile-bottom-nav {
        display: flex;
    }

    body {
        padding-bottom: 70px;
    }

    .whatsapp-float {
        bottom: 80px;
    }

    .back-to-top {
        bottom: 80px;
    }
}

/* ============================================================
   PRELOADER
   ============================================================ */
.preloader {
    position: fixed;
    inset: 0;
    z-index: 99999;
    background: var(--dark-bg);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.preloader-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 25px;
}

.preloader-logo {
    width: 100px;
    height: 100px;
    object-fit: contain;
    animation: preloaderPulse 1.2s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.08); opacity: 0.7; }
}

.preloader-spinner {
    width: 40px;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    overflow: hidden;
    position: relative;
}

.preloader-spinner::after {
    content: '';
    position: absolute;
    top: 0;
    left: -40px;
    width: 40px;
    height: 100%;
    background: var(--gold);
    border-radius: 4px;
    animation: preloaderSlide 1s ease-in-out infinite;
}

@keyframes preloaderSlide {
    0% { left: -40px; }
    100% { left: 40px; }
}

/* ============================================================
   DARK THEME OVERRIDES
   ============================================================ */
.section-heading {
    color: var(--white) !important;
}

.section-tag {
    color: var(--gold-light) !important;
}

.section-subtext,
.section-subtext.centered {
    color: rgba(255, 255, 255, 0.65) !important;
}

.section-divider {
    background: var(--gold) !important;
}

.about-section {
    background: var(--dark-bg) !important;
}

.about-text p {
    color: rgba(255, 255, 255, 0.75) !important;
}

.about-text-block h2,
.about-text-block .section-heading {
    color: var(--white) !important;
}

.about-text-block .section-tag {
    color: var(--gold-light) !important;
}

.about-hours-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
}

.about-hours-card .hours-card-title {
    color: var(--white) !important;
}

.about-hours-card .hours-card-list li {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.about-hours-card .hours-card-list .day {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about-hours-card .hours-card-list .time {
    color: var(--gold-light) !important;
}

.hours-card-icon {
    background: rgba(197, 160, 40, 0.15) !important;
    color: var(--gold-light) !important;
}

.hours-card-divider {
    background: var(--gold) !important;
}

.btn-hours-book {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.btn-hours-book:hover {
    background: var(--gold-hover);
    color: var(--white);
}

.treatments-section {
    background: var(--dark-bg) !important;
}

.treatment-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
}

.treatment-card .card-body h5 {
    color: var(--white) !important;
}

.treatment-card .card-body .treatment-desc {
    color: rgba(255, 255, 255, 0.6) !important;
}

.info-cards-section {
    background: #091a0f !important;
}

.info-card {
    border: 1px solid var(--card-border) !important;
}

.reviews-section {
    background: var(--dark-bg) !important;
}

.review-card {
    background: var(--card-bg) !important;
    border: 1px solid var(--card-border) !important;
}

.review-card-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.review-card-author {
    border-top-color: rgba(255, 255, 255, 0.06) !important;
}

.review-author-name {
    color: var(--white) !important;
}

.review-author-location {
    color: rgba(255, 255, 255, 0.5) !important;
}

.slider-arrow {
    background: var(--card-bg) !important;
    border-color: var(--card-border) !important;
    color: var(--white) !important;
}

.slider-arrow:hover {
    background: var(--gold) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
}

.page-banner {
    background-color: var(--dark-green) !important;
}

.page-banner h1 {
    color: var(--white) !important;
}

.breadcrumb li,
.breadcrumb li a {
    color: rgba(255, 255, 255, 0.6) !important;
}

.breadcrumb li a:hover {
    color: var(--gold-light) !important;
}

a {
    color: var(--gold-light);
}

a:hover {
    color: var(--gold);
}

.why-choose-section {
    position: relative;
    z-index: 5;
    margin-top: -45px;
    padding: 60px 15px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.why-choose-bg {
    background-image: url('../images/about-spa.jpg') !important;
}

.why-choose-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(12, 31, 19, 0.85) 0%, rgba(9, 26, 15, 0.9) 100%);
    z-index: 1;
}

.why-choose-strip {
    background: rgba(255, 255, 255, 0.08) !important;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.12) !important;
}

.why-label {
    color: rgba(255, 255, 255, 0.85) !important;
}

.why-item {
    background: transparent !important;
}

.why-item:hover {
    background: rgba(255, 255, 255, 0.08) !important;
}

.why-icon-circle {
    background: rgba(197, 160, 40, 0.12) !important;
    color: var(--gold-light) !important;
    border: 2px solid rgba(197, 160, 40, 0.25) !important;
}

.why-item:hover .why-icon-circle {
    background: rgba(197, 160, 40, 0.2) !important;
    border-color: var(--gold) !important;
    transform: scale(1.1);
}

.why-icon-circle i {
    color: var(--gold-light) !important;
}

.info-card-text {
    color: rgba(255, 255, 255, 0.7) !important;
}

.btn-info-card {
    border-color: rgba(255, 255, 255, 0.5) !important;
    color: var(--white) !important;
}

.btn-info-card:hover {
    background: var(--white) !important;
    color: var(--dark-green) !important;
}

.info-checklist li {
    color: rgba(255, 255, 255, 0.75) !important;
}

.info-checklist li i {
    color: var(--gold-light) !important;
}

.info-card-green {
    background: linear-gradient(145deg, #0d2818, #1a4a28) !important;
}

.info-card-green-alt {
    background: linear-gradient(145deg, #1a4a28, #0d3b1a) !important;
}

.therapist-text,
.therapist-signature .therapist-name {
    color: rgba(255, 255, 255, 0.75) !important;
}

.therapist-signature .therapist-title {
    color: rgba(255, 255, 255, 0.5) !important;
}

.discount-badge-inner {
    color: var(--white) !important;
}

.discount-percent {
    color: var(--gold-light) !important;
}

.treatment-card-title {
    color: var(--white) !important;
}

.treatment-card-duration {
    color: rgba(255, 255, 255, 0.55) !important;
}

.treatment-card-duration i {
    color: var(--gold-light) !important;
}

.price-online {
    color: var(--gold-light) !important;
}

.price-normal del {
    color: rgba(255, 255, 255, 0.4) !important;
}

.btn-treatment-book {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-color: var(--gold) !important;
}

.btn-treatment-book:hover {
    background: var(--gold-hover) !important;
    color: var(--white) !important;
}

.treatment-card .card-image .duration-badge {
    background: rgba(13, 40, 24, 0.9) !important;
}

.treatment-card .old-price {
    color: rgba(255, 255, 255, 0.4) !important;
}

.treatment-card .new-price {
    color: var(--gold-light) !important;
}

.pricing-table .treatment-name {
    color: var(--white) !important;
}

.pricing-table .price-cell {
    color: var(--gold-light) !important;
}

.pricing-table .duration-cell {
    color: rgba(255, 255, 255, 0.55) !important;
}

.pricing-table .duration-cell i {
    color: var(--gold-light) !important;
}

.pricing-table .price-cell .old {
    color: rgba(255, 255, 255, 0.35) !important;
}

.pricing-table tbody tr {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.hours-card-title {
    color: var(--white) !important;
}

.about-hours-card .hours-card-list li .day,
.hours-card-list .day {
    color: rgba(255, 255, 255, 0.7) !important;
}

.about-hours-card .hours-card-list li .time,
.hours-card-list .time {
    color: var(--gold-light) !important;
}

.about-hours-card .hours-card-list li,
.hours-card-list li {
    border-bottom-color: rgba(255, 255, 255, 0.06) !important;
}

.btn-hours-book {
    background: var(--gold) !important;
    color: var(--white) !important;
    border-color: var(--gold) !important;
}

.btn-book-now-mobile,
.btn-book-now {
    background: linear-gradient(135deg, var(--dark-green), var(--medium-green)) !important;
    color: var(--white) !important;
    border-color: var(--gold) !important;
}

.section-heading {
    color: var(--white) !important;
}

.section-tag {
    color: var(--gold-light) !important;
}

.section-subtext,
.section-subtext.centered {
    color: rgba(255, 255, 255, 0.65) !important;
}

.form-control,
.form-select {
    background-color: rgba(255, 255, 255, 0.08) !important;
    border-color: rgba(255, 255, 255, 0.12) !important;
    color: var(--white) !important;
}

.form-control::placeholder {
    color: rgba(255, 255, 255, 0.35) !important;
}

.form-control:focus,
.form-select:focus {
    background-color: rgba(255, 255, 255, 0.12) !important;
    border-color: var(--gold) !important;
    color: var(--white) !important;
    box-shadow: 0 0 0 0.2rem rgba(197, 160, 40, 0.15) !important;
}

.form-label {
    color: rgba(255, 255, 255, 0.75) !important;
}

.card-body {
    background: transparent;
}
