/*
Theme Name: Nulux Salon & Spa
Theme URI: https://nuluxspa.com
Author: Nulux Salon & Spa
Author URI: https://nuluxspa.com
Description: An aesthetic, premium WordPress theme designed for beauty salons, spas, and wellness studios. Features elegant typography, smooth animations (Lenis + GSAP ScrollTrigger), and a luxurious color palette.
Version: 2.0.0
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/gpl-2.0.html
Text Domain: vesta-salon
Tags: beauty, salon, spa, wellness, one-column, custom-menu, featured-images, theme-options, translation-ready
*/

:root {
    --color-primary: #000000;
    --color-primary-light: #333333;
    --color-primary-dark: #000000;
    --color-accent: #E8D7CB;
    --color-accent-light: #F0E4DB;
    --color-accent-strong: #B28A64;
    --color-cream: #F2ECE4;
    --color-cream-dark: #E9E1D7;
    --color-dark: #000000;
    --color-dark-light: #1A1A1A;
    --color-text: #1A1A1A;
    --color-text-light: #555555;
    --color-text-muted: #8A8A8A;
    --color-white: #FAF8F5;
    --color-border: #E5DFD8;
    --color-success: #4CAF50;
    --color-overlay: rgba(0, 0, 0, 0.7);

    --font-heading: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
    --font-body: 'Jost', 'Poppins', 'Segoe UI', sans-serif;
    --font-script: 'Great Vibes', 'Playball', cursive;

    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 20px rgba(0,0,0,0.08);
    --shadow-lg: 0 8px 40px rgba(0,0,0,0.12);
    --shadow-xl: 0 12px 60px rgba(0,0,0,0.16);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --container-max: 1600px;
    --container-wide: 1800px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    color: var(--color-text);
    background-color: var(--color-white);
    line-height: 1.7;
    overflow-x: hidden;
}

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

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

a:hover {
    color: var(--color-accent-strong);
}

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

h1 { font-size: clamp(2.5rem, 5vw, 4rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2rem); }
h4 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p {
    margin-bottom: 1rem;
    color: var(--color-text-light);
}

/* Container */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.container-wide {
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 24px;
}

/* Section Spacing */
.section {
    padding: 100px 0;
}

.section-sm {
    padding: 60px 0;
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--color-accent-strong);
    margin-bottom: 16px;
    position: relative;
    padding: 0 20px;
}

.section-label::before,
.section-label::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40px;
    height: 1px;
    background: var(--color-accent-strong);
}

.section-label::before { left: -40px; }
.section-label::after { right: -40px; }

.section-title {
    margin-bottom: 20px;
    color: var(--color-dark);
}

.section-desc {
    font-size: 1.05rem;
    color: var(--color-text-light);
    max-width: 600px;
    margin: 0 auto;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 36px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    line-height: 1;
}

.btn-primary {
    background: var(--color-primary);
    color: var(--color-white);
}

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

.btn-outline {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid var(--color-white);
}

.btn-outline:hover {
    background: var(--color-white);
    color: var(--color-primary);
}

.btn-accent {
    background: var(--color-accent);
    color: var(--color-primary);
}

.btn-accent:hover {
    background: var(--color-accent-light);
    color: var(--color-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-dark {
    background: var(--color-dark);
    color: var(--color-white);
}

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

.btn-sm {
    padding: 10px 24px;
    font-size: 0.8rem;
}

.btn-lg {
    padding: 18px 48px;
    font-size: 0.95rem;
}

/* ============================
   HEADER & NAVIGATION
   ============================ */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
    padding: 20px 0;
}

.site-header.scrolled {
    background: rgba(250, 248, 245, 0.97);
    backdrop-filter: blur(20px);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.site-header.scrolled .nav-link,
.site-header.scrolled .logo-text {
    color: var(--color-dark) !important;
}

.site-header.scrolled .logo-accent {
    color: var(--color-primary);
}

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

.logo {
    display: flex;
    align-items: center;
    gap: 4px;
    z-index: 1001;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--color-white);
    letter-spacing: 3px;
    text-transform: uppercase;
    line-height: 1;
}

.logo-img {
    height: 45px;
    width: auto;
    display: block;
    filter: brightness(0) invert(1);
}

.site-header.scrolled .logo-img {
    filter: none;
}

.logo-accent {
    color: var(--color-accent);
}

.logo-tagline {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    display: block;
    margin-top: 2px;
}

.site-header.scrolled .logo-tagline {
    color: var(--color-text-muted);
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
    list-style: none;
}

.nav-link {
    display: block;
    padding: 8px 16px;
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-white);
    text-decoration: none;
    transition: var(--transition);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 1.5px;
    background: var(--color-accent);
    transition: var(--transition);
    transform: translateX(-50%);
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 60%;
}

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

.nav-cta {
    margin-left: 16px;
}

/* Dropdown Menu */
.nav-item {
    position: relative;
}

.nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%);
    min-width: 220px;
    background: var(--color-white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    padding: 8px 0;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 100;
    margin-top: 12px;
}

.nav-dropdown::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%);
    width: 100%;
    height: 12px;
}

.nav-item:hover > .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
}

.nav-dropdown a {
    display: block;
    padding: 10px 20px;
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: capitalize;
    color: var(--color-text);
    transition: var(--transition);
}

.nav-dropdown a::after {
    display: none;
}

.nav-dropdown a:hover {
    background: var(--color-cream);
    color: var(--color-primary);
    padding-left: 24px;
}

.site-header.scrolled .nav-dropdown {
    background: var(--color-white);
}

/* Mobile dropdown */
.mobile-menu .nav-item {
    width: 100%;
    text-align: center;
}

