:root{
  --bg:#05070b;
  --bg-soft:#0b1018;
  --panel:#0e1420;
  --panel-2:#121a27;
  --panel-3:#0f1622;
  --line:rgba(255,255,255,.08);
  --line-strong:rgba(18,181,255,.18);
  --text:#eef4ff;
  --muted:#8ea3c2;
  --blue:#12b5ff;
  --blue-2:#21e1ff;
  --blue-soft:rgba(18,181,255,.14);
  --success:#18c37e;
  --danger:#ff5d5d;
  --warning:#ffb020;
  --shadow:0 18px 60px rgba(0,0,0,.45);
  --radius:22px;
  --radius-sm:14px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0}
body{
  font-family:Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at top right, rgba(18,181,255,.16), transparent 22%),
    radial-gradient(circle at left center, rgba(18,181,255,.06), transparent 18%),
    linear-gradient(180deg, #040507 0%, #090d14 100%);
  color:var(--text);
}
img{max-width:100%;display:block}
a{text-decoration:none;color:var(--text)}
button,input,select,textarea{font:inherit}
.container{width:min(1280px, calc(100% - 40px));margin:0 auto}

h1,h2,h3,h4,p{margin-top:0}
p{line-height:1.75}
.muted{color:var(--muted)}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:48px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid var(--line);
  color:var(--text);
  background:rgba(255,255,255,.03);
  cursor:pointer;
  transition:.2s ease;
}
.btn:hover{
  transform:translateY(-1px);
  border-color:var(--line-strong);
}
.btn-primary{
  background:linear-gradient(135deg, var(--blue), var(--blue-2));
  color:#041019;
  border:none;
  font-weight:800;
}
.btn-sm{
  min-height:42px;
  padding:0 14px;
  border-radius:12px;
}
.btn-block{width:100%}
.btn-danger{
  background:rgba(255,93,93,.12);
  color:#ffd9d9;
  border:1px solid rgba(255,93,93,.24);
}
.btn-success{
  background:rgba(24,195,126,.12);
  color:#d5ffea;
  border:1px solid rgba(24,195,126,.24);
}

.badge{
  display:inline-flex;
  align-items:center;
  min-height:30px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(18,181,255,.10);
  border:1px solid rgba(18,181,255,.18);
  color:var(--blue-2);
  font-size:12px;
  font-weight:800;
}
.badge-success{
  background:rgba(24,195,126,.14);
  border-color:rgba(24,195,126,.24);
  color:#cff7e5;
}
.badge-warning{
  background:rgba(255,176,32,.14);
  border-color:rgba(255,176,32,.24);
  color:#ffe8bc;
}
.badge-danger{
  background:rgba(255,93,93,.14);
  border-color:rgba(255,93,93,.24);
  color:#ffd4d4;
}

.alert{
  padding:14px 16px;
  border-radius:14px;
  margin-bottom:18px;
  border:1px solid var(--line);
}
.alert-success{
  background:rgba(24,195,126,.10);
  border-color:rgba(24,195,126,.22);
  color:#d6ffea;
}
.alert-danger{
  background:rgba(255,93,93,.10);
  border-color:rgba(255,93,93,.22);
  color:#ffe0e0;
}

.card{
  background:linear-gradient(180deg, rgba(16,22,34,.98), rgba(11,16,24,.98));
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.form-group{margin-bottom:16px}
.form-group label{
  display:block;
  margin-bottom:8px;
  font-size:13px;
  font-weight:700;
  color:var(--muted);
}
input,select,textarea{
  width:100%;
  border:none;
  outline:none;
  color:var(--text);
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
  border-radius:14px;
}
input,select{height:50px;padding:0 14px}
textarea{padding:14px;min-height:120px;resize:vertical}
input:focus,select:focus,textarea:focus{
  border-color:rgba(18,181,255,.32);
  box-shadow:0 0 0 4px rgba(18,181,255,.08);
}

.form-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.table-wrap{overflow:auto}
.table{
  width:100%;
  border-collapse:collapse;
}
.table th,.table td{
  padding:14px 12px;
  text-align:left;
  border-bottom:1px solid var(--line);
  vertical-align:top;
}
.table th{
  color:var(--muted);
  font-size:13px;
  font-weight:700;
}

.spec-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  margin-top:10px;
}
.spec-row span{
  padding:8px 10px;
  border-radius:999px;
  font-size:12px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
  color:var(--muted);
}

