/* 
 * Veneto Hair Style di Kazi - Ultra-Luxury Design System
 * 2025 Masterpiece Edition
 */

/* -------------------------------------
   1. VARIABLES & TOKENS
   ------------------------------------- */
:root {
    /* Colors - Primary */
    --color-black: #000000;
    --color-black-rich: #0B0C0F;
    --color-white: #FFFFFF;
    --color-off-white: #F5F5F5;
    --color-gray: #666666;

    /* Colors - Luxury Gold */
    --gold-1: #C9A961;
    --gold-2: #FFD700;
    --gold-3: #B8935A;
    --gold-light: #D4AF77;

    /* Colors - Accents */
    --accent-red: #800020;
    --accent-green: #2ecc71;

    /* Typography */
    --font-heading: 'Playfair Display', 'Bodoni Moda', 'Cormorant Garamond', serif;
    --font-subheading: 'Manrope', 'Space Grotesk', 'Montserrat', sans-serif;
    --font-body: 'Manrope', 'Inter', 'Montserrat', sans-serif;
    --font-accent: 'Playfair Display', 'Italiana', serif;

    /* Spacing */
    --container-width: 1400px;
    --header-height: 80px;
    --section-padding: 120px;

    /* Effects */
    --glass-bg: rgba(10, 10, 12, 0.62);
    --glass-bg-strong: rgba(10, 10, 12, 0.78);
    --glass-border: 1px solid rgba(201, 169, 97, 0.22);
    --glass-border-strong: 1px solid rgba(201, 169, 97, 0.34);
    --backdrop-blur: blur(26px);
    --shadow-soft: 0 18px 60px rgba(0, 0, 0, 0.55);
    --shadow-gold: 0 16px 54px rgba(201, 169, 97, 0.28);
    --shadow-ultra: 0 30px 90px rgba(0, 0, 0, 0.65);
    --radius-sm: 10px;
    --radius-md: 16px;
    --radius-lg: 22px;

    /* Transitions */
    --ease-out: cubic-bezier(0.4, 0, 0.2, 1);

    /* Signature Luxury Lighting */
    --gold-glow: 0 0 60px rgba(201, 169, 97, 0.22);
    --edge-highlight: rgba(201, 169, 97, 0.22);
    --edge-highlight-strong: rgba(201, 169, 97, 0.40);
}

/* -------------------------------------
   2. RESET & BASE
   ------------------------------------- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--color-black);
    color: var(--color-off-white);
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.78;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}

/* Premium scrollbars */
* {
    scrollbar-width: thin;
    scrollbar-color: rgba(201, 169, 97, 0.42) rgba(255, 255, 255, 0.04);
}

*::-webkit-scrollbar {
    width: 10px;
}

*::-webkit-scrollbar-track {
    background: rgba(255, 255, 255, 0.03);
}

*::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, rgba(201, 169, 97, 0.55), rgba(255, 215, 0, 0.22));
    border-radius: 999px;
    border: 2px solid rgba(0, 0, 0, 0.65);
}

body::before {
    content: '';
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    background:
        radial-gradient(800px 520px at 18% 12%, rgba(201, 169, 97, 0.10), transparent 55%),
        radial-gradient(980px 700px at 82% 22%, rgba(255, 215, 0, 0.07), transparent 60%),
        radial-gradient(900px 760px at 52% 92%, rgba(201, 169, 97, 0.06), transparent 60%);
    opacity: 1;
}

body::after {
    content: '';
    position: fixed;
    inset: -40px;
    pointer-events: none;
    z-index: 0;
    background-image:
        url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='240' height='240'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='240' height='240' filter='url(%23n)' opacity='.22'/%3E%3C/svg%3E");
    opacity: 0.06;
    mix-blend-mode: overlay;
    transform: translateZ(0);
}

body>* {
    position: relative;
    z-index: 1;
}

body.no-scroll {
    overflow: hidden;
}

img {
    max-width: 100%;
    display: block;
    height: auto;
}

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

ul {
    list-style: none;
}

/* -------------------------------------
   3. TYPOGRAPHY SYSTEM
   ------------------------------------- */
h1,
h2,
h3,
h4,
h5,
h6 {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    text-rendering: geometricPrecision;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-heading);
    color: var(--gold-1);
    line-height: 1.15;
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: 0.04em;
}

/* Gradients */
.gradient-heading,
.gradient-text {
    background: linear-gradient(135deg, #C9A961 0%, #FFD700 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.gradient-rose {
    background: linear-gradient(135deg, #D4A574 0%, #E8C4A8 50%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.gradient-silver {
    background: linear-gradient(135deg, #B8935A 0%, #E5D5C3 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
}

.gradient-holo {
    background: linear-gradient(135deg, #C9A961, #D4AF77, #FFD700, #C9A961);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: holographic 4s ease infinite;
}

.gradient-text {
    animation: shimmer 3s infinite linear;
}

.gradient-text-static {
    background: linear-gradient(135deg, #C9A961, #FFD700, #C9A961);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

/* Scale - Desktop */
.hero-title {
    font-size: clamp(54px, 6.2vw, 116px);
    letter-spacing: 0.06em;
    line-height: 1.03;
    font-weight: 600;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 42px;
        /* Force readable size on mobile */
        opacity: 1 !important;
        /* Ensure visibility if animation fails */
        transform: none !important;
    }

    .hero-title .char {
        opacity: 1 !important;
        transform: none !important;
    }
}

/* When GSAP splits the hero title into per-character spans, the gradient must apply to spans too */
.hero-title .char {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Preserve correct spacing/word breaks when hero title is split into per-character spans */
.hero-title .word {
    display: inline-block;
    white-space: pre;
}

.hero-title .space {
    display: inline-block;
    white-space: pre;
    width: 0.45em;
}

.hero-title .di {
    font-family: var(--font-subheading);
    font-weight: 500;
    letter-spacing: 0.18em;
    font-size: 0.34em;
    vertical-align: middle;
    padding: 0 0.22em;
    display: inline-block;
    transform: translateY(-0.18em);
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.85), rgba(201, 169, 97, 0.85));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.25);
}

.hero-title .char-di {
    font-family: var(--font-subheading);
}

.hero-tagline {
    display: block;
    margin-top: 1.5rem;
    font-family: var(--font-accent);
    font-size: 18px;
    color: rgba(245, 245, 245, 0.92);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.2);
}

h1.section-title {
    font-size: clamp(40px, 4vw, 76px);
    text-align: center;
    margin-bottom: 1rem;
}

h2 {
    font-size: clamp(32px, 3.2vw, 56px);
}

h3 {
    font-size: clamp(24px, 2.4vw, 42px);
}

.body-large {
    font-size: clamp(18px, 1.25vw, 22px);
}

.subtitle {
    font-family: var(--font-subheading);
    font-size: 18px;
    color: var(--color-gray);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 3rem;
    text-align: center;
}

/* -------------------------------------
   4. UTILITIES & ANIMATIONS
   ------------------------------------- */
.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

.section {
    padding: var(--section-padding) 0;
    position: relative;
}

/* Section signature glow + divider line (global luxury polish) */
.section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    width: min(900px, 92vw);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.36), transparent);
    opacity: 0.38;
}

