/* ==========================================
   SINTOWN TATTOO STUDIO - STYLES
   Dark theme with gold/silver accents
   Inspired by logo: black, gold, silver/platinum
   ========================================== */

/* ---- CSS Variables ---- */
:root {
    /* Gold-inspired palette from logo */
    --primary: #C8A84E;
    --primary-light: #DCC06A;
    --primary-dark: #A88A30;
    --primary-glow: rgba(200, 168, 78, 0.3);
    --accent-silver: #B8B8C0;
    --accent-silver-light: #D0D0D8;
    --accent-cream: #F0E8D0;
    --accent-cream-dark: #C4B490;

    /* Dark backgrounds */
    --dark-bg: #0A0A0A;
    --darker-bg: #050505;
    --card-bg: rgba(200, 168, 78, 0.04);
    --card-border: rgba(200, 168, 78, 0.12);
    --card-hover-border: rgba(200, 168, 78, 0.35);
    --glass-bg: rgba(200, 168, 78, 0.05);
    --glass-border: rgba(200, 168, 78, 0.1);

    /* Text */
    --text-primary: #F0EAE0;
    --text-secondary: #A09888;
    --text-muted: #6B6058;

    /* Fonts */
    --font-heading: 'Cinzel', 'Oswald', serif;
    --font-body: 'Inter', sans-serif;
    --font-accent: 'Oswald', sans-serif;

    /* Transitions & Radius */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: var(--dark-bg);
    color: var(--text-primary);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

img {
    max-width: 100%;
    display: block;
}

ul {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    width: 100%;
}

/* ---- Utility Classes ---- */
.glass-card {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    transition: var(--transition);
}

.glass-card:hover {
    border-color: var(--card-hover-border);
    background: rgba(200, 168, 78, 0.07);
    box-shadow: 0 8px 32px rgba(200, 168, 78, 0.08);
}

.glass-card-accent {
    background: linear-gradient(135deg, rgba(200, 168, 78, 0.08) 0%, rgba(184, 184, 192, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(200, 168, 78, 0.18);
    border-radius: var(--radius);
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    font-family: var(--font-accent);
    font-weight: 600;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border-radius: var(--radius-xs);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    white-space: nowrap;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0A0A0A;
    border-color: transparent;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-primary:hover {
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(200, 168, 78, 0.4);
}

.btn-glass {
    background: rgba(200, 168, 78, 0.1);
    color: var(--accent-cream);
    border: 2px solid rgba(200, 168, 78, 0.25);
    backdrop-filter: blur(10px);
}

.btn-glass:hover {
    background: rgba(200, 168, 78, 0.2);
    border-color: rgba(200, 168, 78, 0.5);
    transform: translateY(-2px);
}

.btn-sm {
    padding: 10px 20px;
    font-size: 0.8rem;
}

/* ---- Section Styles ---- */
.section {
    padding: 100px 0;
    position: relative;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-tag {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 5vw, 3.2rem);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cream);
    margin-bottom: 16px;
}

.section-line {
    width: 60px;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent-silver));
    margin: 0 auto 20px;
    border-radius: 2px;
}

.section-subtitle {
    max-width: 600px;
    margin: 0 auto;
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.7;
}

/* ==========================================
   HEADER / NAVBAR
   ========================================== */
.header-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 10000;
    transition: transform 0.4s ease;
}

.header-wrapper.scrolled {
    transform: translateY(-4px);
}

.header-wrapper .info-bar {
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    max-height: 50px;
    overflow: hidden;
}

.header-wrapper.scrolled .info-bar {
    max-height: 0;
    padding: 0;
    opacity: 0;
    pointer-events: none;
}

.info-bar {
    background: rgba(200, 168, 78, 0.06);
    backdrop-filter: blur(8px);
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0.08);
}

.info-bar .splide__list {
    display: flex;
    justify-content: center;
    align-items: center;
}

.info-bar .splide__slide {
    display: flex;
    justify-content: center;
    align-items: center;
    white-space: nowrap;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.info-item i {
    color: var(--primary);
    font-size: 0.85rem;
}

.info-item a:hover {
    color: var(--primary);
}

.info-bar-splide .splide__pagination,
.info-bar-splide .splide__arrow {
    display: none !important;
}

/* Main Header */
.main-header {
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    padding: 12px 0;
    border-bottom: 1px solid transparent;
    transition: background 0.5s ease, backdrop-filter 0.5s ease, border-bottom 0.5s ease, box-shadow 0.5s ease;
}

.header-wrapper.scrolled .main-header {
    background: rgba(10, 10, 10, 0.94);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid rgba(200, 168, 78, 0.12);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.main-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
}

.logo-img {
    height: 55px;
    width: auto;
    border-radius: 10px;
    transition: var(--transition);
    filter: brightness(1.1);
}

.logo-img:hover {
    transform: scale(1.05);
    filter: brightness(1.3) drop-shadow(0 0 12px var(--primary-glow));
}

.main-nav ul {
    display: flex;
    align-items: center;
    gap: 8px;
}

.main-nav a {
    font-family: var(--font-accent);
    font-weight: 500;
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    padding: 8px 14px;
    border-radius: var(--radius-xs);
    position: relative;
    color: var(--text-secondary);
    transition: var(--transition);
}

.main-nav a:hover {
    color: var(--accent-cream);
}

.main-nav a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 50%;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: all 0.3s ease;
    transform: translateX(-50%);
    border-radius: 1px;
}

