:root {
  --ink: #0c141a;
  --navy: #101c24;
  --navy-2: #172833;
  --muted: #667781;
  --line: #dfe6e8;
  --soft: #f5f8f8;
  --white: #ffffff;
  --orange: #f26a2e;
  --orange-2: #ff8848;
  --teal: #13857f;
  --shadow: 0 20px 60px rgba(9, 21, 28, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--white);
  font-family: "Tajawal", Arial, sans-serif;
  line-height: 1.7;
}

body.en {
  font-family: Inter, Arial, sans-serif;
  line-height: 1.55;
}

main {
  display: flex;
  flex-direction: column;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 50;
  inset: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  min-height: 82px;
  padding: 12px clamp(18px, 5vw, 72px);
  color: var(--white);
  background: rgba(12, 20, 26, 0.94);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
}

.brand {
  flex: 0 0 auto;
}

.brand img {
  width: 104px;
  height: 58px;
  object-fit: contain;
  padding: 8px;
  border-radius: 8px;
  background: var(--white);
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 15px;
  font-weight: 800;
}

.main-nav a {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(255, 255, 255, 0.07);
}

.main-nav a:hover,
.main-nav .active {
  color: var(--ink);
  background: var(--white);
}

.header-actions {
  display: flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 8px;
}

.language-switch,
.nav-action,
.button,
.contact-form button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-weight: 900;
  white-space: nowrap;
}

.language-switch {
  min-height: 40px;
  padding: 8px 13px;
  color: var(--ink);
  background: var(--orange);
}

.nav-action {
  min-height: 40px;
  padding: 8px 15px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  padding: 130px clamp(20px, 6vw, 90px) 42px;
  color: var(--white);
  background: var(--navy);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(12, 20, 26, 0.18), rgba(12, 20, 26, 0.82)),
    linear-gradient(180deg, rgba(12, 20, 26, 0.16), rgba(12, 20, 26, 0.9));
}

html[dir="ltr"] .hero::after {
  background:
    linear-gradient(270deg, rgba(12, 20, 26, 0.18), rgba(12, 20, 26, 0.82)),
    linear-gradient(180deg, rgba(12, 20, 26, 0.16), rgba(12, 20, 26, 0.9));
}

.hero-content,
.hero-trust {
  position: relative;
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--orange-2);
  font-weight: 900;
  letter-spacing: 0;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  margin-bottom: 18px;
  font-size: clamp(48px, 8vw, 96px);
  line-height: 0.95;
}

h2 {
  margin-bottom: 14px;
  font-size: clamp(30px, 4vw, 50px);
  line-height: 1.15;
}

h3 {
  margin-bottom: 10px;
  font-size: 24px;
  line-height: 1.2;
}

.hero-copy {
  max-width: 620px;
  margin-bottom: 26px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(18px, 2vw, 24px);
}

.hero-badge {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 7px 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  font-weight: 900;
}

.hero-actions,
.trust-bar,
.contact-options,
.footer-inner,
.stats-row {
  display: flex;
  align-items: center;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
}

.button.primary {
  color: var(--ink);
  background: var(--white);
}

.button.whatsapp,
.floating-whatsapp {
  color: var(--white);
  background: #128c7e;
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.28);
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.hero-trust {
  max-width: 960px;
  margin-top: 56px;
}

.trust-bar {
  flex-wrap: wrap;
  gap: 10px;
}

.trust-bar span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
}

.section {
  padding: 86px clamp(20px, 6vw, 90px);
}

.section.soft {
  background: var(--soft);
}

