:root {
  --gold: #c5a15e;
  --gold-deep: #b38b45;
  --charcoal: #202020;
  --footer: #292929;
  --paper: #fbfaf6;
  --ink: #171717;
  --muted: #6b665e;
  --pink: #f1ded8;
  --line: rgba(197, 161, 94, 0.36);
  --shell: 1380px;
}

* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  color: var(--ink);
  background: #fff;
  font-family: "Montserrat", Arial, sans-serif;
  font-size: 14px;
  line-height: 1.55;
  overflow-x: hidden;
}
img {
  display: block;
  width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
select {
  font: inherit;
}
.site-shell {
  width: min(var(--shell), calc(100% - 32px));
  margin-inline: auto;
}

/* Typography */
h1,
h2,
h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  margin: 0;
  font-weight: 600;
}
.script-title {
  margin: 0 0 -3px;
  color: #fd1c79;
  font-family: "Allura", cursive;
  font-size: 42px;
  line-height: 0.95;
  font-weight: 400;
}
.script-title--dark {
  color: #fd1c79;
}
.script-title--white {
  color: #fff8e8;
}

/* Buttons */
.button {
  min-width: 160px;
  min-height: 40px;
  padding: 9px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 14px;
  font-weight: 500;
  transition: 0.2s ease;
  cursor: pointer;
}
.button--outline-light {
  border-color: rgba(255, 255, 255, 0.9);
  color: white;
  background: rgba(0, 0, 0, 0.12);
}
.button--outline-light:hover {
  background: #fff;
  color: #111;
}
.button--gold {
  color: #fff;
  background: var(--gold);
  border-color: var(--gold);
}
.button--pink {
  color: #fff;
  background: #fd1c79;
  border-color: #fd1c79;
}
.button--gold:hover {
  background: var(--gold-deep);
  border-color: var(--gold-deep);
}

