:root {
  --pink: #ff3c6e;
  --blue: #1e8fce;
  --cyan: #00a4ff;
  --dark: #0c0e12;
  --black: #000000;
  --white: #ffffff;
  --gray: #575757;
  --muted: #6f737d;
  --soft: #f6f6f7;
  --line: rgba(87, 87, 87, 0.2);
  --shadow-card: 0 2px 24px rgba(0, 0, 0, 0.07);
  --shadow-hover: 0 18px 36px rgba(12, 14, 18, 0.14);
  --radius-sm: 4px;
  --radius-md: 6px;
  --radius-lg: 10px;
  --radius-xl: 12px;
  --radius-card: 16px;
  --font-body: "Inter", Arial, sans-serif;
  --font-display: "Playfair Display", Georgia, serif;
  --container-pad: clamp(20px, 5.2vw, 100px);
  --section-pad: clamp(56px, 6.95vw, 100px);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--white);
  color: var(--dark);
  font-family: var(--font-body);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 400;
  line-height: 1.5;
  letter-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: inherit;
  font-family: var(--font-display);
  font-weight: 400;
  letter-spacing: 0;
}

h1 {
  margin-bottom: 0;
  font-size: clamp(44px, 5.28vw, 76px);
  line-height: 1.105;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(34px, 4.31vw, 62px);
  line-height: 1.129;
}

h3 {
  margin-bottom: 0;
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.5;
}

h4 {
  font-size: clamp(17px, 1.39vw, 20px);
  line-height: 1.4;
}

h5 {
  font-size: clamp(16px, 1.25vw, 18px);
  line-height: 1.45;
}

h6 {
  font-size: 16px;
  line-height: 1.5;
}

p,
span,
strong,
em,
a,
button,
label,
input,
textarea,
select,
ul,
ol,
li {
  letter-spacing: 0;
}

p {
  margin-bottom: 0;
}

strong {
  font-weight: 600;
}

em {
  color: var(--pink);
  font-style: italic;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color 0.25s ease, opacity 0.25s ease, transform 0.25s ease;
}

a:hover {
  color: var(--pink);
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  border: 0;
}

img {
  display: block;
}

ul,
ol {
  padding-left: 0;
}

li {
  list-style: none;
}

.custom-container {
  width: 100%;
  padding-inline: var(--container-pad);
}

.section-padding {
  padding-block: var(--section-pad);
}

.cityhub-legal-content {
  max-width: 920px;
  margin-inline: auto;
  color: var(--dark);
  font-size: 17px;
  line-height: 1.8;
}

.cityhub-legal-content p,
.cityhub-legal-content ul,
.cityhub-legal-content ol {
  margin-bottom: 18px;
}

.cityhub-legal-content h2 {
  margin: 34px 0 12px;
  color: var(--black);
  font-family: var(--font-body);
  font-size: clamp(22px, 2.1vw, 30px);
  font-weight: 600;
  line-height: 1.3;
}

.section-title {
  color: var(--black);
}

.section-subtitle {
  margin-top: clamp(10px, 1.9vw, 30px);
  color: var(--dark);
  font-size: clamp(15px, 1.39vw, 20px);
  line-height: 1.6;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: clamp(20px, 3vw, 48px);
  margin-bottom: clamp(30px, 3.5vw, 50px);
}

.center-heading {
  text-align: center;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border-radius: var(--radius-lg);
  padding: clamp(12px, 1.39vw, 20px) clamp(18px, 1.67vw, 24px);
  font-size: clamp(15px, 1.39vw, 20px);
  font-weight: 500;
  line-height: 1.6;
  white-space: nowrap;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.site-btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-hover);
}

.site-btn-primary {
  background: var(--pink);
  color: var(--white);
}

.site-btn-primary:hover {
  background: #eb2c60;
  color: var(--white);
}

.site-btn-secondary {
  background: var(--white);
  color: var(--pink);
}

.site-btn-secondary:hover {
  background: var(--dark);
  color: var(--white);
}

.content-card,
.provider-card,
.location-card {
  background: var(--white);
  box-shadow: var(--shadow-card);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.content-card:hover,
.provider-card:hover,
.location-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-hover);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: var(--white);
  box-shadow: 0 1px 0 rgba(12, 14, 18, 0.06);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(18px, 2.2vw, 32px);
  padding-block: 12px;
}

.brand-logo {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--blue);
  font-size: clamp(14px, 1.12vw, 16px);
  font-weight: 600;
  line-height: 1;
}

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

.brand-logo span span {
  color: var(--pink);
}

.brand-mark {
  display: inline-grid;
  place-items: center;
  color: var(--pink);
  font-size: 1.15em;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: clamp(20px, 2.22vw, 32px);
  font-size: 16px;
  line-height: 1.5;
}

.main-nav a.active {
  color: var(--pink);
  font-weight: 500;
}

.mobile-account-link {
  display: none;
}

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

.icon-btn,
.menu-btn {
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1;
  width: 42px;
  border-radius: var(--radius-md);
  background: #f3f1f1;
  color: var(--dark);
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.icon-btn:hover,
.menu-btn:hover {
  background: var(--pink);
  color: var(--white);
  transform: translateY(-2px);
}

.header-btn {
  border-radius: var(--radius-md);
  padding: 12px 16px;
  font-size: 16px;
  line-height: 1.5;
}

.menu-btn {
  display: none;
}

.hero-banner {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  padding-block: clamp(86px, 17.8vw, 256px);
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.84) 4%, rgba(13, 13, 15, 0.34) 42%, rgba(13, 13, 15, 0.1) 58%), var(--home-hero-image, none);
  background-position: center;
  background-size: cover;
}

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