.section::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 380px at 12% 10%, rgba(201, 169, 97, 0.10), transparent 60%),
        radial-gradient(900px 380px at 88% 90%, rgba(255, 215, 0, 0.06), transparent 60%);
    opacity: 0.55;
}

.bg-black {
    background-color: var(--color-black);
}

.bg-black-rich {
    background-color: var(--color-black-rich);
}

.text-center {
    text-align: center;
}

.font-heading {
    font-family: var(--font-heading);
}

.text-gold {
    color: var(--gold-1);
}

.text-gray {
    color: var(--color-gray);
}

.text-uppercase {
    text-transform: uppercase;
}

.tracking-wide {
    letter-spacing: 0.2em;
}

.w-100 {
    width: 100%;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-3 {
    margin-bottom: 0.75rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-large {
    margin-bottom: 2.5rem;
}

.mt-2 {
    margin-top: 0.5rem;
}

.mt-3 {
    margin-top: 0.75rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mt-6 {
    margin-top: 1.5rem;
}

.mt-large {
    margin-top: 2.5rem;
}

.ml-2 {
    margin-left: 0.5rem;
}

.mr-2 {
    margin-right: 0.5rem;
}

.p-8 {
    padding: 2rem;
}

.pt-6 {
    padding-top: 1.5rem;
}

.text-left {
    text-align: left;
}

.text-xs {
    font-size: 12px;
}

.text-capitalize {
    text-transform: capitalize;
}

.is-hidden {
    display: none !important;
}

.booking-summary-table {
    border-collapse: collapse;
    margin-top: 1rem;
}

.booking-summary-table td {
    padding: 8px 10px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

/* Admin shared (kept in main.css for consistency) */
.admin-layout {
    display: flex;
    min-height: 100vh;
}

.admin-sidebar {
    width: 250px;
    background: #111;
    border-right: 1px solid rgba(255, 255, 255, 0.10);
    padding: 2rem;
    position: fixed;
    height: 100%;
    top: 0;
    left: 0;
}

.admin-nav {
    list-style: none;
    padding: 0;
    margin: 0;
}

.admin-nav li {
    margin-bottom: 1rem;
}

.admin-nav a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px;
    color: rgba(245, 245, 245, 0.60);
    text-decoration: none;
    border: 1px solid transparent;
    border-radius: 12px;
    transition: background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.admin-nav a:hover,
.admin-nav a.active {
    color: var(--gold-1);
    background: rgba(255, 255, 255, 0.05);
    border-color: rgba(201, 169, 97, 0.20);
    transform: translateY(-1px);
}

.admin-content {
    margin-left: 250px;
    flex-grow: 1;
    padding: 2rem;
    background: #000;
    min-height: 100vh;
    color: rgba(245, 245, 245, 0.92);
}

.admin-container {
    max-width: 1200px;
    margin: 40px auto;
    padding: 0 20px;
}

.admin-topbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.admin-subtitle {
    color: rgba(245, 245, 245, 0.45);
    font-size: 13px;
}

.admin-actions {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-wrap: wrap;
}

.justify-start {
    justify-content: flex-start;
}

.justify-end {
    justify-content: flex-end;
}

.admin-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.12);
    border-radius: 16px;
    padding: 0;
    overflow: hidden;
}

.admin-table-wrap {
    width: 100%;
    overflow: auto;
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    color: rgba(245, 245, 245, 0.86);
}

.admin-table th,
.admin-table td {
    padding: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    text-align: left;
    vertical-align: top;
}

.admin-table th {
    color: var(--gold-1);
}

.admin-muted {
    color: rgba(245, 245, 245, 0.45);
    font-size: 13px;
}

.admin-note {
    color: rgba(245, 245, 245, 0.50);
    font-size: 0.9rem;
}

.admin-inline {
    display: inline;
}

.admin-alert {
    padding: 1rem;
    margin-bottom: 1rem;
    border-radius: 14px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-alert.success {
    background: rgba(46, 204, 113, 0.12);
    border-color: rgba(46, 204, 113, 0.4);
    color: #c8f6d5;
}

.admin-alert.error {
    background: rgba(231, 76, 60, 0.12);
    border-color: rgba(231, 76, 60, 0.4);
    color: #ffd0cc;
}

.admin-btn-danger {
    border-color: rgba(231, 76, 60, 0.75) !important;
    color: rgba(231, 76, 60, 0.95) !important;
}

.admin-btn-icon {
    padding: 8px 10px;
}

.admin-select {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.14);
    color: rgba(245, 245, 245, 0.92);
    padding: 8px 10px;
    border-radius: 12px;
}

.admin-notes {
    white-space: pre-line;
    color: rgba(245, 245, 245, 0.62);
    font-size: 13px;
    max-width: 340px;
}

.admin-filters {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin: 1rem 0 1.5rem;
}

.admin-filter {
    padding: 10px 14px;
    border: 1px solid rgba(201, 169, 97, 0.25);
    color: rgba(245, 245, 245, 0.82);
    text-transform: uppercase;
    letter-spacing: 0.14em;
    font-size: 12px;
    border-radius: 12px;
    transition: transform 0.25s var(--ease-out), border-color 0.25s var(--ease-out), background 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.admin-filter:hover {
    transform: translateY(-1px);
    border-color: rgba(201, 169, 97, 0.55);
}

.admin-filter.active {
    background: rgba(201, 169, 97, 0.12);
    border-color: rgba(201, 169, 97, 0.60);
    color: var(--gold-1);
}

.admin-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}

.admin-item-card {
    background: #111;
    border: 1px solid rgba(255, 255, 255, 0.08);
    overflow: hidden;
    border-radius: 16px;
}

.admin-thumb {
    width: 100%;
    height: 180px;
    object-fit: cover;
    filter: grayscale(25%);
}

.admin-card-body {
    padding: 14px;
}

.admin-meta {
    color: rgba(245, 245, 245, 0.45);
    font-size: 12px;
    margin-top: 6px;
}

@media (max-width: 1200px) {
    .admin-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .admin-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 520px) {
    .admin-grid {
        grid-template-columns: 1fr;
    }
}

.admin-upload-zone {
    border: 2px dashed rgba(255, 255, 255, 0.20);
    padding: 4rem;
    text-align: center;
    background: #111;
    transition: border-color 0.3s var(--ease-out), background 0.3s var(--ease-out);
    cursor: pointer;
    margin-bottom: 2rem;
    border-radius: 16px;
}

.admin-upload-zone:hover,
.admin-upload-zone.dragover {
    border-color: rgba(201, 169, 97, 0.75);
    background: #141416;
}

.admin-upload-zone i {
    font-size: 3rem;
    color: rgba(245, 245, 245, 0.28);
    margin-bottom: 1rem;
}

.admin-preview-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.admin-preview-item img {
    width: 100%;
    height: 100px;
    object-fit: cover;
    border-radius: 12px;
}

.admin-login {
    background-color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    margin: 0;
}

.admin-login-box {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(10px);
    padding: 40px;
    border: 1px solid rgba(201, 169, 97, 0.3);
    border-radius: 16px;
    width: 100%;
    max-width: 420px;
    text-align: center;
}

.admin-login-box .form-group {
    margin-bottom: 16px;
    text-align: left;
}

.admin-login-box .form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.70);
}