.main-nav a:not(.btn-nav):hover::after {
    width: 60%;
}

.btn-nav {
    background: rgba(200, 168, 78, 0.15) !important;
    color: var(--accent-cream) !important;
    padding: 10px 22px !important;
    border-radius: var(--radius-xs) !important;
    font-weight: 700 !important;
    border: 2px solid var(--primary) !important;
    box-shadow: 0 4px 15px rgba(200, 168, 78, 0.2);
    backdrop-filter: blur(10px);
}

.btn-nav::after {
    display: none !important;
}

.btn-nav:hover {
    transform: translateY(-2px);
    background: var(--primary) !important;
    color: #0A0A0A !important;
    border-color: var(--primary) !important;
    box-shadow: 0 6px 25px rgba(200, 168, 78, 0.4) !important;
}

.mobile-menu-toggle {
    display: none;
    font-size: 1.6rem;
    cursor: pointer;
    color: var(--text-primary);
    z-index: 10001;
    padding: 8px;
}

.mobile-menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba(5, 5, 5, 0.92);
    backdrop-filter: blur(15px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
    z-index: 9997;
    pointer-events: none;
}

.mobile-menu-overlay.active {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

/* ==========================================
   HERO - IMAGE BACKGROUND
   ========================================== */
.hero {
    position: relative;
    height: 100vh;
    min-height: 756px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg-image {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    animation: heroZoom 20s ease-in-out infinite alternate;
}

@keyframes heroZoom {
    0% { transform: scale(1); }
    100% { transform: scale(1.08); }
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        rgba(10, 10, 10, 0.7) 0%,
        rgba(10, 10, 10, 0.4) 30%,
        rgba(10, 10, 10, 0.5) 60%,
        rgba(10, 10, 10, 0.95) 100%
    );
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.hero-logo-badge {
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeSlideUp 1s ease forwards 0.2s;
}

.hero-logo-img {
    width: 180px;
    height: 180px;
    border-radius: 16px;
    border: 3px solid rgba(200, 168, 78, 0.4);
    box-shadow: 0 0 40px rgba(200, 168, 78, 0.2), 0 0 80px rgba(200, 168, 78, 0.1);
    object-fit: cover;
}

.hero-badge {
    display: inline-block;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 4px;
    color: var(--primary);
    padding: 8px 20px;
    border: 1px solid rgba(200, 168, 78, 0.3);
    border-radius: 30px;
    margin-bottom: 24px;
    backdrop-filter: blur(10px);
    background: rgba(200, 168, 78, 0.1);
    opacity: 0;
    animation: fadeSlideUp 0.8s ease forwards 0.4s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(3rem, 10vw, 7rem);
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 6px;
    line-height: 0.95;
    margin-bottom: 8px;
    color: var(--accent-cream);
    text-shadow: 0 4px 30px rgba(0, 0, 0, 0.5), 0 0 60px rgba(200, 168, 78, 0.15);
}

.hero-subtitle-line {
    font-family: var(--font-heading);
    font-size: clamp(1.2rem, 3vw, 2rem);
    text-transform: uppercase;
    letter-spacing: 12px;
    color: var(--primary);
    margin-bottom: 20px;
    font-weight: 400;
}

.hero-tagline {
    font-size: clamp(1rem, 2.5vw, 1.3rem);
    color: var(--text-secondary);
    margin-bottom: 40px;
    line-height: 1.6;
    max-width: 500px;
}

.hero-btns {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    margin-bottom: 60px;
}

.hero-button {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.6s ease forwards;
    animation-delay: 0.8s;
}

.hero-button:nth-child(2) {
    animation-delay: 0.95s;
}

.hero-scroll-hint {
    display: flex;
    align-items: center;
    gap: 10px;
    color: var(--text-muted);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.hero-scroll-hint i {
    animation: bounceDown 2s ease infinite;
}

@keyframes bounceDown {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(6px); }
}

@keyframes fadeSlideUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeSlideIn {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

/* Letter animation helpers */
.tricks { opacity: 1; }
.tricks .letter { opacity: 0; display: inline-block; font-family: inherit !important; }
.tricksword { white-space: nowrap; display: inline-block; font-family: inherit !important; }
.animdiv {
    opacity: 0;
    transform: translateY(20px);
    animation: fadeSlideUp 0.8s ease forwards 0.6s;
}
.menu_link { opacity: 0; }

/* ==========================================
   ABOUT
   ========================================== */
.about-section {
    background: var(--darker-bg);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
}

.about-images {
    display: grid;
    gap: 16px;
}

.about-slider {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 1px solid var(--glass-border);
}

.about-slider .splide__track,
.about-slider .splide__list,
.about-slider .splide__slide {
    height: 100%;
}

.about-slider .splide__slide {
    position: relative;
}

.about-slider .splide__slide img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: var(--radius);
}

.about-slide-badge {
    position: absolute;
    bottom: 16px;
    left: 16px;
    font-family: var(--font-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary, var(--gold));
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 5px 12px;
    border-radius: 4px;
    border: 1px solid rgba(200, 168, 78, 0.2);
    z-index: 2;
}

.about-slider .splide__pagination {
    bottom: 12px;
}

.about-slider .splide__pagination__page {
    background: rgba(240, 232, 208, 0.3);
    width: 8px;
    height: 8px;
}

.about-slider .splide__pagination__page.is-active {
    background: var(--primary);
    transform: scale(1.3);
}

.about-slider .splide__arrow {
    display: none !important;
}

.about-content .glass-card {
    padding: 40px;
}

.about-content h3 {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cream);
    margin-bottom: 20px;
}

.about-content p {
    color: var(--text-secondary);
    margin-bottom: 16px;
    font-size: 0.95rem;
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 1px solid var(--glass-border);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 700;
    color: var(--primary);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ==========================================
   GALLERY
   ========================================== */
.gallery-section {
    background: var(--dark-bg);
    padding-bottom: 80px;
}

/* Gallery Filter Buttons */
.gallery-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 24px;
    margin-bottom: 10px;
}

.gallery-filter-btn {
    background: rgba(200, 168, 78, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.82rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 10px 22px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    line-height: 1.3;
}

.filter-handle {
    display: block;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.5px;
    text-transform: none;
    opacity: 0.65;
    margin-top: 3px;
}

.gallery-filter-btn:hover {
    background: rgba(200, 168, 78, 0.15);
    border-color: rgba(200, 168, 78, 0.4);
    color: var(--gold);
}

.gallery-filter-btn.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(200, 168, 78, 0.35);
}

.gallery-slider-wrap {
    overflow: hidden;
}

.gallery-splide .splide__track {
    overflow: visible !important;
}

.gallery-splide .splide__slide {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease, opacity 0.4s ease;
}

.gallery-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
    transition: transform 0.6s ease;
}