.mobile-menu .nav-dropdown {
    position: static;
    transform: none;
    opacity: 1;
    visibility: visible;
    display: block;
    max-height: 0;
    overflow: hidden;
    background: transparent;
    box-shadow: none;
    margin-top: 0;
    margin-bottom: 0;
    transition: max-height 0.3s ease, margin 0.3s ease;
}

.mobile-menu .nav-dropdown.active {
    max-height: 500px;
    margin-bottom: 8px;
}

.mobile-menu .nav-dropdown a {
    color: rgba(255,255,255,0.6);
    font-size: 1rem;
    padding: 8px 0;
}

.mobile-menu .nav-dropdown a:hover {
    background: transparent;
    color: var(--color-accent);
    padding-left: 12px;
}

.mobile-menu .menu-toggle-dropdown {
    background: none;
    border: none;
    color: var(--color-white);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-family: var(--font-body);
    font-size: 1.2rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    padding: 12px 0;
    width: 100%;
}

.mobile-menu .menu-toggle-dropdown svg {
    width: 14px;
    height: 14px;
    transition: var(--transition);
}

.mobile-menu .menu-toggle-dropdown.active svg {
    transform: rotate(180deg);
}

.nav-cta .btn {
    padding: 10px 24px;
    font-size: 0.78rem;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 1001;
    padding: 8px;
}

.menu-toggle span {
    display: block;
    width: 28px;
    height: 2px;
    background: var(--color-white);
    transition: var(--transition);
    border-radius: 2px;
}

.site-header.scrolled .menu-toggle span {
    background: var(--color-dark);
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: var(--color-dark);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.mobile-menu.active {
    display: flex;
}

.mobile-menu .nav-link {
    font-size: 1.2rem;
    padding: 12px 0;
    color: var(--color-white);
}

.mobile-menu .btn {
    margin-top: 24px;
}

.mobile-nav-list {
    list-style: none;
    padding: 0;
    margin: 0;
    width: 100%;
    text-align: center;
}

/* ============================
   HERO SECTION
   ============================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--color-dark);
}

.hero-slider {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hero-slide {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1.2s ease;
}

.hero-slide.active {
    opacity: 1;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.78) 0%,
        rgba(0, 0, 0, 0.55) 50%,
        rgba(0, 0, 0, 0.85) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1100px;
    padding: 0 24px;
}

.hero-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--color-accent);
    margin-bottom: 24px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeInUp 0.8s 0.3s forwards;
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.hero-title {
    font-size: clamp(3rem, 7vw, 5.5rem);
    font-weight: 700;
    color: var(--color-white);
    line-height: 1.1;
    margin-bottom: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.5s forwards;
    text-shadow: 0 4px 16px rgba(0, 0, 0, 0.6);
}

.hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.2rem);
    color: rgba(255,255,255,0.92);
    font-weight: 300;
    letter-spacing: 2px;
    margin-bottom: 40px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.7s forwards;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-buttons {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.8s 0.9s forwards;
}

.hero-stats {
    position: relative;
    width: 100%;
    z-index: 10;
    background: var(--color-dark);
    padding: 32px 0;
    opacity: 0;
    animation: fadeInUp 0.8s 1.1s forwards;
    overflow: hidden;
}

.hero-stats::before {
    content: '';
    position: absolute;
    top: 50%;
    left: -60px;
    transform: translateY(-50%);
    width: 240px;
    height: 240px;
    border-radius: 50%;
    border: 1px solid rgba(232, 215, 203, 0.12);
}

.hero-stats::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -30px;
    transform: translateY(-50%);
    width: 120px;
    height: 120px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 215, 203, 0.12) 0%, transparent 70%);
}

.hero-stats-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-accent);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.7);
    margin-top: 8px;
}

.hero-scroll {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--color-white);
    opacity: 0.6;
    animation: bounce 2s infinite;
}

.hero-scroll svg {
    width: 24px;
    height: 24px;
}

/* Slide indicators */
.hero-indicators {
    position: absolute;
    bottom: 140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    gap: 12px;
}

.hero-indicator {
    width: 40px;
    height: 3px;
    background: rgba(255,255,255,0.3);
    border: none;
    cursor: pointer;
    transition: var(--transition);
    border-radius: 2px;
}

.hero-indicator.active {
    background: var(--color-accent);
    width: 60px;
}

/* ============================
   ABOUT SECTION
   ============================ */
.about-section {
    background: var(--color-white);
}

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

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

.about-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: var(--transition-slow);
}

.about-image:hover img {
    transform: scale(1.03);
}

.about-badge {
    position: absolute;
    bottom: -30px;
    right: -30px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 24px;
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about-badge .badge-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1;
    display: block;
}

.about-badge .badge-text {
    font-size: 0.75rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.9;
}

.about-content .section-label {
    text-align: left;
    padding-left: 0;
}

.about-content .section-label::before {
    display: none;
}

.about-content .section-title {
    text-align: left;
    margin-bottom: 24px;
}

.about-content p {
    margin-bottom: 16px;
    line-height: 1.8;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin: 32px 0;
}

.about-feature {
    display: flex;
    align-items: center;
    gap: 12px;
}

.about-feature-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1rem;
}

.about-feature span {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-dark);
}

/* ============================
   SERVICES SECTION
   ============================ */
.services-section {
    background: var(--color-cream);
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
}

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

.service-card-image {
    position: relative;
    height: 280px;
    overflow: hidden;
}

.service-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.service-card-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 50%;
    background: linear-gradient(transparent, rgba(0,0,0,0.5));
}

.service-card-body {
    padding: 28px;
}

.service-card-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.2rem;
    margin-bottom: 16px;
    transition: var(--transition);
}

.service-card:hover .service-card-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.service-card-title {
    font-size: 1.3rem;
    margin-bottom: 12px;
}

.service-card-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-primary);
}

