/* =============================================
   LUXE SKIN AESTHETICS - Luxury Design System
   ============================================= */

/* --- CSS Custom Properties --- */
:root {
    /* Colors */
    --gold: #c8a97e;
    --gold-light: #d4ba94;
    --gold-dark: #a88a5e;
    --gold-shimmer: linear-gradient(135deg, #c8a97e 0%, #e8d5b5 25%, #c8a97e 50%, #a88a5e 75%, #c8a97e 100%);
    --black: #0a0a0a;
    --black-light: #1a1a1a;
    --black-soft: #2a2a2a;
    --charcoal: #333333;
    --white: #fef6f1;
    --cream: #f8f4ef;
    --cream-dark: #ede6db;
    --gray-light: #f5f5f5;
    --gray: #999999;
    --gray-dark: #666666;
    --rose: #e8c4c4;
    --rose-dark: #c9a0a0;

    /* Typography */
    --font-heading: 'Cinzel', 'Georgia', serif;
    --font-body: 'Montserrat', 'Helvetica Neue', sans-serif;
    --font-accent: 'Montserrat', 'Helvetica Neue', sans-serif;

    /* Spacing */
    --section-padding: 60px;
    --container-width: 1200px;
    --container-narrow: 900px;

    /* Transitions */
    --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: all 0.8s cubic-bezier(0.4, 0, 0.2, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.06);
    --shadow-md: 0 8px 30px rgba(0,0,0,0.08);
    --shadow-lg: 0 20px 60px rgba(0,0,0,0.12);
    --shadow-gold: 0 8px 30px rgba(200,169,126,0.15);
}

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    overflow-x: hidden;
    width: 100%;
    background: #2a2520;
}

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: #2a2520;
    background: #f5f1e8;
    line-height: 1.8;
    letter-spacing: 0.3px;
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
    position: relative;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: var(--container-width);
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

.container-narrow {
    max-width: var(--container-narrow);
    width: 100%;
    margin: 0 auto;
    padding: 0 30px;
}

/* Prevent horizontal scroll */
section {
    max-width: 100%;
    overflow-x: hidden;
}

.site-main {
    max-width: 100%;
    overflow-x: hidden;
}

/* --- Preloader --- */
.preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #2a2520;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 99999;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.preloader.hidden {
    opacity: 0;
    visibility: hidden;
}

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

.preloader-logo {
    font-family: var(--font-heading);
    font-size: 3rem;
    letter-spacing: 12px;
    color: var(--gold);
    margin-bottom: 30px;
    animation: preloaderPulse 2s ease-in-out infinite;
}

.preloader-logo img {
    height: 80px;
    width: auto;
    display: inline-block;
}

.preloader-bar {
    width: 200px;
    height: 1px;
    background: rgba(200,169,126,0.2);
    margin: 0 auto;
    overflow: hidden;
}

.preloader-bar span {
    display: block;
    width: 100%;
    height: 100%;
    background: var(--gold);
    animation: preloaderSlide 1.5s ease-in-out infinite;
}

@keyframes preloaderPulse {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes preloaderSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

/* --- Header --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    transition: var(--transition);
}

.header-top {
    background: #2a2520;
    padding: 8px 0;
    font-size: 0.85rem;
    font-weight: 400;
}

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

.header-contact-info {
    display: flex;
    gap: 25px;
}

.header-contact-info a {
    color: #e0e0e0;
    font-size: 0.8rem;
    letter-spacing: 1px;
    text-transform: uppercase;
}

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

.header-contact-info i {
    margin-right: 6px;
    color: var(--gold);
    font-size: 0.7rem;
}

.header-social {
    display: flex;
    gap: 15px;
}

.header-social a {
    color: #e0e0e0;
    font-size: 0.9rem;
}

.header-social a:hover {
    color: var(--gold);
    transform: translateY(-2px);
}

.main-nav {
    background: rgba(42, 37, 32, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 20px 0;
    transition: var(--transition);
}

.site-header.scrolled .main-nav {
    padding: 12px 0;
    background: rgba(42, 37, 32, 0.98);
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

.site-header.scrolled .header-top {
    transform: translateY(-100%);
    height: 0;
    padding: 0;
    overflow: hidden;
}

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

/* Logo */
.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
}

.logo-text {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    letter-spacing: 8px;
    color: var(--gold);
    line-height: 1;
}

.logo-sub {
    font-family: var(--font-body);
    font-size: 0.55rem;
    font-weight: 400;
    letter-spacing: 5px;
    color: var(--gray);
    text-transform: uppercase;
    margin-top: 4px;
}

/* Logo Image */
.logo-img {
    height: 50px;
    width: auto;
    transition: var(--transition);
    display: block;
}

.site-header.scrolled .logo-img {
    height: 40px;
}

/* Nav Menu */
.nav-menu {
    display: flex;
    align-items: center;
    gap: 5px;
}

.nav-menu li a {
    display: block;
    padding: 10px 18px;
    color: var(--white);
    font-size: 0.82rem;
    font-weight: 400;
    letter-spacing: 2px;
    text-transform: uppercase;
    position: relative;
    transition: var(--transition);
}

.nav-menu li a::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 18px;
    right: 18px;
    height: 1px;
    background: var(--gold);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.nav-menu li a:hover,
.nav-menu li a.active {
    color: var(--gold);
}

.nav-menu li a:hover::after,
.nav-menu li a.active::after {
    transform: scaleX(1);
}

.nav-cta {
    background: transparent !important;
    border: 1px solid var(--gold) !important;
    color: var(--gold) !important;
    padding: 10px 28px !important;
    letter-spacing: 3px !important;
    margin-left: 10px;
    transition: var(--transition) !important;
}

