/* ═══════════════════════════════════════════
   ERHAN ÇALTI BARBER'S CLUB — MOBILE-FIRST
   ═══════════════════════════════════════════ */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Inter:wght@300;400;500;600;700&display=swap');

:root {
    --bg1: #08080c;
    --bg2: #0e0e14;
    --bg3: #14141c;
    --bg4: #1a1a24;
    --gold: #d4a843;
    --gold2: #c49a3a;
    --gold3: #b08930;
    --gold-glow: rgba(212, 168, 67, 0.12);
    --gold-glow2: rgba(212, 168, 67, 0.06);
    --text1: #f2f1ee;
    --text2: #b0afa8;
    --text3: #787772;
    --text4: #4a4940;
    --border: rgba(255, 255, 255, 0.06);
    --border2: rgba(255, 255, 255, 0.1);
    --border3: rgba(212, 168, 67, 0.15);
    --radius: 16px;
    --radius-sm: 10px;
    --radius-xs: 6px;
    --font-h: 'Montserrat', sans-serif;
    --font-b: 'Inter', sans-serif;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --success: #4ade80;
    --warning: #fbbf24;
    --error: #f87171;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 70px;
    -webkit-tap-highlight-color: transparent;
}

body {
    font-family: var(--font-b);
    background: var(--bg1);
    color: var(--text1);
    line-height: 1.6;
    min-height: 100vh;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

::selection {
    background: var(--gold);
    color: var(--bg1);
}

/* ══ SPLASH SCREEN ══ */
.splash-screen {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: var(--bg1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.8s ease, transform 0.8s cubic-bezier(0.65, 0, 0.35, 1);
}

.splash-screen.splash-exit {
    opacity: 0;
    transform: scale(0.95);
}

.splash-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 28px;
}

/* Barber Pole */
.splash-pole {
    animation: fadeInUp 0.6s var(--ease) both;
}

.pole-cap {
    width: 36px;
    height: 10px;
    background: linear-gradient(180deg, #c0c0c0, #8a8a8a);
    border-radius: 4px;
    margin: 0 auto;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.4);
}

.pole-body {
    width: 28px;
    height: 100px;
    margin: 0 auto;
    background: #e8e8e8;
    overflow: hidden;
    position: relative;
    box-shadow: inset -4px 0 8px rgba(0, 0, 0, 0.15), inset 4px 0 8px rgba(0, 0, 0, 0.05), 0 0 20px rgba(212, 168, 67, 0.15);
}

.pole-stripes {
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(-45deg,
            #cc2020 0px,
            #cc2020 8px,
            #ffffff 8px,
            #ffffff 16px,
            #1a4fa0 16px,
            #1a4fa0 24px,
            #ffffff 24px,
            #ffffff 32px);
    background-size: 100% 45px;
    animation: poleScroll 1.2s linear infinite;
}

@keyframes poleScroll {
    from {
        background-position: 0 0;
    }

    to {
        background-position: 0 45px;
    }
}

/* Text Group */
.splash-text-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    animation: fadeInUp 0.6s var(--ease) 0.3s both;
}

.splash-logo {
    width: 64px;
    height: 64px;
    object-fit: contain;
    margin-bottom: 4px;
}

.splash-brand {
    font-family: var(--font-h);
    font-size: 1.7rem;
    font-weight: 700;
    color: var(--text1);
    letter-spacing: 0.02em;
}

.splash-sub {
    font-family: var(--font-b);
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.3em;
}

/* Gold Line */
.splash-line {
    width: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    animation: lineExpand 1s var(--ease) 0.6s both;
}

@keyframes lineExpand {
    from {
        width: 0;
    }

    to {
        width: 160px;
    }
}


/* ══ ANIMATIONS ══ */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInDown {
    from {
        opacity: 0;
        transform: translateY(-16px)
    }

    to {
        opacity: 1;
        transform: translateY(0)
    }
}

@keyframes fadeInScale {
    from {
        opacity: 0;
        transform: scale(0.92)
    }

    to {
        opacity: 1;
        transform: scale(1)
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px)
    }

    to {
        opacity: 1;
        transform: translateX(0)
    }
}

@keyframes shimmer {
    0% {
        background-position: -200% 0
    }

    100% {
        background-position: 200% 0
    }
}

@keyframes pulseGlow {

    0%,
    100% {
        box-shadow: 0 0 8px rgba(212, 168, 67, 0.3)
    }

    50% {
        box-shadow: 0 0 20px rgba(212, 168, 67, 0.6)
    }
}

@keyframes ripple {
    to {
        transform: scale(4);
        opacity: 0
    }
}

@keyframes floatUp {
    0% {
        transform: translateY(0) translateX(0);
        opacity: 0
    }

    10% {
        opacity: var(--opa, 0.15)
    }

    90% {
        opacity: var(--opa, 0.15)
    }

    100% {
        transform: translateY(-100vh) translateX(var(--drift, 40px));
        opacity: 0
    }
}

@keyframes confettiFall {
    0% {
        transform: translate(0, 0) rotate(0)
    }

    100% {
        transform: translate(var(--x), var(--y)) rotate(var(--r))
    }
}

@keyframes bounceIn {
    0% {
        transform: scale(0);
        opacity: 0
    }

    50% {
        transform: scale(1.15)
    }

    100% {
        transform: scale(1);
        opacity: 1
    }
}

@keyframes checkDraw {
    0% {
        stroke-dashoffset: 50
    }

    100% {
        stroke-dashoffset: 0
    }
}

@keyframes subtleFloat {

    0%,
    100% {
        transform: translateY(0)
    }

    50% {
        transform: translateY(-6px)
    }
}

/* ══ PARTICLES ══ */
.particles {
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.particle {
    position: absolute;
    bottom: -4px;
    border-radius: 50%;
    background: var(--gold);
    opacity: var(--opa, 0.15);
    animation: floatUp var(--dur, 12s) var(--delay, 0s) linear infinite;
}

/* ══ TOPBAR ══ */
.topbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 50;
    padding: 8px 12px;
    transition: all 0.4s var(--ease);
    background: transparent;
}