.verified-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 32px;
  border: 1px solid rgba(255, 60, 110, 0.4);
  border-radius: 8px;
  padding: 9px 17px 9px 9px;
  background: rgba(255, 60, 110, 0.2);
  color: var(--white);
  font-size: 16px;
  line-height: 1.5;
}

.verified-pill i {
  color: var(--pink);
}

.hero-copy {
  width: 41%;
  color: var(--white);
}

.hero-copy h1 {
  color: var(--white);
}

.hero-copy h1 em {
  display: block;
}

.hero-copy p {
  margin-top: 40px;
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.hero-search {
  display: flex;
  align-items: stretch;
  gap: 8px;
  margin-top: 32px;
  border-radius: var(--radius-xl);
  padding: 8px;
  background: var(--white);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.1);
  width: 53%;
}

.city-select {
  display: flex;
  align-items: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  padding-inline: 16px 17px;
  background: transparent;
  color: var(--gray);
  white-space: nowrap;
  min-width: 190px;
  position: relative;
}

.city-select select {
  width: 100%;
  min-width: 148px;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--gray);
  cursor: pointer;
  font: inherit;
  line-height: 1.2;
  padding: 0 34px 0 6px;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.city-select select:focus {
  outline: 0;
}

.city-select::after {
  content: "\f282";
  color: var(--gray);
  font-family: "bootstrap-icons";
  font-size: 13px;
  line-height: 1;
  pointer-events: none;
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
}

.city-select i {
  flex: 0 0 auto;
}

.search-input {
  display: inline-flex;
  align-items: center;
  gap: 4px;
}

.search-input {
  flex: 1 1 auto;
  padding-inline: 16px;
  color: var(--gray);
}

.search-input input {
  width: 100%;
  border: 0;
  outline: 0;
  color: var(--dark);
}

.search-input input::placeholder {
  color: rgba(87, 87, 87, 0.7);
}

.search-btn {
  flex: 0 0 auto;
}

.provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.provider-card {
  overflow: hidden;
  border-radius: var(--radius-card);
}

.provider-media {
  position: relative;
  aspect-ratio: 412 / 243;
  overflow: hidden;
}

.provider-media-link {
  display: block;
  width: 100%;
  height: 100%;
}

.provider-media img,
.service-media img,
.location-card img {
  transition: transform 0.35s ease;
}

.provider-card:hover .provider-media img,
.service-card:hover .service-media img,
.location-card:hover img {
  transform: scale(1.06);
}

.verify-badge,
.rating-badge {
  position: absolute;
  top: 20px;
  display: inline-flex;
  align-items: center;
  border-radius: var(--radius-md);
  padding: 6px 8px;
  background: var(--white);
}

.verify-badge {
  left: 20px;
  color: var(--pink);
}

.rating-badge {
  right: 20px;
  gap: 4px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
}

.rating-badge i {
  color: #ffb800;
  font-size: 12px;
}

.provider-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.provider-title-row,
.provider-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.provider-title-row h3 {
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.2;
}

