:root {
  --ink:#173f35;
  --ink-2:#285b4e;
  --surface:#ffffff;
  --surface-soft:#f5f7f5;
  --page:#f1f4f1;
  --line:#dbe4df;
  --muted:#64746d;
  --danger:#9e2f2f;
  --danger-bg:#fff3f3;
  --success:#236b4d;
  --shadow:0 18px 50px rgba(23,63,53,.08);
  --radius:22px;
}

* {
  box-sizing:border-box;
}

html {
  min-height:100%;
  background:var(--page);
}

body {
  margin:0;
  color:var(--ink);
  background:
    radial-gradient(
      circle at top right,
      rgba(40,91,78,.09),
      transparent 32rem
    ),
    var(--page);
  font-family:
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    Tahoma,
    Arial,
    sans-serif;
}

button,
input,
select {
  font:inherit;
}

button {
  cursor:pointer;
}

.topbar {
  height:78px;
  padding:0 24px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  background:rgba(255,255,255,.94);
  border-bottom:1px solid var(--line);
  backdrop-filter:blur(14px);
  position:sticky;
  top:0;
  z-index:20;
}

.brand {
  display:flex;
  align-items:center;
  gap:12px;
}

.brand-mark {
  width:43px;
  height:43px;
  border-radius:14px;
  display:grid;
  place-items:center;
  color:white;
  background:var(--ink);
  font-size:24px;
  font-weight:800;
}

.brand-ar {
  font-weight:800;
  font-size:18px;
}

.brand-en {
  color:var(--muted);
  font-size:11px;
  direction:ltr;
}

.language-toggle,
.secondary-button {
  border:1px solid var(--line);
  background:white;
  color:var(--ink);
  border-radius:12px;
  padding:10px 14px;
  font-weight:700;
}

.page {
  width:min(760px, calc(100% - 28px));
  margin:0 auto;
  padding:36px 0 64px;
}

.hero {
  text-align:center;
  padding:16px 8px 28px;
}

.eyebrow {
  font-size:13px;
  font-weight:800;
  color:var(--ink-2);
  margin-bottom:8px;
}

h1 {
  font-size:clamp(30px,7vw,48px);
  margin:0;
  letter-spacing:-.035em;
}

.hero-copy {
  max-width:580px;
  margin:14px auto 22px;
  color:var(--muted);
  line-height:1.8;
}

.price-card {
  width:max-content;
  max-width:100%;
  margin:0 auto;
  padding:12px 22px;
  border-radius:18px;
  background:var(--ink);
  color:white;
  box-shadow:var(--shadow);
}

.price-card .price {
  font-size:28px;
  font-weight:900;
}

.price-card small {
  display:block;
  opacity:.8;
  margin-top:2px;
}

.steps {
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:7px;
  margin:0 0 18px;
}

.step {
  min-width:0;
  padding:11px 5px;
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:5px;
  text-align:center;
  color:#8a9791;
  border-radius:15px;
}

.step span {
  width:27px;
  height:27px;
  display:grid;
  place-items:center;
  border-radius:50%;
  background:#e1e7e3;
  font-size:12px;
  font-weight:900;
}

.step b {
  font-size:11px;
}

.step.active {
  color:var(--ink);
  background:rgba(255,255,255,.7);
}

.step.active span,
.step.complete span {
  color:white;
  background:var(--ink);
}

.panel {
  background:var(--surface);
  border:1px solid var(--line);
  border-radius:var(--radius);
  padding:24px;
  box-shadow:var(--shadow);
}

.panel-heading {
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
}

.panel h2 {
  margin:0 0 7px;
  font-size:23px;
}

.panel p {
  color:var(--muted);
  margin:0;
  line-height:1.7;
}

.loading {
  min-height:160px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  color:var(--muted);
}

.spinner {
  width:19px;
  height:19px;
  border:2px solid var(--line);
  border-top-color:var(--ink);
  border-radius:50%;
  animation:spin .75s linear infinite;
}

@keyframes spin {
  to {
    transform:rotate(360deg);
  }
}

.slot-groups {
  display:grid;
  gap:20px;
  margin-top:24px;
}