.nav-cta:hover {
    background: var(--gold) !important;
    color: #2a2520 !important;
}

.nav-cta::after {
    display: none !important;
}

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

.nav-dropdown > a i {
    font-size: 0.6rem;
    margin-left: 5px;
    transition: transform 0.3s ease;
}

.nav-dropdown:hover > a i {
    transform: rotate(180deg);
}

/* Mega Menu */
.mega-menu {
    position: fixed;
    top: 128px;
    left: 0;
    right: 0;
    width: 100vw;
    background: rgba(42, 37, 32, 0.98);
    backdrop-filter: blur(10px);
    border-top: 2px solid var(--gold);
    padding: 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.3s ease, visibility 0.3s ease, transform 0.3s ease;
    z-index: 999;
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.site-header.scrolled .mega-menu {
    top: 64px;
}

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

.mega-menu-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 30px 40px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.mega-menu-column h4.mega-menu-heading {
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid rgba(200,169,126,0.2);
}

.mega-menu-column ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.mega-menu-column ul li a {
    display: block;
    padding: 6px 0 !important;
    font-size: 0.72rem !important;
    letter-spacing: 1px !important;
    color: var(--white) !important;
    transition: all 0.3s ease;
    text-transform: uppercase;
}

.mega-menu-column ul li a::after {
    display: none !important;
}

.mega-menu-column ul li a:hover {
    color: var(--gold) !important;
    padding-left: 8px !important;
}

.mega-menu-footer {
    border-top: 1px solid rgba(200,169,126,0.2);
    padding: 15px 40px;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
}

.mega-menu-footer .view-all {
    color: var(--gold) !important;
    font-family: 'Cinzel', serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.3s ease;
}

.mega-menu-footer .view-all::after {
    display: none !important;
}

.mega-menu-footer .view-all i {
    margin-left: 8px;
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.mega-menu-footer .view-all:hover {
    color: var(--white) !important;
}

.mega-menu-footer .view-all:hover i {
    transform: translateX(5px);
}

/* Mobile Nav Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.nav-toggle span {
    display: block;
    width: 25px;
    height: 1px;
    background: var(--gold);
    transition: var(--transition);
}

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

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

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

/* Nav Overlay (Mobile) */
.nav-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(42, 37, 32, 0.8);
    z-index: 997;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.nav-overlay.open {
    display: block;
    opacity: 1;
}

/* --- Page Hero --- */
.page-hero {
    position: relative;
    height: 40vh;
    min-height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #2a2520;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.1) 100%);
    z-index: 1;
}

.page-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 1;
}

.page-hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 30px;
}

.page-hero-content h1 {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 6px;
    margin-bottom: 15px;
}

.page-hero-content p {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    color: var(--gold);
    font-style: italic;
    letter-spacing: 2px;
}

.page-hero-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 20px auto;
}

/* --- Page Title Section --- */
.page-title-section {
    padding: 155px 0 50px;
    background: #f5f1e8;
    text-align: center;
    margin-top: 0;
}

.page-title {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: #2a2520;
    letter-spacing: 3px;
    margin-bottom: 15px;
    margin-top: 0;
}

.page-subtitle {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: #4a443f;
    font-style: italic;
    letter-spacing: 1px;
    margin-bottom: 0;
}

/* --- Hero Section (Home) --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    background: #2a2520;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(to bottom, rgba(42,37,32,0.6), rgba(42,37,32,0.8));
    z-index: 1;
}

.hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    transition: transform 20s ease;
}

.hero:hover .hero-bg {
    transform: scale(1.05);
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 30px;
    margin-left: 10%;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(20px);
    animation: fadeUp 0.8s ease forwards 0.5s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    font-weight: 400;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: 2px;
    margin-bottom: 25px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.7s;
}

.hero-title em {
    font-style: italic;
    background: var(--gold-shimmer);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: shimmer 3s linear infinite;
}

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

.hero-text {
    font-family: var(--font-accent);
    font-size: 1.25rem;
    color: rgba(254,246,241,0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 500px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 0.9s;
}

.hero-buttons {
    display: flex;
    gap: 20px;
    opacity: 0;
    transform: translateY(30px);
    animation: fadeUp 0.8s ease forwards 1.1s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    text-align: center;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards 1.5s;
    background: transparent !important;
    padding: 10px;
}

.hero-scroll span {
    display: block;
    font-size: 0.65rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 10px;
    background: transparent;
}

.hero-scroll i {
    color: var(--gold);
    font-size: 0.8rem;
    animation: scrollBounce 2s ease infinite;
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-block;
    padding: 15px 40px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 3px;
    text-transform: uppercase;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

.btn:active {
    transform: translateY(0);
}

.btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    pointer-events: none;
}

.btn-primary {
    background: var(--gold);
    color: #2a2520;
}

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

.btn-outline {
    background: transparent;
    color: #fef6f1;
    border: 1px solid rgba(254,246,241,0.3);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--charcoal);
    border: 1px solid var(--charcoal);
}

.btn-outline-dark:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: transparent;
    transform: translateY(-2px);
}

.btn-dark {
    background: #2a2520;
    color: #fef6f1;
}

.btn-dark:hover {
    background: #3a3530;
    color: var(--gold);
    transform: translateY(-2px);
}

/* --- Section Styles --- */
.section {
    padding: var(--section-padding) 0;
}

.section-dark {
    background: #2a2520;
    color: #fef6f1;
}

.section-cream {
    background: var(--cream);
    color: #2a2520;
}

.section-cream .section-title {
    color: #2a2520;
}

.section-cream .section-subtitle {
    color: #4a443f;
}

