@font-face {
  font-family: "Cal Sans";
  src: url("./assets/fonts/CalSans-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/fonts/WixMadeforDisplay-Regular.ttf") format("truetype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/fonts/WixMadeforDisplay-Medium.ttf") format("truetype");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/fonts/WixMadeforDisplay-SemiBold.ttf") format("truetype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Wix Madefor Display";
  src: url("./assets/fonts/WixMadeforDisplay-Bold.ttf") format("truetype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --background: #ffffff;
  --foreground: #101828;
  --muted: #878787;
  --border: rgba(0, 0, 0, 0.1);
  --border-light: rgba(0, 0, 0, 0.15);
  --primary: #1d2372;
  --primary-2: #44327d;
  --accent: #dc4026;
  --accent-soft: #ff9280;
  --section-gradient: linear-gradient(180deg, #ffffff 0%, #f1faff 100%);
  --footer-gradient: linear-gradient(163deg, rgb(29, 35, 114) 0%, rgb(68, 50, 125) 50%, rgb(220, 64, 38) 100%);
  --button-gradient: linear-gradient(156deg, #003973 0%, #ff1919 100%);
  --radius-lg: 16px;
  --radius-xl: 24px;
  --container: 1400px;
  --font-heading: "Cal Sans", Arial, sans-serif;
  --font-body: "Wix Madefor Display", Arial, sans-serif;
  --shadow-card: 0 1px 3px rgba(16, 24, 40, 0.08);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-y: scroll;
}

body {
  margin: 0;
  min-width: 320px;
  color: var(--foreground);
  background: var(--background);
  font-family: var(--font-body);
}

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

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

button {
  border: 0;
  padding: 0;
  background: transparent;
  font: inherit;
  color: inherit;
  cursor: pointer;
}

.tm-page-shell {
  min-height: 100vh;
  background: var(--background);
}

.tm-container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
}

.tm-section-align {
  padding-left: 24px;
  padding-right: 24px;
}

.tm-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

.tm-btn-gradient-border {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 43px;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  background: #ffffff;
  color: var(--foreground);
  isolation: isolate;
  transition: opacity 0.15s ease;
}

.tm-btn-gradient-border::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: 12px;
  padding: 1px;
  background: linear-gradient(135deg, #1d2372, #44327d, #dc4026, #ff9280);
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.tm-btn-gradient-fill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  height: 43px;
  padding: 8px 20px;
  border-radius: 12px;
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  color: #ffffff;
  background: var(--button-gradient);
  white-space: nowrap;
  transition: opacity 0.15s ease;
}

.tm-btn-gradient-border:hover,
.tm-btn-gradient-fill:hover,
.tm-text-link:hover,
.tm-social-icons a:hover {
  opacity: 0.88;
}

/* Book appointment button â€“ chevron icon with rotate animation */
.tm-book-appointment-btn__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.3s ease;
}

.tm-book-appointment-btn__icon svg {
  width: 20px;
  height: 20px;
}

.tm-book-appointment-btn[aria-expanded="false"] .tm-book-appointment-btn__icon {
  transform: rotate(180deg);
}

.tm-book-appointment-btn[aria-expanded="true"] .tm-book-appointment-btn__icon {
  transform: rotate(0deg);
}

.tm-mobile-nav .tm-book-appointment-btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
}

.tm-mobile-nav .tm-book-appointment-btn__icon {
  margin-left: auto;
}

.tm-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.tm-icon-lg {
  width: 20px;
  height: 20px;
}

.tm-site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  width: 100%;
  background: #ffffff;
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
}

.tm-site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 99px;
  padding: 0;
}

.tm-site-header__left {
  display: flex;
  align-items: center;
  gap: 40px;
}

.tm-site-header__logo img {
  width: auto;
  height: 63px;
}

.tm-desktop-nav,
.tm-header-actions {
  display: none;
}

.tm-desktop-nav {
  align-items: center;
  gap: 32px;
}

.tm-desktop-nav > a,
.tm-desktop-nav > .tm-dropdown > button {
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
  color: var(--foreground);
}

.tm-header-actions {
  align-items: center;
  gap: 12px;
}

.tm-dropdown {
  position: relative;
}

