/* ============================================
   SCHONHEITT - SPA, BARBER & SALON
   Luxury Beauty & Wellness Website
   Color Palette from Logo: Gold/Champagne
   ============================================ */

/* --- CSS Variables --- */
:root {
    --gold: #B8860B;
    --gold-light: #D4A847;
    --gold-dark: #8B6914;
    --gold-pale: #F5E6C8;
    --gold-shimmer: #C9A84C;
    --cream: #FDF8F0;
    --cream-dark: #F7EDE0;
    --charcoal: #1A1A1A;
    --dark: #2C2C2C;
    --text: #4A4A4A;
    --text-light: #7A7A7A;
    --white: #FFFFFF;
    --black: #000000;
    --shadow: rgba(184, 134, 11, 0.15);
    --shadow-dark: rgba(0, 0, 0, 0.1);
    --transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --transition-fast: all 0.3s ease;
    --font-heading: 'Playfair Display', serif;
    --font-body: 'Raleway', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
}

/* --- Skip Link (Accessibility) --- */
.skip-link {
    position: absolute;
    top: -100%;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gold);
    color: var(--white);
    padding: 0.8rem 2rem;
    border-radius: 0 0 8px 8px;
    z-index: 10002;
    font-weight: 600;
    font-size: 0.85rem;
    transition: top 0.3s ease;
}

.skip-link:focus {
    top: 0;
}

/* --- Focus Styles (Accessibility) --- */
*:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
}

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

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

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

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

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

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

ul {
    list-style: none;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: 6rem 0;
    position: relative;
}

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

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

.loader {
    text-align: center;
}

.loader img {
    width: 150px;
    margin-bottom: 2rem;
    animation: pulse 2s ease-in-out infinite;
}

.loader-bar {
    width: 200px;
    height: 2px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.loader-fill {
    width: 0%;
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    animation: loaderFill 2s ease-in-out forwards;
}

@keyframes loaderFill {
    to { width: 100%; }
}

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

/* --- Navigation --- */
#navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: var(--transition);
}

#navbar.scrolled {
    background: rgba(255, 255, 255, 0.97);
    backdrop-filter: blur(20px);
    padding: 0.6rem 0;
    box-shadow: 0 2px 30px var(--shadow-dark);
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo img {
    height: 55px;
    transition: var(--transition);
}

#navbar.scrolled .nav-logo img {
    height: 42px;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav-link {
    padding: 0.5rem 1rem;
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    position: relative;
    transition: var(--transition-fast);
}

#navbar.scrolled .nav-link {
    color: var(--charcoal);
}

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

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

.nav-link:hover,
.nav-link.active {
    color: var(--gold-light);
}

#navbar.scrolled .nav-link:hover,
#navbar.scrolled .nav-link.active {
    color: var(--gold);
}

.nav-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    background: var(--gold);
    color: var(--white) !important;
    border-radius: 50px;
    margin-left: 0.5rem;
    transition: var(--transition);
}

.nav-btn:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 4px 15px var(--shadow);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    z-index: 1001;
}

.nav-toggle span {
    width: 28px;
    height: 2px;
    background: var(--white);
    transition: var(--transition-fast);
}

#navbar.scrolled .nav-toggle span {
    background: var(--charcoal);
}

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

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

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

/* --- Mobile Menu Backdrop --- */
.nav-backdrop {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-fast);
}

.nav-backdrop.active {
    opacity: 1;
    visibility: visible;
}

/* --- Hero Section --- */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--charcoal) url('images/gallery-spa1.jpg') center/cover no-repeat;
}

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

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(
        180deg,
        rgba(26, 26, 26, 0.7) 0%,
        rgba(26, 26, 26, 0.5) 40%,
        rgba(26, 26, 26, 0.7) 100%
    );
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--white);
    padding: 0 2rem;
    max-width: 900px;
}

.hero-badge {
    display: inline-block;
    padding: 0.5rem 2rem;
    border: 1px solid var(--gold-light);
    color: var(--gold-light);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 2rem;
    animation: fadeInDown 1s ease 0.3s both;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    animation: fadeInUp 1s ease 0.5s both;
}