.topbar.scrolled {
    background: rgba(8, 8, 12, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    padding: 6px 12px;
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    gap: 6px;
    min-width: 0;
    overflow: hidden;
}

.brand {
    display: flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: var(--text1);
    min-width: 0;
    flex: 1 1 0;
    overflow: hidden;
}

.brand-logo {
    width: 32px;
    height: 32px;
    object-fit: contain;
    transition: transform 0.3s var(--ease);
}

.brand:hover .brand-logo {
    transform: rotate(-8deg) scale(1.1);
}

.brand-text {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 700;
    letter-spacing: 0.01em;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.topbar-right {
    display: flex;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}

.status-pill {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid var(--border);
    transition: all 0.3s;
}

.status-pill.open {
    border-color: rgba(74, 222, 128, 0.3);
    color: var(--success);
}

.status-pill.closed {
    border-color: rgba(248, 113, 113, 0.3);
    color: var(--error);
}

.pulse-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: currentColor;
    animation: pulseGlow 2s infinite;
}

.cta-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-weight: 700;
    font-size: 0.8rem;
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 16px rgba(212, 168, 67, 0.25);
    white-space: nowrap;
    flex-shrink: 0;
    animation: ctaPulse 2.5s ease-in-out infinite;
}

@keyframes ctaPulse {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(212, 168, 67, 0.25);
    }

    50% {
        box-shadow: 0 4px 24px rgba(212, 168, 67, 0.5), 0 0 12px rgba(212, 168, 67, 0.3);
    }
}

.cta-btn:active {
    transform: scale(0.96);
}

/* Red Pulse Animation for Cancel Button */
@keyframes ctaPulseRed {

    0%,
    100% {
        box-shadow: 0 4px 16px rgba(239, 68, 68, 0.25);
    }

    50% {
        box-shadow: 0 4px 24px rgba(239, 68, 68, 0.5), 0 0 12px rgba(239, 68, 68, 0.3);
    }
}

/* Premium Dark Glass Cancel Button */
.btn-cancel-nav {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 9px 16px;
    border-radius: 50px;

    /* Dark Glass Background */
    background: rgba(20, 20, 20, 0.6);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);

    /* Red Border & Text */
    border: 1px solid rgba(239, 68, 68, 0.5);
    color: #ef4444;

    font-weight: 600;
    font-size: 0.8rem;
    font-family: var(--font-b);
    text-decoration: none;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
    white-space: nowrap;
    flex-shrink: 0;
    margin-right: 12px;
    cursor: pointer;
}

.btn-cancel-nav:active {
    transform: scale(0.96);
}

.btn-cancel-nav:hover {
    background: rgba(239, 68, 68, 0.15);
    border-color: #ef4444;
    color: #fff;
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.25);
    transform: translateY(-2px);
}

.btn-cancel-nav i {
    color: #ef4444;
    font-size: 0.9rem;
    transition: all 0.3s;
}

.btn-cancel-nav:hover i {
    color: #fff;
    transform: rotate(90deg);
}

.btn-cancel-nav:active {
    transform: scale(0.96);
}

.btn-cancel-nav:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(239, 68, 68, 0.4);
}

.btn-cancel-nav i {
    color: white;
    font-size: 0.9rem;
}

.btn-cancel-nav span {
    position: relative;
    z-index: 1;
}

.cta-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    background-size: 200% 100%;
    animation: shimmer 3s infinite;
}

/* ══ STAFF SHOWCASE ══ */
.staff-showcase {
    padding: 80px 16px 20px;
    position: relative;
    z-index: 1;
}

.showcase-inner {
    max-width: 1200px;
    margin: 0 auto;
}

.showcase-header {
    text-align: center;
    margin-bottom: 24px;
    animation: fadeInUp 0.6s var(--ease) both;
}

.showcase-tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 6px 14px;
    border-radius: 50px;
    border: 1px solid var(--border3);
    margin-bottom: 8px;
    letter-spacing: 0.04em;
}

.showcase-header h2 {
    font-family: var(--font-h);
    font-size: 1.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--text1), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.staff-carousel {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    padding: 4px 0 20px;
}

.staff-carousel::-webkit-scrollbar {
    display: none;
}

.staff-card {
    width: 260px;
    scroll-snap-align: start;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    animation: fadeInUp 0.5s var(--ease) both;
    flex-shrink: 0;
    position: relative;
}

.staff-card:nth-child(1) {
    animation-delay: 0s
}

.staff-card:nth-child(2) {
    animation-delay: 0.1s
}

.staff-card:nth-child(3) {
    animation-delay: 0.2s
}

.staff-card:hover {
    border-color: var(--border3);
    transform: translateY(-6px);
    box-shadow: 0 16px 48px rgba(212, 168, 67, 0.12);
}

.staff-card-img {
    position: relative;
    height: 300px;
    overflow: hidden;
}

.staff-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top;
    transition: transform 0.6s var(--ease);
}

.staff-card:hover .staff-card-img img {
    transform: scale(1.06);
}

.staff-card-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 8, 12, 0.9) 0%, rgba(8, 8, 12, 0.1) 50%, transparent 100%);
    pointer-events: none;
}

.staff-card-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    padding: 5px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 600;
    background: rgba(8, 8, 12, 0.8);
    backdrop-filter: blur(8px);
    color: var(--gold);
    border: 1px solid var(--border3);
    z-index: 2;
}

.staff-card-name-overlay {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.staff-card-name-overlay .staff-card-name {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text1);
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
}

.staff-card-name-overlay .staff-card-role {
    font-size: 0.78rem;
    color: var(--gold);
    font-weight: 500;
}

.staff-card-body {
    padding: 14px;
}

.staff-card-name {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 2px;
}

.staff-card-role {
    font-size: 0.78rem;
    color: var(--text3);
    margin-bottom: 8px;
}

.staff-card-stars {
    display: flex;
    align-items: center;
    gap: 2px;
    font-size: 0.72rem;
    color: var(--gold);
    margin-bottom: 8px;
}

.staff-card-stars span {
    margin-left: 4px;
    color: var(--text3);
}

.staff-card-specs {
    display: flex;
    flex-wrap: wrap;
    gap: 4px;
    margin-bottom: 12px;
}

.spec-tag {
    display: inline-block;
    font-size: 0.68rem;
    padding: 3px 8px;
    border-radius: 50px;
    background: var(--gold-glow);
    color: var(--gold);
    border: 1px solid var(--border3);
    font-weight: 500;
    transition: all 0.3s;
}

.spec-tag:hover {
    background: rgba(212, 168, 67, 0.2);
}

.staff-card-actions {
    display: flex;
    gap: 6px;
}

.sc-btn {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius-xs);
    font-size: 0.78rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s var(--ease);
    font-family: var(--font-b);
}

.sc-btn:active {
    transform: scale(0.95);
}

.sc-btn-book {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
}