.section-light {
    background: #f5f1e8;
}

.section-light .section-title {
    color: #2a2520;
}

.section-light .section-subtitle {
    color: #4a443f;
}

.section-light .section-eyebrow {
    color: var(--gold);
}

.section-light h3,
.section-light h4,
.section-light p {
    color: #333333;
}

.section-light .feature-card,
.section-light .service-card,
.section-light .value-card {
    background: #ffffff;
}

.section-light .faq-item {
    background: #ffffff;
    border-color: rgba(42,37,32,0.1);
}

.section-light .faq-question {
    color: #2a2520;
}

.section-light .faq-answer-inner {
    color: #4a443f;
}

.section-light .service-detail-content h2,
.section-light .service-detail-content h3 {
    color: #2a2520;
}

.section-light .service-detail-content p,
.section-light .service-detail-content ul li {
    color: #333333;
}

.section-light .service-benefits li {
    color: #333333;
}

.section-light .sidebar-card {
    background: #ffffff;
    border-color: rgba(42,37,32,0.1);
}

.section-light .sidebar-card h3 {
    color: #2a2520;
}

.section-light .sidebar-price {
    color: var(--gold);
}

.section-light .sidebar-info {
    color: #4a443f;
}

.section-light .about-story-content h2 {
    color: #2a2520;
}

.section-light .about-story-content p {
    color: #333333;
}

.section-light .about-story-content .section-eyebrow {
    color: var(--gold);
}

.section-light .booking-content h2 {
    color: #2a2520;
}

.section-light .booking-content p {
    color: #4a443f;
}

.section-light .booking-step h3 {
    color: #2a2520;
}

.section-light .booking-step p {
    color: #4a443f;
}

.section-light .booking-step-number {
    color: var(--gold);
}

.section-light .contact-form-card h2,
.section-light .contact-info-card h4 {
    color: #2a2520;
}

.section-light .contact-form-card > p,
.section-light .contact-info-card p {
    color: #4a443f;
}

.section-light .contact-info-card a {
    color: #4a443f;
}

.section-light .directions-grid h3 {
    color: #2a2520;
}

.section-light .directions-grid p {
    color: #4a443f;
}

.section-light .brand-info h2 {
    color: #2a2520;
}

.section-light .brand-info p {
    color: #4a443f;
}

.section-light .product-card-body h3 {
    color: #2a2520;
}

.section-light .product-card-body p {
    color: #4a443f;
}

.section-header {
    text-align: center;
    margin-bottom: 50px;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 5px;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 15px;
    display: block;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 2.8rem;
    font-weight: 400;
    letter-spacing: 2px;
    margin-bottom: 20px;
    line-height: 1.3;
}

.section-title em {
    font-style: italic;
}

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

.section-divider {
    width: 60px;
    height: 1px;
    background: var(--gold);
    margin: 0 auto 25px;
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--gray-dark);
    max-width: 600px;
    margin: 0 auto;
    font-style: italic;
}

.section-dark .section-subtitle {
    color: var(--gray);
}

/* --- Feature Cards (Home) --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.feature-card {
    text-align: center;
    padding: 50px 35px;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: var(--transition);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-md);
    border-color: rgba(200,169,126,0.2);
}

.feature-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.feature-card:hover .feature-icon {
    background: var(--gold);
    color: var(--white);
}

.feature-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    letter-spacing: 1px;
}

.feature-card p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

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

.service-card {
    position: relative;
    overflow: hidden;
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: var(--transition);
    cursor: pointer;
}

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

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

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

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

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

.service-card-category {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--gold);
    color: #2a2520;
    padding: 5px 15px;
    font-size: 0.65rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 4px;
}

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

.service-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 1px;
}

.service-card-body p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 20px;
}

.service-card-link {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.service-card-link i {
    font-size: 0.65rem;
    transition: transform 0.3s ease;
}

.service-card:hover .service-card-link i {
    transform: translateX(5px);
}

/* --- Service Detail Page --- */
.page-eyebrow {
    font-size: 0.7rem;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--gold);
    font-weight: 500;
    display: block;
    margin-bottom: 15px;
}

.service-detail {
    padding: var(--section-padding) 0;
}

.service-detail-grid {
    display: grid;
    grid-template-columns: 1.8fr 1fr;
    gap: 70px;
    align-items: start;
}

.service-image-gallery {
    margin-bottom: 35px;
}

.service-image-main {
    width: 100%;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(42,37,32,0.1);
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

.service-image-main img {
    width: 100%;
    height: auto;
    display: block;
    max-height: 450px;
    object-fit: contain;
}

.service-image-thumbs {
    display: flex;
    gap: 10px;
    margin-top: 12px;
    overflow-x: auto;
    padding-bottom: 5px;
}

.service-image-thumb {
    width: 80px;
    height: 60px;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
    border: 2px solid transparent;
    transition: var(--transition);
    flex-shrink: 0;
    opacity: 0.6;
}

.service-image-thumb.active {
    border-color: var(--gold);
    opacity: 1;
}

.service-image-thumb:hover {
    opacity: 1;
}

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

/* Main Content */
.treatment-intro {
    margin-bottom: 50px;
}

.treatment-description {
    font-size: 1.05rem;
    line-height: 1.9;
    color: #4a443f;
}

.treatment-section {
    margin-bottom: 45px;
    padding: 35px;
    background: #ffffff;
    border-left: 3px solid var(--gold);
    box-shadow: 0 2px 15px rgba(0,0,0,0.05);
}

.treatment-section h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 25px;
    color: #2a2520;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.treatment-section h2 i {
    color: var(--gold);
    font-size: 1.2rem;
}