.provider-title-row span,
.provider-body p,
.provider-meta {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.provider-city {
  color: var(--dark);
}

.provider-meta strong {
  color: var(--dark);
}

.provider-meta a {
  color: var(--pink);
  font-size: 13px;
}

.services-section {
  background: #f7f7f8;
}

.services-section .center-heading {
  margin-bottom: 36px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.service-card {
  overflow: hidden;
  border-radius: var(--radius-md);
}

.service-media {
  aspect-ratio: 412 / 250;
  overflow: hidden;
}

.service-body {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
}

.service-body h3 {
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.2;
}

.service-body p {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.tag-row span {
  border-radius: var(--radius-sm);
  padding: 4px 8px;
  background: rgba(30, 143, 206, 0.1);
  color: var(--blue);
  font-size: 12px;
  line-height: 1.35;
}

.trending-section {
  background:
    radial-gradient(ellipse at center, rgba(255, 60, 110, 0.13) 0%, rgba(255, 60, 110, 0.07) 24%, rgba(11, 13, 17, 0) 58%),
    linear-gradient(90deg, #0b0f13 0%, #0b0f13 26%, #130d13 50%, #0b0f13 74%, #0b0f13 100%);
  color: var(--white);
}

.trending-section .section-title,
.trending-section .section-subtitle {
  color: var(--white);
}

.trending-section .center-heading {
  margin-bottom: 40px;
}

.home-trending-section {
  padding-block: clamp(82px, 7.6vw, 110px);
}

.home-trending-section .section-subtitle {
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.86);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 24px;
}

.home-trending-grid {
  align-items: stretch;
}

.category-card {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  gap: 8px;
  min-height: 139px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: var(--radius-md);
  padding: 20px 22px;
  background: rgba(25, 27, 32, 0.9);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
  transition: border-color 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
}

.category-card span {
  color: var(--white);
  font-size: 24px;
  font-weight: 400;
  line-height: 36px;
}

.category-card small {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.category-card strong {
  align-self: flex-start;
  border: 1px solid rgba(255, 60, 110, 0.44);
  border-radius: var(--radius-sm);
  padding: 4px 11px;
  background: rgba(255, 60, 110, 0.22);
  color: var(--white);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.35;
}

.category-card:hover {
  border-color: rgba(255, 60, 110, 0.48);
  background: #202229;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  transform: translateY(-4px);
}

.category-card:hover strong {
  border-color: rgba(255, 60, 110, 0.42);
  background: rgba(255, 60, 110, 0.22);
}

.location-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.location-card {
  position: relative;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 419 / 273;
  padding: 20px;
  color: var(--white);
}

.location-card::after {
  position: absolute;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, rgba(0, 0, 0, 0) 55%, rgba(0, 0, 0, 0.55) 82%, rgba(0, 0, 0, 0.82) 100%);
}

.location-card img {
  position: absolute;
  inset: 0;
}

.location-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.location-overlay h3 {
  color: var(--white);
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.5;
}

.location-overlay p {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: var(--pink);
  font-size: 16px;
  line-height: 1.5;
}

.live-badge {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  gap: 4px;
  border-radius: 999px;
  padding: 4px 8px;
  background: var(--pink);
  color: #f2f2f5;
  font-size: 11px;
  font-weight: 500;
  line-height: 1.35;
}

.live-badge::before {
  display: inline-block;
  aspect-ratio: 1;
  width: 6px;
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.gradient-cta {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(64px, 6.95vw, 100px);
  background: linear-gradient(81deg, #00a4ff 4.5%, #ff3c6e 93.9%);
  color: var(--white);
  text-align: center;
}

.gradient-cta::before,
.gradient-cta::after {
  position: absolute;
  z-index: -1;
  aspect-ratio: 1;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  content: "";
}

.gradient-cta::before {
  width: clamp(170px, 22vw, 320px);
  top: -42%;
  right: -5%;
}

.gradient-cta::after {
  width: clamp(210px, 24.4vw, 351px);
  left: -6%;
  bottom: -38%;
}

.cta-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 24px;
}

.cta-inner h2 {
  color: var(--white);
}

.cta-inner h2 em {
  color: var(--white);
}

.cta-inner p {
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.site-footer {
  padding-block: clamp(56px, 6.95vw, 100px) 40px;
  background: var(--dark);
  color: var(--white);
}

.footer-main {
  display: grid;
  grid-template-columns: 2.1fr 0.8fr 1.1fr 0.9fr;
  gap: clamp(34px, 5vw, 78px);
  padding-bottom: 50px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.footer-logo {
  font-size: clamp(18px, 1.8vw, 26px);
}

.footer-logo .brand-logo-image {
  max-width: 220px;
  max-height: 48px;
}

.footer-brand p {
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.footer-column {
  border-left: 1px solid rgba(255, 255, 255, 0.12);
  padding-left: clamp(24px, 3vw, 46px);
}

.footer-column h3 {
  margin-bottom: 36px;
  color: var(--white);
  font-size: 24px;
  line-height: 1.35;
}

.footer-column ul {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-bottom: 0;
}

.footer-column a {
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-column a:hover {
  color: var(--pink);
}

.footer-cities ul {
  display: grid;
  grid-template-columns: repeat(2, auto);
  column-gap: 50px;
}

.social-column a {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.social-column i {
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1;
  width: 40px;
  border-radius: 50%;
  background: var(--white);
  color: var(--pink);
  font-size: 20px;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 40px;
  color: var(--white);
  font-size: 18px;
  font-weight: 300;
  line-height: 1.55;
}

.footer-bottom a:hover {
  color: var(--pink);
}

.listing-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(64px, 8.6vw, 124px);
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.84) 4%, rgba(13, 13, 15, 0.54) 42%, rgba(13, 13, 15, 0.1) 58%), var(--providers-hero-image, none);
  background-position: center;
  background-size: cover;
}

.listing-hero-content {
  color: var(--white);
}

.breadcrumb-nav {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 40px;
  color: var(--white);
  font-size: clamp(15px, 1.25vw, 18px);
  line-height: 1.12;
}

.breadcrumb-nav span,
.breadcrumb-nav a:hover {
  color: var(--pink);
}

.breadcrumb-nav i {
  font-size: 0.8em;
}

.listing-hero h1 {
  color: var(--white);
}

.listing-hero p {
  margin-top: 22px;
  color: var(--white);
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.listing-search {
  width: 42%;
}

.listing-hero,
.details-hero,
.contact-hero,
.cityhub-error-hero {
  padding-block: clamp(64px, 8.6vw, 124px);
}

.providers-listing-section {
  padding-block: clamp(56px, 5.6vw, 80px);
}

.listing-layout {
  display: grid;
  grid-template-columns: 23fr 77fr;
  gap: 24px;
  align-items: start;
}

.filter-panel {
  position: sticky;
  top: 86px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: clamp(22px, 1.95vw, 28px);
  background: var(--white);
}

.filter-panel h2 {
  margin-bottom: 28px;
  color: var(--dark);
  font-size: clamp(18px, 1.67vw, 24px);
  line-height: 1.35;
}

.filter-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-bottom: 1px solid rgba(87, 87, 87, 0.12);
  padding-bottom: 20px;
  margin-bottom: 20px;
}

.filter-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.filter-title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0;
  background: transparent;
  color: var(--dark);
  font-size: 15px;
  line-height: 1.5;
}

.filter-panel input[type="checkbox"],
.filter-panel input[type="radio"] {
  accent-color: var(--pink);
}

.stars {
  color: var(--pink);
  letter-spacing: 0;
}

.range-track {
  position: relative;
  display: flex;
  align-items: center;
  margin-block: 4px;
  border-radius: 999px;
  padding-block: 4px;
  background: linear-gradient(90deg, #ededee 0%, #ededee 100%);
}

.range-track::before,
.range-track::after {
  position: absolute;
  aspect-ratio: 1;
  width: 12px;
  border: 2px solid var(--pink);
  border-radius: 999px;
  background: var(--white);
  content: "";
}

.range-track::before {
  left: 18%;
}

.range-track::after {
  left: 50%;
}

.range-track span {
  display: block;
  width: 34%;
  margin-left: 19%;
  border-radius: 999px;
  padding-block: 2px;
  background: var(--pink);
}

.price-inputs {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.price-inputs label {
  display: flex;
  flex-direction: column;
  align-items: stretch;
  gap: 4px;
  font-size: 10px;
  line-height: 1.4;
}

.price-inputs input {
  width: 100%;
  border: 1px solid rgba(87, 87, 87, 0.24);
  border-radius: var(--radius-sm);
  padding: 8px 10px;
  color: var(--dark);
  font-size: 13px;
  outline: 0;
}

.filter-apply {
  width: 100%;
  border-radius: var(--radius-md);
  padding: 12px 18px;
  font-size: 14px;
  line-height: 1.5;
}

.filter-reset {
  width: 100%;
  margin-top: 12px;
  border: 1px solid rgba(87, 87, 87, 0.3);
  border-radius: var(--radius-md);
  padding: 11px 18px;
  background: var(--white);
  color: var(--dark);
  font-size: 14px;
  line-height: 1.5;
  transition: color 0.25s ease, border-color 0.25s ease;
}

.filter-reset:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.listing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.listing-provider-card .provider-media {
  aspect-ratio: 412 / 243;
}

.listing-provider-card .provider-body {
  gap: 10px;
}

.listing-provider-card .provider-body h3 {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 20px;
  font-weight: 400;
  line-height: 1.35;
}

.listing-provider-card .provider-body h3 a {
  color: inherit;
  text-decoration: none;
}

.listing-provider-card .provider-body h3 a:hover {
  color: var(--primary);
}

.listing-provider-card .provider-body > p:not(.listing-meta) {
  display: -webkit-box;
  font-size: 15px;
  min-height: 45px;
  line-height: 1.5;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.listing-meta {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--gray);
}

.listing-meta-inline {
  flex-wrap: nowrap;
  gap: 14px;
  white-space: nowrap;
}

.listing-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  min-width: 0;
  font-weight: 600;
}

.listing-meta-inline .listing-meta-item:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
}

.listing-meta-age {
  color: var(--dark);
  flex: 0 0 auto;
}

.listing-provider-card .provider-meta {
  border-top: 1px solid rgba(87, 87, 87, 0.16);
  padding-top: 17px;
  margin-top: 4px;
}

.provider-listing-details {
  display: grid;
  gap: 7px;
  padding-block: 4px;
}

.provider-listing-details p {
  display: grid;
  grid-template-columns: minmax(96px, 0.75fr) 1fr;
  gap: 10px;
  margin: 0;
  color: var(--gray);
  font-size: 13px;
  line-height: 1.35;
}

.provider-listing-details span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.provider-listing-details strong {
  color: var(--dark);
  font-weight: 600;
  text-align: right;
}

.provider-contact-icons {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 38px;
}

.provider-contact-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border: 1px solid rgba(233, 30, 99, 0.18);
  border-radius: 50%;
  background: rgba(233, 30, 99, 0.06);
  color: var(--pink);
  font-size: 17px;
  transition: 0.2s ease;
}

.provider-contact-icon:hover {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.booking-card .provider-contact-icons {
  margin-top: 18px;
}

.cityhub-floating-contact-bar {
  position: fixed;
  right: 50%;
  bottom: 18px;
  z-index: 9999;
  display: flex;
  align-items: center;
  gap: 10px;
  width: min(calc(100vw - 24px), 460px);
  padding: 10px;
  border: 1px solid rgba(13, 13, 15, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 18px 46px rgba(13, 13, 15, 0.18);
  transform: translateX(50%);
  backdrop-filter: blur(14px);
}

.cityhub-floating-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 1 1 0;
  gap: 8px;
  min-width: 0;
  min-height: 48px;
  padding: 0 14px;
  border-radius: 999px;
  background: var(--pink);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
}

.cityhub-floating-contact i {
  font-size: 18px;
}

.cityhub-floating-contact:hover {
  background: var(--dark);
  color: var(--white);
}

.cityhub-floating-contact-bar--admin {
  width: min(calc(100vw - 24px), 360px);
}

@media (max-width: 575px) {
  .provider-listing-detail--working-hours,
  .provider-listing-detail--languages,
  .provider-listing-detail--member-since {
    display: none;
  }

  .profile-main-section {
    padding-bottom: 138px;
  }

  .cityhub-floating-contact-bar {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    justify-content: center;
    border-radius: 18px;
    transform: none;
  }

  .cityhub-floating-contact {
    flex: 1 1 0;
    min-width: 0;
    padding: 0 10px;
  }

  .cityhub-floating-contact span {
    font-size: 12px;
  }
}

@media (max-width: 380px) {
  .cityhub-floating-contact {
    min-height: 46px;
    padding: 0 8px;
  }

  .cityhub-floating-contact span {
    display: none;
  }
}

.listing-provider-card .provider-meta strong {
  font-size: 17px;
}

.pagination-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: clamp(34px, 3.5vw, 50px);
}

.pagination-row a,
.pagination-row span {
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1;
  width: 31px;
  border-radius: var(--radius-sm);
  color: #79797a;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.45;
}

.pagination-row a.active {
  background: var(--pink);
  color: var(--white);
}

.pagination-row a:hover {
  color: var(--pink);
}

.details-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(64px, 8.6vw, 124px);
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.84) 4%, rgba(13, 13, 15, 0.54) 42%, rgba(13, 13, 15, 0.1) 58%), var(--details-hero-image, none);
  background-position: center;
  background-size: cover;
}

.details-hero-content {
  color: var(--white);
}

.profile-hero-row {
  display: flex;
  align-items: center;
  gap: 20px;
}

.profile-avatar {
  aspect-ratio: 1;
  width: clamp(72px, 7.22vw, 104px);
  border-radius: 50%;
  object-fit: cover;
}

.profile-hero-copy {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.profile-title-row {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.profile-title-row h1 {
  color: var(--white);
}

.verified-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: var(--radius-sm);
  padding: 8px 10px 8px 8px;
  background: var(--blue);
  color: var(--white);
  font-size: clamp(15px, 1.39vw, 20px);
  line-height: 1.6;
}

.profile-meta {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  color: var(--white);
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.profile-meta span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.profile-meta b {
  aspect-ratio: 1;
  width: 12px;
  border-radius: 50%;
  background: #05df72;
}

.star-rating i,
.review-score i {
  color: #ffb800;
}

.star-rating small {
  color: var(--white);
  font-size: 1em;
}

.profile-main-section {
  padding-block: clamp(56px, 5.56vw, 80px) clamp(80px, 8vw, 128px);
}

.profile-layout {
  display: grid;
  grid-template-columns: 67fr 33fr;
  gap: 50px;
  align-items: start;
}

.profile-content {
  display: flex;
  flex-direction: column;
  gap: 50px;
}

.cityhub-mobile-booking-card {
  display: none;
}

.gallery-section h2,
.about-section h2,
.reviews-section h2 {
  margin-bottom: 20px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
}

.gallery-section h2 span {
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
}

.gallery-main {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  aspect-ratio: 1075 / 626;
  background: var(--dark);
}

.gallery-main img {
  transition: opacity 0.2s ease;
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: inline-grid;
  place-items: center;
  width: 42px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.92);
  color: var(--dark);
  transform: translateY(-50%);
}

.gallery-nav--prev {
  left: 16px;
}

.gallery-nav--next {
  right: 16px;
}

.gallery-nav:hover {
  background: var(--pink);
  color: var(--white);
}

.thumb-slider {
  position: relative;
  margin-top: 16px;
}

.thumb-row {
  display: flex;
  gap: 14px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
  cursor: grab;
  touch-action: pan-y;
  user-select: none;
}

.thumb-row.is-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.thumb-row::-webkit-scrollbar {
  display: none;
}

.thumb-row button {
  position: relative;
  flex: 0 0 calc((100% - 56px) / 5);
  overflow: hidden;
  border-radius: var(--radius-md);
  padding: 0;
  aspect-ratio: 196 / 136;
  background: var(--dark);
  scroll-snap-align: start;
}

.thumb-row button.is-active {
  outline: 3px solid var(--pink);
  outline-offset: 2px;
}

.thumb-row button img {
  pointer-events: none;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.thumb-row button:hover img {
  transform: scale(1.08);
}

.thumb-slider-arrow {
  position: absolute;
  top: 50%;
  z-index: 3;
  display: inline-grid;
  place-items: center;
  width: 38px;
  aspect-ratio: 1;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--dark);
  box-shadow: 0 8px 20px rgba(12, 14, 18, 0.18);
  transform: translateY(-50%);
}

.thumb-slider-arrow--prev {
  left: 10px;
}

.thumb-slider-arrow--next {
  right: 10px;
}

.thumb-slider-arrow:hover {
  background: var(--pink);
  color: var(--white);
}

.more-photos span {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: grid;
  place-items: center;
  color: var(--white);
  font-size: 20px;
  font-weight: 600;
}

.more-photos img {
  opacity: 0.45;
}

.about-section p {
  color: var(--gray);
  font-size: 16px;
  line-height: 1.7;
}

.about-section p + p {
  margin-top: 14px;
}

.profile-sidebar {
  position: sticky;
  top: 86px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.booking-card,
.map-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 24px;
  background: var(--white);
  box-shadow: var(--shadow-card);
}

.booking-card h2 {
  margin-bottom: 12px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 20px;
  line-height: 1.5;
}

.booking-card p {
  margin-bottom: 18px;
  color: var(--gray);
  font-size: 18px;
}

.booking-card p span {
  color: var(--pink);
  font-size: clamp(24px, 2.22vw, 32px);
  font-weight: 600;
}

.booking-card .site-btn {
  width: 100%;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 1.5;
}

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

@media (max-width: 991px) {
  .cityhub-mobile-booking-card {
    display: block;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    padding: 22px;
    background: var(--white);
    box-shadow: var(--shadow-card);
  }

  .cityhub-mobile-booking-card h2 {
    margin-bottom: 12px;
    color: var(--dark);
    font-family: var(--font-body);
    font-size: 20px;
    line-height: 1.5;
  }

  .cityhub-mobile-booking-price {
    margin-bottom: 16px;
    color: var(--gray);
    font-size: 18px;
  }

  .cityhub-mobile-booking-price span {
    color: var(--pink);
    font-size: clamp(22px, 6vw, 30px);
    font-weight: 600;
    line-height: 1.2;
  }

  .profile-sidebar .booking-card {
    display: none;
  }
}

.outline-btn {
  border: 1px solid var(--pink);
  background: var(--white);
  color: var(--pink);
}

.outline-btn:hover {
  background: var(--pink);
  color: var(--white);
}

.map-card {
  padding: 16px;
}

.map-card img {
  overflow: hidden;
  border-radius: var(--radius-md);
  aspect-ratio: 1024 / 526;
}

.map-card h3 {
  margin-top: 16px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.4;
}

.map-card ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin: 16px 0 0;
}

.map-card li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--gray);
  font-size: 14px;
  line-height: 1.45;
}