.sc-btn-info {
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold);
    border: 2px solid var(--gold);
    width: 44px;
    height: 44px;
    flex: none;
    border-radius: 50%;
    font-size: 1rem;
    animation: bioGlow 1.5s ease-in-out infinite;
    position: relative;
}

@keyframes bioGlow {

    0%,
    100% {
        box-shadow: 0 0 4px rgba(212, 168, 67, 0.1);
        border-color: rgba(212, 168, 67, 0.4);
        background: rgba(212, 168, 67, 0.03);
    }

    50% {
        box-shadow: 0 0 22px rgba(212, 168, 67, 0.65), 0 0 44px rgba(212, 168, 67, 0.2);
        border-color: #f0d078;
        background: rgba(212, 168, 67, 0.18);
    }
}

.sc-btn-info:hover {
    background: rgba(212, 168, 67, 0.18);
    border-color: var(--gold);
    color: var(--gold);
    transform: scale(1.1);
    box-shadow: 0 0 24px rgba(212, 168, 67, 0.5);
    animation: none;
}

/* ══ GALLERY ══ */
.gallery-showcase {
    padding: 0 16px 20px;
    position: relative;
    z-index: 1;
}

.gallery-scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding: 4px 0;
    scrollbar-width: none;
}

.gallery-scroll::-webkit-scrollbar {
    display: none;
}

.gallery-item {
    min-width: 220px;
    height: 150px;
    scroll-snap-align: start;
    border-radius: var(--radius-sm);
    overflow: hidden;
    position: relative;
    cursor: pointer;
    flex-shrink: 0;
    transition: transform 0.3s var(--ease);
}

.gallery-item:active {
    transform: scale(0.97);
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s var(--ease);
}

.gallery-item:hover img {
    transform: scale(1.1);
}

.gallery-zoom {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(8, 8, 12, 0.5);
    opacity: 0;
    transition: opacity 0.3s;
    font-size: 1.2rem;
    color: white;
}

.gallery-item:hover .gallery-zoom {
    opacity: 1;
}

/* ══ MAIN LAYOUT ══ */
.main-layout {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 0 16px 28px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

/* ══ BOOKING PANEL ══ */
.booking-panel {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border3);
    border-radius: var(--radius);
    padding: 24px 18px;
    overflow: hidden;
    animation: fadeInUp 0.6s var(--ease) 0.2s both;
    box-shadow: 0 0 40px rgba(212, 168, 67, 0.04);
}

.panel-glow {
    position: absolute;
    top: -80px;
    right: -80px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: radial-gradient(circle, var(--gold-glow) 0%, transparent 70%);
    pointer-events: none;
    animation: subtleFloat 6s ease-in-out infinite;
}

.panel-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
    position: relative;
}

.panel-icon {
    width: 44px;
    height: 44px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    animation: bounceIn 0.6s var(--ease) 0.3s both;
}

.panel-header h1 {
    font-family: var(--font-h);
    font-size: 1.3rem;
    font-weight: 700;
    letter-spacing: -0.01em;
}

.panel-header p {
    font-size: 0.8rem;
    color: var(--text3);
}

/* Progress */
.progress-bar {
    margin-bottom: 20px;
}

.progress-track {
    height: 3px;
    background: var(--bg4);
    border-radius: 50px;
    overflow: hidden;
    margin-bottom: 12px;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--gold), var(--gold2));
    border-radius: 50px;
    transition: width 0.5s var(--ease);
    width: 0;
}

.step-indicators {
    display: flex;
    justify-content: space-between;
    gap: 4px;
}

.step-ind {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    flex: 1;
    transition: all 0.3s;
}

.step-circle {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.68rem;
    background: var(--bg4);
    color: var(--text3);
    border: 2px solid var(--border);
    transition: all 0.4s var(--ease);
}

.step-ind span {
    font-size: 0.65rem;
    color: var(--text4);
    text-align: center;
    font-weight: 600;
}

.step-ind.active .step-circle {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    animation: bounceIn 0.4s var(--ease);
}

.step-ind.active span {
    color: var(--gold);
}

.step-ind.done .step-circle {
    background: var(--success);
    color: white;
    border-color: var(--success);
}

.step-ind.done span {
    color: var(--success);
}

/* Form Steps */
.form-step {
    display: none;
    animation: fadeInUp 0.4s var(--ease);
}

.form-step.active {
    display: block;
}

.step-title {
    font-family: var(--font-h);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.step-title i {
    color: var(--gold);
}

.field {
    margin-bottom: 14px;
}

.field label {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--text2);
}

.label-hint {
    font-weight: 400;
    font-size: 0.65rem;
    color: var(--text4);
}

.label-optional {
    font-weight: 600;
    font-size: 0.62rem;
    color: var(--gold);
    background: var(--gold-glow);
    padding: 2px 8px;
    border-radius: 50px;
    border: 1px solid var(--border3);
    letter-spacing: 0.02em;
}

.svc-hint {
    font-size: 0.7rem;
    color: var(--text3);
    margin-bottom: 10px;
    padding: 8px 12px;
    background: rgba(212, 168, 67, 0.04);
    border-left: 2px solid var(--gold);
    border-radius: 0 var(--radius-xs) var(--radius-xs) 0;
    line-height: 1.5;
}

.svc-hint i {
    color: var(--gold);
    margin-right: 4px;
}

.svc-category-label {
    font-size: 0.68rem;
    font-weight: 700;
    color: var(--gold);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 6px 0 4px;
    margin-top: 4px;
    border-bottom: 1px solid var(--border3);
    grid-column: 1 / -1;
}

.svc-field {
    margin-top: 8px;
    padding-top: 12px;
    border-top: 1px solid var(--border);
}

.field input,
.field textarea,
.field select {
    width: 100%;
    padding: 13px 16px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text1);
    font-size: 0.9rem;
    font-family: var(--font-b);
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.field input:focus,
.field textarea:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.row2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

/* Service Cards */
.service-cards {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 250px;
    overflow-y: auto;
    padding-right: 4px;
}

.service-cards::-webkit-scrollbar {
    width: 3px;
}

.service-cards::-webkit-scrollbar-thumb {
    background: var(--gold);
    border-radius: 50px;
}

.svc-card {
    padding: 10px 12px;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.svc-card:active {
    transform: scale(0.98);
}

.svc-card.picked {
    border-color: var(--gold);
    background: var(--gold-glow);
    box-shadow: 0 0 16px rgba(212, 168, 67, 0.12);
}

.svc-card:hover:not(.picked) {
    border-color: var(--border2);
    background: rgba(255, 255, 255, 0.03);
}

.svc-name {
    font-size: 0.8rem;
    font-weight: 500;
}

.svc-meta {
    display: flex;
    gap: 8px;
    align-items: center;
}

.svc-price {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gold);
}