.gallery-splide .splide__slide:hover .gallery-img {
    transform: scale(1.05);
}

.gallery-splide .gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.75) 0%, transparent 50%);
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.4s ease;
}

.slide-info {
    position: absolute;
    bottom: 20px;
    left: 20px;
    z-index: 2;
    opacity: 1;
    transform: translateY(0);
    transition: all 0.4s ease;
}

.slide-artist {
    font-family: var(--font-accent);
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--primary);
    background: rgba(10, 10, 10, 0.7);
    backdrop-filter: blur(10px);
    padding: 6px 14px;
    border-radius: 4px;
    border: 1px solid rgba(200, 168, 78, 0.2);
}

.gallery-splide .splide__pagination {
    display: none !important;
}

.gallery-splide .splide__arrow {
    background: rgba(200, 168, 78, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 78, 0.2);
    width: 48px;
    height: 48px;
    opacity: 1;
    transition: var(--transition);
}

.gallery-splide .splide__arrow:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.gallery-splide .splide__arrow:hover svg {
    fill: #0A0A0A;
}

.gallery-splide .splide__arrow svg {
    fill: var(--accent-cream);
    width: 18px;
    height: 18px;
}

/* ==========================================
   PROMOTIONS
   ========================================== */
.promo-section {
    background: var(--darker-bg);
    padding: 80px 0;
}

.promo-banner {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 40px;
    padding: 50px;
    align-items: center;
    overflow: hidden;
}

.promo-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-heading);
    font-size: 0.95rem;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--primary);
    margin-bottom: 12px;
}

.promo-tag i {
    font-size: 1rem;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

.promo-content h2 {
    font-family: var(--font-heading);
    font-size: 2.4rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cream);
    margin-bottom: 16px;
}

.promo-content p {
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 24px;
    line-height: 1.7;
}

.promo-details {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-bottom: 30px;
}

.promo-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.promo-item i {
    color: var(--primary);
}

.promo-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.promo-images img {
    width: 100%;
    height: 220px;
    object-fit: cover;
    border-radius: var(--radius-sm);
    border: 1px solid var(--glass-border);
}

/* Friday 13th special styling */
.friday13-banner {
    grid-template-columns: 1fr 1fr;
    overflow: hidden;
    border: 1px solid rgba(200, 168, 78, 0.25);
    position: relative;
}

.friday13-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(200, 168, 78, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.friday13-images {
    display: flex;
    align-items: center;
    justify-content: center;
    grid-template-columns: 1fr;
}

.friday13-hero-img {
    width: 100%;
    max-width: 450px;
    height: auto !important;
    border-radius: var(--radius) !important;
    border: 2px solid rgba(200, 168, 78, 0.3) !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.4), 0 0 40px rgba(200, 168, 78, 0.1);
    transition: transform 0.4s ease;
}