/* Hero */
.hero {
  position: relative;
  height: 720px;
  min-height: 530px;
  color: #fff;
  overflow: hidden;
  background: #111;
}
.hero__image {
  position: absolute;
  inset: 0;
  background: url("../assets/images/booking-update.png") center 52% / cover
    no-repeat;
  transform: scale(1.01);
}
.hero__shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      90deg,
      rgba(0, 0, 0, 0.82) 0%,
      rgba(0, 0, 0, 0.58) 36%,
      rgba(0, 0, 0, 0.14) 72%,
      rgba(0, 0, 0, 0.25) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, 0.38),
      rgba(0, 0, 0, 0.05) 48%,
      rgba(0, 0, 0, 0.3)
    );
}
.topbar {
  position: absolute;
  inset: 0 0 auto;
  z-index: 4;
  height: 32px;
  background: rgba(9, 9, 9, 0.78);
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  font-size: 9px;
  letter-spacing: 0.04em;
}
.topbar__inner,
.topbar__left,
.topbar__right {
  display: flex;
  align-items: center;
}
.topbar__inner {
  justify-content: space-between;
  height: 100%;
}
.topbar__left {
  gap: 34px;
  opacity: 0.9;
}
.topbar__right {
  gap: 13px;
}
.topbar__right > a:not(.topbar__booking) {
  width: 17px;
  height: 17px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  display: grid;
  place-items: center;
  font-size: 9px;
}
.topbar__booking {
  margin-left: 8px;
  color: #fd1c79;
  font-size: 9px;
  text-transform: uppercase;
}
.main-nav {
  position: absolute;
  z-index: 5;
  top: 32px;
  left: 0;
  right: 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
  background: rgba(0, 0, 0, 0.24);
}
.main-nav__inner {
  height: 74px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo-wrap {
  width: 102px;
  height: 64px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.logo {
  width: 40px;
  margin-left: 10px;
  height: 40px;
  object-fit: contain;
  transform: scale(1.18);
  filter: saturate(0.75) brightness(0.95);
}
.nav-links {
  display: flex;
  gap: 26px;
  align-items: center;
  height: 100%;
}
.nav-links a {
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 12.5px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  position: relative;
  font-weight: 600;
}
.nav-links a.active {
  color: #fd1c79;
}
.nav-links a.active::after,
.nav-links a:hover::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 19px;
  height: 1px;
  background: #fd1c79;
}
.nav-toggle {
  display: none;
  border: 0;
  background: transparent;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: white;
  margin: 5px 0;
}
.hero__content {
  position: relative;
  z-index: 3;
  padding-top: 184px;
}
.hero__content .script-title {
  font-size: 46px;
  margin-left: -7px;
}
.hero__content h1 {
  font-size: 44px;
  line-height: 0.92;
  letter-spacing: 0.005em;
  text-shadow: 0 2px 13px rgba(0, 0, 0, 0.3);
}
.hero__sub {
  margin: 13px 0 18px;
  color: #fd1c79;
  font-family: "Cormorant Garamond", serif;
  font-size: 22px;
  font-weight: 600;
}
.hero__buttons {
  display: flex;
  gap: 7px;
}

/* Shared */
.section-white {
  background: #fff;
}
.gold-section {
  background: #fd1c79;
  color: #fff;
}

/* About */
.about {
  padding: 43px 0 38px;
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 38px;
  align-items: center;
}
.about__visual {
  position: relative;
  padding-bottom: 38px;
}
.about__visual > img {
  height: 420px;
  object-fit: cover;
  object-position: center 47%;
}
.trust-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 58px;
  display: grid;
  grid-template-columns: 68px 1fr;
  align-items: center;
  background: #2b2926;
  color: #fff;
  font-family: "Cormorant Garamond", Georgia, serif;
}
.trust-strip__play {
  height: 58px;
  display: grid;
  place-items: center;
  background: #fd1c79;
  font-size: 17px;
  margin-right: 10px;
}
.trust-strip small {
  display: block;
  font-family: "Montserrat", sans-serif;
  font-size: 12px;
  letter-spacing: 0.04em;
}
.trust-strip strong {
  display: block;
  margin-top: 2px;
  font-size: 14px;
  font-weight: 500;
}
.about__content {
  padding: 1px 0 0;
}
.about__content .script-title {
  font-size: 43px;
  margin-left: 2px;
}
.about__content h2 {
  margin-top: -6px;
  font-size: 45px;
  line-height: 1;
}
.about__intro {
  max-width: 690px;
  margin: 7px 0 18px;
  font-size: 16px;
  font-weight: 500;
}
.feature-row {
  display: grid;
  grid-template-columns: 35px 1fr;
  gap: 11px;
  margin: 13px 0;
}
.feature-row__icon {
  width: 29px;
  height: 29px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fd1c79;
  color: #fff;
  font-size: 16px;
  font-weight: 700;
  margin-top: 2px;
}
.feature-row h3 {
  font-size: 32px;
}
.feature-row p {
  margin: 4px 0 0;
  font-size: 16px;
  font-weight: 500;
}
.stats-row {
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.stat-item {
  display: flex;
  /* align-items: center; */
  gap: 9px;
  min-width: 0;
}
.stat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #1e4c88;
  color: #ffd149;
  font-size: 17px;
}
.stat-icon--map {
  background: linear-gradient(
    140deg,
    #31b64b,
    #31b64b 36%,
    #ffd844 37%,
    #ffd844 58%,
    #e84d43 59%,
    #e84d43 77%,
    #4285f4 78%
  );
  color: white;
}
.stat-item strong {
  display: block;
  font-size: 20px;
}
.stat-item small {
  display: block;
  margin-top: 2px;
  font-size: 16px;
  color: #4e4b47;
}