.svc-dur {
    font-size: 0.65rem;
    color: var(--text3);
}

/* Staff Picks — Modern Card Design */
.staff-picks {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    padding: 8px 4px 12px;
    justify-content: center;
    align-items: stretch;
}

@keyframes staffCardIn {
    from {
        opacity: 0;
        transform: translateY(24px) scale(0.95);
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.s-pick {
    flex: 1 1 200px;
    max-width: 240px;
    background: linear-gradient(165deg, rgba(30, 30, 40, 0.95), rgba(18, 18, 24, 0.98));
    border: 1px solid var(--border2);
    border-radius: 16px;
    cursor: pointer;
    position: relative;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    overflow: hidden;
    animation: staffCardIn 0.5s cubic-bezier(0.34, 1.56, 0.64, 1) both;
    display: flex;
    flex-direction: column;
}

.s-pick::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.4s;
}

.s-pick:hover::before {
    opacity: 1;
}

.s-pick:hover {
    transform: translateY(-6px);
    border-color: var(--border3);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(212, 168, 67, 0.06);
}

.s-pick:active {
    transform: translateY(-2px) scale(0.98);
}

/* Selected state */
.s-pick.picked {
    border-color: var(--gold);
    box-shadow: 0 0 0 2px rgba(212, 168, 67, 0.15), 0 12px 32px rgba(212, 168, 67, 0.12);
    background: linear-gradient(165deg, rgba(40, 36, 24, 0.95), rgba(22, 20, 14, 0.98));
}

.s-pick.picked::before {
    opacity: 1;
    background: linear-gradient(90deg, var(--gold), var(--gold2), var(--gold));
    height: 3px;
}

.s-pick.picked::after {
    content: '\f058';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-size: 0.55rem;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 3;
    animation: bounceIn 0.4s var(--ease);
    box-shadow: 0 2px 10px rgba(212, 168, 67, 0.4);
}

/* Visual section: photo + name */
.s-pick-visual {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px 14px 10px;
}

.s-pick-img-wrap {
    position: relative;
    flex-shrink: 0;
}

.s-pick-img-wrap img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border2);
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    z-index: 1;
}

.s-pick:hover .s-pick-img-wrap img {
    border-color: var(--gold);
    transform: scale(1.05);
}

.s-pick.picked .s-pick-img-wrap img {
    border-color: var(--gold);
    box-shadow: 0 0 16px rgba(212, 168, 67, 0.3);
}

.s-pick-img-glow {
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: conic-gradient(var(--gold), transparent, var(--gold2), transparent, var(--gold));
    opacity: 0;
    transition: opacity 0.4s;
    animation: spin 4s linear infinite;
    z-index: 0;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.s-pick:hover .s-pick-img-glow,
.s-pick.picked .s-pick-img-glow {
    opacity: 0.5;
}

.s-pick-content {
    flex: 1;
    min-width: 0;
}

.s-pick .nm {
    font-size: 0.85rem;
    font-weight: 700;
    display: block;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: var(--text1);
    transition: color 0.3s;
}

.s-pick.picked .nm {
    color: var(--gold);
}

.s-pick .s-role {
    font-size: 0.68rem;
    color: var(--text4);
    display: block;
    margin-top: 1px;
}

.s-pick-exp {
    font-size: 0.6rem;
    color: var(--gold);
    display: flex;
    align-items: center;
    gap: 4px;
    margin-top: 3px;
    font-weight: 600;
}

.s-pick-exp i {
    font-size: 0.55rem;
}

.s-pick-rating {
    display: flex;
    align-items: center;
    gap: 3px;
    font-size: 0.68rem;
    color: var(--gold);
    margin-top: 3px;
    font-weight: 600;
}

.s-pick-rating span {
    color: var(--text4);
    font-weight: 400;
}

/* Bio preview */
.s-pick-bio-preview {
    padding: 0 14px 8px;
    border-top: 1px solid rgba(255, 255, 255, 0.04);
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.s-pick-bio-preview p {
    font-size: 0.68rem;
    color: var(--text3);
    line-height: 1.5;
    margin: 8px 0 6px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.s-pick-specs {
    display: flex;
    gap: 4px;
    flex-wrap: wrap;
}

.s-pick-specs span {
    font-size: 0.58rem;
    padding: 3px 8px;
    border-radius: 50px;
    background: rgba(212, 168, 67, 0.08);
    color: var(--gold);
    border: 1px solid rgba(212, 168, 67, 0.15);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* Action buttons */
.s-pick-actions {
    display: flex;
    gap: 6px;
    padding: 0 10px 12px;
    margin-top: auto;
}

.s-pick-select-btn,
.s-pick-bio-btn {
    flex: 1;
    padding: 8px 10px;
    border-radius: 8px;
    font-size: 0.68rem;
    font-weight: 600;
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    font-family: var(--font-b);
}

.s-pick-select-btn {
    background: rgba(255, 255, 255, 0.06);
    color: var(--text2);
    border: 1px solid var(--border);
}

.s-pick-select-btn:hover {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    transform: scale(1.03);
}

.s-pick.picked .s-pick-select-btn {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
}

/* Özgeçmiş button — prominent & eye-catching */
.s-pick-bio-btn {
    background: transparent;
    color: var(--gold);
    border: 1px solid var(--gold);
    position: relative;
    overflow: hidden;
}

.s-pick-bio-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 168, 67, 0.15), transparent);
    animation: shimmer 2.5s infinite;
}

@keyframes shimmer {
    0% {
        left: -100%;
    }

    100% {
        left: 100%;
    }
}

.s-pick-bio-btn:hover {
    background: rgba(212, 168, 67, 0.12);
    transform: scale(1.05);
    box-shadow: 0 0 14px rgba(212, 168, 67, 0.2);
}

.s-pick-bio-btn:active {
    transform: scale(0.95);
}

/* Selected info */
.selected-info {
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: rgba(74, 222, 128, 0.06);
    border: 1px solid rgba(74, 222, 128, 0.2);
    font-size: 0.82rem;
    color: var(--success);
    display: none;
    animation: fadeInUp 0.3s var(--ease);
    margin-top: 8px;
}

.selected-info.show {
    display: flex;
    align-items: center;
    gap: 6px;
}

/* Calendar */
.cal-widget {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 12px;
    overflow: hidden;
}

.cal-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.cal-month {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
}

.cal-nav {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text2);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.7rem;
    transition: all 0.3s;
}