.summary-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.summary-list>div{
  display:flex;
  justify-content:space-between;
  gap:14px;
  padding:12px 14px;
  border-radius:14px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.summary-total{
  background:rgba(18,181,255,.10)!important;
  border-color:rgba(18,181,255,.24)!important;
}

.action-row{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.no-image{
  width:100%;
  height:100%;
  display:flex;
  align-items:center;
  justify-content:center;
  color:var(--muted);
  background:rgba(255,255,255,.03);
}

/* PUBLIC HEADER */
.renton-header{
  position:sticky;
  top:0;
  z-index:60;
  background:rgba(4,7,11,.82);
  backdrop-filter:blur(12px);
  border-bottom:1px solid rgba(255,255,255,.06);
}
.renton-header-inner{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  min-height:78px;
}
.renton-brand{
  display:flex;
  flex-direction:column;
}
.renton-brand-main{
  font-size:30px;
  line-height:1;
  font-weight:900;
  letter-spacing:.16em;
}
.renton-brand-sub{
  margin-top:6px;
  font-size:11px;
  letter-spacing:.20em;
  color:var(--muted);
}
.renton-nav{
  display:flex;
  align-items:center;
  gap:12px;
  flex-wrap:wrap;
}
.renton-nav a:not(.btn){
  color:var(--muted);
}
.renton-nav a:not(.btn):hover{
  color:var(--text);
}

/* INDEX HERO */
.renton-showcase{
  padding:34px 0 48px;
}
.showcase-frame{
  background:
    linear-gradient(180deg, rgba(12,18,30,.98), rgba(8,12,18,.98));
  border:1px solid rgba(18,181,255,.14);
  border-radius:30px;
  overflow:hidden;
  box-shadow:var(--shadow);
}
.showcase-topbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:18px;
  padding:16px 22px;
  border-bottom:1px solid rgba(255,255,255,.05);
}
.showcase-badge{
  display:inline-flex;
  align-items:center;
  min-height:36px;
  padding:0 12px;
  border-radius:999px;
  background:rgba(18,181,255,.10);
  border:1px solid rgba(18,181,255,.16);
  color:var(--blue-2);
  font-size:12px;
  font-weight:800;
}
.showcase-links{
  display:flex;
  gap:16px;
  flex-wrap:wrap;
}
.showcase-links a{
  color:var(--muted);
  font-size:14px;
}
.showcase-links a:hover{color:var(--text)}

.showcase-hero{
  display:grid;
  grid-template-columns:1.08fr .92fr;
  gap:22px;
  padding:30px;
  align-items:center;
}
.showcase-copy h1{
  font-size:60px;
  line-height:1;
  margin-bottom:16px;
  max-width:780px;
}
.showcase-copy p{
  font-size:17px;
  color:var(--muted);
  max-width:700px;
}
.showcase-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  margin-top:22px;
}
.showcase-side{
  display:grid;
  gap:16px;
}
.showcase-side-card{
  padding:22px;
  border-radius:22px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.03);
}
.showcase-side-card h3{
  margin-bottom:10px;
  font-size:20px;
}
.showcase-side-card p{
  color:var(--muted);
  margin-bottom:0;
}

.showcase-search{
  margin:0 30px 30px;
  padding:24px;
  border-radius:24px;
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
  border:1px solid rgba(18,181,255,.14);
}
.showcase-search-head{
  margin-bottom:18px;
}
.showcase-search-head h3{
  margin-bottom:6px;
  font-size:28px;
}
.landscape-search-form{
  display:grid;
  grid-template-columns:repeat(5, 1fr) 160px;
  gap:14px;
  align-items:end;
}
.search-field{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.search-field label{
  font-size:13px;
  color:var(--muted);
  font-weight:700;
}
.search-action{
  display:flex;
  align-items:end;
}

.index-stat-row{
  margin:0 30px 30px;
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:14px;
}
.index-stat{
  padding:18px;
  border-radius:20px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.index-stat strong{
  display:block;
  font-size:18px;
  margin-bottom:6px;
}
.index-stat span{
  color:var(--muted);
  font-size:14px;
}

.homepage-section{
  padding:50px 0;
}
.homepage-section-soft{
  background:rgba(255,255,255,.02);
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.section-head{
  display:flex;
  justify-content:space-between;
  align-items:end;
  gap:16px;
  margin-bottom:24px;
  flex-wrap:wrap;
}
.section-head-center{
  justify-content:center;
  text-align:center;
  align-items:center;
}
.section-kicker{
  display:inline-block;
  color:var(--blue);
  text-transform:uppercase;
  letter-spacing:.16em;
  font-size:12px;
  font-weight:800;
  margin-bottom:8px;
}
.section-head h2,
.section-head-center h2{
  margin:0;
  font-size:36px;
  line-height:1.1;
}

.fleet-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(280px, 1fr));
  gap:18px;
}
.fleet-card{
  border:1px solid var(--line);
  border-radius:24px;
  overflow:hidden;
  background:linear-gradient(180deg, rgba(16,22,34,.98), rgba(11,16,24,.98));
  box-shadow:var(--shadow);
}
.fleet-card-image{
  height:230px;
  background:#0a0f15;
}
.fleet-card-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.fleet-card-body{padding:20px}
.fleet-card-top{
  display:flex;
  justify-content:space-between;
  gap:12px;
  align-items:start;
}
.fleet-card-top h3{
  font-size:22px;
  margin-bottom:6px;
}
.fleet-price{
  margin-top:18px;
  font-size:25px;
  font-weight:900;
}
.fleet-actions{
  margin-top:18px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

.service-grid,
.feature-grid,
.steps-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(240px,1fr));
  gap:18px;
}
.service-card,
.feature-card,
.step-card{
  background:linear-gradient(180deg, rgba(16,22,34,.98), rgba(11,16,24,.98));
  border:1px solid var(--line);
  border-radius:22px;
  padding:22px;
  box-shadow:var(--shadow);
}
.service-card p,
.feature-card p,
.step-card p{
  color:var(--muted);
  margin-bottom:0;
}
.step-no{
  width:44px;
  height:44px;
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  background:rgba(18,181,255,.10);
  border:1px solid rgba(18,181,255,.18);
  font-weight:900;
  margin-bottom:14px;
}

