:root {
      --navy: #0B1B32;
      --navy-deep: #071220;
      --navy-soft: #12253f;
      --gold: #C69C6D;
      --gold-hover: #d4ae82;
      --white: #ffffff;
      --off: #F7F8FA;
      --muted: #6b7280;
      --line: #e5e7eb;
      --text: #1a2332;
      --header-h: 88px;
    }

    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
    html { scroll-behavior: smooth; }
    body {
      font-family: 'Montserrat', sans-serif;
      color: var(--text);
      background: var(--white);
      line-height: 1.6;
      overflow-x: hidden;
    }
    html[dir="rtl"] body,
    html[dir="rtl"] button,
    html[dir="rtl"] input,
    html[dir="rtl"] select,
    html[dir="rtl"] textarea {
      font-family: 'Almarai', 'Montserrat', sans-serif;
    }
    html[dir="rtl"] .serif,
    html[dir="rtl"] .hero-title {
      font-family: 'Almarai', sans-serif;
      letter-spacing: 0;
    }

    img { max-width: 100%; display: block; }
    a { text-decoration: none; color: inherit; }
    ul { list-style: none; }
    button { font: inherit; cursor: pointer; border: none; background: none; }

    .container {
      width: min(1200px, calc(100% - 40px));
      margin-inline: auto;
    }

    /* ——— HEADER ——— */
    .header {
      position: absolute;
      inset-inline: 0;
      top: 0;
      z-index: 100;
      height: var(--header-h);
    }
    .header-inner {
      height: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
    }
    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      flex-shrink: 0;
    }
    .logo-icon {
      width: 46px;
      height: 46px;
      border: 1.5px solid var(--gold);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--gold);
    }
    .logo-icon svg { width: 24px; height: 24px; }
    .logo-text { display: flex; flex-direction: column; gap: 2px; }
    .logo-ar {
      color: var(--gold);
      font-size: 15px;
      font-weight: 700;
      line-height: 1.2;
      font-family: 'Almarai', sans-serif;
    }
    .logo-en {
      color: var(--white);
      font-size: 10px;
      font-weight: 600;
      letter-spacing: 0.06em;
      text-transform: uppercase;
      opacity: 0.95;
    }

    .nav {
      display: flex;
      align-items: center;
      gap: 28px;
    }
    .nav a {
      color: var(--white);
      font-size: 13px;
      font-weight: 500;
      letter-spacing: 0.02em;
      position: relative;
      padding-block: 6px;
      transition: color .2s;
      white-space: nowrap;
    }
    .nav a:hover,
    .nav a.active { color: var(--gold); }
    .nav a.active::after {
      content: '';
      position: absolute;
      inset-inline: 0;
      bottom: 0;
      height: 2px;
      background: var(--gold);
    }
    .nav .has-drop { display: inline-flex; align-items: center; gap: 5px; }
    .nav .has-drop svg { width: 10px; height: 10px; opacity: .8; }

    .lang-switch {
      display: flex;
      border: 1px solid rgba(255,255,255,.45);
      overflow: hidden;
      flex-shrink: 0;
      position: relative;
      z-index: 120;
      pointer-events: auto;
    }
    .lang-switch a,
    .lang-switch button {
      padding: 7px 14px;
      font-size: 12px;
      font-weight: 600;
      color: rgba(255,255,255,.85);
      transition: .2s;
      letter-spacing: .02em;
      cursor: pointer;
      pointer-events: auto;
      position: relative;
      z-index: 121;
    }
    .lang-switch a.active,
    .lang-switch button.active {
      background: rgba(198,156,109,.25);
      color: var(--gold);
      border: none;
      box-shadow: inset 0 0 0 1px var(--gold);
    }
    .lang-switch a:first-child,
    .lang-switch button:first-child { border-inline-end: 1px solid rgba(255,255,255,.35); }
    .lang-switch button.active + button,
    .lang-switch button:first-child.active,
    .lang-switch a.active + a,
    .lang-switch a:first-child.active { border-inline-end-color: transparent; }

    .menu-toggle {
      display: none;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255,255,255,.4);
      color: var(--white);
      place-items: center;
    }
    .menu-toggle svg { width: 22px; height: 22px; }

    /* ——— HERO ——— */
    .hero {
      position: relative;
      min-height: 92vh;
      display: flex;
      align-items: center;
      padding-top: calc(var(--header-h) + 56px);
      padding-bottom: 140px;
      background:
        linear-gradient(115deg, rgba(7,18,32,.88) 0%, rgba(11,27,50,.62) 42%, rgba(11,27,50,.28) 100%),
        url('/assets/images/hero-kuwait-towers.jpg') center/cover no-repeat;
      color: var(--white);
    }
    .hero > .container {
      width: min(1120px, calc(100% - 80px));
    }
    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(260px, 320px);
      gap: clamp(48px, 8vw, 100px);
      align-items: center;
      width: 100%;
    }
    .hero-content {
      padding-inline: clamp(8px, 2vw, 28px);
      max-width: 620px;
      position: relative;
    }
    .hero-content::before {
      content: '';
      position: absolute;
      inset-inline-start: 0;
      top: 6px;
      bottom: 6px;
      width: 3px;
      background: linear-gradient(180deg, var(--gold), transparent);
      border-radius: 2px;
      opacity: .9;
    }
    html[dir="ltr"] .hero-content { padding-inline-start: 28px; }
    html[dir="rtl"] .hero-content { padding-inline-end: 28px; }

    .hero-eyebrow {
      display: inline-block;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.22em;
      text-transform: uppercase;
      color: var(--gold);
      margin-bottom: 18px;
      opacity: .95;
    }
    .hero-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(2.35rem, 4.2vw, 3.55rem);
      font-weight: 700;
      line-height: 1.18;
      letter-spacing: 0.04em;
      text-transform: uppercase;
      margin-bottom: 22px;
      max-width: 16ch;
    }
    .hero-title .gold { color: var(--gold); }
    .hero-sub {
      font-size: 15px;
      font-weight: 400;
      color: rgba(255,255,255,.82);
      max-width: 38ch;
      margin-bottom: 36px;
      line-height: 1.75;
    }
    .hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 14px 22px;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      transition: .25s ease;
    }
    .btn svg {
      width: 14px;
      height: 14px;
      transition: transform .25s;
    }
    html[dir="rtl"] .btn svg { transform: scaleX(-1); }
    .btn-gold {
      background: var(--gold);
      color: var(--white);
    }
    .btn-gold:hover { background: var(--gold-hover); }
    .btn-outline {
      background: transparent;
      color: var(--white);
      border: 1.5px solid rgba(255,255,255,.85);
    }
    .btn-outline:hover { background: rgba(255,255,255,.1); }
    .btn-navy {
      background: var(--navy);
      color: var(--white);
    }
    .btn-navy:hover { background: var(--navy-soft); }

    .hero-card {
      justify-self: end;
      width: 100%;
      max-width: 300px;
      background: rgba(11, 27, 50, 0.55);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
      border: 1px solid rgba(198,156,109,.28);
      padding: 32px 28px;
      margin-inline: 8px;
      box-shadow: 0 24px 60px rgba(0,0,0,.25);
    }
    .hero-card .scale {
      color: var(--gold);
      margin-bottom: 16px;
    }
    .hero-card .scale svg { width: 34px; height: 34px; }
    .hero-card p {
      font-size: 14px;
      line-height: 1.7;
      color: rgba(255,255,255,.88);
    }
    .hero-card strong {
      display: block;
      color: var(--gold);
      font-weight: 600;
      margin-bottom: 8px;
      letter-spacing: .03em;
      font-size: 15px;
    }

    /* ——— FEATURES BAR ——— */
    .features-bar {
      position: relative;
      z-index: 5;
      margin-top: -56px;
      margin-bottom: 80px;
    }
    .features-inner {
      background: var(--white);
      box-shadow: 0 18px 50px rgba(11,27,50,.12);
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      padding: 28px 12px;
    }
    .feature-item {
      display: flex;
      align-items: center;
      gap: 14px;
      padding: 12px 22px;
      border-inline-end: 1px solid var(--line);
    }
    .feature-item:last-child { border-inline-end: none; }
    .feature-item svg {
      width: 34px;
      height: 34px;
      color: #8a93a3;
      flex-shrink: 0;
    }
    .feature-item h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }
    .feature-item p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.4;
    }

    /* ——— SECTION HEADS ——— */
    .section { padding: 80px 0; }
    .section-head {
      text-align: center;
      margin-bottom: 48px;
    }
    .eyebrow {
      display: block;
      color: var(--gold);
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      margin-bottom: 10px;
    }
    .section-title {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.9rem, 3vw, 2.6rem);
      font-weight: 700;
      color: var(--navy);
      line-height: 1.2;
    }
    .section-title::after {
      content: '';
      display: block;
      width: 48px;
      height: 3px;
      background: var(--gold);
      margin: 14px auto 0;
    }
    .section-title.light { color: var(--white); }
    .section-title.light::after { background: var(--gold); }

    /* ——— SERVICES ——— */
    .services { background: transparent; }
    .services-shell {
      display: grid;
      grid-template-columns: 280px 1fr;
      gap: 24px;
      align-items: start;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 20px 50px rgba(11,27,50,.06);
      overflow: hidden;
      min-height: 640px;
    }
    .svc-nav {
      background: var(--navy);
      padding: 18px 0;
      max-height: 720px;
      overflow-y: auto;
    }
    .svc-nav-btn {
      width: 100%;
      text-align: start;
      padding: 13px 22px;
      color: rgba(255,255,255,.72);
      font-size: 13px;
      font-weight: 600;
      line-height: 1.35;
      border-inline-start: 3px solid transparent;
      transition: .2s;
    }
    .svc-nav-btn:hover { color: var(--white); background: rgba(255,255,255,.04); }
    .svc-nav-btn.active {
      color: var(--gold);
      background: rgba(198,156,109,.12);
      border-inline-start-color: var(--gold);
    }
    .svc-panel { padding: 0; display: flex; flex-direction: column; min-height: 640px; }
    .svc-hero {
      position: relative;
      height: 220px;
      overflow: hidden;
    }
    .svc-hero img {
      width: 100%;
      height: 100%;
      object-fit: cover;
      transform: scale(1.02);
    }
    .svc-hero::after {
      content: '';
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(7,18,32,.15), rgba(7,18,32,.78));
    }
    .svc-hero-text {
      position: absolute;
      inset-inline: 28px;
      bottom: 22px;
      z-index: 1;
      color: var(--white);
    }
    .svc-hero-text .tag {
      display: inline-block;
      font-size: 11px;
      letter-spacing: .16em;
      text-transform: uppercase;
      color: var(--gold);
      font-weight: 700;
      margin-bottom: 8px;
    }
    .svc-hero-text h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: clamp(1.5rem, 2.4vw, 2rem);
      font-weight: 700;
      margin-bottom: 8px;
      line-height: 1.2;
    }
    html[dir="rtl"] .svc-hero-text h3 { font-family: 'Almarai', sans-serif; }
    .svc-hero-text p {
      font-size: 13px;
      color: rgba(255,255,255,.85);
      max-width: 62ch;
      line-height: 1.6;
    }
    .svc-items {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 14px;
      padding: 22px 24px 28px;
      flex: 1;
      background: var(--white);
    }
    .svc-item {
      border: 1px solid var(--line);
      padding: 16px 16px 14px;
      background: #fff;
      transition: .2s;
    }
    .svc-item:hover {
      border-color: rgba(198,156,109,.55);
      box-shadow: 0 10px 24px rgba(11,27,50,.06);
    }
    .svc-item h4 {
      font-size: 13px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 6px;
      display: flex;
      align-items: center;
      gap: 8px;
    }
    .svc-item h4::before {
      content: '';
      width: 7px;
      height: 7px;
      background: var(--gold);
      flex-shrink: 0;
    }
    .svc-item p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.55;
      padding-inline-start: 15px;
    }
    .center { text-align: center; }

    .all-services-head {
      text-align: center;
      margin: 56px 0 28px;
    }
    .all-services-head h3 {
      font-family: 'Cormorant Garamond', serif;
      font-size: 1.7rem;
      color: var(--navy);
      margin-bottom: 8px;
    }
    html[dir="rtl"] .all-services-head h3 { font-family: 'Almarai', sans-serif; }
    .all-services-head p {
      font-size: 13px;
      color: var(--muted);
    }
    .all-services-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
    }
    .all-svc-card {
      display: block;
      background: var(--white);
      border: 1px solid var(--line);
      padding: 20px 18px;
      transition: .2s;
    }
    .all-svc-card:hover {
      border-color: var(--gold);
      box-shadow: 0 12px 28px rgba(11,27,50,.08);
      transform: translateY(-2px);
    }
    .all-svc-card h3 {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 8px;
    }
    .all-svc-card p {
      font-size: 12px;
      color: var(--muted);
      line-height: 1.5;
      margin-bottom: 12px;
    }
    .all-svc-link {
      font-size: 11px;
      font-weight: 700;
      color: var(--gold);
      letter-spacing: .04em;
      text-transform: uppercase;
    }
    @media (max-width: 900px) {
      .all-services-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 560px) {
      .all-services-grid { grid-template-columns: 1fr; }
    }

    /* ——— COVERAGE ——— */
    .coverage { background: var(--white); padding: 80px 0; }
    .coverage-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }
    .cov-card {
      border: 1px solid var(--line);
      background: var(--off);
      padding: 20px 18px 16px;
    }
    .cov-card h3 {
      font-size: 15px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 12px;
      padding-bottom: 10px;
      border-bottom: 2px solid var(--gold);
    }
    .cov-areas {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
    }
    .cov-areas a {
      font-size: 12px;
      font-weight: 600;
      color: var(--navy);
      background: #fff;
      border: 1px solid var(--line);
      padding: 6px 10px;
      transition: .2s;
    }
    .cov-areas a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }

    @media (max-width: 980px) {
      .services-shell { grid-template-columns: 1fr; min-height: 0; }
      .svc-nav {
        display: flex;
        gap: 0;
        max-height: none;
        overflow-x: auto;
        padding: 0;
        scrollbar-width: thin;
      }
      .svc-nav-btn {
        flex: 0 0 auto;
        white-space: nowrap;
        border-inline-start: none;
        border-bottom: 3px solid transparent;
        padding: 14px 16px;
      }
      .svc-nav-btn.active { border-bottom-color: var(--gold); }
      .svc-panel { min-height: 0; }
      .svc-items { grid-template-columns: 1fr; }
    }

    /* ——— WHY ——— */
    .why {
      background:
        linear-gradient(180deg, rgba(11,27,50,.96), rgba(7,18,32,.98)),
        url('/assets/images/why-kuwait-skyline.jpg') center bottom / cover no-repeat;
      color: var(--white);
      padding: 90px 0;
      position: relative;
    }
    .why-grid {
      display: grid;
      grid-template-columns: repeat(6, 1fr);
      gap: 24px;
    }
    .why-item { text-align: center; padding: 8px 6px; }
    .why-item .icon {
      color: var(--gold);
      margin-bottom: 16px;
      display: grid;
      place-items: center;
    }
    .why-item .icon svg { width: 34px; height: 34px; }
    .why-item h3 {
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 8px;
    }
    .why-item p {
      font-size: 12px;
      color: rgba(255,255,255,.7);
      line-height: 1.55;
    }

    /* ——— CONSULT ——— */
    .consult {
      padding: 90px 0;
      background: var(--white);
    }
    .consult-grid {
      display: grid;
      grid-template-columns: 1fr 1fr 0.95fr;
      gap: 28px;
      align-items: stretch;
    }
    .consult-image {
      min-height: 420px;
      background:
        linear-gradient(180deg, transparent 40%, rgba(11,27,50,.35)),
        url('/assets/images/consult-marina-sharq.jpg') center/cover no-repeat;
    }
    .consult-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      padding: 20px 8px;
    }
    .consult-info .section-title {
      text-align: start;
      font-size: 2.1rem;
      margin-bottom: 28px;
    }
    .consult-info .section-title::after {
      margin-inline: 0;
    }
    .consult-points { display: flex; flex-direction: column; gap: 18px; }
    .consult-point {
      display: flex;
      align-items: flex-start;
      gap: 14px;
    }
    .consult-point .dot {
      width: 40px;
      height: 40px;
      border: 1px solid var(--line);
      display: grid;
      place-items: center;
      color: var(--gold);
      flex-shrink: 0;
    }
    .consult-point .dot svg { width: 18px; height: 18px; }
    .consult-point h4 {
      font-size: 14px;
      font-weight: 700;
      color: var(--navy);
      margin-bottom: 2px;
    }
    .consult-point p {
      font-size: 12px;
      color: var(--muted);
    }

    .appoint-card {
      background: var(--navy);
      color: var(--white);
      padding: 42px 32px;
      display: flex;
      flex-direction: column;
      align-items: center;
      text-align: center;
      justify-content: center;
      gap: 14px;
    }
    .appoint-card .cal {
      color: var(--gold);
      margin-bottom: 4px;
    }
    .appoint-card .cal svg { width: 42px; height: 42px; }
    .appoint-card h3 {
      font-size: 20px;
      font-weight: 700;
      font-family: 'Cormorant Garamond', serif;
    }
    .appoint-card .phone {
      color: var(--gold);
      font-size: clamp(1.5rem, 2.4vw, 1.9rem);
      font-weight: 700;
      letter-spacing: 0.04em;
      direction: ltr;
      unicode-bidi: isolate;
      margin: 8px 0 18px;
    }
    .appoint-card .btn-gold {
      width: 100%;
      justify-content: center;
      padding: 16px 22px;
      color: var(--navy);
    }

    /* ——— FOOTER ——— */
    .footer {
      background: var(--navy);
      color: rgba(255,255,255,.82);
      padding-top: 70px;
    }
    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1.2fr 1fr;
      gap: 36px;
      padding-bottom: 50px;
    }
    .footer h4 {
      color: var(--white);
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 18px;
      letter-spacing: .04em;
    }
    .footer h4::after {
      content: '';
      display: block;
      width: 28px;
      height: 2px;
      background: var(--gold);
      margin-top: 8px;
    }
    .footer-brand .logo { margin-bottom: 16px; }
    .footer-brand p {
      font-size: 13px;
      line-height: 1.7;
      margin-bottom: 20px;
      max-width: 28ch;
    }
    .socials { display: flex; gap: 10px; }
    .socials a {
      width: 36px;
      height: 36px;
      border: 1px solid rgba(255,255,255,.35);
      border-radius: 50%;
      display: grid;
      place-items: center;
      color: var(--white);
      transition: .2s;
    }
    .socials a:hover {
      border-color: var(--gold);
      color: var(--gold);
    }
    .socials svg { width: 15px; height: 15px; }

    .footer-links li { margin-bottom: 10px; }
    .footer-links a {
      font-size: 13px;
      transition: color .2s;
    }
    .footer-links a:hover { color: var(--gold); }

    .contact-list li {
      display: flex;
      gap: 10px;
      align-items: flex-start;
      font-size: 13px;
      margin-bottom: 12px;
    }
    .contact-list svg {
      width: 15px;
      height: 15px;
      color: var(--gold);
      flex-shrink: 0;
      margin-top: 3px;
    }
    .hours li {
      display: flex;
      justify-content: space-between;
      gap: 12px;
      font-size: 13px;
      margin-bottom: 10px;
      padding-bottom: 8px;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .hours .closed { color: #f07167; }

    .footer-bottom {
      border-top: 1px solid rgba(255,255,255,.1);
      padding: 18px 0;
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 12px;
      color: rgba(255,255,255,.55);
    }
    .footer-credit {
      color: rgba(255,255,255,.7);
      transition: color .2s;
    }
    .footer-credit:hover { color: var(--gold); }

    /* ——— MOBILE NAV ——— */
    .mobile-nav {
      display: none;
      position: fixed;
      inset: 0;
      background: rgba(7,18,32,.97);
      z-index: 200;
      padding: 100px 28px 40px;
      flex-direction: column;
      gap: 18px;
    }
    .mobile-nav.open { display: flex; }
    .mobile-nav a {
      color: var(--white);
      font-size: 18px;
      font-weight: 600;
      padding: 10px 0;
      border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .mobile-close {
      position: absolute;
      top: 24px;
      inset-inline-end: 24px;
      color: var(--white);
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255,255,255,.3);
    }

    /* ——— RESPONSIVE ——— */
    @media (max-width: 1100px) {
      .nav { display: none; }
      .menu-toggle { display: grid; }
      .why-grid { grid-template-columns: repeat(3, 1fr); gap: 32px 16px; }
      .coverage-grid { grid-template-columns: 1fr 1fr; }
      .consult-grid { grid-template-columns: 1fr 1fr; }
      .consult-image { grid-column: 1 / -1; min-height: 280px; }
      .footer-grid { grid-template-columns: 1fr 1fr 1fr; }
    }
    @media (max-width: 768px) {
      .hero {
        min-height: auto;
        padding-bottom: 100px;
      }
      .hero > .container {
        width: min(1120px, calc(100% - 40px));
      }
      .hero-grid {
        grid-template-columns: 1fr;
        gap: 36px;
      }
      .hero-content {
        max-width: none;
        padding-inline: 18px !important;
      }
      .hero-card {
        justify-self: stretch;
        max-width: none;
        margin-inline: 0;
      }
      .hero-title { max-width: 18ch; }
      .features-inner { grid-template-columns: 1fr 1fr; }
      .feature-item {
        border-inline-end: none;
        border-bottom: 1px solid var(--line);
      }
      .why-grid { grid-template-columns: 1fr 1fr; }
      .consult-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr 1fr; }
    }
    @media (max-width: 520px) {
      .features-inner { grid-template-columns: 1fr; }
      .why-grid { grid-template-columns: 1fr; }
      .footer-grid { grid-template-columns: 1fr; }
      .coverage-grid { grid-template-columns: 1fr; }
      .lang-switch button { padding: 6px 10px; }
      .logo-en { font-size: 9px; }
    }

/* PHP pages extras */
.header-solid {
  position: relative;
  background: var(--navy);
}
.lang-switch a {
  display: inline-block;
  padding: 7px 14px;
  font-size: 12px;
  font-weight: 600;
  color: rgba(255,255,255,.85);
  transition: .2s;
}
.lang-switch a.active {
  background: rgba(198,156,109,.25);
  color: var(--gold);
  box-shadow: inset 0 0 0 1px var(--gold);
}
.lang-switch a:first-child { border-inline-end: 1px solid rgba(255,255,255,.35); }
.mobile-lang {
  display: flex;
  margin-top: 28px;
  border: 1px solid rgba(255,255,255,.25);
}
.mobile-lang a {
  flex: 1;
  text-align: center;
  padding: 12px;
  color: rgba(255,255,255,.8);
  font-weight: 700;
}
.mobile-lang a.active {
  color: var(--gold);
  background: rgba(255,255,255,.08);
}

.page-hero { padding: 40px 0 28px; }
.page-hero .tag {
  display: inline-block;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.page-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.7rem, 3.2vw, 2.5rem);
  color: var(--navy);
  line-height: 1.2;
  margin-bottom: 12px;
}
html[dir=rtl] .page-hero h1 { font-family: 'Almarai', sans-serif; }
.page-hero .lead { font-size: 15px; color: #334155; max-width: 72ch; margin-bottom: 12px; }
.page-hero .desc { font-size: 14px; color: var(--muted); max-width: 72ch; margin-bottom: 22px; }
.crumbs {
  font-size: 12px;
  color: var(--muted);
  padding: 110px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  align-items: center;
}
.header-solid + main .crumbs,
.page-main .crumbs { padding-top: 24px; }
.crumbs a { color: var(--navy); }
.crumbs a:hover { color: var(--gold); }
.loc-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-bottom: 28px;
}
.loc-grid a {
  display: block;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--off);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: .2s;
}
.loc-grid a:hover { border-color: var(--gold); color: var(--gold); background: #fff; }
.page-section { padding: 10px 0 36px; }
.page-section h2 { font-size: 18px; color: var(--navy); margin-bottom: 6px; }
.page-section .hint { font-size: 12px; color: var(--muted); margin-bottom: 16px; }
.page-section h3.gov-sub {
  font-size: 14px;
  margin: 18px 0 10px;
  color: var(--navy);
}
.side-box {
  background: var(--navy);
  color: #fff;
  padding: 24px;
  margin: 12px 0 40px;
}
.side-box h3 { color: var(--gold); margin-bottom: 8px; font-size: 16px; }
.side-box p { font-size: 13px; color: rgba(255,255,255,.8); margin-bottom: 14px; }
.side-box .phone {
  color: var(--gold);
  font-size: 1.3rem;
  font-weight: 700;
  direction: ltr;
  unicode-bidi: isolate;
  display: inline-block;
  margin-bottom: 12px;
}
.svc-link-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.svc-link-grid a {
  display: block;
  padding: 14px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.svc-link-grid a span {
  display: block;
  font-size: 11px;
  font-weight: 400;
  color: var(--muted);
  margin-top: 4px;
}
.svc-link-grid a:hover,
.svc-link-grid a.active {
  border-color: var(--gold);
  color: var(--gold);
}
.page-hero-modern { padding-bottom: 20px; }
.page-hero-modern .desc { max-width: 52ch; }
.page-visual {
  height: 280px;
  background-size: cover;
  background-position: center;
  margin-top: 0;
}
.header-solid ~ .page-main .page-visual,
.page-main > .page-visual {
  margin-top: -0px;
}
.page-content-wrap {
  margin-top: -72px;
  position: relative;
  z-index: 2;
  background: #fff;
  padding: 8px 28px 48px;
  box-shadow: 0 -12px 40px rgba(11,27,50,.08);
}
.page-content-wrap .crumbs { padding-top: 18px; }

/* SEO article + FAQ */
.seo-article {
  padding: 8px 0 12px;
  max-width: 72ch;
  color: var(--ink, #1a2433);
  line-height: 1.75;
}
.seo-article .seo-h1 {
  font-family: var(--font-display, Georgia, "Times New Roman", serif);
  font-size: clamp(1.55rem, 2.4vw, 2.05rem);
  line-height: 1.25;
  color: var(--navy);
  margin: 10px 0 14px;
  font-weight: 700;
}
.seo-intro {
  font-size: 1.02rem;
  color: var(--muted);
  margin: 0 0 22px;
}
.seo-section {
  margin: 0 0 26px;
}
.seo-section h2 {
  font-size: 1.28rem;
  color: var(--navy);
  margin: 0 0 12px;
  font-weight: 700;
}
.seo-section h3 {
  font-size: 1.08rem;
  color: var(--navy);
  margin: 18px 0 8px;
  font-weight: 700;
}
.seo-section h5 {
  font-size: 0.95rem;
  color: var(--gold-dark, #9a7348);
  margin: 16px 0 6px;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}
.seo-section p,
.seo-faq p {
  margin: 0 0 12px;
  font-size: 0.98rem;
}
.seo-faq {
  margin: 28px 0 8px;
  padding-top: 8px;
  border-top: 1px solid var(--line);
  max-width: 72ch;
}
.seo-faq > h2 {
  font-size: 1.28rem;
  color: var(--navy);
  margin: 0 0 14px;
}
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.faq-item {
  border: 1px solid var(--line);
  background: var(--off, #f7f5f1);
  padding: 0;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 14px 16px;
  font-weight: 700;
  color: var(--navy);
  font-size: 0.95rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  float: inline-end;
  color: var(--gold);
  font-weight: 700;
}
.faq-item[open] summary::after { content: "–"; }
.faq-item p {
  padding: 0 16px 14px;
  margin: 0;
  color: var(--muted);
}
.all-svc-card {
  position: relative;
  overflow: hidden;
}
.all-svc-card .thumb {
  height: 120px;
  background-size: cover;
  background-position: center;
  margin: -20px -18px 14px;
}
.gov-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
.gov-card {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 22px 20px;
  background: var(--off);
  border: 1px solid var(--line);
  transition: .2s;
}
.gov-card strong {
  font-size: 15px;
  color: var(--navy);
}
.gov-card span {
  font-size: 12px;
  color: var(--muted);
}
.gov-card:hover {
  border-color: var(--gold);
  background: #fff;
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11,27,50,.08);
}
.area-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.area-chips a {
  padding: 10px 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: .2s;
}
.area-chips a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.related-grid a {
  padding: 14px 16px;
  border: 1px solid var(--line);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  transition: .2s;
}
.related-grid a:hover {
  border-color: var(--gold);
  color: var(--gold);
}
.cta-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
  background: var(--navy);
  color: #fff;
  padding: 28px 26px;
  margin: 12px 0 36px;
}
.cta-strip h3 {
  color: var(--gold);
  font-size: 18px;
  margin-bottom: 6px;
}
.cta-strip p {
  font-size: 13px;
  color: rgba(255,255,255,.75);
  margin: 0;
}
.content-block {
  max-width: 68ch;
  font-size: 15px;
  color: #334155;
  line-height: 1.75;
}
.content-block p { margin-bottom: 12px; }
.home-gov-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}
@media (max-width: 900px) {
  .gov-cards, .related-grid, .home-gov-row { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .gov-cards, .related-grid, .home-gov-row { grid-template-columns: 1fr; }
}

.cat-block > h3 {
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 12px;
  padding-bottom: 8px;
  border-bottom: 2px solid var(--gold);
}
@media (max-width: 900px) {
  .loc-grid { grid-template-columns: repeat(2, 1fr); }
  .svc-link-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .loc-grid, .svc-link-grid { grid-template-columns: 1fr; }
}

/* ——— Services page modern ——— */
.services-page { padding-bottom: 48px; }
.services-hero {
  position: relative;
  min-height: 340px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  margin-bottom: 8px;
}
.services-hero-media {
  position: absolute;
  inset: -8%;
  background-size: cover;
  background-position: center 35%;
  transform: scale(1.18);
  filter: saturate(0.92) contrast(1.05);
}
.services-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(115deg, rgba(7,18,32,.88) 0%, rgba(11,27,50,.55) 48%, rgba(11,27,50,.35) 100%),
    linear-gradient(0deg, rgba(7,18,32,.55), transparent 55%);
}
.services-hero-inner {
  position: relative;
  z-index: 2;
  padding: 48px 0 42px;
  color: #fff;
  max-width: 720px;
}
.services-hero .crumbs-light,
.services-hero .crumbs-light a { color: rgba(255,255,255,.72); }
.services-hero .crumbs-light span { color: rgba(255,255,255,.45); }
.services-hero .tag {
  display: inline-block;
  margin-top: 18px;
  color: var(--gold);
  background: transparent;
  border: 0;
  padding: 0;
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.services-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  line-height: 1.15;
  margin: 10px 0 14px;
  color: #fff;
  max-width: 14ch;
}
html[dir=rtl] .services-hero h1 { font-family: 'Almarai', sans-serif; max-width: 18ch; }
.services-hero .desc {
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.7;
  max-width: 48ch;
  margin: 0;
}
.services-body { padding-top: 28px; padding-bottom: 20px; }
.services-cat { margin-bottom: 36px; }
.services-cat-head {
  display: flex;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}
.services-cat-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.55rem;
  color: var(--navy);
  margin: 0;
  position: relative;
}
.services-cat-head h2::after {
  content: '';
  display: block;
  width: 42px;
  height: 2px;
  background: var(--gold);
  margin-top: 8px;
}
html[dir=rtl] .services-cat-head h2 { font-family: 'Almarai', sans-serif; }

.services-grid-modern {
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.section.services {
  background:
    linear-gradient(180deg, #f6f4f0 0%, #fff 28%, #fff 100%);
  padding-top: 88px;
  padding-bottom: 88px;
}
.section.services .section-head {
  margin-bottom: 40px;
}
.svc-card-modern {
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid rgba(11,27,50,.08);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc-card-modern:hover {
  transform: translateY(-5px);
  border-color: rgba(198,156,109,.5);
  box-shadow: 0 22px 48px rgba(11,27,50,.12);
}
.svc-card-media {
  position: relative;
  height: 248px;
  overflow: hidden;
  background: #0b1b32;
}
/* Distant framing: show more of the photo (less crop) */
.svc-card-zoom {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  transform: scale(1.04);
  transform-origin: center center;
  transition: transform .75s cubic-bezier(.22,1,.36,1), filter .4s ease;
  filter: saturate(0.96) brightness(0.97);
}
.svc-card-modern:hover .svc-card-zoom {
  transform: scale(1.1);
  filter: saturate(1.04) brightness(1.02);
}
.svc-card-media::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7,18,32,.08) 0%, transparent 42%, rgba(7,18,32,.28) 100%);
  pointer-events: none;
}
.svc-card-body {
  padding: 20px 20px 22px;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 8px;
  border-top: 1px solid rgba(11,27,50,.04);
}
.svc-card-body h3 {
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
  margin: 0;
  line-height: 1.3;
}
.svc-card-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.55;
  margin: 0 0 auto;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.svc-card-body .all-svc-link {
  margin-top: 12px;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
@media (max-width: 980px) {
  .services-grid-modern { grid-template-columns: 1fr 1fr; }
  .svc-card-media { height: 210px; }
  .services-hero { min-height: 300px; }
}
@media (max-width: 560px) {
  .services-grid-modern { grid-template-columns: 1fr; }
  .svc-card-media { height: 240px; }
  .services-hero-inner { padding: 36px 0 32px; }
}

/* Contact form — modern aesthetic */
.contact-page-wrap { padding-bottom: 56px; }
.contact-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.contact-hero-media {
  position: absolute;
  inset: -10%;
  background-size: cover;
  background-position: center 40%;
  transform: scale(1.2);
  filter: saturate(0.9) contrast(1.05);
}
.contact-hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(118deg, rgba(7,18,32,.9) 0%, rgba(11,27,50,.62) 55%, rgba(11,27,50,.4) 100%),
    linear-gradient(0deg, rgba(7,18,32,.5), transparent 50%);
}
.contact-hero-inner {
  position: relative;
  z-index: 2;
  padding: 44px 0 38px;
  color: #fff;
  max-width: 640px;
}
.contact-hero .crumbs-light,
.contact-hero .crumbs-light a { color: rgba(255,255,255,.72); }
.contact-hero .crumbs-light span { color: rgba(255,255,255,.45); }
.contact-hero .tag {
  display: inline-block;
  margin-top: 16px;
  color: var(--gold);
  letter-spacing: 0.2em;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
}
.contact-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.1rem, 3.8vw, 3rem);
  line-height: 1.15;
  margin: 10px 0 12px;
  color: #fff;
}
html[dir=rtl] .contact-hero h1 { font-family: 'Almarai', sans-serif; }
.contact-hero .desc {
  margin: 0;
  color: rgba(255,255,255,.78);
  font-size: 15px;
  line-height: 1.65;
  max-width: 42ch;
}