.technology-box {
    background: #f9f7f4;
    padding: 25px;
    border-radius: 8px;
}

.technology-box p {
    font-size: 0.95rem;
    line-height: 1.8;
    color: #4a443f;
    margin: 0;
}

.service-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
}

.service-benefits li {
    padding: 14px 0 14px 35px;
    position: relative;
    font-size: 0.95rem;
    color: #4a443f;
    border-bottom: 1px solid rgba(200,169,126,0.15);
}

.service-benefits li:last-child {
    border-bottom: none;
}

.service-benefits li i {
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    top: 18px;
}

/* Service Sidebar */
.service-sidebar {
    position: sticky;
    top: 140px;
}

.sidebar-card {
    background: #ffffff;
    padding: 35px;
    margin-bottom: 25px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.08);
    border-radius: 8px;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.sidebar-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(0,0,0,0.12);
}

.sidebar-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 20px;
    letter-spacing: 1px;
    color: #2a2520;
    display: flex;
    align-items: center;
    gap: 10px;
}

.sidebar-card h3 i {
    color: var(--gold);
}

/* Pricing Card */
.sidebar-pricing {
    background: linear-gradient(135deg, #2a2520 0%, #1a1510 100%);
    color: #fff;
    border: 2px solid var(--gold);
}

.pricing-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
}

.pricing-header i {
    font-size: 1.3rem;
    color: var(--gold);
}

.pricing-header h3 {
    color: var(--gold) !important;
    margin: 0 !important;
}

.sidebar-price {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--gold);
    margin-bottom: 10px;
    font-weight: 300;
    letter-spacing: 2px;
}

.sidebar-price-note {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.7);
    margin-bottom: 25px;
    font-style: italic;
}

.btn-sm {
    padding: 8px 18px !important;
    font-size: 0.75rem !important;
}

.btn-lg {
    padding: 15px 30px !important;
    font-size: 0.9rem !important;
    font-weight: 500;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
}

/* Detail List */
.detail-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.detail-list li {
    padding: 15px 0;
    border-bottom: 1px solid rgba(200,169,126,0.15);
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.9rem;
}

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

.detail-label {
    font-weight: 500;
    color: #2a2520;
    display: flex;
    align-items: center;
    gap: 8px;
}

.detail-label i {
    color: var(--gold);
    font-size: 0.85rem;
}

.detail-value {
    color: #4a443f;
    text-align: right;
}

/* Consultation Card */
.sidebar-consultation {
    background: linear-gradient(135deg, #2a2520 0%, #1a1510 100%);
    color: #fff;
    text-align: center;
}

.consultation-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    background: var(--gold);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.consultation-icon i {
    font-size: 1.8rem;
    color: #2a2520;
}

.sidebar-consultation h3 {
    color: var(--gold) !important;
    margin-bottom: 15px !important;
}

.sidebar-consultation p {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.8);
    margin-bottom: 25px;
    line-height: 1.7;
}

.btn-outline-light {
    border: 2px solid var(--gold) !important;
    color: var(--gold) !important;
    background: transparent !important;
    width: 100%;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.btn-outline-light:hover {
    background: var(--gold) !important;
    color: #2a2520 !important;
}

/* FAQ Accordion */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--cream);
}

.faq-item {
    background: var(--white);
    margin-bottom: 10px;
    border: 1px solid rgba(0,0,0,0.05);
}

.faq-question {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 22px 30px;
    background: none;
    border: none;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: var(--charcoal);
    text-align: left;
    transition: var(--transition);
}

.faq-question:hover {
    color: var(--gold);
}

.faq-question i {
    color: var(--gold);
    font-size: 0.8rem;
    transition: transform 0.3s ease;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s ease;
}

.faq-answer-inner {
    padding: 0 30px 25px;
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 1000px;
}

/* --- Gallery / Before-After --- */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 4/3;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(10,10,10,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-item-overlay i {
    color: var(--gold);
    font-size: 1.5rem;
}

/* --- Retail / Products --- */
.brand-section {
    margin-bottom: 80px;
}

.brand-header {
    display: flex;
    align-items: center;
    gap: 30px;
    margin-bottom: 40px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgba(0,0,0,0.08);
}

.brand-logo {
    width: 120px;
    height: 80px;
    object-fit: contain;
}

.brand-info h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    letter-spacing: 1px;
    margin-bottom: 5px;
    padding-left: 2px;
    color: #2a2520;
}

.brand-info p {
    color: #4a443f;
    font-size: 0.9rem;
    color: var(--gray-dark);
}

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

.product-card {
    background: var(--white);
    border: 1px solid rgba(0,0,0,0.05);
    border-radius: 8px;
    transition: var(--transition);
    overflow: hidden;
}

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

.product-card-image {
    height: 250px;
    overflow: hidden;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
}

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

.product-card:hover .product-card-image img {
    transform: scale(1.05);
}

.product-card-body {
    padding: 25px;
}

.product-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 8px;
    letter-spacing: 0.5px;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--gray-dark);
    line-height: 1.7;
    margin-bottom: 15px;
}

.product-link {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
    display: inline-flex;
    align-items: center;
    gap: 6px;
}

/* --- Retail Brands Page --- */
.retail-brands-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.retail-brand-card {
    background: var(--white);
    border-radius: 12px;
    box-shadow: 0 2px 15px rgba(42,37,32,0.06);
    padding: 40px 35px;
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    border: 1px solid rgba(0,0,0,0.04);
}

.retail-brand-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(42,37,32,0.12);
}

.retail-brand-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
    gap: 15px;
    flex-wrap: wrap;
}

.retail-brand-name {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 1px;
    color: var(--dark);
}