.service-card-link svg {
    width: 16px;
    height: 16px;
    transition: var(--transition);
}

.service-card:hover .service-card-link svg {
    transform: translateX(4px);
}

/* ============================
   PROMOTIONAL BANNER
   ============================ */
.promo-banner {
    position: relative;
    padding: 80px 0;
    background: var(--color-dark);
    overflow: hidden;
}

.promo-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232,215,203,0.6) 0%, transparent 70%);
}

.promo-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

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

.promo-content .section-label {
    text-align: left;
    padding-left: 0;
}

.promo-content .section-label::before {
    display: none;
}

.promo-content .section-label {
    color: var(--color-accent);
}

.promo-content h2 {
    color: var(--color-white);
    margin-bottom: 20px;
}

.promo-content p {
    color: rgba(255,255,255,0.7);
    margin-bottom: 32px;
}

.promo-image {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.promo-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* ============================
   MEMBERSHIP SECTION
   ============================ */
.membership-section {
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

.membership-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: -10%;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,169,110,0.08) 0%, transparent 70%);
}

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

.membership-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    text-align: center;
    border: 1px solid var(--color-border);
    transition: var(--transition);
    position: relative;
}

.membership-card.featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
    box-shadow: var(--shadow-lg);
}

.membership-card.featured::before {
    content: 'Most Popular';
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--color-primary);
    color: var(--color-white);
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.membership-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-primary);
}

.membership-card.featured:hover {
    transform: scale(1.05) translateY(-4px);
}

.membership-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 24px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
    font-size: 1.5rem;
}

.membership-card.featured .membership-icon {
    background: var(--color-primary);
    color: var(--color-white);
}

.membership-name {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.membership-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary);
    margin-bottom: 8px;
}

.membership-price span {
    font-size: 1rem;
    font-weight: 400;
    color: var(--color-text-muted);
}

.membership-period {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    margin-bottom: 28px;
}

.membership-features {
    list-style: none;
    text-align: left;
    margin-bottom: 32px;
}

.membership-features li {
    padding: 10px 0;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.9rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 10px;
}

.membership-features li svg {
    width: 16px;
    height: 16px;
    color: var(--color-success);
    flex-shrink: 0;
}

.membership-card .btn {
    width: 100%;
}

/* ============================
   GALLERY SECTION
   ============================ */
.gallery-section {
    background: var(--color-dark);
    padding: 100px 0;
    position: relative;
    overflow: hidden;
}

.gallery-section::before {
    content: '';
    position: absolute;
    top: -120px;
    left: -120px;
    width: 380px;
    height: 380px;
    border-radius: 50%;
    border: 1px solid rgba(232, 215, 203, 0.10);
}

.gallery-section::after {
    content: '';
    position: absolute;
    bottom: -80px;
    right: -80px;
    width: 260px;
    height: 260px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 215, 203, 0.08) 0%, transparent 70%);
}

.gallery-section > .container {
    position: relative;
    z-index: 1;
}

.gallery-section .section-label {
    color: var(--color-accent);
}

.gallery-section .section-title {
    color: var(--color-white);
}

.gallery-section .section-desc {
    color: rgba(255,255,255,0.6);
}

.gallery-filters {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.gallery-filter {
    padding: 8px 24px;
    border: 1px solid rgba(255,255,255,0.2);
    background: transparent;
    color: rgba(255,255,255,0.6);
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 30px;
    cursor: pointer;
    transition: var(--transition);
}

.gallery-filter:hover,
.gallery-filter.active {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

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

.home-gallery-grid {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    height: 500px;
}

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

.home-gallery-grid .gallery-item {
    aspect-ratio: auto;
}

    .home-gallery-grid .gallery-item:nth-child(1) {
        grid-column: 1;
        grid-row: span 2;
        aspect-ratio: auto;
    }

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

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

.gallery-item video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.gallery-video {
    cursor: pointer;
}

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(transparent 40%, rgba(0,0,0,0.8));
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-label {
    color: var(--color-white);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 1px;
}

/* ============================
   TESTIMONIALS
   ============================ */
.testimonials-section {
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.testimonials-section .trustindex-widget,
.testimonials-section .ti-widget {
    max-width: 100% !important;
    margin: 0 auto;
}

.testimonials-section::before {
    content: '\201C';
    position: absolute;
    top: 60px;
    left: 10%;
    font-family: var(--font-heading);
    font-size: 20rem;
    color: var(--color-primary);
    opacity: 0.04;
    line-height: 1;
}

.testimonial-slider {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    min-height: 280px;
}

.testimonial-item {
    display: none;
    animation: fadeIn 0.5s ease;
}

.testimonial-item.active {
    display: block;
}

.testimonial-text {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--color-dark);
    line-height: 1.8;
    margin-bottom: 32px;
    position: relative;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

.testimonial-avatar {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--color-accent);
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info h4 {
    font-size: 1rem;
    margin-bottom: 2px;
}

.testimonial-info span {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

.testimonial-stars {
    color: var(--color-accent-strong);
    font-size: 1rem;
    margin-bottom: 24px;
    letter-spacing: 4px;
}

.testimonial-nav {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-top: 40px;
}

.testimonial-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    border: 2px solid var(--color-primary);
    background: transparent;
    cursor: pointer;
    transition: var(--transition);
    padding: 0;
}

.testimonial-dot.active {
    background: var(--color-primary);
    width: 30px;
    border-radius: 5px;
}

/* ============================
   INSTAGRAM SECTION
   ============================ */
.instagram-section {
    padding: 60px 0;
    background: var(--color-white);
}

.instagram-header {
    text-align: center;
    margin-bottom: 40px;
}

.instagram-header h3 {
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text-light);
}

.instagram-header h3 a {
    color: var(--color-primary);
    font-weight: 600;
}

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

.instagram-item {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    cursor: pointer;
}

.instagram-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.instagram-item:hover img {
    transform: scale(1.1);
}

.instagram-item::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.6);
    opacity: 0;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}