.tm-dropdown > button {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.tm-dropdown-menu {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  display: none;
  width: 224px;
  padding: 8px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
}

.tm-dropdown.tm-is-open .tm-dropdown-menu {
  display: block;
}

.tm-dropdown-menu a {
  display: block;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 14px;
}

.tm-dropdown-menu a:hover {
  background: #f3f4f6;
}

.tm-menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
}

.tm-menu-toggle__close {
  display: none;
}

.tm-menu-toggle.tm-is-open .tm-menu-toggle__open {
  display: none;
}

.tm-menu-toggle.tm-is-open .tm-menu-toggle__close {
  display: inline-flex;
}

.tm-mobile-menu {
  position: fixed;
  inset: 72px 0 0;
  z-index: 49;
  display: none;
  flex-direction: column;
  padding: 24px;
  background: #ffffff;
}

.tm-mobile-menu.tm-is-open {
  display: flex;
}

.tm-mobile-menu__cta {
  width: 100%;
  height: 52px;
  margin-bottom: 32px;
  border-radius: 16px;
  font-size: 16px;
}

.tm-mobile-nav {
  display: flex;
  flex-direction: column;
}

.tm-mobile-nav a,
.tm-mobile-nav button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 16px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  text-align: left;
  font-size: 18px;
  font-weight: 500;
}

/* Choose Staff modal â€“ full-width slide down below header (top: 73px), no backdrop, header stays clickable */
.tm-choose-staff-modal {
  position: fixed;
  top: 99px;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 48;
  overflow: hidden;
  pointer-events: none;
}

.tm-choose-staff-modal.tm-is-open {
  pointer-events: auto;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  overscroll-behavior: contain;
}

.tm-choose-staff-modal__panel {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: fit-content;
  background: #ffffff;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
  overflow: visible;
  transform: translateY(-100%);
  transition: transform 0.35s ease-out;
}

.tm-choose-staff-modal__close {
  position: absolute;
  top: 9px;
  right: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  padding: 0;
  border: none;
  border-radius: 8px;
  background: transparent;
  color: var(--foreground);
  cursor: pointer;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.tm-choose-staff-modal__close:hover {
  background: rgba(0, 0, 0, 0.06);
}

.tm-choose-staff-modal__close:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 2px;
}

.tm-choose-staff-modal.tm-is-open .tm-choose-staff-modal__panel {
  transform: translateY(0);
}

.tm-choose-staff-modal .tm-choose-staff {
  position: relative;
  padding: 32px 0 14px;
  padding-top: 1px;
}

.tm-choose-staff {
  display: block;
  width: 100%;
  padding: 48px 0 64px;
  background: #ffffff;
}

.tm-choose-staff__inner {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 40px;
  padding: 0;
}

.tm-choose-staff__notice {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 16px;
  width: 100%;
  margin: 0;
  padding: 16px 18px 16px 20px;
  border-radius: 14px;
  background: linear-gradient(
          135deg,
          rgba(29, 35, 114, 0.08) 0%,
          rgba(220, 64, 38, 0.07) 55%,
          rgba(255, 146, 128, 0.1) 100%
  );
  border: 1px solid rgba(29, 35, 114, 0.12);
  box-shadow: 0 4px 24px rgba(29, 35, 114, 0.06);
  margin-top: 39px;
  /* margin-left: 20px; */
  /* margin-right: 20px; */
}

.tm-choose-staff__notice-accent {
  flex-shrink: 0;
  width: 4px;
  margin-top: 4px;
  align-self: stretch;
  min-height: 1.25em;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--primary) 0%, #dc4026 55%, #ff9280 100%);
}

.tm-choose-staff__notice-text {
  margin: 0;
  flex: 1 1 auto;
  font-size: 16px;
  line-height: 1.55;
  color: var(--foreground);
  letter-spacing: -0.01em;
}

.tm-choose-staff__notice-text strong {
  font-weight: 700;
  color: var(--primary);
}