.admin-login-box .form-control {
    width: 100%;
    display: block;
}

.admin-login-error {
    color: #e74c3c;
    margin-bottom: 15px;
    font-size: 0.9rem;
}

.admin-stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
}

.admin-stat-card {
    background: #111;
    padding: 1.5rem;
    border-radius: 16px;
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-stat-num {
    font-size: 2rem;
    color: var(--gold-1);
}

.admin-badge-btn {
    border: none;
    cursor: pointer;
}

.admin-modal-card {
    width: 920px;
    max-width: 92vw;
    background: #111;
}

.admin-modal-card,
.admin-modal-card-sm,
.admin-modal-card-xs {
    padding: 26px;
    border-radius: 16px;
}

.modal .admin-card {
    padding: 26px;
}

.admin-modal-card-sm {
    width: 520px;
    max-width: 92vw;
    background: #111;
}

.admin-modal-card-xs {
    width: 500px;
    max-width: 92vw;
    background: #111;
}

.admin-grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

/* Admin form alignment system */
.admin-content .form-group {
    margin-bottom: 16px;
}

.admin-content .form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.70);
}

.admin-content .form-control {
    width: 100%;
    display: block;
}

.admin-content textarea.form-control {
    resize: vertical;
}

.admin-modal .form-group label,
.modal .form-group label {
    display: block;
}

.modal .form-group {
    margin-bottom: 16px;
}

.modal .form-control {
    width: 100%;
    display: block;
}

.modal textarea.form-control {
    resize: vertical;
}

@media (max-width: 820px) {

    .admin-grid-2,
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

/* Legacy helper for older admin markup */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.admin-form-actions {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    margin-top: 18px;
}

.admin-tabs {
    display: flex;
    gap: 20px;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
}

.admin-tab {
    padding: 10px 20px;
    cursor: pointer;
    color: rgba(245, 245, 245, 0.50);
    border-bottom: 2px solid transparent;
    transition: color 0.25s var(--ease-out), border-color 0.25s var(--ease-out);
}

.admin-tab.active {
    color: var(--gold-1);
    border-color: rgba(201, 169, 97, 0.75);
}

.admin-tab-content {
    display: none;
}

.admin-tab-content.active {
    display: block;
}

.max-w-800 {
    max-width: 800px;
    margin: 0 auto;
}

.max-w-1000 {
    max-width: 1000px;
    margin: 0 auto;
}

/* Automatic luxury gradients + glow on primary headings */
.hero-title,
h1,
h2,
.section-title,
.price-amount,
.service-price {
    background: linear-gradient(135deg, #C9A961 0%, #FFD700 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
    animation: shimmer 3s linear infinite;
    text-shadow: 0 2px 20px rgba(201, 169, 97, 0.24);
}

.hero-tagline,
.nav-link,
.footer-col h4 {
    font-family: var(--font-subheading);
}

.hero-title:hover,
h1:hover,
h2:hover,
.section-title:hover {
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.55);
    transform: scale(1.01);
    transition: all 0.3s ease;
}

/* Section title decorative lines without changing HTML */
.section-title {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.section-title::before,
.section-title::after {
    content: '';
    height: 1px;
    width: clamp(56px, 8vw, 140px);
    background: linear-gradient(90deg, transparent, rgba(201, 169, 97, 0.75), transparent);
    opacity: 0.85;
}

/* Themed gradients per page */
.uomo-page .hero-title,
.uomo-page h1,
.uomo-page h2,
.uomo-page .section-title,
.uomo-page .price-amount,
.uomo-page .service-price {
    background: linear-gradient(135deg, #B8935A 0%, #E5D5C3 50%, #C9A961 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.uomo-page .hero-title .char {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.donna-page .hero-title,
.donna-page h1,
.donna-page h2,
.donna-page .section-title,
.donna-page .price-amount,
.donna-page .service-price {
    background: linear-gradient(135deg, #D4A574 0%, #E8C4A8 50%, #D4A574 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% auto;
}

.donna-page .hero-title .char {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.spa-page .hero-title,
.spa-page h1,
.spa-page h2,
.spa-page .section-title,
.spa-page .price-amount,
.spa-page .service-price {
    background: linear-gradient(135deg, #C9A961, #D4AF77, #FFD700, #C9A961);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 300% 300%;
    animation: holographic 4s ease infinite;
}

.spa-page .hero-title .char {
    background: inherit;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Keyframes */
@keyframes shimmer {
    to {
        background-position: 200% center;
    }
}

@keyframes holographic {
    0% {
        background-position: 0% 50%;
    }

    50% {
        background-position: 100% 50%;
    }

    100% {
        background-position: 0% 50%;
    }
}

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(40px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.reveal-up {
    opacity: 0;
    animation: fadeUp 1s var(--ease-out) forwards;
}

.delay-100 {
    animation-delay: 0.1s;
}

.delay-200 {
    animation-delay: 0.2s;
}

.delay-300 {
    animation-delay: 0.3s;
}

/* -------------------------------------
   5. COMPONENTS (Buttons, Cards)
   ------------------------------------- */
/* Base button class used across markup */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: var(--radius-sm);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    font-size: 14px;
    line-height: 1;
    padding: 16px 42px;
    cursor: pointer;
    user-select: none;
    -webkit-tap-highlight-color: transparent;
    transform: translateZ(0);
    border: 1px solid transparent;
}

.btn i {
    transform: translateY(-0.5px);
}

/* Primary Button */
.btn-primary {
    display: inline-block;
    position: relative;
    isolation: isolate;
    background: linear-gradient(135deg, rgba(201, 169, 97, 1), rgba(255, 215, 0, 0.9));
    color: var(--color-white);
    padding: 18px 48px;
    border: none;
    border-radius: var(--radius-sm);
    font-size: 16px;
    font-family: var(--font-body);
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    box-shadow: var(--shadow-gold);
    transition: all 0.4s var(--ease-out);
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: -1;
    border-radius: inherit;
    background: radial-gradient(600px 220px at 20% 10%, rgba(255, 255, 255, 0.35), transparent 60%);
    opacity: 0.65;
    transform: translateZ(0);
    transition: opacity 0.45s var(--ease-out), transform 0.45s var(--ease-out);
}

.btn-primary::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    z-index: -2;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.55), rgba(255, 215, 0, 0.35), rgba(201, 169, 97, 0.55));
    filter: blur(14px);
    opacity: 0.55;
    transition: opacity 0.45s var(--ease-out);
}

.btn-primary:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 12px 32px rgba(201, 169, 97, 0.5);
    color: #fff;
}

.btn-primary:hover::before {
    opacity: 0.85;
    transform: translateY(-1px);
}

.btn-primary:hover::after {
    opacity: 0.75;
}

/* Secondary Button (Outline) */
.btn-outline {
    display: inline-block;
    background: transparent;
    border: 1px solid rgba(201, 169, 97, 0.65);
    color: var(--gold-1);
    padding: 14px 34px;
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    cursor: pointer;
    transition: all 0.3s ease;
}

input,
textarea,
select {
    font-family: var(--font-body);
    font-size: 15px;
    color: rgba(245, 245, 245, 0.92);
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.20);
    border-radius: 12px;
    padding: 14px 14px;
    outline: none;
    transition: border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out), background 0.25s var(--ease-out);
}

input::placeholder,
textarea::placeholder {
    color: rgba(245, 245, 245, 0.45);
}

input:focus,
textarea:focus,
select:focus {
    border-color: rgba(201, 169, 97, 0.60);
    box-shadow: 0 0 0 4px rgba(201, 169, 97, 0.12), 0 18px 60px rgba(0, 0, 0, 0.35);
    background: rgba(255, 255, 255, 0.06);
}

.btn-outline {
    border-radius: var(--radius-sm);
    position: relative;
    isolation: isolate;
}

.contact-layout {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-wrapper {
    padding: 2.25rem;
}

.luxury-form {
    width: 100%;
}

.luxury-form .form-group {
    margin-bottom: 18px;
}

.luxury-form .form-group label {
    display: block;
    margin-bottom: 10px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.70);
}

.luxury-form .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
}

.luxury-form .form-control {
    width: 100%;
    display: block;
}

@media (max-width: 980px) {
    .contact-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .luxury-form .form-row {
        grid-template-columns: 1fr;
    }
}

.btn-outline::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(500px 200px at 20% 10%, rgba(201, 169, 97, 0.18), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: -1;
}

.btn-outline:hover {
    background: rgba(201, 169, 97, 0.12);
    color: var(--gold-1);
    box-shadow: 0 18px 46px rgba(201, 169, 97, 0.18);
    border-color: rgba(255, 215, 0, 0.6);
}

.btn-outline:hover::before {
    opacity: 1;
}

.btn-sm {
    padding: 10px 26px;
    font-size: 12px;
}

/* Signature hover utilities used in templates */
.hover-lift {
    transition: transform 0.6s var(--ease-out), box-shadow 0.6s var(--ease-out), border-color 0.6s var(--ease-out);
}

.hover-lift:hover {
    transform: translateY(-12px);
}

.hover-glow {
    position: relative;
}

.hover-glow::after {
    content: '';
    position: absolute;
    inset: -1px;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.28), transparent 35%, rgba(255, 215, 0, 0.18));
    opacity: 0;
    filter: blur(14px);
    transition: opacity 0.6s var(--ease-out);
}