.homepage-cta{
  padding:24px 0 60px;
}
.cta-panel{
  display:flex;
  justify-content:space-between;
  gap:24px;
  flex-wrap:wrap;
  align-items:center;
  padding:30px;
  border-radius:28px;
  border:1px solid rgba(18,181,255,.14);
  background:
    linear-gradient(135deg, rgba(18,181,255,.16), rgba(18,181,255,.04)),
    rgba(14,20,32,.98);
  box-shadow:var(--shadow);
}
.cta-panel h2{
  margin-bottom:10px;
  font-size:36px;
}
.cta-actions{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}

.renton-footer{
  background:#05080c;
  border-top:1px solid rgba(255,255,255,.06);
  padding-top:34px;
}
.footer-grid{
  display:grid;
  grid-template-columns:1.3fr .8fr .8fr 1fr;
  gap:22px;
  padding-bottom:20px;
}
.footer-brand{
  font-size:22px;
  font-weight:900;
  letter-spacing:.12em;
  margin-bottom:10px;
}
.footer-links{
  list-style:none;
  padding:0;
  margin:0;
}
.footer-links li{
  margin-bottom:10px;
  color:var(--muted);
}
.footer-links a{
  color:var(--muted);
}
.footer-links a:hover{color:var(--text)}
.footer-bottom{
  border-top:1px solid rgba(255,255,255,.06);
  padding:18px 0 24px;
  display:flex;
  justify-content:space-between;
  gap:12px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:14px;
}

/* AUTH */
.auth-premium-body{
  min-height:100vh;
}
.auth-premium-layout{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.06fr .94fr;
}
.auth-premium-left{
  padding:48px;
  display:flex;
  flex-direction:column;
  justify-content:space-between;
  border-right:1px solid rgba(255,255,255,.06);
  background:
    linear-gradient(180deg, rgba(255,255,255,.02), rgba(255,255,255,.01));
}
.auth-brand-wrap{margin-bottom:40px}
.auth-brand-main{
  font-size:36px;
  font-weight:900;
  letter-spacing:.16em;
  line-height:1;
}
.auth-brand-sub{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.20em;
  margin-top:6px;
}
.auth-hero-copy{max-width:620px}
.auth-hero-copy h1{
  font-size:54px;
  line-height:1.02;
  margin-bottom:18px;
}
.auth-hero-copy p{
  color:var(--muted);
  font-size:17px;
}
.auth-mini-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}
.auth-mini-card{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}
.auth-mini-card strong{display:block;margin-bottom:6px}
.auth-mini-card span{color:var(--muted);font-size:14px}
.auth-premium-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px;
}
.auth-premium-card{
  width:100%;
  max-width:520px;
  background:linear-gradient(180deg, rgba(17,22,29,.96), rgba(10,14,19,.98));
  border:1px solid rgba(18,181,255,.14);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}
