@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=DM+Sans:ital,wght@0,300;0,400;0,500;0,600;1,400&display=swap');

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

:root {
    --primary: #E84C1E;
    --primary-dark: #C23A10;
    --primary-glow: rgba(232, 76, 30, 0.25);
    --secondary: #F5C400;
    --secondary-dark: #D4A800;
    --dark: #111111;
    --darker: #080808;
    --gray: #1C1C1C;
    --light-gray: #2A2A2A;
    --border: #333333;
    --white: #FFFFFF;
    --text-gray: #888888;
    --text-muted: #555555;
    --success: #22C55E;
    --radius: 12px;
    --radius-sm: 8px;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--darker);
    color: var(--white);
    line-height: 1.6;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Syne', sans-serif;
}

/* ===== SCROLLBAR ===== */
::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: var(--darker); }
::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 3px; }

/* ===== NAVBAR ===== */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(8, 8, 8, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    z-index: 1000;
    border-bottom: 1px solid var(--border);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 1rem;
}

.logo h1 {
    font-family: 'Syne', sans-serif;
    font-size: 1.7rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--white);
}

.logo h1 span {
    color: var(--primary);
}

.logo p {
    font-size: 0.65rem;
    color: var(--text-gray);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-top: -2px;
}

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2rem;
}

.nav-menu a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.2s;
    letter-spacing: 0.02em;
}

.nav-menu a:hover { color: var(--white); }

.nav-buttons { display: flex; gap: 0.75rem; align-items: center; }

.btn-provider {
    padding: 0.55rem 1.25rem;
    background: var(--primary);
    color: var(--white);
    border: none;
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 600;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.btn-provider:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 20px var(--primary-glow);
}

.btn-login {
    padding: 0.55rem 1.25rem;
    background: transparent;
    color: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.2s;
}

.btn-login:hover {
    border-color: var(--primary);
    color: var(--primary);
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--darker);
    padding: 7rem 2rem 5rem;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 900px;
    background: radial-gradient(ellipse, rgba(232,76,30,0.1) 0%, transparent 65%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.hero-content {
    max-width: 860px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232,76,30,0.12);
    border: 1px solid rgba(232,76,30,0.3);
    color: var(--primary);
    padding: 0.4rem 1rem;
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
    color: var(--white);
}

.hero h1 span {
    color: var(--primary);
    position: relative;
}

.hero > .hero-content > p {
    font-size: 1.15rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
    max-width: 580px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    margin-bottom: 3rem;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

.stat {
    flex: 1;
    padding: 1.2rem 1rem;
    border-right: 1px solid var(--border);
    text-align: center;
}

.stat:last-child { border-right: none; }

.stat h3 {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--primary);
    line-height: 1;
}

.stat p {
    font-size: 0.72rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-top: 0.3rem;
}

.search-bar {
    max-width: 560px;
    margin: 0 auto;
    display: flex;
    gap: 0;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 0.4rem;
    transition: border-color 0.2s;
}