.hover-glow:hover::after {
    opacity: 0.85;
}

.btn-whatsapp {
    background: transparent;
    border: 2px solid #25D366;
    color: #25D366;
}

.btn-whatsapp:hover {
    background: #25D366;
    color: #000;
}

/* Glass Card */
.glass-card {
    background: rgba(255, 255, 255, 0.035);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 2rem;
    box-shadow: var(--shadow-soft);
    transition: transform 0.5s var(--ease-out), background 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.glass-card::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    border-radius: inherit;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.10), transparent 35%, rgba(201, 169, 97, 0.06));
    opacity: 0.55;
    mask-image: radial-gradient(140% 100% at 50% 0%, black 0%, transparent 65%);
}

.glass-card::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 320px at 18% 8%, rgba(201, 169, 97, 0.14), transparent 55%);
    opacity: 0.25;
    transition: opacity 0.5s var(--ease-out);
}

.glass-card:hover {
    background: rgba(255, 255, 255, 0.07);
    transform: translateY(-10px);
    border-color: rgba(201, 169, 97, 0.35);
    box-shadow: var(--shadow-ultra);
}

.glass-card:hover::before {
    opacity: 0.55;
}

/* -------------------------------------
   6. HEADER (Floating Luxury)
   ------------------------------------- */
.main-header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: var(--header-height);
    background: var(--glass-bg);
    backdrop-filter: var(--backdrop-blur);
    border-bottom: var(--glass-border);
    z-index: 1000;
    transition: height 0.35s var(--ease-out), background 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    box-shadow: var(--shadow-soft);
}

.main-header.is-scrolled {
    height: 68px;
    background: var(--glass-bg-strong);
    border-bottom: var(--glass-border-strong);
    box-shadow: var(--shadow-ultra);
}

.main-header::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(700px 80px at 50% 0%, rgba(201, 169, 97, 0.22), transparent 60%);
    opacity: 0.22;
}

.has-scrolled .main-header .logo span {
    letter-spacing: 0.08em;
}

.header-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

/* Logo Styles */
.logo {
    display: flex;
    align-items: center;
    height: 100%;
    text-decoration: none;
}

.site-logo {
    height: auto;
    max-height: 55px;
    /* Optimal for 80px header */
    width: auto;
    transition: all 0.3s ease;
    object-fit: contain;
}

.main-header.is-scrolled .site-logo {
    max-height: 45px;
    /* Smaller on scroll */
}

/* Footer Logo */
.footer-logo {
    max-width: 200px;
    height: auto;
    display: block;
    margin-bottom: 1rem;
}

/* Admin Sidebar Logo */
/* Admin Sidebar Logo */
.admin-sidebar .text-center {
    display: flex;
    justify-content: center;
    width: 100%;
}

.admin-sidebar .text-center img {
    max-width: 180px;
    /* Increased size */
    height: auto;
    margin-bottom: 0;
    display: block;
}

.nav-desktop ul {
    display: flex;
    gap: 34px;
}

.nav-link {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(245, 245, 245, 0.92);
    position: relative;
    padding: 10px 0;
    font-weight: 500;
}

.nav-link:before {
    content: '';
    position: absolute;
    inset: -14px -10px;
    border-radius: 999px;
    background: radial-gradient(260px 140px at 30% 20%, rgba(201, 169, 97, 0.12), transparent 60%);
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: -1;
}

.nav-link:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold-1);
    transition: width 0.3s ease;
}

.nav-link:hover {
    color: var(--gold-1);
}

.nav-link:hover:before {
    opacity: 1;
}

.nav-link:hover:after {
    width: 100%;
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
}

.menu-toggle span {
    display: block;
    width: 24px;
    height: 1px;
    background: var(--gold-1);
    margin: 6px 0;
    transition: 0.3s;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.86);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 999;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s var(--ease-out);
}