.map-card li span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.map-card li strong {
  color: var(--dark);
  text-align: right;
}

.reviews-heading {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
  margin-bottom: 30px;
}

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

.review-score strong {
  color: var(--dark);
  font-size: clamp(34px, 4.31vw, 62px);
  font-weight: 400;
  line-height: 1;
}

.review-score span {
  display: flex;
  flex-direction: column;
  gap: 4px;
  color: var(--gray);
  font-size: 14px;
}

.rating-bars {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.rating-bars p {
  display: grid;
  grid-template-columns: 58px 1fr 24px;
  gap: 10px;
  align-items: center;
  color: var(--gray);
  font-size: 13px;
}

.rating-bars b {
  overflow: hidden;
  border-radius: 999px;
  padding-block: 2px;
  background: #ededee;
}

.rating-bars i {
  display: block;
  border-radius: inherit;
  padding-block: 2px;
  background: #ff9f0a;
}

.rating-bars em {
  color: var(--gray);
  font-style: normal;
}

.review-item {
  display: grid;
  grid-template-columns: 170px 1fr;
  gap: 28px;
  border-top: 1px solid rgba(87, 87, 87, 0.16);
  padding-block: 24px;
}

.review-person {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.review-person strong {
  color: var(--dark);
  font-size: 15px;
}

.review-person span,
.review-copy p,
.review-copy a {
  color: var(--gray);
  font-size: 14px;
  line-height: 1.55;
}

.review-copy h3 {
  margin: 6px 0 8px;
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 18px;
  font-weight: 600;
  line-height: 1.4;
}

.review-copy div {
  display: flex;
  gap: 16px;
  margin-top: 10px;
}

.reviews-btn {
  display: flex;
  width: fit-content;
  margin: 6px auto 0;
  padding: 12px 18px;
  font-size: 16px;
  line-height: 1.5;
}

.other-providers-section {
  padding-block: clamp(56px, 5.56vw, 80px);
}

.compact-heading {
  margin-bottom: 24px;
}

.compact-heading .section-subtitle {
  margin-top: 8px;
}

.slider-actions {
  display: flex;
  gap: 8px;
}

.slider-actions button {
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1;
  width: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--white);
  color: var(--dark);
  transition: background-color 0.25s ease, color 0.25s ease, border-color 0.25s ease;
}

.slider-actions button:hover,
.slider-actions button:last-child {
  border-color: var(--pink);
  background: var(--pink);
  color: var(--white);
}

.other-provider-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.contact-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding-block: clamp(64px, 8.6vw, 124px);
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.84) 3%, rgba(13, 13, 15, 0.46) 27%, rgba(13, 13, 15, 0.1) 46%), var(--contact-hero-image, none);
  background-position: center;
  background-size: cover;
}