.slot-day h3 {
  margin:0 0 10px;
  font-size:15px;
}

.slot-list {
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:8px;
}

.slot-button {
  border:1px solid var(--line);
  background:white;
  color:var(--ink);
  border-radius:13px;
  padding:12px 8px;
  font-weight:800;
}

.slot-button:hover,
.slot-button:focus-visible {
  border-color:var(--ink);
  outline:none;
}

.hold-banner {
  margin:-6px 0 22px;
  padding:12px 15px;
  border-radius:14px;
  background:var(--surface-soft);
  display:flex;
  justify-content:space-between;
  gap:15px;
  font-size:13px;
}

.hold-banner strong {
  direction:ltr;
  font-variant-numeric:tabular-nums;
}

.form-grid {
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:15px;
  margin-top:20px;
}

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

.form-grid .full {
  grid-column:1 / -1;
}

input,
select {
  width:100%;
  height:48px;
  padding:0 13px;
  border:1px solid #ccd8d2;
  background:white;
  color:#17211d;
  border-radius:12px;
  outline:none;
}

input:focus,
select:focus {
  border-color:var(--ink-2);
  box-shadow:0 0 0 3px rgba(40,91,78,.09);
}

.consents {
  display:grid;
  gap:12px;
  margin:21px 0;
  padding:17px;
  border-radius:15px;
  background:var(--surface-soft);
}

.checkbox {
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#42534b;
  line-height:1.6;
  font-size:12px;
}

.checkbox input {
  flex:none;
  width:18px;
  height:18px;
  margin-top:2px;
}

.primary-button {
  min-height:52px;
  border:0;
  border-radius:14px;
  background:var(--ink);
  color:white;
  padding:12px 20px;
  font-weight:900;
}

.primary-button:disabled {
  opacity:.55;
  cursor:not-allowed;
}

.full-width {
  width:100%;
}

.summary-card {
  display:grid;
  gap:13px;
  margin:20px 0;
  padding:17px;
  background:var(--surface-soft);
  border-radius:15px;
}

.summary-card > div {
  display:flex;
  justify-content:space-between;
  gap:20px;
}

.summary-card span {
  color:var(--muted);
}

.payment-disabled {
  border:1px dashed #b7c6bf;
  border-radius:15px;
  padding:20px;
  text-align:center;
  background:#fafcfb;
}

.payment-disabled strong {
  display:block;
  margin-bottom:7px;
}

.confirmation-icon {
  width:66px;
  height:66px;
  margin:0 auto 20px;
  display:grid;
  place-items:center;
  border-radius:50%;
  color:white;
  background:var(--success);
  font-size:32px;
}

#step4 {
  text-align:center;
}

.alert {
  margin:0 0 14px;
  border:1px solid #edc6c6;
  border-radius:14px;
  padding:13px 15px;
  background:var(--danger-bg);
  color:var(--danger);
  line-height:1.6;
  font-size:13px;
}

.hidden {
  display:none !important;
}

footer {
  padding:25px 20px 38px;
  display:flex;
  justify-content:center;
  flex-wrap:wrap;
  gap:8px 18px;
  color:#77847e;
  font-size:11px;
}

html[dir="ltr"] body {
  direction:ltr;
}

html[dir="ltr"] .brand {
  direction:ltr;
}