.section.dark {
  color: var(--white);
  background: var(--navy);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-heading p {
  color: var(--muted);
  font-size: 18px;
}

.dark .section-heading p {
  color: rgba(255, 255, 255, 0.72);
}

.grid-4,
.grid-2,
.honor-grid {
  display: grid;
  gap: 16px;
}

.grid-4 {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

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

.info-card,
.service-card,
.contact-card,
.why-card {
  min-height: 190px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 10px 34px rgba(11, 24, 31, 0.06);
}

.service-card strong,
.why-card strong {
  display: inline-flex;
  margin-bottom: 18px;
  color: var(--orange);
  font-size: 22px;
}

.info-card {
  min-height: 150px;
}

.info-card p,
.service-card p,
.why-card p {
  color: var(--muted);
}

.interactive-card {
  position: relative;
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.interactive-card::after {
  content: "+";
  position: absolute;
  top: 16px;
  left: 16px;
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

html[dir="ltr"] .interactive-card::after {
  left: auto;
  right: 16px;
}

.interactive-card:hover,
.interactive-card:focus-visible,
.interactive-card.is-open {
  transform: translateY(-5px);
  border-color: rgba(242, 106, 46, 0.55);
  box-shadow: var(--shadow);
}

.interactive-card.is-open::after {
  content: "−";
  color: var(--white);
  background: var(--orange);
}

.card-more {
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(6px);
  transition: max-height 220ms ease, opacity 180ms ease, transform 180ms ease;
}

.interactive-card:hover .card-more,
.interactive-card:focus-visible .card-more,
.interactive-card.is-open .card-more {
  max-height: 220px;
  opacity: 1;
  transform: translateY(0);
}

.card-more p {
  margin: 10px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.card-more a {
  display: inline-flex;
  margin-top: 12px;
  padding: 8px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  font-weight: 900;
}

.process-band {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
  padding: 80px clamp(20px, 6vw, 90px);
  color: var(--white);
  background: var(--navy-2);
}

.process-copy {
  padding: 28px;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-steps div {
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.07);
}

.process-steps span {
  display: block;
  margin-bottom: 8px;
  color: var(--orange-2);
  font-weight: 900;
}

.honor-section {
  padding: 86px clamp(20px, 6vw, 90px);
  color: var(--white);
  background: #0b2028;
}

.honor-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: end;
  margin-bottom: 28px;
}

.honor-heading p {
  color: rgba(255, 255, 255, 0.7);
}

.honor-month {
  min-width: 190px;
  padding: 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.08);
}

.honor-month span,
.honor-meta span,
.honor-metrics span {
  display: block;
  color: rgba(255, 255, 255, 0.66);
  font-weight: 800;
}

.honor-month strong {
  display: block;
  margin-top: 4px;
  font-size: 24px;
}

.honor-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.honor-card {
  position: relative;
  isolation: isolate;
  min-height: 620px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: #112a32;
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

.honor-avatar {
  position: absolute;
  inset: 0;
  z-index: -1;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, rgba(242, 106, 46, 0.86), rgba(19, 133, 127, 0.92));
}

.honor-avatar::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(8, 24, 30, 0.05), rgba(8, 24, 30, 0.38) 42%, rgba(8, 24, 30, 0.9));
}

.honor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}

.honor-avatar span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 62px;
  font-weight: 900;
}

.honor-body {
  padding: 260px 20px 18px;
}

.honor-rank {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 10px;
  border-radius: 999px;
  color: var(--ink);
  background: var(--white);
  font-weight: 900;
}

.honor-body h3 {
  color: var(--white);
}

.honor-body strong {
  display: block;
  margin-bottom: 10px;
  color: var(--orange-2);
}

.honor-body p {
  color: rgba(255, 255, 255, 0.78);
}

.honor-meta {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  padding: 0 20px 20px;
}

.honor-meta div {
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 24, 30, 0.52);
  backdrop-filter: blur(8px);
}

.honor-meta strong {
  display: block;
  color: var(--white);
  font-size: 22px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.7fr);
  gap: 24px;
  align-items: start;
  padding: 86px clamp(20px, 6vw, 90px);
  background: var(--soft);
}

.contact-options {
  align-items: stretch;
  gap: 12px;
  margin-top: 22px;
}

.contact-card {
  display: block;
  min-height: 132px;
  color: var(--ink);
}

.contact-card span {
  display: block;
  color: var(--muted);
  font-weight: 800;
}

.contact-card strong {
  display: block;
  margin: 8px 0;
  font-size: 22px;
}

.contact-card small {
  color: var(--muted);
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--ink);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea,
.admin-card input,
.admin-card select,
.admin-card textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 12px 14px;
  color: var(--ink);
  background: var(--white);
}

.contact-form textarea,
.admin-card textarea {
  resize: vertical;
}

.contact-form button {
  min-height: 52px;
  border: 0;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
}

.inline-whatsapp {
  display: inline-flex;
  justify-content: center;
  padding: 11px 14px;
  border: 1px solid rgba(18, 140, 126, 0.28);
  border-radius: 8px;
  color: #0b6f63;
  background: rgba(18, 140, 126, 0.08);
  font-weight: 900;
}

.form-status {
  display: none;
  margin: 0;
  padding: 12px;
  border-radius: 8px;
  font-weight: 800;
}

.contact-sent .sent-status {
  display: block;
  color: #155c38;
  background: #dff5e9;
}

.contact-error .error-status {
  display: block;
  color: #8b2d20;
  background: #fde5df;
}

.page-hero {
  padding: 170px clamp(20px, 6vw, 90px) 76px;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(16, 28, 36, 0.94), rgba(16, 28, 36, 0.82)),
    url("assets/hero-delivery-965.png") center / cover;
}

.page-hero p {
  max-width: 720px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 19px;
}

.floating-whatsapp {
  position: fixed;
  z-index: 60;
  inset: auto auto 20px 20px;
  min-height: 52px;
  padding: 13px 18px;
  border-radius: 8px;
  font-weight: 900;
  box-shadow: var(--shadow);
}

html[dir="ltr"] .floating-whatsapp {
  inset: auto 20px 20px auto;
}

