:root {
  --navy: #06345f;
  --blue: #007ea8;
  --cyan: #08a6c7;
  --gold: #ffc928;
  --amber: #e39a08;
  --salmon: #007ea8;
  --salmon-dark: #06345f;
  --peach: #fff7d6;
  --peach-soft: #f2fbff;
  --ink: #0b2d47;
  --muted: #607889;
  --line: #c8dce7;
  --fs-hero: clamp(34px, 3.25vw, 48px);
  --fs-section-title: clamp(32px, 3.6vw, 50px);
  --fs-panel-title: clamp(31px, 3.25vw, 46px);
  --fs-subtitle: 15px;
  --fs-body: 13px;
  --fs-small: 11px;
  --fs-nav: 14px;
  --fs-card-title: 19px;
  --fs-card-body: 13px;
  --fs-faq-title: 18px;
  --fs-faq-answer: 17px;
  --fs-footer-title: 20px;
  --fs-footer-link: 14px;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  padding-top: var(--site-header-offset, 147px);
  color: var(--ink);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: #fff6f2;
  overflow-x: hidden;
}

.site-header {
  width: 100%;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1050;
}

html {
  width: 100%;
  scroll-padding-top: calc(var(--site-header-offset, 147px) + 16px);
  overflow-x: hidden;
}

.container-xxl {
  max-width: 1400px;
}

a {
  text-decoration: none;
}

.main-nav {
  width: 100%;
  min-height: 95px;
  background: #fff;
  box-shadow: 0 3px 16px rgba(91, 54, 43, 0.06);
  position: relative;
  z-index: 40;
}

.brand-mark {
  width: 58px;
  height: 58px;
  color: var(--salmon);
  display: grid;
  place-items: center;
  font-size: 45px;
}

.brand-title {
  display: block;
  color: #5b4a42;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
}

.brand-title strong {
  color: var(--salmon);
}

.brand-tagline {
  display: block;
  margin-top: 3px;
  color: #7d665e;
  font-size: 9px;
  font-weight: 700;
}

.navbar .nav-link {
  color: #4e4b49;
  font-size: 16px;
  font-weight: 800;
  padding-inline: 0;
}

.navbar .nav-link:hover,
.navbar .nav-link.active {
  color: var(--salmon-dark);
}

.btn-join {
  min-width: 116px;
  padding: 13px 24px;
  min-height: 45px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  background: #df876b;
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 0 #ead2c8, 0 10px 20px rgba(189, 94, 63, 0.16);
}

.btn-join:hover {
  color: #fff;
  background: var(--salmon-dark);
}

.btn-cart {
  min-width: 64px;
  min-height: 45px;
  padding: 0 19px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: #06345f;
  background: #fff;
  border: 1px solid #c8dce7;
  border-radius: 999px;
  font-weight: 900;
  box-shadow: 0 4px 0 #d7e6ee, 0 10px 20px rgba(0, 126, 168, 0.12);
}

.btn-cart:hover,
.btn-cart:focus-visible {
  color: #fff;
  background: var(--salmon-dark);
  border-color: var(--salmon-dark);
}

.btn-cart em {
  min-width: 21px;
  height: 21px;
  padding: 0 6px;
  display: inline-grid;
  place-items: center;
  color: #fff;
  background: #dc2626;
  border-radius: 999px;
  font-size: 11px;
  font-style: normal;
  font-weight: 900;
  line-height: 1;
}

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

.header-logout-form {
  margin: 0;
  display: inline-flex;
}

.header-location {
  min-width: 260px;
  max-width: 430px;
  padding-inline: 30px;
  flex: 1 1 430px;
  justify-content: center;
}

.location-search-form {
  width: 100%;
  height: 46px;
  padding: 4px 5px 4px 14px;
  background: #fff8f5;
  border: 1px solid #edc8ba;
  border-radius: 999px;
  display: flex;
  align-items: center;
  gap: 9px;
  box-shadow: 0 7px 20px rgba(113, 58, 40, 0.08);
}

.location-search-form > i {
  color: var(--salmon-dark);
  font-size: 16px;
}

.location-search-form input {
  min-width: 0;
  padding: 7px 0;
  color: #4e423d;
  background: transparent;
  border: 0;
  outline: 0;
  flex: 1;
  font-family: inherit;
  font-size: 12px;
  font-weight: 650;
}

.location-search-form input::-webkit-search-cancel-button {
  display: none;
}

.location-search-form button {
  width: 36px;
  height: 36px;
  padding: 0;
  color: #fff;
  background: var(--salmon-dark);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 36px;
}

.location-search-form button:hover,
.location-search-form button:focus-visible {
  background: #ad5235;
  outline: 2px solid #efc7b8;
  outline-offset: 2px;
}

.mobile-location-row {
  width: 100%;
  padding: 0 0 10px;
  background: #fff;
}

.mobile-location-row .location-search-form {
  height: 42px;
}

.btn-book {
  min-width: 126px;
  padding: 13px 24px;
  color: #fff;
  background: var(--salmon-dark);
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 0 #ead2c8, 0 10px 20px rgba(189, 94, 63, 0.16);
}

.btn-book:hover {
  color: #fff;
  background: #ad5235;
}

.mobile-book-btn {
  box-shadow: none;
}