.contact-body {
  margin-top: -48px;
  position: relative;
  z-index: 3;
}
.contact-layout {
  display: grid;
  grid-template-columns: minmax(260px, 340px) 1fr;
  gap: 22px;
  align-items: start;
}
.contact-aside {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: transparent;
  padding: 0;
  color: inherit;
}
.contact-aside-card {
  background: var(--navy);
  color: #fff;
  padding: 26px 24px;
  border: 1px solid rgba(198,156,109,.25);
}
.contact-kicker {
  display: block;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
}
.contact-kicker-dark { color: var(--gold); }
.contact-aside .phone {
  display: block;
  font-size: 1.45rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 10px;
  letter-spacing: 0.02em;
  text-decoration: none;
  transition: color .2s;
}
.contact-aside .phone:hover { color: var(--gold); }
.contact-aside-lead {
  font-size: 13px;
  line-height: 1.65;
  color: rgba(255,255,255,.7);
  margin: 0 0 20px;
}
.contact-info-rows {
  list-style: none;
  padding: 0;
  margin: 0;
}
.contact-info-rows li {
  padding: 12px 0;
  border-top: 1px solid rgba(255,255,255,.1);
}
.contact-info-rows .ci-label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,.45);
  margin-bottom: 4px;
}
.contact-info-rows a,
.contact-info-rows span:not(.ci-label) {
  font-size: 14px;
  color: rgba(255,255,255,.9);
  text-decoration: none;
}
.contact-info-rows a:hover { color: var(--gold); }
.contact-hours-list {
  list-style: none;
  padding: 0;
  margin: 0 0 20px;
}
.contact-hours-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,.1);
  font-size: 13px;
  color: rgba(255,255,255,.8);
}
.contact-hours-list strong { color: #fff; font-weight: 600; }
.contact-hours-list .closed { color: rgba(255,255,255,.45); font-weight: 500; }
.contact-call-btn { width: 100%; justify-content: center; text-align: center; }

.contact-form-panel {
  border: 1px solid rgba(11,27,50,.08);
  background: #fff;
  padding: 32px 30px 34px;
  box-shadow: 0 24px 60px rgba(11,27,50,.1);
}
.contact-form-head {
  margin-bottom: 8px;
  padding: 0 0 18px;
  border-bottom: 1px solid var(--line);
}
.contact-form-head .contact-kicker {
  margin-bottom: 10px;
}
.contact-form-head h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.55rem, 2.2vw, 1.9rem);
  color: var(--navy);
  margin: 0 0 8px;
  padding: 0;
}
html[dir=rtl] .contact-form-head h2 { font-family: 'Almarai', sans-serif; }
.contact-form-head p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
  max-width: 52ch;
}
.form-section {
  padding: 22px 0 6px;
}
.form-section + .form-section {
  border-top: 1px solid var(--line);
  margin-top: 8px;
}
.form-section-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0 0 16px;
  padding: 0;
  opacity: .85;
}
.form-field > span,
.time-label {
  display: block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--navy);
  margin: 0;
  padding: 0;
}
.time-fieldset {
  border: 0;
  padding: 0;
  margin: 0;
  min-width: 0;
  gap: 8px;
}
.time-chips {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  width: 100%;
}
.form-alert {
  padding: 14px 16px;
  margin: 18px 0 6px;
  font-size: 14px;
  line-height: 1.5;
}
.form-alert-ok {
  background: #eef8f1;
  border-inline-start: 3px solid #2f7d4a;
  color: #1f5c38;
}
.form-alert-err {
  background: #fdf2f2;
  border-inline-start: 3px solid #b54545;
  color: #8a2f2f;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px 16px;
}
.form-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: #334155;
  text-transform: none;
  margin: 0;
  padding: 0;
  min-width: 0;
}
.form-field-full { grid-column: 1 / -1; }
.form-field input,
.form-field select,
.form-field textarea {
  appearance: none;
  width: 100%;
  border: 1px solid #d9dde5;
  background: #f8f7f4;
  color: #1a2332;
  font: inherit;
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  text-transform: none;
  padding: 14px 15px;
  outline: none;
  border-radius: 0;
  transition: border-color .18s, box-shadow .18s, background .18s;
}
.select-wrap { position: relative; }
.select-wrap::after {
  content: '';
  position: absolute;
  inset-inline-end: 16px;
  top: 50%;
  width: 8px;
  height: 8px;
  border-inline-end: 1.5px solid var(--navy);
  border-bottom: 1.5px solid var(--navy);
  transform: translateY(-70%) rotate(45deg);
  pointer-events: none;
  opacity: .55;
}
.select-wrap select { padding-inline-end: 40px; }
.form-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}
.form-field input:hover,
.form-field select:hover,
.form-field textarea:hover {
  border-color: #c5cad3;
  background: #fff;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  border-color: var(--gold);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(198,156,109,.16);
}
.time-chip {
  position: relative;
  cursor: pointer;
  margin: 0;
}
.time-chip input {
  position: absolute;
  opacity: 0;
  inset: 0;
  cursor: pointer;
}
.time-chip span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 1px solid #d9dde5;
  background: #f8f7f4;
  color: var(--navy);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
  transition: .18s;
}
.time-chip:hover span {
  border-color: var(--gold);
  background: #fff;
}
.time-chip input:checked + span {
  background: var(--navy);
  border-color: var(--navy);
  color: #fff;
}
.time-chip input:focus-visible + span {
  box-shadow: 0 0 0 3px rgba(198,156,109,.22);
}
.form-actions {
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: flex-end;
}
.btn-form-submit {
  min-width: 200px;
  padding: 14px 28px;
  font-size: 13px;
  letter-spacing: 0.08em;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; }
  .contact-body { margin-top: -36px; }
  .time-chips { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 560px) {
  .form-grid { grid-template-columns: 1fr; }
  .contact-form-panel { padding: 24px 18px 26px; }
  .time-chips { grid-template-columns: repeat(2, 1fr); }
  .form-actions { justify-content: stretch; }
  .btn-form-submit { width: 100%; }
}