.cal-nav:active {
    transform: scale(0.9);
}

.cal-nav:disabled {
    opacity: 0.3;
    pointer-events: none;
}

.cal-weekdays {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    text-align: center;
    margin-bottom: 6px;
}

.cal-weekdays span {
    font-size: 0.68rem;
    font-weight: 600;
    color: var(--text3);
    padding: 4px 0;
}

.cal-days {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 3px;
}

.cal-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    border-radius: var(--radius-xs);
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-weight: 500;
    position: relative;
}

.cal-day:active {
    transform: scale(0.9);
}

.cal-day.empty {
    cursor: default;
}

.cal-day.today {
    color: var(--gold);
    font-weight: 700;
}

.cal-day.today::after {
    content: '';
    position: absolute;
    bottom: 4px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.cal-day.off {
    color: var(--text4);
    opacity: 0.4;
    cursor: default;
}

.cal-day.closed-day {
    color: var(--warning);
    opacity: 0.65;
    cursor: pointer;
    position: relative;
}

.cal-day.closed-day::after {
    content: '•';
    position: absolute;
    bottom: 2px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.5rem;
    color: var(--warning);
}

.cal-day.selected {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-weight: 700;
    animation: bounceIn 0.3s var(--ease);
}

.cal-day:not(.empty):not(.off):not(.closed):not(.selected):hover {
    background: var(--gold-glow);
    color: var(--gold);
}

/* Time tabs & slots */
.slot-legend {
    display: flex;
    gap: 12px;
    margin-bottom: 8px;
}

.legend-item {
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 0.68rem;
    color: var(--text3);
}

.leg-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.leg-dot.available {
    background: var(--gold);
}

.leg-dot.booked {
    background: var(--error);
}

.time-tabs {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.t-tab {
    flex: 1;
    padding: 8px;
    border-radius: var(--radius-xs);
    font-size: 0.78rem;
    font-weight: 600;
    background: var(--bg4);
    color: var(--text3);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    transition: all 0.3s;
    font-family: var(--font-b);
}

.t-tab:active {
    transform: scale(0.95);
}

.t-tab.active {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--border3);
}

.time-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
}

.t-slot {
    padding: 10px;
    text-align: center;
    font-size: 0.82rem;
    font-weight: 600;
    border-radius: var(--radius-xs);
    background: var(--bg4);
    border: 1px solid var(--border);
    cursor: pointer;
    transition: all 0.3s var(--ease);
}

.t-slot:active {
    transform: scale(0.93);
}

.t-slot.picked {
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    border-color: var(--gold);
    box-shadow: 0 0 12px rgba(212, 168, 67, 0.2);
}

.t-slot.off {
    opacity: 0.3;
    cursor: default;
    text-decoration: line-through;
}

.t-slot.booked {
    background: rgba(248, 113, 113, 0.08);
    border-color: rgba(248, 113, 113, 0.2);
    color: var(--error);
    cursor: default;
}

.date-range-hint {
    font-size: 0.7rem;
    color: var(--text3);
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 12px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}

/* Form Navigation */
.form-nav {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    margin-top: 16px;
}

.btn-gold {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    padding: 13px 22px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    color: var(--bg1);
    font-weight: 700;
    font-size: 0.88rem;
    border: none;
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s var(--ease);
    position: relative;
    overflow: hidden;
}

.btn-gold:active {
    transform: scale(0.96);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 13px 18px;
    border-radius: var(--radius-xs);
    background: transparent;
    color: var(--text2);
    font-size: 0.88rem;
    border: 1px solid var(--border);
    cursor: pointer;
    font-family: var(--font-b);
    transition: all 0.3s;
}

.btn-ghost:active {
    transform: scale(0.96);
}

.btn-sm {
    padding: 8px 14px;
    font-size: 0.72rem;
}

/* Final Summary */
.final-summary {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 16px;
    margin-bottom: 16px;
}

.final-summary h3 {
    font-family: var(--font-h);
    font-size: 0.9rem;
    margin-bottom: 12px;
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold);
}

.s-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
}

.s-row:last-child {
    border: none;
}

.s-label {
    display: flex;
    align-items: center;
    gap: 6px;
    color: var(--text3);
}

.s-val {
    font-weight: 600;
    color: var(--text1);
}

/* ══ SIDEBAR ══ */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.side-card {
    position: relative;
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 16px;
    overflow: hidden;
    animation: fadeInUp 0.5s var(--ease) both;
}

.card-accent {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.side-card h3 {
    font-family: var(--font-h);
    font-size: 0.95rem;
    font-weight: 600;
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.side-card h3 i {
    color: var(--gold);
    font-size: 0.8rem;
}

/* Hours */
.hours-list {
    list-style: none;
}

.hours-list li {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.82rem;
    transition: all 0.3s;
}

.hours-list li:last-child {
    border: none;
}

.hours-list li .day {
    font-weight: 500;
    color: var(--text2);
}

.hours-list li .time {
    color: var(--text3);
}

.hours-list li.today {
    color: var(--gold);
}

.hours-list li.today .day,
.hours-list li.today .time {
    color: var(--gold);
    font-weight: 600;
}

/* Pricing */
.price-category {
    margin-bottom: 12px;
}

.price-cat-title {
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gold);
    margin-bottom: 6px;
    padding-bottom: 4px;
    border-bottom: 1px solid var(--border3);
}

.price-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 7px 0;
    font-size: 0.82rem;
    border-bottom: 1px solid var(--border);
}

.price-row:last-child {
    border: none;
}

.price-row .svc {
    color: var(--text2);
}

.price-row .dur {
    font-size: 0.68rem;
    color: var(--text4);
    margin-left: 6px;
}

.price-row .amt {
    font-weight: 700;
    color: var(--gold);
}

/* Map */
.mini-map-link {
    display: block;
    text-decoration: none;
    position: relative;
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 10px;
    aspect-ratio: 16/9;
}

.mini-map {
    width: 100%;
    height: 100%;
    background: var(--bg4);
}

.mini-map iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.map-placeholder {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    color: var(--text4);
    font-size: 2rem;
}

.map-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 10px;
    text-align: center;
    background: linear-gradient(transparent, rgba(8, 8, 12, 0.9));
    color: var(--gold);
    font-size: 0.75rem;
    font-weight: 600;
    transition: transform 0.3s;
}