/* Gold headings / reviews */
.reviews {
  padding: 20px 0 20px 0;
  margin-bottom: 30px;
}
.gold-heading {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
}
.gold-heading .script-title {
  font-size: 50px;
}
.gold-heading__subtitle {
  margin: 5px 0 10px 0;
  font-family: "Cormorant Garamond", serif;
  font-style: italic;
  font-size: 18px;
}
.slider-arrows {
  display: flex;
  gap: 5px;
}
.gold-heading > .slider-arrows {
  position: absolute;
  right: 0;
  bottom: 9px;
}
.slider-arrows button {
  width: 32px;
  height: 32px;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.85);
  display: grid;
  place-items: center;
  color: #fff;
  background: transparent;
  font-family: Arial, sans-serif;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.2s ease,
    color 0.2s ease,
    transform 0.2s ease;
}
.slider-arrows button:hover {
  background: #fff;
  color: #b38b45;
}
.slider-arrows button:active {
  transform: scale(0.92);
}
.slider-arrows button:focus-visible {
  outline: 2px solid #fff;
  outline-offset: 2px;
}
.slider-viewport {
  overflow: hidden;
  width: 100%;
}
.slider-track {
  --slider-gap: 12px;
  --slides-visible: 3;
  display: flex;
  gap: var(--slider-gap);
  will-change: transform;
  transition: transform 0.48s cubic-bezier(0.22, 0.61, 0.36, 1);
  touch-action: pan-y;
}
.review-grid {
  display: flex;
  gap: var(--slider-gap);
}
.review-grid > .review-card {
  flex: 0 0
    calc(
      (100% - (var(--slider-gap) * (var(--slides-visible) - 1))) /
        var(--slides-visible)
    );
}
.review-card {
  min-height: 132px;

  border: 5px solid rgba(255, 255, 255, 0.92);
  background: #f3dfda;
  display: grid;
  grid-template-columns: 45% 55%;
  color: #392a26;
  overflow: hidden;
}
.review-card img {
  height: 100%;
  min-height: 122px;
  object-fit: cover;
}
.review-card__body {
  padding: 10px 9px 8px;
  text-align: center;
  background: #ffffff;
}
.review-card__body small {
  display: block;
  font-size: 12px;
  letter-spacing: 0.15em;
  font-weight: 600;
}
.review-card__stars {
  font-size: 14px;
  letter-spacing: 2px;
  color: #ca9d38;
  margin: 1px 0 1px;
}
.review-card__body strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
  text-transform: uppercase;
}
.review-card__body p {
  margin: 4px 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 17px;
  line-height: 1.15;
}
.review-card__name {
  font-family: "Allura", cursive;
  font-size: 17px;
}

/* Trending */
.trending {
  background: #fff;
}
.trending__head {
  min-height: 88px;
  display: flex;
  align-items: center;
}
.trending__head-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr auto;
  gap: 50px;
  align-items: center;
  margin-top: 20px;
  margin-bottom: 20px;
}
.trending__head .script-title {
  font-size: 45px;
  margin-bottom: -5px;
}
.trending__head h2 {
  color: #fff;
  font-size: 32px;
  line-height: 1;
  letter-spacing: 0.01em;
}
.trending__head p {
  margin: 0 0 3px;
  font-size: 15px;
}
.trending-slider {
  overflow: hidden;
}
.trending__grid {
  --slider-gap: 20px;
  --slides-visible: 4;
  display: flex;
  gap: var(--slider-gap);
  padding-top: 19px;
  padding-bottom: 18px;
}
.trending__grid > figure {
  flex: 0 0
    calc(
      (100% - (var(--slider-gap) * (var(--slides-visible) - 1))) /
        var(--slides-visible)
    );
}
.trending__grid figure {
  margin: 0;
  height: 580px;
  border: 5px solid #fff;
  box-shadow: 0 0 0 1px #eee;
  overflow: hidden;
}
.trending__grid img {
  height: 100%;
  object-fit: cover;
}
.trending__grid figure:nth-child(2) img {
  object-position: center 47%;
}
.trending__caption {
  min-height: 36px;
  display: grid;
  place-items: center;
  text-align: center;
}
.trending__caption p {
  margin: 10px;
  font-family: "Cormorant Garamond", serif;
  font-size: 20px;
}