.instagram-item:hover::after {
    opacity: 1;
}

/* ============================
   CTA SECTION
   ============================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: var(--color-primary);
    text-align: center;
    overflow: hidden;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-section h2 {
    color: var(--color-white);
    margin-bottom: 16px;
    font-size: clamp(2rem, 4vw, 3rem);
}

.cta-section p {
    color: rgba(255,255,255,0.8);
    margin-bottom: 36px;
    font-size: 1.05rem;
}

.cta-section .btn {
    font-size: 0.85rem;
}

/* ============================
   FOOTER
   ============================ */
.site-footer {
    background: var(--color-dark);
    color: rgba(255,255,255,0.7);
    padding-top: 80px;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: -160px;
    right: -160px;
    width: 460px;
    height: 460px;
    border-radius: 50%;
    border: 1px solid rgba(232, 215, 203, 0.08);
}

.site-footer::after {
    content: '';
    position: absolute;
    bottom: -120px;
    left: -120px;
    width: 320px;
    height: 320px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(232, 215, 203, 0.06) 0%, transparent 70%);
}

.site-footer .container {
    position: relative;
    z-index: 1;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo-img {
    height: 45px;
    width: auto;
    display: block;
    margin-bottom: 16px;
    filter: brightness(0) invert(1);
}

.footer-brand p {
    color: rgba(255,255,255,0.5);
    font-size: 0.9rem;
    line-height: 1.8;
    margin-bottom: 24px;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: var(--color-white);
}

.footer-social a svg {
    width: 16px;
    height: 16px;
}

.footer-col h4 {
    color: var(--color-white);
    font-size: 1rem;
    font-family: var(--font-body);
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links {
    list-style: none;
}

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

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

.footer-links a::before {
    content: '';
    width: 0;
    height: 1px;
    background: var(--color-accent);
    transition: var(--transition);
}

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

.footer-links a:hover::before {
    width: 16px;
}

.footer-contact-item {
    display: flex;
    gap: 12px;
    margin-bottom: 16px;
}

.footer-contact-icon {
    width: 36px;
    height: 36px;
    min-width: 36px;
    border-radius: 50%;
    background: rgba(255,255,255,0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.footer-contact-icon svg {
    width: 16px;
    height: 16px;
}

.footer-contact-text {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.5);
    line-height: 1.6;
}

.footer-contact-text a {
    color: rgba(255,255,255,0.5);
}

.footer-contact-text a:hover {
    color: var(--color-accent);
}

.footer-bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 24px 0;
    margin-top: 40px;
}

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

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

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

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

/* ============================
   WHATSAPP FLOAT
   ============================ */
.book-float {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 60px;
    height: 60px;
    background: var(--color-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
    z-index: 900;
    transition: var(--transition);
    animation: pulse 2s infinite;
}

.book-float:hover {
    transform: scale(1.1);
    color: var(--color-white);
}

.book-float svg {
    width: 28px;
    height: 28px;
}

/* ============================
   BOOK APPOINTMENT BUTTON (FIXED)
   ============================ */
.book-fab {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 900;
    display: flex;
    align-items: center;
    gap: 8px;
    background: var(--color-primary);
    color: var(--color-white);
    padding: 14px 28px;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
    transition: var(--transition);
}

.book-fab:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.2);
    color: var(--color-white);
}

/* ============================
   INSTAGRAM SECTION
   ============================ */
.instagram-section {
    background: var(--color-white);
}
.insta-grid {
    columns: 3;
    column-gap: 12px;
}
.insta-item {
    position: relative;
    display: block;
    overflow: hidden;
    border-radius: var(--radius-sm);
    margin-bottom: 12px;
    break-inside: avoid;
    background: var(--color-cream);
}
.insta-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}
.insta-item:hover img {
    transform: scale(1.08);
}
.insta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(0, 0, 0, 0.55);
    color: var(--color-white);
    opacity: 0;
    transition: opacity 0.3s ease;
}
.insta-item:hover .insta-overlay {
    opacity: 1;
}
.insta-overlay svg {
    width: 32px;
    height: 32px;
}
.insta-overlay-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.insta-cta {
    text-align: center;
    margin-top: 40px;
}
@media (max-width: 991px) {
    .insta-grid {
        columns: 2;
    }
}
@media (max-width: 575px) {
    .insta-grid {
        columns: 2;
        column-gap: 8px;
    }
    .insta-item {
        margin-bottom: 8px;
    }
}

.book-fab svg {
    width: 18px;
    height: 18px;
}

/* ============================
   PAGE TEMPLATES
   ============================ */
.page-hero {
    padding: 180px 0 80px;
    background: var(--color-dark);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(232,215,203,0.12) 0%, transparent 50%);
}

.page-hero::after {
    content: '';
    position: absolute;
    top: 50%;
    left: -80px;
    transform: translateY(-50%);
    width: 300px;
    height: 300px;
    border-radius: 50%;
    border: 1px solid rgba(232, 215, 203, 0.10);
}

.page-hero > .container {
    position: relative;
    z-index: 1;
}

.page-hero h1 {
    color: var(--color-white);
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 16px;
    position: relative;
    z-index: 1;
}