.friday13-hero-img:hover {
    transform: scale(1.03);
}

/* Gold link styling */
.gold-link {
    color: var(--primary);
    font-weight: 600;
    border-bottom: 1px solid rgba(200, 168, 78, 0.3);
    transition: var(--transition);
}

.gold-link:hover {
    color: var(--primary-light);
    border-bottom-color: var(--primary);
}

/* ==========================================
   AFTERCARE
   ========================================== */
.aftercare-section {
    background: var(--dark-bg);
}

.aftercare-tabs {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 24px;
    margin-bottom: 32px;
}

.aftercare-tab {
    background: rgba(200, 168, 78, 0.06);
    border: 1px solid rgba(200, 168, 78, 0.15);
    color: var(--text-secondary);
    font-family: var(--font-body, 'Inter', sans-serif);
    font-size: 0.9rem;
    font-weight: 500;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 12px 28px;
    border-radius: 30px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 8px;
}

.aftercare-tab:hover {
    background: rgba(200, 168, 78, 0.15);
    border-color: rgba(200, 168, 78, 0.4);
    color: var(--gold);
}

.aftercare-tab.active {
    background: var(--gold);
    color: var(--bg-primary);
    border-color: var(--gold);
    box-shadow: 0 4px 20px rgba(200, 168, 78, 0.35);
}

.aftercare-panel {
    display: none;
}

.aftercare-panel.active {
    display: block;
    animation: fadeSlideUp 0.5s ease;
}

.aftercare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.aftercare-card {
    padding: 32px;
}

.aftercare-icon {
    width: 55px;
    height: 55px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 12px;
    margin-bottom: 20px;
    font-size: 1.3rem;
    color: var(--primary);
}

.aftercare-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--accent-cream);
    margin-bottom: 16px;
}

.aftercare-card ul {
    list-style: none;
    padding: 0;
}

.aftercare-card li {
    position: relative;
    padding-left: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.5;
}

.aftercare-card li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
}

/* ==========================================
   CONTACT
   ========================================== */
.contact-section {
    background: var(--darker-bg);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 40px;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact-card {
    padding: 32px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 0;
}

.contact-item:not(:last-child) {
    border-bottom: 1px solid var(--glass-border);
}

.contact-icon {
    width: 45px;
    height: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.2);
    border-radius: 10px;
    flex-shrink: 0;
}

.contact-icon i {
    font-size: 1.1rem;
    color: var(--primary);
}

.contact-item h4 {
    font-family: var(--font-accent);
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--text-muted);
    margin-bottom: 4px;
}

.contact-item a,
.contact-item span {
    color: var(--text-primary);
    font-size: 0.95rem;
    line-height: 1.5;
}

.contact-item a:hover {
    color: var(--primary);
}

.hours-card {
    padding: 32px;
}

.hours-card h3 {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cream);
    margin-bottom: 20px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hours-card h3 i {
    color: var(--primary);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(200, 168, 78, 0.06);
}

.hours-row .day {
    color: var(--text-secondary);
    font-size: 0.9rem;
}

.hours-row .time {
    color: var(--text-primary);
    font-size: 0.9rem;
    font-weight: 500;
}

.hours-row.highlighted {
    background: rgba(200, 168, 78, 0.08);
    padding: 10px 12px;
    border-radius: 6px;
    margin: 2px -12px;
}

.hours-row.highlighted .time {
    color: var(--primary);
}

.map-card {
    height: 100%;
    min-height: 500px;
    padding: 8px;
    overflow: hidden;
}

.map-card iframe {
    width: 100%;
    height: 100%;
    min-height: 480px;
    border-radius: 12px;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
    background: #030303;
    border-top: 1px solid rgba(200, 168, 78, 0.1);
    padding: 60px 0 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid rgba(200, 168, 78, 0.08);
}

.footer-logo {
    height: 70px;
    border-radius: 10px;
    margin-bottom: 16px;
    border: 2px solid rgba(200, 168, 78, 0.2);
}

.footer-brand p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 20px;
    line-height: 1.6;
}

.footer-socials {
    display: flex;
    gap: 12px;
}

.footer-socials a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.08);
    border: 1px solid rgba(200, 168, 78, 0.15);
    color: var(--text-secondary);
    font-size: 1rem;
    transition: var(--transition);
}

.footer-socials a:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0A0A0A;
    transform: translateY(-3px);
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-heading);
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent-cream);
    margin-bottom: 20px;
}

.footer-links a {
    display: block;
    color: var(--text-muted);
    font-size: 0.9rem;
    padding: 5px 0;
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--primary);
    transform: translateX(4px);
}

.footer-contact p {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
    line-height: 1.6;
}

.footer-contact i {
    color: var(--primary);
    margin-right: 8px;
    width: 16px;
    text-align: center;
}

.footer-contact a {
    color: var(--text-muted);
}

.footer-contact a:hover {
    color: var(--primary);
}

