:root {
    --primary-green: #5eb319;
    --dark-green: #2a3d2e;
    --light-bg: #fdfdfd;
    --text-black: #1a1a1a;
    --text-muted: #666666;
    --dark-bg: #0f0f0f;
    --darker-bg: #0a0a0a;
    --text-white: #f5f5f5;
    --input-bg: #121212;
    --danger: #e74c3c;
    --warning: #f1c40f;
    --accent-neon: #7dff76;
}

body {
    background: var(--light-bg);
    color: var(--text-black);
    overflow-x: hidden;
}
body.no-scroll { overflow: hidden; }

.btn-primary {
    background: var(--dark-green);
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.btn-primary:hover {
    background: var(--primary-green);
    transform: translateY(-2px);
}

.form-control {
    background: #f9f9f9;
    border: 1px solid #eee;
    padding: 12px 15px;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
}

.form-group label {
    font-weight: 600;
    font-size: 0.9rem;
    margin-bottom: 8px;
    display: block;
}
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Montserrat', sans-serif;
}

/* Global typography */
html, body { line-height: 1.4; }

/* Home Specific Styles */
.home-section { padding: 60px 0; text-align: center; }

.section-title {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-black);
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    margin-bottom: 40px;
}

/* Hero */
.hero-new {
    background: url('../img/hero-city.svg') no-repeat center center;
    background-size: cover;
    height: 680px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 110px;
    position: relative;
    color: white;
}

.hero-bottom {
    position: absolute;
    left: 0;
    bottom: -32px;
    width: 100%;
    height: 64px;
    background: #ffffff;
    border-top-left-radius: 60% 100px;
    border-top-right-radius: 60% 100px;
    box-shadow: 0 -8px 24px rgba(0,0,0,0.08);
    z-index: 2;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
      linear-gradient(180deg, rgba(0,0,0,0.55) 0%, rgba(0,0,0,0.35) 40%, rgba(0,0,0,0.2) 100%),
      radial-gradient(80% 50% at 85% 35%, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0) 60%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: left;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    padding: 0 20px;
}

.hero-text {
    font-size: 2rem;
    line-height: 1.3;
    font-weight: 700;
    max-width: 680px;
    margin: 40px 0 30px 0;
}

/* Right illustration wrapper */
.hero-illus { position: absolute; right: 40px; top: 40px; width: 420px; height: 520px; z-index:1; pointer-events:none; }
.hero-illus .illus-phone { position:absolute; right:0; top:0; width:260px; height:auto; opacity:.5; }
.hero-illus .illus-van { position:absolute; right:220px; top:220px; width:280px; height:auto; transform: rotate(-6deg); }
.hero-illus .illus-drop { position:absolute; right:170px; top:70px; width:90px; height:auto; }

.promo-chip {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background: rgba(0,0,0,0.55);
    border: 1px solid rgba(255,255,255,0.15);
    color: #eaeaea;
    padding: 10px 14px;
    border-radius: 14px;
    backdrop-filter: blur(2px);
    font-size: 0.9rem;
}

.simulator-card {
    position: absolute;
    right: 10px;
    top: 120px;
    width: 300px;
    background: #0f1011;
    border-radius: 28px;
    border: 1px solid rgba(255,255,255,0.06);
    box-shadow: 0 20px 55px rgba(0,0,0,0.55);
    overflow: hidden;
    z-index: 4;
}

.sim-header {
    background: linear-gradient(180deg, #7ae03a 0%, #58b61a 100%);
    color: #fff;
    padding: 16px 18px;
    font-weight: 800;
    display: flex;
    flex-direction: column;
    gap: 2px;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.25), 0 10px 18px rgba(88,182,26,0.35);
}

.sim-header small { opacity: .95; font-weight: 700; letter-spacing: .2px; }
.sim-amount { font-size: 1.9rem; line-height: 1; text-shadow: 0 2px 0 rgba(0,0,0,0.2); }

.sim-body {
    padding: 16px 18px 18px;
}

.sim-label {
    font-size: .78rem;
    color: #cfcfcf;
    margin-bottom: 6px;
    display: block;
}