.page-hero .breadcrumb a {
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

.page-hero .breadcrumb span {
    color: var(--color-accent);
    font-size: 0.85rem;
}

/* Services Page */
.services-page-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.service-detail-card {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 0;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.service-detail-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.service-detail-image {
    height: 100%;
    min-height: 300px;
}

.service-detail-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.service-detail-content {
    padding: 36px;
}

.service-detail-content h3 {
    margin-bottom: 12px;
}

.service-detail-content p {
    font-size: 0.9rem;
    margin-bottom: 20px;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--color-primary);
    font-weight: 600;
    margin-bottom: 20px;
}

.service-items {
    list-style: none;
    margin-bottom: 24px;
}

.service-items li {
    padding: 6px 0;
    font-size: 0.88rem;
    color: var(--color-text-light);
    display: flex;
    align-items: center;
    gap: 8px;
}

.service-items li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-accent);
    flex-shrink: 0;
}

/* About Page */
.about-page-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
}

.about-page-grid > .reveal-left {
    position: sticky;
    top: 100px;
    align-self: start;
}

.about-story-timeline {
    position: relative;
    padding-left: 40px;
    margin-top: 40px;
}

.about-story-timeline::before {
    content: '';
    position: absolute;
    left: 12px;
    top: 0;
    height: 100%;
    width: 2px;
    background: var(--color-border);
}

.timeline-item {
    position: relative;
    margin-bottom: 32px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -33px;
    top: 6px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--color-primary);
    border: 3px solid var(--color-cream);
}

.timeline-year {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--color-primary);
    margin-bottom: 4px;
}

.timeline-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

/* Contact Page */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-form-wrapper {
    background: var(--color-white);
    padding: 48px;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
}

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-primary);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.08);
}

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

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

.contact-info-cards {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 28px;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

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

.contact-info-card-icon {
    width: 56px;
    height: 56px;
    min-width: 56px;
    border-radius: 50%;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-primary);
}

.contact-info-card-icon svg {
    width: 24px;
    height: 24px;
}

.contact-info-card h4 {
    font-size: 1rem;
    margin-bottom: 6px;
}

.contact-info-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin: 0;
}

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

/* Map */
.contact-map {
    margin-top: 40px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

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

/* ============================
   FORM STYLES
   ============================ */
.form-error {
    display: block;
    color: #e74c3c;
    font-size: 0.78rem;
    margin-top: 4px;
    min-height: 18px;
}

.input-error {
    border-color: #e74c3c !important;
    box-shadow: 0 0 0 2px rgba(231, 76, 60, 0.15) !important;
}

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

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

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

@keyframes pulse {
    0% { box-shadow: 0 4px 20px rgba(232, 215, 203, 0.4); }
    50% { box-shadow: 0 4px 30px rgba(232, 215, 203, 0.65); }
    100% { box-shadow: 0 4px 20px rgba(232, 215, 203, 0.4); }
}

/* Scroll Animations */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

/* ============================
   RESPONSIVE
   ============================ */
@media (max-width: 1024px) {
    .about-grid,
    .about-page-grid,
    .promo-inner,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about-page-grid > .reveal-left {
        position: static;
    }

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

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

    .membership-card.featured {
        transform: none;
    }

    .membership-card.featured:hover {
        transform: translateY(-4px);
    }

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

    .home-gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
        height: auto;
    }

    .home-gallery-grid .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

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

    .hero-stats-inner {
        gap: 40px;
    }

    .services-page-grid {
        grid-template-columns: 1fr;
    }

    .service-detail-card {
        grid-template-columns: 1fr;
    }

    .service-detail-image {
        min-height: 250px;
    }

    .cta-section {
        padding: 80px 0;
    }
}

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

    .section-header {
        margin-bottom: 40px;
    }

    .container {
        padding: 0 16px;
    }

    .nav-menu {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .nav-cta {
        display: none;
    }

    .hero {
        min-height: 80vh;
    }

    .hero-content {
        padding: 0 16px;
    }

    .hero-title {
        font-size: clamp(2rem, 8vw, 3rem);
        margin-bottom: 16px;
    }

    .hero-subtitle {
        font-size: 0.9rem;
        margin-bottom: 28px;
    }

    .hero-label {
        font-size: 0.65rem;
        letter-spacing: 3px;
    }

    .hero-stats {
        margin-top: 0;
    }

    .hero-stats-inner {
        flex-wrap: wrap;
        gap: 16px;
    }

    .stat-item {
        width: calc(50% - 8px);
        padding: 0;
    }

    .hero-indicators {
        bottom: 20px;
    }

    .hero-scroll {
        display: none;
    }

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

    .membership-grid {
        grid-template-columns: 1fr;
        max-width: 400px;
        margin: 0 auto;
    }

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

    .gallery-item:nth-child(1) {
        grid-column: span 2;
        grid-row: span 1;
        aspect-ratio: 16 / 9;
    }

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

    .footer-main {
        grid-template-columns: 1fr;
        gap: 36px;
    }

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

    .hero-buttons {
        flex-direction: column;
    }

    .hero-buttons .btn {
        width: 100%;
    }

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

    .about-badge {
        bottom: -20px;
        right: 10px;
    }

    .about-page-grid {
        gap: 40px;
    }

    .about-page-grid > .reveal-left {
        position: static;
    }

    .cta-section {
        padding: 60px 0;
    }

    .cta-section h2 {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }

    .contact-form-wrapper {
        padding: 24px;
    }

    .page-hero {
        padding: 100px 0 50px;
    }

    .page-hero h1 {
        font-size: clamp(1.8rem, 6vw, 2.5rem);
    }

    .btn-lg {
        padding: 14px 32px;
        font-size: 0.85rem;
    }

    .service-table thead th,
    .service-table tbody td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .membership-benefits-table thead th,
    .membership-benefits-table tbody td {
        padding: 12px 16px;
        font-size: 0.85rem;
    }

    .membership-benefits-table {
        font-size: 0.85rem;
    }

    .video-modal-player,
    #video-modal-player {
        max-width: 95vw;
    }

    .services-overview-card {
        padding: 24px 20px;
    }

    .contact-info-card {
        padding: 28px 20px;
    }

    .about-story-timeline {
        padding-left: 32px;
    }

    .about-page-grid .about-image,
    .about-page-grid .about-image img {
        height: 40vh !important;
    }

    .service-cta {
        padding: 32px 20px;
    }

    .membership-terms {
        padding: 28px 20px;
    }
}