.retail-badge {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    padding: 5px 14px;
    background: var(--cream);
    border-radius: 20px;
    color: var(--gold);
    white-space: nowrap;
}

.retail-badge i {
    margin-right: 4px;
}

.retail-brand-body {
    flex: 1;
    margin-bottom: 25px;
}

.retail-brand-description {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 18px;
}

.retail-brand-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.retail-tag {
    font-size: 0.72rem;
    font-weight: 500;
    padding: 5px 14px;
    background: #f5f1e8;
    border-radius: 20px;
    color: #4a443f;
}

.retail-brand-footer {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.retail-brand-footer .btn {
    text-align: center;
    width: 100%;
}

.retail-info-banner {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    padding: 35px 40px;
    background: var(--cream);
    border-radius: 12px;
    border-left: 4px solid var(--gold);
}

.retail-info-icon {
    font-size: 1.5rem;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.retail-info-content h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 8px;
    color: var(--dark);
}

.retail-info-content p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.8;
}

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

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

.about-story-image img {
    width: 100%;
}

.about-story-image::after {
    content: '';
    position: absolute;
    top: 30px;
    left: 30px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--gold);
    z-index: -1;
}

.about-story-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.about-story-content p {
    font-size: 0.95rem;
    color: var(--gray-dark);
    line-height: 1.9;
    margin-bottom: 15px;
}

/* Values */
.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    text-align: center;
    padding: 50px 30px;
}

.value-card i {
    font-size: 2rem;
    color: var(--gold);
    margin-bottom: 25px;
}

.value-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 500;
    margin-bottom: 15px;
    color: var(--white);
    letter-spacing: 1px;
}

.value-card p {
    font-size: 0.9rem;
    color: var(--gray);
    line-height: 1.8;
}

/* Team */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

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

.team-card-image {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 25px;
    border: 3px solid rgba(200,169,126,0.3);
    transition: var(--transition);
}

.team-card:hover .team-card-image {
    border-color: var(--gold);
}

.team-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 1px;
}

.team-card .team-role {
    font-size: 0.75rem;
    color: var(--gold);
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

/* Equipment */
.equipment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.equipment-card {
    display: flex;
    gap: 30px;
    background: var(--white);
    padding: 30px;
    border: 1px solid rgba(0,0,0,0.05);
    transition: var(--transition);
}

.equipment-card:hover {
    box-shadow: var(--shadow-md);
}

.equipment-card-image {
    width: 140px;
    min-width: 140px;
    height: 140px;
    overflow: hidden;
    background: var(--cream);
}

.equipment-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.equipment-card h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.equipment-card p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

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

.contact-form-card {
    background: var(--white);
    padding: 50px;
    border: 1px solid rgba(0,0,0,0.05);
    box-shadow: var(--shadow-sm);
}

.contact-form-card h2 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    margin-bottom: 8px;
    letter-spacing: 1px;
}

.contact-form-card > p {
    font-size: 0.9rem;
    color: var(--gray-dark);
    margin-bottom: 35px;
}

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

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--charcoal);
    margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--charcoal);
    background: var(--gray-light);
    border: 1px solid transparent;
    border-radius: 6px;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(200,169,126,0.1);
}

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

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

.form-message {
    padding: 15px 20px;
    margin-bottom: 25px;
    font-size: 0.88rem;
}

.form-message-success {
    background: rgba(46,125,50,0.08);
    color: #2e7d32;
    border: 1px solid rgba(46,125,50,0.2);
}

.form-message-error {
    background: rgba(198,40,40,0.08);
    color: #c62828;
    border: 1px solid rgba(198,40,40,0.2);
}

/* Contact Info Cards */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

.contact-info-card {
    display: flex;
    gap: 20px;
    padding: 25px 0;
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

.contact-info-card:last-child {
    border-bottom: none;
}

.contact-info-icon {
    width: 55px;
    height: 55px;
    min-width: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--cream);
    color: var(--gold);
    font-size: 1.1rem;
}

.contact-info-card h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    margin-bottom: 5px;
    letter-spacing: 0.5px;
}

.contact-info-card p,
.contact-info-card a {
    font-size: 0.9rem;
    color: var(--gray-dark);
    line-height: 1.7;
}

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

/* Map */
.map-section {
    margin-top: 80px;
}

.map-container {
    width: 100%;
    height: 450px;
    background: var(--cream);
}

.map-container iframe {
    width: 100%;
    height: 100%;
    border: none;
}

/* Directions Grid */
.directions-grid {
    margin-top: 50px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}

/* --- Booking Page --- */
.booking-section {
    padding: var(--section-padding) 0;
    text-align: center;
}

.booking-content {
    max-width: 700px;
    margin: 0 auto;
}

.booking-content h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

.booking-content p {
    font-size: 1.05rem;
    color: var(--gray-dark);
    line-height: 1.8;
    margin-bottom: 40px;
}

.booking-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 60px 0;
}

.booking-step {
    text-align: center;
    padding: 30px 20px;
}

.booking-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gold);
    border-radius: 50%;
    font-family: var(--font-heading);
    font-size: 1.3rem;
    color: var(--gold);
}

.booking-step h3 {
    font-family: var(--font-heading);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 10px;
    letter-spacing: 0.5px;
}

.booking-step p {
    font-size: 0.88rem;
    color: var(--gray-dark);
    margin-bottom: 0;
}

/* Booking Methods Grid */
.booking-methods-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    max-width: 900px;
    margin: 0 auto;
}

/* --- Promotions --- */
.promotions-page {
    padding-bottom: 40px;
}

.promo-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.promo-card {
    background: var(--black-light);
    border: 1px solid rgba(200,169,126,0.15);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
}