.footer-bottom {
    text-align: center;
    padding: 24px 0;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================
   LIGHTBOX
   ========================================== */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(5, 5, 5, 0.96);
    backdrop-filter: blur(20px);
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.4s ease;
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-content {
    max-width: 90vw;
    max-height: 85vh;
    position: relative;
}

.lightbox-content img {
    max-width: 90vw;
    max-height: 85vh;
    object-fit: contain;
    border-radius: 8px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(200, 168, 78, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(200, 168, 78, 0.2);
    color: var(--accent-cream);
    cursor: pointer;
    transition: var(--transition);
    z-index: 10;
    font-size: 1.2rem;
}

.lightbox-close {
    top: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev,
.lightbox-next {
    top: 50%;
    transform: translateY(-50%);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-prev { left: 20px; }
.lightbox-next { right: 20px; }

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #0A0A0A;
}

.lightbox-caption {
    text-align: center;
    margin-top: 16px;
    color: var(--text-secondary);
    font-family: var(--font-accent);
    text-transform: uppercase;
    letter-spacing: 2px;
    font-size: 0.9rem;
}

/* ==========================================
   SCROLL ANIMATIONS
   ========================================== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-left.is-visible {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

.reveal-right.is-visible {
    opacity: 1;
    transform: translateX(0);
}

/* ==========================================
   OUR ARTISTS SECTION
   ========================================== */
.artists-section {
    background: var(--bg-secondary);
}

.artists-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 32px;
    margin-top: 50px;
}

.artist-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.artist-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 60px rgba(200, 168, 78, 0.18);
}

.artist-img-wrap {
    position: relative;
    width: 100%;
    aspect-ratio: 3 / 4;
    overflow: hidden;
}

.artist-profile-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    transition: transform 0.5s ease;
}

.artist-card:hover .artist-profile-img {
    transform: scale(1.05);
}

.artist-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, transparent 55%, rgba(10,10,10,0.85) 100%);
}

.artist-owner-badge {
    position: absolute;
    top: 14px;
    right: 14px;
    background: var(--gold);
    color: var(--bg-primary);
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 5px 12px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.artist-info {
    padding: 24px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex: 1;
}

.artist-name {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--gold);
    margin: 0;
}

.artist-aka {
    display: block;
    font-size: 0.75rem;
    font-weight: 400;
    font-style: italic;
    color: var(--text-secondary);
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-top: 2px;
    opacity: 0.8;
}

.artist-handle {
    font-size: 0.85rem;
    color: var(--text-secondary);
    letter-spacing: 0.5px;
}

.artist-handle a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.2s;
}

.artist-handle a:hover {
    color: var(--gold);
}