.quick-actions {
  display: none;
}

.site-footer {
  color: rgba(255, 255, 255, 0.74);
  background: #0c141a;
}

.footer-inner {
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  padding: 28px clamp(20px, 6vw, 90px);
}

.admin-body {
  min-height: 100vh;
  padding: 38px clamp(18px, 5vw, 70px);
  background: var(--soft);
}

.admin-shell {
  max-width: 1180px;
  margin: 0 auto;
}

.admin-header {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 22px;
}

.admin-links {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  align-items: start;
}

.admin-links a,
.admin-secondary {
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.admin-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.8fr) minmax(0, 1fr);
  gap: 18px;
}

.admin-card {
  display: grid;
  gap: 14px;
  padding: 22px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.admin-card label {
  display: grid;
  gap: 7px;
  font-weight: 800;
}

.admin-card button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  color: var(--white);
  background: var(--teal);
  cursor: pointer;
}

.admin-message {
  padding: 12px;
  border-radius: 8px;
  color: #155c38;
  background: #dff5e9;
  font-weight: 800;
}

.admin-list {
  display: grid;
  gap: 10px;
}

.admin-driver {
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-driver img {
  width: 74px;
  height: 74px;
  object-fit: cover;
  border-radius: 8px;
  background: var(--soft);
}

.admin-driver-actions {
  display: flex;
  gap: 8px;
}

.admin-driver-actions a,
.admin-driver-actions button {
  min-height: 36px;
  padding: 8px 10px;
  border-radius: 8px;
  color: var(--white);
  background: var(--navy);
}

.admin-driver-actions button {
  background: #b64635;
}

.interactive-card {
  overflow: hidden;
  transform-style: preserve-3d;
  will-change: transform;
}

.interactive-card::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(120deg, transparent 8%, rgba(255, 255, 255, 0.48) 34%, transparent 58%);
  transform: translateX(120%);
  transition: opacity 180ms ease, transform 520ms ease;
}

.interactive-card:hover,
.interactive-card:focus-visible,
.interactive-card.is-open {
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg)) translateY(-12px) scale(1.018);
  box-shadow: 0 34px 88px rgba(8, 24, 30, 0.24);
}

.interactive-card:hover::before,
.interactive-card:focus-visible::before,
.interactive-card.is-open::before {
  opacity: 1;
  transform: translateX(-120%);
}

.interactive-card > * {
  position: relative;
  z-index: 1;
}

.month-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: -4px 0 24px;
}

.month-filters button {
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.82);
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
  font-weight: 900;
}

.month-filters button.active,
.month-filters button:hover {
  color: var(--ink);
  background: var(--white);
}

.honor-avatar {
  z-index: 0;
  border: 0;
  padding: 0;
  color: inherit;
  cursor: pointer;
  overflow: hidden;
}

.honor-avatar::after {
  z-index: 1;
}

.honor-avatar img {
  transition: transform 340ms ease, filter 340ms ease;
}

.honor-card:hover .honor-avatar img,
.honor-card.is-open .honor-avatar img {
  transform: scale(1.065);
  filter: saturate(1.08) contrast(1.04);
}

.honor-card {
  cursor: pointer;
  transform-style: preserve-3d;
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}

.honor-card:hover,
.honor-card.is-open {
  border-color: rgba(242, 106, 46, 0.58);
  transform: perspective(1000px) rotateX(var(--honor-tilt-x, 0deg)) rotateY(var(--honor-tilt-y, 0deg)) translateY(-10px) scale(1.012);
  box-shadow: 0 36px 96px rgba(0, 0, 0, 0.38);
}

.honor-card:hover .honor-avatar span,
.honor-card.is-open .honor-avatar span {
  transform: scale(1.12);
  color: rgba(255, 255, 255, 0.92);
}

.honor-body,
.honor-meta {
  position: relative;
  z-index: 1;
}