.contact-hero-content {
  color: var(--white);
}

.contact-hero h1 {
  color: var(--white);
}

.contact-hero p {
  width: 41%;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(16px, 1.39vw, 20px);
  line-height: 1.6;
}

.cityhub-error-hero {
  position: relative;
  isolation: isolate;
  display: flex;
  align-items: center;
  overflow: hidden;
  background-image: linear-gradient(90deg, rgba(13, 13, 15, 0.84) 4%, rgba(13, 13, 15, 0.54) 42%, rgba(13, 13, 15, 0.1) 58%), url("../images/providers-hero.jpg");
  background-position: center;
  background-size: cover;
}

.cityhub-error-content,
.cityhub-error-content h1,
.cityhub-error-content p {
  color: var(--white);
}

.contact-main-section {
  padding-block: clamp(56px, 5.56vw, 80px);
}

.contact-layout {
  display: grid;
  grid-template-columns: 31fr 69fr;
  gap: clamp(42px, 5.2vw, 100px);
  align-items: start;
}

.contact-info-wrap .section-title {
  margin-bottom: 24px;
}

.contact-info-card {
  border: 1px solid rgba(87, 87, 87, 0.6);
  border-radius: var(--radius-xl);
  padding: 28px;
  background: var(--white);
}

.contact-info-item {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-block: 4px 28px;
}