.artist-bio {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

.artist-stats {
    display: flex;
    gap: 20px;
}

.artist-stat {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.stat-num {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--gold);
}

.stat-lbl {
    font-size: 0.7rem;
    color: var(--text-muted, var(--text-secondary));
    text-transform: uppercase;
    letter-spacing: 1px;
}

.artist-gallery-preview {
    border-radius: var(--radius-sm, 8px);
    overflow: hidden;
}

.artist-preview-splide .splide__track {
    border-radius: var(--radius-sm, 8px);
    overflow: hidden;
}

.artist-preview-img {
    width: 100%;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    display: block;
}

.artist-preview-splide .splide__arrow {
    background: rgba(200, 168, 78, 0.7);
    width: 26px;
    height: 26px;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.artist-gallery-preview:hover .artist-preview-splide .splide__arrow {
    opacity: 1;
}

.artist-preview-splide .splide__arrow svg {
    width: 14px;
    height: 14px;
    fill: var(--bg-primary, #0a0a0a);
}

.artist-cta {
    margin-top: auto;
    align-self: flex-start;
}

/* ==========================================
   RESPONSIVE
   ========================================== */

/* Tablet */
@media (max-width: 1024px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }

    .aftercare-grid {
        grid-template-columns: 1fr;
    }

    .promo-banner {
        grid-template-columns: 1fr;
        padding: 36px;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .artists-grid {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .main-nav ul {
        display: flex !important;
        flex-direction: column;
        position: fixed;
        top: 0;
        right: -100%;
        width: 100%;
        height: 100vh;
        background: rgba(10, 10, 10, 0.98);
        backdrop-filter: blur(30px);
        padding: 120px 30px 40px;
        margin: 0;
        z-index: 9999;
        transition: right 0.5s cubic-bezier(0.4, 0, 0.2, 1);
        justify-content: flex-start;
        align-items: center;
        gap: 10px;
    }

    .main-nav.active ul {
        right: 0;
    }

    .main-nav.active li {
        opacity: 0;
    }

    .main-nav ul li {
        width: 100%;
        max-width: 400px;
    }

    .main-nav a {
        display: block;
        padding: 18px 30px !important;
        font-size: 1.2rem !important;
        letter-spacing: 3px;
        border: 1px solid rgba(200, 168, 78, 0.08);
        border-radius: var(--radius-sm);
        text-align: center;
        color: var(--text-primary) !important;
        background: rgba(200, 168, 78, 0.04);
    }

    .main-nav a:not(.btn-nav)::after {
        display: none;
    }

    .main-nav a:hover {
        background: rgba(200, 168, 78, 0.12) !important;
        border-color: rgba(200, 168, 78, 0.25) !important;
    }

    .btn-nav {
        margin-top: 10px !important;
    }

    .mobile-menu-toggle {
        display: block;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .section {
        padding: 70px 0;
    }

    .hero-title {
        font-size: clamp(2.5rem, 12vw, 4rem);
    }

    .hero-subtitle-line {
        font-size: clamp(1rem, 2.5vw, 1.4rem);
        letter-spacing: 6px;
    }

    .hero-logo-img {
        width: 120px;
        height: 120px;
    }

    .hero-btns {
        flex-direction: column;
        gap: 12px;
    }

    .hero-btns .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

    .about-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .gallery-img {
        aspect-ratio: 3 / 4;
    }

    .promo-images {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-socials {
        justify-content: center;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .info-bar {
        padding: 8px 0;
    }

    .info-item {
        font-size: 0.75rem;
    }

    .logo-img {
        height: 42px;
    }

    .map-card {
        min-height: 350px;
    }

    .map-card iframe {
        min-height: 330px;
    }

    .promo-banner {
        padding: 28px;
    }

    .promo-content h2 {
        font-size: 1.6rem;
    }

    .promo-details {
        flex-direction: column;
        gap: 10px;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .about-content .glass-card {
        padding: 24px;
    }

    .about-stats {
        gap: 12px;
    }

    .stat-number {
        font-size: 1.5rem;
    }

    .hero-badge {
        font-size: 0.7rem;
        letter-spacing: 2px;
        padding: 6px 14px;
    }

    .hero-logo-img {
        width: 100px;
        height: 100px;
    }
}

/* ==========================================
   BOOKING MODAL - Multi-Step Form
   ========================================== */
.booking-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.88);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 16px;
}

.booking-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.booking-modal {
    position: relative;
    width: 100%;
    max-width: 600px;
    background: linear-gradient(145deg, rgba(15, 15, 15, 0.98) 0%, rgba(8, 8, 8, 0.99) 100%);
    border: 1px solid var(--card-border);
    border-radius: var(--radius);
    padding: 0;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), opacity 0.35s ease;
    opacity: 0;
    max-height: 92vh;
    overflow-y: auto;
    overflow-x: hidden;
}

.booking-modal-overlay.active .booking-modal {
    transform: translateY(0) scale(1);
    opacity: 1;
}

.booking-modal-close {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(200, 168, 78, 0.1);
    border: 1px solid rgba(200, 168, 78, 0.2);
    color: var(--text-primary);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
    font-size: 0.95rem;
    z-index: 10;
}

.booking-modal-close:hover {
    background: rgba(200, 168, 78, 0.25);
    border-color: var(--primary);
    color: var(--primary);
    transform: rotate(90deg);
}

/* Progress Bar */
.booking-progress {
    height: 3px;
    background: rgba(200, 168, 78, 0.1);
    border-radius: var(--radius) var(--radius) 0 0;
    overflow: hidden;
}

.booking-progress-bar {
    height: 100%;
    width: 25%;
    background: linear-gradient(90deg, var(--primary), var(--primary-light));
    border-radius: 3px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
}

/* Step Dots */
.booking-steps-indicator {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 16px 24px 0;
}

.step-dot {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-accent);
    font-size: 0.72rem;
    font-weight: 600;
    color: var(--text-muted);
    background: rgba(200, 168, 78, 0.06);
    border: 1.5px solid rgba(200, 168, 78, 0.15);
    transition: var(--transition);
}

.step-dot.active {
    background: var(--primary);
    color: #0A0A0A;
    border-color: var(--primary);
    box-shadow: 0 0 12px var(--primary-glow);
}

.step-dot.completed {
    background: rgba(200, 168, 78, 0.2);
    color: var(--primary);
    border-color: var(--primary);
}

/* Steps */
.booking-step {
    display: none;
    padding: 24px 28px 8px;
    animation: stepFadeIn 0.35s ease;
}

.booking-step.active {
    display: block;
}

@keyframes stepFadeIn {
    from { opacity: 0; transform: translateX(16px); }
    to { opacity: 1; transform: translateX(0); }
}

.booking-step-header {
    text-align: center;
    margin-bottom: 24px;
}

.booking-step-header h2 {
    font-family: var(--font-heading);
    font-size: 1.35rem;
    color: var(--text-primary);
    margin-bottom: 6px;
    letter-spacing: 0.5px;
}

.booking-step-header p {
    color: var(--text-secondary);
    font-size: 0.85rem;
}

/* Substeps (shown/hidden based on service type) */
.booking-substep {
    display: none;
}

.booking-substep.active {
    display: block;
}

/* Service Type Buttons */
.booking-service-options {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.booking-service-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 28px 20px;
    background: rgba(200, 168, 78, 0.04);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-primary);
    text-align: center;
}

.booking-service-btn:hover {
    background: rgba(200, 168, 78, 0.1);
    border-color: rgba(200, 168, 78, 0.4);
    transform: translateY(-2px);
}

.booking-service-btn.selected {
    background: rgba(200, 168, 78, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 24px rgba(200, 168, 78, 0.15);
}

.service-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(200, 168, 78, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
    transition: var(--transition);
}

.booking-service-btn:hover .service-icon,
.booking-service-btn.selected .service-icon {
    background: var(--primary);
    color: #0A0A0A;
}

.booking-service-btn h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem;
    letter-spacing: 0.5px;
}

.booking-service-btn p {
    font-size: 0.78rem;
    color: var(--text-secondary);
}

/* Artist Selection Cards */
.booking-modal-artists {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.booking-artist-card {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px;
    background: rgba(200, 168, 78, 0.04);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-sm);
    text-decoration: none;
    transition: var(--transition);
    cursor: pointer;
    color: inherit;
}

.booking-artist-card:hover {
    background: rgba(200, 168, 78, 0.1);
    border-color: rgba(200, 168, 78, 0.4);
}

.booking-artist-card.selected {
    background: rgba(200, 168, 78, 0.12);
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(200, 168, 78, 0.12);
}

.booking-artist-card.selected .booking-artist-arrow {
    opacity: 1;
    transform: translateX(0);
    color: var(--primary);
}

.booking-artist-img { flex-shrink: 0; }

.booking-artist-img img {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--card-border);
    transition: var(--transition);
}

.booking-artist-card:hover .booking-artist-img img,
.booking-artist-card.selected .booking-artist-img img {
    border-color: var(--primary);
}

.booking-artist-info { flex: 1; min-width: 0; }

.booking-artist-info h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--text-primary);
    margin-bottom: 2px;
}