@media (max-width: 480px) {
    .section {
        padding: 48px 0;
    }

    .hero {
        min-height: 70vh;
    }

    .hero-title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }

    .hero-subtitle {
        font-size: 0.82rem;
        letter-spacing: 1px;
    }

    .hero-buttons {
        gap: 12px;
    }

    .hero-stats-inner {
        gap: 12px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-label {
        font-size: 0.75rem;
    }

    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        gap: 8px;
    }

    .gallery-item:nth-child(1) {
        grid-column: span 2;
    }

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

    .btn {
        padding: 12px 24px;
        font-size: 0.8rem;
    }

    .btn-lg {
        padding: 12px 28px;
        font-size: 0.8rem;
    }

    .section-label {
        font-size: 0.7rem;
        letter-spacing: 3px;
    }

    .section-label::before,
    .section-label::after {
        width: 24px;
    }

    .section-label::before { left: -30px; }
    .section-label::after { right: -30px; }

    .membership-grid {
        max-width: 100%;
    }

    .cta-section h2 {
        font-size: 1.5rem;
    }

    .cta-section p {
        font-size: 0.9rem;
    }

    .page-hero {
        padding: 90px 0 40px;
    }

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

    .contact-form-wrapper {
        padding: 20px 16px;
    }

    .service-table thead th,
    .service-table tbody td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .membership-benefits-table thead th,
    .membership-benefits-table tbody td {
        padding: 10px 12px;
        font-size: 0.8rem;
    }

    .about-story-timeline {
        padding-left: 24px;
    }

    .service-cta {
        padding: 24px 16px;
    }

    .membership-terms {
        padding: 20px 16px;
    }

    .footer-main {
        gap: 28px;
    }

    .logo-text {
        font-size: 1.5rem;
    }
}

/* WordPress default overrides */
.wp-caption {
    max-width: 100%;
}

.wp-caption-text {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    text-align: center;
    padding: 8px 0;
}

.alignleft {
    float: left;
    margin-right: 24px;
    margin-bottom: 16px;
}

.alignright {
    float: right;
    margin-left: 24px;
    margin-bottom: 16px;
}

.aligncenter {
    display: block;
    margin: 0 auto 24px;
}

.gallery {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
    gap: 16px;
    margin: 24px 0;
}

.gallery-item {
    border-radius: var(--radius-md);
    overflow: hidden;
}

/* ============================
   SERVICE PAGES
   ============================ */
.table-scroll {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 16px;
}
.service-section { margin-bottom: 60px; }
.service-section:last-child { margin-bottom: 0; }
.service-category { margin-bottom: 48px; }
.service-category:last-child { margin-bottom: 0; }
.service-category h3 {
    font-size: 1.4rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--color-accent);
    display: inline-block;
}
.service-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    margin-bottom: 16px;
}
.service-table thead th {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 18px 28px;
    text-align: left;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.service-table thead th:last-child {
    text-align: right;
}
.service-table tbody td {
    padding: 16px 28px;
    border-bottom: 1px solid var(--color-border);
    font-size: 0.95rem;
    color: var(--color-text);
}
.service-table tbody td:last-child {
    text-align: right;
    font-weight: 600;
    color: var(--color-primary);
    white-space: nowrap;
}
.service-table tbody tr:last-child td {
    border-bottom: none;
}
.service-table tbody tr:hover {
    background: var(--color-cream);
}
.service-note {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    font-style: italic;
    margin-top: 8px;
    padding: 0 4px;
}
.service-note::before {
    content: '* ';
    color: var(--color-accent-strong);
}
.service-cta {
    text-align: center;
    margin-top: 60px;
    padding: 48px;
    background: var(--color-cream);
    border-radius: var(--radius-lg);
}
.service-cta h3 { margin-bottom: 12px; }
.service-cta p {
    color: var(--color-text-light);
    margin-bottom: 24px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Membership Benefits Table */
.membership-benefits-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}
.membership-benefits-table thead th {
    background: var(--color-dark);
    color: var(--color-white);
    padding: 18px 28px;
    text-align: center;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.membership-benefits-table thead th:first-child {
    text-align: left;
    background: var(--color-dark-light);
}
.membership-benefits-table thead th.featured {
    background: var(--color-primary);
}
.membership-benefits-table tbody td {
    padding: 16px 28px;
    border-bottom: 1px solid var(--color-border);
    text-align: center;
    font-size: 0.95rem;
    color: var(--color-text);
}
.membership-benefits-table tbody td:first-child {
    text-align: left;
    font-weight: 500;
    color: var(--color-dark);
}
.membership-benefits-table tbody td.featured {
    background: rgba(0, 0, 0, 0.04);
}
.membership-benefits-table tbody tr:last-child td {
    border-bottom: none;
}
.membership-benefits-table tbody tr:hover {
    background: var(--color-cream);
}

/* ============================
   TRAVLIA-STYLE ANIMATION HELPERS
   ============================ */
.split-line { display: block; overflow: hidden; }
.split-char {
    display: inline-block;
    will-change: transform;
    white-space: pre;
}
.tv_hero_title, .tv-sec-title, .tv-sub-tilte, .split-in-up, .bottom-text {
    word-break: keep-all;
    overflow-wrap: normal;
    -webkit-hyphens: manual;
    hyphens: manual;
}

.ptx-image-appear1 { overflow: hidden; }
.ptx-image-appear1 img { display: block; width: 100%; height: 100%; object-fit: cover; }

.img-parallax,
.tv-img-zm { overflow: hidden; }
.img-parallax img,
.tv-img-zm img { display: block; width: 100%; height: 100%; object-fit: cover; }

.tv-counter { font-variant-numeric: tabular-nums; }

@media (prefers-reduced-motion: reduce) {
    .tv_hero_title, .tv-sec-title, .tv-sub-tilte, .split-in-up,
    .tv-text p, .ptx-image-appear1, .img-parallax, .tv-img-zm,
    .top_view, .left_view, .right_view, .bottom-text, .tv-counter {
        transform: none !important;
        opacity: 1 !important;
    }
}

/* ============================
   NULUX HERO + MARQUEE
   ============================ */
.hero-title.tv_hero_title,
.hero-subtitle.tv-sub-tilte,
.hero-label.tv-sub-tilte {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

.hero-marquee {
    overflow: hidden;
    white-space: nowrap;
    background: var(--color-accent);
    color: var(--color-dark);
    padding: 14px 0;
    position: relative;
    z-index: 2;
}
.hero-marquee-track {
    display: inline-block;
    white-space: nowrap;
    animation: marqueeScroll 28s linear infinite;
}
.hero-marquee-track span {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    padding-right: 48px;
}
@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.price-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 24px;
}
.price-table th,
.price-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--color-border);
    text-align: left;
    font-size: 0.95rem;
}
.price-table th {
    background: var(--color-primary);
    color: var(--color-white);
    font-family: var(--font-heading);
    font-weight: 600;
    letter-spacing: 0.5px;
}
.price-table td:last-child {
    text-align: right;
    color: var(--color-accent-strong);
    font-weight: 600;
    white-space: nowrap;
}
.price-table tr:hover td {
    background: var(--color-cream);
}
.price-note {
    font-size: 0.8rem;
    font-style: italic;
    color: var(--color-text-muted);
    margin: -8px 0 32px;
}