.hero-line {
    display: block;
}

.hero-ampersand {
    display: block;
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-light);
    font-size: 0.6em;
    line-height: 1.5;
}

.hero-tagline {
    font-family: var(--font-accent);
    font-size: 1.8rem;
    font-weight: 400;
    font-style: italic;
    color: var(--gold-light);
    margin-bottom: 1rem;
    letter-spacing: 0.1em;
    animation: fadeInUp 1s ease 0.7s both;
}

.hero-subtitle {
    font-size: 0.95rem;
    font-weight: 300;
    letter-spacing: 0.15em;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    animation: fadeInUp 1s ease 0.9s both;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    animation: fadeInUp 1s ease 1.1s both;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gold);
    color: var(--white);
    border-radius: 50px;
}

.btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
    box-shadow: 0 8px 25px var(--shadow);
}

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

.btn-outline:hover {
    background: var(--white);
    color: var(--charcoal);
    transform: translateY(-3px);
}

.btn-sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.75rem;
}

.btn-lg {
    padding: 1.2rem 3rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* --- Scroll Indicator --- */
.scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    color: var(--white);
    text-align: center;
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    opacity: 0.7;
    animation: fadeInUp 1s ease 1.5s both;
}

.scroll-arrow {
    width: 1px;
    height: 40px;
    background: var(--gold-light);
    margin: 0.5rem auto 0;
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

@keyframes scrollBounce {
    0%, 100% { transform: scaleY(1); opacity: 1; }
    50% { transform: scaleY(0.5); opacity: 0.5; }
}

/* --- Section Headers --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.8rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 1rem;
}

.gold-divider {
    width: 60px;
    height: 2px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    margin-bottom: 1.5rem;
}

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

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

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

/* --- About Section --- */
.about {
    background: var(--cream);
}

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

.image-frame {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.15);
}

.image-frame img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    transition: transform 0.8s ease;
}

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

.image-accent {
    position: absolute;
    top: -15px;
    right: -15px;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold);
    border-radius: 8px;
    z-index: -1;
}

.about-content .section-title {
    text-align: left;
}

.about-text {
    color: var(--text);
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    line-height: 1.9;
}

.about-tagline {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    padding: 1.2rem 1.5rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
    margin: 1.5rem 0;
}

.tagline-icon {
    color: var(--gold);
    font-size: 1.5rem;
}

.about-tagline p {
    font-family: var(--font-accent);
    font-size: 1.3rem;
    font-style: italic;
    color: var(--gold-dark);
    font-weight: 500;
}

.about-features {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
}

.feature {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--dark);
}

.feature i {
    color: var(--gold);
    font-size: 1.1rem;
}

/* --- Services Section --- */
.services {
    background: var(--white);
    overflow: hidden;
}

.services-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: radial-gradient(circle at 20% 50%, rgba(184,134,11,0.03) 0%, transparent 50%),
                      radial-gradient(circle at 80% 50%, rgba(184,134,11,0.03) 0%, transparent 50%);
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

.service-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: 12px;
    text-align: center;
    border: 1px solid rgba(184,134,11,0.1);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--gold), var(--gold-light));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px var(--shadow);
    border-color: transparent;
}

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

.service-icon {
    width: 70px;
    height: 70px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    color: var(--gold);
    font-size: 1.5rem;
    transition: var(--transition);
}

.service-card:hover .service-icon {
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    transform: scale(1.1);
}

.service-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
    margin-bottom: 0.8rem;
}

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

.service-link {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
}

.service-link:hover {
    color: var(--gold-dark);
}

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

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

/* --- Pricing Section --- */
.pricing {
    background: var(--cream);
}

.pricing-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 3rem;
}

.price-tab {
    padding: 0.7rem 1.5rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--white);
    color: var(--text);
    border: 1.5px solid rgba(184,134,11,0.2);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

.price-tab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.price-tab.active {
    background: var(--gold);
    color: var(--white);
    border-color: var(--gold);
}