.mobile-nav-overlay.active {
    opacity: 1;
    pointer-events: auto;
}

.mobile-nav {
    position: absolute;
    top: var(--header-height);
    left: 0;
    right: 0;
    height: calc(100vh - var(--header-height));
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1.25rem;
    padding: 2rem;
}

.mobile-nav a {
    width: min(520px, 100%);
    text-align: center;
    padding: 18px 20px;
    border-radius: 12px;
    border: 1px solid rgba(201, 169, 97, 0.22);
    background: rgba(255, 255, 255, 0.06);
    color: var(--color-white);
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.mobile-nav a:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.55);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    background: rgba(255, 255, 255, 0.09);
}

/* -------------------------------------
   7. HERO SECTION
   ------------------------------------- */
.hero-section {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-top: var(--header-height);
    overflow: hidden;
    /* Parallax basic */
}

.hero-section.hero-short {
    height: 70vh;
}

.hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: scale(1.03);
    filter: grayscale(20%) contrast(1.05) brightness(0.85);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(0, 0, 0, 0.62) 0%, rgba(0, 0, 0, 0.38) 50%, rgba(0, 0, 0, 0.56) 100%);
    z-index: 1;
}

.hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(760px 220px at 50% 18%, rgba(201, 169, 97, 0.18), transparent 60%),
        radial-gradient(900px 300px at 14% 86%, rgba(255, 215, 0, 0.08), transparent 60%);
    opacity: 0.9;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1000px;
    padding: 0 20px;
}

.hero-title {
    text-transform: uppercase;
    text-shadow: 0 30px 110px rgba(0, 0, 0, 0.70);
}

.hero-cta {
    margin-top: 2.25rem;
}

.scroll-indicator {
    margin-top: 4rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
}

.scroll-indicator-mouse {
    width: 24px;
    height: 40px;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.7);
    position: relative;
}

.scroll-indicator-mouse::after {
    content: '';
    position: absolute;
    top: 8px;
    left: 50%;
    width: 4px;
    height: 8px;
    border-radius: 999px;
    background: var(--gold-1);
    transform: translateX(-50%);
    animation: pulse-gold 1.8s infinite;
}

.scroll-indicator-text {
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-gray);
}

/* -------------------------------------
   7B. PAGE HERO (Shared)
   ------------------------------------- */
.page-hero {
    height: 70vh;
    min-height: 420px;
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(25%) contrast(1.06) brightness(0.82);
    transform: scale(1.03);
}

.page-hero.hero-small {
    height: 40vh;
    min-height: 280px;
}

.page-hero.hero-xs {
    height: 30vh;
    min-height: 200px;
}

.hero-small {
    height: 40vh;
}

.hero-xs {
    height: 30vh;
    min-height: 200px;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
}

.page-hero-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background: radial-gradient(900px 300px at 50% 18%, rgba(201, 169, 97, 0.14), transparent 60%);
    opacity: 0.9;
}

.overlay-dark {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
}

.hero-content {
    position: relative;
    z-index: 2;
}

/* -------------------------------------
   9B. THANK YOU UTILITIES
   ------------------------------------- */
.full-height-center {
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.icon-huge {
    font-size: 5rem;
    margin-bottom: 2rem;
    display: inline-block;
    filter: drop-shadow(0 0 20px rgba(201, 169, 97, 0.4));
}

.divider-gold {
    border: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
}

/* -------------------------------------
   8. SERVICES GRID
   ------------------------------------- */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.service-item {
    text-align: center;
    padding: 3rem 2rem;
    border: 1px solid rgba(201, 169, 97, 0.2);
}

/* Services page filter */
.filter-tabs {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.22);
    color: rgba(245, 245, 245, 0.78);
    padding: 12px 18px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
}

.filter-btn:hover,
.filter-btn.active {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.65);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    background: rgba(201, 169, 97, 0.10);
    color: rgba(245, 245, 245, 0.92);
}

.icon-large {
    font-size: 2rem;
}

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.90);
    border-bottom: 1px solid rgba(201, 169, 97, 0.35);
    padding-bottom: 6px;
    transition: border-color 0.25s var(--ease-out), transform 0.25s var(--ease-out), color 0.25s var(--ease-out);
}

.btn-link:hover {
    color: var(--gold-1);
    border-color: rgba(201, 169, 97, 0.75);
    transform: translateY(-1px);
}

/* Team page */
.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.member-img {
    height: 400px;
    overflow: hidden;
    position: relative;
    border-bottom: 1px solid rgba(201, 169, 97, 0.35);
}

.member-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
    filter: grayscale(100%);
}

.team-card:hover .member-img img {
    transform: scale(1.06);
    filter: grayscale(0%);
}

.member-info {
    padding: 2rem 1.25rem;
}

.role {
    font-style: italic;
    color: rgba(245, 245, 245, 0.70);
    margin-bottom: 0.5rem;
}

.loc {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(245, 245, 245, 0.55);
}

/* Locations page */
.locations-grid {
    display: grid;
    gap: 4rem;
}

.location-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    overflow: hidden;
    padding: 2rem;
}

.loc-image {
    position: relative;
    height: 100%;
    min-height: 300px;
}

.loc-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    filter: grayscale(60%);
    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
}

.location-card:hover .loc-image img {
    transform: scale(1.04);
    filter: grayscale(0%);
}

.loc-details p {
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.loc-desc {
    color: rgba(245, 245, 245, 0.55);
}

.map-frame {
    border: 1px solid rgba(201, 169, 97, 0.18);
    border-radius: 14px;
    overflow: hidden;
    margin-bottom: 4rem;
}

.map-frame iframe {
    display: block;
    width: 100%;
    border: 0;
    filter: grayscale(100%) contrast(1.08) brightness(0.95);
}

/* Booking page */
.booking-progress {
    display: flex;
    justify-content: space-between;
    position: relative;
    padding: 0 1rem;
}

.booking-progress::before {
    content: '';
    position: absolute;
    top: 15px;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.10);
    z-index: 0;
}

.progress-step {
    position: relative;
    z-index: 1;
    text-align: center;
    width: 30px;
}

.progress-step span {
    display: flex;
    width: 30px;
    height: 30px;
    background: rgba(0, 0, 0, 0.65);
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 999px;
    align-items: center;
    justify-content: center;
    margin: 0 auto 0.5rem;
    color: rgba(245, 245, 245, 0.70);
    transition: all 0.3s var(--ease-out);
}

.progress-step.active span,
.progress-step.completed span {
    border-color: rgba(201, 169, 97, 0.70);
    color: var(--gold-1);
    background: rgba(10, 10, 12, 0.78);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.45);
}

.progress-step p {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: rgba(245, 245, 245, 0.55);
    display: none;
}

@media (min-width: 768px) {
    .progress-step p {
        display: block;
    }
}

.booking-container {
    min-height: 400px;
    padding: 2rem;
}