/* Services */
.services {
  background: #fff8f8;
  position: relative;
  padding: 40px 0 45px;
  overflow: hidden;
}
.services::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  left: -170px;
  top: -130px;
  border-radius: 50%;
  background: repeating-radial-gradient(
    circle at center,
    rgba(198, 165, 95, 0.045) 0 1px,
    transparent 1px 15px
  );
  pointer-events: none;
}
.center-heading {
  text-align: center;
  position: relative;
  z-index: 1;
}
.center-heading .script-title {
  font-size: 50px;
}
.center-heading h2 {
  font-size: 35px;
  line-height: 1;
}
.center-heading > p:last-child {
  max-width: 85%;
  margin: 6px auto 0;
  font-size: 15px;
}
.service-grid {
  position: relative;
  z-index: 1;
  margin-top: 20px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 23px;
}
.service-card {
  text-align: center;
  padding: 5px;
  background: #fefefe;
  box-shadow: 0 0 22px 0 rgb(44 60 77 / 6%);
  border-radius: 6px;
}
.service-card img {
  height: 360px;
  object-fit: cover;
}
.service-card h3 {
  margin-top: 10px;
  font-size: 30px;
  line-height: 1;
}
.service-card p {
  max-width: 300px;
  margin: 4px auto 0;
  font-size: 16px;
  font-weight: 400;
}

/* Pricing */
.pricing {
  position: relative;
  color: #eee;
  background: #1f1f1f;
  padding: 28px 0 35px;
  overflow: hidden;
}
.pricing .pricing__content {
  max-width: 80%;
}
.pricing__pattern {
  position: absolute;
  inset: 0;
  opacity: 0.09;
  background:
    radial-gradient(
      circle at 12% 45%,
      transparent 0 72px,
      #c5a15e 73px 74px,
      transparent 75px 92px,
      #c5a15e 93px 94px,
      transparent 95px
    ),
    radial-gradient(
      circle at 89% 55%,
      transparent 0 90px,
      #c5a15e 91px 92px,
      transparent 93px
    );
}
.pricing__content {
  position: relative;
  z-index: 1;
}
.center-heading--dark .script-title {
  color: #fd1c79;
}
.center-heading--dark h2 {
  color: white;
  font-size: 35px;
}
.center-heading--dark > p:last-child {
  color: #c6c2bb;
  font-size: 15px;
}
.price-tabs {
  width: fit-content;
  margin: 18px auto 15px;
  border: 1px solid rgba(197, 161, 94, 0.35);
  display: flex;
}
.price-tabs button {
  min-width: 80px;
  border: 0;
  border-right: 1px solid rgba(197, 161, 94, 0.25);
  padding: 7px 14px;
  color: #fff;
  background: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
  cursor: pointer;
}
.price-tabs button:last-child {
  border-right: 0;
}
.price-tabs button.is-active {
  background: #fd1c79;
  color: #fff;
}
.price-panel {
  display: none;
  grid-template-columns: 1fr 1fr;
  gap: 46px;
}
.price-panel.is-active {
  display: grid;
}
.price-column {
  min-width: 0;
}
.price-item {
  min-height: 48px;
  padding: 8px 0 6px;
  border-bottom: 1px dotted rgba(255, 255, 255, 0.17);
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 15px;
}
.price-item h3 {
  color: #f0ece5;
  font-family: "Cormorant Garamond", serif;
  font-size: 18px;
  line-height: 1.1;
  font-weight: 500;
}
.price-item p {
  margin: 2px 0 0;
  color: #ffa2c8;
  font-size: 20px;
  line-height: 1.3;
}
.price-item strong {
  color: #ffa2c8;
  font-family: math;
  font-size: 22px;
  font-weight: 500;
  white-space: nowrap;
}
.opening-bar {
  margin-top: 22px;
  min-height: 47px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
  font-family: "Cormorant Garamond", serif;
  font-size: 16px;
}
.opening-bar > div {
  display: flex;
  align-items: center;
  gap: 9px;
}
.opening-bar__icon {
  color: #d5ad62;
  font-size: 14px;
}
.opening-bar .button {
  min-width: 135px;
  min-height: 27px;
  padding: 4px 10px;
  font-size: 15px;
}