.auth-card-topline{
  color:var(--blue);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:10px;
}
.auth-premium-card h2{
  margin-bottom:8px;
  font-size:34px;
}
.auth-bottom-links{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.auth-bottom-links a{
  color:var(--muted);
  font-size:14px;
}
.auth-return-home{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}
.auth-return-home a{color:var(--blue-2)}

/* DASHBOARDS */
.dashboard-shell{
  min-height:100vh;
  display:grid;
  grid-template-columns:280px 1fr;
}
.dashboard-sidebar{
  background:rgba(7,10,16,.96);
  border-right:1px solid rgba(255,255,255,.06);
  padding:24px 18px;
  position:sticky;
  top:0;
  height:100vh;
}
.dashboard-brand{
  margin-bottom:26px;
}
.dashboard-brand strong{
  display:block;
  font-size:26px;
  letter-spacing:.12em;
}
.dashboard-brand span{
  color:var(--muted);
  font-size:12px;
  letter-spacing:.16em;
}
.dashboard-menu{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.dashboard-menu a{
  min-height:46px;
  display:flex;
  align-items:center;
  padding:0 14px;
  border-radius:14px;
  color:var(--muted);
  border:1px solid transparent;
}
.dashboard-menu a:hover,
.dashboard-menu a.active{
  background:rgba(18,181,255,.12);
  color:var(--text);
  border-color:rgba(18,181,255,.18);
}
.dashboard-main{
  padding:24px;
}
.dashboard-top{
  display:flex;
  justify-content:space-between;
  gap:18px;
  align-items:center;
  margin-bottom:20px;
  flex-wrap:wrap;
}
.dashboard-top h1{
  font-size:40px;
  margin-bottom:6px;
}
.dashboard-toolbar{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.dashboard-searchbar{
  padding:16px;
  border-radius:20px;
  background:linear-gradient(180deg, rgba(16,22,34,.98), rgba(11,16,24,.98));
  border:1px solid rgba(18,181,255,.12);
  box-shadow:var(--shadow);
  margin-bottom:20px;
}
.dashboard-searchbar form{
  display:grid;
  grid-template-columns:repeat(5, 1fr) 160px;
  gap:14px;
  align-items:end;
}
.stat-grid{
  display:grid;
  grid-template-columns:repeat(4, 1fr);
  gap:16px;
  margin-bottom:20px;
}
.stat-card{
  padding:22px;
  border-radius:22px;
  background:linear-gradient(180deg, rgba(16,22,34,.98), rgba(11,16,24,.98));
  border:1px solid var(--line);
  box-shadow:var(--shadow);
}
.stat-label{
  color:var(--muted);
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.08em;
  margin-bottom:10px;
}
.stat-value{
  font-size:34px;
  font-weight:900;
  line-height:1;
  margin-bottom:10px;
}
.stat-meta{
  color:var(--blue-2);
  font-size:14px;
}
.dashboard-grid{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:20px;
}
.quick-cars-grid{
  display:grid;
  grid-template-columns:repeat(2, minmax(0,1fr));
  gap:16px;
}
.mini-car-card{
  padding:16px;
  border-radius:20px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.mini-car-image{
  height:150px;
  overflow:hidden;
  border-radius:16px;
  margin-bottom:14px;
  background:#0b1018;
}
.mini-car-image img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.activity-list{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.activity-item{
  padding:14px;
  border-radius:16px;
  border:1px solid var(--line);
  background:rgba(255,255,255,.02);
}
.activity-item strong{
  display:block;
  margin-bottom:6px;
}
.page-wrap{
  min-height:100vh;
  display:grid;
  grid-template-columns:260px 1fr;
}
.sidebar{
  background:rgba(7,10,16,.96);
  border-right:1px solid rgba(255,255,255,.06);
  padding:22px 16px;
}
.sidebar h2{
  margin-bottom:20px;
  font-size:24px;
  letter-spacing:.12em;
}
.sidebar nav{
  display:flex;
  flex-direction:column;
  gap:8px;
}
.sidebar nav a{
  min-height:44px;
  display:flex;
  align-items:center;
  padding:0 14px;
  color:var(--muted);
  border-radius:14px;
}
.sidebar nav a:hover{
  background:rgba(18,181,255,.10);
  color:var(--text);
}
.content{
  padding:24px;
}
.page-head{
  display:flex;
  justify-content:space-between;
  gap:16px;
  align-items:end;
  flex-wrap:wrap;
  margin-bottom:20px;
}

/* FLATPICKR */
.flatpickr-calendar{
  background:#0c121d!important;
  border:1px solid rgba(18,181,255,.18)!important;
  box-shadow:var(--shadow)!important;
}
.flatpickr-months .flatpickr-month,
.flatpickr-weekdays,
span.flatpickr-weekday,
.flatpickr-current-month .flatpickr-monthDropdown-months,
.flatpickr-current-month input.cur-year{
  color:#eaf3ff!important;
  background:#0c121d!important;
}
.flatpickr-day{
  color:#dce8ff!important;
}
.flatpickr-day.selected,
.flatpickr-day.startRange,
.flatpickr-day.endRange{
  background:var(--blue)!important;
  border-color:var(--blue)!important;
  color:#031018!important;
}
.flatpickr-day:hover{
  background:rgba(18,181,255,.14)!important;
  border-color:rgba(18,181,255,.14)!important;
}

/* RESPONSIVE */
@media (max-width:1180px){
  .landscape-search-form{
    grid-template-columns:repeat(3, 1fr);
  }
  .search-action{
    grid-column:1/-1;
  }
  .dashboard-searchbar form{
    grid-template-columns:repeat(3, 1fr);
  }
}
@media (max-width:1040px){
  .showcase-hero,
  .dashboard-grid{
    grid-template-columns:1fr;
  }
  .stat-grid{
    grid-template-columns:repeat(2, 1fr);
  }
  .dashboard-shell,
  .page-wrap{
    grid-template-columns:1fr;
  }
  .dashboard-sidebar,
  .sidebar{
    position:relative;
    height:auto;
  }
  .auth-premium-layout{
    grid-template-columns:1fr;
  }
  .auth-premium-left{
    display:none;
  }
}
@media (max-width:760px){
  .footer-grid,
  .form-grid,
  .quick-cars-grid,
  .index-stat-row{
    grid-template-columns:1fr;
  }
  .showcase-copy h1{
    font-size:38px;
  }
  .section-head h2,
  .section-head-center h2,
  .cta-panel h2,
  .dashboard-top h1{
    font-size:30px;
  }
  .renton-header-inner{
    min-height:auto;
    padding:16px 0;
    flex-direction:column;
    align-items:flex-start;
  }
  .landscape-search-form,
  .dashboard-searchbar form,
  .stat-grid{
    grid-template-columns:1fr;
  }
}
.renton-brand-logo{
  display:flex;
  align-items:center;
}
.renton-logo{
  height:100px;
  width:auto;
  display:block;
	object-fit:contain;
}

.renton-cinematic-hero{
  position:relative;
  min-height:900px;
  overflow:hidden;

  background:
    linear-gradient(180deg, rgba(4,7,11,.38), rgba(4,7,11,.82)),
    url('/assets/images/hero-rs6.jpg') no-repeat center 70% / cover;
}

.renton-cinematic-overlay{
  position:absolute;
  inset:0;
  background:
linear-gradient(90deg, rgba(4,7,11,.85) 0%, rgba(4,7,11,.60) 60%, rgba(4,7,11,.35) 70%, rgba(4,7,11,.60) 100%);
}

.renton-cinematic-blue{
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 20%, rgba(18,181,255,.16), transparent 22%),
    radial-gradient(circle at 68% 58%, rgba(18,181,255,.10), transparent 20%),
    linear-gradient(180deg, rgba(18,181,255,.04), transparent 38%);
  mix-blend-mode:screen;
  z-index:2;
  pointer-events:none;
}

.renton-cinematic-inner{
  position:relative;
  z-index:3;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  gap:28px;
  align-items:center;
  padding-top:86px;
  padding-bottom:40px;
}

.renton-cinematic-content{
  max-width:760px;
}

.renton-cinematic-content h1{
  font-size:46px;
  line-height:1.1;
  margin:10px 0 14px;
  max-width:700px;
}

.renton-cinematic-content p{
  max-width:560px;
  font-size:15px;
  color:#d4e6ff;
}

.renton-cinematic-cards{
  display:grid;
  gap:16px;
}

.renton-cinematic-cards .showcase-side-card{
  background:rgba(255,255,255,.05);
  border:1px solid rgba(255,255,255,.08);
  backdrop-filter:blur(10px);
}

.renton-search-wrap{
  position:relative;
  z-index:3;
  margin-top:6px;
  padding-bottom:38px;
}

.renton-search-wrap .showcase-search{
  background:rgba(10,16,26,.84);
  border:1px solid rgba(18,181,255,.14);
  backdrop-filter:blur(12px);
  box-shadow:0 18px 60px rgba(0,0,0,.35);
}

.renton-search-wrap .search-field input,
.renton-search-wrap .search-field select{
  background:rgba(255,255,255,.04);
}

@media (max-width: 1100px){
  .renton-cinematic-inner{
    grid-template-columns:1fr;
    padding-top:60px;
  }

  .renton-cinematic-content h1{
    font-size:48px;
  }

  .renton-cinematic-cards{
    grid-template-columns:1fr 1fr;
  }
}

@media (max-width: 760px){
  .renton-logo{
    height:42px;
  }

  .renton-cinematic-hero{
    min-height:auto;
  }

  .renton-cinematic-inner{
    padding-top:44px;
  }

  .renton-cinematic-content h1{
    font-size:36px;
  }

  .renton-cinematic-cards{
    grid-template-columns:1fr;
  }
}
/* ===== DARK SELECT FIX ===== */
.search-field select {
    background-color: #0f1722 !important;
    color: #ffffff !important;
    border: 1px solid rgba(255,255,255,0.15);
}

/* Dropdown list */
.search-field select option {
    background-color: #0f1722;
    color: #ffffff;
}

/* Hover (jo gjithmonë funksionon në çdo browser) */
.search-field select option:hover {
    background-color: #00ffff;
    color: #000;
}
.auth-brand-wrap,
.auth-hero-copy,
.auth-mini-points{
  position: relative;
  z-index: 2;
}
.auth-premium-body{
  min-height:100vh;
}

.auth-premium-layout{
  min-height:100vh;
  display:grid;
  grid-template-columns:1.06fr .94fr;
}


.auth-brand-wrap{
  margin-bottom:22px;
}

.auth-logo{
  height:86px;
  width:auto;
  display:block;
  object-fit:contain;
}

.auth-side-visual{
  width:100%;
  margin-bottom:26px;
}

.auth-side-car-image{
  width:100%;
  max-width:620px;
  height:260px;
  object-fit:cover;
  border-radius:24px;
  border:1px solid rgba(255,255,255,.08);
  box-shadow:0 18px 50px rgba(0,0,0,.35);
  display:block;
}

.auth-hero-copy{
  max-width:620px;
}

.auth-hero-copy h1{
  font-size:50px;
  line-height:1.05;
  margin:0 0 18px;
}

.auth-hero-copy p{
  color:var(--muted);
  font-size:16px;
  line-height:1.75;
  margin:0 0 22px;
}

.auth-mini-points{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:14px;
}

.auth-mini-card{
  padding:18px;
  border-radius:18px;
  background:rgba(255,255,255,.03);
  border:1px solid var(--line);
}

.auth-mini-card strong{
  display:block;
  margin-bottom:6px;
}

.auth-mini-card span{
  color:var(--muted);
  font-size:14px;
}

.auth-premium-right{
  display:flex;
  align-items:center;
  justify-content:center;
  padding:34px;
}

.auth-premium-card{
  width:100%;
  max-width:520px;
  background:linear-gradient(180deg, rgba(17,22,29,.96), rgba(10,14,19,.98));
  border:1px solid rgba(18,181,255,.14);
  border-radius:28px;
  padding:34px;
  box-shadow:var(--shadow);
}

.auth-card-topline{
  color:var(--blue);
  font-size:12px;
  letter-spacing:.18em;
  text-transform:uppercase;
  font-weight:800;
  margin-bottom:10px;
}

.auth-premium-card h2{
  margin-bottom:8px;
  font-size:34px;
}

.auth-bottom-links{
  display:flex;
  justify-content:space-between;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}

.auth-bottom-links a{
  color:var(--muted);
  font-size:14px;
}

.auth-return-home{
  margin-top:22px;
  padding-top:18px;
  border-top:1px solid rgba(255,255,255,.06);
}

.auth-return-home a{
  color:var(--blue-2);
}

@media (max-width: 1100px){
  .auth-side-car-image{
    height:220px;
  }
}

@media (max-width: 1040px){
  .auth-premium-layout{
    grid-template-columns:1fr;
  }

  .auth-premium-left{
    display:none;
  }
}

@media (max-width: 760px){
  .auth-logo{
    height:72px;
  }

  .auth-premium-card{
    padding:24px;
  }
}
.auth-premium-left{
  position: relative;
  padding: 28px 48px 42px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid rgba(255,255,255,.06);
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(8,12,18,.22), rgba(8,12,18,.82)),
    url('/assets/images/login-rs6.jpeg') center 72% / cover no-repeat;
}

.auth-premium-left::before{
  content:'';
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(8,12,18,.72) 0%, rgba(8,12,18,.45) 42%, rgba(8,12,18,.70) 100%);
  z-index:1;
}

.auth-premium-left::after{
  content:'';
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at 18% 28%, rgba(18,181,255,.10), transparent 22%),
    linear-gradient(180deg, rgba(18,181,255,.03), transparent 35%);
  z-index:1;
  pointer-events:none;
}

.auth-brand-wrap,
.auth-hero-copy,
.auth-mini-points{
  position: relative;
  z-index: 2;
}

.auth-brand-wrap{
  margin-bottom: 0;
  padding-top: 0;
}

.auth-logo{
  height: 56px;
  width: auto;
  display: block;
  object-fit: contain;
}

.auth-hero-copy{
  max-width: 620px;
  margin-top: auto;
  margin-bottom: 26px;
}

.auth-hero-copy h1{
  font-size: 46px;
  line-height: 1.06;
  margin: 0 0 16px;
}

.auth-hero-copy p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 560px;
}
.auth-hero-copy{
  max-width: 620px;
  margin-top: 0;
  margin-bottom: 26px;
}