.form-step {
    display: none;
}

.form-step.active {
    display: block;
}

.selection-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}

.selection-card {
    cursor: pointer;
    position: relative;
}

.selection-card input {
    position: absolute;
    opacity: 0;
}

.card-vis {
    border: 1px solid rgba(201, 169, 97, 0.18);
    background: rgba(255, 255, 255, 0.03);
    padding: 2rem;
    text-align: center;
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out);
    border-radius: 14px;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.selection-card input:checked+.card-vis,
.selection-card:hover .card-vis {
    border-color: rgba(201, 169, 97, 0.65);
    background: rgba(201, 169, 97, 0.08);
    transform: translateY(-6px);
    box-shadow: 0 22px 70px rgba(0, 0, 0, 0.55);
}

.card-vis .icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold-1);
}

.card-vis small {
    display: block;
    margin-top: 0.5rem;
    color: rgba(245, 245, 245, 0.55);
    font-size: 11px;
    letter-spacing: 0.12em;
}

.services-list-select {
    display: grid;
    gap: 1rem;
    margin-top: 2rem;
}

.service-option-card {
    border: 1px solid rgba(201, 169, 97, 0.18);
    padding: 1rem 1.25rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.03);
}

.service-option-card:hover {
    border-color: rgba(201, 169, 97, 0.55);
    background: rgba(255, 255, 255, 0.05);
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
}

.service-option-card input {
    margin-left: 14px;
}

.slots-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(90px, 1fr));
    gap: 1rem;
    margin-top: 1rem;
}

.time-slot {
    padding: 10px 12px;
    text-align: center;
    border: 1px solid rgba(201, 169, 97, 0.20);
    border-radius: 12px;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out), background 0.25s var(--ease-out), border-color 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out);
    background: rgba(255, 255, 255, 0.03);
}

.time-slot:hover,
.time-slot.selected {
    background: rgba(201, 169, 97, 0.16);
    border-color: rgba(201, 169, 97, 0.70);
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.40);
}

.form-nav {
    display: flex;
    justify-content: space-between;
    border-top: 1px solid rgba(255, 255, 255, 0.10);
    padding-top: 2rem;
    gap: 1rem;
}

/* Gallery page */
.section-before-after {
    background-color: #050505;
}

.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.gallery-grid {
    column-count: 3;
    column-gap: 2rem;
}

.gallery-item {
    margin-bottom: 2rem;
    position: relative;
    break-inside: avoid;
    overflow: hidden;
    border-radius: 14px;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease-out), filter 0.6s var(--ease-out);
    filter: grayscale(35%);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.35s var(--ease-out);
    z-index: 2;
}

.view-icon {
    font-size: 2rem;
    color: var(--gold-1);
    transform: scale(0.8);
    opacity: 0;
    transition: transform 0.35s var(--ease-out), opacity 0.35s var(--ease-out);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-item:hover .view-icon {
    transform: scale(1);
    opacity: 1;
}

.gallery-item:hover img {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.gallery-item.hidden {
    display: none;
}

@media (max-width: 1024px) {
    .gallery-grid {
        column-count: 2;
    }
}

@media (max-width: 600px) {
    .gallery-grid {
        column-count: 1;
    }
}

.gallery-lightbox {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    display: none;
    align-items: center;
    justify-content: center;
    z-index: 2000;
}

.gallery-lightbox.active {
    display: flex;
}

.gallery-lightbox-inner {
    max-width: 80vw;
    max-height: 80vh;
    position: relative;
}

.gallery-lightbox-inner img {
    max-width: 100%;
    max-height: 100%;
    display: block;
}

.gallery-lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    font-size: 24px;
    color: #fff;
    cursor: pointer;
}

.before-after-wrapper {
    max-width: 900px;
    margin: 4rem auto 0;
}

.before-after-inner {
    position: relative;
    overflow: hidden;
    border-radius: 16px;
    border: 1px solid rgba(201, 169, 97, 0.18);
}

.before-after-inner img {
    width: 100%;
    display: block;
}

.before-after-after {
    position: absolute;
    top: 0;
    left: 0;
    width: 50%;
    height: 100%;
    overflow: hidden;
}

.before-after-after img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.before-after-handle {
    position: absolute;
    top: 0;
    left: 50%;
    width: 2px;
    height: 100%;
    background: rgba(201, 169, 97, 0.8);
    pointer-events: none;
}

.before-after-range {
    width: 100%;
    margin-top: 1.5rem;
}

/* About page */
.text-lead {
    font-size: 18px;
    margin-bottom: 2rem;
    color: rgba(245, 245, 245, 0.92);
}

.img-luxury {
    box-shadow: -20px 20px 0 rgba(201, 169, 97, 0.28);
    border: 1px solid rgba(255, 255, 255, 0.10);
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    text-align: center;
}

.stat-number {
    font-size: 56px;
    font-family: var(--font-heading);
    margin-bottom: 0.5rem;
}

.stat-label {
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--font-subheading);
    font-size: 12px;
    color: rgba(245, 245, 245, 0.70);
}

.quote-box {
    padding: 3rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 169, 97, 0.2);
    position: relative;
    border-radius: 16px;
}

.quote-icon {
    font-size: 2rem;
    margin-bottom: 1.5rem;
}

.quote-text {
    font-size: 24px;
    font-style: italic;
    margin-bottom: 1.5rem;
    line-height: 1.6;
    color: rgba(245, 245, 245, 0.92);
}

.quote-author {
    font-style: normal;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-family: var(--font-subheading);
}

.service-icon {
    color: var(--gold-1);
    font-size: 48px;
    margin-bottom: 1.5rem;
}

.service-price {
    font-family: var(--font-heading);
    font-size: 24px;
    color: var(--gold-1);
    margin: 1rem 0;
    font-weight: 700;
}

.services-grid-home {
    margin-top: 3rem;
}