.tm-choose-staff__intro {
  flex: 0 0 auto;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.tm-section-title {
  margin: 0 0 12px;
  font-family: var(--font-heading);
  font-size: 40px;
  font-weight: 400;
  line-height: 1.3;
  letter-spacing: -0.01em;
  color: #000000;
}

.tm-section-copy {
  margin: 0;
  font-size: 18px;
  line-height: 1.5;
  color: var(--muted);
}

.tm-staff-grid {
  flex: 1 1 auto;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

.tm-staff-card {
  display: flex;
  flex-direction: column;
}

.tm-staff-card__media {
  overflow: hidden;
  margin-bottom: 16px;
  border: 1px solid rgba(0, 0, 0, 0.06);
  border-radius: 16px;
  box-shadow: var(--shadow-card);
}

.tm-staff-card__media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top;
}

.tm-staff-card h3 {
  margin: 0 0 4px;
  font-size: 18px;
  font-weight: 700;
}

.tm-staff-card p {
  margin: 0 0 12px;
  font-size: 14px;
  color: var(--muted);
}

.tm-staff-card .tm-btn-gradient-fill {
  align-self: flex-start;
  height: 40px;
  padding: 8px 24px;
  border-radius: 8px;
  background: linear-gradient(222deg, #003973 0%, #ff1919 100%);
}

@media (max-width: 767px) {
  .tm-staff-card__media img {
    width: 100%;
    aspect-ratio: 4 / 4.2;
  }
}

.tm-hero {
  position: relative;
  width: 100%;
  min-height: 500px;
  height: 85vh;
  overflow: hidden;
}

.tm-hero__video-wrapper,
.tm-hero__overlay {
  position: absolute;
  inset: 0;
}

.tm-hero__video-wrapper {
  overflow: hidden;
  pointer-events: none;
}

.tm-hero__video {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* YouTube iframe as background - cover full area (API creates iframe inside div) */
.tm-hero__video--youtube {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 56.25vw;
  min-height: 100vh;
  min-width: 177.78vh;
  transform: translate(-50%, -50%);
  border: none;
}

.tm-hero__video--youtube iframe {
  width: 100%;
  height: 100%;
  border: none;
}

@media (max-width: 767px) {
  /* Keep the YouTube iframe centered on narrow screens */
  #hero-youtube-player.tm-hero__video--youtube {
    left: 9% !important;
    top: 50% !important;
    width: 177.78vh !important;
    height: 100vh !important;
    min-width: 100vw !important;
    min-height: 56.25vw !important;
    transform: translate(-50%, -50%) !important;
  }
}

.tm-hero__overlay {
  background: rgba(0, 0, 0, 0.5);
}

.tm-hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: center;
  padding: 0;
}

.tm-hero__content h1 {
  max-width: 600px;
  margin: 0 0 24px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(40px, 5vw, 64px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.tm-hero__content p {
  max-width: 420px;
  margin: 0 0 32px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 16px;
  line-height: 1.6;
}

.tm-hero__content .tm-btn-gradient-fill {
  align-self: flex-start;
}

/* Booking form [booknow] */
.tm-booking-form-wrapper {
  width: 100%;
  padding: 48px 24px 80px;
}

.tm-booking-layout {
  display: flex;
  gap: 64px;
  align-items: flex-start;
  max-width: var(--container);
  margin: 0 auto;
}

.tm-booking-intro {
  flex: 0 1 50%;
  width: 50%;
}

.tm-booking-title {
  margin: 0 0 16px;
  max-width: 100%;
  font-family: "Cal Sans", Arial, sans-serif;
  font-size: 84px;
  font-style: normal;
  font-weight: 400;
  line-height: 110%;
  letter-spacing: -0.84px;
  background: var(--Linear, linear-gradient(241deg, #1D2372 0%, #44327D 27.83%, #DC4026 66.03%, #FF9280 98.11%));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.tm-booking-subtitle {
  margin: 0 0 24px;
  color: var(--Color-Scheme-1-Text, #000);
  font-family: "Wix Madefor Display", Arial, sans-serif;
  font-size: 21px;
  font-style: normal;
  font-weight: 400;
  line-height: 150%;
}

.tm-booking-staff {
  margin: 0;
  font-size: 14px;
  color: var(--foreground);
}

.tm-booking-change-staff {
  color: #ea5021;
  text-decoration: underline !important;
  text-underline-offset: 2px;
}

.tm-booking-change-staff:hover {
  text-decoration: underline;
}

.tm-booking-fields {
  flex: 0 1 50%;
  width: 50%;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.tm-booking-top-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px 16px;
  margin-bottom: 4px;
}

@media (max-width: 575px) {
  .tm-booking-top-grid {
    grid-template-columns: 1fr;
  }
}

.tm-booking-row {
  display: flex;
  gap: 16px;
}

.tm-booking-row .tm-booking-field {
  flex: 1;
  min-width: 0;
}

.tm-booking-row--2 .tm-booking-field {
  flex: 1 1 50%;
}

@media (max-width: 575px) {
  .tm-booking-row {
    flex-direction: column;
  }
}

.tm-booking-field {
  display: flex;
  flex-direction: column;
}

.tm-booking-label {
  color: #000;
  font-family: "Wix Madefor Display", Arial, sans-serif;
  font-size: 18px;
  font-style: normal;
  font-weight: 700;
  line-height: 150%;
  margin-top: 11px;
}

.tm-booking-hint {
  margin: 0;
  font-size: 13px;
  color: var(--muted);
  font-weight: 400;
}

.tm-booking-input-wrap {
  position: relative;
  display: block;
  border-radius: 12px;
  border: 1px solid #94a3b8;
}

.tm-booking-input,
.tm-booking-select,
.tm-booking-textarea {
  position: relative;
  z-index: 1;
  display: block;
  width: 100%;
  padding: 12px 16px;
  border-radius: 11px;
  border: none;
  border: none;
  background: var(--Opacity-Neutral-Darkest-5, rgba(0, 0, 0, 0.05));
  font-family: inherit;
  font-size: 15px;
  color: var(--foreground);
  transition: opacity 0.15s;
  box-sizing: border-box;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.tm-booking-input::placeholder,
.tm-booking-textarea::placeholder {
  color: var(--muted);
}

.tm-booking-input:focus,
.tm-booking-select:focus,
.tm-booking-textarea:focus {
  outline: none;
  opacity: 0.95;
}

.tm-booking-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%231D2372' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  background-color: var(--Opacity-Neutral-Darkest-5, rgba(0, 0, 0, 0.05));
  padding-right: 40px;
}

.tm-booking-textarea {
  resize: vertical;
  min-height: 80px;
}

.tm-booking-radio-group {
  display: flex;
  flex-wrap: wrap;
  gap: 16px 24px;
}

.tm-booking-radio-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 500;
  color: var(--foreground);
}

.tm-booking-radio-label input[type="radio"] {
  width: 20px;
  height: 20px;
  cursor: pointer;
  border: 1px solid #94a3b8;
  border-radius: 50%;
  -webkit-appearance: none;
  appearance: none;
  background: #fff;
  flex-shrink: 0;
  position: relative;
}

.tm-booking-radio-label input[type="radio"]:checked {
  background: #94a3b8;
  box-shadow: inset 0 0 0 3px #fff;
}

.tm-booking-radio-block .tm-booking-radio-group {
  flex-direction: column;
}

.tm-booking-currency {
  position: relative;
  display: block;
  border-radius: 12px;
  border: 1px solid #94a3b8;
}

.tm-booking-currency-inner {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: stretch;
  border-radius: 11px;
  overflow: hidden;
  background: var(--Opacity-Neutral-Darkest-5, rgba(0, 0, 0, 0.05));
}

.tm-booking-currency-prefix {
  display: flex;
  align-items: center;
  padding: 12px 14px;
  background: rgba(0, 0, 0, 0.03);
  font-weight: 600;
  color: var(--foreground);
  border-right: 1px solid rgba(29, 35, 114, 0.2);
}

.tm-booking-currency .tm-booking-input {
  border: none;
  border-radius: 0;
  background: transparent;
  flex: 1;
}

.tm-booking-field-inline {
  margin-top: 8px;
}

.tm-booking-field-inline .tm-booking-input {
}

.tm-booking-sublabel {
  font-size: 14px;
  font-weight: 600;
  margin: 12px 0 4px;
}

.tm-booking-ip-section {
  margin-top: 24px;
  padding-top: 24px;
  border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.tm-booking-ip-title {
  margin: 0 0 20px;
  font-family: "Wix Madefor Display", Arial, sans-serif;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.4;
  color: #000;
}

.tm-booking-submit {
  margin-top: 16px;
  padding: 14px 28px;
  max-width: 320px;
  width: fit-content;
  align-self: flex-start;
  border-radius: 12px;
  background: linear-gradient(104deg, #003973 0%, #ff1919 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07), 4px 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
  color: #ffffff;
  font-family: "Wix Madefor Display", Arial, sans-serif;
  font-size: 16px;
  font-weight: 700;
  cursor: pointer;
  transition: opacity 0.15s ease;
}

.tm-booking-submit:hover {
  opacity: 0.92;
}

@media (max-width: 991px) {
  .tm-booking-layout {
    flex-direction: column;
    gap: 40px;
  }

  .tm-booking-intro,
  .tm-booking-fields {
    flex: 0 0 auto;
    width: 100%;
  }

  .tm-booking-title {
    font-size: clamp(36px, 8vw, 60px);
  }
}

@media (max-width: 767px) {
  .tm-booking-form-wrapper {
    padding: 40px 24px 64px;
  }
}

.tm-taxation-section {
  width: 100%;
  padding: 80px 0;
  background: var(--section-gradient);
}

.tm-taxation-section__inner {
  padding: 0;
}

.tm-taxation-section__label {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 64px;
  font-size: 16px;
  font-weight: 600;
}

.tm-taxation-section__content {
  display: flex;
  align-items: center;
  gap: 80px;
}

.tm-taxation-section__text,
.tm-taxation-section__media {
  flex: 1 1 50%;
}

.tm-taxation-section__text h2 {
  margin: 0 0 24px;
  color: #000000;
  font-family: var(--font-heading);
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 400;
  line-height: 1.2;
  letter-spacing: -0.01em;
}

.tm-taxation-section__text p {
  max-width: 500px;
  margin: 0 0 32px;
  color: #252525;
  font-size: 22px;
  line-height: 32px;
}

.tm-taxation-section__media img {
  width: 100%;
  border-radius: 16px;
  object-fit: cover;
}

.tm-top-footer {
  padding: 80px clamp(20px, 5vw, 80px);
  background: #1d2372;
}

.tm-top-footer__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.tm-top-footer__content {
  max-width: 576px;
  text-align: center;
}

.tm-top-footer__content h2 {
  margin: 0 0 16px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: clamp(28px, 3.5vw, 36px);
  font-weight: 400;
  line-height: 1.2;
}

.tm-top-footer__content p {
  margin: 0;
  color: rgba(255, 255, 255, 0.75);
  font-size: clamp(14px, 1.2vw, 16px);
  line-height: 1.6;
}

.tm-top-footer__actions {
  display: flex;
  align-items: center;
  gap: 16px;
  width: 100%;
  justify-content: center;
}

.tm-top-footer__primary,
.tm-top-footer__secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  border-radius: 12px;
  font-size: 14px;
}

.tm-top-footer__primary {
  height: 47px;
  padding: 10px 24px;
  font-weight: 600;
  color: #1d2372;
  background: #ffffff;
}

.tm-top-footer__secondary {
  height: 43px;
  padding: 8px 20px;
  border: 1px solid rgba(255, 255, 255, 0.35);
  font-weight: 500;
  color: #ffffff;
}

.tm-site-footer {
  background: linear-gradient(
          169deg, #1D2372 36.28%, #44327D 53.02%, #DC4026 67.84%);
}

.tm-site-footer__top {
  padding: 56px 24px 40px;
}

.tm-site-footer__brand {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 56px;
}

.tm-site-footer__brand img {
  width: auto;
  height: 56px;
}

.tm-site-footer__nav {
  display: none;
  align-items: center;
  flex-wrap: wrap;
  gap: 32px 48px;
}

.tm-site-footer__nav a,
.tm-site-footer__mobile-nav a {
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: rgba(255, 255, 255, 0.9);
}

.tm-site-footer__grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
  margin-bottom: 40px;
}

.tm-site-footer__label {
  margin: 0 0 8px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.tm-site-footer__text,
.tm-site-footer__contact a,
.tm-site-footer__download-copy,
.tm-site-footer__copyright,
.tm-site-footer__privacy-link {
  color: rgba(255, 255, 255, 0.7);
}

.tm-site-footer__text,
.tm-site-footer__contact a {
  font-size: 14px;
  line-height: 1.7;
}

.tm-site-footer__contact a {
  display: block;
  width: fit-content;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tm-site-footer__download-copy {
  margin: 0 0 16px;
  font-size: 14px;
}

.tm-store-badges {
  display: flex;
  gap: 12px;
}

.tm-store-badges img {
  width: auto;
  height: 62px;
  object-fit: contain;
}

.tm-site-footer__mobile-nav {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 16px 0 40px;
}

.tm-site-footer__partners {
  display: flex;
  justify-content: center;
  margin-bottom: 40px;
}

.tm-site-footer__partners img {
  width: 100%;
  max-width: 750px;
  height: auto;
  opacity: 0.9;
  object-fit: contain;
}

.tm-site-footer__bottom {
}

.tm-site-footer__bottom-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  border-top
  Shorthand property for setting border width, style and color

  Widely available across major browsers (Baseline since January 2018)
Learn more

Don't show: 1px solid var(--Color-Scheme-1-Border, rgba(0, 0, 0, 0.15));';
  border-top: 1px solid var(--Color-Scheme-1-Border, rgba(0, 0, 0, 0.15));
}

.tm-site-footer__copyright {
  margin: 0;
  font-size: 12px;
  letter-spacing: 0.04em;
  text-align: center;
}

.tm-site-footer__bottom-links {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px 24px;
}

.tm-site-footer__privacy-link {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-decoration: none;
  white-space: nowrap;
}

.tm-site-footer__privacy-link:hover {
  color: rgba(255, 255, 255, 0.9);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.tm-social-icons {
  display: flex;
  align-items: center;
  gap: 20px;
}

.tm-social-icons img {
  display: block;
}

.tm-social-icons--mobile {
  display: flex;
}


.tm-mobile-page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background: var(--Linear, linear-gradient(241deg, #1D2372 0%, #44327D 27.83%, #DC4026 66.03%, #FF9280 98.11%));
}

/* view=app on other pages (not Taxman Mobile Page): rounded main with margin */
body.tm-view-app-standalone .tm-mobile-page main {
  margin: 10px;
  overflow: hidden;
  border-radius: 16px;
}

.tm-mobile-page__logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 48px 24px 24px;
}

.tm-mobile-page__logo img {
  width: auto;
  height: 64px;
  margin-bottom: 12px;
}

.tm-mobile-page__logo p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 14px;
  letter-spacing: 0.04em;
}

.tm-mobile-page__section {
  padding: 0 20px;
}

.tm-mobile-page__section + .tm-mobile-page__section {
  margin-top: 0;
}

.tm-mobile-card {
  border-radius: 16px;
}

.tm-mobile-card--appointment {
  margin-bottom: 24px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);
  text-align: center;
}

.tm-mobile-card--appointment h2 {
  margin: 0 0 20px;
  color: var(--foreground);
  font-size: 24px;
  font-weight: 700;
  line-height: 1.4;
}

.tm-mobile-card--appointment .tm-btn-gradient-fill {
  width: 100%;
  height: auto;
  padding: 21px 20px;
  border-radius: 12px;
  font-size: 18px;
  background: linear-gradient(135deg, rgb(29, 35, 114) 0%, rgb(68, 50, 125) 50%, rgb(220, 64, 38) 100%);
  border-radius: 12px;
  background: linear-gradient(104deg, var(--Color-Regal-Blue, #003973) 0%, var(--Color-Torch-Red, #FF1919) 100%);
  box-shadow: 0 4px 4px 0 rgba(0, 0, 0, 0.07), 4px 4px 4px 0 rgba(255, 255, 255, 0.25) inset;
}

.tm-mobile-card--mission {
  margin-bottom: 40px;
  padding: 24px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(16px);
  border-radius: 10px;
  border: 1px solid var(--Opacity-Neutral-Darkest-10, rgba(0, 0, 0, 0.10));
  background: var(--Opacity-White-20, rgba(255, 255, 255, 0.20));
}

.tm-mobile-card--mission h3 {
  margin: 0 0 12px;
  color: #ffffff;
  font-family: var(--font-heading);
  font-size: 24px;
  font-weight: 400;
}

.tm-mobile-card--mission p {
  margin: 0;
  color: rgba(255, 255, 255, 0.8);
  font-size: 15px;
  line-height: 1.75;
}

.tm-mobile-page__footer {
  margin-top: auto;
  padding-top: 0;
}

.tm-mobile-page__footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 40px 24px 32px;
  text-align: center;
  border-radius: 30px 30px 0 0;
  background: linear-gradient(210deg, #1D2372 19.03%, #44327D 36.81%, #DC4026 61.21%, #FF9280 81.69%);
  box-shadow: 0 -8px 34px 0 rgba(0, 0, 0, 0.25);
}

.tm-mobile-page__footer-logo {
  width: auto;
  height: 56px;
  margin-bottom: 24px;
}

.tm-mobile-page__footer .tm-site-footer__label {
  margin-bottom: 4px;
}

.tm-mobile-page__footer .tm-site-footer__text {
  margin: 0 0 20px;
}

.tm-mobile-page__footer .tm-site-footer__contact a {
  margin: 0 auto 4px;
}

.tm-mobile-page__footer .tm-social-icons {
  margin: 0 0 24px;
}

.tm-mobile-page__partners {
  margin: 0 0 24px;
}

.tm-mobile-page__partners img {
  width: 100%;
  max-width: 320px;
  height: auto;
  opacity: 0.9;
}

.tm-mobile-page__copyright {
  margin: 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 12px;
  letter-spacing: 0.04em;
}

@media (min-width: 640px) {
  .tm-top-footer__actions {
    width: auto;
  }
}

@media (min-width: 1024px) {
  .tm-section-align {
    padding-left: 40px;
    padding-right: 40px;
  }

  .tm-desktop-nav,
  .tm-header-actions,
  .tm-site-footer__nav {
    display: flex;
  }

  .tm-menu-toggle,
  .tm-mobile-menu,
  .tm-site-footer__mobile-nav,
  .tm-social-icons--mobile {
    display: none;
  }

  .tm-choose-staff {
    padding: 64px 0;
  }

  .tm-choose-staff__inner {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    padding: 0;
  }

  .tm-choose-staff__notice {
    flex: 1 1 100%;
  }

  .tm-choose-staff__intro {
    flex: 0 0 280px;
    width: auto;
  }

  .tm-staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }

  .tm-top-footer__inner {
    flex-direction: row;
  }

  .tm-top-footer__content {
    text-align: left;
  }

  .tm-site-footer__brand {
    flex-direction: row;
    align-items: center;
  }

  .tm-site-footer__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 64px;
  }

  .tm-site-footer__bottom-inner {
    flex-direction: row;
  }

  .tm-site-footer__bottom-links {
    justify-content: flex-end;
  }

  .tm-site-footer__copyright {
    text-align: left;
  }
}

@media (min-width: 1200px) {
  .tm-staff-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (min-width: 768px) and (max-width: 1199px) {
  .tm-staff-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 32px;
  }
}

@media (max-width: 1199px) {
  .tm-taxation-section__content,
  .tm-top-footer__inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .tm-top-footer__actions {
    flex-direction: column;
    align-items: stretch;
  }
}

@media (max-width: 767px) {
  .tm-section-align {
    padding-left: 24px;
    padding-right: 24px;
  }

  .tm-choose-staff {
    padding: 40px 0 56px;
  }

  .tm-choose-staff__inner {
    gap: 32px;
  }

  .tm-choose-staff__notice {
    padding: 14px 16px;
    border-radius: 12px;
  }

  .tm-choose-staff__notice-text {
    font-size: 15px;
  }

  .tm-choose-staff .tm-section-title {
    font-size: 32px;
  }

  .tm-hero {
    min-height: 560px;
    height: 85vh;
  }

  .tm-hero__content h1 {
    max-width: 100%;
  }

  .tm-taxation-section__label {
    margin-bottom: 48px;
  }

  .tm-taxation-section__content {
    gap: 48px;
  }

  .tm-top-footer__actions {
    width: 100%;
  }

  .tm-top-footer__primary,
  .tm-top-footer__secondary {
    width: 100%;
  }
}

/* Base: mobile + tablet */
.width-hendler .e-con-inner {
  padding-left: 24px;
  padding-right: 24px;
}

/* Desktop (theme's tm-section-align desktop rule) */
@media (min-width: 1024px) {
  .width-hendler .e-con-inner {
    padding-left: 40px;
    padding-right: 40px;
  }
}

body .tm-consultant-calendar-page #cp_abcform_pform .listcal > div {
  border-color: unset !important;
}

div#ip_checklist .tm-booking-input-wrap {
  margin-bottom: 10px;
}

div#ip_checklist .tm-booking-radio-group {
  margin-bottom: 10px;
}

div#ip_checklist .tm-booking-currency {
  margin-bottom: 10px;
}