@media (max-width:600px) {
  .topbar {
    height:68px;
    padding:0 15px;
  }

  .brand-mark {
    width:38px;
    height:38px;
  }

  .brand-en {
    display:none;
  }

  .page {
    width:min(100% - 18px,760px);
    padding-top:18px;
  }

  .hero {
    padding-top:10px;
  }

  .steps {
    gap:2px;
  }

  .step {
    padding-inline:2px;
  }

  .panel {
    padding:18px 15px;
    border-radius:18px;
  }

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

  .form-grid .full {
    grid-column:auto;
  }

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

/* ==========================================================
   RIKAZ BOOKING UI V3
   Real production DOM overrides
   ========================================================== */

:root {
  --rk-green: #123f35;
  --rk-green-hover: #1a5547;
  --rk-green-soft: #e9f2ef;
  --rk-sage: #90aaa3;
  --rk-blue: #6c8993;
  --rk-ink: #18342e;
  --rk-muted: #71817d;
  --rk-border: #dbe5e2;
  --rk-canvas: #f6f9f8;
  --rk-white: #ffffff;
  --rk-danger: #b33c36;
  --rk-radius: 22px;
  --rk-shadow:
    0 18px 55px
    rgba(18,63,53,.09);
}


/* page */

html,
body {
  background:
    #fff !important;
}

body {
  color:
    var(--rk-ink);
}

.page {
  width:
    min(1120px, calc(100% - 32px));
  margin:
    0 auto;
}


/* header */

.topbar {
  min-height:
    88px;
  padding:
    0 42px !important;
  background:
    rgba(255,255,255,.97) !important;
  border-bottom:
    1px solid
    var(--rk-border) !important;
  box-shadow:
    0 4px 24px
    rgba(18,63,53,.035);
  backdrop-filter:
    blur(14px);
}

.brand {
  gap:
    12px;
}

.brand-mark {
  width:
    42px !important;
  height:
    42px !important;
  border-radius:
    14px !important;
  background:
    var(--rk-green) !important;
}

.brand-ar {
  color:
    var(--rk-green) !important;
  font-weight:
    750;
}

.brand-en {
  color:
    var(--rk-muted) !important;
}

.language-toggle {
  min-height:
    42px;
  padding:
    0 18px !important;
  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    14px !important;
  background:
    #fff !important;
  color:
    var(--rk-green) !important;
  font-weight:
    700;
}


/* hero */

.hero {
  position:
    relative;
  overflow:
    hidden;

  margin:
    34px auto 22px !important;
  padding:
    54px 44px 46px !important;

  border:
    1px solid
    rgba(18,63,53,.08);
  border-radius:
    34px !important;

  background:
    linear-gradient(
      125deg,
      #123f35 0%,
      #315f57 56%,
      #78949a 100%
    ) !important;

  box-shadow:
    0 26px 70px
    rgba(18,63,53,.14);
}

.hero::before {
  content:"";
  position:absolute;
  width:460px;
  height:460px;
  inset-inline-end:-170px;
  top:-230px;
  border-radius:50%;
  background:
    rgba(255,255,255,.10);
}

.hero::after {
  content:"";
  position:absolute;
  width:270px;
  height:270px;
  inset-inline-start:-110px;
  bottom:-170px;
  border-radius:50%;
  background:
    rgba(255,255,255,.06);
}

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

.eyebrow {
  color:
    #d8ebe5 !important;
  font-weight:
    700;
}

.hero h1 {
  margin:
    8px 0 10px;
  color:
    #fff !important;
  font-size:
    clamp(
      2rem,
      4vw,
      3.2rem
    ) !important;
  line-height:
    1.12;
}

.hero-copy {
  color:
    rgba(255,255,255,.82) !important;
  font-size:
    1.05rem;
}

.price-card {
  display:
    inline-flex !important;
  align-items:
    center;
  gap:
    12px;

  margin-top:
    25px;
  padding:
    13px 19px !important;

  border:
    1px solid
    rgba(255,255,255,.20) !important;
  border-radius:
    16px !important;

  background:
    rgba(255,255,255,.12) !important;
  backdrop-filter:
    blur(12px);
}

.price-card .price {
  color:
    #fff !important;
  font-size:
    1.75rem !important;
  font-weight:
    800;
}

.price-card small {
  color:
    rgba(255,255,255,.78) !important;
}


/* stepper */

.steps {
  margin:
    26px 0 !important;
  padding:
    8px;

  border:
    1px solid
    var(--rk-border);
  border-radius:
    20px;

  background:
    var(--rk-canvas);

  gap:
    8px !important;
}

.step {
  min-height:
    64px;
  border-radius:
    14px !important;
  transition:
    background .18s ease,
    box-shadow .18s ease,
    transform .18s ease;
}

.step.active {
  background:
    #fff !important;
  color:
    var(--rk-green) !important;
  box-shadow:
    0 7px 22px
    rgba(18,63,53,.08);
}

.step.complete {
  color:
    var(--rk-green) !important;
}


/* alerts */

.alert {
  margin:
    16px 0;
  border-radius:
    16px !important;
  padding:
    14px 18px !important;
}


/* main content */

.panel {
  padding:
    30px !important;

  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    var(--rk-radius) !important;

  background:
    #fff !important;
  box-shadow:
    var(--rk-shadow) !important;
}

.panel-heading {
  margin-bottom:
    22px;
}

.panel-heading h2 {
  color:
    var(--rk-green);
  font-size:
    1.45rem;
}

.secondary-button,
.primary-button {
  min-height:
    46px;
  border-radius:
    13px !important;
  font-weight:
    700;
}

.primary-button {
  background:
    var(--rk-green) !important;
}

.primary-button:hover {
  background:
    var(--rk-green-hover) !important;
}

.secondary-button {
  border:
    1px solid
    var(--rk-border) !important;
  background:
    var(--rk-canvas) !important;
  color:
    var(--rk-green) !important;
}


/* actual modern calendar */

.slot-groups {
  margin-top:
    6px;
}

.availability-calendar {
  display:
    grid;
  gap:
    22px;
}

.availability-dates {
  display:
    flex;
  gap:
    10px;
  overflow-x:
    auto;

  padding:
    4px 2px 10px;

  scrollbar-width:
    thin;
}

.availability-date {
  flex:
    0 0 96px;

  min-height:
    96px;
  padding:
    11px 10px;

  display:
    flex;
  flex-direction:
    column;
  justify-content:
    center;
  align-items:
    center;
  gap:
    2px;

  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    16px !important;

  background:
    #fff !important;
  color:
    var(--rk-ink) !important;

  cursor:
    pointer;

  transition:
    all .16s ease;
}

.availability-date:hover {
  border-color:
    var(--rk-sage) !important;
  transform:
    translateY(-2px);
}

.availability-date.active {
  border-color:
    var(--rk-green) !important;
  background:
    var(--rk-green) !important;
  color:
    #fff !important;
  box-shadow:
    0 9px 24px
    rgba(18,63,53,.18);
}

.availability-weekday,
.availability-month {
  font-size:
    .78rem;
  opacity:
    .72;
}

.availability-day-number {
  font-size:
    1.5rem;
  line-height:
    1.1;
}

.availability-selected-day {
  padding-top:
    3px;
  color:
    var(--rk-green);
  font-size:
    1.08rem;
  font-weight:
    750;
}

.availability-times {
  display:
    grid;
  grid-template-columns:
    repeat(
      auto-fill,
      minmax(125px,1fr)
    );
  gap:
    10px;
}

.slot-button {
  min-height:
    52px !important;
  padding:
    11px 16px !important;

  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    14px !important;

  background:
    var(--rk-canvas) !important;
  color:
    var(--rk-green) !important;

  font-weight:
    750;

  cursor:
    pointer;

  transition:
    all .16s ease;
}

.slot-button:hover {
  border-color:
    var(--rk-green) !important;
  background:
    var(--rk-green-soft) !important;
  transform:
    translateY(-1px);
}

.slot-button.selected {
  border-color:
    var(--rk-green) !important;
  background:
    var(--rk-green) !important;
  color:
    #fff !important;
}

.availability-empty {
  padding:
    32px;
  text-align:
    center;
  border-radius:
    16px;
  background:
    var(--rk-canvas);
  color:
    var(--rk-muted);
}


/* details */

.hold-banner {
  margin-bottom:
    24px;
  padding:
    14px 18px !important;

  border:
    0 !important;
  border-radius:
    15px !important;

  background:
    var(--rk-green-soft) !important;
  color:
    var(--rk-green) !important;
}

.form-grid {
  gap:
    17px !important;
}

.form-grid label {
  color:
    var(--rk-ink);
  font-weight:
    650;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  min-height:
    50px;

  margin-top:
    7px;

  border:
    1px solid
    #cbdad5 !important;
  border-radius:
    13px !important;

  background:
    #fff !important;

  transition:
    border-color .15s ease,
    box-shadow .15s ease;
}

.form-grid input:focus,
.form-grid select:focus,
.form-grid textarea:focus {
  outline:
    none !important;

  border-color:
    var(--rk-green) !important;

  box-shadow:
    0 0 0 3px
    rgba(18,63,53,.08) !important;
}

.consents {
  padding:
    17px;
  margin:
    20px 0;

  border-radius:
    15px;

  background:
    var(--rk-canvas);
}

.checkbox {
  line-height:
    1.55;
}


/* payment / confirmation */

.summary-card,
.payment-disabled {
  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    16px !important;
  background:
    var(--rk-canvas) !important;
}

.confirmation-icon {
  background:
    var(--rk-green-soft) !important;
  color:
    var(--rk-green) !important;
}


/* mobile */

@media (max-width: 720px) {

  .topbar {
    min-height:
      72px;
    padding:
      0 16px !important;
  }

  .page {
    width:
      min(
        100% - 20px,
        1120px
      );
  }

  .hero {
    margin-top:
      16px !important;
    padding:
      34px 23px 30px !important;
    border-radius:
      24px !important;
  }

  .hero h1 {
    font-size:
      2rem !important;
  }

  .steps {
    overflow-x:
      auto;
  }

  .step {
    min-width:
      92px;
  }

  .panel {
    padding:
      20px !important;
    border-radius:
      18px !important;
  }

  .availability-date {
    flex-basis:
      82px;
    min-height:
      86px;
  }

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

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


/* ==========================================================
   RIKAZ MONTH BOOKING CALENDAR V4
   ========================================================== */

.month-booking-layout {
  display: grid;
  grid-template-columns:
    minmax(360px, 1fr)
    minmax(300px, .82fr);
  gap: 28px;
  align-items: start;
  margin-top: 10px;
}

.month-calendar,
.month-times-panel {
  border:
    1px solid
    var(--rk-border);
  border-radius:
    20px;
  background:
    #fff;
}

.month-calendar {
  padding:
    20px;
}

.month-calendar-header {
  display: grid;
  grid-template-columns:
    44px 1fr 44px;
  gap: 10px;
  align-items: center;
  margin-bottom: 18px;
}

.month-calendar-header h3 {
  margin: 0;
  text-align: center;
  color:
    var(--rk-green);
  font-size: 1.08rem;
  font-weight: 800;
}

.month-nav-button {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;

  border:
    1px solid
    var(--rk-border) !important;
  border-radius:
    12px !important;

  background:
    var(--rk-canvas) !important;
  color:
    var(--rk-green) !important;

  font-size:
    1.5rem;
  line-height:
    1;

  cursor:
    pointer;
}

.month-nav-button:hover {
  border-color:
    var(--rk-green) !important;
  background:
    var(--rk-green-soft) !important;
}

.month-weekdays,
.month-grid {
  display:
    grid;
  grid-template-columns:
    repeat(7, 1fr);
  gap:
    7px;
}

.month-weekdays {
  margin-bottom:
    8px;
}

.month-weekdays span {
  text-align:
    center;
  color:
    var(--rk-muted);
  font-size:
    .72rem;
  font-weight:
    700;
}

.month-day,
.month-day-spacer {
  aspect-ratio:
    1 / 1;
}

.month-day {
  position:
    relative;

  display:
    grid;
  place-items:
    center;

  min-width:
    0;

  border:
    1px solid
    transparent !important;
  border-radius:
    12px !important;

  background:
    #f6f8f7 !important;

  color:
    #a6b1ae !important;

  font-size:
    .92rem;
  font-weight:
    700;

  cursor:
    default;
}

.month-day.available {
  border-color:
    #d4e1dd !important;

  background:
    #fff !important;

  color:
    var(--rk-green) !important;

  cursor:
    pointer;
}

.month-day.available:hover {
  border-color:
    var(--rk-green) !important;

  background:
    var(--rk-green-soft) !important;
}

.month-day.selected {
  border-color:
    var(--rk-green) !important;

  background:
    var(--rk-green) !important;

  color:
    #fff !important;

  box-shadow:
    0 7px 18px
    rgba(18,63,53,.18);
}

.month-day:disabled {
  opacity:
    .52;
}

.availability-dot {
  position:
    absolute;
  bottom:
    6px;
  left:
    50%;

  width:
    4px;
  height:
    4px;

  border-radius:
    50%;

  background:
    #6aa797;

  transform:
    translateX(-50%);
}

.month-day.selected
.availability-dot {
  background:
    #fff;
}

.month-times-panel {
  min-height:
    310px;
  padding:
    22px;
}

.month-times-heading {
  margin-bottom:
    18px;
}

.month-times-heading h3 {
  margin:
    0 0 5px;

  color:
    var(--rk-green);

  font-size:
    1.12rem;
  font-weight:
    800;
}

.month-times-heading p {
  margin:
    0;

  color:
    var(--rk-muted);

  font-size:
    .9rem;
}

.month-time-grid {
  display:
    grid;
  grid-template-columns:
    repeat(
      2,
      minmax(
        0,
        1fr
      )
    );
  gap:
    10px;
}

.month-time-grid
.slot-button {
  width:
    100%;
}

.month-time-grid
.slot-button:disabled {
  opacity:
    .55;
  cursor:
    wait;
}

.calendar-empty {
  grid-column:
    1 / -1;

  padding:
    30px 18px;

  border-radius:
    15px;

  background:
    var(--rk-canvas);

  color:
    var(--rk-muted);

  text-align:
    center;
}


/* Hide old V3 date-strip elements if any cached markup survives. */

.availability-dates,
.availability-selected-day,
.availability-times {
  display:
    none !important;
}


@media (max-width: 820px) {

  .month-booking-layout {
    grid-template-columns:
      1fr;
    gap:
      18px;
  }

  .month-calendar {
    padding:
      15px;
  }

  .month-calendar-header {
    margin-bottom:
      14px;
  }

  .month-weekdays,
  .month-grid {
    gap:
      4px;
  }

  .month-day {
    border-radius:
      10px !important;

    font-size:
      .84rem;
  }

  .month-times-panel {
    min-height:
      unset;

    padding:
      17px;
  }

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


@media (max-width: 440px) {

  .month-calendar {
    padding:
      12px;
  }

  .month-nav-button {
    width:
      38px;
    height:
      38px;
  }

  .month-calendar-header {
    grid-template-columns:
      38px 1fr 38px;
  }

  .month-weekdays span {
    font-size:
      .64rem;
  }

  .month-day {
    font-size:
      .78rem;
  }

  .availability-dot {
    bottom:
      4px;
  }
}


/* Rikaz booking shift separator */

.shift-divider {
  grid-column:
    1 / -1;

  display:
    flex;
  align-items:
    center;
  gap:
    12px;

  margin:
    12px 0 3px;

  color:
    var(--rk-muted);

  font-size:
    .78rem;
  font-weight:
    750;
}

.shift-divider::before,
.shift-divider::after {
  content:"";

  flex:
    1;

  height:
    1px;

  background:
    var(--rk-border);
}

.shift-divider:first-child {
  margin-top:
    0;
}


/* ==========================================================
   Rikaz brand integration + footer
   ========================================================== */

.brand-logo-image {
  display: block;
  width: auto;
  height: 54px;
  max-width: 220px;
  object-fit: contain;
}

.brand-with-logo .brand-mark,
.brand-with-logo .brand-ar,
.brand-with-logo .brand-en {
  display: none !important;
}


.change-appointment-button {
  appearance: none;

  margin-inline-start: auto;

  padding: 8px 13px;

  border:
    1px solid
    rgba(18,63,53,.20) !important;

  border-radius:
    11px !important;

  background:
    rgba(255,255,255,.72) !important;

  color:
    var(--rk-green) !important;

  font-size:
    .82rem;

  font-weight:
    750;

  cursor:
    pointer;
}

.change-appointment-button:hover {
  background:
    #fff !important;

  border-color:
    var(--rk-green) !important;
}

.change-appointment-button:disabled {
  opacity:
    .55;

  cursor:
    wait;
}


.rikaz-booking-footer {
  margin-top:
    82px;

  background:
    #35475a;

  color:
    #d7e0e5;
}

.rikaz-footer-inner {
  width:
    min(
      1180px,
      calc(100% - 48px)
    );

  margin:
    0 auto;

  padding:
    72px 0 66px;

  display:
    grid;

  grid-template-columns:
    1.25fr 1fr 1fr 1fr;

  gap:
    54px;

  direction:
    rtl;
}

.rikaz-footer-brand {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    flex-start;

  gap:
    18px;
}

.rikaz-footer-logo {
  width:
    auto;

  max-width:
    205px;

  max-height:
    76px;

  object-fit:
    contain;

  filter:
    brightness(0)
    invert(1);

  opacity:
    .94;
}

.rikaz-footer-logo-text {
  color:
    #fff;

  font-size:
    1.15rem;

  font-weight:
    800;

  line-height:
    1.25;
}

.rikaz-footer-logo-text small {
  font-size:
    .75rem;

  font-weight:
    600;

  opacity:
    .72;
}

.rikaz-footer-location {
  color:
    #afbdc5;

  font-size:
    .86rem;
}

.rikaz-footer-column h3 {
  margin:
    0 0 24px;

  color:
    #fff;

  font-size:
    1.05rem;

  font-weight:
    750;
}

.rikaz-footer-column > div {
  margin:
    11px 0;

  color:
    #bdc8ce;

  font-size:
    .91rem;
}

.rikaz-footer-contact {
  display:
    flex;

  flex-direction:
    column;

  align-items:
    center;

  justify-content:
    flex-start;

  gap:
    24px;
}

.rikaz-footer-call {
  display:
    inline-flex;

  align-items:
    center;

  justify-content:
    center;

  gap:
    9px;

  min-width:
    142px;

  min-height:
    48px;

  padding:
    0 18px;

  border-radius:
    24px;

  background:
    #a6bdc2;

  color:
    #fff;

  text-decoration:
    none;

  font-weight:
    750;
}

.rikaz-footer-call:hover {
  background:
    #b5c8cc;
}

.rikaz-footer-phone {
  color:
    #fff;

  text-decoration:
    none;

  font-size:
    1rem;

  font-weight:
    750;

  letter-spacing:
    .02em;
}

.rikaz-footer-bottom {
  padding:
    28px 20px;

  border-top:
    1px solid
    rgba(255,255,255,.10);

  text-align:
    center;

  color:
    #dce4e7;

  font-size:
    .82rem;
}


.footer-lang-en {
  display:
    none;
}

html[lang^="en"]
.footer-lang-ar {
  display:
    none;
}

html[lang^="en"]
.footer-lang-en {
  display:
    inline;
}


@media (max-width: 900px) {

  .rikaz-footer-inner {
    grid-template-columns:
      repeat(2,1fr);

    gap:
      42px 28px;

    padding:
      54px 0;
  }
}


@media (max-width: 600px) {

  .brand-logo-image {
    height:
      44px;

    max-width:
      170px;
  }

  .rikaz-booking-footer {
    margin-top:
      56px;
  }

  .rikaz-footer-inner {
    width:
      min(
        100% - 34px,
        1180px
      );

    grid-template-columns:
      1fr;

    gap:
      34px;

    padding:
      44px 0;
  }

  .rikaz-footer-contact {
    align-items:
      flex-start;
  }

  .rikaz-footer-column h3 {
    margin-bottom:
      15px;
  }
}


/* ==========================================================
   Rikaz production footer alignment
   Exact global dark color: #364151
   ========================================================== */

.rikaz-booking-footer,
.rikaz-footer-bottom {
  background:
    #364151 !important;
}

.rikaz-footer-bottom {
  border-top:
    1px solid
    rgba(255,255,255,.08) !important;
}

.rikaz-footer-logo {
  display:
    block;

  width:
    191px !important;

  max-width:
    191px !important;

  height:
    auto !important;

  filter:
    none !important;

  opacity:
    1 !important;
}

.rikaz-footer-column > div,
.rikaz-footer-location {
  color:
    #b4d4d3 !important;
}

.rikaz-footer-column h3,
.rikaz-footer-phone {
  color:
    #ffffff !important;
}