.mini-map-link:hover .map-overlay {
    background: linear-gradient(transparent, rgba(212, 168, 67, 0.15));
}

/* Contact */
.contact-info-compact {
    font-size: 0.82rem;
}

.c-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 5px 0;
    color: var(--text2);
}

.c-row i {
    color: var(--gold);
    width: 14px;
    font-size: 0.7rem;
}

.c-row a {
    color: var(--text2);
    text-decoration: none;
}

.socials {
    display: flex;
    gap: 8px;
    margin-top: 8px;
}

.soc-link {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    text-decoration: none;
    font-size: 0.75rem;
    transition: all 0.3s;
}

.soc-link:active {
    transform: scale(0.9);
}

.soc-link:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══ FOOTER ══ */
footer {
    text-align: center;
    padding: 28px 16px;
    border-top: 1px solid var(--border);
    font-size: 0.8rem;
    color: var(--text4);
    position: relative;
    z-index: 1;
}

.footer-brand {
    color: var(--gold);
    font-weight: 600;
}

.footer-credit {
    margin-top: 10px;
    font-size: 0.72rem;
    color: var(--text3);
    letter-spacing: 0.04em;
    padding: 8px 0;
}

.footer-credit a {
    color: var(--gold);
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    border-bottom: 1px solid rgba(212, 168, 67, 0.3);
    padding-bottom: 1px;
}

.footer-credit a:hover {
    color: var(--text1);
    border-bottom-color: var(--text1);
}

.admin-fab {
    position: fixed;
    bottom: 16px;
    right: 16px;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--bg3);
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text3);
    font-size: 0.9rem;
    z-index: 10;
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.admin-fab:active {
    transform: scale(0.9);
}

.admin-fab:hover {
    border-color: var(--gold);
    color: var(--gold);
}

/* ══ MODAL BASE ══ */
.modal-bg {
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    display: none;
    align-items: flex-end;
    justify-content: center;
    padding: 0;
}

.modal-bg.on {
    display: flex;
}

.modal-box {
    background: var(--bg2);
    border: 1px solid var(--border);
    border-radius: var(--radius) var(--radius) 0 0;
    width: 100%;
    max-width: 500px;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.4s var(--ease);
}

@keyframes slideUp {
    from {
        transform: translateY(100%);
        opacity: 0.5
    }

    to {
        transform: translateY(0);
        opacity: 1
    }
}

.popup-close {
    position: absolute;
    top: 12px;
    right: 12px;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    font-size: 0.8rem;
    cursor: pointer;
    z-index: 5;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
}

.popup-close:active {
    transform: scale(0.9);
}

/* ══ BARBER BIO POPUP ══ */
.barber-popup {
    padding: 0;
}

.barber-popup .bp-cover {
    height: 140px;
    background: linear-gradient(135deg, var(--bg3), var(--bg4));
    overflow: hidden;
    position: relative;
}

.barber-popup .bp-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.3;
    filter: blur(2px);
}

.barber-popup .bp-content {
    padding: 0 16px 20px;
    margin-top: -40px;
    position: relative;
}

.bp-header {
    display: flex;
    align-items: flex-end;
    gap: 12px;
    margin-bottom: 12px;
}

.bp-header img {
    width: 68px;
    height: 68px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--bg2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4);
    animation: bounceIn 0.5s var(--ease) 0.2s both;
}

.bp-info {
    padding-bottom: 4px;
}

.bp-info h2 {
    font-family: var(--font-h);
    font-size: 1.15rem;
    font-weight: 700;
    line-height: 1.2;
}

.bp-role {
    font-size: 0.72rem;
    color: var(--gold);
    font-weight: 500;
}

.bp-bio {
    font-size: 0.85rem;
    color: var(--text2);
    line-height: 1.7;
    margin-bottom: 12px;
    padding: 10px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
    animation: fadeInUp 0.4s var(--ease) 0.3s both;
}

.bp-specialties {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    margin-bottom: 12px;
    animation: fadeInUp 0.4s var(--ease) 0.4s both;
}

.bp-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 6px;
    margin-bottom: 14px;
    animation: fadeInUp 0.4s var(--ease) 0.5s both;
}

.bp-stat {
    text-align: center;
    padding: 10px 6px;
    background: var(--bg3);
    border-radius: var(--radius-xs);
    border: 1px solid var(--border);
}

.stat-val {
    font-family: var(--font-h);
    font-size: 1rem;
    font-weight: 700;
    color: var(--gold);
    display: block;
}

.stat-label {
    font-size: 0.65rem;
    color: var(--text3);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

.bp-select {
    width: 100%;
    justify-content: center;
    padding: 12px;
    font-size: 0.82rem;
}

/* Reviews Open Button */
.btn-reviews-open {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-xs);
    background: var(--bg3);
    border: 1px solid var(--border);
    color: var(--text2);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    transition: all 0.3s var(--ease);
    font-family: var(--font-b);
    margin-bottom: 10px;
    animation: fadeInUp 0.4s var(--ease) 0.6s both;
}

.btn-reviews-open:active {
    transform: scale(0.97);
}

.btn-reviews-open:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-reviews-open i:first-child {
    color: var(--gold);
}

.btn-reviews-open i:last-child {
    margin-left: auto;
    font-size: 0.6rem;
    color: var(--text4);
}

/* ══ REVIEWS POPUP ══ */
.reviews-popup {
    padding: 0;
    display: flex;
    flex-direction: column;
}

.reviews-popup-header {
    padding: 20px 16px 12px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    animation: fadeInDown 0.4s var(--ease);
}

.reviews-popup-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), var(--gold2));
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 10px;
    font-size: 1.1rem;
    color: var(--bg1);
    animation: bounceIn 0.5s var(--ease) 0.2s both;
}

.reviews-popup-header h3 {
    font-family: var(--font-h);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 4px;
}

.reviews-popup-avg {
    font-size: 0.8rem;
    color: var(--gold);
    font-weight: 600;
}

.reviews-popup-avg i {
    font-size: 0.7rem;
    margin-right: 2px;
}

.reviews-popup-list {
    flex: 1;
    overflow-y: auto;
    padding: 12px 16px;
    max-height: 40vh;
    -webkit-overflow-scrolling: touch;
}

.review-card {
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    padding: 12px;
    margin-bottom: 8px;
    animation: fadeInUp 0.3s var(--ease) both;
}

.review-card:nth-child(1) {
    animation-delay: 0.05s
}

