:root {
  --blue: #0b5ed7;
  --blue-2: #18a4ff;
  --deep: #071b35;
  --text: #17263b;
  --muted: #6c7b91;
  --soft: #f4f8ff;
  --border: #dbe7f4;
  --white: #ffffff;
  --green: #25d366;
  --danger: #ef4444;
  --shadow: 0 18px 42px rgba(9, 27, 54, 0.12);
  --shadow-soft: 0 12px 28px rgba(9, 27, 54, 0.06);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  -webkit-tap-highlight-color: transparent;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 118px;
}

body {
  font-family: "Plus Jakarta Sans", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
  overflow-x: hidden;
  padding-bottom: 96px;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

.app-container {
  width: min(100% - 28px, 520px);
  margin-inline: auto;
}

/* =========================
   Mobile Header - Unified
========================= */

.app-header {
  position: sticky;
  top: 0;
  z-index: 80;
  padding: 14px 16px 12px;
  background: rgba(255, 255, 255, .94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(228, 234, 242, .92);
}

.app-header-top {
  min-height: 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
}

.app-logo {
  display: flex;
  align-items: center;
  min-width: 144px;
  height: 44px;
}

.app-logo img {
  width: auto;
  max-width: 148px;
  max-height: 42px;
  object-fit: contain;
  display: block;
}

.app-menu-btn {
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 16px;
  background: #EAF4FF;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(11, 116, 255, .10);
}

.app-menu-btn span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: #0B74FF;
  display: block;
}

.app-wa {
  display: none !important;
}

.location-search {
  margin-top: 12px;
  min-height: 58px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px 14px;
  border-radius: 20px;
  background: #F3F8FF;
  border: 1px solid #DDEBFF;
  color: #071B3A;
  text-decoration: none;
}

.location-search-icon,
.location-search > span {
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #E4F1FF;
  color: #0B74FF;
  font-size: 17px;
}

.location-search-icon i,
.location-search > span i {
  width: 18px;
  height: 18px;
  stroke-width: 2.4;
}

.location-search small {
  display: block;
  font-size: 11px;
  color: #667085;
  font-weight: 700;
  margin-bottom: 2px;
}

.location-search strong {
  display: block;
  font-size: 13px;
  color: #071B3A;
  letter-spacing: -.02em;
  line-height: 1.25;
}

/* =========================
   Drawer Menu - Unified
========================= */

.mobile-drawer-overlay {
  position: fixed;
  inset: 0;
  background: rgba(7, 27, 58, .38);
  z-index: 110;
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}

.mobile-drawer-overlay.show {
  opacity: 1;
  pointer-events: auto;
}

.mobile-drawer {
  position: fixed;
  left: 14px;
  right: 14px;
  top: 14px;
  z-index: 120;
  padding: 16px;
  border-radius: 28px;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(228, 234, 242, .95);
  box-shadow: 0 24px 60px rgba(16, 24, 40, .22);
  transform: translateY(-18px);
  opacity: 0;
  pointer-events: none;
  transition: .22s ease;
}

.mobile-drawer.show {
  transform: translateY(0);
  opacity: 1;
  pointer-events: auto;
}

.drawer-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}

.drawer-head img {
  width: auto;
  max-width: 132px;
  max-height: 38px;
  object-fit: contain;
  display: block;
}

.drawer-close {
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 14px;
  background: #F3F8FF;
  color: #0B74FF;
  font-size: 20px;
  font-weight: 800;
  cursor: pointer;
}

.drawer-menu {
  display: grid;
  gap: 8px;
}

.drawer-menu a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 10px;
  padding: 13px 14px;
  border-radius: 18px;
  background: #F8FBFF;
  border: 1px solid #E4EAF2;
  color: #071B3A;
  text-decoration: none;
  font-size: 13px;
  font-weight: 800;
}