/* Contact */
.contact {
  min-height: 470px;
  display: grid;
  grid-template-columns: 55% 45%;
  background: #fff;
}
.contact__form-side {
  display: flex;
  justify-content: flex-end;
}
.contact__form-inner {
  width: min(690px, calc(100% - 45px));
  padding: 29px 30px 29px 0;
}
.contact__form-inner .script-title {
  font-size: 40px;
  margin-bottom: -3px;
}
.contact__form-inner h2 {
  font-size: 26px;
  line-height: 1.3;
}
.contact__form-inner > p {
  margin: 8px 0 14px;
  max-width: 610px;
  font-size: 15px;
}
.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px 15px;
}
.contact-form input,
.contact-form select {
  /* width: 100%; */
  height: 40px;
  border: 1px solid #ddd5c8;
  background: #fff;
  padding: 0 10px;
  font-size: 12px;
  color: #5e5a54;
  outline: none;
}
.contact-form input:focus,
.contact-form select:focus {
  border-color: var(--gold);
}
.contact-form .button {
  /* grid-column: 1 / -1; */
  justify-self: start;
  width: 100%;
  min-height: 34px;
  padding: 6px 14px;
  border-radius: 7px;
  font-size: 14.5px;
}
.form-status {
  width: max-content;
  color: #db8f08;
  font-size: 16px !important;
  margin-top: 12px !important;
}
.contact__photo {
  min-height: 530px;
  background: url("../assets/images/Booking-elly.png") center 49% / cover
    no-repeat;
}

/* Footer */
.footer {
  background: #292929;
  color: #d0d0d0;
  padding-top: 31px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.25fr 0.8fr 1fr;
  gap: 64px;
  padding-bottom: 32px;
}
.footer__col h3 {
  color: #fff;
  font-size: 22px;
  font-weight: 500;
  margin-bottom: 12px;
}
.footer__col p,
.footer__col a {
  font-size: 16px;
  line-height: 1.6;
}
.footer__col p {
  margin: 0 0 10px;
}
.footer__col > a:not(.footer__link) {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
}
.footer__link {
  color: #fd1c79;
}
.channel-icon {
  width: 25px;
  height: 25px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: linear-gradient(
    145deg,
    #36b558 0 35%,
    #ffd347 36% 60%,
    #e64e45 61% 75%,
    #4385f4 76%
  );
  color: white;
}
.channel-icon--insta {
  background: radial-gradient(
    circle at 65% 65%,
    #ffd66b 0 12%,
    #e34d6d 28%,
    #9b39a6 58%,
    #4e5bd7 82%
  );
}
.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 15px 0;
  font-size: 14px;
}

/* Responsive */

/* Reusable slider responsive behavior */
@media (max-width: 900px) {
  .slider-track {
    --slides-visible: 2;
  }
}
@media (max-width: 620px) {
  .slider-track {
    --slides-visible: 1;
  }
}
@media (max-width: 980px) {
  .site-shell {
    width: min(var(--shell), calc(100% - 34px));
  }
  .topbar__left .topbar__item:first-child {
    display: none;
  }
  .nav-toggle {
    display: block;
    margin-left: auto;
  }
  .nav-links {
    display: none;
    position: absolute;
    top: 74px;
    left: 0;
    right: 0;
    height: auto;
    background: rgba(18, 18, 18, 0.98);
    padding: 16px 22px;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
  }
  .nav-links.is-open {
    display: flex;
  }
  .nav-links a {
    width: 100%;
    height: 42px;
  }
  .nav-links a.active::after,
  .nav-links a:hover::after {
    display: none;
  }
  .about__grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 24px;
  }
  .stats-row {
    grid-template-columns: 1fr;
  }
  .review-card {
    grid-template-columns: 45% 55%;
  }
  .trending__head-inner {
    grid-template-columns: 1fr 1.2fr auto;
    gap: 25px;
  }
}