.price-panel {
    display: none;
    animation: fadeIn 0.5s ease;
}

.price-panel.active {
    display: block;
}

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

.price-cat-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 1.5rem;
    padding-bottom: 0.8rem;
    border-bottom: 2px solid var(--gold-pale);
}

.price-cat-title i {
    color: var(--gold);
    margin-right: 0.5rem;
}

.price-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.price-item {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding: 1.2rem 1.5rem;
    background: var(--white);
    border-radius: 8px;
    margin-bottom: 0.5rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.price-item:hover {
    border-color: var(--gold-pale);
    box-shadow: 0 4px 15px rgba(184,134,11,0.08);
    transform: translateX(5px);
}

.price-name h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--charcoal);
    margin-bottom: 0.3rem;
}

.price-name p {
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
    max-width: 500px;
}

.price-details {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.2rem;
    white-space: nowrap;
    flex-shrink: 0;
    margin-left: 1.5rem;
}

.price-duration {
    font-size: 0.75rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--gold);
}

.price-amount::before {
    content: 'KES ';
    font-size: 0.7rem;
    font-family: var(--font-body);
    font-weight: 500;
    opacity: 0.7;
}

.price-amount.no-prefix::before {
    content: none;
}

/* --- Gallery Section --- */
.gallery {
    background: var(--white);
}

.gallery-filter {
    display: flex;
    justify-content: center;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}

.filter-btn {
    padding: 0.6rem 1.8rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: transparent;
    color: var(--text);
    border: 1.5px solid var(--gold-pale);
    border-radius: 50px;
    cursor: pointer;
    transition: var(--transition-fast);
}

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

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

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

.gallery-item.hidden {
    display: none;
}

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

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

.gallery-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 50%, rgba(26,26,26,0.8) 100%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-heading);
    font-size: 1rem;
    font-weight: 500;
}

/* Wide gallery items - only apply when not filtered */
.gallery-grid:not(.filtered) .gallery-wide {
    grid-column: span 2;
    grid-row: span 2;
    aspect-ratio: auto;
}

/* --- Gallery Video Items --- */
.gallery-video video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

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

.gallery-video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(184, 134, 11, 0.85);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.3rem;
    z-index: 2;
    transition: var(--transition);
    pointer-events: none;
    padding-left: 4px;
}

.gallery-video:hover .gallery-video-play {
    transform: translate(-50%, -50%) scale(1.15);
    background: var(--gold);
}

.gallery-video.playing .gallery-video-play {
    opacity: 0;
}

.gallery-video .gallery-overlay {
    z-index: 1;
}

/* Lightbox video */
.lightbox-video {
    max-width: 90%;
    max-height: 85vh;
    border-radius: 8px;
    outline: none;
    background: var(--black);
}

/* --- Treatments Detail Section --- */
.treatments-detail {
    background: var(--cream);
}

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

.treatment-block {
    background: var(--white);
    border-radius: 12px;
    margin-bottom: 1rem;
    overflow: hidden;
    border: 1px solid rgba(184,134,11,0.1);
    transition: var(--transition-fast);
}

.treatment-block:hover {
    border-color: var(--gold-pale);
}

.treatment-header {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.treatment-header:hover {
    background: var(--cream);
}

.treatment-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-pale), var(--cream));
    color: var(--gold);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.treatment-header h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    color: var(--charcoal);
}

.treatment-header > div:nth-child(2) p {
    font-size: 0.85rem;
    color: var(--text-light);
    margin-top: 0.2rem;
}

.treatment-toggle {
    margin-left: auto;
    color: var(--gold);
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.treatment-block.active .treatment-toggle {
    transform: rotate(180deg);
}

.treatment-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease;
}

.treatment-block.active .treatment-body {
    max-height: 2000px;
}

.treatment-content {
    padding: 0 2rem 1rem;
}

.treatment-content > p {
    margin-bottom: 1.5rem;
    color: var(--text);
    line-height: 1.8;
}

.treatment-content ul {
    list-style: none;
    margin-bottom: 1.5rem;
}