.honor-image-overlay {
  position: absolute;
  z-index: 3;
  inset: 0;
  display: grid;
  align-content: center;
  gap: 10px;
  padding: 24px;
  opacity: 0;
  color: var(--white);
  text-align: center;
  background: linear-gradient(180deg, rgba(8, 24, 30, 0.08), rgba(8, 24, 30, 0.38));
  backdrop-filter: blur(4px);
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.honor-image-overlay strong {
  font-size: 18px;
  color: var(--orange-2);
}

.honor-image-overlay p {
  max-width: 34ch;
  margin: 0 auto;
  color: rgba(255, 255, 255, 0.92);
  font-size: 18px;
  font-weight: 800;
}

.honor-card:hover .honor-image-overlay,
.honor-card:focus-within .honor-image-overlay,
.honor-card.is-open .honor-image-overlay {
  opacity: 1;
  transform: translateY(0);
}

.floating-contact-widget {
  position: fixed;
  z-index: 90;
  left: 18px;
  bottom: 18px;
  display: grid;
  gap: 8px;
  touch-action: none;
}

html[dir="ltr"] .floating-contact-widget {
  left: auto;
  right: 18px;
}

.floating-contact-toggle {
  min-width: 74px;
  min-height: 52px;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: linear-gradient(135deg, #128c7e, var(--teal));
  box-shadow: 0 18px 46px rgba(8, 24, 30, 0.24);
  cursor: grab;
  font-weight: 900;
}

.floating-contact-widget.is-dragging .floating-contact-toggle {
  cursor: grabbing;
  transform: scale(1.05);
}

.floating-contact-menu {
  position: absolute;
  bottom: calc(100% + 10px);
  left: 0;
  min-width: 210px;
  display: grid;
  gap: 8px;
  padding: 10px;
  border: 1px solid rgba(12, 20, 26, 0.12);
  border-radius: 8px;
  opacity: 0;
  pointer-events: none;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: var(--shadow);
  backdrop-filter: blur(16px);
  transform: translateY(8px) scale(0.96);
  transition: opacity 160ms ease, transform 160ms ease;
}

html[dir="ltr"] .floating-contact-menu {
  left: auto;
  right: 0;
}

.floating-contact-widget.is-open .floating-contact-menu {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.floating-contact-menu a {
  min-height: 42px;
  display: flex;
  align-items: center;
  padding: 9px 12px;
  border-radius: 8px;
  color: var(--ink);
  background: var(--soft);
  font-weight: 900;
}

.floating-contact-menu a:hover {
  color: var(--white);
  background: var(--teal);
}

.admin-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0;
}

.admin-tabs a {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
  font-weight: 900;
}

.admin-tabs a.active {
  color: var(--white);
  background: var(--navy);
}

.wide-admin {
  max-width: 1320px;
}

.admin-form-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.admin-form-grid h2,
.admin-form-grid button,
.admin-form-grid .span-2 {
  grid-column: 1 / -1;
}

.admin-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.admin-row p {
  margin-bottom: 4px;
  color: var(--muted);
}

.admin-row small {
  color: var(--teal);
  font-weight: 900;
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
    animation-duration: 0.001ms !important;
  }

  .interactive-card:hover,
  .interactive-card:focus-visible,
  .interactive-card.is-open,
  .honor-card:hover .honor-avatar img,
  .honor-avatar.is-open img {
    transform: none;
  }
}

@media (max-width: 1040px) {
  .site-header {
    flex-wrap: wrap;
  }

  .brand {
    order: 1;
  }

  .header-actions {
    order: 2;
  }

  .main-nav {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .grid-4,
  .grid-2,
  .honor-grid,
  .process-band,
  .contact-section,
  .admin-grid {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    min-height: 76px;
    padding: 10px 16px;
  }

  .brand img {
    width: 86px;
    height: 48px;
  }

  .language-switch,
  .nav-action {
    min-height: 36px;
    padding: 7px 10px;
    font-size: 14px;
  }

  .main-nav a {
    min-height: 34px;
    padding: 6px 10px;
    font-size: 14px;
  }

  .hero {
    min-height: 96vh;
    padding: 142px 18px 92px;
  }

  h1 {
    font-size: 52px;
  }

  .grid-4,
  .contact-options {
    grid-template-columns: 1fr;
    display: grid;
  }

  .section,
  .honor-section,
  .contact-section {
    padding: 62px 18px;
  }

  .page-hero {
    padding: 154px 18px 62px;
  }

  .honor-heading {
    grid-template-columns: 1fr;
  }

  .honor-card {
    min-height: 600px;
  }

  .footer-inner {
    display: grid;
  }

  .floating-whatsapp {
    display: none;
  }

  html[dir="ltr"] .floating-whatsapp {
    display: none;
  }

  .quick-actions {
    position: fixed;
    z-index: 70;
    left: 14px;
    right: 14px;
    bottom: 14px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    padding: 8px;
    border: 1px solid rgba(12, 20, 26, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow);
    backdrop-filter: blur(14px);
  }

  .quick-actions a {
    display: inline-flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    color: var(--white);
    background: var(--teal);
    font-weight: 900;
  }

  .quick-actions a:first-child {
    background: #128c7e;
  }

  .admin-driver {
    grid-template-columns: 62px 1fr;
  }

  .admin-driver-actions {
    grid-column: 1 / -1;
  }

  .admin-form-grid,
  .admin-row {
    grid-template-columns: 1fr;
  }

  .floating-contact-widget {
    left: 14px;
    bottom: 14px;
  }

  html[dir="ltr"] .floating-contact-widget {
    right: 14px;
  }
}

/* Final controlled design overrides */
.has-custom-bg {
  position: relative;
  overflow: hidden;
  background-image:
    linear-gradient(135deg, rgba(12, 20, 26, 0.9), rgba(12, 20, 26, 0.72)),
    var(--section-bg-image);
  background-size: cover;
  background-position: center;
}

.has-custom-bg > * {
  position: relative;
  z-index: 1;
}

body[data-card-style="formal"] .interactive-card {
  box-shadow: 0 8px 26px rgba(8, 24, 30, 0.08);
}

body[data-card-style="formal"] .interactive-card:hover,
body[data-card-style="formal"] .interactive-card:focus-visible,
body[data-card-style="formal"] .interactive-card.is-open {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(8, 24, 30, 0.14);
}

body[data-card-style="compact"] .info-card,
body[data-card-style="compact"] .service-card,
body[data-card-style="compact"] .why-card {
  min-height: 150px;
  padding: 18px;
}

body[data-card-style="soft"] .info-card,
body[data-card-style="soft"] .service-card,
body[data-card-style="soft"] .why-card {
  border-radius: 18px;
  background: linear-gradient(180deg, #ffffff, #f7fbfb);
}

.honor-card {
  min-height: 640px;
  display: block;
  overflow: hidden;
}

.honor-avatar {
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
}

.honor-avatar::after {
  z-index: 1;
  background: linear-gradient(180deg, rgba(8, 24, 30, 0.04), rgba(8, 24, 30, 0.22) 48%, rgba(8, 24, 30, 0.78));
}

.honor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.honor-avatar .default-driver-image {
  object-fit: cover;
}

.honor-rank {
  position: absolute;
  z-index: 5;
  top: 18px;
  inset-inline-end: 18px;
}

.honor-peek {
  position: absolute;
  z-index: 5;
  inset-inline-start: 18px;
  bottom: 22px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.84);
  background: rgba(8, 24, 30, 0.42);
  backdrop-filter: blur(10px);
  font-weight: 900;
  transition: opacity 180ms ease, transform 180ms ease;
}

.honor-body {
  position: absolute;
  z-index: 5;
  inset-inline: 20px;
  bottom: 76px;
  padding: 0;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.honor-body h3 {
  margin-bottom: 4px;
  font-size: clamp(28px, 4vw, 42px);
}

.honor-body strong {
  margin-bottom: 0;
}

.honor-meta {
  position: absolute;
  z-index: 5;
  inset-inline: 20px;
  bottom: 20px;
  padding: 0;
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 240ms ease 60ms, transform 240ms ease 60ms;
}

.honor-image-overlay {
  z-index: 4;
  align-content: start;
  justify-items: center;
  padding: 120px 28px 220px;
  background: linear-gradient(180deg, rgba(8, 24, 30, 0.08), rgba(8, 24, 30, 0.28), rgba(8, 24, 30, 0.2));
}

.honor-image-overlay p {
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(8, 24, 30, 0.34);
  backdrop-filter: blur(10px);
}

.honor-card:hover .honor-body,
.honor-card.is-open .honor-body,
.honor-card:hover .honor-meta,
.honor-card.is-open .honor-meta {
  opacity: 1;
  transform: translateY(0);
}

.honor-card:hover .honor-peek,
.honor-card.is-open .honor-peek {
  opacity: 0;
  transform: translateY(10px);
}

@media (max-width: 680px) {
  .honor-card {
    min-height: 620px;
  }

  .honor-image-overlay {
    padding: 96px 18px 245px;
  }

  .honor-body {
    bottom: 186px;
  }

  .honor-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

/* Honor card v2: calm image-first layout */
.honor-card {
  min-height: 640px;
  background: #08181e;
}

.honor-avatar::after {
  background: linear-gradient(180deg, rgba(8, 24, 30, 0) 40%, rgba(8, 24, 30, 0.18) 62%, rgba(8, 24, 30, 0.72));
}

.honor-card:hover .honor-avatar img,
.honor-card.is-open .honor-avatar img {
  transform: scale(1.025);
  filter: saturate(1.04) contrast(1.02);
}

.honor-image-overlay {
  display: none !important;
}

.honor-peek {
  bottom: 112px;
  background: rgba(8, 24, 30, 0.54);
}

.honor-body {
  inset-inline: 18px;
  bottom: 20px;
  opacity: 1;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(8, 24, 30, 0.55);
  backdrop-filter: blur(10px);
  transform: translateY(0);
}

.honor-body h3 {
  margin: 0 0 2px;
  font-size: clamp(24px, 3.2vw, 34px);
}

.honor-reason-panel {
  position: absolute;
  z-index: 5;
  inset-inline: 18px;
  bottom: 164px;
  padding: 14px 16px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  opacity: 0;
  color: var(--white);
  background: rgba(8, 24, 30, 0.52);
  backdrop-filter: blur(10px);
  transform: translateY(16px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.honor-reason-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--orange-2);
  font-size: 16px;
}

.honor-reason-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
  font-weight: 800;
}

.honor-meta {
  inset-inline: 18px;
  bottom: 20px;
  opacity: 0;
  transform: translateY(22px);
}

.honor-meta div {
  padding: 10px 12px;
  background: rgba(8, 24, 30, 0.58);
}

.honor-card:hover .honor-body,
.honor-card.is-open .honor-body {
  bottom: 296px;
}

.honor-card:hover .honor-reason-panel,
.honor-card.is-open .honor-reason-panel,
.honor-card:hover .honor-meta,
.honor-card.is-open .honor-meta {
  opacity: 1;
  transform: translateY(0);
}

.honor-card:hover .honor-peek,
.honor-card.is-open .honor-peek {
  opacity: 0;
  transform: translateY(8px);
}

@media (max-width: 680px) {
  .honor-card {
    min-height: 620px;
  }

  .honor-body {
    bottom: 20px;
  }

  .honor-card:hover .honor-body,
  .honor-card.is-open .honor-body {
    bottom: 314px;
  }

  .honor-reason-panel {
    bottom: 174px;
  }
}

/* Honor card v3: show the real driver photo clearly */
.honor-card {
  min-height: 620px;
  border-color: rgba(242, 106, 46, 0.35);
  background: #071b22;
}

.honor-avatar {
  border: 0;
  padding: 0;
  overflow: hidden;
  cursor: pointer;
}

.honor-avatar::after {
  background: linear-gradient(180deg, rgba(7, 27, 34, 0) 0%, rgba(7, 27, 34, 0) 54%, rgba(7, 27, 34, 0.7) 78%, rgba(7, 27, 34, 0.95) 100%);
  pointer-events: none;
}

.honor-avatar img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  opacity: 1 !important;
  filter: none !important;
  transform: none;
  background: #071b22;
}

.honor-card:hover .honor-avatar img,
.honor-card.is-open .honor-avatar img {
  transform: scale(1.015);
  filter: none !important;
}

.honor-body {
  bottom: 18px;
  background: rgba(7, 27, 34, 0.72);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.28);
}

.honor-card:hover .honor-body,
.honor-card.is-open .honor-body {
  bottom: 286px;
}

.honor-reason-panel,
.honor-meta div {
  background: rgba(7, 27, 34, 0.72);
}

.honor-peek {
  bottom: 96px;
  background: rgba(7, 27, 34, 0.74);
}

.honor-rank {
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

@media (max-width: 680px) {
  .honor-card {
    min-height: 560px;
  }

  .honor-card:hover .honor-body,
  .honor-card.is-open .honor-body {
    bottom: 302px;
  }
}

/* Honor card v4: portrait award card, photo first */
.honor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 360px));
  justify-content: center;
  gap: 18px;
}