.drawer-menu a.primary {
  background: linear-gradient(135deg, #0B74FF, #38BDF8);
  color: #fff;
  border-color: transparent;
}

.drawer-menu a.active {
  background: #EAF4FF;
  border-color: #CFE2FF;
  color: #0B74FF;
}

.drawer-menu i {
  width: 19px;
  height: 19px;
  stroke-width: 2.4;
  flex: 0 0 auto;
}

/* =========================
   Main Layout
========================= */

.mobile-main {
  overflow: hidden;
}

.page-main {
  padding-top: 0;
}

/* =========================
   Home Dashboard
========================= */

.home-dashboard {
  padding: 18px 0 14px;
  background:
    radial-gradient(circle at 82% 10%, rgba(36, 197, 255, 0.22), transparent 36%),
    linear-gradient(180deg, #f8fbff 0%, #ffffff 86%);
}

.wallet-card {
  min-height: 72px;
  padding: 14px;
  margin-bottom: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  border-radius: 26px;
  color: #fff;
  background: linear-gradient(135deg, var(--deep), #0b5ed7);
  box-shadow: 0 20px 42px rgba(9, 27, 54, 0.2);
  overflow: hidden;
  position: relative;
}

.wallet-card::before {
  content: "";
  position: absolute;
  width: 170px;
  height: 170px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(36, 197, 255, 0.22);
}

.wallet-card > div,
.wallet-card > a {
  position: relative;
}

.wallet-card small {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 700;
}

.wallet-card strong {
  display: block;
  font-size: 17px;
  font-weight: 800;
}

.wallet-card a {
  min-height: 38px;
  padding: 0 14px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
}

.home-banner {
  min-height: 360px;
  padding: 22px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border-radius: 32px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(7, 27, 53, 0.02), rgba(7, 27, 53, 0.72)),
    url("/images/hero-car-wash.jpg") center top / cover no-repeat;
}

.home-banner-copy {
  color: #fff;
}

.home-banner-copy span {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.home-banner-copy h1 {
  max-width: 330px;
  margin-bottom: 10px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.02;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.home-banner-copy p {
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.home-banner-copy a {
  min-height: 46px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 13px;
  font-weight: 800;
}

/* =========================
   Section Titles
========================= */

.section-title-row {
  margin-bottom: 16px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
}

.section-title-row h2,
.section-heading h2,
.mini-status-head h2,
.tech-mini-copy h2,
.booking-head h2 {
  color: var(--deep);
  font-family: "Manrope", sans-serif;
  font-weight: 800;
  letter-spacing: -0.045em;
}

.section-title-row h2 {
  font-size: 22px;
}

.section-title-row p,
.section-heading p,
.tech-mini-copy p,
.booking-head p {
  color: var(--muted);
  font-size: 13px;
}

.section-title-row a {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

.section-heading {
  margin-bottom: 22px;
}

.section-heading span,
.booking-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section-heading h2,
.booking-head h2 {
  font-size: 30px;
  line-height: 1.06;
}

/* =========================
   Home Menu
========================= */

.home-menu {
  padding: 16px 0 8px;
}

.service-grid,
.clean-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}

.service-item {
  min-height: 88px;
  padding: 12px 6px;
  display: grid;
  place-items: center;
  text-align: center;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-soft);
}

.service-item.primary {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  border-color: rgba(11, 94, 215, 0.18);
  color: #fff;
}

.service-item i {
  width: 23px;
  height: 23px;
  color: #0B74FF;
  margin-bottom: 8px;
  stroke-width: 2.35;
}

.service-item.primary i {
  color: #fff;
}

.service-item b {
  font-size: 22px;
  line-height: 1;
}

.service-item span {
  color: var(--deep);
  font-size: 11px;
  font-weight: 800;
}

.service-item.primary span {
  color: #fff;
}

/* =========================
   Home Promo
========================= */

.home-promo {
  padding: 10px 0 8px;
}

.promo-card {
  min-height: 150px;
  padding: 18px;
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 14px;
  border-radius: 28px;
  color: #fff;
  box-shadow: var(--shadow);
  overflow: hidden;
  position: relative;
}

.single-promo {
  width: 100%;
}

.promo-blue {
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.promo-card::before {
  content: "";
  position: absolute;
  width: 180px;
  height: 180px;
  right: -70px;
  top: -80px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
}

.promo-card div,
.promo-card a {
  position: relative;
}

.promo-card span {
  display: inline-block;
  margin-bottom: 5px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 11px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.promo-card h3 {
  max-width: 210px;
  color: #fff;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.promo-card p {
  max-width: 240px;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.promo-card a {
  min-height: 38px;
  padding: 0 13px;
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  background: #fff;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
}

/* =========================
   Mini Status Home
========================= */

.home-mini-section {
  padding: 14px 0 8px;
}

.mini-status-card {
  padding: 18px;
  border-radius: 30px;
  background: var(--deep);
  color: #fff;
  box-shadow: 0 22px 48px rgba(7, 27, 53, 0.22);
  overflow: hidden;
  position: relative;
}

.mini-status-card::before {
  content: "";
  position: absolute;
  width: 190px;
  height: 190px;
  right: -90px;
  top: -90px;
  border-radius: 50%;
  background: rgba(36, 197, 255, 0.16);
}

.mini-status-head {
  position: relative;
  margin-bottom: 16px;
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 14px;
}

.mini-status-head span {
  display: inline-block;
  margin-bottom: 8px;
  color: #7fe9ff;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mini-status-head h2 {
  color: #fff;
  font-size: 22px;
  line-height: 1.08;
}

.mini-status-head b {
  min-width: 64px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
  font-size: 11px;
}

.mini-status-flow {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}

.mini-status-flow div {
  padding: 10px 4px;
  border-radius: 18px;
  text-align: center;
  background: rgba(255, 255, 255, 0.08);
}

.mini-status-flow i {
  width: 30px;
  height: 30px;
  margin: 0 auto 6px;
  display: grid;
  place-items: center;
  border-radius: 12px;
  color: rgba(255, 255, 255, 0.66);
  background: rgba(255, 255, 255, 0.1);
  font-style: normal;
  font-size: 12px;
  font-weight: 800;
}

.mini-status-flow .active i {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
}

.mini-status-flow span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 10px;
  font-weight: 700;
}

/* =========================
   Home Tech
========================= */

.home-tech {
  padding: 16px 0 118px;
}

.tech-mini-card {
  overflow: hidden;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.tech-mini-img {
  min-height: 220px;
  background:
    linear-gradient(180deg, rgba(7, 27, 53, 0.02), rgba(7, 27, 53, 0.42)),
    url("/images/technician.jpg") center top / cover no-repeat;
}

.tech-mini-copy {
  padding: 22px;
}

.tech-mini-copy span {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.tech-mini-copy h2 {
  font-size: 27px;
  line-height: 1.08;
}

.tech-mini-copy p {
  margin-top: 8px;
}

.tech-mini-copy a {
  width: 100%;
  min-height: 50px;
  margin-top: 16px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 14px;
  font-weight: 800;
}

/* =========================
   Page Hero
========================= */

.page-hero {
  padding: 22px 0 10px;
}

.page-hero span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-bottom: 10px;
  padding: 8px 12px;
  border-radius: 999px;
  background: #EAF4FF;
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: normal;
  text-transform: none;
}

.page-hero h1 {
  max-width: 370px;
  color: var(--deep);
  font-family: "Manrope", sans-serif;
  font-size: 34px;
  line-height: 1.03;
  letter-spacing: -0.055em;
  font-weight: 800;
}

.page-hero p {
  max-width: 420px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 14px;
}

/* =========================
   Package Detail Page
========================= */

.package-page-section,
.price-page-section {
  padding: 18px 0 118px;
}

.package-detail-card {
  overflow: hidden;
  margin-bottom: 18px;
  border-radius: 32px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.package-detail-card.featured {
  border: 2px solid rgba(11, 94, 215, 0.2);
}

.package-detail-img {
  min-height: 250px;
  background-size: cover;
  background-position: center top;
  background-repeat: no-repeat;
}

.package-detail-img.express {
  background-image:
    linear-gradient(180deg, rgba(7, 27, 53, 0.04), rgba(7, 27, 53, 0.44)),
    url("/images/service-express.jpg");
}

.package-detail-img.touchless {
  background-image:
    linear-gradient(180deg, rgba(7, 27, 53, 0.04), rgba(7, 27, 53, 0.44)),
    url("/images/service-premium.jpg");
}

.package-detail-img.complete {
  background-image:
    linear-gradient(180deg, rgba(7, 27, 53, 0.04), rgba(7, 27, 53, 0.44)),
    url("/images/service-interior.jpg");
}

.package-detail-body {
  padding: 22px;
}

.package-badge {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(36, 197, 255, 0.12);
  color: var(--blue);
  font-size: 11px;
  font-weight: 800;
}

.package-detail-body h2 {
  color: var(--deep);
  font-family: "Manrope", sans-serif;
  font-size: 31px;
  line-height: 1.04;
  letter-spacing: -0.05em;
}

.package-detail-body p {
  margin: 10px 0 14px;
  color: var(--muted);
  font-size: 14px;
}

.package-price {
  margin-bottom: 16px;
  color: var(--blue);
  font-family: "Manrope", sans-serif;
  font-size: 40px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.06em;
}

.package-price small {
  color: var(--muted);
  font-size: 13px;
}

.package-detail-body ul {
  list-style: none;
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.package-detail-body li {
  padding: 12px 14px;
  border-radius: 18px;
  background: var(--soft);
  color: #40546d;
  font-size: 13px;
  font-weight: 700;
}

.package-detail-body a {
  width: 100%;
  min-height: 52px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 14px;
  font-weight: 800;
}

.package-mini-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 14px 0 2px;
}

.package-mini-item {
  padding: 10px 9px;
  border-radius: 16px;
  background: #F8FBFF;
  border: 1px solid #E4EAF2;
  display: grid;
  gap: 6px;
  min-height: 76px;
}

.package-mini-icon {
  width: 30px;
  height: 30px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #EAF4FF;
  color: #0B74FF;
}

.package-mini-icon i {
  width: 16px;
  height: 16px;
  stroke-width: 2.35;
}

.package-mini-item span {
  display: block;
  font-size: 10.5px;
  line-height: 1.25;
  color: #667085;
  font-weight: 800;
}

.package-cta-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
  margin-top: 16px;
}

/* =========================
   Price Detail Page
========================= */

.price-info-card {
  padding: 16px;
  margin-bottom: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, var(--deep), #0a3f8f);
  color: #fff;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 12px;
}

.price-info-icon {
  width: 42px;
  height: 42px;
  flex: 0 0 42px;
  border-radius: 16px;
  background: rgba(255, 255, 255, .14);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-info-icon i {
  width: 20px;
  height: 20px;
  stroke-width: 2.35;
}

.price-info-card strong {
  display: block;
  font-size: 15px;
  font-weight: 800;
}

.price-info-card span {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
}

.price-detail-card {
  padding: 18px;
  margin-bottom: 16px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: 0 14px 32px rgba(9, 27, 54, 0.08);
}

.price-detail-card.featured {
  border: 2px solid rgba(11, 94, 215, 0.18);
}

.premium-card {
  background: linear-gradient(180deg, #ffffff, #f8fbff);
}

.price-detail-head {
  display: flex;
  justify-content: space-between;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
}

.price-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
}

.price-category-icon {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 15px;
  background: #EAF4FF;
  color: #0B74FF;
  display: flex;
  align-items: center;
  justify-content: center;
}

.price-category-icon i {
  width: 18px;
  height: 18px;
  stroke-width: 2.35;
}

.price-detail-head h2 {
  color: var(--deep);
  font-family: "Manrope", sans-serif;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: -.045em;
  margin-bottom: 0;
}

.price-detail-head p {
  margin-top: 4px;
  color: var(--muted);
  font-size: 12px;
}

.price-detail-head a {
  min-width: 82px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.price-detail-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.price-detail-grid div {
  min-height: 82px;
  padding: 14px 8px;
  border-radius: 18px;
  background: var(--soft);
  text-align: center;
}

.price-detail-grid span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.price-detail-grid strong {
  display: block;
  margin-top: 2px;
  color: var(--blue);
  font-size: 20px;
  font-weight: 800;
  letter-spacing: -.05em;
}

.price-notes {
  display: grid;
  gap: 12px;
  margin-top: 8px;
  margin-bottom: 18px;
}

.price-notes div {
  padding: 14px;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--border);
}

.price-notes b,
.price-notes .note-icon {
  width: 24px;
  height: 24px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 12px;
}

.price-notes .note-icon i {
  width: 14px;
  height: 14px;
  stroke-width: 3;
}

.price-notes span {
  color: #40546d;
  font-size: 13px;
  font-weight: 600;
}

/* =========================
   Booking Page Shared
========================= */

.booking-section {
  padding: 18px 0 118px;
  background: transparent;
  color: var(--text);
}

.booking-page-only {
  background: transparent;
}

.booking-form {
  padding: 18px;
  display: grid;
  gap: 12px;
  border-radius: 28px;
  background: #fff;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}

.booking-form label {
  display: grid;
  gap: 7px;
  color: #27405e;
  font-size: 13px;
  font-weight: 800;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  min-height: 52px;
  padding: 0 14px;
  border-radius: 17px;
  border: 1px solid var(--border);
  background: #f8fbff;
  outline: none;
  color: var(--text);
  font-size: 14px;
}

.booking-form textarea {
  min-height: 92px;
  padding: 13px 14px;
  resize: vertical;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.booking-form button {
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
}

.estimate-card {
  padding: 16px;
  border-radius: 22px;
  background: linear-gradient(135deg, var(--deep), #0a3f8f);
  color: #fff;
  box-shadow: 0 16px 34px rgba(9, 27, 54, 0.14);
}

.estimate-card span {
  display: block;
  color: rgba(255, 255, 255, 0.72);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.estimate-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
  line-height: 1;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.estimate-card small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 11px;
}

/* Booking latest summary card override */
.summary-card {
  padding: 12px 13px !important;
  border-radius: 21px !important;
}

.summary-row span {
  font-size: 11px !important;
}

.summary-row strong {
  display: block;
  font-size: 18px !important;
  letter-spacing: -.035em !important;
  margin-top: 3px !important;
  line-height: 1.15 !important;
}

#totalPrice {
  font-size: 18px !important;
  font-weight: 800 !important;
}

.summary-row div:last-child strong {
  font-size: 14px !important;
  letter-spacing: -.02em !important;
}

.summary-note {
  font-size: 10.8px !important;
  margin-top: 7px !important;
}

.submit-btn {
  min-height: 52px !important;
  font-size: 14px !important;
}

/* =========================
   PWA Splash + Install
========================= */

.app-splash {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 70% 20%, rgba(36, 197, 255, 0.24), transparent 34%),
    linear-gradient(180deg, #ffffff, #f4f8ff);
  transition: opacity .22s ease, visibility .22s ease;
  will-change: opacity;
}

.app-splash.hide {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.splash-card {
  display: grid;
  justify-items: center;
  gap: 12px;
}

.splash-card img {
  width: 170px;
  height: auto;
}

.splash-card span {
  color: var(--blue);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.splash-loader {
  width: 38px;
  height: 38px;
  border: 4px solid rgba(11, 94, 215, 0.14);
  border-top-color: var(--blue);
  border-radius: 999px;
  animation: splashSpin 0.8s linear infinite;
}

@keyframes splashSpin {
  to {
    transform: rotate(360deg);
  }
}

.install-app-btn {
  display: none;
  min-height: 38px;
  padding: 0 14px;
  border: 0;
  border-radius: 999px;
  color: var(--blue);
  background: #fff;
  font-size: 12px;
  font-weight: 800;
  cursor: pointer;
}

.install-wide {
  width: 100%;
  min-height: 48px;
  margin-bottom: 14px;
  justify-content: center;
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--blue-2));
  box-shadow: 0 14px 28px rgba(11, 94, 215, 0.2);
}

/* =========================
   Unified Bottom Nav
========================= */

.bottom-nav {
  position: fixed;
  left: 50%;
  bottom: 10px;
  transform: translateX(-50%);
  width: calc(100% - 24px);
  max-width: 492px;
  height: 64px;
  z-index: 120;
  background: rgba(255, 255, 255, .96);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(228, 234, 242, .95);
  box-shadow: 0 14px 34px rgba(16, 24, 40, .14);
  border-radius: 24px;
  padding: 7px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 5px;
}

.bottom-nav a {
  height: 50px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  color: #667085;
  font-size: 10.5px;
  font-weight: 800;
  line-height: 1;
  text-decoration: none;
}

.bottom-nav i {
  width: 20px;
  height: 20px;
  stroke-width: 2.35;
  flex: 0 0 auto;
}

.bottom-nav b {
  font-size: 18px;
  line-height: 1;
}

.bottom-nav a.active {
  background: #EAF4FF;
  color: #0B74FF;
}

.bottom-nav a.active i {
  color: #0B74FF;
}

.floating-wa {
  position: fixed;
  right: 16px;
  bottom: 90px;
  z-index: 85;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  background: var(--green);
  color: #fff;
  font-weight: 800;
  box-shadow: 0 18px 36px rgba(37, 211, 102, 0.34);
}

/* =========================
   Responsive
========================= */

@media (max-width: 380px) {
  .app-logo img {
    max-width: 136px;
    max-height: 39px;
  }

  .app-menu-btn {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .home-banner-copy h1 {
    font-size: 31px;
  }

  .home-banner {
    min-height: 330px;
  }

  .service-grid,
  .clean-grid {
    gap: 8px;
  }

  .service-item {
    min-height: 82px;
  }

  .page-hero h1 {
    font-size: 31px;
  }

  .package-mini-row {
    grid-template-columns: 1fr;
  }

  .price-title-row {
    align-items: flex-start;
  }
}