.floating-book-button {
  position: fixed;
  top: 50%;
  right: 0;
  z-index: 1040;
  min-height: 128px;
  padding: 16px 11px;
  color: #fff;
  background: linear-gradient(180deg, #db7d5b, #bd5f40);
  border: 0;
  border-radius: 14px 0 0 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  box-shadow: -8px 10px 28px rgba(92, 44, 29, 0.25);
  transform: translateY(-50%);
  writing-mode: vertical-rl;
  text-orientation: mixed;
  font-family: inherit;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.5px;
  cursor: pointer;
  transition: background 0.2s ease, padding 0.2s ease, box-shadow 0.2s ease;
}

.floating-book-button i {
  font-size: 16px;
}

.floating-book-button:hover,
.floating-book-button:focus-visible {
  padding-right: 14px;
  color: #fff;
  background: linear-gradient(180deg, #c96949, #a94e32);
  box-shadow: -10px 12px 32px rgba(92, 44, 29, 0.32);
  outline: 2px solid #f3c9b9;
  outline-offset: 2px;
}

.quick-contact-buttons {
  position: fixed;
  left: 18px;
  bottom: 20px;
  z-index: 1045;
  display: grid;
  gap: 10px;
}

.quick-contact-btn {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  color: #fff;
  border-radius: 50%;
  box-shadow: 0 12px 28px rgba(6, 52, 95, 0.22);
  font-size: 22px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.quick-contact-btn.whatsapp {
  background: #25d366;
}

.quick-contact-btn.call {
  color: #fff;
  background: var(--gold);
}

.quick-contact-btn:hover,
.quick-contact-btn:focus-visible {
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 16px 34px rgba(6, 52, 95, 0.28);
  outline-offset: 2px;
}

.service-nav {
  width: 100%;
  position: relative;
  z-index: 20;
  background: linear-gradient(90deg, #d87956 0%, #dc7d59 50%, #d87956 100%);
  box-shadow: 0 7px 22px rgba(113, 58, 40, 0.13);
}

.service-list {
  position: relative;
  min-height: 52px;
  margin: 0;
  padding: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  overflow: visible;
  scrollbar-width: none;
}

.service-list::-webkit-scrollbar {
  display: none;
}

.service-language-item {
  position: absolute;
  top: 0;
  right: 0;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  padding: 0 4px;
  overflow: visible;
}

.service-language-item .language-switcher {
  min-height: 52px;
  padding: 0;
  gap: 8px;
  background: transparent;
  border: 0;
  border-radius: 0;
  box-shadow: none;
}

.service-language-item .language-switcher > i {
  font-size: 16px;
}

.service-language-item .language-current {
  min-width: 116px;
  height: 36px;
  padding: 0 12px 0 14px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 3px 0 rgba(6, 52, 95, 0.16);
}

.service-language-item .language-current:hover,
.service-language-item .language-current:focus-visible {
  background: #006f9d;
  outline: 2px solid rgba(255, 255, 255, 0.78);
  outline-offset: 2px;
}

.service-language-item .language-menu {
  left: auto;
  right: 0;
  top: calc(100% + 4px);
  min-width: 150px;
  padding: 7px;
  border-color: #cbddeb;
  border-radius: 8px;
  box-shadow: 0 16px 32px rgba(6, 52, 95, 0.18);
  transform: none;
}

.service-language-item .language-option {
  min-height: 38px;
  padding: 0 12px;
  border-radius: 7px;
  font-size: 14px;
  font-weight: 800;
}

.service-nav .service-list a,
.services-trigger {
  color: var(--navy);
  display: inline-flex;
  align-items: center;
  gap: 7px;
  white-space: nowrap;
  padding: 18px 17px 16px;
  border: 0;
  background: transparent;
  font-family: inherit;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.15;
  position: relative;
  transition: background 0.2s ease, opacity 0.2s ease;
}

.service-nav .service-list a:hover,
.services-trigger:hover,
.services-trigger:focus-visible {
  color: var(--navy);
  background: rgba(255, 255, 255, 0.09);
  outline: 0;
}

.service-nav .service-list a::after,
.services-trigger::after {
  content: "";
  position: absolute;
  left: 17px;
  right: 17px;
  bottom: 10px;
  height: 2px;
  background: #fff;
  border-radius: 99px;
  opacity: 0;
  transform: scaleX(0.35);
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.service-nav .service-list a:hover::after,
.service-nav .service-list a.active::after,
.services-trigger:hover::after,
.services-trigger.active::after,
.service-nav.services-open .services-trigger::after {
  opacity: 1;
  transform: scaleX(1);
}

.services-trigger i {
  font-size: 10px;
  transition: transform 0.25s ease;
}

.mobile-services-menu {
  display: none;
}

.service-nav.services-open .services-trigger i {
  transform: rotate(180deg);
}

.services-mega-menu {
  position: absolute;
  top: calc(100% - 1px);
  left: 50%;
  width: min(1080px, calc(100vw - 32px));
  padding: 26px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid rgba(216, 121, 86, 0.18);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(74, 42, 31, 0.2);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translate(-50%, -8px);
  transition: opacity 0.2s ease, visibility 0.2s ease, transform 0.2s ease;
}

.services-mega-menu::before {
  content: "";
  position: absolute;
  top: -7px;
  left: 50%;
  width: 14px;
  height: 14px;
  background: #fff;
  border-top: 1px solid rgba(216, 121, 86, 0.18);
  border-left: 1px solid rgba(216, 121, 86, 0.18);
  transform: translateX(-50%) rotate(45deg);
}

.service-nav.services-open .services-mega-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translate(-50%, 0);
}

/* Two-level desktop services flyout */
.services-mega-menu {
  width: min(760px, calc(100vw - 32px));
  padding: 0;
  display: grid;
  grid-template-columns: 205px minmax(0, 1fr);
  background: transparent;
  border: 0;
  border-radius: 12px;
  box-shadow: 0 22px 55px rgba(74, 42, 31, 0.24);
}

.services-mega-menu::before {
  display: none;
}

.service-flyout-categories {
  padding: 8px 0;
  background: #dc7d59;
  border-radius: 12px 0 0 12px;
  overflow: hidden;
}

.service-audience-tab,
.service-flyout-all {
  width: 100%;
  min-height: 53px;
  padding: 12px 15px;
  color: #fff;
  background: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  text-align: left;
  font-family: inherit;
  font-size: 13px;
  font-weight: 750;
  cursor: pointer;
  transition: color 0.18s ease, background 0.18s ease;
}

.service-audience-tab > span,
.service-flyout-all > span {
  display: inline-flex;
  align-items: center;
  gap: 9px;
}

.service-audience-tab > span > i,
.service-flyout-all > span > i {
  width: 20px;
  font-size: 16px;
  text-align: center;
}

.service-audience-tab:hover,
.service-audience-tab:focus-visible,
.service-audience-tab.is-active {
  color: #8e432d;
  background: #fff;
  outline: 0;
}

.service-audience-tab.is-active > .bi-chevron-right {
  transform: translateX(2px);
}

.service-flyout-all {
  margin-top: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.service-flyout-all:hover,
.service-flyout-all:focus-visible {
  color: #fff;
  background: rgba(111, 48, 29, 0.18);
  outline: 0;
}

.service-flyout-panels {
  min-height: 360px;
  max-height: min(70vh, 620px);
  padding: 23px 24px 20px;
  background: #fff;
  border: 1px solid #efd8cf;
  border-left: 0;
  border-radius: 0 12px 12px 0;
  overflow-y: auto;
}

.service-flyout-panel[hidden] {
  display: none;
}

.service-flyout-heading {
  margin-bottom: 17px;
  padding-bottom: 15px;
  border-bottom: 1px solid #f0ded6;
  display: flex;
  align-items: center;
  gap: 11px;
}

.service-flyout-icon {
  width: 39px;
  height: 39px;
  flex: 0 0 39px;
  color: #fff;
  background: linear-gradient(135deg, #df8a69, #c86747);
  border-radius: 10px;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.service-flyout-heading small {
  color: #9b8279;
  display: block;
  font-size: 9px;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.service-flyout-heading h3 {
  margin: 2px 0 0;
  color: #3d3633;
  font-size: 18px;
  font-weight: 800;
}

.service-flyout-links {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px;
}

.service-flyout-service-group + .service-flyout-service-group {
  margin-top: 20px;
}

.service-flyout-service-group h4 {
  margin: 0 0 8px;
  color: #4b413d;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.4px;
}

.service-flyout-links a {
  min-height: 40px;
  padding: 9px 10px;
  color: #665650;
  background: #fff8f5;
  border: 1px solid #f1dfd7;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  transition: color 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.service-flyout-links a i {
  color: #c86747;
  font-size: 10px;
  transition: transform 0.18s ease;
}

.service-flyout-links a:hover,
.service-flyout-links a:focus-visible {
  color: #fff;
  background: var(--salmon);
  border-color: var(--salmon);
  outline: 0;
}

.service-flyout-links a:hover i,
.service-flyout-links a:focus-visible i {
  color: #fff;
  transform: translateX(2px);
}

.service-flyout-view {
  margin-top: 15px;
  color: var(--salmon-dark);
  display: inline-flex;
  font-size: 11px;
  font-weight: 800;
}

.mega-menu-heading {
  margin-bottom: 20px;
  padding: 0 4px 18px;
  border-bottom: 1px solid #f0ded6;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
}

.mega-menu-heading span {
  color: var(--salmon-dark);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 1.8px;
  text-transform: uppercase;
}

.mega-menu-heading h2 {
  margin: 5px 0 0;
  color: #332e2c;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 24px;
}

.mega-menu-heading > a {
  color: var(--salmon-dark);
  font-size: 12px;
  font-weight: 800;
  white-space: nowrap;
}

.mega-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.audience-services {
  padding: 20px;
  background: #fff8f5;
  border: 1px solid #f3dfd6;
  border-radius: 15px;
}

.audience-title {
  margin-bottom: 18px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.audience-icon {
  width: 42px;
  height: 42px;
  color: #fff;
  background: linear-gradient(135deg, #df8a69, #c86747);
  border-radius: 12px;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.audience-title small {
  color: #9b8279;
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.audience-title h3 {
  margin: 1px 0 0;
  color: #3d3633;
  font-size: 18px;
  font-weight: 800;
}

.service-group + .service-group {
  margin-top: 15px;
}

.service-group h4 {
  margin: 0 0 7px;
  color: #4b413d;
  font-size: 12px;
  font-weight: 800;
}

.sub-service-links {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}

.sub-service-links a {
  padding: 6px 9px;
  color: #76645d;
  background: #fff;
  border: 1px solid #efddd5;
  border-radius: 7px;
  font-size: 10px;
  font-weight: 600;
  transition: color 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.sub-service-links a:hover {
  color: #fff;
  background: var(--salmon);
  border-color: var(--salmon);
}

.hero-section {
  width: 100%;
  min-height: 582px;
  padding: 62px 0 82px;
  background:
    radial-gradient(circle at 31% 5%, rgba(246, 203, 181, 0.58) 0 98px, transparent 100px),
    radial-gradient(circle at 83% 28%, rgba(248, 220, 206, 0.8) 0 130px, transparent 132px),
    linear-gradient(103deg, #fffaf8 0%, #fff1eb 50%, #fff7f3 100%);
  position: relative;
  overflow: hidden;
}

.hero-section::after {
  content: "";
  position: absolute;
  right: -75px;
  bottom: -93px;
  width: 315px;
  height: 315px;
  border: 1px solid rgba(217, 120, 85, 0.12);
  border-radius: 50%;
}

.eyebrow {
  margin-bottom: 27px;
  color: var(--salmon);
  font-size: 25px;
  font-style: italic;
  font-weight: 900;
  text-transform: uppercase;
}

.eyebrow span,
.hero-section h1 span,
.section-heading h2 strong {
  color: var(--salmon-dark);
}

.hero-section h1 {
  max-width: 500px;
  margin: 0;
  color: #46413f;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 4.2vw, 58px);
  font-weight: 700;
  line-height: 1.12;
}

.hero-copy {
  max-width: 455px;
  margin: 20px 0 12px;
  color: #6e5f59;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.45;
}

.glow-pill {
  width: fit-content;
  max-width: 100%;
  margin-bottom: 18px;
  padding: 8px 14px;
  color: #fff;
  background: #04436e;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
}

.store-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.store-badge {
  min-width: 120px;
  min-height: 38px;
  padding: 5px 10px;
  color: #fff;
  background: #080808;
  border-radius: 5px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  font-size: 9px;
  line-height: 1.05;
}

.store-badge i {
  font-size: 22px;
}

.store-badge strong {
  font-size: 15px;
}

.hero-visual {
  min-height: 430px;
  position: relative;
}

.portrait-halo {
  position: absolute;
  left: 10%;
  right: 37%;
  bottom: 0;
  height: 440px;
  background: linear-gradient(180deg, rgba(255, 247, 241, 0.92), rgba(241, 211, 192, 0.86));
  border-radius: 240px 240px 8px 8px;
  box-shadow: inset 0 0 0 1px rgba(229, 179, 157, 0.24);
}

.hero-person {
  position: absolute;
  left: 13%;
  bottom: 0;
  width: min(46%);
  height: 392px;
  object-fit: cover;
  object-position: center top;
  border-radius: 240px 240px 8px 8px;
  filter: drop-shadow(0 18px 24px rgba(130, 81, 63, 0.15));
}

.phone-mockup {
  position: absolute;
  right: 12%;
  top: 8px;
  width: 245px;
  min-width: 245px;
  padding: 16px 15px;
  background: #fff;
  border: 10px solid #f5f5f5;
  border-radius: 32px;
  box-shadow: 0 18px 36px rgba(100, 70, 60, 0.18);
  transform: rotate(6deg);
  z-index: 2;
}

.phone-top,
.phone-greeting,
.booking-row,
.booking-card,
.phone-grid {
  display: flex;
  align-items: center;
}

.phone-top,
.booking-row {
  justify-content: space-between;
  color: #111;
  font-size: 10px;
  font-weight: 800;
}

.phone-greeting {
  gap: 9px;
  margin: 18px 0 12px;
  font-size: 10px;
  line-height: 1.25;
}

.avatar {
  width: 28px;
  height: 28px;
  background: url("https://images.unsplash.com/photo-1494790108377-be9c29b29330?auto=format&fit=crop&w=80&q=80") center/cover;
  border-radius: 50%;
}

.phone-search {
  padding: 9px 10px;
  color: #96908d;
  background: #faf5f2;
  border-radius: 8px;
  font-size: 9px;
}

.booking-row {
  margin: 15px 0 8px;
}

.booking-row a {
  color: var(--salmon);
}

.booking-card {
  gap: 9px;
  padding: 10px;
  color: #625450;
  background: #fff4ec;
  border-radius: 10px;
  font-size: 9px;
}

.booking-card i {
  color: var(--salmon);
  font-size: 19px;
}

.phone-grid {
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.phone-grid span {
  width: calc(33.333% - 6px);
  color: #6c5d59;
  font-size: 8px;
  text-align: center;
}

.phone-grid i {
  width: 28px;
  height: 28px;
  margin: 0 auto 4px;
  color: var(--salmon);
  background: #fff4ec;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
}

.discount-card,
.discount-x,
.floating-card,
.beauty-bag,
.heart-bubble {
  position: absolute;
  z-index: 3;
  box-shadow: 0 16px 26px rgba(124, 73, 55, 0.16);
}

.discount-card {
  left: 8%;
  top: 150px;
  padding: 15px 15px 14px;
  color: #fff;
  background: var(--salmon);
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
  line-height: 1;
  transform: rotate(-3deg);
}

.discount-card span {
  display: block;
  margin-top: 4px;
  font-size: 10px;
}

.discount-x {
  left: calc(38% + 127px);
  top: 106px;
  width: 34px;
  height: 34px;
  color: #fff;
  background: #34302f;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 13px;
  font-weight: 900;
  z-index: 4;
}

.heart-bubble {
  left: 17%;
  top: 78px;
  width: 46px;
  height: 46px;
  color: var(--salmon);
  background: #fff;
  border: 1px solid #f4c4b2;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 23px;
}

.floating-card {
  right: 0;
  width: 177px;
  min-height: 70px;
  padding: 13px 15px;
  color: #fff;
  border-radius: 10px;
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 12px;
  font-weight: 800;
  line-height: 1.2;
}

.floating-card i {
  font-size: 22px;
}

.candy {
  top: 104px;
  background: #05426d;
}

.confirm {
  right: 2%;
  bottom: 91px;
  color:#000;
  background: #ffcc2d;
}

.beauty-bag {
  left: 19%;
  bottom: 33px;
  padding: 13px 15px;
  color: #fff;
  background: #016e98;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 500;
}

.beauty-bag i {
  margin-right: 10px;
  color: #ef8a62;
}

.hero-arrow {
  position: absolute;
  left: 48%;
  bottom: 47px;
  width: 92px;
  height: 64px;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  border-radius: 0 0 56px 0;
  transform: rotate(16deg);
  z-index: 3;
}

.hero-arrow::after {
  content: "";
  position: absolute;
  right: -6px;
  bottom: -9px;
  width: 18px;
  height: 18px;
  border-right: 4px solid rgba(255, 255, 255, 0.95);
  border-bottom: 4px solid rgba(255, 255, 255, 0.95);
  transform: rotate(-18deg);
}

.hero-dots {
  position: absolute;
  left: 42%;
  bottom: 36px;
  display: flex;
  gap: 8px;
  z-index: 5;
}

.hero-dots span {
  width: 8px;
  height: 8px;
  background: #e7d5cc;
  border-radius: 50%;
}

.hero-dots span:first-child {
  background: var(--salmon);
}

.hero-slide {
  position: absolute;
  left: 13%;
  bottom: 0;
  width: min(47%);
  height: 420px;
  opacity: 0;
  pointer-events: none;
  transition: opacity .55s ease, transform .55s ease;
  transform: translateY(8px);
}

.hero-slide.is-active {
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: none;
}

.hero-slide .hero-person {
  position: static;
  width: 100%;
  height: 100%;
}

.hero-dots button {
  width: 8px;
  height: 8px;
  padding: 0;
  background: #e7d5cc;
  border: 0;
  border-radius: 50%;
}

.hero-dots button.is-active {
  background: var(--salmon);
}

.hero-slider-empty {
  position: absolute;
  left: 13%;
  bottom: 0;
  width: min(45%, 365px);
  height: 392px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  color: #806c63;
  background: #fff4ef;
  border-radius: 185px 185px 8px 8px;
  text-align: center;
}

.hero-slider-empty i {
  font-size: 34px;
}

.search-panel {
  position: absolute;
  left: 50%;
  bottom: -55px;
  width: min(930px, calc(100% - 32px));
  min-height: 70px;
  padding: 10px;
  background: #fff;
  border: 1px solid rgba(0, 126, 168, 0.08);
  border-radius: 12px;
  display: flex;
  align-items: center;
  transform: translateX(-50%);
  box-shadow: 0 16px 38px rgba(108, 75, 62, 0.14);
  z-index: 4;
}

.search-panel:focus-within {
  border-color: rgba(0, 126, 168, 0.3);
  box-shadow: 0 16px 38px rgba(0, 72, 105, 0.16);
}

.location-select {
  flex: 0 0 300px;
  min-width: 300px;
  padding: 0 18px;
  border-right: 1px solid #eee1dc;
  display: flex;
  align-items: center;
  gap: 12px;
}

.location-select i {
  color: #776a66;
}

.location-select select {
  min-width: 0;
  cursor: pointer;
  text-overflow: ellipsis;
}

.location-select select,
.search-panel input {
  width: 100%;
  height: 50px;
  color: #4b4542;
  background: transparent;
  border: 0;
  outline: 0;
  font-weight: 700;
}

.search-panel input {
  padding: 0 22px;
  font-weight: 500;
}

.search-panel button {
  flex: 0 0 58px;
  width: 58px;
  height: 50px;
  color: #fff;
  background: var(--salmon);
  border: 0;
  border-radius: 9px;
  display: inline-grid;
  place-items: center;
  padding: 0;
  font-weight: 800;
}

.search-panel button i {
  font-size: 22px;
  line-height: 1;
}

.search-panel button:hover {
  color: #fff;
  background: var(--salmon-dark);
}

.pamper-section {
  width: 100%;
  position: relative;
  padding: 92px 0 32px;
  background:
    radial-gradient(circle at 4% 13%, rgba(255, 223, 85, 0.46) 0 118px, transparent 120px),
    radial-gradient(circle at 96% 82%, rgba(255, 223, 85, 0.5) 0 135px, transparent 137px),
    linear-gradient(180deg, #fff9f6 0%, #fff2ef 100%);
  overflow: hidden;
}

.section-heading span {
  color: #b58a7d;
  font-size: 15px;
  font-weight: 700;
}

.section-heading h2 {
  margin: 8px 0 7px;
  color: #4a403d;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(38px, 4.1vw, 56px);
  font-weight: 700;
}

.section-heading p {
  color: #8b7771;
  font-size: 13px;
  font-weight: 600;
}

.service-row {
  margin-top: 56px;
  display: grid;
  grid-template-columns: 150px 40px minmax(0, 1fr);
  align-items: center;
  gap: 28px;
}

.audience-card {
  min-height: 142px;
  padding: 17px 13px;
  color: #05406b;
  background: #fff8f4;
  border: 1px solid #05406b;
  border-radius: 12px;
  display: grid;
  align-content: center;
  justify-items: center;
  text-align: center;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 22px;
  line-height: 1.03;
  box-shadow: 0 16px 30px rgba(133, 86, 70, 0.06);
}

.audience-card i {
  margin-bottom: 8px;
  color: #05406b;
  font-size: 37px;
}

.audience-card strong {
  color: var(--salmon);
  font-size: 32px;
}

.round-arrow {
  width: 34px;
  height: 34px;
  color: #fff;
  background: var(--salmon);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 20px;
}

.service-slider-controls {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 9px;
}

.service-slider-controls .service-prev {
  display: none;
}

.category-track {
  display: grid;
  grid-template-columns: repeat(8, minmax(100px, 1fr));
  align-items: start;
  gap: 17px;
}

.category-item {
  min-width: 0;
  color: #4f4642;
  text-align: center;
  display: block;
  position: relative;
  font-size: 10px;
  font-weight: 700;
}

.category-item img {
  width: 120px;
  height: 120px;
  margin: 0 auto 10px;
  object-fit: cover;
  border: 5px solid #fff7f2;
  border-radius: 50%;
  display: block;
  box-shadow: 0 10px 20px rgba(126, 82, 64, 0.13);
}

.category-item i {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 34px;
  height: 34px;
  margin-left: -51px;
  color: var(--salmon);
  background: #fff8f4;
  border: 1px solid #05406b;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
}

.category-item span {
  min-height: 28px;
  display: block;
}

.divider {
  height: 1px;
  margin: 31px 0 -15px;
  background: linear-gradient(90deg, transparent, #edc8ba, transparent);
  display: grid;
  place-items: center;
}

.category-item .category-icon {
  position: absolute;
  top: -6px;
  left: 50%;
  width: 34px;
  height: 34px;
  margin: 0 0 0 -51px;
  padding: 6px;
  object-fit: contain;
  background: #fff8f4;
  border: 1px solid #05406b;
  border-radius: 50%;
  box-shadow: none;
}

.service-row-empty {
  grid-column: 1 / -1;
  margin: 45px 0;
  color: #806c63;
  font-size: 13px;
  font-weight: 600;
}

.divider span {
  width: 12px;
  height: 12px;
  background: #fff8f4;
  border: 1px solid #edc8ba;
  transform: rotate(45deg);
}

.trust-strip {
  width: min(610px, 100%);
  margin: 57px auto 0;
  padding: 16px 35px;
  background: #ffe8df;
  border-radius: 999px;
  display: flex;
  justify-content: space-between;
  gap: 21px;
}

.trust-strip div {
  color: #6b5953;
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1.25;
}

.trust-strip i {
  width: 36px;
  height: 36px;
  color: #6b5953;
  border: 1px solid #bfa298;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 18px;
}

.hero-leaf,
.decor-leaf {
  position: absolute;
  pointer-events: none;
  opacity: 0.55;
}

.hero-leaf-left,
.leaf-left {
  left: -38px;
  bottom: -22px;
  width: 210px;
  height: 210px;
  background: radial-gradient(ellipse at 75% 50%, rgba(0, 126, 168, 0.28) 0 22%, transparent 24%) 0 0 / 70px 70px;
  transform: rotate(-25deg);
}

.hero-leaf-right,
.leaf-right {
  right: -26px;
  bottom: 10px;
  width: 190px;
  height: 190px;
  background: radial-gradient(ellipse at 25% 50%, rgba(0, 126, 168, 0.24) 0 22%, transparent 24%) 0 0 / 64px 64px;
  transform: rotate(28deg);
}

.offers-artists-section {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.offers-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 48px 0 54px;
  background:
    radial-gradient(circle at 10% 8%, rgba(239, 208, 190, 0.3) 0 95px, transparent 96px),
    radial-gradient(circle at 88% 59%, rgba(239, 208, 190, 0.36) 0 155px, transparent 156px),
    linear-gradient(180deg, #fff8f4 0%, #fff5f0 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.offers-panel .container-xxl {
  position: relative;
  z-index: 1;
  padding-inline: 24px;
}

.offers-artists-section::before {
  content: none;
}

.offer-shape,
.offer-leaf {
  position: absolute;
  pointer-events: none;
}

.shape-top-right {
  right: 0;
  top: 0;
  width: 260px;
  height: 178px;
  background: #ffcf30;
  border-radius: 0 0 0 130px;
  opacity: 0.75;
}

.shape-mid-right {
  right: -82px;
  top: 578px;
  width: 330px;
  height: 190px;
  background: #ffcf30;
  border-radius: 140px 0 0 140px;
  opacity: 0.58;
}

.shape-bottom-left {
  left: -92px;
  bottom: -35px;
  width: 245px;
  height: 150px;
  background: #ffcf30;
  border-radius: 0 120px 0 0;
  opacity: 0.5;
}

.offer-leaf-top,
.offer-leaf-mid {
  left: 48px;
  width: 210px;
  height: 210px;
  opacity: 0.42;
  background: radial-gradient(ellipse at 75% 50%, rgba(0, 126, 168, 0.3) 0 22%, transparent 24%) 0 0 / 66px 66px;
  transform: rotate(-22deg);
}

.offer-leaf-top {
  top: 10px;
}

.offer-leaf-mid {
  top: 682px;
  left: 44px;
  transform: rotate(-62deg);
}

.offer-heading h2,
.artist-heading h2 {
  margin: 0;
  color: var(--salmon-dark);
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(44px, 5vw, 70px);
  font-weight: 700;
  line-height: 1.05;
  font-style: italic;
}

.offer-heading h2 span,
.artist-heading h2 {
  color: #2d2b2b;
  font-style: normal;
}

.offer-heading p {
  margin: 16px 0 0;
  color: #5e5652;
  font-size: 20px;
  font-weight: 800;
}

.offer-heading p strong,
.artist-heading strong,
.artist-heading p i {
  color: var(--salmon-dark);
}

.offer-grid {
  position: relative;
  z-index: 1;
  margin: 45px auto 0;
  width: min(1180px, 100%);
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 26px;
}

.deal-card,
.artist-card {
  position: relative;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid #f0ded6;
  border-radius: 13px;
  text-align: center;
  box-shadow: 0 16px 32px rgba(116, 74, 56, 0.08);
  overflow: hidden;
}

.deal-card {
  min-height: 0;
  padding-bottom: 14px;
}

.deal-card img {
  width: 100%;
  height: 186px;
  object-fit: cover;
  object-position: center;
  display: block;
  border-radius: 13px 13px 48% 48%;
}

.deal-card:nth-child(1) img {
  object-position: center 58%;
}

.deal-card:nth-child(2) img {
  object-position: center 38%;
}

.deal-card:nth-child(3) img,
.deal-card:nth-child(4) img {
  object-position: center 35%;
}

.deal-discount {
  position: absolute;
  left: 0;
  top: 0;
  width: 84px;
  height: 84px;
  color: #fff;
  background: #05436e;
  border-radius: 0 0 100% 0;
  padding: 15px 0 0 15px;
  text-align: left;
  font-size: 22px;
  font-weight: 900;
  line-height: 1.1;
  z-index: 2;
}

.deal-discount br + * {
  font-size: 14px;
}

.deal-icon {
  width: 72px;
  height: 72px;
  margin: -35px auto 0;
  color: var(--salmon-dark);
  background: #fff;
  border: 1px solid #f0d9ce;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 31px;
  box-shadow: 0 8px 18px rgba(126, 82, 64, 0.12);
  position: relative;
  z-index: 3;
}

.deal-card .deal-icon img {
  width: 46px;
  height: 46px;
  margin: 0;
  padding: 5px;
  object-fit: contain;
  border: 0;
  border-radius: 8px;
  box-shadow: none;
}

.offer-empty {
  grid-column: 1 / -1;
  padding: 35px;
  color: #77706d;
  background: rgba(255, 252, 249, 0.92);
  border: 1px solid #f0ded6;
  border-radius: 13px;
  text-align: center;
}

.deal-card h3 {
  margin: 17px 0 10px;
  color: var(--salmon-dark);
  font-size: 22px;
  font-weight: 900;
}

.deal-card p {
  min-height: 42px;
  margin: 0;
  color: #77706d;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.5;
}

.card-divider {
  position: relative;
  width: 76%;
  height: 1px;
  margin: 14px auto 12px;
  background: linear-gradient(90deg, transparent, #efd6cb, transparent);
}

.card-divider::after {
  content: "";
  position: absolute;
  left: 50%;
  top: -4px;
  width: 8px;
  height: 8px;
  background: #efd6cb;
  transform: translateX(-50%) rotate(45deg);
}

.price-line {
  margin-bottom: 0;
  display: flex;
  justify-content: center;
  align-items: baseline;
  gap: 9px;
  flex-wrap: nowrap;
  white-space: nowrap;
}

.price-line strong {
  color: var(--salmon-dark);
  font-size: 22px;
  font-weight: 900;
  line-height: 1;
}

.price-line del {
  color: #8d8683;
  font-size: 13px;
  font-weight: 800;
  line-height: 1;
}

.outline-action {
  width: auto;
  min-width: 82px;
  min-height: 34px;
  margin: 0;
  padding: 0 14px;
  color: var(--salmon-dark);
  background: transparent;
  border: 1.5px solid #dd8c70;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1;
  white-space: nowrap;
  box-shadow: 0 8px 18px rgba(221, 140, 112, 0.08);
  transition: color 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.deal-card-actions {
  width: calc(100% - 40px);
  margin: 0 auto 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding-top: 4px;
}

.outline-action i {
  flex: 0 0 auto;
  font-size: 14px;
  line-height: 1;
}

.outline-action:hover {
  color: #fff;
  background: var(--salmon);
  border-color: var(--salmon);
  transform: translateY(-1px);
}

.artist-heading {
  position: relative;
  z-index: 1;
  margin-top: 42px;
}

.artist-heading span {
  color: var(--salmon-dark);
  font-size: 22px;
  font-weight: 900;
}

.artist-heading h2 {
  margin-top: 22px;
  font-size: clamp(44px, 5vw, 66px);
}

.artist-heading p {
  margin: 19px 0 0;
  color: #6f6763;
  font-size: 18px;
  font-weight: 800;
}

.artist-slider {
  position: relative;
  z-index: 1;
  width: min(1180px, 100%);
  margin: 42px auto 0;
  overflow: hidden;
}

.artist-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.artist-card {
  flex: 0 0 calc((100% - 90px) / 4);
  min-height: 375px;
  padding: 28px 28px 26px;
  overflow: visible;
}

.artist-card::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 34px;
  width: 150px;
  height: 150px;
  background: #eee2dc;
  border-radius: 50%;
  transform: translateX(-50%);
}

.artist-card img,
.artist-avatar {
  position: relative;
  z-index: 2;
  width: 150px;
  height: 150px;
  margin: 16px auto 25px;
  object-fit: cover;
  object-position: center 24%;
  border-radius: 50%;
  display: block;
}

.artist-avatar {
  color: #fff;
  background:
    radial-gradient(circle at 30% 24%, rgba(255, 255, 255, 0.28), transparent 32%),
    linear-gradient(145deg, #075b8d, #032e55 68%);
  display: grid;
  place-items: center;
  font-size: 41px;
  font-weight: 900;
  letter-spacing: 0;
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.14);
}

.artist-empty {
  width: min(680px, 100%);
  margin: 26px auto 0;
  padding: 22px 24px;
  color: #5e5652;
  background: rgba(255, 255, 255, 0.78);
  border: 1px dashed rgba(230, 129, 94, 0.38);
  border-radius: 14px;
  text-align: center;
  font-weight: 700;
}

.artist-card:nth-child(3) img,
.artist-card:nth-child(4) img {
  object-position: center 18%;
}

.artist-card h3 {
  margin: 0;
  color: #302d2c;
  font-size: 22px;
  font-weight: 600;
}

.artist-card .role {
  margin: 5px 0 0;
  min-height: 24px;
  color: var(--salmon-dark);
  font-size: 14px;
  font-weight: 500;
}

.artist-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 18px;
  color: #68615e;
  font-size: 13px;
  font-weight: 900;
}

.artist-meta span + span {
  padding-left: 18px;
  border-left: 1px solid #b9aaa3;
}

.artist-meta i {
  color: var(--salmon-dark);
}

.artist-actions {
  margin-top: 24px;
  display: flex;
  justify-content: center;
  gap: 18px;
}

.artist-actions a {
  width: 42px;
  height: 42px;
  color: var(--salmon-dark);
  background: #fffaf7;
  border: 1px solid #efd6cb;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 19px;
}

.artist-actions a:hover {
  color: #fff;
  background: var(--salmon);
}

.slider-arrow {
  position: absolute;
  top: 50%;
  width: 66px;
  height: 66px;
  color: var(--salmon-dark);
  background: rgba(255, 255, 255, 0.9);
  border: 0;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 30px;
  box-shadow: 0 12px 26px rgba(116, 74, 56, 0.08);
  transform: translateY(-50%);
  z-index: 4;
}

.arrow-left {
  left: -88px;
}

.arrow-right {
  right: -88px;
}

.artist-dots {
  position: relative;
  z-index: 1;
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 17px;
}

.artist-dots span {
  width: 13px;
  height: 13px;
  background: #ded3cc;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, height 0.25s ease, width 0.25s ease, margin 0.25s ease;
}

.artist-dots .active {
  width: 18px;
  height: 18px;
  margin-top: -3px;
  background: var(--salmon-dark);
}

.reviews-blogs-section {
  width: 100%;
  position: relative;
  padding: 0;
  overflow: hidden;
}

.reviews-panel {
  position: relative;
  width: 100%;
  max-width: none;
  margin: 0;
  padding: 54px 0 58px;
  background:
    radial-gradient(circle at 12% 8%, rgba(239, 208, 190, 0.28) 0 95px, transparent 96px),
    radial-gradient(circle at 86% 48%, rgba(239, 208, 190, 0.34) 0 170px, transparent 171px),
    linear-gradient(180deg, #fff9f5 0%, #fff6f1 52%, #fffaf7 100%);
  border: 0;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.reviews-panel .container-xxl {
  position: relative;
  z-index: 2;
  padding-inline: 24px;
}

.rb-shape,
.rb-leaf,
.dot-cluster {
  position: absolute;
  pointer-events: none;
}

.rb-shape-top {
  right: 0;
  top: 0;
  width: 250px;
  height: 238px;
  background: #ffcf30;
  border-radius: 0 0 0 150px;
  opacity: 0.72;
}

.rb-shape-mid {
  right: -60px;
  top: 640px;
  width: 310px;
  height: 250px;
  background: #ffd83d;
  border-radius: 145px 0 0 145px;
  opacity: 0.55;
}

.rb-leaf-top,
.rb-leaf-bottom {
  left: 50px;
  width: 220px;
  height: 220px;
  opacity: 0.42;
  background: radial-gradient(ellipse at 75% 50%, rgba(255, 223, 85, 0.3) 0 22%, transparent 24%) 0 0 / 68px 68px;
}

.rb-leaf-top {
  top: 20px;
  transform: rotate(-22deg);
}

.rb-leaf-bottom {
  top: 650px;
  transform: rotate(-55deg);
}

.dot-cluster {
  width: 72px;
  height: 72px;
  opacity: 0.45;
  background-image: radial-gradient(circle, #007ea8 2px, transparent 3px);
  background-size: 18px 18px;
}

.dots-top {
  right: 125px;
  top: 138px;
}

.dots-mid {
  right: 140px;
  top: 800px;
}

.review-heading .mini-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 170px;
  min-height: 34px;
  padding: 8px 22px;
  color: #000;
  background: #ffcf30;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.review-heading h2,
.blogs-heading h2 {
  margin: 20px 0 0;
  color: #262525;
  font-family: "Playfair Display", Georgia, serif;
  font-size: clamp(42px, 5vw, 66px);
  font-weight: 700;
  line-height: 1.08;
}

.review-heading h2 strong,
.blogs-heading h2 strong {
  color: var(--salmon-dark);
  font-weight: 700;
}

.review-heading p,
.blogs-heading p {
  margin: 17px 0 0;
  color: #69615d;
  font-size: 18px;
  font-weight: 800;
}

.review-heading p i,
.blogs-heading p i {
  color: var(--salmon-dark);
}

.testimonial-slider,
.blog-slider {
  position: relative;
  width: min(1160px, 100%);
  margin: 30px auto 0;
  overflow: hidden;
}

.testimonial-grid {
  display: flex;
  gap: 22px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.testimonial-card {
  flex: 0 0 calc((100% - 44px) / 3);
  min-height: 410px;
  padding: 28px 32px 24px;
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid #f1ded5;
  border-radius: 18px;
  box-shadow: 0 16px 34px rgba(116, 74, 56, 0.08);
}

.review-person,
.hired-person {
  display: flex;
  align-items: center;
  gap: 18px;
}

.review-avatar {
  width: 70px;
  height: 70px;
  flex: 0 0 70px;
  color: #fff;
  background: linear-gradient(135deg, #00759f, #063e69);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 26px;
  font-weight: 700;
}

.review-avatar.dark {
  background: linear-gradient(135deg, #00759f, #063e69);
}

.review-person h3 {
  margin: 0 0 2px;
  color: #2e2b2a;
  font-size: 17px;
  font-weight: 900;
}

.review-person span {
  color: #6f6662;
  font-size: 14px;
  font-weight: 600;
}

.stars {
  margin-top: 5px;
  color: #ffc01d;
  font-size: 15px;
  letter-spacing: 1px;
}

.review-text {
  min-height: 78px;
  margin: 26px 0 20px;
  color: #383432;
  font-size: 20px;
  font-weight: 700;
  line-height: 1.55;
}

.review-line {
  height: 1px;
  background: #eadbd4;
}

.reviewed-on {
  padding: 16px 0;
  color: #2f2b2a;
  font-size: 14px;
  font-weight: 800;
}

.reviewed-on i {
  margin-left: 10px;
  color: #22b14c;
  font-size: 20px;
}

.testimonial-card h4 {
  margin: 18px 0 15px;
  color: var(--salmon-dark);
  font-size: 15px;
  font-weight: 900;
}

.pro-avatar {
  width: 66px;
  height: 66px;
  flex: 0 0 66px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(135deg, #0087b4, #05466f);
  border: 1px solid #eadbd4;
  border-radius: 50%;
  font-size: 18px;
  font-weight: 900;
}

.hired-person strong {
  color: #2f2b2a;
  font-size: 17px;
  font-weight: 900;
}

.small-stars {
  margin-top: 7px;
  font-size: 14px;
}

.small-stars span {
  color: #2f2b2a;
  margin-left: 8px;
  letter-spacing: 0;
}

.rb-arrow-left,
.blog-arrow-left {
  left: -86px;
}

.rb-arrow-right,
.blog-arrow-right {
  right: -86px;
}

.blogs-heading {
  margin-top: 76px;
}

.blogs-heading > span {
  color: #05436e;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 18px;
  font-weight: 900;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.blog-slider {
  margin-top: 34px;
}

.blog-grid {
  display: flex;
  gap: 30px;
  transition: transform 0.45s ease;
  will-change: transform;
}

.blog-card {
  flex: 0 0 calc((100% - 60px) / 3);
  min-height: 500px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid #f1ded5;
  border-radius: 14px;
  box-shadow: 0 16px 34px rgba(116, 74, 56, 0.08);
  overflow: hidden;
}

.blog-image {
  position: relative;
  height: 218px;
  margin: 10px 10px 0;
  overflow: hidden;
  border-radius: 10px;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.blog-image span {
  position: absolute;
  left: 28px;
  bottom: -1px;
  width: 54px;
  height: 54px;
  color: #fff;
  background: #05436e;
  border: 4px solid rgba(255, 255, 255, 0.9);
  border-radius: 16px;
  display: grid;
  place-items: center;
  font-size: 25px;
}

.blog-body {
  padding: 25px 24px 24px;
}

.blog-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  width: 100%;
  color: #716965;
  font-size: 13px;
  font-weight: 800;
}

.blog-meta strong {
  flex: 0 1 auto;
  padding: 6px 12px;
  color: #dc8062;
  background: #fff0e9;
  border-radius: 999px;
  text-transform: uppercase;
  white-space: nowrap;
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  min-width: max-content;
  margin-left: auto;
  white-space: nowrap;
}

.blog-meta i {
  color: #05436e;
  margin-right: 6px;
}

.blog-card h3 {
  margin: 16px 0 13px;
  color: #2c2928;
  font-family: "Playfair Display", Georgia, serif;
  font-size: 25px;
  font-weight: 700;
  line-height: 1.25;
}

.blog-card p {
  min-height: 86px;
  margin: 0;
  color: #786f6b;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.65;
}

.blog-footer {
  margin-top: 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  color: #3b3735;
  font-size: 14px;
  font-weight: 800;
}

.blog-footer span {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.blog-footer > span:first-child {
  min-width: 0;
  color: #2c2928;
}

.blog-footer > span:last-child {
  flex: 0 0 auto;
  color: #3b3735;
}

.blog-footer img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
}

.author-initials.small {
  width: 38px;
  height: 38px;
  color: #fff;
  background: linear-gradient(135deg, #007ea8, #06345f);
  border-radius: 50%;
  display: grid;
  place-items: center;
  flex: 0 0 38px;
  font-size: 12px;
  font-weight: 900;
}

.blog-footer i {
  color: #05436e;
  font-size: 20px;
}

.blog-dots {
  margin-top: 38px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.blog-dots span,
.testimonial-dots span {
  width: 14px;
  height: 14px;
  background: #00759f;
  border-radius: 50%;
  cursor: pointer;
  transition: background 0.25s ease, transform 0.25s ease;
}

.blog-dots .active,
.testimonial-dots .active {
  background: var(--salmon-dark);
  transform: scale(1.12);
}

.testimonial-dots {
  margin-top: 28px;
  display: flex;
  justify-content: center;
  gap: 16px;
}

.faq-footer-section {
  width: 100%;
  padding: 0;
  overflow: hidden;
}

.faq-footer-panel {
  width: 100%;
  max-width: none;
  margin: 0;
  background: #fff;
  border-radius: 0;
  box-shadow: none;
  overflow: hidden;
}

.faq-wrap {
  padding: 72px 0 92px;
}

.faq-footer-panel .container-xxl {
  padding-inline: 24px;
}

.faq-wrap h2 {
  margin: 0 0 54px;
  color: #050505;
  text-align: center;
  font-size: clamp(36px, 4vw, 48px);
  font-weight: 900;
  letter-spacing: 0;
}

.faq-list {
  width: min(1150px, 100%);
  margin: 0 auto;
  display: grid;
  gap: 28px;
}

.faq-item {
  min-height: 96px;
  padding: 0 68px 0 40px;
  background: #fff;
  border: 1px solid #f7ede8;
  border-radius: 0 0 24px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  box-shadow: 0 7px 0 rgba(226, 126, 93, 0.08), 0 8px 18px rgba(117, 74, 58, 0.08);
  cursor: pointer;
  transition: min-height 0.3s ease, padding 0.3s ease, box-shadow 0.3s ease;
}

.faq-item.active {
  min-height: 180px;
  padding: 30px 56px 28px 46px;
  align-items: center;
}

.faq-content {
  flex: 1 1 auto;
}

.faq-item h3 {
  margin: 0;
  color: #444445;
  font-size: 26px;
  font-weight: 900;
  line-height: 1.25;
}

.faq-item.active h3 {
  color: #05406b;
  font-size: 20px;
  margin-bottom: 18px;
}

.faq-item p {
  max-width: 760px;
  margin: 0;
  color: #4d4d4f;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.35;
}

.faq-item:not(.active) p {
  display: none;
}

.faq-item button {
  width: 30px;
  height: 30px;
  color: #000;
  background: transparent;
  border: 0;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  font-size: 30px;
  font-weight: 900;
  pointer-events: none;
  transition: background 0.25s ease, color 0.25s ease, width 0.25s ease, height 0.25s ease;
}

.faq-item.active button {
  width: 30px;
  height: 30px;
  color: #fff;
  background: #05406b;
  border-radius: 50%;
  font-size: 0;
}

.faq-item.active button i {
  display: none;
}

.faq-item.active button::before {
  content: "";
  width: 18px;
  height: 4px;
  background: #fff;
  border-radius: 999px;
  display: block;
}

.site-footer {
  position: relative;
  padding: 58px 0 28px;
  color: #fff;
  background: #e6815e;
}

.footer-notch {
  position: absolute;
  left: 50%;
  top: 0;
  width: 360px;
  height: 40px;
  background: #fff;
  border-radius: 0 0 40px 40px;
  transform: translateX(-50%);
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(180px, 1.18fr) minmax(140px, 0.86fr) minmax(140px, 0.86fr) minmax(120px, 0.72fr) minmax(220px, 1fr);
  gap: 34px;
  align-items: start;
  margin: 0 auto;
  padding-bottom: 26px;
  border-bottom: 1px solid rgb(9 56 100);
}

.footer-brand {
  align-self: center;
  font-size: 56px;
  font-weight: 900;
  line-height: 1;
}

.footer-grid h3 {
  margin: 0 0 18px;
  color: #fff;
  font-size: 42px;
  font-weight: 900;
  line-height: 1;
}

.footer-grid a {
  color: #fff;
  display: block;
  font-size: 30px;
  font-weight: 900;
  line-height: 1.55;
}

.footer-bottom {
  margin: 24px auto 0;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.footer-bottom span {
  color: #fff;
  font-size: 12px;
  font-weight: 700;
}

.contact-details {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
}

.contact-details a,
.contact-details span {
  color: #fff;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
}

.contact-details i {
  flex: 0 0 auto;
  color: var(--gold, #f2a900);
  font-size: 14px;
  line-height: 1;
}

.footer-contact .contact-details a,
.footer-contact .contact-details span {
  display: flex;
  align-items: flex-start;
  gap: 8px;
}

.contact-details a {
  transition: opacity 0.2s ease;
}

.contact-details a:hover {
  opacity: 0.8;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.footer-contact .social-links {
  margin-top: 18px;
}

.social-links a {
  width: 34px;
  height: 34px;
  color: #fff;
  background: #050505;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 16px;
  transition: transform 0.2s ease, background 0.2s ease;
}

.social-links a:hover {
  color: #fff;
  background: #4b3730;
  transform: translateY(-2px);
}

@media (max-width: 1199.98px) {
  .floating-book-button {
    display: none;
  }

  .navbar .nav-link,
  .service-list a {
    font-size: 14px;
  }

  .service-row {
    grid-template-columns: 130px 36px minmax(0, 1fr);
    gap: 18px;
  }

  .category-track {
    gap: 12px;
  }

  .category-item img {
    width: 76px;
    height: 76px;
  }

  .offer-grid,
  .artist-grid {
    gap: 18px;
  }

  .artist-card {
    flex-basis: calc((100% - 54px) / 4);
  }

  .testimonial-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .blog-card {
    flex-basis: calc((100% - 36px) / 3);
  }

  .arrow-left {
    left: -20px;
  }

  .arrow-right {
    right: -20px;
  }

  .rb-arrow-left,
  .blog-arrow-left {
    left: -18px;
  }

  .rb-arrow-right,
  .blog-arrow-right {
    right: -18px;
  }

  .faq-list,
  .footer-grid,
  .footer-bottom {
    width: min(1040px, 100%);
  }

  .faq-item p {
    font-size: 17px;
  }

  .footer-grid {
    gap: 34px;
  }

  .footer-grid h3 {
    font-size: 34px;
  }

  .footer-grid a {
    font-size: 25px;
  }
}

@media (max-width: 991.98px) {
  body {
    padding-top: var(--site-header-offset, 130px);
  }

  .main-nav {
    min-height: 78px;
  }

  .service-list {
    min-height: 0;
    padding: 8px 16px;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    gap: 0;
    overflow: visible;
  }

  .service-list li {
    width: 100%;
  }

  .service-language-item {
    position: relative;
    top: auto;
    right: auto;
    padding: 6px 0 0;
  }

  .service-language-item .language-switcher {
    width: 100%;
    min-height: 48px;
    padding: 0 12px;
    justify-content: flex-start;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
  }

  .service-language-item .language-current {
    min-width: 130px;
    height: 34px;
  }

  .service-language-item .language-menu {
    left: 12px;
    top: calc(100% + 2px);
    transform: none;
  }

  .service-nav .service-list a,
  .services-trigger {
    width: 100%;
    min-height: 48px;
    padding: 14px 12px;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 8px;
    text-align: left;
  }

  .service-nav .service-list li:last-child a {
    border-bottom: 0;
  }

  .service-nav .service-list a::after,
  .services-trigger::after {
    left: 12px;
    right: auto;
    bottom: 8px;
    width: 30px;
  }

  .services-mega-menu {
    display: none !important;
  }

  .service-list .services-item {
    display: block;
  }

  .service-list .mobile-services-menu {
    max-height: 0;
    padding: 0 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 7px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transition: max-height 0.28s ease, padding 0.28s ease, opacity 0.2s ease;
  }

  .service-nav.services-open .mobile-services-menu {
    max-height: 180px;
    padding: 8px 8px 13px;
    opacity: 1;
    visibility: visible;
  }

  .service-nav .service-list .mobile-services-menu a {
    width: auto;
    min-height: 64px;
    padding: 9px 4px;
    color: #8e432d;
    background: rgba(255, 250, 247, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.6);
    border-radius: 10px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
    text-align: center;
    white-space: normal;
    font-size: 11px;
  }

  .service-nav .service-list .mobile-services-menu a::after {
    display: none;
  }

  .service-nav .service-list .mobile-services-menu a > i {
    font-size: 18px;
  }

  .service-nav .service-list .mobile-services-menu .mobile-services-all {
    min-height: 38px;
    grid-column: 1 / -1;
    flex-direction: row;
    gap: 7px;
    color: #fff;
    background: #ad5235;
  }

  .service-nav .service-list .mobile-services-menu .mobile-services-all > i {
    font-size: 13px;
  }

  .mega-menu-grid {
    grid-template-columns: 1fr;
  }

  .hero-section {
    padding-top: 38px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .portrait-halo {
    left: 2%;
    right: 43%;
  }

  .hero-person {
    left: 5%;
    width: 43%;
  }

  .phone-mockup {
    right: 5%;
  }

  .floating-card {
    right: 1%;
  }

  .category-track {
    overflow-x: auto;
    grid-template-columns: repeat(8, 96px);
    padding-bottom: 6px;
    scrollbar-width: thin;
  }

  .offer-grid,
  .artist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .artist-card,
  .testimonial-card,
  .blog-card {
    flex-basis: calc((100% - 18px) / 2);
  }

  .offers-artists-section {
    padding: 0;
  }

  .offers-panel {
    border-radius: 0;
  }

  .slider-arrow {
    display: none;
  }

  .testimonial-grid,
  .blog-grid {
    max-width: 520px;
    margin-inline: auto;
  }

  .reviews-blogs-section {
    padding: 0;
  }

  .reviews-panel {
    border-radius: 0;
  }

  .faq-footer-section {
    padding: 0;
  }

  .faq-footer-panel {
    border-radius: 0;
  }

  .faq-item,
  .faq-item.active {
    padding-inline: 28px;
  }

  .faq-item.active button {
    width: 68px;
    height: 68px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .footer-brand {
    align-self: start;
  }
}

@media (max-width: 767.98px) {
  .brand-title {
    font-size: 18px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
    font-size: 28px;
  }

  .hero-section {
    padding-bottom: 108px;
  }

  .hero-visual {
    min-height: 420px;
    margin-top: 18px;
  }

  .portrait-halo {
    left: 0;
    right: 43%;
    height: 330px;
  }

  .hero-person {
    left: 0;
    width: 56%;
    height: 350px;
  }

  .phone-mockup {
    right: 0;
    min-width: 178px;
    width: 42%;
    padding: 13px 12px;
    border-width: 7px;
  }

  .discount-card {
    left: 40%;
    top: 26px;
    padding: 11px 15px;
    font-size: 20px;
  }

  .discount-x {
    left: calc(40% + 96px);
    top: 55px;
  }

  .floating-card {
    width: 138px;
    min-height: 56px;
    font-size: 11px;
  }

  .beauty-bag {
    left: 14%;
    bottom: 24px;
    padding: 12px 17px;
    font-size: 13px;
  }

  .search-panel {
    bottom: -95px;
    flex-direction: column;
    align-items: stretch;
    gap: 8px;
  }

  .location-select {
    width: 100%;
    flex-basis: auto;
    min-width: 0;
    border-right: 0;
    border-bottom: 1px solid #eee1dc;
  }

  .search-panel button {
    align-self: center;
    width: 58px;
  }

  .pamper-section {
    padding-top: 132px;
  }

  .service-row {
    grid-template-columns: 88px 32px minmax(0, 1fr);
    gap: 12px;
    margin-top: 38px;
  }

  .audience-card {
    min-height: 118px;
    font-size: 19px;
  }

  .audience-card i {
    font-size: 30px;
  }

  .audience-card strong {
    font-size: 26px;
  }

  .round-arrow {
    width: 30px;
    height: 30px;
    font-size: 17px;
  }

  .trust-strip {
    padding: 16px;
    border-radius: 18px;
    flex-direction: column;
  }

  .offers-artists-section {
    padding: 0;
  }

  .offers-panel {
    padding: 42px 0 46px;
    border-radius: 0;
  }

  .offer-grid,
  .artist-grid {
    grid-template-columns: 1fr;
  }

  .artist-card,
  .testimonial-card,
  .blog-card {
    flex-basis: 100%;
  }

  .deal-card,
  .artist-card {
    max-width: 390px;
    width: 100%;
    margin-inline: auto;
  }

  .offer-heading h2,
  .artist-heading h2 {
    font-size: 42px;
  }

  .offer-heading p,
  .artist-heading p {
    font-size: 15px;
  }

  .reviews-blogs-section {
    padding: 0;
  }

  .reviews-panel {
    padding: 42px 0 46px;
    border-radius: 0;
  }

  .review-heading h2,
  .blogs-heading h2 {
    font-size: 40px;
  }

  .review-heading p,
  .blogs-heading p {
    font-size: 15px;
  }

  .testimonial-card {
    padding: 24px 22px;
  }

  .review-text {
    font-size: 18px;
  }

  .blog-card h3 {
    font-size: 23px;
  }

  .faq-footer-section {
    padding: 0;
  }

  .faq-footer-panel {
    border-radius: 0;
  }

  .faq-wrap {
    padding: 52px 0 64px;
  }

  .faq-list {
    gap: 18px;
  }

  .faq-item,
  .faq-item.active {
    min-height: auto;
    padding: 24px 20px;
    border-radius: 0 0 18px 18px;
  }

  .faq-item h3,
  .faq-item.active h3 {
    font-size: 18px;
  }

  .faq-item p {
    font-size: 15px;
  }

  .faq-item.active button {
    width: 50px;
    height: 50px;
    font-size: 0;
  }

  .footer-notch {
    width: 210px;
    height: 30px;
  }

  .site-footer {
    padding-top: 58px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-brand {
    font-size: 42px;
  }

  .footer-grid h3 {
    font-size: 30px;
  }

  .footer-grid a {
    font-size: 22px;
  }

  .footer-bottom {
    align-items: center;
    flex-direction: column;
  }
}

/* CW-inspired blue and gold theme */
body {
  color: var(--ink);
  background: #f4fbff;
}

.main-nav,
.mobile-location-row {
  background: #fff;
}

.brand-mark {
  color: var(--blue);
}

.brand-title {
  color: var(--navy);
}

.brand-title strong {
  color: var(--gold);
  text-shadow: 0 1px 0 #c88600;
}

.brand-tagline {
  color: #527187;
}

.btn-join {
  color: #fff;
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 4px 0 #052845, 0 10px 20px rgba(6, 52, 95, 0.2);
}

.btn-join:hover,
.btn-join:focus-visible {
  color: #fff;
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.btn-login {
  min-width: 116px;
  min-height: 45px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy);
  background: linear-gradient(135deg, #ffdc43, var(--gold));
  border: 0;
  border-radius: 999px;
  font-weight: 800;
  box-shadow: 0 4px 0 #d79b00, 0 10px 20px rgba(6, 52, 95, 0.15);
}

.btn-login:hover,
.btn-login:focus-visible {
  color: var(--navy);
  background: #ffdf55;
}

.header-role-btn {
  min-width: 118px;
  min-height: 45px;
  padding: 0 18px;
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1px;
  line-height: 1.05;
  text-align: center;
}

.header-role-btn strong {
  display: block;
  font-size: 15px;
  font-weight: 900;
}

.header-role-btn small {
  display: block;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .02em;
  opacity: .82;
  text-transform: uppercase;
}

.language-switcher {
  position: relative;
  min-height: 45px;
  padding: 0 10px 0 12px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--navy);
  background: linear-gradient(180deg, #fff 0%, #f6fbff 100%);
  border: 1px solid #cfe1ed;
  border-radius: 999px;
  box-shadow: 0 10px 22px rgba(6, 52, 95, 0.1);
}

.language-switcher > i {
  color: var(--blue);
  font-size: 16px;
}

.language-current {
  min-width: 92px;
  height: 28px;
  padding: 0 8px 0 12px;
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 8px;
  color: #fff;
  background: var(--blue);
  border: 0;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
}

.language-current i {
  font-size: 10px;
}

.language-menu {
  position: absolute;
  left: 38px;
  top: calc(100% + 6px);
  z-index: 80;
  min-width: 118px;
  padding: 6px;
  display: none;
  background: #fff;
  border: 1px solid #d8e7f1;
  border-radius: 12px;
  box-shadow: 0 18px 38px rgba(6, 52, 95, 0.16);
}

.language-menu.open {
  display: grid;
  gap: 4px;
}

.language-option {
  width: 100%;
  min-height: 34px;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  color: var(--navy);
  background: transparent;
  border: 0;
  border-radius: 9px;
  font-size: 12px;
  font-weight: 900;
  cursor: pointer;
}

.language-option.active,
.language-option:hover {
  color: #fff;
  background: var(--blue);
}

.google-translate-host {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  opacity: 0;
  pointer-events: none;
}

.goog-te-gadget,
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt {
  display: none !important;
}

body {
  top: 0 !important;
}

.skiptranslate iframe {
  display: none !important;
}

.btn-book {
  background: linear-gradient(135deg, var(--blue), var(--navy));
  box-shadow: 0 4px 0 #052845, 0 10px 20px rgba(6, 52, 95, 0.2);
}

.btn-book:hover,
.btn-book:focus-visible {
  background: linear-gradient(135deg, var(--cyan), var(--blue));
}

.location-search-form {
  background: #f2fbff;
  border-color: #b7dce9;
  box-shadow: 0 7px 20px rgba(6, 52, 95, 0.09);
}

.location-search-form > i {
  color: var(--blue);
}

.location-search-form input {
  color: var(--navy);
}

.location-search-form button {
  color: var(--navy);
  background: var(--gold);
}

.location-search-form button:hover,
.location-search-form button:focus-visible {
  background: #ffdb40;
  outline-color: #9dd5e6;
}

.floating-book-button {
  color: var(--navy);
  background: linear-gradient(180deg, #ffdb3d, var(--amber));
  box-shadow: -8px 10px 28px rgba(6, 52, 95, 0.24);
}

.floating-book-button:hover,
.floating-book-button:focus-visible {
  color: var(--navy);
  background: linear-gradient(180deg, #ffe66a, #f0aa0a);
  box-shadow: -10px 12px 32px rgba(6, 52, 95, 0.3);
  outline-color: #9ed8e8;
}

.service-nav {
background: linear-gradient(135deg, #ffdc43, var(--gold));
    box-shadow: 0 4px 0 #d79b00, 0 10px 20px rgba(6, 52, 95, 0.15);
}

.service-nav .service-list a::after,
.services-trigger::after {
  background: var(--navy);
}

.service-flyout-categories {
  background: linear-gradient(180deg, var(--blue), var(--navy));
}

.service-audience-tab:hover,
.service-audience-tab:focus-visible,
.service-audience-tab.is-active {
  color: var(--navy);
  background: #fff;
}

.service-flyout-all:hover,
.service-flyout-all:focus-visible {
  background: rgba(0, 30, 60, 0.28);
}

.service-flyout-panels {
  border-color: #c4dce7;
}

.service-flyout-icon,
.audience-icon {
  color: var(--navy);
  background: linear-gradient(135deg, #ffdc48, var(--amber));
}

.service-flyout-heading h3,
.service-flyout-service-group h4 {
  color: var(--navy);
}

.service-flyout-links a {
  color: #36566c;
  background: #f3fbff;
  border-color: #d3e7ef;
}

.service-flyout-links a i {
  color: var(--blue);
}

.service-flyout-links a:hover,
.service-flyout-links a:focus-visible {
  background: var(--blue);
  border-color: var(--blue);
}

.hero-section {
  background:
    radial-gradient(circle at 31% 5%, rgba(255, 201, 40, 0.28) 0 98px, transparent 100px),
    radial-gradient(circle at 83% 28%, rgba(8, 166, 199, 0.2) 0 130px, transparent 132px),
    linear-gradient(103deg, #f5fcff 0%, #fffdf3 52%, #eefaff 100%);
}

.hero-section::after {
  border-color: rgba(0, 126, 168, 0.16);
}

.eyebrow {
  color: var(--blue);
}

.site-footer {
  background: linear-gradient(135deg, #041f39, var(--navy));
}

.footer-grid a:hover,
.footer-bottom a:hover {
  color: var(--gold);
}

/* Keep the trust benefits in one clean row on mobile. */
@media (max-width: 767.98px) {
  .pamper-section .trust-strip {
    width: 100%;
    padding: 12px 8px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 6px;
    border-radius: 16px;
  }

  .pamper-section .trust-strip > div {
    min-width: 0;
    flex-direction: column;
    justify-content: flex-start;
    gap: 6px;
    text-align: center;
    font-size: 9px;
    line-height: 1.25;
  }

  .pamper-section .trust-strip i {
    width: 30px;
    height: 30px;
    flex: 0 0 30px;
    font-size: 14px;
  }
}

@media (max-width: 374.98px) {
  .pamper-section .trust-strip {
    padding: 10px 4px;
    gap: 3px;
  }

  .pamper-section .trust-strip > div {
    gap: 5px;
    font-size: 8px;
  }

  .pamper-section .trust-strip i {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
    font-size: 13px;
  }
}

@media (max-width: 575.98px) {
  .mega-menu-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .mega-menu-heading h2 {
    font-size: 21px;
  }

  .services-mega-menu {
    width: calc(100vw - 20px);
    padding: 14px;
    border-radius: 14px;
  }

  .audience-services {
    padding: 16px;
  }

  .hero-section h1 {
    font-size: 39px;
  }

  .eyebrow {
    margin-bottom: 15px;
    font-size: 20px;
  }

  .hero-visual {
    min-height: 360px;
  }

  .portrait-halo {
    height: 295px;
  }

  .hero-person {
    height: 315px;
  }

  .phone-grid,
  .phone-greeting,
  .booking-row {
    display: none;
  }

  .booking-card {
    margin-top: 12px;
  }

  .phone-mockup {
    min-width: 146px;
    border-radius: 24px;
  }

  .candy {
    top: 88px;
  }

  .confirm {
    bottom: 62px;
  }

  .heart-bubble {
    left: 6%;
    top: 46px;
  }

  .hero-arrow,
  .hero-dots {
    display: none;
  }

  .service-row {
    grid-template-columns: 1fr;
  }

  .audience-card {
    width: 132px;
    min-height: 106px;
    justify-self: center;
  }

  .round-arrow {
    justify-self: center;
    transform: rotate(90deg);
  }

  .category-track {
    grid-template-columns: repeat(8, 92px);
  }
}

/* Common typography scale: edit these selectors with the variables above. */
body {
  font-size: var(--fs-body);
}

.navbar .nav-link,
.service-list a {
  font-size: var(--fs-nav);
}

.brand-title {
  font-size: 20px;
}

.brand-tagline,
.store-badge,
.phone-grid span {
  font-size: var(--fs-small);
}

.eyebrow {
  font-size: 20px;
}

.hero-section h1 {
  font-size: var(--fs-hero);
}

.hero-copy,
.section-heading p,
.offer-heading p,
.artist-heading p,
.review-heading p,
.blogs-heading p,
.deal-card p,
.artist-card .role,
.blog-card p,
.reviewed-on,
.artist-meta,
.blog-meta,
.blog-footer,
.trust-strip div {
  font-size: var(--fs-body);
}

.glow-pill,
.category-item,
.discount-card span,
.phone-top,
.booking-row,
.phone-greeting,
.booking-card {
  font-size: var(--fs-small);
}

.section-heading span,
.artist-heading span,
.blogs-heading > span,
.review-heading .mini-pill {
  font-size: var(--fs-subtitle);
}

.section-heading h2,
.offer-heading h2,
.artist-heading h2,
.review-heading h2,
.blogs-heading h2,
.faq-wrap h2 {
  font-size: var(--fs-section-title);
}

.deal-card h3,
.artist-card h3,
.blog-card h3,
.audience-card {
  font-size: var(--fs-card-title);
}

.artist-card h3 {
  font-size: 14px;
}

.artist-card .role {
  font-size: 12px;
}

.audience-card strong {
  font-size: 27px;
}

.price-line strong {
  font-size: 20px;
}

.price-line del,
.outline-action,
.hired-person strong,
.testimonial-card h4,
.review-person h3,
.small-stars,
.stars {
  font-size: var(--fs-card-body);
}

.review-text {
  font-size: 17px;
}

.faq-item h3,
.faq-item.active h3 {
  font-size: var(--fs-faq-title);
}



.footer-brand {
  font-size: 32px;
  font-weight: 800;
  line-height: 1.08;
}

.footer-tagline {
  max-width: 250px;
  margin: 9px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.5;
}

.footer-brand-copy {
  max-width: 290px;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.7;
}

.footer-grid h3 {
  font-size: var(--fs-footer-title);
  font-weight: 800;
  letter-spacing: -0.2px;
}

.footer-grid a {
  font-size: var(--fs-footer-link);
  font-weight: 600;
  line-height: 1.9;
  opacity: 0.92;
  transition: opacity 0.2s ease, transform 0.2s ease;
}

.footer-grid a:hover {
  color: #fff;
  opacity: 1;
  transform: translateX(3px);
}

.footer-contact .contact-details a,
.footer-contact .contact-details span {
  font-size: 12px;
  font-weight: 500;
  line-height: 1.45;
  opacity: 0.92;
}

.footer-contact .contact-details a:hover {
  color: #fff;
  transform: none;
}

.footer-contact .social-links a {
  display: grid;
  width: 34px;
  height: 34px;
  line-height: 1;
  opacity: 1;
}

.footer-contact .social-links a:hover {
  color: #fff;
  transform: translateY(-2px);
}

.footer-bottom span {
  font-size: var(--fs-body);
}

@media (max-width: 767.98px) {
  :root {
    --fs-hero: 32px;
    --fs-section-title: 31px;
    --fs-panel-title: 29px;
    --fs-card-title: 18px;
    --fs-faq-title: 17px;
    --fs-faq-answer: 15px;
    --fs-footer-title: 17px;
    --fs-footer-link: 14px;
  }

  .footer-brand {
    font-size: 26px;
  }
}

/* Mobile layout safeguards */
@media (max-width: 767.98px) {
  body {
    padding-top: var(--site-header-offset, 122px);
  }

  .floating-book-button {
    display: none;
  }

  .quick-contact-buttons {
    left: 14px;
    bottom: 14px;
    gap: 8px;
  }

  .quick-contact-btn {
    width: 46px;
    height: 46px;
    font-size: 19px;
  }

  .service-language-item {
    display: none;
  }

  .mobile-language-switcher {
    z-index: 120;
    min-height: 40px;
    padding: 0 8px;
    gap: 4px;
  }

  .mobile-language-switcher > i {
    font-size: 14px;
  }

  .mobile-language-switcher .language-option {
    font-size: 11px;
  }

  .mobile-language-switcher .language-current {
    min-width: 88px;
    height: 26px;
    padding: 0 7px 0 9px;
    font-size: 11px;
  }

  .mobile-language-switcher .language-menu {
    left: auto;
    right: 0;
    min-width: 126px;
  }

  .page-site:has(.account-page-section) .quick-contact-buttons {
    right: 12px;
    left: auto;
    bottom: 12px;
    gap: 7px;
  }

  .page-site:has(.account-page-section) .quick-contact-btn {
    width: 42px;
    height: 42px;
    font-size: 17px;
    box-shadow: 0 10px 22px rgba(6, 52, 95, 0.18);
  }

  .container-xxl,
  .offers-panel .container-xxl,
  .reviews-panel .container-xxl,
  .faq-footer-panel .container-xxl {
    width: 100%;
    max-width: 100%;
    padding-inline: 16px;
  }

  .main-nav {
    min-height: 64px;
  }

  .main-nav .container-xxl {
    flex-wrap: nowrap;
  }

  .navbar-brand {
    max-width: 78px;
    margin-right: 0;
  }

  .navbar-brand img {
    width: 78px;
    height: auto;
  }

  .mobile-header-actions {
    align-items: center;
    gap: 4px;
  }

  .mobile-join-btn,
  .mobile-book-btn {
    min-height: 36px;
    min-width: 0;
    margin: 0;
    padding: 0 8px;
    box-shadow: none;
    white-space: nowrap;
    font-size: 11px;
  }

  .btn-cart.mobile-join-btn {
    width: 36px;
    height: 36px;
    padding: 0;
    gap: 0;
  }

  .btn-cart.mobile-join-btn em {
    position: absolute;
    top: -5px;
    right: -5px;
  }

  .navbar-toggler {
    margin-left: 4px;
  }

  .navbar-toggler {
    width: 38px;
    height: 38px;
    padding: 8px;
    border: 1px solid #efc7b8 !important;
    border-radius: 12px;
    box-shadow: none !important;
  }

  .navbar-toggler-icon {
    width: 22px;
    height: 18px;
    background-image:
      linear-gradient(var(--salmon-dark), var(--salmon-dark)),
      linear-gradient(var(--salmon-dark), var(--salmon-dark)),
      linear-gradient(var(--salmon-dark), var(--salmon-dark));
    background-position: center top, center, center bottom;
    background-repeat: no-repeat;
    background-size: 22px 2px;
  }

  .floating-book-button {
    min-height: 108px;
    padding: 13px 9px;
    border-radius: 11px 0 0 11px;
    font-size: 11px;
  }

  .service-list {
    scroll-snap-type: x proximity;
  }

  .service-list li {
    scroll-snap-align: start;
  }

  .services-mega-menu {
    top: 100%;
  }

  .hero-section {
    min-height: 0;
    padding: 34px 0 38px;
  }

  .hero-section .row {
    margin-inline: 0;
    --bs-gutter-x: 0;
    --bs-gutter-y: 24px;
  }

  .hero-section .row > * {
    width: 100%;
    max-width: 100%;
    padding-inline: 0;
  }

  .hero-section h1,
  .hero-copy {
    width: 100%;
    max-width: 100%;
  }

  .hero-copy {
    overflow-wrap: anywhere;
  }

  .hero-visual {
    width: 100%;
    max-width: 100%;
    min-height: 380px;
    margin-top: 0;
    overflow: hidden;
    border-radius: 24px;
  }

  .search-panel {
    position: relative;
    left: auto;
    bottom: auto;
    width: 100%;
    margin-top: 18px;
    padding: 10px;
    transform: none;
  }

  .pamper-section {
    padding: 58px 0 32px;
  }

  .section-heading,
  .offer-heading,
  .artist-heading,
  .review-heading,
  .blogs-heading {
    width: 100%;
    max-width: 100%;
    padding-inline: 4px;
  }

  .section-heading h2,
  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    max-width: 100%;
    line-height: 1.12;
    overflow-wrap: anywhere;
  }

  .service-row,
  .category-track,
  .trust-strip,
  .offer-grid,
  .artist-slider,
  .testimonial-slider,
  .blog-slider,
  .faq-list,
  .footer-grid,
  .footer-bottom {
    width: 100%;
    max-width: 100%;
  }

  .category-track {
    overscroll-behavior-inline: contain;
    scroll-snap-type: x proximity;
  }

  .category-item {
    scroll-snap-align: start;
  }

  .deal-card,
  .artist-card {
    width: 100%;
    max-width: 100%;
  }

  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    font-size: 32px;
  }

  .offer-heading p,
  .artist-heading p,
  .review-heading p,
  .blogs-heading p {
    max-width: 340px;
    margin-inline: auto;
    line-height: 1.55;
  }

  .testimonial-grid,
  .blog-grid {
    width: 100%;
    max-width: 100%;
  }

  .testimonial-card,
  .blog-card {
    min-width: 0;
  }

  .faq-item,
  .faq-item.active {
    gap: 14px;
  }

  .footer-bottom {
    gap: 18px;
  }

  .social-links {
    flex-wrap: wrap;
  }
}

@media (max-width: 575.98px) {
  .brand-title {
    font-size: 17px;
  }

  .brand-tagline {
    font-size: 8px;
  }

  .mobile-join-btn,
  .mobile-book-btn {
    padding-inline: 7px;
  }

  .header-role-btn strong {
    font-size: 13px;
  }

  .header-role-btn small {
    font-size: 8px;
  }

  .mobile-language-switcher {
    padding-inline: 6px;
  }

  .mobile-language-switcher .language-current {
    min-width: 82px;
    padding-inline: 7px;
  }

  .service-nav .service-list a,
  .services-trigger {
    padding: 16px 13px 14px;
    font-size: 13px;
  }

  .mega-menu-heading h2 {
    font-size: 19px;
  }

  .mega-menu-heading > a {
    white-space: normal;
  }

  .audience-title {
    margin-bottom: 14px;
  }

  .hero-section {
    padding-top: 28px;
  }

  .eyebrow {
    margin-bottom: 16px;
    font-size: 16px;
  }

  .hero-section h1 {
    font-size: 32px;
    line-height: 1.13;
  }

  .hero-copy {
    margin-top: 16px;
    font-size: 13px;
    line-height: 1.55;
  }

  .glow-pill {
    border-radius: 12px;
    line-height: 1.35;
  }

  .store-actions {
    gap: 8px;
  }

  .store-badge {
    min-width: 0;
    flex: 1 1 calc(50% - 4px);
    justify-content: center;
  }

  .hero-visual {
    min-height: 340px;
  }

  .portrait-halo {
    left: 0;
    right: 31%;
    height: 300px;
  }

  .hero-person {
    left: 0;
    width: 69%;
    height: 310px;
  }

  .phone-mockup {
    top: 20px;
    right: -28px;
    width: 47%;
    min-width: 150px;
  }

  .discount-card {
    left: 48%;
    top: 30px;
    padding: 10px 13px;
    font-size: 19px;
  }

  .discount-x {
    left: calc(48% + 92px);
    top: 58px;
  }

  .candy,
  .confirm,
  .beauty-bag {
    display: none;
  }

  .search-panel {
    gap: 4px;
    border-radius: 12px;
  }

  .location-select {
    padding-inline: 12px;
  }

  .search-panel input {
    padding-inline: 12px;
  }

  .section-heading h2 {
    max-width: 310px;
    margin-inline: auto;
    font-size: 29px;
  }

  .section-heading p {
    margin-inline: auto;
    max-width: 310px;
  }

  .service-row {
    gap: 14px;
    margin-top: 32px;
  }

  .category-track {
    padding-inline: 2px;
  }

  .trust-strip {
    margin-top: 38px;
  }

  .offers-panel,
  .reviews-panel {
    padding-block: 42px;
  }

  .offer-heading h2,
  .artist-heading h2,
  .review-heading h2,
  .blogs-heading h2 {
    max-width: 330px;
    margin-inline: auto;
    font-size: 29px;
  }

  .offer-grid {
    margin-top: 30px;
  }

  .artist-heading {
    margin-top: 48px;
  }

  .artist-heading span {
    font-size: 14px;
  }

  .artist-slider {
    margin-top: 28px;
  }

  .artist-card {
    padding-inline: 20px;
  }

  .review-heading .mini-pill {
    min-width: 0;
    padding-inline: 18px;
    letter-spacing: 2px;
  }

  .testimonial-card {
    min-height: 0;
    padding: 22px 18px;
  }

  .review-text {
    min-height: 0;
    font-size: 16px;
  }

  .blogs-heading {
    margin-top: 56px;
  }

  .blog-card {
    min-height: 0;
  }

  .blog-body {
    padding: 20px 18px;
  }

  .blog-meta {
    align-items: center;
    flex-direction: row;
    gap: 10px;
  }

  .faq-wrap {
    padding: 44px 0 54px;
  }

  .faq-wrap h2 {
    margin-bottom: 30px;
    font-size: 29px;
  }

  .faq-item,
  .faq-item.active {
    padding: 20px 16px;
  }

  .faq-item.active button {
    width: 42px;
    height: 42px;
  }

  .site-footer {
    padding: 52px 0 24px;
  }

  .footer-grid {
    gap: 22px;
  }

  .footer-grid h3 {
    margin-bottom: 10px;
  }

  .footer-grid a {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-bottom {
    margin-top: 24px;
  }
}

@media (max-width: 374.98px) {
  .navbar-brand {
    max-width: 64px;
    gap: 4px !important;
  }

  .navbar-brand img {
    width: 58px;
  }

  .brand-mark {
    width: 30px;
    height: 30px;
    font-size: 24px;
  }

  .brand-title {
    font-size: 15px;
  }

  .brand-tagline {
    display: none;
  }

  .mobile-join-btn,
  .mobile-book-btn {
    min-height: 34px;
    padding: 0 5px;
    font-size: 10px;
  }

  .navbar-toggler {
    width: 34px;
    height: 34px;
    padding: 6px;
  }

  .btn-cart.mobile-join-btn {
    width: 34px;
    height: 34px;
  }

  .mobile-language-switcher {
    min-height: 34px;
  }

  .mobile-language-switcher > i {
    font-size: 12px;
  }

  .mobile-language-switcher .language-current {
    height: 24px;
    min-width: 78px;
    font-size: 10px;
  }
}

/* Mobile service carousels: two cards per view with touch-friendly snapping. */
@media (max-width: 767.98px) {
  .pamper-section .divider {
    width: calc(100% + 32px);
    margin-left: -16px;
    margin-right: -16px;
  }

  .pamper-section .service-slider-controls {
    justify-self: center;
    flex-direction: row;
    gap: 12px;
  }

  .pamper-section .service-slider-controls .service-prev {
    display: grid;
  }

  .pamper-section .service-slider-controls .round-arrow {
    width: 40px;
    height: 40px;
    cursor: pointer;
    font-size: 19px;
    transform: none;
    box-shadow: 0 8px 18px rgba(200, 102, 69, 0.22);
    touch-action: manipulation;
  }

  .pamper-section .category-track {
    width: 100%;
    max-width: 100%;
    padding: 10px 6px 14px;
    display: grid;
    grid-template-columns: none;
    grid-auto-flow: column;
    grid-auto-columns: calc((100% - 14px) / 2);
    gap: 14px;
    overflow-x: auto;
    overscroll-behavior-inline: contain;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    touch-action: pan-x;
  }

  .pamper-section .category-track::-webkit-scrollbar {
    display: none;
  }

  .pamper-section .category-item {
    width: auto;
    min-width: 0;
    padding: 14px 4px 12px;
    background: rgba(255, 255, 255, 0.5);
    border: 1px solid rgba(239, 184, 166, 0.55);
    border-radius: 16px;
    overflow: hidden;
    font-size: 12px;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-shadow: 0 10px 24px rgba(126, 82, 64, 0.08);
  }

  .pamper-section .category-item img {
    width: min(100%, 132px);
    height: auto;
    aspect-ratio: 1;
    margin-bottom: 12px;
  }

  .pamper-section .category-item i {
    left: calc(50% - clamp(52px, 16vw, 66px));
    top: 7px;
    margin-left: 0;
  }

  .pamper-section .category-item .category-icon {
    top: 7px;
    display:none;
  }
}

/* Final blue-gold theme enforcement */
.offers-panel {
  background:
    radial-gradient(circle at 10% 8%, rgba(255, 201, 40, 0.2) 0 95px, transparent 96px),
    radial-gradient(circle at 88% 59%, rgba(8, 166, 199, 0.16) 0 155px, transparent 156px),
    linear-gradient(180deg, #f5fcff 0%, #fffbed 100%);
}

.reviews-panel {
  background:
    radial-gradient(circle at 12% 8%, rgba(8, 166, 199, 0.16) 0 95px, transparent 96px),
    radial-gradient(circle at 86% 48%, rgba(255, 201, 40, 0.18) 0 170px, transparent 171px),
    linear-gradient(180deg, #f5fcff 0%, #fff 52%, #fffbed 100%);
}

.faq-footer-panel {
  background: #f7fcff;
}

.faq-wrap h2 {
  color: var(--navy);
}

.trust-strip {
  border-color: #c4dce7;
  background: linear-gradient(90deg, #eefaff, #fff8d9, #eefaff);
}

.trust-strip i {
  color: var(--navy);
  background: var(--gold);
}

.service-nav .service-list .mobile-services-menu a {
  color: var(--navy);
  background: #f3fbff;
  border-color: #bcdce8;
}

.service-nav .service-list .mobile-services-menu .mobile-services-all {
  color: #fff;
  background: var(--navy);
}

/* Desktop database-driven services flyout */
@media (min-width: 992px) {
  .service-nav .service-list .services-mega-menu {
    width: min(820px, calc(100vw - 28px));
    max-height: min(70vh, 520px);
    grid-template-columns: 210px minmax(0, 1fr);
    align-items: stretch;
    overflow: hidden;
    border-radius: 14px;
    box-shadow: 0 24px 65px rgba(4, 43, 75, 0.28);
  }

  .service-nav .service-list .service-flyout-categories {
    min-height: min(70vh, 520px);
    padding: 8px 0;
    background: linear-gradient(180deg, #087fa1 0%, #07527d 58%, #06436f 100%);
    border-radius: 14px 0 0 14px;
  }

  .service-nav .service-list .service-audience-tab,
  .service-nav .service-list .service-flyout-all {
    min-height: 54px;
    padding: 12px 16px;
    font-size: 14px;
    font-weight: 800;
  }

  .service-nav .service-list .service-audience-tab > span > i,
  .service-nav .service-list .service-flyout-all > span > i {
    width: 21px;
    font-size: 15px;
  }

  .service-nav .service-list .service-flyout-all {
    margin-top: 7px;
    color: #fff;
  }

  .service-nav .service-list .service-flyout-panels {
    min-height: min(70vh, 520px);
    max-height: min(70vh, 520px);
    padding: 21px 23px 25px;
    border-radius: 0 14px 14px 0;
    scrollbar-width: thin;
    scrollbar-color: #8b8b8b transparent;
  }

  .service-nav .service-list .service-flyout-heading {
    margin-bottom: 16px;
    padding-bottom: 14px;
  }

  .service-nav .service-list .service-flyout-icon {
    width: 42px;
    height: 42px;
    flex-basis: 42px;
    font-size: 18px;
    border-radius: 11px;
  }

  .service-nav .service-list .service-flyout-heading small {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .service-nav .service-list .service-flyout-heading h3 {
    font-size: 20px;
  }

  .service-nav .service-list .service-flyout-links {
    display: block;
  }

  .service-nav .service-list .service-flyout-service-group {
    margin: 0 0 18px;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 7px;
  }

  .service-nav .service-list .service-flyout-service-group + .service-flyout-service-group {
    margin-top: 0;
  }

  .service-nav .service-list .service-flyout-service-group h4 {
    grid-column: 1 / -1;
    margin: 0 0 2px;
    font-size: 12px;
    letter-spacing: 0;
  }

  .service-nav .service-list .services-mega-menu .service-flyout-links a {
    min-height: 42px;
    padding: 9px 11px;
    color: #164b6b;
    background: #f1faff;
    border: 1px solid #c8e3ee;
    border-radius: 10px;
    font-size: 11.5px;
    font-weight: 750;
    line-height: 1.3;
  }

  .service-nav .service-list .services-mega-menu .service-flyout-links a:hover,
  .service-nav .service-list .services-mega-menu .service-flyout-links a:focus-visible {
    color: #fff;
    background: var(--blue);
    border-color: var(--blue);
  }

  .service-nav .service-list .services-mega-menu .service-flyout-view {
    padding: 4px 0;
    color: var(--blue);
    background: transparent;
    font-size: 10.5px;
  }

  .service-nav .service-list .services-mega-menu a::after {
    display: none;
  }
}

.site-footer {
  background: linear-gradient(135deg, #041f39, var(--navy));
}

.footer-notch {
  background: #f7fcff;
}
.brand-wordmark {
  color: #2e2426;
  font-family: "Playfair Display", serif;
  font-size: clamp(1.45rem, 2vw, 2rem);
  font-weight: 700;
  letter-spacing: -0.04em;
  white-space: nowrap;
}

.brand-wordmark strong {
  color: #9f3155;
}

@media (max-width: 991.98px) {
  .hero-slide,
  .hero-slider-empty {
    left: 50%;
    width: 340px;
    height: 420px;
    transform: translateX(-50%) translateY(8px);
  }

  .hero-slide.is-active {
    transform: translateX(-50%);
  }
}

@media (max-width: 575.98px) {
  .hero-slide,
  .hero-slider-empty {
    width: 300px;
    height: 370px;
  }
}

/* Keep the hero composition inside very narrow phone viewports. */
@media (max-width: 575.98px) {
  .hero-section {
    padding: 24px 0 30px;
  }

  .hero-section .container-xxl {
    padding-inline: 12px;
  }

  .hero-section .row {
    --bs-gutter-y: 18px;
  }

  .eyebrow {
    margin-bottom: 12px;
    font-size: 14px;
    text-align: center;
  }

  .hero-section h1 {
    margin-inline: auto;
    font-size: clamp(27px, 10.5vw, 32px);
    line-height: 1.08;
    text-align: center;
  }

  .hero-copy {
    margin: 12px auto 0;
    font-size: 12px;
    line-height: 1.45;
    text-align: center;
  }

  .hero-visual {
    min-height: 0;
    height: clamp(300px, 128vw, 340px);
    margin-top: 0;
    border-radius: 18px;
  }

  .hero-slide,
  .hero-slider-empty {
    left: 0;
    width: 100%;
    height: 100%;
    transform: translateY(8px);
  }

  .hero-slide.is-active {
    transform: none;
  }

  .hero-slide .hero-person {
    width: 100%;
    height: 100%;
    object-position: center top;
    border-radius: 18px;
  }

  .portrait-halo,
  .phone-mockup,
  .discount-card,
  .heart-bubble,
  .floating-card,
  .beauty-bag,
  .hero-arrow {
    display: none;
  }

  .search-panel {
    margin-top: 12px;
    padding: 8px;
    gap: 6px;
    border-radius: 12px;
  }

  .location-select select,
  .search-panel input,
  .search-panel button {
    height: 44px;
  }
}

@media (max-width: 320px) {
  .hero-section h1 {
    font-size: 27px;
  }
}

/* Modern footer polish */
.site-footer {
  padding: 66px 0 30px;
  background:
    linear-gradient(135deg, rgba(4, 31, 57, 0.98), rgba(5, 58, 96, 0.96)),
    var(--navy);
}

.footer-grid {
  grid-template-columns: minmax(260px, 1.25fr) repeat(3, minmax(140px, 0.72fr)) minmax(290px, 1.1fr);
  gap: clamp(28px, 4vw, 58px);
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.footer-brand {
  max-width: 320px;
  color: #fff;
  font-size: clamp(32px, 2.5vw, 44px);
  font-weight: 500;
  line-height: 1.02;
}

.footer-tagline {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  margin: 13px 0 0;
  padding: 7px 11px;
  color: #ffe7a3;
  background: rgba(242, 169, 0, 0.12);
  border: 1px solid rgba(242, 169, 0, 0.28);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.2;
}

.footer-brand-copy {
  display: block;
  max-width: 330px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.75;
}

.footer-grid h3 {
  position: relative;
  margin-bottom: 20px;
  color: #fff;
  font-size: 18px;
  font-weight: 500;
  letter-spacing: 0;
}

.footer-grid h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  margin-top: 10px;
  background: var(--gold, #f2a900);
  border-radius: 999px;
}

.footer-grid a {
  width: fit-content;
  color: rgba(255, 255, 255, 0.82);
  font-size: 15px;
  font-weight: 500;
  line-height: 1.85;
  letter-spacing: 0;
}

.footer-provider-cta {
  display: inline-grid !important;
  gap: 3px;
  margin: 20px 0 0;
  padding: 12px 18px;
  color: #041f39 !important;
  background: var(--gold, #f2a900);
  border-radius: 8px;
  line-height: 1.15 !important;
}

.footer-provider-cta strong,
.footer-provider-cta small {
  display: block;
}

.footer-provider-cta strong {
  font-size: 15px;
  font-weight: 500;
}

.footer-provider-cta small {
  font-size: 11px;
  font-weight: 500;
  text-transform: lowercase;
}

.footer-category-link {
  display: grid !important;
  grid-template-columns: 28px minmax(0, 1fr);
  column-gap: 10px;
  align-items: center;
  width: 100% !important;
  max-width: 210px;
  margin-bottom: 9px;
  line-height: 1.25 !important;
}

.footer-category-link i {
  width: 28px;
  height: 28px;
  display: grid;
  place-items: center;
  color: #041f39;
  background: var(--gold, #f2a900);
  border-radius: 50%;
  font-size: 14px;
}

.footer-category-link span {
  color: rgba(255, 255, 255, 0.92);
}

.footer-category-link small {
  grid-column: 2;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 11px;
  font-weight: 500;
}

.footer-grid a:hover {
  color: #ffe7a3;
  opacity: 1;
  transform: translateX(4px);
}

.footer-provider-cta:hover {
  color: #041f39 !important;
  background: #ffe7a3;
}

.footer-contact {
  padding-left: 4px;
}

.footer-contact .contact-details {
  gap: 12px;
}

.footer-contact .contact-details a,
.footer-contact .contact-details span {
  width: 100%;
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 500;
  line-height: 1.5;
}

.footer-contact .contact-details i {
  width: 18px;
  margin-top: 2px;
  color: var(--gold, #f2a900);
  text-align: center;
}

.footer-contact .contact-details a:hover {
  color: #ffe7a3;
  opacity: 1;
}

.footer-contact .social-links {
  margin-top: 24px;
  gap: 12px;
}

.footer-contact .social-links a {
  width: 38px;
  height: 38px;
  color: #fff;
  background: rgba(0, 0, 0, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 10px 22px rgba(0, 0, 0, 0.18);
  font-size: 16px;
}

.footer-contact .social-links a:hover {
  color: #041f39;
  background: var(--gold, #f2a900);
  border-color: rgba(242, 169, 0, 0.86);
  transform: translateY(-3px);
}

.footer-bottom {
  margin-top: 28px;
  justify-content: center;
  text-align: center;
}

.footer-bottom span {
  color: rgba(255, 255, 255, 0.9);
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 1199.98px) {
  .footer-grid {
    grid-template-columns: minmax(240px, 1.1fr) repeat(2, minmax(150px, 0.8fr));
  }

  .footer-contact {
    grid-column: span 2;
  }
}

@media (max-width: 767.98px) {
  .deal-card-actions {
    justify-content: center;
    flex-wrap: wrap;
  }

  .site-footer {
    padding: 54px 0 26px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-contact {
    grid-column: auto;
    padding-left: 0;
  }

  .footer-brand-copy {
    max-width: 100%;
  }
}

.artist-avatar,
.pro-avatar {
  color: #fff !important;
  -webkit-text-fill-color: #fff;
}

.service-nav .service-list .service-flyout-categories .service-flyout-offline {
  width: calc(100% - 24px);
  min-height: 46px;
  margin: 12px;
  padding: 10px 12px;
  color: #082c43;
  background: var(--gold, #f2a900);
  border: 0;
  border-radius: 6px;
  font-weight: 700;
}

.service-nav .service-list .service-flyout-categories .service-flyout-offline:hover,
.service-nav .service-list .service-flyout-categories .service-flyout-offline:focus-visible {
  color: #082c43;
  background: #ffe08a;
  outline: 2px solid #fff;
  outline-offset: 2px;
}

.service-nav .service-list .mobile-services-menu .mobile-services-offline {
  color: #fff;
  background: var(--navy);
  border: 1px solid #fff;
  font-weight: 700;
  box-shadow: 0 3px 0 rgba(4, 31, 57, 0.18);
}

.service-nav .service-list .mobile-services-menu .mobile-services-offline:hover,
.service-nav .service-list .mobile-services-menu .mobile-services-offline:focus-visible {
  color: #fff;
  background: var(--blue);
  outline: 2px solid #082c43;
  outline-offset: 2px;
}

.mobile-floating-cart {
  display: none;
}

@media (max-width: 991.98px) {
  .mobile-floating-cart {
    position: fixed;
    right: 14px;
    bottom: calc(14px + env(safe-area-inset-bottom));
    z-index: 1045;
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    color: #fff;
    background: var(--navy);
    border-radius: 50%;
    box-shadow: 0 12px 28px rgba(6, 52, 95, 0.22);
    font-size: 20px;
    text-decoration: none;
  }

  .mobile-floating-cart em {
    position: absolute;
    top: -5px;
    right: -5px;
    min-width: 18px;
    height: 18px;
    padding: 0 4px;
    display: grid;
    place-items: center;
    color: var(--navy);
    background: var(--gold);
    border-radius: 999px;
    font-size: 10px;
    font-style: normal;
    font-weight: 700;
  }

  .mobile-floating-cart em[hidden] {
    display: none;
  }

  .mobile-floating-cart:hover,
  .mobile-floating-cart:focus-visible {
    color: #fff;
    background: var(--blue);
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .page-site:has(.account-page-section) .mobile-floating-cart {
    right: auto;
    left: 14px;
  }
}

@media (max-width: 390px) {
  .main-nav .container-xxl {
    padding-inline: 10px;
  }

  .mobile-header-actions {
    gap: 2px;
  }

  .mobile-language-switcher > i {
    display: none;
  }

  .mobile-language-switcher .language-current {
    min-width: 68px;
  }
}

@media (max-width: 991.98px) {
  .main-nav .mobile-header-actions {
    gap: 6px;
  }

  .main-nav .mobile-language-switcher {
    height: 40px;
    min-height: 40px;
    padding: 0;
    background: #fff;
    border: 1px solid #cfe1ed;
    border-radius: 8px;
    box-shadow: none;
  }

  .main-nav .mobile-language-switcher > i {
    display: none;
  }

  .main-nav .mobile-language-switcher .language-current {
    min-width: 94px;
    height: 38px;
    padding: 0 10px;
    color: var(--navy);
    background: transparent;
    border-radius: 7px;
    font-size: 12px;
    font-weight: 700;
  }

  .main-nav .mobile-header-actions .mobile-join-btn,
  .main-nav .mobile-header-actions .header-logout-form .mobile-join-btn {
    min-width: 56px;
    height: 40px;
    min-height: 40px;
    padding: 0 7px;
    border-radius: 8px;
    box-shadow: none;
  }

  .main-nav .mobile-header-actions .header-role-btn strong {
    font-size: 12px;
    line-height: 1;
  }

  .main-nav .mobile-header-actions .header-role-btn small {
    font-size: 8px;
    line-height: 1;
  }

  .main-nav .navbar-toggler {
    width: 40px;
    height: 40px;
    margin-left: 6px;
    padding: 8px;
    border-color: #cfe1ed !important;
    border-radius: 8px;
  }

  .main-nav .navbar-toggler-icon {
    width: 20px;
    height: 18px;
  }
}

@media (max-width: 390px) {
  .main-nav .mobile-header-actions:has(.header-logout-form) .language-current {
    min-width: 74px;
    padding-inline: 7px;
  }

  .main-nav .mobile-header-actions .header-logout-form .mobile-join-btn {
    min-width: 40px;
    padding: 0;
  }
}

.floating-book-button {
  width: 54px;
  min-height: 144px;
  padding: 16px 10px;
  flex-direction: column;
  gap: 12px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffdc52, var(--gold));
  border: 1px solid rgba(4, 31, 57, 0.14);
  border-right: 0;
  border-radius: 12px 0 0 12px;
  box-shadow: -8px 10px 24px rgba(4, 31, 57, 0.2);
  writing-mode: horizontal-tb;
  letter-spacing: 0;
  text-decoration: none;
  transition: background 0.2s ease, box-shadow 0.2s ease;
}

.floating-book-button i {
  font-size: 19px;
  line-height: 1;
}

.floating-book-button span {
  writing-mode: vertical-rl;
  transform: rotate(180deg);
  font-size: 13px;
  line-height: 1;
}

.floating-book-button:hover,
.floating-book-button:focus-visible {
  padding-right: 10px;
  color: var(--navy);
  background: linear-gradient(180deg, #ffe88a, #f5b917);
  box-shadow: -10px 12px 28px rgba(4, 31, 57, 0.26);
}

.floating-book-button:hover {
  outline: none;
}

.floating-book-button:focus-visible {
  outline: 2px solid var(--navy);
  outline-offset: 2px;
}

@media (max-width: 767.98px) {
  .floating-book-button {
    display: flex;
    width: 42px;
    min-height: 124px;
    padding: 12px 8px;
    gap: 8px;
    border-radius: 10px 0 0 10px;
  }

  .floating-book-button i {
    font-size: 16px;
  }

  .floating-book-button span {
    font-size: 11px;
  }

  .floating-book-button:hover,
  .floating-book-button:focus-visible {
    padding-right: 8px;
  }
}