.service-card {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.service-image {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.service-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(40%);
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.service-body {
    padding: 2.5rem 2rem 2.75rem;
}

.service-description {
    font-size: 16px;
    color: var(--color-off-white);
    margin-bottom: 1.5rem;
}

.service-card:hover .service-image {
    transform: none;
}

.service-card:hover .service-image img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.service-card h3 {
    margin-bottom: 0.75rem;
}

.service-card .service-icon {
    margin-bottom: 1.25rem;
}

.service-card .service-price {
    margin-top: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-preview-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    margin-top: 3rem;
}

.team-preview-card {
    display: flex;
    flex-direction: column;
}

.team-photo-wrapper {
    overflow: hidden;
    border-radius: 4px;
}

.team-photo {
    width: 100%;
    height: 280px;
    object-fit: cover;
    filter: grayscale(100%);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.team-preview-card:hover .team-photo {
    transform: scale(1.05);
    filter: grayscale(0%);
}

.team-meta {
    padding-top: 1.5rem;
}

.team-role {
    font-size: 14px;
    color: var(--gold-light);
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.75rem;
}

.team-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.team-tags span {
    border: 1px solid rgba(201, 169, 97, 0.4);
    border-radius: 999px;
    padding: 4px 12px;
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--color-off-white);
}

.team-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.team-social {
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.5);
    color: var(--gold-1);
}

.team-social:hover {
    box-shadow: 0 0 20px rgba(201, 169, 97, 0.4);
}

.locations-grid-home {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
}

.location-card-home {
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.location-photo {
    height: 220px;
    position: relative;
    overflow: hidden;
}

.location-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(35%);
    transform: scale(1.02);
    transition: transform 0.6s ease, filter 0.6s ease;
}

.location-card-home:hover .location-photo img {
    transform: scale(1.08);
    filter: grayscale(0%);
}

.location-body {
    padding: 2rem 2rem 1.5rem;
}

.location-address,
.location-phone,
.location-hours {
    font-size: 14px;
    color: var(--color-off-white);
    margin-bottom: 0.5rem;
}

/* -------------------------------------
  8B. PRICES
  ------------------------------------- */
.prices-tabs {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin: 3rem auto 2.5rem;
    flex-wrap: wrap;
}

.prices-tab {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(201, 169, 97, 0.22);
    color: var(--color-off-white);
    padding: 12px 18px;
    font-size: 12px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    cursor: pointer;
    transition: transform 0.35s var(--ease-out), background 0.35s var(--ease-out), border-color 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out);
}

.prices-tab:hover {
    transform: translateY(-2px);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.45);
    border-color: rgba(201, 169, 97, 0.55);
}

.prices-tab.active {
    background: rgba(201, 169, 97, 0.14);
    border-color: rgba(201, 169, 97, 0.7);
}

.prices-panel {
    display: none;
}

.prices-panel.active {
    display: block;
}

.prices-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.price-card {
    padding: 2.25rem 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    min-height: 260px;
    border: 1px solid rgba(201, 169, 97, 0.18);
}

.price-desc {
    font-size: 14px;
    color: var(--color-gray);
    line-height: 1.7;
    margin-top: 0.75rem;
}

.price-meta {
    display: flex;
    gap: 12px;
    align-items: center;
    margin: 1.25rem 0 0.85rem;
    flex-wrap: wrap;
}

.price-time,
.price-featured {
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--color-off-white);
    border: 1px solid rgba(201, 169, 97, 0.28);
    border-radius: 999px;
    padding: 6px 10px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.price-featured {
    color: var(--gold-1);
    border-color: rgba(201, 169, 97, 0.55);
}

.price-value {
    display: flex;
    align-items: baseline;
    gap: 8px;
    margin: 0.25rem 0 1.25rem;
}

.price-euro {
    font-family: var(--font-heading);
    color: var(--gold-1);
    font-size: 18px;
}

.price-amount {
    font-family: var(--font-heading);
    font-size: 32px;
    color: var(--gold-1);
    letter-spacing: 0.02em;
}

.location-address i,
.location-phone i {
    margin-right: 8px;
    color: var(--gold-1);
}

.location-phone a {
    color: var(--color-off-white);
}

.location-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 1rem 0 1.5rem;
}

.location-map {
    border-top: 1px solid rgba(201, 169, 97, 0.2);
}

.location-map iframe {
    width: 100%;
    height: 220px;
    border: 0;
    filter: grayscale(100%) contrast(1.1) brightness(0.9);
}

.visual-teaser {
    padding-top: 0;
    padding-bottom: 0;
}

.visual-teaser-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(0, 1fr);
}

.visual-teaser-image {
    height: 600px;
    position: relative;
    overflow: hidden;
}

.visual-teaser-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    filter: grayscale(25%) contrast(1.04) brightness(0.86);
    transform: scale(1.02);
    transition: transform 0.8s var(--ease-out), filter 0.8s var(--ease-out);
}

.visual-teaser:hover .visual-teaser-image img {
    transform: scale(1.06);
    filter: grayscale(0%) contrast(1.04) brightness(0.9);
}

.visual-teaser-copy {
    display: flex;
    align-items: center;
    justify-content: center;
}

.visual-teaser-inner {
    max-width: 480px;
    padding: 4rem 3rem;
}

/* -------------------------------------
   9. FOOTER
   ------------------------------------- */
.main-footer {
    background-color: #050505;
    padding: 80px 0 40px;
    border-top: 1px solid #1a1a1a;
    position: relative;
    overflow: hidden;
}

.main-footer::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(900px 280px at 20% 10%, rgba(201, 169, 97, 0.12), transparent 60%),
        radial-gradient(900px 280px at 80% 90%, rgba(255, 215, 0, 0.06), transparent 60%);
    opacity: 0.95;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.5fr;
    gap: 4rem;
    margin-bottom: 4rem;
}

.footer-brand h3 {
    font-size: 24px;
    margin-bottom: 1rem;
}

.social-links {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 999px;
    border: 1px solid rgba(201, 169, 97, 0.38);
    background: rgba(255, 255, 255, 0.04);
    color: var(--gold-1);
    transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out), border-color 0.35s var(--ease-out), background 0.35s var(--ease-out);
}

.social-links a:hover {
    transform: translateY(-2px);
    border-color: rgba(201, 169, 97, 0.75);
    background: rgba(201, 169, 97, 0.10);
    box-shadow: 0 18px 60px rgba(0, 0, 0, 0.55), var(--gold-glow);
}

.footer-brand p {
    color: #888;
    font-size: 14px;
    margin-top: 1rem;
}

.footer-col h4 {
    font-family: var(--font-body);
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 14px;
    color: #888;
    transition: color 0.3s;
}

.footer-links a:hover {
    color: var(--gold-1);
}

.newsletter-input {
    width: 100%;
    padding: 12px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid #333;
    color: #fff;
    margin-bottom: 1rem;
}

.newsletter-form p,
.footer-col p {
    color: rgba(245, 245, 245, 0.62);
    font-size: 14px;
    line-height: 1.7;
}

.newsletter-btn {
    width: 100%;
}

.copyright {
    border-top: 1px solid #1a1a1a;
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    color: #555;
    font-size: 13px;
}

/* -------------------------------------
   10. MOBILE RESPONSIVE
   ------------------------------------- */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 64px;
    }

    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .prices-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }

    .team-preview-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .locations-grid-home {
        grid-template-columns: repeat(2, 1fr);
    }

    .visual-teaser-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 80px;
    }

    .hero-title {
        font-size: 40px;
    }

    .section-title {
        font-size: 32px;
    }

    .services-grid {
        grid-template-columns: 1fr;
    }

    .prices-grid {
        grid-template-columns: 1fr;
    }

    .team-preview-grid {
        grid-template-columns: 1fr;
    }

    .locations-grid-home {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .nav-desktop {
        display: none;
    }

    .menu-toggle {
        display: block;
    }

    .logo span {
        font-size: 20px;
    }
}

