.plan-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid var(--line);
}

.plan-grid article {
  display: flex;
  min-height: 370px;
  padding: 32px;
  flex-direction: column;
  border-left: 1px solid var(--line);
}

.plan-grid article:last-child { border-left: 0; }
.plan-grid article > span { color: var(--blue); font-size: 14px; font-weight: 700; }
.plan-grid h3 { margin: 18px 0 4px; font-size: 27px; }
.plan-grid p, .plan-grid li { color: var(--muted); line-height: 1.8; }
.plan-grid ul { margin-bottom: 28px; padding-right: 18px; }
.plan-grid a { margin-top: auto; padding: 12px; border: 1px solid var(--ink); text-align: center; font-weight: 700; }
.plan-grid .featured { color: #fff; background: var(--ink); }
.plan-grid .featured p, .plan-grid .featured li { color: #bdc7d0; }
.plan-grid .featured a { border-color: var(--blue); background: var(--blue); }

.faq-list { border-top: 1px solid var(--line); }
.faq details { padding: 0 6px; border-bottom: 1px solid var(--line); }
.faq summary { padding: 22px 0; cursor: pointer; list-style: none; font-size: 19px; font-weight: 700; }
.faq summary::after { content: "+"; float: left; color: var(--blue); font-size: 24px; }
.faq details[open] summary::after { content: "−"; }
.faq details p { max-width: 850px; margin: 0 0 22px; color: var(--muted); line-height: 1.8; }

@media (max-width: 800px) {
  .plan-grid { grid-template-columns: 1fr; }
  .plan-grid article { border-left: 0; border-bottom: 1px solid var(--line); }
  .plan-grid article:last-child { border-bottom: 0; }
}

/* Professional finish */
:root {
  --navy: #071525;
  --navy-2: #0d2239;
  --blue: #1769ff;
  --blue-dark: #0d4fd1;
  --shadow: 0 22px 60px rgba(7, 21, 37, .12);
}

body { overflow-x: hidden; }
.site-header {
  position: fixed;
  top: 0;
  backdrop-filter: blur(18px);
  background: rgba(7, 21, 37, .88);
  transition: background .2s ease, box-shadow .2s ease;
}
.site-header.scrolled { box-shadow: 0 12px 35px rgba(0,0,0,.18); }
.site-header nav a { position: relative; transition: color .2s ease; }
.site-header nav a:hover { color: #fff; }
.site-header nav a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  width: 0;
  height: 2px;
  background: #78a8ff;
  transition: width .2s ease;
}
.site-header nav a:hover::after { width: 100%; }
.header-action, .primary { transition: transform .2s ease, background .2s ease; }
.header-action:hover, .primary:hover { background: var(--blue-dark); transform: translateY(-2px); }
.ghost { transition: background .2s ease, transform .2s ease; }
.ghost:hover { background: rgba(255,255,255,.1); transform: translateY(-2px); }
.menu-toggle { display: none; border: 0; color: #fff; background: transparent; font-size: 24px; cursor: pointer; }

.hero { min-height: 800px; }
.hero img { transform: scale(1.02); }
.hero-content { padding-top: 80px; }
.availability {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  padding: 7px 12px;
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(7,21,37,.58);
  color: #e9f1ff;
  font-size: 13px;
}
.availability span { width: 8px; height: 8px; border-radius: 50%; background: #55d98a; box-shadow: 0 0 0 5px rgba(85,217,138,.12); }
.hero h1 { letter-spacing: 0; text-wrap: balance; }
.hero-actions a { min-width: 168px; }

.metrics { box-shadow: var(--shadow); }
.promise-strip {
  width: min(1180px, calc(100% - 48px));
  margin: 54px auto 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-block: 1px solid var(--line);
}
.promise-strip div { padding: 24px; border-inline-end: 1px solid var(--line); }
.promise-strip div:last-child { border: 0; }
.promise-strip strong, .promise-strip span { display: block; }
.promise-strip strong { margin-bottom: 7px; font-size: 17px; }
.promise-strip span { color: var(--muted); font-size: 14px; line-height: 1.7; }

.service-grid, .plan-grid, .quote-section form { box-shadow: 0 18px 50px rgba(7,21,37,.07); }
.service-grid article { position: relative; overflow: hidden; transition: background .2s ease; }
.service-grid article::after { content: ""; position: absolute; inset-inline-start: 0; top: 0; width: 4px; height: 0; background: var(--blue); transition: height .25s ease; }
.service-grid article:hover { background: #f9fbff; }
.service-grid article:hover::after { height: 100%; }
.service-price {
  display: block;
  width: fit-content;
  margin: -2px 0 16px;
  padding: 7px 10px;
  color: var(--blue);
  background: rgba(21, 94, 239, .08);
  border-inline-start: 3px solid var(--blue);
  font-size: 15px;
}
.pricing-note { margin: 16px 0 0; color: var(--muted); font-size: 14px; line-height: 1.8; }
.plan-grid article { transition: transform .2s ease, box-shadow .2s ease; }
.plan-grid article:hover { transform: translateY(-5px); box-shadow: 0 18px 45px rgba(7,21,37,.1); }
.coverage { background: var(--navy); }

.starting-price {
  display: inline-block;
  margin-top: 10px;
  color: var(--blue);
  font-size: 1.15rem;
}

footer {
  display: grid;
  grid-template-columns: 1.35fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.footer-brand p { margin: 14px 0 0; }
.footer-contact,
.footer-hours { display: grid; gap: 8px; }
.footer-contact a,
.footer-hours span { color: #c5ced7; }
.footer-contact a:hover { color: #fff; }
.footer-legal {
  grid-column: 1 / -1;
  border-top: 1px solid #ffffff20;
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #9ca8b3;
}
.footer-legal small { font-size: 12px; }

@media (max-width: 800px) {
  footer { grid-template-columns: 1fr 1fr; }
  .footer-brand,
  .footer-legal { grid-column: 1 / -1; }
  .footer-legal { flex-direction: column; }
}

@media (max-width: 480px) {
  footer { grid-template-columns: 1fr; }
  .footer-brand,
  .footer-legal { grid-column: auto; }
}
.city-list span { transition: background .2s ease; }
.city-list span:hover { background: rgba(255,255,255,.06); }
.process li { transition: background .2s ease; }
.process li:hover { background: #f7f9fc; }
input, select, textarea { transition: border-color .2s ease, box-shadow .2s ease; }
input:focus, select:focus, textarea:focus { outline: 0; border-color: var(--blue); box-shadow: 0 0 0 3px rgba(23,105,255,.12); }
.faq details[open] { background: #f8faff; padding-inline: 18px; }

@media (max-width: 800px) {
  .menu-toggle { display: block; margin-inline-start: 0; }
  .language-toggle { margin-inline-start: 0; }
  .header-action { display: inline-flex; min-height: 40px; margin-inline-start: auto; padding: 8px 12px; font-size: 13px; white-space: nowrap; }
  .site-header nav {
    display: none;
    position: absolute;
    top: 66px;
    inset-inline: 16px;
    padding: 18px;
    flex-direction: column;
    gap: 18px;
    background: var(--navy);
    border: 1px solid rgba(255,255,255,.12);
    box-shadow: 0 18px 40px rgba(0,0,0,.25);
  }
  .site-header.menu-open nav { display: flex; }
  .hero { min-height: 720px; }
  .hero-content { padding-top: 84px; }
  .hero h1 { font-size: clamp(42px, 12vw, 58px); }
  .hero-content > p:not(.eyebrow) { font-size: 17px; line-height: 1.75; }
  .promise-strip { grid-template-columns: 1fr 1fr; margin-top: 32px; }
  .promise-strip div:nth-child(2) { border-inline-end: 0; }
  .promise-strip div:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
}

@media (max-width: 480px) {
  .site-header { padding-inline: 16px; gap: 10px; }
  .brand strong { display: none; }
  .brand span { width: 34px; height: 34px; }
  .promise-strip { width: calc(100% - 32px); grid-template-columns: 1fr; }
  .promise-strip div { border-inline-end: 0; border-bottom: 1px solid var(--line); }
  .promise-strip div:nth-child(3) { border-bottom: 1px solid var(--line); }
  .hero-actions a { width: 100%; }
}

.language-toggle {
  min-width: 44px;
  min-height: 40px;
  border: 1px solid #ffffff55;
  color: #fff;
  background: transparent;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
}

.floating-whatsapp {
  position: fixed;
  inset-inline-end: 22px;
  bottom: 22px;
  z-index: 30;
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  padding: 0 20px;
  border: 1px solid rgba(255,255,255,.2);
  background: #0b7a45;
  color: #fff;
  box-shadow: 0 14px 35px rgba(7,21,37,.25);
  font-weight: 700;
  transition: transform .2s ease, background .2s ease;
}
.floating-whatsapp:hover { background: #08693b; transform: translateY(-2px); }

@media (max-width: 480px) {
  body { padding-bottom: 76px; }
  .floating-whatsapp { inset-inline: 16px; bottom: 14px; }
}

.english { font-family: Arial, sans-serif; }
.english .hero-content, .english input, .english select, .english textarea { direction: ltr; }
.english .notice { border-right: 0; border-left: 3px solid var(--blue); }
.english .plan-grid article { border-left: 0; border-right: 1px solid var(--line); }
.english .plan-grid article:last-child { border-right: 0; }
.english .plan-grid ul { padding-right: 0; padding-left: 18px; }
.english .faq summary::after { float: right; }

/* Service center and administration */
.portal-body { min-height: 100vh; background: #eef3f8; color: var(--navy); }
.portal-shell { width: min(1180px, calc(100% - 32px)); margin: 0 auto; padding: 32px 0 64px; }
.portal-shell.narrow { width: min(680px, calc(100% - 32px)); }
.portal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 48px; }
.portal-header a { color: var(--blue); font-weight: 700; }
.portal-login { max-width: 560px; margin: 70px auto; padding: 38px; border: 1px solid var(--line); background: #fff; box-shadow: var(--shadow); }
.portal-login h1, .admin-toolbar h1 { margin: 6px 0 10px; font-size: 34px; }
.portal-login > p { color: var(--muted); }
.portal-login form { display: grid; gap: 18px; margin-top: 28px; }
.portal-login label { display: grid; gap: 8px; font-weight: 700; }
.portal-login input { min-height: 50px; border: 1px solid var(--line); padding: 10px 14px; font: inherit; }
.portal-login button { border: 0; min-height: 50px; font: inherit; font-weight: 700; cursor: pointer; }
.portal-login button:disabled { cursor: wait; opacity: .7; }
#loginStatus, #trackingStatus { min-height: 24px; color: #b42318; }
.admin-toolbar { display: flex; align-items: end; justify-content: space-between; gap: 24px; margin-bottom: 24px; }
.toolbar-actions { display: flex; flex-wrap: wrap; gap: 10px; }
.toolbar-actions input, .toolbar-actions select, .toolbar-actions button { min-height: 44px; margin: 0; padding: 0 14px; border: 1px solid #b9c6d3; background: #fff; font: inherit; cursor: pointer; }
.toolbar-actions input { width: min(290px, 100%); cursor: text; }
.admin-metrics { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; margin-bottom: 22px; }
.admin-metrics div { display: grid; gap: 4px; padding: 20px; border: 1px solid var(--line); background: #fff; }
.admin-metrics strong { font-size: 30px; }.admin-metrics span { color: var(--muted); }
.request-list { display: grid; gap: 16px; }
.request-card { padding: 26px; border: 1px solid var(--line); background: #fff; box-shadow: 0 8px 24px rgba(7,21,37,.06); }
.request-card-head { display: flex; justify-content: space-between; gap: 20px; }
.request-card-head > div { display: grid; gap: 5px; }.request-card-head span { color: var(--muted); font-size: 13px; }
.request-card h2 { margin: 22px 0 6px; }.request-card > p { color: var(--muted); line-height: 1.8; }
.request-card dl { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin: 20px 0; background: var(--line); border: 1px solid var(--line); }
.request-card dl div { padding: 14px; background: #f8fafc; }.request-card dt { color: var(--muted); font-size: 12px; }.request-card dd { margin: 5px 0 0; font-weight: 700; }
.request-contact { display: flex; gap: 8px; margin: -4px 0 16px; }
.request-contact a { padding: 9px 15px; border: 1px solid var(--blue); color: var(--blue); font-size: 14px; font-weight: 700; }
.request-actions { display: grid; grid-template-columns: 180px 1fr auto; gap: 10px; }
.request-actions select, .request-actions textarea { border: 1px solid #b9c6d3; padding: 10px; font: inherit; }
.request-actions textarea { min-height: 48px; resize: vertical; }.request-actions button { border: 0; padding: 0 20px; font: inherit; font-weight: 700; cursor: pointer; }
.status-badge { display: inline-flex; width: fit-content; align-items: center; padding: 7px 11px; border: 1px solid; font-size: 13px; font-weight: 700; }
.status-new { color: #175cd3; background: #eff8ff; }.status-contacted,.status-scheduled { color: #854a0e; background: #fffaeb; }.status-in_progress { color: #5925dc; background: #f4f3ff; }.status-completed { color: #067647; background: #ecfdf3; }.status-cancelled { color: #b42318; background: #fef3f2; }
.tracking-card { margin-top: 28px; padding: 24px; border: 1px solid var(--line); background: #f8fafc; }.tracking-card h2 { direction: ltr; text-align: right; }
.empty-state { padding: 70px 20px; text-align: center; background: #fff; color: var(--muted); border: 1px solid var(--line); }
.form-status a { color: var(--blue); text-decoration: underline; }.form-status strong { display: inline-block; padding: 2px 5px; }
.request-success { display: grid; gap: 10px; padding: 20px; border: 1px solid #86d5ae; background: #ecfdf3; color: #075d3a; }
.request-success > span { font-weight: 700; }
.request-success .ticket-number { width: fit-content; padding: 7px 10px; border: 1px dashed #0b7a45; background: #fff; color: #073b2a; font-size: 22px; letter-spacing: 1px; }
.request-success p { margin: 0; }
.delivery-actions { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 4px; }
.delivery-actions a, .delivery-actions button { min-height: 42px; display: inline-flex; align-items: center; justify-content: center; padding: 8px 14px; border: 1px solid #0b7a45; background: #fff; color: #075d3a; font: inherit; font-weight: 700; text-decoration: none; cursor: pointer; }
.delivery-actions .delivery-whatsapp { background: #0b7a45; color: #fff; }

/* Short, mobile-friendly service request flow. */
.request-wizard { align-content: start; }
.wizard-progress { display: grid; grid-template-columns: repeat(3, 1fr); margin-bottom: 8px; }
.wizard-progress span { position: relative; display: grid; justify-items: center; gap: 7px; color: var(--muted); font-style: normal; font-size: 13px; }
.wizard-progress span:not(:last-child)::after { content: ""; position: absolute; top: 17px; inset-inline-start: calc(50% + 22px); width: calc(100% - 44px); height: 2px; background: var(--line); }
.wizard-progress b { position: relative; z-index: 1; display: grid; place-items: center; width: 36px; height: 36px; border: 2px solid var(--line); background: #fff; border-radius: 50%; }
.wizard-progress em { font-style: normal; font-weight: 700; }
.wizard-progress .active, .wizard-progress .complete { color: var(--blue); }
.wizard-progress .active b, .wizard-progress .complete b { border-color: var(--blue); }
.wizard-progress .complete b { background: var(--blue); color: #fff; }
.wizard-progress .complete::after { background: var(--blue) !important; }
.wizard-step { display: none; grid-column: 1/-1; padding: 0; margin: 0; border: 0; min-width: 0; }
.wizard-step.active { display: block; animation: wizard-in .18s ease-out; }
.wizard-step legend { width: 100%; padding: 9px 0 20px; }
.wizard-step legend strong, .wizard-step legend small { display: block; }
.wizard-step legend strong { font-size: 22px; }
.wizard-step legend small { margin-top: 6px; color: var(--muted); font-weight: 400; line-height: 1.6; }
.step-fields { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.step-fields label { min-width: 0; }
.field-hint { display: block; margin-top: 7px; color: var(--muted); font-weight: 400; }
.wizard-actions { display: flex; gap: 12px; padding-top: 4px; }
.wizard-actions button { min-height: 48px; padding: 11px 24px; border: 1px solid var(--line); font: inherit; font-weight: 700; cursor: pointer; }
.wizard-actions .primary { flex: 1; }
.wizard-back { background: #fff; color: var(--ink); }
.wizard-actions button[hidden] { display: none; }
.step-error { min-height: 20px; margin: -5px 0 0; color: #b42318; font-size: 14px; }
.request-wizard input.invalid, .request-wizard select.invalid, .request-wizard textarea.invalid { border-color: #d92d20; outline: 2px solid #fee4e2; outline-offset: 1px; }
.request-summary { margin-top: 20px; padding: 18px; background: var(--soft); border: 1px solid var(--line); }
.request-summary h3 { margin: 0 0 12px; font-size: 18px; }
.request-summary div { display: flex; justify-content: space-between; gap: 20px; padding: 9px 0; border-top: 1px solid var(--line); }
.request-summary span { color: var(--muted); }
.request-summary strong { text-align: end; }
@keyframes wizard-in { from { opacity: 0; transform: translateY(5px); } to { opacity: 1; transform: translateY(0); } }

@media (max-width: 640px) {
  .step-fields { grid-template-columns: 1fr; }
  .step-fields > * { grid-column: 1; }
  .wizard-step legend strong { font-size: 20px; }
  .wizard-progress em { font-size: 12px; }
  .wizard-actions { flex-wrap: wrap; }
  .wizard-back { min-width: 92px; }
  .request-summary div { align-items: flex-start; }
}

@media (max-width: 760px) {
  .portal-header, .admin-toolbar { align-items: stretch; flex-direction: column; }
  .admin-metrics { grid-template-columns: 1fr 1fr; }
  .request-card dl { grid-template-columns: 1fr 1fr; }
  .request-actions { grid-template-columns: 1fr; }
}

@media (max-width: 480px) {
  .portal-login { margin: 24px auto; padding: 24px; }
  .admin-metrics, .request-card dl { grid-template-columns: 1fr; }
  .request-card { padding: 20px; }
}

@media (max-width: 800px) {
  .language-toggle { margin-inline-start: auto; }
  .english .plan-grid article { border-right: 0; }
}