.promo-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-gold);
    border-color: rgba(200,169,126,0.3);
}

.promo-card-image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/10;
}

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

.promo-card:hover .promo-card-image img {
    transform: scale(1.05);
}

.promo-badge {
    position: absolute;
    top: 15px;
    right: 15px;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.promo-badge-inline {
    display: inline-block;
    background: var(--gold);
    color: var(--black);
    font-family: var(--font-heading);
    font-size: 0.9rem;
    font-weight: 600;
    padding: 8px 18px;
    border-radius: 4px;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 10px 0;
}

.promo-card-body {
    padding: 30px;
}

.promo-card-body h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 500;
    color: var(--gold);
    margin-bottom: 12px;
}

.promo-card-body p {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--cream);
    margin-bottom: 15px;
}

.promo-valid {
    font-size: 0.85rem !important;
    color: var(--gray) !important;
    font-style: italic;
}

.promo-valid i {
    margin-right: 6px;
    color: var(--gold);
}

.promo-card-body .btn {
    margin-top: 10px;
}

.promo-empty {
    text-align: center;
    padding: 80px 20px;
}

.promo-empty i {
    font-size: 3rem;
    color: var(--gold);
    margin-bottom: 20px;
}

.promo-empty h3 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--gold);
    margin-bottom: 15px;
}

.promo-empty p {
    color: var(--gray);
    max-width: 500px;
    margin: 0 auto 25px;
}

/* --- Price List --- */
.price-category {
    margin-bottom: 60px;
}

.price-category-title {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 400;
    color: #2a2520;
    margin-bottom: 25px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--gold);
    display: inline-block;
}

.price-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 40px;
}

.price-item {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: baseline;
    gap: 10px;
    padding: 12px 0;
    border-bottom: 1px solid rgba(0,0,0,0.05);
}

.price-name {
    font-size: 0.92rem;
    font-weight: 400;
    color: var(--charcoal);
}

.price-dots {
    border-bottom: 1px dotted var(--gray);
    flex-grow: 1;
    min-width: 20px;
    height: 1px;
    margin: 0 10px 5px;
}

.price-value {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--charcoal);
    white-space: nowrap;
}

/* Pricing Page - Beige Background */
.pricing-page {
    background: #f5f1e8;
    padding: 60px 0;
}

.pricing-page .section-eyebrow {
    color: #c8a97e;
}

.pricing-page .section-title {
    color: #2a2520;
}

.pricing-page .section-subtitle {
    color: #4a443f;
}

.pricing-page .price-category-title {
    color: #2a2520;
}

.pricing-page .price-name {
    color: #333333;
}

.pricing-page .price-value {
    color: #2a2520;
}

.pricing-page .price-dots {
    border-bottom-color: #999999;
}

.pricing-page .price-item {
    border-bottom-color: rgba(42,37,32,0.1);
}

/* CTA Banner */
.cta-banner {
    background: #2a2520;
    padding: 80px 0;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse at center, rgba(200,169,126,0.06) 0%, transparent 70%);
}

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

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--white);
    letter-spacing: 2px;
    margin-bottom: 15px;
}

.cta-banner p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--gray);
    font-style: italic;
    margin-bottom: 35px;
}

/* --- Testimonials --- */
.testimonials-slider {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.testimonial-item {
    display: none;
}

.testimonial-item.active {
    display: block;
    animation: fadeIn 0.6s ease;
}

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

.testimonial-quote {
    font-family: var(--font-accent);
    font-size: 1.4rem;
    font-style: italic;
    color: var(--white);
    line-height: 1.8;
    margin-bottom: 30px;
}

.testimonial-quote::before {
    content: '\201C';
    font-family: var(--font-heading);
    font-size: 4rem;
    color: var(--gold);
    display: block;
    margin-bottom: -20px;
    line-height: 1;
}

.testimonial-author {
    font-size: 0.85rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--gold);
}

.testimonial-dots {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px;
}

.testimonial-dot {
    width: 8px;
    height: 8px;
    padding: 18px;
    background: rgba(200,169,126,0.3);
    background-clip: content-box;
    border-radius: 50%;
    border: none;
    cursor: pointer;
    transition: var(--transition);
}

.testimonial-dot.active {
    background: var(--gold);
    background-clip: content-box;
    transform: scale(1.3);
}

.testimonial-dot:hover {
    background: rgba(200,169,126,0.6);
    background-clip: content-box;
}

/* --- Unique Points (Home) --- */
.unique-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
}

.unique-image {
    min-height: 500px;
    background-size: cover;
    background-position: center;
}

.unique-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 60px;
    background: var(--cream);
}

.unique-content h2 {
    font-family: var(--font-heading);
    font-size: 2.2rem;
    font-weight: 400;
    margin-bottom: 25px;
    letter-spacing: 1px;
}

.unique-list {
    margin-bottom: 30px;
}

.unique-list li {
    padding: 12px 0;
    padding-left: 30px;
    position: relative;
    font-size: 0.95rem;
    color: var(--gray-dark);
    border-bottom: 1px solid rgba(0,0,0,0.06);
}

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

.unique-list li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 0.75rem;
    top: 14px;
}

/* --- Footer --- */
.site-footer {
    background: #f5f1e8;
    color: #4a443f;
    font-weight: 400;
}

.footer-top {
    padding: 80px 0 50px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 50px;
}

.footer-brand p {
    font-size: 0.92rem;
    line-height: 1.8;
    margin-top: 20px;
    color: #4a443f;
}

.footer-logo .logo-text {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    letter-spacing: 6px;
    color: var(--gold);
    display: block;
}

