  .page-hero {
    padding: 180px var(--pad-x) 80px;
    background: var(--paper);
    color: var(--ink);
    border-bottom: 1px solid var(--line);
  }

  .ph-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .breadcrumbs {
    display: flex;
    gap: 8px;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    opacity: 0.5;
    margin-bottom: 32px;
  }

  .ph-title {
    font-family: var(--font-sans);
    font-size: clamp(42px, 5.5vw, 68px);
    line-height: 1.1;
    letter-spacing: -0.03em;
    font-weight: 400;
    max-width: 100%;
  }

  .ph-title em {
    font-style: normal;
    color: var(--sage-deep);
  }

  .ph-foot {
    margin-top: 60px;
    padding-top: 32px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 24px;
    align-items: end;
  }

  .ph-foot p {
    max-width: 50ch;
    opacity: 0.8;
  }

  /* Contact main */
  .contact-main {
    background: var(--paper);
    padding: clamp(60px, 10vw, 120px) var(--pad-x);
  }

  .cm-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 60px;
  }

  @media (max-width: 1000px) {
    .cm-inner {
      grid-template-columns: 1fr;
      gap: 32px;
    }
  }

  /* Form */
  .form-wrap {
    background: var(--ink);
    color: var(--paper);
    border-radius: 8px;
    padding: 48px;
  }

  .form-wrap h2 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 48px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin-bottom: 32px;
  }

  .form-wrap h2 em {
    color: var(--paper);
    font-weight: 400;
    font-style: normal;
  }

  .field {
    margin-bottom: 20px;
  }

  .field label {
    display: block;
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    margin-bottom: 8px;
    opacity: 0.7;
  }

  .field input,
  .field select,
  .field textarea {
    width: 100%;
    background: rgba(244, 241, 234, 0.06);
    border: 1px solid rgba(244, 241, 234, 0.18);
    color: var(--paper);
    padding: 14px 16px;
    border-radius: 6px;
    font: inherit;
    transition: all 0.3s;
    font-size: 14px;
  }

  .field input:focus,
  .field select:focus,
  .field textarea:focus {
    outline: none;
    border-color: var(--accent);
    background: rgba(200, 255, 62, 0.08);
  }

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

  .field-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  @media (max-width: 600px) {
    .field-row {
      grid-template-columns: 1fr;
    }
  }

  .field-checkbox {
    margin: 24px 0;
  }

  .field-checkbox label {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    cursor: pointer;
    text-transform: none;
    letter-spacing: 0;
    font-family: var(--font-sans);
    font-size: 14px;
    opacity: 0.85;
  }

  .field-checkbox input[type="checkbox"] {
    width: 20px;
    height: 20px;
    min-width: 20px;
    margin-top: 2px;
    cursor: pointer;
    accent-color: var(--accent);
  }

  .field-checkbox label:hover {
    opacity: 1;
  }

  .submit {
    width: 100%;
    background: var(--sage);
    color: var(--paper);
    padding: 18px;
    border-radius: 6px;
    font-weight: 500;
    font-size: 15px;
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
    margin-top: 8px;
    border: none;
    transition: transform 0.3s var(--ease-out-expo), background 0.3s;
    cursor: pointer;
  }

  .submit:hover {
    transform: translateY(-2px);
    background: var(--ink);
  }

  /* Info side */
  .info-cards-wrapper {
    display: flex;
    flex-direction: column;
    gap: 12px;
  }

  .info-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: auto 1fr auto;
    gap: 12px;
    align-items: center;
    transition: all 0.3s var(--ease-out-expo);
  }

  .info-card:hover {
    background: var(--ink);
    color: var(--paper);
    transform: translateX(4px);
  }

  .info-card .ico {
    width: 36px;
    height: 36px;
    background: var(--accent-soft);
    color: var(--paper);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    flex-shrink: 0;
  }

  .info-card .ic-eye {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.55;
    margin-bottom: 3px;
  }

  .info-card .ic-content {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    letter-spacing: -0.01em;
  }

  .info-card .ic-content small {
    font-family: var(--font-sans);
    font-size: 11px;
    opacity: 0.7;
    font-weight: 400;
    display: block;
    margin-top: 3px;
    letter-spacing: 0;
  }

  .info-card.emails {
    grid-template-columns: auto 1fr;
    padding: 20px 22px;
    align-items: start;
    cursor: default;
  }

  .info-card.emails:hover {
    transform: none;
  }

  .info-card.emails .ico {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

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

  .email-item {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-bottom: 12px;
    border-bottom: 1px solid var(--line);
  }

  .email-item:last-child {
    border-bottom: none;
    padding-bottom: 0;
  }

  .email-item .label {
    font-family: var(--font-mono);
    font-size: 9px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
  }

  .email-item .address {
    font-family: var(--font-sans);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .email-item .address:hover {
    color: var(--sage-deep);
  }

  .info-card.emails:hover .email-item {
    border-color: rgba(244, 241, 234, 0.2);
  }

  .info-card.emails:hover .email-item .address:hover {
    color: var(--accent);
  }

  .info-card .ic-arrow {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--ink);
    color: var(--paper);
    display: flex;
    align-items: center;
    justify-content: center;
    transform: rotate(-45deg);
    transition: transform 0.3s var(--ease-out-expo);
    font-size: 10px;
  }

  .info-card:hover .ic-arrow {
    transform: rotate(0);
    background: var(--accent-soft);
    color: var(--ink);
  }

  .info-card.phone {
    grid-column: 1 / -1;
    padding: 20px 22px;
  }

  .info-card.phone .ico {
    width: 44px;
    height: 44px;
    font-size: 18px;
  }

  .info-card.phone .ic-content {
    font-size: 16px;
  }

  .info-card.phone .ic-arrow {
    width: 28px;
    height: 28px;
  }

  /* Facility & Departments */
  .facility-section {
    background: var(--paper-2, #f3efe7);
    padding: clamp(60px, 8vw, 100px) var(--pad-x);
    border-top: 1px solid var(--line);
  }

  .facility-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
  }

  @media (max-width: 900px) {
    .facility-inner {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  }

  .fac-block h2 {
    font-family: var(--font-sans);
    font-size: clamp(28px, 3.5vw, 42px);
    line-height: 1;
    letter-spacing: -0.02em;
    font-weight: 500;
    margin-bottom: 24px;
  }

  .fac-address {
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 20px;
  }

  .fac-address strong {
    display: block;
    font-weight: 500;
    font-size: 16px;
    margin-bottom: 6px;
  }

  .fac-hours {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px 20px;
    margin: 20px 0;
  }

  .fac-hours .fh-title {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 10px;
  }

  .fac-hours .fh-row {
    display: flex;
    justify-content: space-between;
    padding: 8px 0;
    font-size: 14px;
  }

  .fac-hours .fh-row:first-of-type {
    padding-top: 0;
  }

  .fac-hours .fh-row .days {
    font-weight: 500;
  }

  .fac-hours .fh-row .time {
    opacity: 0.7;
  }

  .fac-hours .fh-row.closed .time {
    color: #c44;
  }

  .fac-directions {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 18px 20px;
    font-size: 14px;
    line-height: 1.6;
    opacity: 0.85;
  }

  .fac-directions strong {
    display: block;
    font-size: 11px;
    font-family: var(--font-mono);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.6;
    margin-bottom: 8px;
  }

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

  .dept-card {
    background: var(--paper);
    border: 1px solid var(--line);
    border-radius: 6px;
    padding: 20px 22px;
  }

  .dept-card .dept-name {
    font-family: var(--font-sans);
    font-size: 17px;
    font-weight: 500;
    letter-spacing: -0.01em;
    margin-bottom: 6px;
  }

  .dept-card .dept-desc {
    font-size: 13px;
    opacity: 0.7;
    line-height: 1.5;
    margin-bottom: 12px;
  }

  .dept-card .dept-contacts {
    display: flex;
    flex-direction: column;
    gap: 6px;
  }

  .dept-card .dept-contacts a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }

  .dept-card .dept-contacts a:hover {
    color: var(--sage-deep);
  }

  .dept-card .dept-contacts .d-label {
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.55;
    min-width: 50px;
  }

  /* Map */
  .map-section {
    background: var(--paper);
    padding: clamp(80px, 12vw, 160px);
  }

  .map-inner {
    max-width: var(--max-w);
    margin: 0 auto;
  }

  .map-card {
    background: var(--ink);
    color: var(--paper);
    border-radius: 8px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: center;
    overflow: hidden;
    position: relative;
  }

  @media (max-width: 900px) {
    .map-card {
      grid-template-columns: 1fr;
    }
  }

  .map-card h3 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 4vw, 56px);
    line-height: 0.95;
    letter-spacing: -0.02em;
    font-weight: 400;
    margin-bottom: 16px;
  }

  .map-card h3 em {
    color: var(--paper);
    font-weight: 400;
  }

  .map-card .ml-list {
    margin-top: 24px;
  }

  .map-card .ml-list li {
    list-style: none;
    padding: 12px 0;
    border-bottom: 1px solid rgba(244, 241, 234, 0.12);
    display: flex;
    justify-content: space-between;
    font-size: 14px;
  }

  .map-card .ml-list li:last-child {
    border: none;
  }

  .map-card .ml-list .em {
    color: var(--accent);
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .map-vis {
    aspect-ratio: 4/3;
    background: var(--ink-2);
    border-radius: 20px;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(244, 241, 234, 0.12);
  }

  .map-vis svg {
    width: 100%;
    height: 100%;
  }

  .pin {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--accent);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(200, 255, 62, 0.6);
    animation: pulse-pin 2s ease-out infinite;
  }

  @keyframes pulse-pin {

    0%,
    100% {
      box-shadow: 0 0 0 0 rgba(200, 255, 62, 0.6);
    }

    50% {
      box-shadow: 0 0 0 16px rgba(200, 255, 62, 0);
    }
  }

  .pin.dxb {
    top: 38%;
    left: 28%;
  }

  .pin.auh {
    top: 60%;
    left: 18%;
    animation-delay: 0.4s;
  }

  .pin.shj {
    top: 28%;
    left: 36%;
    animation-delay: 0.8s;
  }

  .pin.rak {
    top: 14%;
    left: 48%;
    animation-delay: 1.2s;
  }

  .pin-label {
    position: absolute;
    transform: translate(20px, -8px);
    font-family: var(--font-mono);
    font-size: 10px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--paper);
    opacity: 0.7;
    white-space: nowrap;
  }

  /* UAE Map Styles */
  .uae-map .emirate {
    fill: rgb(var(--green) / 0.16);
    stroke: rgb(200 255 62 / 0.6);
    stroke-width: 1.2;
    transition: fill .25s, stroke .25s, filter .25s;
    cursor: pointer;
  }

  .uae-map .emirate.same-day {
    fill: rgb(var(--green) / 0.95);
    stroke: rgb(200 255 62 / 0.9);
    filter: drop-shadow(0 0 14px rgba(200, 255, 62, 0.6));
  }

  .uae-map .emirate.h24 {
    fill: rgb(var(--green) / 0.6);
    stroke: rgb(200 255 62 / 0.85);
  }

  .uae-map .emirate.h48 {
    fill: rgb(var(--green) / 0.3);
    stroke: rgb(200 255 62 / 0.7);
  }

  .uae-map .emirate:hover {
    fill: rgb(var(--green));
    filter: drop-shadow(0 0 18px rgba(200, 255, 62, 0.9));
  }

  .uae-map .city-dot {
    fill: white;
    stroke: rgb(143 163 145);
    stroke-width: 1.6;
  }

  .uae-map .city-dot-glow {
    fill: rgb(var(--green));
    opacity: .35;
  }

  .uae-map .city-label {
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 13px;
    fill: var(--paper);
    paint-order: stroke;
    stroke: rgba(74, 93, 79, 0.95);
    stroke-width: 4;
    stroke-linejoin: round;
  }

  .uae-map .hub-line {
    stroke: rgb(var(--green));
    stroke-width: 1.4;
    fill: none;
    opacity: .55;
    stroke-dasharray: 4 4;
  }

  .uae-map .pill {
    fill: rgba(245, 242, 236, 0.9);
    stroke: rgb(var(--green));
    stroke-width: 1.4;
  }

  .uae-map .pill.same-day {
    fill: rgb(var(--green));
  }

  .uae-map .pill-text {
    font-family: var(--font-mono);
    font-weight: 700;
    font-size: 9.5px;
    letter-spacing: 0.1em;
    fill: rgb(40 60 30);
  }

  .uae-map .pill-text.same-day {
    fill: white;
  }

  .uae-map .truck {
    fill: rgb(var(--green));
    filter: drop-shadow(0 0 6px rgba(200, 255, 62, 0.8));
  }

  /* CTA strip */
  .cta-strip {
    background: var(--accent-soft);
    color: var(--ink);
    padding: clamp(60px, 8vw, 100px) var(--pad-x);
  }

  .cs-inner {
    max-width: var(--max-w);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 40px;
    align-items: center;
  }

  @media (max-width: 800px) {
    .cs-inner {
      grid-template-columns: 1fr;
    }
  }

  .cs-inner h3 {
    font-family: var(--font-sans);
    font-size: clamp(32px, 5vw, 64px);
    line-height: 0.95;
    letter-spacing: -0.03em;
    font-weight: 400;
    color: var(--paper);
  }