.search-bar:focus-within {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.search-bar input {
    flex: 1;
    padding: 0.8rem 1rem;
    background: transparent;
    border: none;
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    outline: none;
}

.search-bar input::placeholder { color: var(--text-muted); }

.search-bar button {
    padding: 0.8rem 1.5rem;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: background 0.2s;
    white-space: nowrap;
}

.search-bar button:hover { background: var(--primary-dark); }

/* ===== SECTIONS ===== */
.machines-section { padding: 5rem 2rem; background: var(--dark); }
.how-it-works { padding: 5rem 2rem; background: var(--darker); }
.providers-section { padding: 5rem 2rem; background: var(--gray); text-align: center; }
.contact-section { padding: 5rem 2rem; background: var(--dark); text-align: center; }

.container { max-width: 1280px; margin: 0 auto; }

.section-title {
    font-size: clamp(1.8rem, 4vw, 2.8rem);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.section-subtitle {
    text-align: center;
    color: var(--text-gray);
    font-size: 1rem;
    margin-bottom: 3rem;
}

/* ===== CATEGORY TABS ===== */
.category-tabs {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.cat-btn {
    padding: 0.55rem 1.2rem;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: 50px;
    color: var(--text-gray);
    cursor: pointer;
    transition: all 0.2s;
    font-size: 0.85rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
}

.cat-btn.active, .cat-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: var(--white);
}

/* ===== MACHINE CARDS ===== */
.machines-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 1.5rem;
}

.machine-card {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
}

.machine-card:hover {
    transform: translateY(-4px);
    border-color: var(--primary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px var(--primary-glow);
}

.machine-icon {
    font-size: 3rem;
    text-align: center;
    padding: 2rem;
    background: linear-gradient(135deg, rgba(232,76,30,0.15) 0%, rgba(232,76,30,0.05) 100%);
    border-bottom: 1px solid var(--border);
}

.machine-info { padding: 1.5rem; }

.machine-info h3 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
    letter-spacing: -0.01em;
}

.machine-category {
    display: inline-block;
    color: var(--primary);
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 600;
    margin-bottom: 0.75rem;
    background: rgba(232,76,30,0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

.machine-desc {
    color: var(--text-gray);
    font-size: 0.88rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.machine-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}

.machine-price {
    font-size: 1.4rem;
    font-weight: 800;
    color: var(--secondary);
    font-family: 'Syne', sans-serif;
}

.machine-price small {
    font-size: 0.7rem;
    color: var(--text-gray);
    font-weight: 400;
    font-family: 'DM Sans', sans-serif;
}

.book-now {
    padding: 0.6rem 1.25rem;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 600;
    font-size: 0.88rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap;
}

.book-now:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 15px var(--primary-glow);
}

/* ===== HOW IT WORKS ===== */
.steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.5rem;
    margin-top: 3rem;
    position: relative;
}

.step {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: border-color 0.3s;
}

.step:hover { border-color: var(--primary); }

.step-number {
    width: 52px;
    height: 52px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    font-weight: 800;
    font-family: 'Syne', sans-serif;
    margin: 0 auto 1.25rem;
    box-shadow: 0 4px 20px var(--primary-glow);
}

.step h3 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
    font-weight: 700;
}

.step p {
    font-size: 0.88rem;
    color: var(--text-gray);
}

/* ===== PROVIDERS ===== */
.provider-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
    margin: 2.5rem 0;
    text-align: left;
}

.benefit {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: all 0.3s;
}

.benefit:hover {
    background: rgba(255,255,255,0.08);
    border-color: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}

.benefit h3 { font-size: 1rem; margin-bottom: 0.5rem; }
.benefit p { font-size: 0.88rem; color: rgba(255,255,255,0.65); }

.btn-primary {
    display: inline-block;
    padding: 0.9rem 2rem;
    background: var(--secondary);
    border: none;
    border-radius: var(--radius-sm);
    color: #111;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

.btn-primary:hover {
    background: var(--secondary-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(245,196,0,0.3);
}

/* ===== CONTACT ===== */
.contact-info {
    display: inline-flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: left;
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 2rem 2.5rem;
    margin-top: 1rem;
}

.contact-info p {
    font-size: 1rem;
    color: var(--text-gray);
}

.contact-info p strong { color: var(--white); }

/* ===== FOOTER ===== */
footer {
    background: var(--gray);
    border-top: 1px solid var(--border);
    padding: 3rem 2rem;
}

.footer-content {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 2rem;
}

.footer-section h3 {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
}

.footer-section h4 {
    font-size: 0.85rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 1rem;
}

.footer-section p { color: var(--text-gray); font-size: 0.9rem; margin-bottom: 0.4rem; }

.footer-section ul { list-style: none; }
.footer-section ul li { margin-bottom: 0.5rem; }

.footer-section a {
    color: var(--text-gray);
    text-decoration: none;
    font-size: 0.9rem;
    cursor: pointer;
    transition: color 0.2s;
}

.footer-section a:hover { color: var(--primary); }

.footer-bottom {
    max-width: 1280px;
    margin: 2rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.82rem;
}

/* ===== MODALS ===== */
.modal {
    display: none;
    position: fixed;
    z-index: 2000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.85);
    backdrop-filter: blur(8px);
    align-items: center;
    justify-content: center;
    padding: 1rem;
}

.modal.show { display: flex; animation: fadeIn 0.2s ease; }

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

.modal-content {
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 2rem;
    border-radius: var(--radius);
    max-width: 520px;
    width: 100%;
    max-height: 90vh;
    overflow-y: auto;
    position: relative;
    animation: slideUp 0.3s ease;
}

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

.modal-content h2 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    letter-spacing: -0.02em;
    padding-right: 2rem;
}