.booking-artist-handle {
    display: block;
    font-size: 0.78rem;
    color: var(--primary);
    margin-bottom: 2px;
}

.booking-artist-handle i { margin-right: 3px; }

.booking-artist-specialty {
    display: block;
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.booking-artist-price {
    display: block;
    font-size: 0.72rem;
    color: var(--text-muted);
    font-style: italic;
}

.booking-artist-arrow {
    flex-shrink: 0;
    color: var(--primary);
    font-size: 0.9rem;
    opacity: 0;
    transform: translateX(-8px);
    transition: var(--transition);
}

/* Form Fields */
.booking-form-fields {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form-group label {
    font-family: var(--font-accent);
    font-size: 0.78rem;
    color: var(--text-secondary);
    font-weight: 500;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}

.form-group label i {
    color: var(--primary);
    margin-right: 4px;
    width: 14px;
}

.required {
    color: #e74c3c;
}

.form-group input[type="text"],
.form-group input[type="tel"],
.form-group input[type="email"],
.form-group input[type="date"],
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 11px 14px;
    background: rgba(200, 168, 78, 0.04);
    border: 1.5px solid var(--card-border);
    border-radius: var(--radius-xs);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 0.88rem;
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    background: rgba(200, 168, 78, 0.08);
    box-shadow: 0 0 0 3px rgba(200, 168, 78, 0.1);
}

.form-group select {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23C8A84E' viewBox='0 0 16 16'%3E%3Cpath d='M7.247 11.14L2.451 5.658C1.885 5.013 2.345 4 3.204 4h9.592a1 1 0 0 1 .753 1.659l-4.796 5.48a1 1 0 0 1-1.506 0z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
}

.form-group select option,
.form-group select optgroup {
    background: #111;
    color: var(--text-primary);
}

.form-group textarea {
    resize: vertical;
    min-height: 80px;
}

.checkbox-label {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    cursor: pointer;
    font-size: 0.82rem;
    color: var(--text-secondary);
    line-height: 1.5;
    text-transform: none;
    font-family: var(--font-body);
    font-weight: 400;
    letter-spacing: 0;
}

.checkbox-label input[type="checkbox"] {
    width: 18px;
    height: 18px;
    margin-top: 2px;
    flex-shrink: 0;
    accent-color: var(--primary);
    cursor: pointer;
}

/* Review Summary */
/* Upload Gallery */
.field-hint {
    font-size: 0.8rem;
    color: var(--text-secondary);
    margin-bottom: 0.75rem;
    line-height: 1.4;
}

.optional {
    font-weight: 400;
    color: var(--text-secondary);
    font-size: 0.8em;
}

.upload-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 0.75rem;
}

.upload-slot {
    position: relative;
    aspect-ratio: 1;
    border-radius: 12px;
    overflow: hidden;
    border: 2px dashed rgba(200, 168, 78, 0.3);
    transition: border-color 0.3s ease;
}

.upload-slot:hover {
    border-color: var(--primary);
}

.upload-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.4rem;
    cursor: pointer;
    background: rgba(200, 168, 78, 0.05);
    transition: background 0.3s ease;
}

.upload-placeholder:hover {
    background: rgba(200, 168, 78, 0.12);
}

.upload-placeholder i {
    font-size: 1.5rem;
    color: var(--primary);
    opacity: 0.6;
}

.upload-placeholder span {
    font-size: 0.75rem;
    color: var(--text-secondary);
}