.contact-info-item + .contact-info-item {
  border-top: 1px solid rgba(87, 87, 87, 0.16);
  padding-block: 28px 4px;
}

.contact-info-item > span {
  display: inline-grid;
  place-items: center;
  aspect-ratio: 1;
  width: 73px;
  border-radius: 8px;
  background: #fdf2f8;
  color: var(--pink);
  font-size: 22px;
}

.contact-info-item h3 {
  color: var(--dark);
  font-family: var(--font-body);
  font-size: 24px;
  line-height: 1.35;
}

.contact-info-item a {
  display: inline-block;
  margin-top: 10px;
  color: var(--gray);
  font-size: 18px;
  line-height: 1.35;
}

.contact-form-card {
  border-radius: var(--radius-xl);
  padding: clamp(34px, 4.9vw, 72px) clamp(28px, 4.4vw, 56px) clamp(34px, 4.4vw, 56px);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(12, 14, 18, 0.12);
}

.contact-form-card h2 {
  margin-bottom: clamp(34px, 3vw, 48px);
  color: var(--black);
  font-size: clamp(44px, 4.4vw, 64px);
  line-height: 1.05;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px 32px;
}

.contact-form-card label {
  display: flex;
  flex-direction: column;
  gap: 12px;
  color: var(--dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form-card input,
.contact-form-card textarea {
  width: 100%;
  border: 1px solid rgba(87, 87, 87, 0.16);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card input,
.contact-form-card select {
  min-height: 56px;
}

.contact-form-card textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form-card input:focus,
.contact-form-card select:focus,
.contact-form-card textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 60, 110, 0.12);
}

.contact-form-card input::placeholder,
.contact-form-card textarea::placeholder {
  color: rgba(87, 87, 87, 0.25);
}

.message-field {
  margin-top: 28px;
}

.policy-check {
  display: flex !important;
  flex-direction: row !important;
  align-items: center;
  gap: 12px !important;
  margin-block: 24px;
  color: var(--gray) !important;
  font-size: 16px !important;
  font-weight: 400 !important;
  line-height: 1.5 !important;
}

.policy-check input {
  flex: 0 0 auto;
  width: auto;
  min-height: auto;
  margin-top: 0;
  outline: 0;
  accent-color: var(--pink);
  box-shadow: none;
}

.policy-check input:focus,
.policy-check input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.policy-check a {
  color: var(--pink);
}

.contact-form-card .site-btn {
  width: 100%;
  min-height: 54px;
  border-radius: 8px;
  padding: 14px 24px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper.gravity-theme {
  margin: 0;
}

.contact-form-card .gform_wrapper.gravity-theme .gform-body,
.contact-form-card .gform_wrapper.gravity-theme .ginput_container {
  width: 100%;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_heading {
  margin: 0 0 18px;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 32px;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield {
  display: block;
  grid-column: 1 / -1;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield > .ginput_container {
  margin-top: 12px;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-full,
.contact-form-card .gform_wrapper.gravity-theme .cityhub-full {
  grid-column: 1 / -1;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-half,
.contact-form-card .gform_wrapper.gravity-theme .gf_left_half,
.contact-form-card .gform_wrapper.gravity-theme .gf_right_half {
  grid-column: span 6;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-third,
.contact-form-card .gform_wrapper.gravity-theme .gf_left_third,
.contact-form-card .gform_wrapper.gravity-theme .gf_middle_third,
.contact-form-card .gform_wrapper.gravity-theme .gf_right_third {
  grid-column: span 4;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-quarter {
  grid-column: span 3;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-five-twelfths {
  grid-column: span 5;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-seven-twelfths {
  grid-column: span 7;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--width-eleven-twelfths {
  grid-column: span 11;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield_label,
.contact-form-card .gform_wrapper.gravity-theme .gform-field-label {
  display: inline !important;
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form-card .gform_wrapper.gravity-theme .gfield_required,
.contact-form-card .gform_wrapper.gravity-theme .gfield_required_asterisk {
  display: inline !important;
  width: auto !important;
  margin: 0 0 0 4px !important;
  color: var(--pink);
  font-size: 14px;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="text"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="email"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="tel"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="url"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="number"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields select,
.contact-form-card .gform_wrapper.gravity-theme .gform_fields textarea {
  width: 100%;
  border: 1px solid rgba(87, 87, 87, 0.16);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="text"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="email"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="tel"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="url"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields input[type="number"],
.contact-form-card .gform_wrapper.gravity-theme .gform_fields select {
  min-height: 56px;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields input:focus,
.contact-form-card .gform_wrapper.gravity-theme .gform_fields select:focus,
.contact-form-card .gform_wrapper.gravity-theme .gform_fields textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 60, 110, 0.12);
}

.contact-form-card .gform_wrapper.gravity-theme .gform_fields input::placeholder,
.contact-form-card .gform_wrapper.gravity-theme .gform_fields textarea::placeholder {
  color: rgba(87, 87, 87, 0.25);
}

.contact-form-card .gform_wrapper.gravity-theme .gfield--type-consent,
.contact-form-card .gform_wrapper.gravity-theme .gfield--type-checkbox.cityhub-full {
  display: block;
}

.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent label,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox label {
  display: inline;
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent a,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox a {
  color: var(--pink) !important;
}

.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent input,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox input {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  outline: 0;
  accent-color: var(--pink);
  box-shadow: none;
}

.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent input:focus,
.contact-form-card .gform_wrapper.gravity-theme .ginput_container_consent input:focus-visible,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox input:focus,
.contact-form-card .gform_wrapper.gravity-theme .gfield_checkbox input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.contact-form-card .gform_wrapper.gravity-theme .validation_message {
  margin-top: 8px;
  color: var(--pink);
  font-size: 14px;
}

.gform-theme--framework .gform_validation_errors h2 {
  padding: 0;
  margin: 0;
  text-align: center;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_footer {
  margin-top: 24px;
  padding: 0;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_footer,
.contact-form-card .gform_wrapper.gravity-theme .gform_page_footer {
  display: block;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_button {
  width: 100%;
  border: 0;
  min-height: 54px;
  border-radius: 8px;
  padding: 14px 24px;
  background: var(--pink);
  color: var(--white);
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper.gravity-theme .gform_button:hover {
  background: #eb2c60;
}

.contact-form-card .gform_wrapper .gform_required_legend {
  display: none;
}

.contact-form-card .gform_wrapper .gform-body,
.contact-form-card .gform_wrapper .ginput_container {
  width: 100%;
}

.contact-form-card .gform_wrapper .gform_fields {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px 32px;
}

.contact-form-card .gform_wrapper .gform_fields .gfield {
  display: block;
  grid-column: 1 / -1;
  margin: 0;
  padding: 0;
}

.contact-form-card .gform_wrapper .gform_fields .gfield > .ginput_container {
  margin-top: 12px;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-full,
.contact-form-card .gform_wrapper .gform_fields .cityhub-full {
  grid-column: 1 / -1;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-half,
.contact-form-card .gform_wrapper .gform_fields .gf_left_half,
.contact-form-card .gform_wrapper .gform_fields .gf_right_half {
  grid-column: span 6;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-third,
.contact-form-card .gform_wrapper .gform_fields .gf_left_third,
.contact-form-card .gform_wrapper .gform_fields .gf_middle_third,
.contact-form-card .gform_wrapper .gform_fields .gf_right_third {
  grid-column: span 4;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-quarter {
  grid-column: span 3;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-five-twelfths {
  grid-column: span 5;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-seven-twelfths {
  grid-column: span 7;
}

.contact-form-card .gform_wrapper .gform_fields .gfield--width-eleven-twelfths {
  grid-column: span 11;
}

.contact-form-card .gform_wrapper .gform_fields .gfield_label,
.contact-form-card .gform_wrapper .gform_fields .gform-field-label {
  display: inline !important;
  margin: 0;
  color: var(--dark);
  font-size: 18px;
  font-weight: 400;
  line-height: 1.45;
}

.contact-form-card .gform_wrapper .gform_fields .gfield_required,
.contact-form-card .gform_wrapper .gform_fields .gfield_required_asterisk {
  display: inline !important;
  width: auto !important;
  margin: 0 0 0 4px !important;
  color: var(--pink);
  font-size: 14px;
  line-height: 1 !important;
  vertical-align: baseline !important;
}

.contact-form-card .gform_wrapper .gform_fields input[type="text"],
.contact-form-card .gform_wrapper .gform_fields input[type="email"],
.contact-form-card .gform_wrapper .gform_fields input[type="tel"],
.contact-form-card .gform_wrapper .gform_fields input[type="url"],
.contact-form-card .gform_wrapper .gform_fields input[type="number"],
.contact-form-card .gform_wrapper .gform_fields select,
.contact-form-card .gform_wrapper .gform_fields textarea {
  width: 100%;
  border: 1px solid rgba(87, 87, 87, 0.16);
  border-radius: var(--radius-sm);
  padding: 15px 18px;
  background: #fff;
  color: var(--dark);
  font-size: 16px;
  line-height: 1.5;
  outline: 0;
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.contact-form-card .gform_wrapper .gform_fields input[type="text"],
.contact-form-card .gform_wrapper .gform_fields input[type="email"],
.contact-form-card .gform_wrapper .gform_fields input[type="tel"],
.contact-form-card .gform_wrapper .gform_fields input[type="url"],
.contact-form-card .gform_wrapper .gform_fields input[type="number"],
.contact-form-card .gform_wrapper .gform_fields select {
  min-height: 56px;
}

.contact-form-card .gform_wrapper .gform_fields textarea {
  min-height: 154px;
  resize: vertical;
}

.contact-form-card .gform_wrapper .gform_fields input:focus,
.contact-form-card .gform_wrapper .gform_fields select:focus,
.contact-form-card .gform_wrapper .gform_fields textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(255, 60, 110, 0.12);
}

.contact-form-card .gform_wrapper .gform_fields input::placeholder,
.contact-form-card .gform_wrapper .gform_fields textarea::placeholder {
  color: rgba(87, 87, 87, 0.25);
}

.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox .gchoice {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-block: 0;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent label,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox label {
  display: inline;
  color: var(--gray);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.5;
}

.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent a,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox a {
  color: var(--pink) !important;
}

.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent input,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox input {
  flex: 0 0 auto;
  width: 16px;
  min-height: 16px;
  height: 16px;
  margin: 0;
  outline: 0;
  accent-color: var(--pink);
  box-shadow: none;
}

.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent input:focus,
.contact-form-card .gform_wrapper .gform_fields .ginput_container_consent input:focus-visible,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox input:focus,
.contact-form-card .gform_wrapper .gform_fields .gfield_checkbox input:focus-visible {
  outline: 0;
  box-shadow: none;
}

.contact-form-card .gform_wrapper .gform_footer,
.contact-form-card .gform_wrapper .gform_page_footer {
  display: block;
  margin-top: 24px;
  padding: 0;
}

.contact-form-card .gform_wrapper .gform_footer input[type="submit"],
.contact-form-card .gform_wrapper .gform_page_footer input[type="button"],
.contact-form-card .gform_wrapper .gform_page_footer input[type="submit"],
.contact-form-card .gform_wrapper .gform_button,
.contact-form-card .gform_wrapper .button,
.contact-form-card .gform_wrapper input.gform_button,
.contact-form-card .gform_wrapper input[type="submit"].gform_button,
.contact-form-card .gform_wrapper button[type="submit"] {
  display: inline-flex !important;
  align-items: center;
  justify-content: center;
  width: 100% !important;
  border: 0 !important;
  min-height: 54px;
  border-radius: 8px !important;
  padding: 14px 24px !important;
  background: var(--pink) !important;
  color: var(--white) !important;
  font-size: 16px !important;
  font-weight: 600;
  line-height: 1.5 !important;
  box-shadow: none !important;
  text-shadow: none !important;
}

.contact-form-card .gform_wrapper .gform_footer input[type="submit"]:hover,
.contact-form-card .gform_wrapper .gform_page_footer input[type="button"]:hover,
.contact-form-card .gform_wrapper .gform_page_footer input[type="submit"]:hover,
.contact-form-card .gform_wrapper .gform_button:hover,
.contact-form-card .gform_wrapper .button:hover,
.contact-form-card .gform_wrapper input.gform_button:hover,
.contact-form-card .gform_wrapper input[type="submit"].gform_button:hover,
.contact-form-card .gform_wrapper button[type="submit"]:hover {
  background: #eb2c60 !important;
  color: var(--white) !important;
}

.faq-section {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  padding-block: clamp(70px, 7.3vw, 105px);
  background: var(--dark);
  color: var(--white);
}

.faq-section::before {
  position: absolute;
  inset: 50% auto auto 50%;
  z-index: -1;
  aspect-ratio: 1;
  width: clamp(360px, 33.7vw, 647px);
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 60, 110, 0.15), rgba(255, 255, 255, 0));
  transform: translate(-50%, -50%);
  content: "";
}

.faq-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.faq-inner h2 {
  margin-bottom: 50px;
  color: var(--white);
  text-align: center;
}

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 64%;
}

.faq-item {
  border-radius: var(--radius-xl);
  background: var(--white);
  color: var(--dark);
}

.faq-item button {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: 100%;
  padding: 23px 32px;
  background: transparent;
  color: var(--black);
  font-size: 24px;
  line-height: 1.5;
  text-align: left;
}

.faq-item button i {
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  aspect-ratio: 1;
  width: 32px;
  border-radius: 50%;
  background: #e91e8c;
  color: var(--white);
  font-size: 16px;
}

.faq-item p {
  padding: 0 32px 28px;
  color: var(--gray);
  font-size: 16px;
  line-height: 1.5;
}