.treatment-content ul li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.6rem;
    color: var(--text);
    font-size: 0.95rem;
}

.treatment-content ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55rem;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--gold);
}

.treatment-col {
    margin-bottom: 1.5rem;
}

.treatment-col h4,
.treatment-type h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold-dark);
    margin-bottom: 0.5rem;
}

.treatment-types {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.2rem;
}

.treatment-type {
    background: var(--cream);
    padding: 1.2rem;
    border-radius: 8px;
    border-left: 3px solid var(--gold);
}

.treatment-type p {
    font-size: 0.9rem;
    color: var(--text);
    line-height: 1.7;
}

.treatment-cols-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 1.5rem;
}

.treatment-cols-2 h4 {
    font-family: var(--font-heading);
    font-size: 1.05rem;
    color: var(--gold-dark);
    margin-bottom: 0.8rem;
}

.treatment-note {
    padding: 1rem 2rem 1.5rem;
    font-size: 0.85rem;
    color: var(--gold-dark);
    font-style: italic;
    background: var(--gold-pale);
    border-radius: 0 0 12px 12px;
}

.treatment-note i {
    margin-right: 0.5rem;
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: 6rem 0;
    background: var(--charcoal);
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    overflow: hidden;
}

.cta-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, rgba(184,134,11,0.2) 0%, rgba(26,26,26,0.88) 100%);
}

.cta-content {
    position: relative;
    text-align: center;
    color: var(--white);
}

.cta-content h2 {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: 1.1rem;
    opacity: 0.8;
    margin-bottom: 2rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* --- Contact Section --- */
.contact {
    background: var(--white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    padding: 1.5rem;
    background: var(--cream);
    border-radius: 12px;
    margin-bottom: 1rem;
    transition: var(--transition-fast);
    border: 1px solid transparent;
}

.contact-card:hover {
    border-color: var(--gold-pale);
    transform: translateX(5px);
}

.contact-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold-light));
    color: var(--white);
    font-size: 1.1rem;
    flex-shrink: 0;
}

.contact-card h4 {
    font-family: var(--font-heading);
    font-size: 1rem;
    color: var(--charcoal);
    margin-bottom: 0.2rem;
}

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

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

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

.location-link {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    margin-top: 0.4rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gold) !important;
}

.location-link:hover {
    color: var(--gold-dark) !important;
}

.location-link i {
    font-size: 0.8rem;
}

.contact-form-wrap {
    background: var(--cream);
    padding: 3rem;
    border-radius: 16px;
    border: 1px solid rgba(184,134,11,0.1);
}

.contact-form h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--charcoal);
    margin-bottom: 2rem;
}

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

.form-group {
    position: relative;
    margin-bottom: 1.2rem;
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--charcoal);
    background: var(--white);
    border: 1.5px solid rgba(184,134,11,0.2);
    border-radius: 8px;
    transition: var(--transition-fast);
    outline: none;
}

.form-group label {
    position: absolute;
    left: 1.2rem;
    top: 1rem;
    font-size: 0.9rem;
    color: var(--text-light);
    pointer-events: none;
    transition: var(--transition-fast);
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

.form-group input:focus + label,
.form-group input:not(:placeholder-shown) + label,
.form-group textarea:focus + label,
.form-group textarea:not(:placeholder-shown) + label {
    top: -0.5rem;
    left: 0.8rem;
    font-size: 0.75rem;
    color: var(--gold);
    background: var(--cream);
    padding: 0 0.3rem;
}

.form-group select {
    width: 100%;
    padding: 1rem 1.2rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text);
    background: var(--white);
    border: 1.5px solid rgba(184,134,11,0.2);
    border-radius: 8px;
    transition: var(--transition-fast);
    outline: none;
    cursor: pointer;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23B8860B' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
}

.form-group select:focus {
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(184,134,11,0.1);
}

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

.contact-form .btn {
    margin-top: 0.5rem;
    border: none;
    font-size: 0.85rem;
}

/* --- Map Section --- */
.map-section {
    position: relative;
    overflow: hidden;
}

.map-info-bar {
    background: var(--charcoal);
    padding: 1.5rem 0;
}