.footer-logo .logo-sub {
    font-size: 0.5rem;
    letter-spacing: 4px;
    color: var(--gray);
    text-transform: uppercase;
    display: block;
    margin-top: 3px;
}

.footer-logo-img {
    height: 80px;
    width: auto;
    margin-bottom: 15px;
}

.footer-social {
    display: flex;
    gap: 15px;
    margin-top: 25px;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(200,169,126,0.3);
    color: var(--gold);
    font-size: 0.9rem;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--gold);
    color: #ffffff;
    border-color: var(--gold);
}

.footer-col h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    font-weight: 500;
    color: #2a2520;
    letter-spacing: 1px;
    margin-bottom: 25px;
    position: relative;
    padding-bottom: 15px;
}

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

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

.footer-col ul li a {
    color: #4a443f;
    font-size: 0.92rem;
    transition: var(--transition);
}

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

.footer-contact li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    margin-bottom: 15px !important;
}

.footer-contact li i {
    color: var(--gold);
    font-size: 0.85rem;
    margin-top: 3px;
    min-width: 15px;
}

.footer-contact li span,
.footer-contact li a {
    font-size: 0.9rem;
    color: #4a443f;
}

.footer-bottom {
    padding: 25px 0;
    border-top: 1px solid rgba(42,37,32,0.15);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: #4a443f;
}

.footer-credit {
    font-style: italic;
    font-family: var(--font-accent);
}

/* --- WhatsApp Float --- */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-size: 1.5rem;
    box-shadow: 0 4px 20px rgba(37,211,102,0.3);
    z-index: 999;
    transition: var(--transition);
}

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

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 100px;
    width: 44px;
    height: 44px;
    background: #2a2520;
    border: 1px solid var(--gold);
    color: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
    font-size: 0.8rem;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--gold);
    color: #2a2520;
}

/* --- Accessibility --- */
a:focus-visible,
button:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

/* --- Animations (Scroll Reveal) --- */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

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

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3.5rem;
    }

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

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

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

    .about-story {
        gap: 50px;
    }

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

    .service-detail-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .treatment-section {
        padding: 25px;
    }

    .treatment-section h2 {
        font-size: 1.3rem;
    }

    .service-sidebar {
        position: static;
    }

    .sidebar-card {
        margin-bottom: 20px;
        padding: 25px;
    }

    .sidebar-price {
        font-size: 2rem;
    }

    .btn-lg {
        padding: 12px 25px !important;
        font-size: 0.85rem !important;
    }

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