.auth-hero-copy h1{
  font-size: 46px;
  line-height: 1.06;
  margin: 0 0 16px;
}

.auth-hero-copy p{
  color: var(--muted);
  font-size: 15px;
  line-height: 1.75;
  margin: 0 0 22px;
  max-width: 560px;
}
@media (max-width: 1040px){
  .auth-premium-layout{
    grid-template-columns:1fr;
  }

  .auth-premium-left{
    display:none;
  }
}
/* =========================
   RENTON PREMIUM PAGES
   cars / car / booking
========================= */

.renton-header{
  position: sticky;
  top: 0;
  z-index: 90;
  background: rgba(6,10,16,.78);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(255,255,255,.06);
}

.renton-header-inner{
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.renton-brand-logo{
  display: flex;
  align-items: center;
}

.renton-logo{
  height: 60px;
  width: auto;
  display: block;
  object-fit: contain;
  filter: drop-shadow(0 6px 18px rgba(18,181,255,.18));
}

.renton-nav{
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.renton-nav a:not(.btn){
  color: #d7e4f8;
  font-size: 14px;
  font-weight: 600;
  opacity: .9;
}

.renton-nav a:not(.btn):hover{
  color: #fff;
  opacity: 1;
}

.homepage-section{
  padding: 42px 0 60px;
}

.section-kicker{
  display: inline-block;
  margin-bottom: 10px;
  color: var(--blue);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 12px;
  font-weight: 800;
}

.section-head{
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 16px;
  margin-bottom: 24px;
  flex-wrap: wrap;
}

.section-head h2{
  margin: 0;
  font-size: 36px;
  line-height: 1.08;
  color: #fff;
}

.card{
  background:
    linear-gradient(180deg, rgba(16,22,34,.96), rgba(10,14,20,.98));
  border: 1px solid rgba(255,255,255,.07);
  border-radius: 24px;
  padding: 24px;
  box-shadow:
    0 20px 60px rgba(0,0,0,.28),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.card h2,
.card h3{
  color: #fff;
}

.muted{
  color: #9fb0c7;
}

/* Search */
.landscape-search-form{
  display: grid;
  grid-template-columns: repeat(5, 1fr) 160px;
  gap: 14px;
  align-items: end;
}

.search-field{
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.search-field label{
  font-size: 13px;
  font-weight: 700;
  color: #c7d7ec;
}

.search-field input,
.search-field select{
  height: 52px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: #fff;
  padding: 0 14px;
  outline: none;
  transition: .2s ease;
}

.search-field input::placeholder{
  color: #9aa9bf;
}

.search-field input:focus,
.search-field select:focus{
  border-color: rgba(18,181,255,.35);
  box-shadow: 0 0 0 4px rgba(18,181,255,.08);
}

.search-field select{
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg fill='%23dce8ff' height='20' viewBox='0 0 20 20' width='20'><path d='M5 7l5 5 5-5z'/></svg>");
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 14px;
}

.search-field select option{
  background: #101826;
  color: #fff;
}

.search-action{
  display: flex;
  align-items: end;
}

.btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 18px;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  transition: .22s ease;
}

.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(18,181,255,.24);
}

.btn-sm{
  min-height: 42px;
  padding: 0 14px;
  border-radius: 12px;
}

.btn-block{
  width: 100%;
}

.btn-primary{
  border: none;
  color: #06131c;
  background: linear-gradient(135deg, #18c6ff, #46e4ff);
  box-shadow: 0 12px 28px rgba(24,198,255,.20);
}

.btn-primary:hover{
  transform: translateY(-1px);
  box-shadow: 0 18px 32px rgba(24,198,255,.24);
}

.badge{
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  background: rgba(18,181,255,.10);
  border: 1px solid rgba(18,181,255,.18);
  color: #7cecff;
  font-size: 12px;
  font-weight: 800;
}

/* Fleet grid */
.fleet-grid{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(285px, 1fr));
  gap: 20px;
}

.fleet-card{
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(180deg, rgba(16,22,34,.96), rgba(10,14,20,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 18px 50px rgba(0,0,0,.24),
    inset 0 1px 0 rgba(255,255,255,.03);
  transition: .24s ease;
}

.fleet-card:hover{
  transform: translateY(-4px);
  border-color: rgba(18,181,255,.18);
  box-shadow:
    0 24px 60px rgba(0,0,0,.28),
    0 0 0 1px rgba(18,181,255,.05);
}

.fleet-card-image{
  height: 230px;
  background: #0a1018;
  overflow: hidden;
}

.fleet-card-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .35s ease;
}

.fleet-card:hover .fleet-card-image img{
  transform: scale(1.03);
}

.fleet-card-body{
  padding: 20px;
}

.fleet-card-top{
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: start;
}

.fleet-card-top h3{
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.08;
}

.spec-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.spec-row span{
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
  color: #c7d7ec;
  font-size: 12px;
  font-weight: 600;
}

.fleet-price{
  margin-top: 18px;
  font-size: 26px;
  font-weight: 900;
  letter-spacing: -.02em;
  color: #fff;
}

.fleet-actions{
  margin-top: 18px;
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.no-image{
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #91a3bb;
  background:
    radial-gradient(circle at center, rgba(18,181,255,.08), transparent 35%),
    #0a1018;
}

/* 2-column sections */
.dashboard-grid{
  display: grid;
  grid-template-columns: 1.12fr .88fr;
  gap: 22px;
}

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

.summary-list > div{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 14px;
  padding: 14px 16px;
  border-radius: 16px;
  background: rgba(255,255,255,.03);
  border: 1px solid rgba(255,255,255,.07);
}

.summary-list > div span{
  color: #a7bad1;
  font-weight: 600;
}

.summary-list > div strong{
  color: #fff;
  text-align: right;
}

.summary-total{
  background: rgba(18,181,255,.10) !important;
  border-color: rgba(18,181,255,.18) !important;
}

.form-group{
  margin-bottom: 16px;
}

.form-group label{
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
  font-weight: 700;
  color: #d4e1f2;
}

.form-group input,
.form-group textarea,
.form-group select{
  width: 100%;
  border-radius: 14px;
  border: 1px solid rgba(255,255,255,.10);
  background: rgba(255,255,255,.03);
  color: #fff;
  padding: 14px;
  outline: none;
  transition: .2s ease;
}

.form-group input{
  height: 52px;
  padding: 0 14px;
}

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

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus{
  border-color: rgba(18,181,255,.35);
  box-shadow: 0 0 0 4px rgba(18,181,255,.08);
}

.alert{
  padding: 14px 16px;
  border-radius: 16px;
  margin-bottom: 18px;
  border: 1px solid rgba(255,255,255,.08);
}

.alert-danger{
  background: rgba(255,93,93,.10);
  border-color: rgba(255,93,93,.20);
  color: #ffd4d4;
}

.alert-success{
  background: rgba(24,195,126,.10);
  border-color: rgba(24,195,126,.18);
  color: #d5ffe8;
}

.action-row{
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

/* Car detail gallery */
.car-gallery-main{
  height: 460px;
  border-radius: 22px;
  overflow: hidden;
  background: #0a1018;
  border: 1px solid rgba(255,255,255,.07);
  margin-bottom: 14px;
  box-shadow: 0 14px 34px rgba(0,0,0,.18);
}

.car-gallery-main img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.car-thumbs{
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(88px, 1fr));
  gap: 10px;
}

.car-thumb{
  height: 82px;
  border-radius: 14px;
  overflow: hidden;
  border: 1px solid rgba(255,255,255,.08);
  background: #0a1018;
  cursor: pointer;
  transition: .22s ease;
}

.car-thumb:hover{
  transform: translateY(-1px);
  border-color: rgba(18,181,255,.24);
}

.car-thumb.active{
  border-color: rgba(18,181,255,.42);
  box-shadow: 0 0 0 3px rgba(18,181,255,.08);
}

.car-thumb img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Footer */
.renton-footer{
  margin-top: 28px;
  border-top: 1px solid rgba(255,255,255,.06);
  background: rgba(5,8,12,.65);
}

.footer-bottom{
  min-height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
  color: #9eb1c8;
  font-size: 14px;
}

/* Responsive */
@media (max-width: 1180px){
  .landscape-search-form{
    grid-template-columns: repeat(3, 1fr);
  }

  .search-action{
    grid-column: 1 / -1;
  }
}

@media (max-width: 1040px){
  .dashboard-grid{
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px){
  .renton-header-inner{
    min-height: auto;
    padding: 14px 0;
    flex-direction: column;
    align-items: flex-start;
  }

  .renton-logo{
    height: 52px;
  }

  .section-head h2{
    font-size: 28px;
  }

  .fleet-card-top h3{
    font-size: 21px;
  }

  .fleet-price{
    font-size: 22px;
  }

  .landscape-search-form{
    grid-template-columns: 1fr;
  }

  .car-gallery-main{
    height: 320px;
  }

  .footer-bottom{
    align-items: flex-start;
    min-height: auto;
    padding: 18px 0;
  }
}
/* =========================
   DASHBOARD PREMIUM TUNING
========================= */

.dashboard-shell{
  min-height: 100vh;
  display: grid;
  grid-template-columns: 280px 1fr;
  background:
    radial-gradient(circle at top right, rgba(18,181,255,.08), transparent 18%),
    linear-gradient(180deg, #05070b 0%, #090d14 100%);
}

.dashboard-sidebar{
  background:
    linear-gradient(180deg, rgba(10,14,20,.98), rgba(7,10,16,.98));
  border-right: 1px solid rgba(255,255,255,.06);
  padding: 24px 18px;
  position: sticky;
  top: 0;
  height: 100vh;
}

.dashboard-brand-logo{
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 26px;
}

.dashboard-logo{
  width: 100%;
  max-width: 180px;
  height: auto;
  object-fit: contain;
  display: block;
}

.dashboard-brand span{
  color: #95aac4;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .16em;
}

.dashboard-menu{
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dashboard-menu a{
  min-height: 46px;
  display: flex;
  align-items: center;
  padding: 0 14px;
  border-radius: 14px;
  color: #b8c8dc;
  border: 1px solid transparent;
  font-weight: 600;
  transition: .2s ease;
}

.dashboard-menu a:hover,
.dashboard-menu a.active{
  background: rgba(18,181,255,.10);
  color: #fff;
  border-color: rgba(18,181,255,.16);
  box-shadow: 0 8px 20px rgba(18,181,255,.08);
}

.dashboard-main{
  padding: 26px;
}

.dashboard-top{
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  margin-bottom: 22px;
  flex-wrap: wrap;
}

.dashboard-top h1{
  margin: 0 0 8px;
  font-size: 42px;
  line-height: 1.04;
}

.dashboard-toolbar{
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.dashboard-searchbar{
  padding: 18px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16,22,34,.96), rgba(11,16,24,.98));
  border: 1px solid rgba(18,181,255,.12);
  box-shadow:
    0 18px 50px rgba(0,0,0,.22),
    inset 0 1px 0 rgba(255,255,255,.03);
  margin-bottom: 22px;
}

.dashboard-searchbar form{
  display: grid;
  grid-template-columns: repeat(5, 1fr) 160px;
  gap: 14px;
  align-items: end;
}

.stat-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-bottom: 22px;
}

.stat-card{
  padding: 22px;
  border-radius: 22px;
  background:
    linear-gradient(180deg, rgba(16,22,34,.96), rgba(10,14,20,.98));
  border: 1px solid rgba(255,255,255,.07);
  box-shadow:
    0 18px 44px rgba(0,0,0,.18),
    inset 0 1px 0 rgba(255,255,255,.03);
}

.stat-label{
  color: #9db1cb;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: .08em;
  margin-bottom: 10px;
  font-weight: 700;
}

.stat-value{
  font-size: 34px;
  font-weight: 900;
  line-height: 1;
  margin-bottom: 10px;
  color: #fff;
}

.stat-meta{
  color: #79dfff;
  font-size: 14px;
}

.quick-cars-grid{
  display: grid;
  grid-template-columns: repeat(2, minmax(0,1fr));
  gap: 16px;
}

.mini-car-card{
  padding: 16px;
  border-radius: 20px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  transition: .22s ease;
}

.mini-car-card:hover{
  transform: translateY(-3px);
  border-color: rgba(18,181,255,.16);
}

.mini-car-card strong{
  display: block;
  margin-bottom: 6px;
  font-size: 17px;
}

.mini-car-image{
  height: 160px;
  overflow: hidden;
  border-radius: 16px;
  margin-bottom: 14px;
  background: #0b1018;
}

.mini-car-image img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.activity-item{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.activity-item strong{
  display: block;
  margin-bottom: 6px;
  font-size: 16px;
}

@media (max-width: 1180px){
  .dashboard-searchbar form{
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 1040px){
  .dashboard-shell{
    grid-template-columns: 1fr;
  }

  .dashboard-sidebar{
    position: relative;
    height: auto;
  }

  .stat-grid{
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 760px){
  .dashboard-main{
    padding: 18px;
  }

  .dashboard-top h1{
    font-size: 32px;
  }

  .dashboard-searchbar form,
  .stat-grid,
  .quick-cars-grid{
    grid-template-columns: 1fr;
  }
}
/* =========================
   ADMIN BOOKINGS LIST
========================= */

.booking-list-wrap{
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.booking-list-card{
  display: grid;
  grid-template-columns: 1fr 210px;
  gap: 18px;
  padding: 18px;
  border-radius: 22px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
  transition: .22s ease;
}

.booking-list-card:hover{
  transform: translateY(-2px);
  border-color: rgba(18,181,255,.16);
  box-shadow: 0 16px 34px rgba(0,0,0,.16);
}

.booking-list-main{
  min-width: 0;
}

.booking-list-top{
  display: flex;
  justify-content: space-between;
  align-items: start;
  gap: 16px;
  margin-bottom: 16px;
  flex-wrap: wrap;
}

.booking-list-top h3{
  margin: 0 0 6px;
  font-size: 24px;
  line-height: 1.08;
  color: #fff;
}

.booking-list-badges{
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.booking-list-grid{
  display: grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap: 12px;
}

.booking-mini-box{
  padding: 14px;
  border-radius: 16px;
  border: 1px solid rgba(255,255,255,.07);
  background: rgba(255,255,255,.025);
}

.booking-mini-box span{
  display: block;
  margin-bottom: 8px;
  color: #9fb0c7;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .06em;
}

.booking-mini-box strong{
  color: #fff;
  font-size: 15px;
  line-height: 1.35;
}

.booking-list-actions{
  display: flex;
  flex-direction: column;
  gap: 10px;
  justify-content: center;
}

.empty-state{
  padding: 34px 12px 10px;
  text-align: center;
}

.empty-state h3{
  margin-bottom: 10px;
}

@media (max-width: 1040px){
  .booking-list-card{
    grid-template-columns: 1fr;
  }

  .booking-list-actions{
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: flex-start;
  }
}

@media (max-width: 760px){
  .booking-list-grid{
    grid-template-columns: 1fr;
  }

  .booking-list-top h3{
    font-size: 20px;
  }
}