.map-info-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
}

.map-info-left {
    display: flex;
    align-items: center;
    gap: 1rem;
    color: var(--white);
}

.map-info-left i {
    font-size: 1.8rem;
    color: var(--gold-light);
}

.map-info-left h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    margin-bottom: 0.15rem;
}

.map-info-left p {
    font-size: 0.9rem;
    opacity: 0.8;
}

.map-embed {
    position: relative;
    line-height: 0;
}

.map-embed iframe {
    width: 100%;
    height: 400px;
    display: block;
    filter: saturate(0.8) contrast(1.05);
    transition: filter 0.4s ease;
}

.map-embed:hover iframe {
    filter: saturate(1) contrast(1);
}

/* --- Footer --- */
.footer {
    background: var(--charcoal);
    color: rgba(255,255,255,0.7);
    padding: 4rem 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.footer-logo {
    width: 120px;
    margin-bottom: 1rem;
    border-radius: 4px;
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-tagline {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold-light) !important;
    font-size: 1rem !important;
    margin-top: 0.5rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

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

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

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    color: var(--white);
    margin-bottom: 1.2rem;
}

.footer-links ul li {
    margin-bottom: 0.6rem;
}

.footer-links ul li a {
    font-size: 0.9rem;
    transition: var(--transition-fast);
}

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

.footer-contact p {
    font-size: 0.9rem;
    margin-bottom: 0.6rem;
}

.footer-contact p i {
    color: var(--gold-light);
    margin-right: 0.5rem;
    width: 18px;
}

.footer-contact a {
    color: rgba(255,255,255,0.7);
    transition: var(--transition-fast);
}

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

.footer-bottom {
    text-align: center;
    padding: 1.5rem 0;
    font-size: 0.85rem;
    opacity: 0.6;
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gold);
    color: var(--white);
    border-radius: 50%;
    font-size: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition);
    z-index: 999;
    box-shadow: 0 4px 15px var(--shadow);
}

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

.back-to-top:hover {
    background: var(--gold-dark);
    transform: translateY(-3px);
}

/* --- Lightbox --- */
.lightbox {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.95);
    z-index: 10001;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    cursor: pointer;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    font-size: 2.5rem;
    color: var(--white);
    background: none;
    border: none;
    cursor: pointer;
    transition: var(--transition-fast);
    line-height: 1;
}

.lightbox-close:hover {
    color: var(--gold-light);
    transform: rotate(90deg);
}

.lightbox-img {
    max-width: 90%;
    max-height: 90vh;
    border-radius: 8px;
    object-fit: contain;
}

/* --- Toast Notifications --- */
.toast {
    position: fixed;
    top: 2rem;
    right: 2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem 1.5rem;
    border-radius: 10px;
    font-size: 0.9rem;
    font-weight: 500;
    z-index: 10002;
    box-shadow: 0 10px 40px rgba(0,0,0,0.2);
    transform: translateX(calc(100% + 2rem));
    opacity: 0;
    transition: transform 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94), opacity 0.4s ease;
    max-width: 420px;
}

.toast.visible {
    transform: translateX(0);
    opacity: 1;
}

.toast-success {
    background: #2ecc71;
    color: var(--white);
}

.toast-error {
    background: #e74c3c;
    color: var(--white);
}

.toast i {
    font-size: 1.2rem;
    flex-shrink: 0;
}

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

.whatsapp-float:hover {
    transform: scale(1.1) translateY(-3px);
    box-shadow: 0 8px 30px rgba(37, 211, 102, 0.5);
}

.whatsapp-tooltip {
    position: absolute;
    left: 70px;
    background: var(--charcoal);
    color: var(--white);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.8rem;
    font-family: var(--font-body);
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transform: translateX(-10px);
    transition: var(--transition-fast);
    pointer-events: none;
}