.honor-card {
  min-height: 0;
  display: grid;
  grid-template-rows: auto auto auto auto;
  overflow: hidden;
  border-color: rgba(242, 106, 46, 0.28);
  background: linear-gradient(180deg, #0a232b, #07171d);
  box-shadow: 0 22px 52px rgba(0, 0, 0, 0.24);
}

.honor-avatar {
  position: relative;
  inset: auto;
  z-index: 1;
  width: 100%;
  aspect-ratio: 4 / 5;
  min-height: 0;
  border: 0;
  border-radius: 0;
  background: #071b22;
}

.honor-avatar::after {
  background: linear-gradient(180deg, rgba(7, 27, 34, 0) 70%, rgba(7, 27, 34, 0.16));
}

.honor-avatar img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  background: #071b22;
}

.honor-card:hover .honor-avatar img,
.honor-card.is-open .honor-avatar img {
  transform: scale(1.01);
}

.honor-rank {
  position: absolute;
  z-index: 6;
  top: 12px;
  inset-inline-end: 12px;
  margin: 0;
}

.honor-peek {
  position: absolute;
  z-index: 6;
  top: calc(min(360px, 100vw - 40px) * 1.18);
  inset-inline-start: 12px;
  bottom: auto;
  padding: 6px 10px;
  background: rgba(7, 27, 34, 0.28);
  backdrop-filter: blur(6px);
}