/* ============================
   PRICE TABS
   ============================ */
.price-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 44px;
}
.price-tab {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 13px 26px;
    border: 1.5px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-text);
    font-family: var(--font-body);
    font-size: 0.84rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition);
}
.price-tab svg {
    width: 18px;
    height: 18px;
}
.price-tab:hover {
    border-color: var(--color-accent-strong);
    color: var(--color-accent-strong);
    transform: translateY(-2px);
}
.price-tab.active {
    background: var(--color-primary);
    border-color: var(--color-primary);
    color: var(--color-white);
    box-shadow: var(--shadow-md);
}
.price-panels {
    max-width: 900px;
    margin: 0 auto;
}
.price-panel {
    display: none;
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 44px 52px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}
.price-panel.active {
    display: block;
    animation: fadeInUp 0.45s ease;
}
.price-panel-head {
    text-align: center;
    margin-bottom: 28px;
}
.price-panel-head h3 {
    font-size: 1.9rem;
    margin-bottom: 6px;
}
.price-panel-head p {
    font-size: 0.9rem;
    color: var(--color-text-muted);
}
.price-list {
    display: grid;
    gap: 0;
}
.price-row {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border);
}
.price-row:last-child {
    border-bottom: none;
}
.price-name {
    font-size: 0.98rem;
    color: var(--color-text);
    flex-shrink: 1;
}
.price-dots {
    flex: 1;
    border-bottom: 2px dotted var(--color-border);
    transform: translateY(-4px);
    min-width: 24px;
}
.price-amount {
    font-size: 1.02rem;
    font-weight: 600;
    color: var(--color-accent-strong);
    white-space: nowrap;
}
@media (max-width: 575px) {
    .price-tabs {
        gap: 8px;
        margin-bottom: 32px;
    }
    .price-tab {
        padding: 10px 18px;
        font-size: 0.76rem;
    }
    .price-panel {
        padding: 28px 22px;
    }
    .price-name {
        font-size: 0.9rem;
    }
}

/* ============================
   SERVICES TWO-COLUMN LAYOUT
   ============================ */