@media (max-width: 768px) {
    :root {
        --section-padding: 50px;
    }

    /* Prevent horizontal scroll on mobile */
    .container {
        padding: 0 20px;
        max-width: 100%;
    }

    .container-narrow {
        padding: 0 20px;
        max-width: 100%;
    }

    .header-top {
        display: none;
    }

    .main-nav {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
    }

    .nav-toggle {
        display: flex;
        padding: 10px;
        min-width: 44px;
        min-height: 44px;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        bottom: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        background: #2a2520;
        flex-direction: column;
        padding: 100px 40px 40px;
        padding-bottom: calc(40px + env(safe-area-inset-bottom, 0px));
        gap: 0;
        transition: right 0.4s ease;
        z-index: 998;
        overflow-y: auto;
        overflow-x: hidden;
    }

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

    .nav-menu li a {
        padding: 15px 0;
        font-size: 0.85rem;
        border-bottom: 1px solid rgba(254,246,241,0.05);
    }

    .nav-cta {
        margin-left: 0 !important;
        margin-top: 20px;
        text-align: center;
    }

    /* Mobile Mega Menu */
    .nav-menu li.nav-dropdown > a {
        display: flex;
        align-items: center;
        justify-content: center;
        position: relative;
        width: 100%;
    }

    .nav-menu li.nav-dropdown > a i {
        position: absolute;
        right: 0;
        transition: transform 0.3s ease;
        font-size: 0.7rem;
    }

    .nav-dropdown.active > a i {
        transform: rotate(180deg);
    }

    .mega-menu {
        position: static !important;
        opacity: 1 !important;
        visibility: visible !important;
        transform: none !important;
        width: 100% !important;
        background: transparent;
        border: none;
        border-top: 1px solid rgba(200,169,126,0.15);
        padding: 0;
        margin: 0;
        box-shadow: none;
        max-height: 0;
        overflow: hidden;
        overflow-y: auto;
        transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    }

    .nav-dropdown.active .mega-menu {
        max-height: 70vh;
        padding: 8px 0;
        margin: 8px 0;
    }

    .mega-menu-inner {
        display: block;
        padding: 10px 0;
        gap: 0;
    }

    .mega-menu-column {
        margin-bottom: 15px;
    }

    .mega-menu-column h4.mega-menu-heading {
        text-align: left;
        font-size: 0.7rem;
        margin-bottom: 8px;
        padding-bottom: 6px;
        cursor: pointer;
    }

    .mega-menu-column ul {
        text-align: left;
    }

    .mega-menu-column ul li a {
        padding: 12px 0 !important;
        font-size: 0.75rem !important;
        letter-spacing: 1px !important;
        text-align: left;
    }

    .mega-menu-column ul li a:hover {
        padding-left: 0 !important;
    }

    .mega-menu-footer {
        padding: 12px 0;
        border-top: 1px solid rgba(200,169,126,0.15);
        text-align: left;
    }

    .mega-menu-footer .view-all {
        font-size: 0.7rem;
    }

    /* Mobile Service Detail */
    .page-title {
        font-size: 2rem;
        letter-spacing: 2px;
        overflow-wrap: break-word;
        word-wrap: break-word;
        hyphens: auto;
    }

    .page-title-section {
        padding: 100px 0 40px;
    }

    /* Override inline grid styles for mobile */
    .brand-highlights-grid,
    .essentials-grid {
        grid-template-columns: 1fr !important;
    }

    .retail-brands-grid {
        grid-template-columns: 1fr;
    }

    .retail-brand-card {
        padding: 30px 25px;
    }

    .retail-info-banner {
        flex-direction: column;
        padding: 25px;
    }

    .page-subtitle {
        font-size: 0.95rem;
    }

    .treatment-section {
        padding: 20px;
        margin-bottom: 25px;
    }

    .treatment-section h2 {
        font-size: 1.2rem;
        margin-bottom: 18px;
    }

    .service-benefits li {
        padding: 12px 0 12px 30px;
        font-size: 0.9rem;
    }

    .technology-box {
        padding: 18px;
    }

    .sidebar-card {
        padding: 25px;
        margin-bottom: 20px;
    }

    .sidebar-price {
        font-size: 2rem;
    }

    .pricing-header h3,
    .sidebar-card h3 {
        font-size: 1.1rem;
    }

    .detail-list li {
        padding: 12px 0;
        font-size: 0.85rem;
    }

    .consultation-icon {
        width: 50px;
        height: 50px;
    }

    .consultation-icon i {
        font-size: 1.5rem;
    }

    .hero {
        min-height: 600px;
    }

    .hero-content {
        margin-left: 0;
        text-align: center;
    }

    .hero-title {
        font-size: 2rem;
        line-height: 1.2;
    }

    .hero-text {
        margin: 0 auto 40px;
    }

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

    /* Hide hero scroll on mobile to prevent white bar */
    .hero-scroll {
        display: none;
    }

    .page-hero {
        min-height: 400px;
        padding: 80px 0;
    }

    .page-hero-content {
        padding: 0 20px;
    }

    .page-hero-content h1 {
        font-size: 2rem;
        line-height: 1.2;
        word-wrap: break-word;
        hyphens: auto;
    }

    .page-hero-content p {
        font-size: 1rem;
    }

    .section-title {
        font-size: 1.8rem;
        line-height: 1.3;
    }

    .section-eyebrow {
        font-size: 0.65rem;
    }

    .features-grid,
    .services-grid,
    .values-grid,
    .team-grid,
    .booking-steps {
        grid-template-columns: 1fr;
    }

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

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

    .about-story-image::after {
        display: none;
    }

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

    .unique-image {
        min-height: 300px;
    }

    .unique-content {
        padding: 50px 30px;
    }

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

    .contact-form-card {
        padding: 30px;
    }

    .map-section {
        margin-top: 40px;
    }

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

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

    .booking-methods-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }

    .equipment-card {
        flex-direction: column;
    }

    .equipment-card-image {
        width: 100%;
        min-width: auto;
        height: 200px;
    }

    .logo-img {
        height: 45px;
    }

    .site-header.scrolled .logo-img {
        height: 38px;
    }

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

    .footer-logo-img {
        height: 60px;
    }

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

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

    .cta-banner {
        padding: 50px 0;
    }

    .cta-banner h2 {
        font-size: 1.6rem;
    }

    .cta-banner p {
        font-size: 1rem;
    }

    .promo-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }

    .promo-card-body h3 {
        font-size: 1.2rem;
    }

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

    .price-category-title {
        font-size: 1.4rem;
        word-wrap: break-word;
        hyphens: auto;
    }

    .price-item {
        padding: 10px 0;
        gap: 8px;
    }

    .price-name {
        font-size: 0.85rem;
    }

    .price-value {
        font-size: 0.85rem;
        white-space: nowrap;
    }

    .pricing-page .section-title {
        font-size: 1.8rem;
        hyphens: auto;
        word-wrap: break-word;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 35px;
    }

    /* Further prevent horizontal scroll on small mobile */
    .container {
        padding: 0 15px;
    }

    .container-narrow {
        padding: 0 15px;
    }

    .hero {
        min-height: 450px;
    }

    .hero-buttons {
        flex-direction: column;
        align-items: center;
        gap: 15px;
    }

    .hero-title {
        font-size: 1.75rem;
        line-height: 1.3;
    }

    .page-hero-content h1 {
        font-size: 1.6rem;
        line-height: 1.3;
    }

    .section-title {
        font-size: 1.6rem;
    }

    .service-detail-content h2 {
        font-size: 1.4rem;
    }

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

    .btn {
        padding: 13px 25px;
        font-size: 0.8rem;
    }

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

    .page-hero {
        min-height: 350px;
    }

    .page-title {
        font-size: 1.6rem;
        letter-spacing: 1px;
    }

    .page-title-section {
        padding: 90px 0 30px;
    }

    .page-subtitle {
        font-size: 0.85rem;
    }

    .price-category-title {
        font-size: 1.2rem;
        line-height: 1.4;
    }

    .price-item {
        grid-template-columns: auto 1fr auto;
        padding: 8px 0;
    }

    .price-name {
        font-size: 0.8rem;
        max-width: 60%;
    }

    .price-value {
        font-size: 0.8rem;
    }

    .price-dots {
        min-width: 10px;
    }

    .pricing-page {
        padding: 50px 0;
    }

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

    .price-category {
        margin-bottom: 40px;
    }

    .feature-card {
        padding: 30px 25px;
    }

    .service-card-image {
        height: 220px;
    }

    .equipment-card-image {
        height: 150px;
    }

    .unique-content {
        padding: 35px 20px;
    }

    .unique-image {
        min-height: 200px;
    }

    .cta-banner {
        padding: 40px 0;
    }
}