.review-card:nth-child(2) {
    animation-delay: 0.1s
}

.review-card:nth-child(3) {
    animation-delay: 0.15s
}

.review-card:nth-child(4) {
    animation-delay: 0.2s
}

.review-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 4px;
}

.review-author {
    font-weight: 600;
    font-size: 0.85rem;
}

.review-date {
    font-size: 0.68rem;
    color: var(--text4);
}

.review-stars-display {
    margin-bottom: 4px;
}

.review-stars-display i {
    font-size: 0.6rem;
    color: var(--gold);
}

.review-stars-display i.empty {
    color: var(--text4);
}

.review-text {
    font-size: 0.8rem;
    color: var(--text2);
    line-height: 1.5;
}

.no-reviews {
    text-align: center;
    padding: 24px 12px;
    color: var(--text3);
    font-size: 0.85rem;
    animation: fadeInUp 0.4s var(--ease);
}

/* Review Form */
.reviews-popup-form {
    padding: 16px;
    border-top: 1px solid var(--border);
    background: var(--bg3);
    animation: fadeInUp 0.4s var(--ease) 0.3s both;
}

.reviews-popup-form h4 {
    font-family: var(--font-h);
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews-popup-form h4 i {
    color: var(--gold);
    font-size: 0.7rem;
}

.review-stars {
    display: flex;
    gap: 4px;
    margin-bottom: 10px;
}

.star-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg4);
    border: 1px solid var(--border);
    color: var(--text4);
    font-size: 0.8rem;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    justify-content: center;
}

.star-btn:active {
    transform: scale(0.85);
}

.star-btn.active {
    background: var(--gold-glow);
    color: var(--gold);
    border-color: var(--gold);
    animation: bounceIn 0.3s var(--ease);
}

.review-input {
    width: 100%;
    padding: 10px 12px;
    background: var(--bg4);
    border: 1px solid var(--border);
    border-radius: var(--radius-xs);
    color: var(--text1);
    font-size: 0.8rem;
    font-family: var(--font-b);
    margin-bottom: 8px;
    transition: all 0.3s;
    -webkit-appearance: none;
    appearance: none;
}

.review-input:focus {
    outline: none;
    border-color: var(--gold);
    box-shadow: 0 0 0 3px rgba(212, 168, 67, 0.1);
}

.btn-red-submit {
    width: 100%;
    justify-content: center;
    padding: 12px;
    border-radius: var(--radius-xs);
    background: linear-gradient(135deg, #ef4444, #b91c1c);
    color: white;
    font-size: 0.9rem;
    font-weight: 700;
    border: none;
    cursor: pointer;
    box-shadow: 0 4px 15px rgba(239, 68, 68, 0.3);
    transition: all 0.3s var(--ease);
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-b);
}

.btn-red-submit:active {
    transform: scale(0.98);
}

.btn-red-submit:hover {
    box-shadow: 0 6px 24px rgba(239, 68, 68, 0.5);
    background: linear-gradient(135deg, #dc2626, #991b1b);
    transform: translateY(-2px);
}



/* ══ SUCCESS MODAL ══ */
.success-modal {
    text-align: center;
    padding: 32px 20px;
    border-radius: var(--radius) var(--radius) 0 0;
}

.success-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.confetti {
    position: absolute;
    border-radius: 2px;
    animation: confettiFall var(--dur, 1s) var(--delay, 0s) var(--ease) forwards;
}

.success-check {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--success), #22c55e);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin: 0 auto 16px;
    animation: bounceIn 0.6s var(--ease) 0.2s both;
}

.success-modal h2 {
    font-family: var(--font-h);
    font-size: 1.2rem;
    margin-bottom: 6px;
    animation: fadeInUp 0.4s var(--ease) 0.4s both;
}

.success-modal p {
    font-size: 0.85rem;
    color: var(--text2);
    margin-bottom: 16px;
    animation: fadeInUp 0.4s var(--ease) 0.5s both;
}

.modal-summary {
    text-align: left;
    background: var(--bg3);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 14px;
    margin-bottom: 16px;
    animation: fadeInUp 0.4s var(--ease) 0.6s both;
}

.modal-actions {
    margin-bottom: 12px;
    animation: fadeInUp 0.4s var(--ease) 0.7s both;
}

.modal-actions .btn-gold {
    width: 100%;
}

.modal-note {
    font-size: 0.65rem;
    color: var(--text4);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 4px;
}

/* ══ LIGHTBOX ══ */
.lightbox-box {
    position: fixed;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
}

.lightbox-box img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-sm);
    object-fit: contain;
    transition: all 0.3s var(--ease);
}

.lb-nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(8px);
    border: none;
    color: white;
    font-size: 0.9rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s;
    z-index: 5;
}

.lb-nav:active {
    transform: translateY(-50%) scale(0.9);
}

.lb-prev {
    left: 8px;
}

.lb-next {
    right: 8px;
}

.lb-counter {
    position: absolute;
    bottom: 16px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.7);
    background: rgba(0, 0, 0, 0.5);
    padding: 4px 12px;
    border-radius: 50px;
}

/* ══ TOAST ══ */
.bk-toast {
    z-index: 500 !important;
}

/* ══════════════════════════════════════
   SMALL MOBILE (max-width: 520px)
   ══════════════════════════════════════ */
@media(max-width:520px) {
    .topbar {
        padding: 6px 8px;
    }

    .topbar-inner {
        gap: 4px;
    }

    .brand-logo {
        width: 28px;
        height: 28px;
        flex-shrink: 0;
    }

    .brand-text {
        font-size: 0.68rem;
        max-width: 120px;
    }

    .status-pill {
        display: none;
    }

    .cta-btn {
        font-size: 0.7rem;
        padding: 8px 14px;
        gap: 5px;
    }
}

/* ══════════════════════════════════════
   EXTRA-SMALL SCREENS (max-width: 380px)
   ══════════════════════════════════════ */