/* Service Modals - Improved UI */
.service-modals-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(4px);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
    gap: 24px;
    flex-wrap: wrap;
}

.service-modals-overlay.active {
    display: flex;
}

.service-modal-wrapper {
    position: relative;
    width: 100%;
    max-width: 550px;
    animation: modalSlideIn 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    flex-shrink: 0;
}

@keyframes modalSlideIn {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-close-btn {
    position: absolute;
    top: 16px;
    right: 16px;
    background: rgba(245, 245, 245, 0.1);
    border: none;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: var(--gold-1);
    font-size: 18px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10;
}

.modal-close-btn:hover {
    background: rgba(245, 245, 245, 0.2);
    transform: rotate(90deg);
}

.service-modal {
    background: #111;
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 16px;
    padding: 32px;
    max-height: 90vh;
    overflow-y: auto;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.8);
}

.service-modal::-webkit-scrollbar {
    width: 6px;
}

.service-modal::-webkit-scrollbar-track {
    background: rgba(245, 245, 245, 0.05);
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb {
    background: rgba(212, 175, 55, 0.3);
    border-radius: 10px;
}

.service-modal::-webkit-scrollbar-thumb:hover {
    background: rgba(212, 175, 55, 0.5);
}

.modal-header {
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-header h2 {
    margin: 0;
    font-size: 24px;
    font-family: var(--font-heading);
    letter-spacing: 0.05em;
}

.modal-header i {
    margin-right: 10px;
    opacity: 0.8;
}

/* Form Styling for Modals */
.service-form .form-group {
    margin-bottom: 20px;
}

.form-group-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-family: var(--font-subheading);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(245, 245, 245, 0.75);
}

.text-danger {
    color: #ff6b6b;
}

.form-control {
    width: 100%;
    padding: 10px 14px;
    background: rgba(245, 245, 245, 0.05);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    color: #f5f5f5;
    font-family: var(--font-body);
    font-size: 14px;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    background: rgba(245, 245, 245, 0.08);
    border-color: var(--gold-1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.form-control option {
    background: #1a1a1a;
    color: #f5f5f5;
}

textarea.form-control {
    resize: vertical;
    min-height: 80px;
}

.form-group-checkbox {
    display: flex;
    align-items: flex-end;
    height: 100%;
}

.checkbox-label {
    display: flex;
    align-items: center;
    gap: 10px;
    cursor: pointer;
    color: rgba(245, 245, 245, 0.8);
    font-size: 14px;
    transition: color 0.3s ease;
    user-select: none;
}

.form-checkbox {
    width: 18px;
    height: 18px;
    cursor: pointer;
    accent-color: var(--gold-1);
}

.checkbox-label:hover {
    color: var(--gold-1);
}

.modal-actions {
    display: flex;
    gap: 12px;
    justify-content: flex-end;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

.modal-actions .btn {
    min-width: 120px;
}

/* Responsive Design */
@media (max-width: 1200px) {
    .service-modals-overlay {
        flex-direction: column;
        align-items: center;
    }

    .service-modal-wrapper {
        max-width: 500px;
        width: 100%;
    }
}

@media (max-width: 768px) {
    .service-modals-overlay {
        padding: 16px;
    }

    .service-modal-wrapper {
        max-width: 100%;
        width: 100%;
    }

    .service-modal {
        padding: 24px;
        max-height: 85vh;
    }

    .form-group-row {
        grid-template-columns: 1fr;
    }

    .modal-header h2 {
        font-size: 20px;
    }

    .modal-actions {
        flex-direction: column-reverse;
    }

    .modal-actions .btn {
        width: 100%;
    }
}

/* -------------------------------------
   CUSTOM CURSOR
   ------------------------------------- */
.cursor-dot,
.cursor-outline {
    position: fixed;
    top: 0;
    left: 0;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    z-index: 9999;
    pointer-events: none;
}

.cursor-dot {
    width: 8px;
    height: 8px;
    background-color: var(--gold-1);
    /* mix-blend-mode: difference; Optional: cool effect but can be buggy on some backgrounds */
}

.cursor-outline {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(201, 169, 97, 0.5);
    transition: width 0.3s, height 0.3s, background-color 0.3s;
}

.cursor-outline.is-hovering {
    background-color: rgba(201, 169, 97, 0.1);
    border-color: transparent;
    mix-blend-mode: overlay;
}

@media (max-width: 1024px) {

    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

/* -------------------------------------
   ADMIN MODALS
   ------------------------------------- */
.modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.85);
    /* Darker overlay */
    backdrop-filter: blur(5px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.active {
    display: flex;
    opacity: 1;
}

.admin-modal-card {
    background: #1a1a1a;
    border: 1px solid rgba(201, 169, 97, 0.2);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.5);
    width: 100%;
    max-width: 600px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.modal.active .admin-modal-card {
    transform: scale(1);
}

/* Scrollbar for modal */
.admin-modal-card::-webkit-scrollbar {
    width: 6px;
}

.admin-modal-card::-webkit-scrollbar-thumb {
    background: rgba(201, 169, 97, 0.3);
    border-radius: 3px;
}

/* -------------------------------------
   RESPONSIVE ADMIN TABLES
   ------------------------------------- */
.admin-table-wrap {
    width: 100%;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 1rem;
    border-radius: var(--radius-sm);
    border: 1px solid rgba(255, 255, 255, 0.05);
}

.admin-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
    /* Force scroll on small screens */
}

/* -------------------------------------
   PREMIUM STATS CARDS (Chi Siamo)
   ------------------------------------- */
.stats-card {
    position: relative;
    padding: 2rem 1.5rem;
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.05), rgba(201, 169, 97, 0.02));
    border: 1px solid rgba(201, 169, 97, 0.2);
    border-radius: 16px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stats-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold-1), transparent);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stats-card:hover::before {
    opacity: 1;
}

.stats-card:hover {
    transform: translateY(-8px);
    border-color: rgba(201, 169, 97, 0.5);
    background: linear-gradient(135deg, rgba(201, 169, 97, 0.1), rgba(201, 169, 97, 0.05));
    box-shadow: 0 20px 40px rgba(201, 169, 97, 0.2);
}

.stats-inner {
    position: relative;
    z-index: 2;
}

.stats-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100px;
    height: 100px;
    background: radial-gradient(circle, rgba(201, 169, 97, 0.3), transparent 70%);
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}

.stats-card:hover .stats-glow {
    opacity: 1;
}

.stats-number {
    font-weight: 700;
    letter-spacing: -0.02em;
    text-shadow: 0 0 20px rgba(201, 169, 97, 0.5);
    transition: all 0.3s ease;
}

.stats-card:hover .stats-number {
    transform: scale(1.1);
    text-shadow: 0 0 30px rgba(201, 169, 97, 0.8);
}

@media (max-width: 768px) {
    .stats-card {
        padding: 1.5rem 1rem;
    }

    .stats-number {
        font-size: 2.5rem !important;
    }
}