@media (max-width: 760px) {
  .hero {
    height: 570px;
    min-height: 570px;
  }
  .topbar__left {
    display: none;
  }
  .topbar__inner {
    justify-content: flex-end;
  }
  .hero__content {
    padding-top: 205px;
  }
  .hero__content h1 {
    font-size: 39px;
  }
  .hero__buttons {
    flex-wrap: wrap;
  }
  .about__grid,
  .price-panel.is-active,
  .contact {
    grid-template-columns: 1fr;
  }
  .about__visual > img {
    height: 330px;
  }
  .stats-row {
    grid-template-columns: repeat(2, 1fr);
  }
  .review-grid,
  .service-grid,
  .trending__grid {
    grid-template-columns: 1fr;
  }
  .review-card {
    min-height: 150px;
  }
  .trending__head-inner {
    grid-template-columns: 1fr auto;
  }
  .trending__head-inner > p {
    grid-column: 1 / -1;
    grid-row: 2;
  }
  .trending__grid figure,
  .service-card img {
    height: 500px;
  }
  .price-tabs {
    width: 100%;
    overflow-x: auto;
    justify-content: flex-start;
  }
  .price-tabs button {
    flex: 0 0 auto;
  }
  .opening-bar {
    padding: 12px;
    flex-direction: column;
    gap: 10px;
    text-align: center;
  }
  .contact__form-side {
    justify-content: center;
  }
  .contact__form-inner {
    width: calc(100% - 34px);
    padding: 30px 0;
  }
  .contact__photo {
    min-height: 290px;
  }
  .footer__grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
}
.date-input-wrap .date-placeholder {
  opacity: 0;
}
@media (max-width: 520px) {
  .date-input-wrap .date-placeholder {
    opacity: 1;
  }
  .date-input-wrap input {
    max-width: 90vw;
  }
  .pricing .pricing__content {
    max-width: unset;
  }
  .site-shell {
    width: calc(100% - 26px);
  }
  .topbar__right > a:not(.topbar__booking) {
    display: none;
  }
  .hero__content .script-title {
    font-size: 39px;
  }
  .hero__content h1 {
    font-size: 32px;
  }
  .hero__sub {
    font-size: 17px;
  }
  .button {
    min-width: 145px;
  }
  .about__content h2 {
    font-size: 39px;
  }
  /* .stats-row {
    grid-template-columns: 1fr;
  } */
  .gold-heading {
    justify-content: flex-start;
    text-align: left;
  }
  .review-card {
    grid-template-columns: 45% 55%;
  }
  .trending__head h2 {
    font-size: 23px;
  }
  /* .service-card img,
  .trending__grid figure {
    height: 240px;
  } */
  .contact-form {
    grid-template-columns: 1fr;
  }
  .contact-form .button {
    grid-column: auto;
  }
}

.floating-buttons {
  position: fixed;
  right: 18px;
  bottom: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 99999;
}

.btn-floating {
  background: #1e90ff;
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease;
  animation: vibrate 1.5s infinite;
}

.btn-floating:hover {
  transform: scale(1.05);
  box-shadow: 0 15px 25px rgba(0, 0, 0, 0.2);
}
.map {
  background: #fe2c28;
}

.booking {
  background: #fd1c79;
}
.whatsapp {
  background: #25d366;
}

svg.emoji,
img.emoji {
  display: inline !important;
  border: none !important;
  box-shadow: none !important;
  height: 1em !important;
  width: 1em !important;
  margin: 0 0.07em !important;
  vertical-align: -0.1em !important;
  background: none !important;
  padding: 0 !important;
}
@keyframes vibrate {
  0% {
    transform: translate(0);
  }
  20% {
    transform: translate(-1px, 1px);
  }
  40% {
    transform: translate(1px, -1px);
  }
  60% {
    transform: translate(-1px, -1px);
  }
  80% {
    transform: translate(1px, 1px);
  }
  100% {
    transform: translate(0);
  }
}
.date-input-wrap {
  position: relative;
  width: 100%;
}

.date-input-wrap input {
  width: 100%;
  /* max-width: 100%; */
}

.date-placeholder {
  position: absolute;

  left: 16px;
  top: 50%;

  transform: translateY(-50%);

  color: #777;

  font-size: 14px;

  pointer-events: none;

  z-index: 2;
}
.date-input-wrap input[type="date"]:not(:valid) {
  color: transparent;
}

#appointmentDate.date-empty::-webkit-datetime-edit {
  color: transparent;
}

#appointmentDate.date-empty::-webkit-date-and-time-value {
  color: transparent;
}

#appointmentDate.date-empty {
  color: transparent;
}

/* Chrome / Safari / iPhone */
#appointmentDate.date-empty::-webkit-datetime-edit {
  color: transparent;
}

/* quan trọng trên iOS */
#appointmentDate.date-empty::-webkit-date-and-time-value {
  color: transparent;
}