.honor-body {
  position: static;
  z-index: 2;
  inset: auto;
  bottom: auto;
  opacity: 1;
  padding: 16px 18px 8px;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
  transform: none;
}

.honor-card:hover .honor-body,
.honor-card.is-open .honor-body {
  bottom: auto;
}

.honor-body h3 {
  margin: 0 0 3px;
  color: var(--white);
  font-size: clamp(24px, 2.2vw, 32px);
  line-height: 1.12;
}

.honor-body strong {
  color: var(--orange-2);
}

.honor-meta {
  position: static;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px;
  inset: auto;
  bottom: auto;
  padding: 8px 18px 18px;
  opacity: 1;
  transform: none;
}

.honor-meta div {
  min-height: 76px;
  padding: 10px 12px;
  background: rgba(7, 27, 34, 0.22);
  backdrop-filter: blur(4px);
}

.honor-meta strong {
  font-size: clamp(18px, 2vw, 24px);
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.honor-reason-panel {
  position: static;
  z-index: 2;
  inset: auto;
  max-height: 0;
  margin: 0 18px;
  padding: 0 14px;
  border-color: rgba(255, 255, 255, 0.1);
  opacity: 0;
  overflow: hidden;
  background: rgba(7, 27, 34, 0.22);
  backdrop-filter: blur(4px);
  transform: none;
  transition: max-height 240ms ease, opacity 220ms ease, padding 220ms ease, margin 220ms ease;
}

.honor-card:hover .honor-reason-panel,
.honor-card.is-open .honor-reason-panel {
  max-height: 220px;
  margin: 0 18px 18px;
  padding: 12px 14px;
  opacity: 1;
}

.honor-card:hover .honor-meta,
.honor-card.is-open .honor-meta {
  opacity: 1;
  transform: none;
}

.honor-card:hover .honor-peek,
.honor-card.is-open .honor-peek {
  opacity: 0;
}

@media (max-width: 760px) {
  .honor-grid {
    grid-template-columns: minmax(0, 420px);
  }

  .honor-card {
    width: min(100%, 420px);
    margin-inline: auto;
  }

  .honor-avatar {
    aspect-ratio: 4 / 5;
  }

  .honor-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 420px) {
  .honor-meta {
    grid-template-columns: 1fr;
  }
}

/* V9 candidate polish: calmer, production-ready interaction and mobile behavior */
:root {
  --radius-sm: 8px;
  --radius-md: 10px;
  --surface-glass: rgba(255, 255, 255, 0.08);
  --surface-ink-glass: rgba(7, 27, 34, 0.24);
}

.site-header {
  min-height: 78px;
}

.main-nav a,
.language-switch,
.nav-action,
.button,
.contact-card,
.interactive-card,
.admin-card,
.contact-form,
.honor-card {
  border-radius: var(--radius-sm);
}

.main-nav a,
.language-switch,
.nav-action,
.contact-card,
.floating-contact-toggle,
.floating-contact-menu a,
.admin-tabs a,
.admin-links a,
.inline-whatsapp {
  transition: transform 180ms ease, background-color 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.main-nav a:hover,
.language-switch:hover,
.nav-action:hover,
.contact-card:hover,
.floating-contact-menu a:hover,
.admin-tabs a:hover,
.admin-links a:hover,
.inline-whatsapp:hover {
  transform: translateY(-1px);
}

.section,
.contact-section {
  padding-top: clamp(58px, 7vw, 92px);
  padding-bottom: clamp(58px, 7vw, 92px);
}

.section-heading {
  max-width: 760px;
}

.section-heading p,
.process-copy p,
.contact-section > div > p,
.page-hero p {
  max-width: 720px;
}

.trust-bar {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(7, 27, 34, 0.42);
}

.trust-bar span {
  white-space: normal;
}

.interactive-card {
  min-height: 210px;
  transform: perspective(900px) rotateX(var(--tilt-x, 0deg)) rotateY(var(--tilt-y, 0deg));
}

.interactive-card:hover,
.interactive-card.is-open {
  box-shadow: 0 26px 62px rgba(9, 21, 28, 0.16);
}

.card-more {
  border-radius: var(--radius-sm);
}

.process-band {
  align-items: stretch;
}

.process-steps div {
  min-height: 150px;
}

.contact-section {
  grid-template-columns: minmax(0, 0.88fr) minmax(340px, 0.72fr);
}

.contact-options {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.contact-card {
  min-height: 144px;
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-card:hover {
  border-color: rgba(242, 106, 46, 0.38);
  box-shadow: 0 18px 44px rgba(9, 21, 28, 0.1);
}

.contact-form {
  border: 1px solid rgba(223, 230, 232, 0.88);
}

.contact-form label small {
  color: var(--muted);
  font-weight: 700;
}

.contact-form input:focus,
.contact-form textarea:focus,
.admin-card input:focus,
.admin-card select:focus,
.admin-card textarea:focus {
  outline: 3px solid rgba(242, 106, 46, 0.18);
  border-color: rgba(242, 106, 46, 0.55);
}

.inline-whatsapp {
  min-height: 48px;
  align-items: center;
}

.form-status {
  border: 1px solid transparent;
}

.contact-sent .sent-status {
  border-color: rgba(21, 92, 56, 0.18);
}

.contact-error .error-status {
  border-color: rgba(139, 45, 32, 0.18);
}

.honor-section {
  padding-top: clamp(74px, 8vw, 108px);
  padding-bottom: clamp(72px, 8vw, 104px);
}

.honor-heading {
  align-items: end;
  gap: 20px;
}

.month-filters {
  justify-content: center;
  gap: 8px;
  margin: 16px auto 24px;
}

.month-filters button {
  min-height: 40px;
  border-radius: var(--radius-sm);
}

.honor-grid {
  grid-template-columns: repeat(auto-fit, minmax(282px, 342px));
  align-items: start;
  gap: 22px;
}

.honor-card {
  border: 1px solid rgba(242, 106, 46, 0.22);
  background: linear-gradient(180deg, #0a232b, #06161c);
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.22);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.honor-card:hover,
.honor-card.is-open {
  transform: translateY(-3px);
  border-color: rgba(242, 106, 46, 0.48);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.28);
}

.honor-avatar {
  aspect-ratio: 4 / 5;
  background: #071b22;
}

.honor-avatar::after {
  background: linear-gradient(180deg, rgba(7, 27, 34, 0) 72%, rgba(7, 27, 34, 0.16));
}

.honor-avatar img {
  object-fit: contain;
  object-position: center center;
  background: #071b22;
}

.honor-rank {
  top: 12px;
  inset-inline-end: 12px;
}

.honor-peek {
  top: auto;
  bottom: calc(100% - min(100%, 4px));
  display: none;
}

.honor-body {
  padding: 17px 18px 9px;
}

.honor-body h3 {
  font-size: clamp(24px, 2vw, 30px);
}

.honor-meta {
  gap: 9px;
  padding: 8px 18px 18px;
}

.honor-meta div {
  min-height: 74px;
  border-color: rgba(255, 255, 255, 0.11);
  background: var(--surface-ink-glass);
  backdrop-filter: blur(3px);
}

.honor-meta span {
  font-size: 13px;
}

.honor-meta strong {
  font-size: clamp(18px, 1.8vw, 23px);
}

.honor-reason-panel {
  background: rgba(7, 27, 34, 0.2);
  backdrop-filter: blur(3px);
}

.honor-reason-panel p {
  font-size: 15px;
  line-height: 1.7;
}

.floating-contact-widget {
  z-index: 80;
}

.floating-contact-toggle {
  min-width: 54px;
  min-height: 54px;
  border-radius: 999px;
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.22);
}

.floating-contact-menu {
  min-width: 190px;
}

.admin-shell {
  width: min(1180px, calc(100% - 28px));
}

.admin-card {
  border: 1px solid rgba(223, 230, 232, 0.92);
}

.admin-message {
  border: 1px solid rgba(19, 133, 127, 0.24);
  box-shadow: 0 12px 26px rgba(19, 133, 127, 0.08);
}

.admin-driver {
  align-items: center;
}

.admin-driver img {
  object-fit: cover;
  background: #eef4f4;
}

.admin-driver-actions button,
.admin-driver-actions a,
.admin-card button {
  border-radius: var(--radius-sm);
}

@media (max-width: 1040px) {
  .site-header {
    align-items: center;
    min-height: auto;
    padding: 10px 14px;
  }

  .brand img {
    width: 92px;
    height: 52px;
  }

  .main-nav {
    order: 3;
    flex-basis: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: thin;
  }

  .main-nav a {
    flex: 0 0 auto;
    min-height: 42px;
  }

  .header-actions {
    margin-inline-start: auto;
  }

  .hero,
  .page-hero {
    padding-top: 152px;
  }

  .contact-section {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  h1 {
    font-size: clamp(42px, 16vw, 66px);
  }

  h2 {
    font-size: clamp(28px, 10vw, 42px);
  }

  .site-header {
    gap: 9px;
  }

  .brand img {
    width: 82px;
    height: 48px;
    padding: 6px;
  }

  .header-actions {
    gap: 6px;
  }

  .language-switch,
  .nav-action {
    min-height: 38px;
    padding: 7px 10px;
    font-size: 13px;
  }

  .hero,
  .page-hero {
    min-height: auto;
    padding: 150px 18px 44px;
  }

  .hero-actions,
  .contact-options,
  .trust-bar,
  .process-steps {
    grid-template-columns: 1fr;
  }

  .button,
  .contact-form button,
  .inline-whatsapp {
    width: 100%;
  }

  .grid-4 {
    grid-template-columns: 1fr;
  }

  .interactive-card {
    min-height: auto;
  }

  .honor-heading {
    align-items: stretch;
  }

  .honor-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .honor-card {
    width: min(100%, 390px);
    margin-inline: auto;
  }

  .honor-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .floating-contact-widget {
    inset: auto 14px 14px auto;
  }

  html[dir="ltr"] .floating-contact-widget {
    inset: auto auto 14px 14px;
  }

  .floating-contact-menu {
    max-width: calc(100vw - 28px);
  }

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

  .admin-form-grid .span-2 {
    grid-column: auto;
  }
}

@media (max-width: 420px) {
  .honor-meta {
    grid-template-columns: 1fr;
  }

  .contact-form,
  .admin-card {
    padding: 18px;
  }
}