.close {
    position: absolute;
    right: 1.25rem;
    top: 1.25rem;
    font-size: 1.4rem;
    cursor: pointer;
    color: var(--text-gray);
    line-height: 1;
    transition: color 0.2s;
    background: none;
    border: none;
    padding: 0;
    width: auto;
}

.close:hover { color: var(--white); }

/* ===== FORMS ===== */
.form-group {
    margin-bottom: 1.1rem;
    position: relative;
}

.form-group label {
    display: block;
    margin-bottom: 0.4rem;
    font-weight: 500;
    font-size: 0.88rem;
    color: var(--text-gray);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.75rem 1rem;
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-size: 0.95rem;
    font-family: 'DM Sans', sans-serif;
    transition: border-color 0.2s, box-shadow 0.2s;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--primary);
    box-shadow: 0 0 0 3px var(--primary-glow);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group select option { background: var(--gray); }

button[type="submit"] {
    width: 100%;
    padding: 0.9rem;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: var(--white);
    font-weight: 700;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: all 0.2s;
    letter-spacing: 0.01em;
}

button[type="submit"]:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 6px 25px var(--primary-glow);
}

/* ===== ADDRESS AUTOCOMPLETE ===== */
.address-suggestions {
    position: absolute;
    top: calc(100% + 2px);
    left: 0;
    right: 0;
    background: var(--light-gray);
    border: 1px solid var(--primary);
    border-radius: var(--radius-sm);
    z-index: 100;
    max-height: 200px;
    overflow-y: auto;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.address-suggestion-item {
    padding: 0.75rem 1rem;
    cursor: pointer;
    font-size: 0.88rem;
    color: var(--text-gray);
    border-bottom: 1px solid var(--border);
    transition: background 0.15s;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
}

.address-suggestion-item:last-child { border-bottom: none; }
.address-suggestion-item:hover { background: var(--gray); color: var(--white); }
.address-suggestion-item .suggestion-icon { color: var(--primary); margin-top: 1px; flex-shrink: 0; }

/* ===== BOOKING SUMMARY ===== */
.booking-summary {
    background: var(--light-gray);
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 1rem;
    margin-bottom: 1.25rem;
}

.booking-summary h3 {
    font-size: 0.85rem;
    color: var(--text-gray);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.booking-summary-row {
    display: flex;
    justify-content: space-between;
    font-size: 0.9rem;
    margin-bottom: 0.4rem;
    color: var(--text-gray);
}

.booking-summary-row.total {
    border-top: 1px solid var(--border);
    padding-top: 0.5rem;
    margin-top: 0.5rem;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--white);
}

.booking-summary-row.advance {
    color: var(--secondary);
    font-weight: 600;
}

.booking-summary-row span:last-child { color: var(--white); font-weight: 500; }
.booking-summary-row.total span:last-child { color: var(--secondary); }

/* ===== WHATSAPP BTN ===== */
.whatsapp-btn {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    justify-content: center;
    width: 100%;
    padding: 0.9rem;
    background: #25D366;
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 700;
    font-size: 1rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    margin-top: 0.75rem;
    transition: all 0.2s;
}

.whatsapp-btn:hover {
    background: #1da851;
    transform: translateY(-1px);
}

/* ===== SUCCESS STATE ===== */
.booking-success {
    text-align: center;
    padding: 1.5rem 1rem;
}

.booking-success .success-icon {
    font-size: 3.5rem;
    margin-bottom: 1rem;
    display: block;
}

.booking-success h3 {
    font-size: 1.4rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}

.booking-success p {
    color: var(--text-gray);
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
}

/* ===== TOAST ===== */
.toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    background: var(--gray);
    border: 1px solid var(--success);
    color: var(--success);
    padding: 0.85rem 1.25rem;
    border-radius: var(--radius-sm);
    z-index: 9999;
    font-size: 0.9rem;
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    animation: toastIn 0.3s ease;
    max-width: 320px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.4);
}