.sim-input {
    width: 100%;
    background: rgba(27,28,29,0.85);
    color: #f2f2f2;
    border: 1px solid #2a2b2d;
    border-radius: 10px;
    padding: 10px 12px;
    outline: none;
    backdrop-filter: blur(2px);
    transition: border-color .15s ease, box-shadow .15s ease;
}
.sim-input:focus {
    border-color: #3a3b3d;
    box-shadow: 0 0 0 2px rgba(94,179,25,0.25);
}

.sim-inline {
    display: grid;
    grid-template-columns: 1fr;
    gap: 12px;
}

.sim-result {
    margin-top: 4px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: linear-gradient(180deg, #0f1011 0%, #0b0c0c 100%);
    border: 1px solid #232325;
    border-radius: 12px;
    padding: 12px 12px;
    color: #cfd3d7;
}
.sim-result .result-amount { background: #141515; border: 1px solid #2b2c2e; padding: 8px 10px; border-radius: 10px; color: #fff; font-weight: 800; text-align: right; white-space: nowrap; }

.sim-note {
    margin-top: 8px;
    font-size: .7rem;
    color: #9aa09b;
    text-align: right;
}

.input-group {
    display: grid;
    grid-template-columns: 40px 1fr 40px;
    gap: 8px;
    align-items: center;
}
.step {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 42px;
    width: 40px;
    border-radius: 10px;
    border: 1px solid #2a2b2d;
    background: #151617;
    color: #e9e9e9;
    cursor: pointer;
    user-select: none;
    transition: background .15s ease, transform .06s ease;
}
.step:active { transform: translateY(1px); }

.hero-btns {
    display: flex;
    gap: 15px;
}

.btn-hero-green {
    background: linear-gradient(180deg, #67c022 0%, #4da614 100%);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    box-shadow: 0 8px 0 rgba(0,0,0,0.25), 0 12px 24px rgba(78,166,20,0.35);
    text-decoration: none;
}

.btn-hero-outline {
    background-color: rgba(0,0,0,0.35);
    border: 2px solid rgba(255,255,255,0.75);
    color: white;
    padding: 12px 30px;
    border-radius: 8px;
    font-weight: 700;
    backdrop-filter: blur(3px);
    text-decoration: none;
}

/* Step Cards */
.step-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.step-card {
    background: linear-gradient(180deg, #fffaf3 0%, #f6f1e9 100%);
    padding: 32px 22px 26px;
    border-radius: 20px;
    border: 1px solid #e6decd;
    box-shadow: 0 20px 55px rgba(0,0,0,0.15);
    text-align: center;
}

.step-icon { position: relative; width: 200px; height: 140px; margin: 0 auto 18px; display: grid; place-items: center; }
.step-icon::before { content: ""; position: absolute; inset: 0; border-radius: 16px; background: radial-gradient(120% 80% at 50% 40%, rgba(255,200,120,0.35) 0%, rgba(255,200,120,0.08) 45%, rgba(0,0,0,0) 70%); }
.step-icon img { width: 180px; height: 130px; object-fit: contain; display: block; }

.step-card h3 {
    color: #2f8d1b;
    font-size: 1.25rem;
    margin-bottom: 8px;
    font-weight: 800;
}

.step-card p {
    font-size: 0.95rem;
    color: var(--text-muted);
    margin-bottom: 18px;
}

.btn-small {
    background: linear-gradient(180deg, #f2f2f2 0%, #e7e7e7 100%);
    color: #333;
    padding: 8px 20px;
    border-radius: 5px;
    font-size: 0.8rem;
    text-decoration: none;
    display: inline-block;
    border: 1px solid #d9d9d9;
    box-shadow: 0 6px 14px rgba(0,0,0,0.14);
}

/* Benefits Section */
.benefits-section {
    background-color: #f5f5f5;
    position: relative;
    padding: 80px 0;
}

/* Cómo Funciona – fondo con ciudad */
#como-funciona {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.98) 0%, rgba(255,255,255,0.96) 30%, rgba(255,255,255,0.94) 100%),
      url('../img/hero-city.svg') center/cover no-repeat;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
}
#como-funciona .section-title { font-size: 2.8rem; }

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.site-footer {
    background: #0d0d0d;
    color: #e8e8e8;
    margin-top: 40px;
    border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 24px;
    padding: 36px 20px;
}
.footer-col { font-size: .95rem; }
.footer-brand { font-size: 1.4rem; font-weight: 800; margin-bottom: 8px; }
.footer-text { opacity: .85; }
.footer-title { font-weight: 700; margin-bottom: 10px; color: #fff; }
.footer-list { list-style: none; padding: 0; margin: 0; display: grid; gap: 8px; }
.footer-list a { color: #e8e8e8; text-decoration: none; opacity: .9; }
.footer-list a:hover { color: var(--primary-green); opacity: 1; }
.footer-bottom { padding: 14px 20px; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.06); font-size: .9rem; opacity: .9; }
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 600px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.benefit-step {
    background: white;
    padding: 25px;
    border-radius: 10px;
    text-align: left;
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.step-number {
    width: 35px;
    height: 35px;
    background: #2a3d2e;
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    margin-bottom: 10px;
}

.step-number.two { background: #5eb319; }
.step-number.three { background: #1b4d2a; }

/* Navigation Bar */
.navbar {
    background: white;
    padding: 15px 0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.05);
}

.navbar-hero {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 80px;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: none;
    z-index: 1000;
}
.navbar-hero.scrolled {
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.12);
    box-shadow: 0 6px 22px rgba(0,0,0,0.35);
}

.navbar .container { height: 100%; }

.nav-links { z-index: auto; }
.navbar-hero .nav-links { z-index: 1001; }

/* Better tap target and visual */
.nav-links a:hover { color: #fff; }
.btn-ingresar { box-shadow: 0 8px 24px rgba(94,179,25,0.35); }
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.brand-logo { height: 56px; width: auto; display:block; }

.nav-links {
    display: flex;
    gap: 28px;
    align-items: center;
}

.nav-links a {
    text-decoration: none;
    color: #333;
    font-weight: 700;
    font-size: 0.95rem;
    padding: 12px 6px;
}
.navbar-hero .nav-links a { border-bottom: 2px solid transparent; }
.navbar-hero .nav-links a:hover,
.navbar-hero .nav-links a.active { border-bottom-color: var(--primary-green); color: #fff; }

.navbar-hero .nav-links a { color: #f2f2f2; }

/* Mobile nav toggle */
.nav-toggle { display:none; width:42px; height:42px; border-radius:10px; border:1px solid rgba(255,255,255,0.25); background: rgba(0,0,0,0.3); color:#fff; align-items:center; justify-content:center; }
.nav-toggle span { width: 18px; height: 2px; background:#fff; position: relative; display:block; }
.nav-toggle span::before, .nav-toggle span::after { content:""; position:absolute; left:0; right:0; height:2px; background:#fff; }
.nav-toggle span::before { top:-6px; } .nav-toggle span::after { top:6px; }

@media (max-width: 900px) {
  .nav-toggle { display:flex; }
  .nav-links {
    position: fixed;
    top: 80px;
    right: 0;
    left: 0;
    width: 100%;
    padding: 18px 20px 22px;
    background: linear-gradient(180deg, rgba(0,0,0,0.94), rgba(0,0,0,0.88));
    backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    display:none;
    flex-direction: column;
    gap: 14px;
    z-index: 1001;
    transform: translateY(-6px);
    opacity: 0;
    transition: transform .18s ease, opacity .18s ease;
  }
  .nav-links.open { display:flex; transform: translateY(0); opacity: 1; }
  .navbar-hero .nav-links a { color:#fff; }
}

.btn-ingresar {
    background: var(--primary-green);
    color: white !important;
    padding: 8px 20px;
    border-radius: 5px;
}

/* Registration Pages Styling */
.reg-container {
    max-width: 1200px;
    margin: 40px auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    padding: 0 20px;
}

.reg-form-box {
    background: white;
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.05);
}

.reg-form-box h1 {
    font-size: 2.2rem;
    margin-bottom: 10px;
}

.reg-form-box p {
    color: var(--text-muted);
    margin-bottom: 30px;
}

.reg-info-box {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
}

.reg-preview {
    width: 100%;
    max-width: 420px;
    height: 480px;
    border-radius: 20px;
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.94) 40%, rgba(255,255,255,0.92) 100%),
      url('../img/hero-city.svg') center/cover no-repeat;
    box-shadow: 0 30px 60px rgba(0,0,0,0.12);
    border: 1px solid #eee;
    position: relative;
    overflow: hidden;
    display: grid;
    place-items: center;
}
.reg-preview img { width: 220px; height: auto; opacity: .9; }
.reg-preview .reg-van { position:absolute; bottom: 28px; right: 26px; width: 220px; transform: rotate(-2deg); }
.reg-preview .reg-drop { position:absolute; top: 24px; right: 48px; width: 90px; opacity: .9; }

.footer-logos {
    display: flex;
    justify-content: center;
    gap: 40px;
    padding: 40px 0;
    opacity: 0.6;
    filter: grayscale(100%);
}

/* Dashboard Flows Styling */
.flow-card {
    background: white;
    border-radius: 20px;
    padding: 40px;
    box-shadow: 0 15px 50px rgba(0,0,0,0.08);
    margin-bottom: 30px;
}

.price-box {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 15px;
    margin: 20px 0;
    border: 1px solid #eee;
}

.price-box h2 {
    color: var(--primary-green);
    font-size: 2.5rem;
}

.calendar-widget {
    background: white;
    border: 1px solid #eee;
    border-radius: 15px;
    padding: 20px;
    max-width: 400px;
}

.success-badge {
    width: 60px;
    height: 60px;
    background: var(--primary-green);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    margin: 0 auto 20px;
}

.stats-tabs {
    display: flex;
    justify-content: center;
    gap: 30px;
    margin-bottom: 30px;
    border-bottom: 1px solid #333;
    padding-bottom: 10px;
}

.stat-tab {
    color: #c7c7c7;
    text-decoration: none;
    font-weight: 500;
    padding: 6px 6px 10px;
    border-bottom: 2px solid transparent;
    transition: color .2s ease, border-color .2s ease;
}

.stat-tab.active {
    color: #ffffff;
    border-bottom: 2px solid var(--primary-green);
    padding-bottom: 8px;
}

.stats-values {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    text-align: left;
}

.stat-item h2 {
    font-size: 1.8rem;
    margin-bottom: 5px;
}

.stat-item p {
    font-size: 0.8rem;
    color: #888;
}

.stats-bar {
    background: linear-gradient(180deg, #0e0e0e 0%, #121212 100%);
    padding: 40px 0 30px;
    color: #fff;
    border-top: 1px solid rgba(255,255,255,0.05);
}

.stats-bar-card {
    max-width: 1200px;
    margin: 0 auto;
    background: #0f1010;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 14px;
    padding: 24px 20px 10px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
}

.stats-bar .stat-item h2 {
    color: #fff;
}

.stats-bar .stat-item p {
    color: #b5b5b5;
}

.stats-bar .stats-values {
    gap: 20px;
}

.benefits-section {
    background: linear-gradient(0deg, rgba(245,245,245,1) 0%, rgba(245,245,245,0.92) 50%, rgba(245,245,245,0.85) 100%), url('../img/hero-city.svg') center/cover no-repeat;
}

/* Hybrid Model */
.hybrid-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    max-width: 1200px;
    margin: 40px auto 0;
}

/* Responsive layout */
@media (max-width: 900px) {
  .hero-new { height: auto; padding-top: 100px; padding-bottom: 30px; }
  .hero-text { font-size: 1.7rem; margin: 20px 0; max-width: 100%; }
  .hero-illus { display: none; }
  .simulator-card { position: relative; right: auto; top: auto; width: 100%; max-width: 420px; margin: 16px 0 0; }
  .step-grid { grid-template-columns: 1fr 1fr; }
  .benefits-grid { grid-template-columns: 1fr 1fr; }
  .stats-values { grid-template-columns: 1fr 1fr; }
  .hybrid-grid { grid-template-columns: 1fr; }
  .navbar-hero { height: 64px; }
  .brand-logo { height: 44px; }
  .nav-links { gap: 18px; }
}
@media (max-width: 600px) {
  .step-grid { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-values { grid-template-columns: 1fr; }
  .btn-hero-green, .btn-hero-outline { width: 100%; text-align: center; }
}

.hybrid-card {
    background: linear-gradient(135deg, #2a2a2a 0%, #1a1a1a 100%);
    border-radius: 15px;
    padding: 40px;
    color: white;
    text-align: left;
}

.form-control--light {
    background: #ffffff !important;
    color: #222 !important;
    border: 1px solid #ddd !important;
}
.form-control--light::placeholder { color: #999; }

.hybrid-card--restaurants {
    background:
      url('../img/hybrid-texture.svg') center/cover no-repeat,
      linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    background-blend-mode: screen, normal;
}

.hybrid-card--buyers {
    background:
      url('../img/hybrid-texture.svg') center/cover no-repeat,
      linear-gradient(135deg, #1a1a1a 0%, #0e0e0e 100%);
    background-blend-mode: screen, normal;
}

.hybrid-card h3 {
    color: #f1c40f;
    margin-bottom: 20px;
}

.hybrid-card ul {
    list-style: none;
}

.hybrid-card li {
    margin-bottom: 10px;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    gap: 10px;
}

.hybrid-card li::before {
    content: '✓';
    color: var(--primary-green);
}

/* Partner logos */
.partner-logos {
    max-width: 1200px;
    margin: 0 auto 10px;
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    opacity: 0.9;
    filter: grayscale(100%);
    flex-wrap: nowrap;
}
.partner-logos img {
    height: 28px;
    width: auto;
    object-fit: contain;
    opacity: .7;
    transition: opacity .2s ease, filter .2s ease, transform .2s ease;
}
.partner-logos img:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: translateY(-1px);
}

/* Layout Containers */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Auth Pages */
.auth-wrapper {
    height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--darker-bg) 0%, var(--dark-bg) 100%);
}

.auth-card {
    background-color: var(--card-bg);
    padding: 40px;
    border-radius: 16px;
    width: 100%;
    max-width: 450px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
    border: 1px solid rgba(255,255,255,0.05);
}

.auth-card--light {
    background: #ffffff;
    border: 1px solid #eaeaea;
    box-shadow: 0 24px 60px rgba(0,0,0,0.12);
}

.auth-header {
    text-align: center;
    margin-bottom: 30px;
}

.auth-header h1 {
    font-size: 2rem;
    color: var(--primary-green);
    margin-bottom: 10px;
}

.auth-header p {
    color: var(--text-muted);
}

/* Forms */
.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-size: 0.9rem;
    color: var(--text-muted);
}

.form-control {
    width: 100%;
    padding: 12px 16px;
    background-color: var(--input-bg);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-white);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.form-control:focus {
    outline: none;
    border-color: var(--primary-green);
    box-shadow: 0 0 0 2px rgba(46, 204, 113, 0.2);
}

.is-invalid { border-color: #e74c3c !important; box-shadow: 0 0 0 3px rgba(231,76,60,0.12); }
.is-valid { border-color: #27ae60 !important; box-shadow: 0 0 0 3px rgba(39,174,96,0.12); }
.form-hint { font-size: .82rem; color: #666; margin-top: 6px; }
.form-error { font-size: .82rem; color: #c0392b; margin-top: 6px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.pass-group { position: relative; }
.pass-toggle {
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #666;
  cursor: pointer;
  padding: 6px;
}
.strength {
  height: 8px;
  background: #eee;
  border-radius: 6px;
  overflow: hidden;
  margin-top: 10px;
}
.strength-fill {
  height: 100%;
  width: 0%;
  background: linear-gradient(90deg, #e74c3c, #f1c40f, #2ecc71);
  transition: width .25s ease;
}

.btn {
    display: inline-block;
    width: 100%;
    padding: 12px 24px;
    border-radius: 8px;
    font-weight: 600;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    text-decoration: none;
}

.btn-primary {
    background-color: var(--primary-green);
    color: var(--darker-bg);
}

.btn-primary:hover {
    background-color: var(--accent-neon);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(46, 204, 113, 0.3);
}

.auth-footer {
    text-align: center;
    margin-top: 20px;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--primary-green);
    text-decoration: none;
}

.login-hero {
    background:
      linear-gradient(180deg, rgba(255,255,255,0.96) 0%, rgba(255,255,255,0.94) 40%, rgba(255,255,255,0.92) 100%),
      url('../img/hero-city.svg') center/cover no-repeat;
    padding: 80px 20px;
}
.login-wrap {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 30px;
    align-items: start;
}
.login-side {
    background: linear-gradient(135deg, #242424 0%, #161616 100%);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 16px;
    padding: 24px 24px;
    box-shadow: 0 20px 55px rgba(0,0,0,0.18);
}
@media (max-width: 900px) {
  .login-wrap { grid-template-columns: 1fr; }
}

/* New Auth Pro Layout (dark, like reference) */
.auth-shell {
  min-height: calc(100vh - 80px);
  background: radial-gradient(900px circle at 5% 10%, rgba(46, 204, 113, 0.12) 0%, rgba(23,23,23,1) 60%),
              radial-gradient(900px circle at 95% 90%, rgba(42, 61, 46, 0.18) 0%, rgba(23,23,23,1) 60%),
              #171717;
  padding: 80px 16px 40px;
  display: grid;
  place-items: center;
}
.auth-frame {
  width: 100%;
  max-width: 980px;
  background: linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.02));
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 18px;
  box-shadow: 0 26px 90px rgba(0,0,0,0.35);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}
.auth-left {
  position: relative;
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.35)),
    url('../img/hero-city.svg') center/cover no-repeat;
  min-height: 560px;
  display: grid;
  align-items: end;
  padding: 28px;
}
.auth-left .promo {
  color: #fff;
  text-shadow: 0 2px 10px rgba(0,0,0,0.5);
}
.auth-left .promo h2 { font-size: 2rem; margin: 0 0 6px; }
.auth-left .promo p { opacity: .9; }
.auth-right {
  background: linear-gradient(180deg, #151a19 0%, #121513 100%);
  padding: 32px 28px;
}
.auth-heading h1 { color: #fff; margin: 0; }
.auth-heading p { color: #c8d1c9; margin: 6px 0 16px; }
.social-btn {
  background: #fff;
  color: #333;
  border-radius: 12px;
  padding: 12px;
  text-align: center;
  font-weight: 600;
  border: none;
  width: 100%;
  display: inline-block;
  text-decoration: none;
}
.divider {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 12px;
  color: #74809a;
  font-size: .85rem;
  margin: 14px 0;
}
.divider::before, .divider::after {
  content: "";
  height: 1px;
  background: rgba(255,255,255,0.08);
  display: block;
}
.input-icon { position: relative; }
.input-icon .icon {
  position: absolute;
  left: 12px;
  top: 50%;
  transform: translateY(-50%);
  opacity: .85;
}
.input-icon .form-control { padding-left: 42px; background: #1a201c; color: #eaf6ee; border-color: #2a3d2e; }
.input-icon .form-control::placeholder { color: #9fb1a4; }
.btn-gradient { background: linear-gradient(90deg, #2a3d2e, var(--primary-green)); color: #fff !important; }
.auth-links { display:flex; justify-content: space-between; align-items:center; font-size:.9rem; margin:6px 0 14px; }
.auth-links a { color: #c8d1c9; text-decoration:none; }
.auth-links a:hover { color: #fff; }
@media (max-width: 900px) {
  .auth-frame { grid-template-columns: 1fr; }
  .auth-left { min-height: 240px; }
}

.contact-hero {
    background:
      linear-gradient(180deg, rgba(0,0,0,0.68) 0%, rgba(0,0,0,0.45) 60%, rgba(0,0,0,0.35) 100%),
      url('../img/hero-city.svg') center/cover no-repeat;
    color: #fff;
    padding: 110px 20px 80px;
}
.contact-hero .section-title { color: #fff; text-align: left; }
.contact-hero .section-subtitle { color: #d0d0d0; text-align: left; }
.contact-wrap { max-width: 1200px; margin: -40px auto 70px; padding: 0 20px; }
.contact-grid { display: grid; grid-template-columns: 2fr 1fr; gap: 30px; }
.contact-card {
    background: #fff;
    border: 1px solid #eee;
    border-radius: 18px;
    box-shadow: 0 18px 50px rgba(0,0,0,0.1);
    padding: 30px;
}
.contact-side {
    background: linear-gradient(135deg, #242424 0%, #161616 100%);
    color: #fff;
    border-radius: 18px;
    border: 1px solid rgba(255,255,255,0.06);
    padding: 30px;
}
.contact-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-item { display: flex; gap: 12px; align-items: flex-start; margin: 10px 0; }
.contact-cta { margin-top: 18px; }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
  .contact-wrap { margin: 20px auto 40px; }
}

.alert {
    padding: 12px;
    border-radius: 8px;
    margin-bottom: 20px;
    font-size: 0.9rem;
}

.alert-danger {
    background-color: rgba(231, 76, 60, 0.1);
    color: var(--danger);
    border: 1px solid rgba(231, 76, 60, 0.2);
}

/* Dashboard Layout */
.dashboard-container {
    display: grid;
    grid-template-columns: 260px 1fr;
    min-height: 100vh;
}

.sidebar {
    background-color: var(--darker-bg);
    padding: 30px 20px;
    border-right: 1px solid rgba(255,255,255,0.05);
}

.sidebar-logo {
    color: var(--primary-green);
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 40px;
    display: block;
    text-decoration: none;
}

.nav-menu {
    list-style: none;
}

.nav-item {
    margin-bottom: 10px;
}

.nav-link {
    display: flex;
    align-items: center;
    padding: 12px 15px;
    color: var(--text-muted);
    text-decoration: none;
    border-radius: 8px;
    transition: all 0.3s;
}

.nav-link:hover, .nav-link.active {
    background-color: rgba(46, 204, 113, 0.1);
    color: var(--primary-green);
}

.main-content {
    padding: 40px;
    overflow-y: auto;
}

.top-bar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-bottom: 40px;
}

.stat-card {
    background-color: var(--card-bg);
    padding: 24px;
    border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.05);
}

.stat-card h3 {
    color: var(--text-muted);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.stat-card .value {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-white);
}

.stat-card .trend {
    font-size: 0.8rem;
    margin-top: 5px;
}

.table-wrap { width: 100%; overflow-x: auto; }
.table { width: 100%; border-collapse: collapse; font-size: 0.95rem; }
.table th, .table td { padding: 12px 10px; border-bottom: 1px solid rgba(0,0,0,0.08); text-align: left; }
.table th { font-weight: 700; color: #333; }
.table td { color: #444; }
.table tr:hover td { background: #fafafa; }

#offers-map { width: 100%; height: 360px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }
#route-map { width: 100%; height: 300px; border-radius: 16px; overflow: hidden; border: 1px solid rgba(0,0,0,0.08); }

.filters-bar { display:flex; align-items: center; gap: 12px; margin: 10px 0 18px; flex-wrap: wrap; }
.filters-bar .form-control { background:#fff; color:#333; border-color:#ddd; }
.filters-bar label { font-weight:600; font-size:.85rem; color:#333; margin-right:6px; }
.filters-bar .filter-group { display:flex; align-items:center; gap:8px; }

.trend.up { color: var(--primary-green); }

.content-grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 30px;
}

.card {
    background-color: var(--card-bg);
    border-radius: 16px;
    padding: 25px;
    border: 1px solid rgba(255,255,255,0.05);
}

.card-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

/* Tables */
table {
    width: 100%;
    border-collapse: collapse;
}

th {
    text-align: left;
    color: var(--text-muted);
    font-weight: 500;
    padding: 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

td {
    padding: 15px 12px;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.status-badge {
    padding: 4px 10px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 600;
}

.badge-available { background: rgba(46, 204, 113, 0.1); color: var(--primary-green); }
.badge-assigned { background: rgba(241, 196, 15, 0.1); color: var(--warning); }
.badge-collected { background: rgba(52, 152, 219, 0.1); color: #3498db; }

@media (max-width: 992px) {
    .dashboard-container { grid-template-columns: 1fr; }
    .sidebar { display: none; }
    .content-grid { grid-template-columns: 1fr; }
}
