:root {
    --deepwash-blue: #1B4FD8;
    --deepwash-cyan: #06B6D4;
    --deepwash-dark: #0F172A;
    --deepwash-light: #F8FAFC;
}

body {
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
}

.gradient-hero {
    background: linear-gradient(135deg, var(--deepwash-blue) 0%, var(--deepwash-cyan) 100%);
}

.gradient-text {
    background: linear-gradient(135deg, var(--deepwash-blue), var(--deepwash-cyan));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.btn-primary {
    @apply inline-flex items-center justify-center px-6 py-3 rounded-xl font-semibold text-white transition-all duration-200;
    background: linear-gradient(135deg, var(--deepwash-blue), #2563eb);
    box-shadow: 0 4px 14px rgba(27, 79, 216, 0.35);
}

.btn-primary:hover {
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(27, 79, 216, 0.45);
}

.card-hover {
    transition: transform 0.2s, box-shadow 0.2s;
}

.card-hover:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.1);
}

/* Admin login animations */
.login-gradient {
    background: linear-gradient(-45deg, #1B4FD8, #2563eb, #06B6D4, #0891b2);
    background-size: 400% 400%;
    animation: gradientShift 12s ease infinite;
}

@keyframes gradientShift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.4;
    animation: float 8s ease-in-out infinite;
}

.blob-1 { width: 300px; height: 300px; background: #06B6D4; top: 10%; left: 10%; animation-delay: 0s; }
.blob-2 { width: 200px; height: 200px; background: #fff; top: 60%; right: 20%; animation-delay: 2s; }
.blob-3 { width: 150px; height: 150px; background: #1B4FD8; bottom: 20%; left: 30%; animation-delay: 4s; }

@keyframes float {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-20px) scale(1.05); }
}

/* Widget */
.help-widget-btn {
    box-shadow: 0 8px 30px rgba(27, 79, 216, 0.4);
}

.help-widget-panel {
    transform-origin: bottom right;
    transition: opacity 0.2s, transform 0.2s;
}

.help-widget-panel.hidden-panel {
    opacity: 0;
    transform: scale(0.95);
    pointer-events: none;
}

/* Booking steps */
.step-active {
    background: var(--deepwash-blue);
    color: white;
}

.step-done {
    background: var(--deepwash-cyan);
    color: white;
}

/* Toast */
.toast {
    animation: slideIn 0.3s ease;
}

@keyframes slideIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* Admin sidebar */
.sidebar-link.active {
    background: rgba(6, 182, 212, 0.15);
    color: #06B6D4;
    border-left: 3px solid #06B6D4;
}