.toast.error {
    border-color: #ef4444;
    color: #ef4444;
}

@keyframes toastIn {
    from { transform: translateX(100%); opacity: 0; }
    to { transform: translateX(0); opacity: 1; }
}

/* ===== DASHBOARD ===== */
.dashboard-container {
    max-width: 1280px;
    margin: 90px auto 0;
    padding: 2rem;
}

.dashboard-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.dashboard-header h1 {
    font-size: 1.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.dashboard-header h1 span { color: var(--primary); }

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1.25rem;
    margin-bottom: 2rem;
}

.stat-card {
    background: var(--gray);
    border: 1px solid var(--border);
    padding: 1.5rem;
    border-radius: var(--radius);
    transition: border-color 0.3s;
}

.stat-card:hover { border-color: var(--primary); }

.stat-card .stat-label {
    font-size: 0.78rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-gray);
    margin-bottom: 0.5rem;
}

.stat-card h3 {
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: -0.03em;
}

.section-title-sm {
    font-size: 1.2rem;
    font-weight: 700;
    margin: 2rem 0 1rem;
    letter-spacing: -0.01em;
}

.machine-list, .bookings-list {
    background: var(--gray);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.machine-item, .booking-item {
    padding: 1.1rem 1.25rem;
    border-bottom: 1px solid var(--border);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    transition: background 0.2s;
}

.machine-item:last-child, .booking-item:last-child { border-bottom: none; }
.machine-item:hover, .booking-item:hover { background: var(--light-gray); }

.machine-item strong, .booking-item strong {
    font-size: 1rem;
    font-weight: 600;
}

.machine-item small, .booking-item small {
    color: var(--text-gray);
    font-size: 0.82rem;
}

.status {
    padding: 0.28rem 0.7rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-transform: capitalize;
}

.status-pending { background: rgba(245,196,0,0.15); color: var(--secondary); border: 1px solid rgba(245,196,0,0.3); }
.status-confirmed { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.status-completed { background: rgba(59,130,246,0.15); color: #60a5fa; border: 1px solid rgba(59,130,246,0.3); }
.status-available { background: rgba(34,197,94,0.15); color: #22c55e; border: 1px solid rgba(34,197,94,0.3); }
.status-unavailable { background: rgba(239,68,68,0.15); color: #f87171; border: 1px solid rgba(239,68,68,0.3); }

.btn-small {
    background: var(--light-gray);
    color: var(--white);
    border: 1px solid var(--border);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-size: 0.8rem;
    font-family: 'DM Sans', sans-serif;
    font-weight: 500;
    margin-left: 0.4rem;
    transition: all 0.2s;
}

.btn-small:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.add-machine-btn {
    background: var(--primary);
    color: white;
    padding: 0.65rem 1.3rem;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-weight: 600;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    transition: all 0.2s;
}

.add-machine-btn:hover {
    background: var(--primary-dark);
    box-shadow: 0 4px 15px var(--primary-glow);
}

.logout-btn {
    background: transparent;
    color: var(--text-gray);
    border: 1px solid var(--border);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-sm);
    cursor: pointer;
    font-family: 'DM Sans', sans-serif;
    font-size: 0.88rem;
    transition: all 0.2s;
}

.logout-btn:hover { color: var(--white); border-color: var(--white); }

/* ===== LOADING ===== */
.loading-state {
    text-align: center;
    padding: 3rem;
    color: var(--text-gray);
    font-size: 0.9rem;
}

.spinner {
    width: 28px;
    height: 28px;
    border: 3px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    margin: 0 auto 1rem;
}

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

/* ===== EMPTY STATE ===== */
.empty-state {
    padding: 3rem;
    text-align: center;
    color: var(--text-gray);
}

.empty-state .empty-icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.empty-state p { font-size: 0.9rem; }

/* ===== MOBILE ===== */
@media (max-width: 768px) {
    .nav-menu { display: none; }
    .hero h1 { font-size: 2.2rem; }
    .search-bar { flex-direction: column; }
    .search-bar input, .search-bar button { border-radius: var(--radius-sm); }
    .machines-grid { grid-template-columns: 1fr; }
    .hero-stats { flex-direction: column; gap: 0; max-width: 280px; }
    .stat { border-right: none; border-bottom: 1px solid var(--border); }
    .stat:last-child { border-bottom: none; }
    .steps { grid-template-columns: 1fr; }
    .provider-benefits { grid-template-columns: 1fr; }
    .toast { left: 1rem; right: 1rem; }
    .dashboard-header { flex-direction: column; align-items: flex-start; }
}

/* ===== LOCKED MACHINE CARDS (logged-out state) ===== */
.machine-card--locked {
    opacity: 0.75;
    cursor: pointer;
    position: relative;
}

.machine-card--locked::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius);
    background: transparent;
}

.machine-card--locked:hover {
    opacity: 1;
    border-color: var(--secondary);
    box-shadow: 0 12px 40px rgba(0,0,0,0.4), 0 0 0 1px rgba(245,196,0,0.3);
}

.book-now--locked {
    background: var(--light-gray) !important;
    border: 1px solid var(--border);
    color: var(--text-gray) !important;
    font-size: 0.82rem !important;
}

.book-now--locked:hover {
    background: var(--secondary) !important;
    color: var(--dark) !important;
    border-color: var(--secondary);
    box-shadow: none !important;
}

/* ===== LOGIN WALL BANNER (shown to logged-out visitors) ===== */
.login-wall-banner {
    background: linear-gradient(135deg, rgba(232,76,30,0.12) 0%, rgba(245,196,0,0.08) 100%);
    border: 1px solid rgba(232,76,30,0.3);
    border-radius: var(--radius);
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.login-wall-banner p {
    color: var(--white);
    font-size: 0.95rem;
    font-weight: 500;
}

.login-wall-banner p span {
    color: var(--secondary);
    font-weight: 700;
}

.login-wall-btn {
    padding: 0.6rem 1.4rem;
    background: var(--primary);
    border: none;
    border-radius: var(--radius-sm);
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
    font-family: 'DM Sans', sans-serif;
    cursor: pointer;
    white-space: nowrap;
    transition: all 0.2s;
}

.login-wall-btn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ===== AUTH MODAL STYLES ===== */
.auth-logo {
    font-family: 'Syne', sans-serif;
    font-size: 1.6rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 0.25rem;
    letter-spacing: -0.02em;
}
.auth-logo span { color: var(--primary); }

.auth-hint {
    color: var(--primary);
    font-size: 0.85rem;
    font-weight: 600;
    min-height: 1.2em;
    margin-bottom: 1.25rem;
}

.auth-tabs {
    display: flex;
    gap: 0;
    background: var(--light-gray);
    border-radius: var(--radius-sm);
    padding: 4px;
    margin-bottom: 1.5rem;
}

.auth-tab {
    flex: 1;
    padding: 0.6rem;
    border: none;
    border-radius: calc(var(--radius-sm) - 2px);
    background: transparent;
    color: var(--text-gray);
    font-family: 'DM Sans', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
}

.auth-tab--active {
    background: var(--primary);
    color: var(--white);
    box-shadow: 0 2px 8px var(--primary-glow);
}

.auth-error {
    color: #ef4444;
    font-size: 0.83rem;
    min-height: 1.2em;
    margin-bottom: 0.25rem;
    font-weight: 500;
}

.auth-switch {
    text-align: center;
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1.25rem;
}

.auth-switch a {
    color: var(--primary);
    font-weight: 600;
    cursor: pointer;
    text-decoration: underline;
}

.auth-switch a:hover { color: var(--white); }