.services-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 400px;
    gap: 56px;
    align-items: start;
}
.price-panels {
    max-width: none;
    margin: 0;
}
.services-sidebar {
    position: sticky;
    top: 100px;
}
.booking-card {
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 36px 34px;
    box-shadow: var(--shadow-sm);
}
.booking-card .section-label {
    padding: 0;
    margin-bottom: 8px;
}
.booking-card .section-label::before,
.booking-card .section-label::after {
    display: none;
}
.booking-card-title {
    font-size: 1.6rem;
    margin: 10px 0 20px;
    color: var(--color-text);
}
.booking-list {
    list-style: none;
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
    font-size: 0.92rem;
    line-height: 1.65;
    color: var(--color-text);
}
.booking-list li {
    position: relative;
    padding-left: 26px;
}
.booking-list li::before {
    content: "\2713";
    position: absolute;
    left: 0;
    top: 0;
    color: var(--color-accent-strong);
    font-weight: 700;
}
.booking-card-actions {
    display: grid;
    gap: 12px;
}
.btn-block {
    width: 100%;
    text-align: center;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.btn-outline-dark {
    background: transparent;
    color: var(--color-primary);
    border: 1.5px solid var(--color-primary);
}
.btn-outline-dark:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
@media (max-width: 1100px) {
    .services-layout {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    .services-sidebar {
        position: static;
        max-width: 560px;
        margin: 0 auto;
        width: 100%;
    }
}

/* ============================
   GIFT CERTIFICATE REDEEM CARD
   ============================ */
.redeem-card {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 48px;
    align-items: center;
    background: var(--color-cream);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 48px;
    box-shadow: var(--shadow-sm);
}
.redeem-steps h3 {
    margin-bottom: 16px;
    color: var(--color-dark);
    font-size: 1.7rem;
}
.redeem-steps ol {
    padding-left: 20px;
    display: grid;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.7;
}
.redeem-note {
    margin-top: 16px;
    font-size: 0.85rem;
    font-style: italic;
    color: var(--color-text-muted);
}
.redeem-btn {
    margin-top: 28px;
}
.redeem-art {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 320px;
}
.redeem-art-circle {
    position: relative;
    z-index: 1;
    width: 280px;
    height: 280px;
    border-radius: 50%;
    background: var(--color-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-md);
}
.redeem-art-circle::after {
    content: '';
    position: absolute;
    inset: 12px;
    border: 1px dashed var(--color-accent);
    border-radius: 50%;
    opacity: 0.5;
}
.redeem-art-script {
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-script);
    font-size: 2.1rem;
    color: var(--color-accent-strong);
    white-space: nowrap;
    z-index: 2;
}
.redeem-art-dot {
    position: absolute;
    border-radius: 50%;
    background: var(--color-accent-strong);
    opacity: 0.55;
}
.redeem-art-dot-1 { width: 14px; height: 14px; top: 18px; left: 12%; }
.redeem-art-dot-2 { width: 9px; height: 9px; bottom: 22%; right: 8%; }
.redeem-art-dot-3 { width: 6px; height: 6px; top: 30%; right: 16%; background: var(--color-accent); }
@media (max-width: 900px) {
    .redeem-card {
        grid-template-columns: 1fr;
        padding: 32px 26px;
        gap: 32px;
    }
    .redeem-art {
        order: -1;
        min-height: 240px;
    }
    .redeem-art-circle {
        width: 200px;
        height: 200px;
    }
    .redeem-art-circle svg {
        width: 90px;
        height: 90px;
    }
    .redeem-art-script {
        font-size: 1.7rem;
    }
}

/* ============================
   TEAM GRID
   ============================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 26px;
}
.team-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--color-border);
    transition: var(--transition);
    overflow: hidden;
    cursor: pointer;
}
.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-accent);
}
.team-card:focus-visible {
    outline: 2px solid var(--color-accent-strong);
    outline-offset: 2px;
}
.team-card-body {
    display: flex;
    align-items: center;
    gap: 22px;
    padding: 24px;
    text-align: left;
}
.team-card-photo-wrap {
    flex-shrink: 0;
}
.team-card-info {
    flex: 1;
    min-width: 0;
}
.team-card-name {
    font-size: 1.3rem;
    margin-bottom: 5px;
}
.team-photo {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0;
    border: 3px solid var(--color-accent);
    box-shadow: var(--shadow-sm);
    display: block;
}
.team-role {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--color-accent-strong);
    letter-spacing: 0.4px;
    line-height: 1.5;
    margin-bottom: 10px;
}
.team-bio {
    font-size: 0.82rem;
    line-height: 1.6;
    color: var(--color-text-light);
    margin-bottom: 14px;
}
.team-card .team-bio {
    margin-bottom: 8px;
}
.team-view-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--color-accent-strong);
    opacity: 0;
    transform: translateY(4px);
    transition: var(--transition);
}
.team-card:hover .team-view-hint,
.team-card:focus-visible .team-view-hint {
    opacity: 1;
    transform: none;
}
.team-ig {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--color-primary);
    text-decoration: none;
}
.team-ig:hover {
    color: var(--color-accent-strong);
}

/* ============================
   TEAM MODAL
   ============================ */
.team-modal {
    position: fixed;
    inset: 0;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}
.team-modal.open {
    opacity: 1;
    visibility: visible;
}
.team-modal-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.65);
    backdrop-filter: blur(4px);
}
.team-modal-dialog {
    position: relative;
    width: 100%;
    max-width: 520px;
    max-height: 88vh;
    overflow: auto;
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: 40px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    transform: translateY(24px) scale(0.96);
    transition: transform 0.35s cubic-bezier(0.2, 0.7, 0.3, 1);
}
.team-modal.open .team-modal-dialog {
    transform: none;
}
.team-modal-close {
    position: absolute;
    top: 14px;
    right: 14px;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    background: var(--color-white);
    color: var(--color-primary);
    font-size: 1.3rem;
    line-height: 1;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
}
.team-modal-close:hover {
    background: var(--color-primary);
    color: var(--color-white);
}
.team-modal-photo {
    width: 140px;
    height: 140px;
    border-radius: 50%;
    object-fit: cover;
    margin: 0 auto 20px;
    border: 3px solid var(--color-accent);
    display: block;
}
.team-modal-name {
    font-size: 1.8rem;
    margin-bottom: 6px;
}
.team-modal-role {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-accent-strong);
    letter-spacing: 0.4px;
    line-height: 1.5;
    margin-bottom: 18px;
}
.team-modal-bio {
    font-size: 0.94rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: 20px;
}
.team-modal-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: center;
}
body.modal-open {
    overflow: hidden;
}
@media (max-width: 480px) {
    .team-modal-dialog {
        padding: 30px 22px;
    }
    .team-modal-photo {
        width: 120px;
        height: 120px;
    }
}
@media (max-width: 900px) {
    .team-grid {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 480px) {
    .team-card-body {
        flex-direction: column;
        text-align: center;
        gap: 16px;
    }
    .team-card-photo-wrap {
        margin: 0 auto;
    }
    .team-photo {
        width: 120px;
        height: 120px;
    }
}

.page-hero h1.tv_hero_title {
    animation: none !important;
    opacity: 1 !important;
    transform: none !important;
}

/* Mobile: clip horizontal overflow from reveal animations / decorative shapes */
@media (max-width: 991px) {
    html,
    body {
        overflow-x: hidden;
    }
    html {
        overflow-x: clip;
    }
    body {
        width: 100%;
    }
}