.upload-preview {
    width: 100%;
    height: 100%;
    position: relative;
}

.upload-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
}

.upload-remove {
    position: absolute;
    top: 6px;
    right: 6px;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.2);
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: background 0.3s ease;
}

.upload-remove:hover {
    background: var(--accent, #c0392b);
}

.booking-review {
    margin-top: 18px;
    padding: 16px;
    background: rgba(200, 168, 78, 0.04);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
}

.booking-review h3 {
    font-family: var(--font-heading);
    font-size: 0.95rem;
    color: var(--primary);
    margin-bottom: 12px;
    letter-spacing: 0.5px;
}

.booking-review h3 i {
    margin-right: 6px;
}

.review-items {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px 20px;
}

.review-item {
    display: flex;
    flex-direction: column;
    gap: 1px;
}

.review-item .review-label {
    font-size: 0.68rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-family: var(--font-accent);
}

.review-item .review-value {
    font-size: 0.85rem;
    color: var(--text-primary);
    word-break: break-word;
}

/* Success State */
.booking-success {
    text-align: center;
    padding: 20px 0;
}

.success-icon {
    font-size: 3.5rem;
    color: var(--primary);
    margin-bottom: 16px;
    animation: successPulse 0.6s ease;
}

@keyframes successPulse {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.2); }
    100% { transform: scale(1); opacity: 1; }
}

.booking-success h2 {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.booking-success p {
    color: var(--text-secondary);
    font-size: 0.9rem;
    max-width: 380px;
    margin: 0 auto 20px;
    line-height: 1.6;
}

.success-details {
    text-align: left;
    max-width: 340px;
    margin: 0 auto 24px;
    padding: 16px;
    background: rgba(200, 168, 78, 0.05);
    border: 1px solid var(--card-border);
    border-radius: var(--radius-sm);
    font-size: 0.82rem;
    color: var(--text-secondary);
}

.success-details .review-item {
    margin-bottom: 6px;
}

/* Navigation Buttons */
.booking-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 28px 24px;
    gap: 12px;
}

.booking-back-btn {
    opacity: 0;
    pointer-events: none;
    transition: var(--transition);
}

.booking-back-btn.visible {
    opacity: 1;
    pointer-events: auto;
}

.booking-next-btn,
.booking-submit-btn {
    margin-left: auto;
}

.booking-submit-btn {
    background: linear-gradient(135deg, #27ae60 0%, #1e8449 100%) !important;
    border-color: transparent !important;
}

.booking-submit-btn:hover {
    background: linear-gradient(135deg, #2ecc71 0%, #27ae60 100%) !important;
}

/* Form validation highlight */
.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #e74c3c;
    box-shadow: 0 0 0 3px rgba(231, 76, 60, 0.15);
}

.form-group .error-msg {
    font-size: 0.72rem;
    color: #e74c3c;
    margin-top: 2px;
}

/* ==========================================
   FLOATING BOOK NOW BUTTON
   ========================================== */
.floating-book-btn {
    position: fixed;
    bottom: 28px;
    right: 28px;
    z-index: 9990;
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 24px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: #0A0A0A;
    border: none;
    border-radius: 50px;
    font-family: var(--font-accent);
    font-weight: 700;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 1.2px;
    cursor: pointer;
    box-shadow: 0 6px 30px rgba(200, 168, 78, 0.35);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
}

.floating-book-btn.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.floating-book-btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(200, 168, 78, 0.5);
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
}

.floating-book-btn i {
    font-size: 1rem;
}

/* Pulse animation on floating button */
.floating-book-btn.visible::after {
    content: '';
    position: absolute;
    inset: -3px;
    border-radius: 50px;
    border: 2px solid var(--primary);
    opacity: 0;
    animation: floatingPulse 2.5s ease-in-out infinite;
}

@keyframes floatingPulse {
    0%, 100% { opacity: 0; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(1.06); }
}

/* Mobile adjustments for floating button */
@media (max-width: 768px) {
    .floating-book-btn {
        bottom: 20px;
        right: 20px;
        padding: 12px 20px;
        font-size: 0.8rem;
    }

    .floating-book-btn span {
        display: none;
    }

    .floating-book-btn {
        border-radius: 50%;
        width: 52px;
        height: 52px;
        padding: 0;
        justify-content: center;
    }

    .floating-book-btn i {
        margin: 0;
    }

    .booking-modal {
        padding: 0;
    }

    .booking-modal-close {
        top: 8px;
        right: 8px;
    }

    .booking-step {
        padding: 20px 18px 8px;
    }

    .booking-step-header h2 {
        font-size: 1.15rem;
    }

    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .booking-service-options {
        grid-template-columns: 1fr 1fr;
        gap: 10px;
    }

    .booking-service-btn {
        padding: 20px 14px;
    }

    .booking-nav {
        padding: 12px 18px 20px;
    }

    .review-items {
        grid-template-columns: 1fr;
    }

    .booking-artist-img img {
        width: 44px;
        height: 44px;
    }
}