@media(max-width:380px) {
    .topbar {
        padding: 4px 6px;
    }

    .brand-logo {
        width: 26px;
        height: 26px;
    }

    .brand-text {
        display: none;
    }

    .cta-btn {
        font-size: 0.72rem;
        padding: 9px 14px;
    }

    .cta-btn span {
        display: none;
    }

    .cta-btn .cta-glow {
        display: none;
    }

    .showcase-header h2 {
        font-size: 1.15rem;
    }

    .showcase-tag {
        font-size: 0.6rem;
    }

    .staff-card {
        width: 220px;
    }

    .staff-card-img {
        height: 260px;
    }

    .gallery-item {
        min-width: 180px;
        height: 110px;
    }

    .panel-header h1 {
        font-size: 0.95rem;
    }

    .panel-icon {
        width: 36px;
        height: 36px;
        font-size: 0.85rem;
    }

    .s-pick {
        flex: 1 1 100%;
        max-width: 100%;
    }

    .s-pick-img-wrap img {
        width: 42px;
        height: 42px;
    }

    .s-pick .nm {
        font-size: 0.72rem;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        font-size: 0.6rem;
        padding: 6px 8px;
    }

    .cal-day {
        font-size: 0.65rem;
        min-height: 32px;
    }

    .t-slot {
        padding: 8px 4px;
        font-size: 0.68rem;
    }

    .form-nav {
        flex-direction: column;
        gap: 8px;
    }

    .form-nav .btn-gold,
    .form-nav .btn-ghost {
        width: 100%;
        justify-content: center;
    }

    .booking-panel {
        padding: 14px 10px;
    }

    .sidebar {
        padding: 14px 10px;
    }

    .sb-card {
        padding: 12px 10px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .modal-box {
        padding: 14px 10px;
    }

    .step-indicators {
        gap: 2px;
    }

    .step-ind span {
        font-size: 0.55rem;
    }

    .step-circle {
        width: 28px;
        height: 28px;
        font-size: 0.6rem;
    }

    .step-title {
        font-size: 0.9rem;
    }

    .time-tabs {
        flex-wrap: wrap;
    }

    .t-tab {
        font-size: 0.68rem;
        padding: 6px 4px;
    }

    .time-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 4px;
    }

    .field label {
        font-size: 0.78rem;
    }

    .field input,
    .field textarea {
        padding: 10px 12px;
        font-size: 0.85rem;
    }

    .row2 {
        grid-template-columns: 1fr;
    }
}

/* ══════════════════════════════════════
   TOUCH & MOBILE OPTIMIZATION
   ══════════════════════════════════════ */
@media(hover: none) and (pointer: coarse) {

    /* Larger touch targets for mobile */
    .cal-day {
        min-height: 40px;
    }

    .t-slot {
        min-height: 44px;
    }

    .btn-gold,
    .btn-outline,
    .btn-outline2,
    .cta-btn {
        min-height: 44px;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        min-height: 40px;
    }

    /* Disable hover effects on touch */
    .staff-card:hover,
    .gallery-item:hover,
    .s-pick:hover {
        transform: none;
    }

    /* Better form inputs for mobile */
    .form-input,
    .review-input {
        font-size: 16px;
        /* Prevents zoom on iOS */
    }
}

/* ══════════════════════════════════════
   TABLET (min-width: 600px)
   ══════════════════════════════════════ */
@media(min-width:600px) {
    .topbar {
        padding: 10px 20px;
    }

    .brand-logo {
        width: 40px;
        height: 40px;
    }

    .brand-text {
        font-size: 1rem;
    }

    .cta-btn {
        font-size: 0.8rem;
        padding: 10px 20px;
    }

    .staff-showcase {
        padding: 90px 20px 20px;
    }

    .showcase-header h2 {
        font-size: 1.8rem;
    }

    .staff-card {
        width: 280px;
    }

    .staff-card-img {
        height: 340px;
    }

    .gallery-showcase {
        padding: 0 20px 20px;
    }

    .gallery-item {
        min-width: 240px;
        height: 160px;
    }

    .main-layout {
        padding: 0 20px 32px;
    }

    .booking-panel {
        padding: 24px 20px;
    }

    .service-cards {
        grid-template-columns: 1fr 1fr;
    }

    .row2 {
        grid-template-columns: 1fr 1fr;
    }

    .time-grid {
        grid-template-columns: repeat(4, 1fr);
    }

    .s-pick {
        flex: 1 1 210px;
        max-width: 260px;
    }

    .s-pick-img-wrap img {
        width: 56px;
        height: 56px;
    }

    .s-pick .nm {
        font-size: 0.85rem;
    }

    .s-pick-bio-preview p {
        font-size: 0.68rem;
    }

    .s-pick-select-btn,
    .s-pick-bio-btn {
        font-size: 0.68rem;
        padding: 8px 10px;
    }

    .modal-bg {
        align-items: center;
        padding: 16px;
    }

    .modal-box {
        border-radius: var(--radius);
        max-height: 85vh;
    }

    .success-modal {
        border-radius: var(--radius);
    }

    .reviews-popup {
        max-width: 500px;
    }

    @keyframes slideUp {
        from {
            transform: translateY(40px);
            opacity: 0
        }

        to {
            transform: translateY(0);
            opacity: 1
        }
    }
}

/* ══════════════════════════════════════
   DESKTOP (min-width: 960px)
   ══════════════════════════════════════ */
@media(min-width:960px) {
    .topbar {
        padding: 12px 32px;
    }

    .brand-text {
        font-size: 1.15rem;
    }

    .status-pill {
        font-size: 0.72rem;
        padding: 6px 14px;
    }

    .cta-btn {
        font-size: 0.85rem;
        padding: 12px 24px;
    }

    .staff-showcase {
        padding: 100px 32px 24px;
    }

    .showcase-header h2 {
        font-size: 2rem;
    }

    .gallery-showcase {
        padding: 0 32px 24px;
    }

    .gallery-item {
        min-width: 280px;
        height: 180px;
    }

    .main-layout {
        flex-direction: row;
        gap: 24px;
        padding: 0 32px 40px;
    }

    .booking-panel {
        flex: 1;
        padding: 28px 24px;
        min-width: 0;
    }

    .sidebar {
        width: 340px;
        flex-shrink: 0;
    }

    .time-grid {
        grid-template-columns: repeat(5, 1fr);
    }

    .panel-header h1 {
        font-size: 1.4rem;
    }

    .barber-popup .bp-cover {
        height: 160px;
    }

    .bp-header img {
        width: 80px;
        height: 80px;
    }

    .bp-info h2 {
        font-size: 1.3rem;
    }
}

/* ═══════════════════════════════════════
   PHONE VALIDATION FEEDBACK
   ═══════════════════════════════════════ */
.field input.input-valid {
    border-color: #22c55e !important;
    box-shadow: 0 0 0 3px rgba(34, 197, 94, 0.12);
}

.field input.input-error {
    border-color: #ef4444 !important;
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.phone-hint {
    font-size: 0.72rem;
    margin-top: 6px;
    min-height: 1em;
    transition: all 0.2s ease;
}