.whatsapp-tooltip::before {
    content: '';
    position: absolute;
    left: -6px;
    top: 50%;
    transform: translateY(-50%);
    border-width: 6px 6px 6px 0;
    border-style: solid;
    border-color: transparent var(--charcoal) transparent transparent;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* WhatsApp pulse animation */
.whatsapp-float::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border-radius: 50%;
    background: #25D366;
    z-index: -1;
    animation: whatsappPulse 2s ease-in-out infinite;
}

@keyframes whatsappPulse {
    0% { transform: scale(1); opacity: 0.5; }
    100% { transform: scale(1.5); opacity: 0; }
}

/* --- Animations --- */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

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

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

.reveal-left {
    transform: translateX(-40px);
}

.reveal-right {
    transform: translateX(40px);
}

.reveal-up.revealed,
.reveal-left.revealed,
.reveal-right.revealed {
    opacity: 1;
    transform: translate(0);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .gallery-item:nth-child(1),
    .gallery-item:nth-child(8) {
        grid-column: span 1;
        grid-row: span 1;
        aspect-ratio: 1;
    }

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

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

    .container {
        padding: 0 1.2rem;
    }

    /* Mobile Nav */
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 350px;
        height: 100vh;
        background: var(--charcoal);
        flex-direction: column;
        align-items: flex-start;
        padding: 6rem 2rem 2rem;
        gap: 0;
        transition: right 0.4s ease;
        box-shadow: -5px 0 30px rgba(0,0,0,0.3);
        z-index: 999;
    }

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

    .nav-link {
        color: var(--white) !important;
        padding: 1rem 0;
        font-size: 0.95rem;
        width: 100%;
        border-bottom: 1px solid rgba(255,255,255,0.05);
    }

    .nav-btn {
        margin-left: 0;
        margin-top: 1rem;
        text-align: center;
        width: 100%;
        display: block;
    }

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

    .image-frame img {
        height: 350px;
    }

    .image-accent {
        display: none;
    }

    .about-features {
        flex-direction: column;
        gap: 1rem;
    }

    /* Services */
    .services-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    /* Pricing */
    .pricing-tabs {
        gap: 0.4rem;
    }

    .price-tab {
        padding: 0.5rem 1rem;
        font-size: 0.7rem;
    }

    .price-item {
        flex-direction: column;
        gap: 0.8rem;
    }

    .price-details {
        align-items: flex-start;
        margin-left: 0;
        flex-direction: row;
        gap: 1rem;
    }

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

    .gallery-filter {
        gap: 0.4rem;
    }

    .filter-btn {
        padding: 0.5rem 1.2rem;
        font-size: 0.75rem;
    }

    /* Treatments */
    .treatment-types {
        grid-template-columns: 1fr;
    }

    .treatment-cols-2 {
        grid-template-columns: 1fr;
    }

    .treatment-header {
        padding: 1.2rem 1.5rem;
    }

    .treatment-content {
        padding: 0 1.5rem 1rem;
    }

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

    .contact-form-wrap {
        padding: 2rem 1.5rem;
    }

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

    /* Map */
    .map-info-content {
        flex-direction: column;
        text-align: center;
    }

    .map-info-left {
        flex-direction: column;
        gap: 0.5rem;
    }

    .map-embed iframe {
        height: 280px;
    }

    /* CTA */
    .cta-banner {
        background-attachment: scroll;
    }

    /* WhatsApp */
    .whatsapp-float {
        bottom: 1.2rem;
        left: 1.2rem;
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }

    .whatsapp-tooltip {
        display: none;
    }

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

@media (max-width: 480px) {
    .toast {
        top: auto;
        bottom: 1rem;
        right: 1rem;
        left: 1rem;
        max-width: none;
        font-size: 0.85rem;
    }

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

    .hero-tagline {
        font-size: 1.3rem;
    }

    .hero-subtitle {
        font-size: 0.8rem;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .btn {
        padding: 0.9rem 2rem;
        font-size: 0.8rem;
    }

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

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

    .service-card {
        padding: 2rem 1.5rem;
    }
}

/* --- Smooth scrollbar styling --- */
::-webkit-scrollbar {
    width: 8px;
}

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

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

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

/* --- Selection color --- */
::selection {
    background: var(--gold);
    color: var(--white);
}
