/* ========================================
   045 BERBER SHOP - HIP HOP / TRAPPER STYLE
======================================== */

@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;500;600;700&display=swap');

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Oswald', 'Poppins', sans-serif;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a0a2e 50%, #0a0a0a 100%);
    min-height: 100vh;
    color: #fff;
    position: relative;
    overflow-x: hidden;
}

/* Graffiti/Noise Background Effect */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(138, 43, 226, 0.15) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(255, 0, 128, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 50%, rgba(0, 255, 255, 0.05) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========================================
   GRAFFITI 045 DECORATIONS
======================================== */
.graffiti-left {
    position: fixed;
    left: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    letter-spacing: 15px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(255, 0, 255, 0.15);
    text-shadow:
        0 0 40px rgba(255, 0, 255, 0.1),
        4px 4px 0 rgba(0, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
}

.graffiti-right {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%) rotate(90deg);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 8rem;
    font-weight: 400;
    letter-spacing: 15px;
    color: transparent;
    -webkit-text-stroke: 2px rgba(0, 255, 255, 0.15);
    text-shadow:
        0 0 40px rgba(0, 255, 255, 0.1),
        -4px 4px 0 rgba(255, 0, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    white-space: nowrap;
}

.graffiti-top {
    position: fixed;
    top: 100px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 15rem;
    font-weight: 400;
    letter-spacing: 30px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(255, 0, 255, 0.08);
    text-shadow: 0 0 80px rgba(255, 0, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: 0.5;
}

.graffiti-bottom {
    position: fixed;
    bottom: 50px;
    left: 50%;
    transform: translateX(-50%);
    font-family: 'Bebas Neue', sans-serif;
    font-size: 12rem;
    font-weight: 400;
    letter-spacing: 25px;
    color: transparent;
    -webkit-text-stroke: 1px rgba(0, 255, 255, 0.08);
    text-shadow: 0 0 60px rgba(0, 255, 255, 0.05);
    pointer-events: none;
    z-index: 0;
    user-select: none;
    opacity: 0.4;
}

/* Spray paint drip effect */
.graffiti-drip {
    position: fixed;
    font-family: 'Bebas Neue', sans-serif;
    color: transparent;
    -webkit-text-stroke: 3px;
    pointer-events: none;
    z-index: 0;
    user-select: none;
    animation: drip 4s ease-in-out infinite;
}

.graffiti-drip-1 {
    top: 20%;
    left: 5%;
    font-size: 4rem;
    -webkit-text-stroke-color: rgba(255, 0, 255, 0.12);
    transform: rotate(-15deg);
    animation-delay: 0s;
}

.graffiti-drip-2 {
    top: 60%;
    right: 5%;
    font-size: 5rem;
    -webkit-text-stroke-color: rgba(0, 255, 255, 0.12);
    transform: rotate(20deg);
    animation-delay: 1s;
}

.graffiti-drip-3 {
    bottom: 30%;
    left: 8%;
    font-size: 3.5rem;
    -webkit-text-stroke-color: rgba(255, 0, 128, 0.1);
    transform: rotate(-25deg);
    animation-delay: 2s;
}

.graffiti-drip-4 {
    top: 35%;
    right: 8%;
    font-size: 4.5rem;
    -webkit-text-stroke-color: rgba(138, 43, 226, 0.12);
    transform: rotate(10deg);
    animation-delay: 0.5s;
}

@keyframes drip {
    0%, 100% {
        opacity: 0.6;
        text-shadow: 0 0 20px currentColor;
    }
    50% {
        opacity: 1;
        text-shadow: 0 0 40px currentColor, 0 0 60px currentColor;
    }
}

/* Graffiti tag style corners */
.graffiti-corner {
    position: fixed;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 5px;
    pointer-events: none;
    z-index: 0;
    user-select: none;
}

.graffiti-corner-tl {
    top: 15px;
    left: 15px;
    color: rgba(255, 0, 255, 0.25);
    text-shadow: 2px 2px 0 rgba(0, 255, 255, 0.15);
    transform: rotate(-5deg);
}

.graffiti-corner-tr {
    top: 15px;
    right: 15px;
    color: rgba(0, 255, 255, 0.25);
    text-shadow: -2px 2px 0 rgba(255, 0, 255, 0.15);
    transform: rotate(5deg);
}

.graffiti-corner-bl {
    bottom: 15px;
    left: 15px;
    color: rgba(255, 0, 128, 0.2);
    text-shadow: 2px -2px 0 rgba(0, 255, 255, 0.1);
    transform: rotate(5deg);
}

.graffiti-corner-br {
    bottom: 15px;
    right: 15px;
    color: rgba(138, 43, 226, 0.25);
    text-shadow: -2px -2px 0 rgba(255, 0, 255, 0.1);
    transform: rotate(-5deg);
}

/* Hide graffiti on mobile */
@media (max-width: 768px) {
    .graffiti-left,
    .graffiti-right,
    .graffiti-top,
    .graffiti-bottom {
        display: none;
    }

    .graffiti-drip {
        font-size: 2.5rem !important;
        opacity: 0.4;
    }

    .graffiti-corner {
        font-size: 1.5rem;
    }
}

.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 20px;
    position: relative;
    z-index: 1;
}

/* ========================================
   HEADER - NEON STYLE
======================================== */
.header {
    background: linear-gradient(180deg, #0a0a0a 0%, #150520 100%);
    padding: 30px 0;
    text-align: center;
    border-bottom: 3px solid;
    border-image: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff) 1;
    position: relative;
}

.header::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 0;
    width: 100%;
    height: 20px;
    background: linear-gradient(180deg, rgba(255, 0, 255, 0.3) 0%, transparent 100%);
    pointer-events: none;
}

.logo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.logo-icon {
    font-size: 3rem;
    filter: drop-shadow(0 0 10px #ff00ff);
    animation: iconPulse 2s ease-in-out infinite;
}

@keyframes iconPulse {
    0%, 100% { filter: drop-shadow(0 0 10px #ff00ff); }
    50% { filter: drop-shadow(0 0 25px #00ffff); }
}

.logo h1 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    font-weight: 400;
    letter-spacing: 6px;
    background: linear-gradient(90deg, #ff00ff, #00ffff, #ff00ff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: neonShift 3s linear infinite;
    text-shadow: 0 0 30px rgba(255, 0, 255, 0.5);
}

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

.tagline {
    color: #00ffff;
    font-size: 0.9rem;
    margin-top: 8px;
    letter-spacing: 4px;
    text-transform: uppercase;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

/* ========================================
   STEP INDICATOR - NEON GLOW
======================================== */
.step-indicator {
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    position: relative;
}

.step-indicator::before {
    content: '';
    position: absolute;
    top: 45px;
    left: 10%;
    width: 80%;
    height: 3px;
    background: linear-gradient(90deg, #333, #ff00ff, #00ffff, #333);
    border-radius: 2px;
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
    z-index: 1;
}

.step-number {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #1a1a2e;
    border: 2px solid #444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    margin-bottom: 8px;
    transition: all 0.3s ease;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
}

.step.active .step-number {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    border-color: #ff00ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6), 0 0 40px rgba(255, 0, 255, 0.3);
    animation: stepGlow 1.5s ease-in-out infinite;
}

.step.completed .step-number {
    background: linear-gradient(135deg, #00ffff, #00ff88);
    border-color: #00ffff;
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.5);
}

@keyframes stepGlow {
    0%, 100% { box-shadow: 0 0 20px rgba(255, 0, 255, 0.6); }
    50% { box-shadow: 0 0 35px rgba(255, 0, 255, 0.9); }
}

.step-text {
    font-size: 0.7rem;
    color: #666;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.step.active .step-text {
    color: #ff00ff;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.5);
}

.step.completed .step-text {
    color: #00ffff;
}

/* ========================================
   FORM STEPS
======================================== */
.form-step {
    display: none;
    animation: fadeIn 0.4s ease;
}

.form-step.active {
    display: block;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(20px) scale(0.98); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

.form-step h2 {
    text-align: center;
    margin-bottom: 30px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2rem;
    letter-spacing: 4px;
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

/* ========================================
   BERBER KARTLARI - TRAP STYLE
======================================== */
.barber-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
}

.barber-card {
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border: 2px solid #333;
    border-radius: 20px;
    padding: 25px 15px;
    text-align: center;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.barber-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 0, 255, 0.1), transparent);
    transition: left 0.5s ease;
}

.barber-card:hover::before {
    left: 100%;
}

.barber-card:hover {
    border-color: #ff00ff;
    transform: translateY(-8px) scale(1.02);
    box-shadow:
        0 10px 40px rgba(255, 0, 255, 0.3),
        0 0 0 1px rgba(255, 0, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.barber-card.selected {
    border-color: #00ffff;
    background: linear-gradient(145deg, #1a1040 0%, #150530 100%);
    box-shadow:
        0 0 30px rgba(0, 255, 255, 0.4),
        inset 0 0 30px rgba(0, 255, 255, 0.1);
}

.barber-avatar {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, #ff00ff 0%, #8b00ff 50%, #00ffff 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
    font-size: 2rem;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.5);
    animation: avatarFloat 3s ease-in-out infinite;
}

@keyframes avatarFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-5px); }
}

.barber-card.selected .barber-avatar {
    box-shadow: 0 0 35px rgba(0, 255, 255, 0.7);
}

.barber-card h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 2px;
    margin-bottom: 8px;
    color: #fff;
}

.barber-role {
    display: inline-block;
    padding: 5px 15px;
    border-radius: 20px;
    font-size: 0.7rem;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-weight: 600;
}

.barber-role.patron {
    background: linear-gradient(90deg, #ff00ff, #ff0080);
    color: #fff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.barber-role.usta {
    background: linear-gradient(90deg, #00ffff, #00ff88);
    color: #000;
    box-shadow: 0 0 15px rgba(0, 255, 255, 0.3);
}

.barber-exp {
    font-size: 0.75rem;
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ========================================
   TAKVİM - STREET STYLE
======================================== */
.view-selector {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 25px;
}

.view-btn {
    padding: 12px 30px;
    border: 2px solid #333;
    border-radius: 30px;
    background: transparent;
    color: #888;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.view-btn:hover {
    border-color: #ff00ff;
    color: #ff00ff;
}

.view-btn.active {
    background: linear-gradient(90deg, #ff00ff, #8b00ff);
    border-color: #ff00ff;
    color: #fff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.4);
}

.calendar-view {
    display: none;
}

.calendar-view.active {
    display: block;
}

.week-nav, .month-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.nav-btn {
    width: 45px;
    height: 45px;
    border: 2px solid #ff00ff;
    border-radius: 50%;
    background: transparent;
    color: #ff00ff;
    cursor: pointer;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

.nav-btn:hover {
    background: #ff00ff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.week-title, .month-title {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 3px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.5);
}

.days-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
}

.day-card {
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border: 2px solid #222;
    border-radius: 15px;
    padding: 15px 5px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.day-card:hover:not(.disabled) {
    border-color: #ff00ff;
    background: linear-gradient(145deg, #2a1545 0%, #1a0a30 100%);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
    transform: scale(1.05);
}

.day-card.selected {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    border-color: #ff00ff;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.6);
}

.day-card.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.day-card .day-name {
    font-size: 0.65rem;
    color: #666;
    margin-bottom: 5px;
    text-transform: uppercase;
}

.day-card.selected .day-name,
.day-card:hover:not(.disabled) .day-name {
    color: #fff;
}

.day-card .day-num {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    font-weight: 400;
}

/* Aylık Görünüm */
.month-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 5px;
}

.month-grid .day-header {
    text-align: center;
    font-size: 0.7rem;
    color: #ff00ff;
    padding: 8px 0;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.month-grid .month-day {
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border: 1px solid #222;
    border-radius: 10px;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.month-grid .month-day:hover:not(.disabled):not(.empty) {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    border-color: #ff00ff;
    box-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.month-grid .month-day.selected {
    background: linear-gradient(135deg, #ff00ff, #8b00ff);
    border-color: #ff00ff;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.6);
}

.month-grid .month-day.disabled {
    opacity: 0.2;
    cursor: not-allowed;
}

.month-grid .month-day.empty {
    background: transparent;
    border: none;
    cursor: default;
}

.month-grid .month-day.today {
    border: 2px solid #00ffff;
    box-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ========================================
   SAAT SEÇİMİ
======================================== */
.time-selection {
    margin-top: 30px;
    padding-top: 25px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, #ff00ff, transparent) 1;
}

.time-selection h3 {
    text-align: center;
    margin-bottom: 20px;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 2px;
    color: #00ffff;
}

.time-slots {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
}

.time-slot {
    padding: 15px;
    text-align: center;
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border: 2px solid #222;
    border-radius: 12px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 1px;
}

.time-slot:hover:not(.disabled) {
    border-color: #00ffff;
    background: linear-gradient(145deg, #0a2030 0%, #0a1520 100%);
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3);
    transform: scale(1.05);
}

.time-slot.selected {
    background: linear-gradient(135deg, #00ffff, #00ff88);
    border-color: #00ffff;
    color: #000;
    font-weight: 600;
    box-shadow: 0 0 25px rgba(0, 255, 255, 0.5);
}

.time-slot.disabled {
    opacity: 0.2;
    cursor: not-allowed;
    text-decoration: line-through;
}

/* ========================================
   FORM - NEON INPUT
======================================== */
.form-group {
    margin-bottom: 25px;
}

.form-group label {
    display: block;
    margin-bottom: 10px;
    color: #ff00ff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 18px;
    border: 2px solid #333;
    border-radius: 15px;
    background: linear-gradient(145deg, #0d0d1a 0%, #1a1030 100%);
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 1px;
    transition: all 0.3s ease;
}

.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #00ffff;
    box-shadow: 0 0 20px rgba(0, 255, 255, 0.3), inset 0 0 20px rgba(0, 255, 255, 0.05);
}

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

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #444;
    text-transform: uppercase;
}

/* ========================================
   BUTONLAR - GLOW EFFECT
======================================== */
.btn-group {
    display: flex;
    gap: 15px;
    margin-top: 35px;
}

.btn-back {
    flex: 1;
    padding: 18px;
    border: 2px solid #ff00ff;
    border-radius: 15px;
    background: transparent;
    color: #ff00ff;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 3px;
    transition: all 0.3s ease;
}

.btn-back:hover {
    background: rgba(255, 0, 255, 0.1);
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

.btn-next,
.btn-confirm {
    flex: 2;
    padding: 18px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff00ff, #8b00ff, #00ffff);
    background-size: 200% auto;
    color: #fff;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
    animation: btnGlow 3s linear infinite;
}

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

.btn-next:hover,
.btn-confirm:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5);
}

/* ========================================
   ÖZET KARTI
======================================== */
.summary-card {
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border-radius: 20px;
    padding: 30px;
    border: 2px solid;
    border-image: linear-gradient(135deg, #ff00ff, #00ffff) 1;
    box-shadow: 0 0 30px rgba(255, 0, 255, 0.2);
}

.summary-item {
    display: flex;
    justify-content: space-between;
    padding: 15px 0;
    border-bottom: 1px solid #222;
}

.summary-item:last-child {
    border-bottom: none;
}

.summary-label {
    color: #888;
    text-transform: uppercase;
    letter-spacing: 1px;
    font-size: 0.9rem;
}

.summary-value {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.1rem;
    letter-spacing: 2px;
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

/* ========================================
   BAŞARI MESAJI
======================================== */
.success-message {
    text-align: center;
    padding: 50px 20px;
}

.success-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #00ff88, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 25px;
    font-size: 3rem;
    color: #000;
    box-shadow: 0 0 40px rgba(0, 255, 255, 0.6);
    animation: successPulse 2s ease-in-out infinite;
}

@keyframes successPulse {
    0%, 100% { box-shadow: 0 0 40px rgba(0, 255, 255, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 60px rgba(0, 255, 255, 0.9); transform: scale(1.05); }
}

.success-message h2 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 2.5rem;
    letter-spacing: 5px;
    color: #00ffff;
    text-shadow: 0 0 20px rgba(0, 255, 255, 0.5);
    margin-bottom: 15px;
}

.success-message p {
    color: #888;
    margin-bottom: 10px;
    font-size: 1rem;
}

.success-info {
    font-size: 0.9rem;
    color: #666;
}

.btn-new {
    margin-top: 35px;
    padding: 18px 50px;
    border: none;
    border-radius: 15px;
    background: linear-gradient(90deg, #ff00ff, #8b00ff);
    color: #fff;
    cursor: pointer;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.3rem;
    letter-spacing: 4px;
    transition: all 0.3s ease;
    box-shadow: 0 0 25px rgba(255, 0, 255, 0.4);
}

.btn-new:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 40px rgba(255, 0, 255, 0.5);
}

/* ========================================
   FOOTER
======================================== */
.footer {
    background: linear-gradient(180deg, #0a0a0a 0%, #000 100%);
    padding: 25px;
    text-align: center;
    margin-top: 50px;
    border-top: 2px solid;
    border-image: linear-gradient(90deg, transparent, #ff00ff, #00ffff, transparent) 1;
}

.footer p {
    color: #ff00ff;
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1rem;
    letter-spacing: 3px;
    text-shadow: 0 0 10px rgba(255, 0, 255, 0.3);
}

.footer-info {
    margin-top: 8px;
    font-size: 0.8rem !important;
    color: #666 !important;
    text-shadow: none !important;
}

/* ========================================
   RESPONSIVE
======================================== */
@media (max-width: 480px) {
    .barber-grid {
        grid-template-columns: 1fr;
    }

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

    .step-text {
        display: none;
    }

    .logo h1 {
        font-size: 1.8rem;
        letter-spacing: 3px;
    }

    .form-step h2 {
        font-size: 1.5rem;
    }
}

/* ========================================
   LOADING SPINNER
======================================== */
.loading {
    display: none;
    text-align: center;
    padding: 30px;
}

.spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #1a1030;
    border-top-color: #ff00ff;
    border-right-color: #00ffff;
    border-radius: 50%;
    animation: spin 0.8s linear infinite;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.3);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

/* ========================================
   ONERI MODALI - TRAP STYLE
======================================== */
.modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
    z-index: 1000;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    background: linear-gradient(145deg, #1a1030 0%, #0d0d1a 100%);
    border-radius: 25px;
    width: 100%;
    max-width: 400px;
    border: 2px solid #ff00ff;
    box-shadow: 0 0 50px rgba(255, 0, 255, 0.4);
    animation: modalSlide 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes modalSlide {
    from {
        opacity: 0;
        transform: translateY(-30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 25px;
    border-bottom: 1px solid #333;
}

.modal-header h3 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.4rem;
    letter-spacing: 3px;
    color: #ff00ff;
    text-shadow: 0 0 15px rgba(255, 0, 255, 0.5);
}

.modal-close {
    width: 40px;
    height: 40px;
    border: 2px solid #ff00ff;
    border-radius: 50%;
    background: transparent;
    color: #ff00ff;
    font-size: 1.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.modal-close:hover {
    background: #ff00ff;
    color: #000;
    box-shadow: 0 0 20px rgba(255, 0, 255, 0.5);
}

.modal-body {
    padding: 25px;
}

.modal-info {
    text-align: center;
    margin-bottom: 25px;
    color: #888;
    font-size: 1rem;
}

.modal-info strong {
    color: #00ffff;
    text-shadow: 0 0 10px rgba(0, 255, 255, 0.3);
}

.suggestion-title {
    color: #00ff88;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    margin-bottom: 15px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.suggestion-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.suggestion-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px;
    background: linear-gradient(145deg, #0d0d1a 0%, #1a1030 100%);
    border-radius: 15px;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 2px solid transparent;
}

.suggestion-card:hover {
    border-color: #00ff88;
    transform: translateX(8px);
    box-shadow: 0 0 25px rgba(0, 255, 136, 0.3);
}

.suggestion-avatar {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #00ff88, #00ffff);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    box-shadow: 0 0 15px rgba(0, 255, 136, 0.4);
}

.suggestion-info {
    flex: 1;
}

.suggestion-info h4 {
    font-family: 'Bebas Neue', sans-serif;
    font-size: 1.2rem;
    letter-spacing: 2px;
    color: #fff;
    margin-bottom: 3px;
}

.suggestion-info p {
    font-size: 0.8rem;
    color: #888;
}

.suggestion-select {
    color: #00ff88;
    font-size: 1.5rem;
    text-shadow: 0 0 10px rgba(0, 255, 136, 0.5);
}

.no-suggestion {
    text-align: center;
    padding: 25px;
}

.no-suggestion p {
    color: #888;
    margin-bottom: 8px;
}

.no-suggestion .hint {
    font-size: 0.85rem;
    color: #ff00ff;
}

.modal-footer {
    padding: 15px 25px 25px;
}

.btn-modal-close {
    width: 100%;
    padding: 15px;
    border: 2px solid #444;
    border-radius: 12px;
    background: transparent;
    color: #888;
    cursor: pointer;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    transition: all 0.3s ease;
}

.btn-modal-close:hover {
    border-color: #ff00ff;
    color: #ff00ff;
}

/* ========================================
   TOAST MESSAGES - NEON
======================================== */
.toast {
    position: fixed;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    padding: 18px 40px;
    border-radius: 15px;
    color: #fff;
    font-family: 'Oswald', sans-serif;
    font-size: 1rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    z-index: 1000;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.toast.success {
    background: linear-gradient(90deg, #00ff88, #00ffff);
    color: #000;
    box-shadow: 0 0 30px rgba(0, 255, 136, 0.5);
}

.toast.error {
    background: linear-gradient(90deg, #ff0066, #ff00ff);
    color: #fff;
    box-shadow: 0 0 30px rgba(255, 0, 102, 0.5);
}

@keyframes slideUp {
    from {
        opacity: 0;
        transform: translateX(-50%) translateY(30px) scale(0.9);
    }
    to {
        opacity: 1;
        transform: translateX(-50%) translateY(0) scale(1);
    }
}
