/* ===== index ===== */

/* Target WebKit browsers (Chrome, Safari, Edge, Opera) */
input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Target Mozilla Firefox */
input[type="number"] {
  -moz-appearance: textfield;
  appearance: textfield; /* Standard property */
}

:root {
  --pink: #fcc7d3;

  --pink-soft: #ffe4eb;

  --pink-light: #fff7fa;

  --red: #de1058;

  --red-dark: #b90c48;

  --black: #171217;

  --text: #5f1730;

  --white-glass: rgba(255, 255, 255, 0.62);

  --border: rgba(222, 16, 88, 0.14);

  --shadow: 0 30px 80px rgba(176, 20, 73, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  color: var(--black);

  background: var(--pink);

  overflow-x: hidden;

  overscroll-behavior-y: none;

  -webkit-font-smoothing: antialiased;

  text-rendering: optimizeLegibility;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);

  color: white;
}

/* Custom Scrollbar */

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffd7e1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));

  border-radius: 999px;

  border: 3px solid #ffd7e1;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--red-dark);
}

/* Firefox scrollbar */

* {
  scrollbar-width: thin;

  scrollbar-color: var(--red) #ffd7e1;
}

/* Global Animated Love Background */

.global-love-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 12%,

      rgba(255, 255, 255, 0.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,

      rgba(222, 16, 88, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 22% 82%,

      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    radial-gradient(
      circle at 76% 88%,

      rgba(222, 16, 88, 0.1),
      transparent 28%
    ),
    linear-gradient(135deg, #fcc7d3 0%, #ffd3dd 45%, #fcc7d3 100%);
}

.global-love-bg::before {
  content: "";

  position: absolute;

  inset: -20%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0 2px,

    transparent 3px
  );

  background-size: 42px 42px;

  opacity: 0.32;

  animation: softGridMove 28s linear infinite;
}

.global-love-bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(252, 199, 211, 0.82),
    rgba(252, 199, 211, 0.45),
    rgba(252, 199, 211, 0.82)
  );

  opacity: 0.55;
}

.love-bg-word {
  position: absolute;

  font-family: "Playfair Display", serif;

  color: var(--red);

  opacity: var(--opacity);

  font-weight: 700;

  white-space: nowrap;

  user-select: none;

  will-change: transform, opacity;

  transform-origin: center;

  animation:
    loveFloat var(--duration, 12s) ease-in-out infinite,
    lovePulse calc(var(--duration, 12s) * 1.4) ease-in-out infinite;
}

.love-bg-word.is-large {
  opacity: 0.105;

  font-weight: 800;
}

.love-bg-word.is-small {
  opacity: 0.22;
}

.love-bg-word.layer-back {
  filter: blur(0.4px);

  opacity: 0.09;
}

.love-bg-word.layer-front {
  opacity: 0.2;
}

@keyframes loveFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }

  35% {
    transform: translate3d(var(--move-x), calc(var(--move-y) * -1), 0)
      rotate(calc(var(--rotate) + 2deg));
  }

  70% {
    transform: translate3d(calc(var(--move-x) * -0.45), var(--move-y), 0)
      rotate(calc(var(--rotate) - 2deg));
  }
}

@keyframes lovePulse {
  0%,
  100% {
    opacity: var(--opacity);
  }

  50% {
    opacity: calc(var(--opacity) + 0.06);
  }
}

@keyframes softGridMove {
  from {
    transform: translate3d(0, 0, 0) rotate(0deg);
  }

  to {
    transform: translate3d(42px, 42px, 0) rotate(2deg);
  }
}

.site-wrapper {
  position: relative;

  z-index: 2;
}

.site-section {
  min-height: 100vh;

  min-height: 100svh;

  position: relative;

  display: flex;

  align-items: center;

  padding: 110px 0 80px;
}

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid var(--border);

  color: var(--red);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 18px;
}

.section-title {
  font-family: "Playfair Display", serif;

  color: var(--red);

  font-size: clamp(42px, 5vw, 76px);

  line-height: 0.98;

  letter-spacing: -0.055em;

  margin-bottom: 20px;
}

.section-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  font-weight: 500;

  max-width: 680px;
}

/* Navbar */

.lovely-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(252, 199, 211, 0.84);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 16, 88, 0.13);

  padding: 13px 0;

  padding-top: max(13px, env(safe-area-inset-top));
}

.navbar-brand {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--red);

  font-weight: 900;
}

.logo-mark {
  width: 46px;

  height: 46px;

  border: 3px solid var(--red);

  border-radius: 19px 19px 9px 9px;

  display: grid;

  place-items: center;

  position: relative;

  background: rgba(255, 255, 255, 0.38);

  flex: 0 0 auto;
}

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  top: -11px;

  width: 24px;

  height: 24px;

  border-top: 3px solid var(--red);

  border-left: 3px solid var(--red);

  border-radius: 50% 0 0 0;
}

.logo-mark::before {
  left: 4px;

  transform: rotate(45deg);
}

.logo-mark::after {
  right: 4px;

  transform: rotate(135deg);
}

.logo-mark i {
  color: var(--red);

  font-size: 14px;

  margin-top: 10px;
}

.logo-text strong {
  display: block;

  font-size: 27px;

  color: var(--red);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.logo-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--black);

  font-weight: 900;

  text-transform: uppercase;

  margin-top: 5px;
}

.navbar-nav .nav-link {
  color: #641028;

  font-size: 14px;

  font-weight: 800;

  padding: 10px 11px !important;

  transition: 0.25s ease;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--red);

  transform: translateY(-1px);
}

.phone-link {
  color: var(--red);

  font-weight: 900;

  white-space: nowrap;
}

.main-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);

  transition: 0.25s ease;

  white-space: nowrap;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.main-btn:hover {
  color: white;

  background: var(--red-dark);

  transform: translateY(-2px);

  box-shadow: 0 18px 38px rgba(222, 16, 88, 0.32);
}

.secondary-btn {
  background: rgba(255, 255, 255, 0.5);

  color: var(--red);

  border: 1px solid rgba(222, 16, 88, 0.18);

  padding: 12px 18px;

  border-radius: 999px;

  font-weight: 900;

  transition: 0.25s ease;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.secondary-btn:hover {
  color: var(--red);

  background: white;

  transform: translateY(-2px);
}

.navbar-toggler {
  border: 0;

  box-shadow: none !important;

  -webkit-tap-highlight-color: transparent;
}

/* Hero */

.hero-section {
  min-height: 100vh;

  min-height: 100svh;

  background:
    linear-gradient(
      90deg,
      rgba(252, 199, 211, 0.98) 0%,

      rgba(252, 199, 211, 0.84) 45%,

      rgba(252, 199, 211, 0.58) 100%
    ),
    url("../images/lovely-banner.webp") center/cover no-repeat;
}

.hero-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(54px, 7.5vw, 104px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  color: var(--red);

  margin-bottom: 24px;
}

.hero-title span {
  display: block;

  margin-top: 18px;

  color: var(--black);

  font-family: "Inter", sans-serif;

  font-size: clamp(20px, 2vw, 31px);

  line-height: 1.15;

  letter-spacing: -0.045em;

  max-width: 680px;

  font-weight: 900;
}

.hero-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  max-width: 630px;

  font-weight: 600;

  margin-bottom: 28px;
}

.hero-actions {
  display: flex;

  align-items: center;

  flex-wrap: wrap;

  gap: 14px;

  margin-bottom: 28px;
}

.trust-row {
  display: flex;

  flex-wrap: wrap;

  gap: 12px;
}

.trust-pill {
  padding: 9px 13px;

  border-radius: 999px;

  background: rgba(255, 255, 255, 0.46);

  color: #641028;

  font-weight: 900;

  font-size: 13px;

  border: 1px solid rgba(222, 16, 88, 0.13);

  display: inline-flex;

  align-items: center;

  gap: 7px;
}

/* Quote Card */

.quote-card {
  position: relative;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 34px;

  padding: 30px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  overflow: hidden;
}

.quote-card::before {
  content: "";

  position: absolute;

  width: 210px;

  height: 210px;

  border-radius: 50%;

  background: rgba(222, 16, 88, 0.09);

  top: -90px;

  right: -80px;
}

.quote-card h3 {
  position: relative;

  font-size: 28px;

  font-weight: 900;

  color: var(--black);

  letter-spacing: -0.045em;

  margin-bottom: 6px;
}

.quote-card p {
  position: relative;

  color: #7d2d45;

  font-weight: 700;

  margin-bottom: 22px;
}

.quote-card label {
  color: #591127;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 7px;
}

.quote-card .form-control,
.quote-card .form-select {
  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 17px;

  padding: 14px 15px;

  font-weight: 800;

  color: var(--black);

  background: rgba(255, 255, 255, 0.82);

  box-shadow: none;

  font-size: 16px;
}

.quote-card .form-control:focus,
.quote-card .form-select:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

.quote-submit {
  width: 100%;

  border: none;

  background: var(--red);

  color: white;

  padding: 15px 18px;

  border-radius: 18px;

  font-weight: 900;

  margin-top: 10px;

  transition: 0.25s ease;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);
}

.quote-submit:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.small-note {
  margin-top: 14px;

  color: #7d2d45;

  font-size: 13px;

  text-align: center;

  font-weight: 800;
}

/* Why Us */

.why-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 30px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(176, 20, 73, 0.11);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  transition: 0.28s ease;
}

.why-card:hover {
  transform: translateY(-8px);

  box-shadow: 0 34px 80px rgba(176, 20, 73, 0.18);

  background: rgba(255, 255, 255, 0.72);
}

.why-icon {
  width: 48px;
  height: 48px;
  border-radius: 22px;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 20px;
  margin-bottom: 13px;
  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.25);
}

.why-card h3 {
  font-size: 22px;

  font-weight: 900;

  color: var(--black);

  letter-spacing: -0.04em;

  margin-bottom: 12px;
}

.why-card p {
  color: var(--text);

  line-height: 1.7;

  font-weight: 600;

  margin: 0;
}

/* Steps */

.step-card {
  position: relative;

  background: rgba(255, 255, 255, 0.6);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 30px;

  padding: 16px;

  box-shadow: 0 24px 60px rgba(176, 20, 73, 0.11);

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);

  height: 100%;

  transition: 0.28s ease;
}

.step-card:hover {
  transform: translateY(-7px);
}

.step-number {
  width: 52px;

  height: 52px;

  border-radius: 50%;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  font-weight: 900;

  font-size: 18px;

  margin-bottom: 18px;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.25);
}

.step-card h3 {
  font-size: 22px;

  font-weight: 900;

  letter-spacing: -0.04em;

  margin-bottom: 12px;
}

.step-card p {
  color: var(--text);

  font-weight: 600;

  line-height: 1.7;

  margin: 0;
}

/* Contact */

.contact-box {
  background: rgba(255, 255, 255, 0.64);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 34px;

  padding: 34px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);
}

.contact-item {
  display: flex;

  gap: 15px;

  align-items: flex-start;

  padding: 18px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.45);

  border: 1px solid rgba(222, 16, 88, 0.1);

  margin-bottom: 14px;
}

.contact-item i {
  width: 44px;

  height: 44px;

  border-radius: 16px;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  flex: 0 0 auto;
}

.contact-item strong {
  display: block;

  color: var(--black);

  font-weight: 900;

  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  color: var(--text);

  font-weight: 700;
}

.contact-form .form-control,
.contact-form .form-select,
.contact-form textarea {
  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 17px;

  padding: 14px 15px;

  font-weight: 700;

  color: var(--black);

  background: rgba(255, 255, 255, 0.8);

  box-shadow: none;

  font-size: 16px;
}

.contact-form textarea {
  min-height: 126px;

  resize: none;
}

.contact-form .form-control:focus,
.contact-form .form-select:focus,
.contact-form textarea:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

/* Footer */

.footer-section {
  min-height: auto;

  padding: 70px 0 28px;

  background: rgba(222, 16, 88, 0.96);

  color: white;

  position: relative;

  z-index: 2;
}

.footer-logo {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -0.055em;

  margin-bottom: 10px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.7;

  font-weight: 500;
}

.footer-title {
  font-weight: 900;

  margin-bottom: 17px;

  font-size: 16px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;

  transition: 0.2s ease;
}

.footer-links a:hover {
  color: white;

  padding-left: 4px;
}

.socials {
  display: flex;

  gap: 10px;

  margin-top: 18px;
}

.socials a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  color: white;

  display: grid;

  place-items: center;

  transition: 0.25s ease;
}

.socials a:hover {
  background: white;

  color: var(--red);

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  margin-top: 42px;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-weight: 600;
}

input,
select,
textarea {
  font-size: 16px !important;
}

a,
button,
.nav-link {
  -webkit-tap-highlight-color: transparent;
}

/* Responsive */

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 247, 250, 0.96);

    border: 1px solid rgba(222, 16, 88, 0.12);

    border-radius: 24px;

    padding: 18px;

    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  body {
    overscroll-behavior-y: auto;
  }

  .global-love-bg::before {
    opacity: 0.22;

    animation-duration: 42s;
  }

  .love-bg-word {
    animation-duration: 16s;
  }

  .site-section {
    min-height: auto;

    padding: 120px 0 70px;
  }

  .hero-section {
    min-height: auto;

    padding-top: 145px;

    background-position: center top;
  }

  .quote-card {
    margin-top: 28px;
  }
}

@media (max-width: 575px) {
  .site-section {
    padding: 105px 0 62px;
  }

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

  .section-title {
    font-size: 43px;
  }

  .section-text,
  .hero-text {
    font-size: 16px;
  }

  .hero-title {
    font-size: 48px;
  }

  .hero-title span {
    font-size: 19px;
  }

  .trust-row {
    gap: 8px;
  }

  .trust-pill {
    font-size: 12px;

    padding: 8px 10px;
  }

  .main-btn,
  .secondary-btn {
    width: 100%;

    justify-content: center;
  }

  .navbar-brand {
    max-width: 230px;
  }

  .logo-mark {
    width: 42px;

    height: 42px;
  }

  .logo-text strong {
    font-size: 23px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .quote-card,
  .contact-box {
    padding: 23px;

    border-radius: 26px;
  }

  .why-card,
  .step-card {
    padding: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .global-love-bg::before,
  .love-bg-word,
  .why-card,
  .step-card,
  .main-btn,
  .secondary-btn,
  .socials a {
    animation: none !important;

    transition: none !important;
  }
}

/* ===== about ===== */

:root {
  --pink: #fcc7d3;

  --pink-soft: #ffe4eb;

  --red: #de1058;

  --red-dark: #b90c48;

  --black: #171217;

  --text: #5f1730;

  --border: rgba(222, 16, 88, 0.14);

  --shadow: 0 30px 80px rgba(176, 20, 73, 0.18);
}

* {
  box-sizing: border-box;

  scrollbar-width: thin;

  scrollbar-color: var(--red) #ffd7e1;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  background: var(--pink);

  color: var(--black);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);

  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffd7e1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));

  border-radius: 999px;

  border: 3px solid #ffd7e1;
}

.global-love-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 255, 255, 0.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(222, 16, 88, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 22% 82%,
      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #fcc7d3 0%, #ffd3dd 45%, #fcc7d3 100%);
}

.global-love-bg::before {
  content: "";

  position: absolute;

  inset: -20%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0 2px,
    transparent 3px
  );

  background-size: 42px 42px;

  opacity: 0.3;

  animation: softGridMove 32s linear infinite;
}

.global-love-bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(252, 199, 211, 0.82),
    rgba(252, 199, 211, 0.42),
    rgba(252, 199, 211, 0.82)
  );

  opacity: 0.55;
}

.love-bg-word {
  position: absolute;

  font-family: "Playfair Display", serif;

  color: var(--red);

  opacity: var(--opacity);

  font-weight: 700;

  white-space: nowrap;

  user-select: none;

  will-change: transform, opacity;

  animation:
    loveFloat var(--duration, 13s) ease-in-out infinite,
    lovePulse calc(var(--duration, 13s) * 1.4) ease-in-out infinite;
}

@keyframes loveFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }

  35% {
    transform: translate3d(var(--move-x), calc(var(--move-y) * -1), 0)
      rotate(calc(var(--rotate) + 2deg));
  }

  70% {
    transform: translate3d(calc(var(--move-x) * -0.45), var(--move-y), 0)
      rotate(calc(var(--rotate) - 2deg));
  }
}

@keyframes lovePulse {
  0%,
  100% {
    opacity: var(--opacity);
  }

  50% {
    opacity: calc(var(--opacity) + 0.06);
  }
}

@keyframes softGridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(42px, 42px, 0);
  }
}

.page-wrapper {
  position: relative;

  z-index: 2;
}

.lovely-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(252, 199, 211, 0.84);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 16, 88, 0.13);

  padding: 13px 0;

  padding-top: max(13px, env(safe-area-inset-top));
}

.navbar-brand {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--red);

  font-weight: 900;
}

.logo-mark {
  width: 46px;

  height: 46px;

  border: 3px solid var(--red);

  border-radius: 19px 19px 9px 9px;

  display: grid;

  place-items: center;

  position: relative;

  background: rgba(255, 255, 255, 0.38);

  flex: 0 0 auto;
}

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  top: -11px;

  width: 24px;

  height: 24px;

  border-top: 3px solid var(--red);

  border-left: 3px solid var(--red);

  border-radius: 50% 0 0 0;
}

.logo-mark::before {
  left: 4px;

  transform: rotate(45deg);
}

.logo-mark::after {
  right: 4px;

  transform: rotate(135deg);
}

.logo-mark i {
  color: var(--red);

  font-size: 14px;

  margin-top: 10px;
}

.logo-text strong {
  display: block;

  font-size: 27px;

  color: var(--red);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.logo-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--black);

  font-weight: 900;

  text-transform: uppercase;

  margin-top: 5px;
}

.navbar-nav .nav-link {
  color: #641028;

  font-size: 14px;

  font-weight: 800;

  padding: 10px 11px !important;

  transition: 0.25s ease;
}

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

.phone-link {
  color: var(--red);

  font-weight: 900;

  white-space: nowrap;
}

.main-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);

  transition: 0.25s ease;

  white-space: nowrap;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.main-btn:hover {
  color: white;

  background: var(--red-dark);

  transform: translateY(-2px);
}

.navbar-toggler {
  border: 0;

  box-shadow: none !important;
}

.page-hero {
  min-height: 72vh;

  display: flex;

  align-items: center;

  padding: 150px 0 80px;
}

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid var(--border);

  color: var(--red);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 18px;
}

.page-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(54px, 7vw, 104px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  color: var(--red);

  margin-bottom: 24px;
}

.page-title span {
  display: block;

  margin-top: 18px;

  color: var(--black);

  font-family: "Inter", sans-serif;

  font-size: clamp(20px, 2vw, 31px);

  line-height: 1.15;

  letter-spacing: -0.045em;

  max-width: 760px;

  font-weight: 900;
}

.page-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  max-width: 700px;

  font-weight: 600;
}

.glass-card {
  background: rgba(255, 255, 255, 0.64);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 34px;

  padding: 34px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  height: 100%;
}

.image-card {
  min-height: 520px;

  border-radius: 38px;

  background:
    linear-gradient(
      180deg,
      rgba(252, 199, 211, 0.1),
      rgba(252, 199, 211, 0.33)
    ),
    url("../images/about.jpg") center/cover no-repeat;

  box-shadow: var(--shadow);

  border: 1px solid rgba(255, 255, 255, 0.7);

  position: relative;

  overflow: hidden;
}

.image-card::after {
  content: "Love Moves Everything";

  position: absolute;

  left: 28px;

  bottom: 26px;

  color: var(--red);

  font-family: "Playfair Display", serif;

  font-size: 44px;

  font-weight: 800;

  letter-spacing: -0.05em;

  max-width: 420px;

  line-height: 0.95;

  text-shadow: 0 12px 35px rgba(255, 255, 255, 0.75);
}

.content-section {
  padding: 80px 0;
}

.section-title {
  font-family: "Playfair Display", serif;

  color: var(--red);

  font-size: clamp(42px, 5vw, 76px);

  line-height: 0.98;

  letter-spacing: -0.055em;

  margin-bottom: 20px;
}

.value-card {
  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 30px;

  padding: 30px;

  box-shadow: 0 24px 60px rgba(176, 20, 73, 0.11);

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);

  height: 100%;

  transition: 0.28s ease;
}

.value-card:hover {
  transform: translateY(-8px);

  background: rgba(255, 255, 255, 0.72);
}

.value-icon {
  width: 62px;

  height: 62px;

  border-radius: 22px;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  font-size: 24px;

  margin-bottom: 20px;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.25);
}

.value-card h3 {
  font-size: 22px;

  font-weight: 900;

  letter-spacing: -0.04em;

  margin-bottom: 12px;
}

.value-card p {
  color: var(--text);

  line-height: 1.7;

  font-weight: 600;

  margin: 0;
}

.stat-card {
  text-align: center;

  background: rgba(255, 255, 255, 0.6);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 30px;

  padding: 30px 20px;

  box-shadow: 0 24px 60px rgba(176, 20, 73, 0.11);

  height: 100%;
}

.stat-card strong {
  display: block;

  color: var(--red);

  font-size: 44px;

  font-weight: 900;

  letter-spacing: -0.06em;

  line-height: 1;

  margin-bottom: 10px;
}

.stat-card span {
  color: var(--text);

  font-weight: 800;
}

.footer-section {
  padding: 70px 0 28px;

  background: rgba(222, 16, 88, 0.96);

  color: white;

  position: relative;

  z-index: 2;
}

.footer-logo {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -0.055em;

  margin-bottom: 10px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.7;

  font-weight: 500;
}

.footer-title {
  font-weight: 900;

  margin-bottom: 17px;

  font-size: 16px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;
}

.socials {
  display: flex;

  gap: 10px;

  margin-top: 18px;
}

.socials a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  color: white;

  display: grid;

  place-items: center;

  transition: 0.25s ease;
}

.socials a:hover {
  background: white;

  color: var(--red);

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  margin-top: 42px;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-weight: 600;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 247, 250, 0.96);

    border: 1px solid rgba(222, 16, 88, 0.12);

    border-radius: 24px;

    padding: 18px;

    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  .page-hero {
    min-height: auto;

    padding: 135px 0 55px;
  }

  .image-card {
    min-height: 380px;
  }

  .content-section {
    padding: 55px 0;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 50px;
  }

  .page-title span {
    font-size: 19px;
  }

  .page-text {
    font-size: 16px;
  }

  .glass-card {
    padding: 24px;

    border-radius: 26px;
  }

  .image-card::after {
    font-size: 32px;
  }

  .main-btn {
    width: 100%;
  }

  .logo-text strong {
    font-size: 23px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .logo-mark {
    width: 42px;

    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/* ===== contact ===== */

:root {
  --pink: #fcc7d3;

  --red: #de1058;

  --red-dark: #b90c48;

  --black: #171217;

  --text: #5f1730;

  --border: rgba(222, 16, 88, 0.14);

  --shadow: 0 30px 80px rgba(176, 20, 73, 0.18);
}

* {
  box-sizing: border-box;

  scrollbar-width: thin;

  scrollbar-color: var(--red) #ffd7e1;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  background: var(--pink);

  color: var(--black);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);

  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffd7e1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));

  border-radius: 999px;

  border: 3px solid #ffd7e1;
}

.global-love-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 12%,
      rgba(255, 255, 255, 0.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,
      rgba(222, 16, 88, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 22% 82%,
      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    linear-gradient(135deg, #fcc7d3 0%, #ffd3dd 45%, #fcc7d3 100%);
}

.global-love-bg::before {
  content: "";

  position: absolute;

  inset: -20%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0 2px,
    transparent 3px
  );

  background-size: 42px 42px;

  opacity: 0.3;

  animation: softGridMove 32s linear infinite;
}

.global-love-bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(252, 199, 211, 0.82),
    rgba(252, 199, 211, 0.42),
    rgba(252, 199, 211, 0.82)
  );

  opacity: 0.55;
}

.love-bg-word {
  position: absolute;

  font-family: "Playfair Display", serif;

  color: var(--red);

  opacity: var(--opacity);

  font-weight: 700;

  white-space: nowrap;

  user-select: none;

  will-change: transform, opacity;

  animation:
    loveFloat var(--duration, 13s) ease-in-out infinite,
    lovePulse calc(var(--duration, 13s) * 1.4) ease-in-out infinite;
}

@keyframes loveFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }

  35% {
    transform: translate3d(var(--move-x), calc(var(--move-y) * -1), 0)
      rotate(calc(var(--rotate) + 2deg));
  }

  70% {
    transform: translate3d(calc(var(--move-x) * -0.45), var(--move-y), 0)
      rotate(calc(var(--rotate) - 2deg));
  }
}

@keyframes lovePulse {
  0%,
  100% {
    opacity: var(--opacity);
  }

  50% {
    opacity: calc(var(--opacity) + 0.06);
  }
}

@keyframes softGridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(42px, 42px, 0);
  }
}

.page-wrapper {
  position: relative;

  z-index: 2;
}

.lovely-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(252, 199, 211, 0.84);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 16, 88, 0.13);

  padding: 13px 0;

  padding-top: max(13px, env(safe-area-inset-top));
}

.navbar-brand {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--red);

  font-weight: 900;
}

.logo-mark {
  width: 46px;

  height: 46px;

  border: 3px solid var(--red);

  border-radius: 19px 19px 9px 9px;

  display: grid;

  place-items: center;

  position: relative;

  background: rgba(255, 255, 255, 0.38);

  flex: 0 0 auto;
}

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  top: -11px;

  width: 24px;

  height: 24px;

  border-top: 3px solid var(--red);

  border-left: 3px solid var(--red);

  border-radius: 50% 0 0 0;
}

.logo-mark::before {
  left: 4px;

  transform: rotate(45deg);
}

.logo-mark::after {
  right: 4px;

  transform: rotate(135deg);
}

.logo-mark i {
  color: var(--red);

  font-size: 14px;

  margin-top: 10px;
}

.logo-text strong {
  display: block;

  font-size: 27px;

  color: var(--red);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.logo-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--black);

  font-weight: 900;

  text-transform: uppercase;

  margin-top: 5px;
}

.navbar-nav .nav-link {
  color: #641028;

  font-size: 14px;

  font-weight: 800;

  padding: 10px 11px !important;

  transition: 0.25s ease;
}

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

.phone-link {
  color: var(--red);

  font-weight: 900;

  white-space: nowrap;
}

.main-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);

  transition: 0.25s ease;

  white-space: nowrap;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.main-btn:hover {
  color: white;

  background: var(--red-dark);

  transform: translateY(-2px);
}

.navbar-toggler {
  border: 0;

  box-shadow: none !important;
}

.contact-page {
  padding: 150px 0 90px;

  min-height: 100vh;

  min-height: 100svh;

  display: flex;

  align-items: center;
}

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid var(--border);

  color: var(--red);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 18px;
}

.page-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(54px, 7vw, 104px);

  line-height: 0.92;

  letter-spacing: -0.065em;

  color: var(--red);

  margin-bottom: 24px;
}

.page-title span {
  display: block;

  margin-top: 18px;

  color: var(--black);

  font-family: "Inter", sans-serif;

  font-size: clamp(20px, 2vw, 31px);

  line-height: 1.15;

  letter-spacing: -0.045em;

  max-width: 760px;

  font-weight: 900;
}

.page-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  max-width: 700px;

  font-weight: 600;

  margin-bottom: 26px;
}

.contact-item {
  display: flex;

  gap: 15px;

  align-items: flex-start;

  padding: 18px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid rgba(222, 16, 88, 0.1);

  margin-bottom: 14px;

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);
}

.contact-item i {
  width: 44px;

  height: 44px;

  border-radius: 16px;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  flex: 0 0 auto;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.22);
}

.contact-item strong {
  display: block;

  color: var(--black);

  font-weight: 900;

  margin-bottom: 4px;
}

.contact-item span,
.contact-item a {
  color: var(--text);

  font-weight: 700;
}

.contact-box {
  background: rgba(255, 255, 255, 0.64);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 34px;

  padding: 34px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  position: relative;

  overflow: hidden;
}

.contact-box::before {
  content: "";

  position: absolute;

  width: 230px;

  height: 230px;

  border-radius: 50%;

  background: rgba(222, 16, 88, 0.08);

  top: -110px;

  right: -90px;
}

.contact-box h2 {
  position: relative;

  font-size: 30px;

  font-weight: 900;

  letter-spacing: -0.045em;

  margin-bottom: 8px;
}

.contact-box p {
  position: relative;

  color: #7d2d45;

  font-weight: 700;

  margin-bottom: 24px;
}

.form-control,
.form-select,
textarea {
  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 17px;

  padding: 14px 15px;

  font-weight: 700;

  color: var(--black);

  background: rgba(255, 255, 255, 0.82);

  box-shadow: none;

  font-size: 16px !important;

  position: relative;
}

textarea {
  min-height: 135px;

  resize: none;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

label {
  color: #591127;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 7px;
}

.submit-btn {
  width: 100%;

  border: none;

  background: var(--red);

  color: white;

  padding: 15px 18px;

  border-radius: 18px;

  font-weight: 900;

  margin-top: 10px;

  transition: 0.25s ease;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);
}

.submit-btn:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.quick-quote-card {
  margin-top: 28px;

  background: rgba(255, 255, 255, 0.52);

  border: 1px solid rgba(255, 255, 255, 0.72);

  border-radius: 28px;

  padding: 24px;

  -webkit-backdrop-filter: blur(14px);

  backdrop-filter: blur(14px);
}

.quick-quote-card h3 {
  font-size: 22px;

  font-weight: 900;

  letter-spacing: -0.04em;

  margin-bottom: 14px;
}

.footer-section {
  padding: 70px 0 28px;

  background: rgba(222, 16, 88, 0.96);

  color: white;

  position: relative;

  z-index: 2;
}

.footer-logo {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -0.055em;

  margin-bottom: 10px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.7;

  font-weight: 500;
}

.footer-title {
  font-weight: 900;

  margin-bottom: 17px;

  font-size: 16px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;
}

.socials {
  display: flex;

  gap: 10px;

  margin-top: 18px;
}

.socials a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  color: white;

  display: grid;

  place-items: center;

  transition: 0.25s ease;
}

.socials a:hover {
  background: white;

  color: var(--red);

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  margin-top: 42px;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-weight: 600;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 247, 250, 0.96);

    border: 1px solid rgba(222, 16, 88, 0.12);

    border-radius: 24px;

    padding: 18px;

    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  .contact-page {
    padding: 135px 0 70px;
  }

  .contact-box {
    margin-top: 20px;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 50px;
  }

  .page-title span {
    font-size: 19px;
  }

  .page-text {
    font-size: 16px;
  }

  .contact-box {
    padding: 24px;

    border-radius: 26px;
  }

  .main-btn {
    width: 100%;
  }

  .logo-text strong {
    font-size: 23px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .logo-mark {
    width: 42px;

    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/* ===== quote-details ===== */

:root {
  --pink: #fcc7d3;

  --pink-soft: #ffe4eb;

  --red: #de1058;

  --red-dark: #b90c48;

  --black: #171217;

  --text: #5f1730;

  --border: rgba(222, 16, 88, 0.14);

  --shadow: 0 30px 80px rgba(176, 20, 73, 0.18);
}

* {
  box-sizing: border-box;

  scrollbar-width: thin;

  scrollbar-color: var(--red) #ffd7e1;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  background: var(--pink);

  color: var(--black);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);

  color: #fff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffd7e1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));

  border-radius: 999px;

  border: 3px solid #ffd7e1;
}

.global-love-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 12%,

      rgba(255, 255, 255, 0.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,

      rgba(222, 16, 88, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 22% 82%,

      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    radial-gradient(
      circle at 76% 88%,

      rgba(222, 16, 88, 0.1),
      transparent 28%
    ),
    linear-gradient(135deg, #fcc7d3 0%, #ffd3dd 45%, #fcc7d3 100%);
}

.global-love-bg::before {
  content: "";

  position: absolute;

  inset: -20%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0 2px,

    transparent 3px
  );

  background-size: 42px 42px;

  opacity: 0.3;

  animation: softGridMove 32s linear infinite;
}

.global-love-bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(252, 199, 211, 0.82),
    rgba(252, 199, 211, 0.42),
    rgba(252, 199, 211, 0.82)
  );

  opacity: 0.55;
}

.love-bg-word {
  position: absolute;

  font-family: "Playfair Display", serif;

  color: var(--red);

  opacity: var(--opacity);

  font-weight: 700;

  white-space: nowrap;

  user-select: none;

  will-change: transform, opacity;

  animation:
    loveFloat var(--duration, 13s) ease-in-out infinite,
    lovePulse calc(var(--duration, 13s) * 1.4) ease-in-out infinite;
}

@keyframes loveFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }

  35% {
    transform: translate3d(var(--move-x), calc(var(--move-y) * -1), 0)
      rotate(calc(var(--rotate) + 2deg));
  }

  70% {
    transform: translate3d(calc(var(--move-x) * -0.45), var(--move-y), 0)
      rotate(calc(var(--rotate) - 2deg));
  }
}

@keyframes lovePulse {
  0%,
  100% {
    opacity: var(--opacity);
  }

  50% {
    opacity: calc(var(--opacity) + 0.06);
  }
}

@keyframes softGridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(42px, 42px, 0);
  }
}

.page-wrapper {
  position: relative;

  z-index: 2;
}

.lovely-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(252, 199, 211, 0.84);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 16, 88, 0.13);

  padding: 13px 0;

  padding-top: max(13px, env(safe-area-inset-top));
}

.navbar-brand {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--red);

  font-weight: 900;
}

.logo-mark {
  width: 46px;

  height: 46px;

  border: 3px solid var(--red);

  border-radius: 19px 19px 9px 9px;

  display: grid;

  place-items: center;

  position: relative;

  background: rgba(255, 255, 255, 0.38);

  flex: 0 0 auto;
}

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  top: -11px;

  width: 24px;

  height: 24px;

  border-top: 3px solid var(--red);

  border-left: 3px solid var(--red);

  border-radius: 50% 0 0 0;
}

.logo-mark::before {
  left: 4px;

  transform: rotate(45deg);
}

.logo-mark::after {
  right: 4px;

  transform: rotate(135deg);
}

.logo-mark i {
  color: var(--red);

  font-size: 14px;

  margin-top: 10px;
}

.logo-text strong {
  display: block;

  font-size: 27px;

  color: var(--red);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.logo-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--black);

  font-weight: 900;

  text-transform: uppercase;

  margin-top: 5px;
}

.navbar-nav .nav-link {
  color: #641028;

  font-size: 14px;

  font-weight: 800;

  padding: 10px 11px !important;

  transition: 0.25s ease;
}

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

.phone-link {
  color: var(--red);

  font-weight: 900;

  white-space: nowrap;
}

.main-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);

  transition: 0.25s ease;

  white-space: nowrap;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.main-btn:hover {
  color: white;

  background: var(--red-dark);

  transform: translateY(-2px);
}

.navbar-toggler {
  border: 0;

  box-shadow: none !important;
}

.quote-page {
  min-height: 100vh;

  min-height: 100svh;

  padding: 145px 0 80px;
}

.quote-header {
  margin-bottom: 34px;
}

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid var(--border);

  color: var(--red);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 18px;
}

.page-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(48px, 6vw, 88px);

  line-height: 0.94;

  letter-spacing: -0.065em;

  color: var(--red);

  margin-bottom: 18px;
}

.page-title span {
  display: block;

  margin-top: 16px;

  color: var(--black);

  font-family: "Inter", sans-serif;

  font-size: clamp(19px, 2vw, 28px);

  line-height: 1.15;

  letter-spacing: -0.045em;

  max-width: 780px;

  font-weight: 900;
}

.page-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  max-width: 760px;

  font-weight: 600;
}

.zip-summary {
  display: inline-flex;

  flex-wrap: wrap;

  gap: 10px;

  margin-top: 12px;
}

.zip-pill {
  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(222, 16, 88, 0.13);

  color: #641028;

  padding: 9px 14px;

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;
}

.quote-block {
  background: rgba(255, 255, 255, 0.66);

  border: 1px solid rgba(255, 255, 255, 0.76);

  border-radius: 34px;

  padding: 30px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  margin-bottom: 24px;

  position: relative;

  overflow: hidden;
}

.quote-block::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: rgba(222, 16, 88, 0.07);

  top: -120px;

  right: -90px;
}

.quote-block-inner {
  position: relative;

  z-index: 2;
}

.block-title {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 22px;
}

.block-icon {
  width: 52px;

  height: 52px;

  border-radius: 18px;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  font-size: 21px;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.25);

  flex: 0 0 auto;
}

.block-title h2 {
  margin: 0;

  font-size: 27px;

  font-weight: 900;

  letter-spacing: -0.045em;

  color: var(--black);
}

.block-title p {
  margin: 3px 0 0;

  color: #7d2d45;

  font-weight: 700;

  line-height: 1.5;
}

label {
  color: #591127;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 7px;
}

.form-control,
.form-select {
  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 17px;

  padding: 14px 15px;

  font-weight: 800;

  color: var(--black);

  background: rgba(255, 255, 255, 0.84);

  box-shadow: none;

  font-size: 16px !important;
}

.form-control:focus,
.form-select:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

.choice-card {
  height: 100%;

  position: relative;
}

.choice-card input {
  position: absolute;

  opacity: 0;

  pointer-events: none;
}

.choice-card span {
  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 52px;

  padding: 13px 16px;

  border-radius: 18px;

  background: rgba(255, 255, 255, 0.66);

  border: 1px solid rgba(222, 16, 88, 0.14);

  color: #641028;

  font-weight: 900;

  text-align: center;

  transition: 0.22s ease;

  cursor: pointer;
}

.choice-card input:checked + span {
  background: var(--red);

  color: #fff;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.24);

  transform: translateY(-2px);
}

.helper-box {
  padding: 18px;

  border-radius: 24px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid rgba(222, 16, 88, 0.1);

  color: var(--text);

  font-weight: 700;

  line-height: 1.65;
}

.helper-box strong {
  color: var(--black);

  display: block;

  font-weight: 900;

  margin-bottom: 4px;
}

.suggestion-block {
  background: linear-gradient(
    135deg,
    rgba(222, 16, 88, 0.96),
    rgba(185, 12, 72, 0.96)
  );

  color: white;

  border-radius: 34px;

  padding: 30px;

  box-shadow: 0 30px 80px rgba(176, 20, 73, 0.22);

  margin-bottom: 24px;
}

.suggestion-block h2 {
  font-size: 28px;

  font-weight: 900;

  letter-spacing: -0.045em;

  margin-bottom: 8px;
}

.suggestion-block p {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;

  margin-bottom: 20px;
}

.suggestion-block .choice-card span {
  background: rgba(255, 255, 255, 0.14);

  border-color: rgba(255, 255, 255, 0.24);

  color: white;
}

.suggestion-block .choice-card input:checked + span {
  background: white;

  color: var(--red);

  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.14);
}

.hidden-field {
  display: none;
}

.action-row {
  display: flex;

  flex-wrap: wrap;

  gap: 14px;

  margin-top: 24px;
}

.submit-quote-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 16px 22px;

  border-radius: 999px;

  font-size: 15px;

  font-weight: 900;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.26);

  transition: 0.25s ease;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  flex: 1 1 260px;
}

.submit-quote-btn:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.call-btn {
  border: 1px solid rgba(222, 16, 88, 0.18);

  background: rgba(255, 255, 255, 0.62);

  color: var(--red);

  padding: 16px 22px;

  border-radius: 999px;

  font-size: 15px;

  font-weight: 900;

  transition: 0.25s ease;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;

  flex: 1 1 220px;
}

.call-btn:hover {
  color: var(--red);

  background: white;

  transform: translateY(-2px);
}

.footer-section {
  padding: 70px 0 28px;

  background: rgba(222, 16, 88, 0.96);

  color: white;

  position: relative;

  z-index: 2;
}

.footer-logo {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -0.055em;

  margin-bottom: 10px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.7;

  font-weight: 500;
}

.footer-title {
  font-weight: 900;

  margin-bottom: 17px;

  font-size: 16px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;
}

.socials {
  display: flex;

  gap: 10px;

  margin-top: 18px;
}

.socials a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  color: white;

  display: grid;

  place-items: center;

  transition: 0.25s ease;
}

.socials a:hover {
  background: white;

  color: var(--red);

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  margin-top: 42px;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-weight: 600;
}

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 247, 250, 0.96);

    border: 1px solid rgba(222, 16, 88, 0.12);

    border-radius: 24px;

    padding: 18px;

    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  .quote-page {
    padding: 135px 0 65px;
  }

  .page-text {
    font-size: 16px;
  }
}

@media (max-width: 575px) {
  .page-title {
    font-size: 48px;
  }

  .page-title span {
    font-size: 19px;
  }

  .quote-block,
  .suggestion-block {
    padding: 23px;

    border-radius: 26px;
  }

  .block-title {
    align-items: flex-start;
  }

  .block-icon {
    width: 46px;

    height: 46px;

    border-radius: 16px;

    font-size: 18px;
  }

  .block-title h2 {
    font-size: 23px;
  }

  .submit-quote-btn,
  .call-btn {
    width: 100%;

    flex: 1 1 100%;
  }

  .logo-text strong {
    font-size: 23px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .logo-mark {
    width: 42px;

    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/* ===== quote-inventory ===== */

:root {
  --pink: #fcc7d3;

  --pink-soft: #ffe4eb;

  --red: #de1058;

  --red-dark: #b90c48;

  --black: #171217;

  --text: #5f1730;

  --border: rgba(222, 16, 88, 0.14);

  --shadow: 0 30px 80px rgba(176, 20, 73, 0.18);
}

* {
  box-sizing: border-box;

  scrollbar-width: thin;

  scrollbar-color: var(--red) #ffd7e1;
}

html {
  scroll-behavior: smooth;

  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;

  font-family: "Inter", sans-serif;

  background: var(--pink);

  color: var(--black);

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;
}

a {
  text-decoration: none;
}

::selection {
  background: var(--red);

  color: white;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: #ffd7e1;
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--red), var(--red-dark));

  border-radius: 999px;

  border: 3px solid #ffd7e1;
}

.global-love-bg {
  position: fixed;

  inset: 0;

  z-index: 0;

  pointer-events: none;

  overflow: hidden;

  background:
    radial-gradient(
      circle at 12% 12%,

      rgba(255, 255, 255, 0.48),
      transparent 28%
    ),
    radial-gradient(
      circle at 86% 18%,

      rgba(222, 16, 88, 0.13),
      transparent 26%
    ),
    radial-gradient(
      circle at 22% 82%,

      rgba(255, 255, 255, 0.34),
      transparent 30%
    ),
    radial-gradient(
      circle at 76% 88%,

      rgba(222, 16, 88, 0.1),
      transparent 28%
    ),
    linear-gradient(135deg, #fcc7d3 0%, #ffd3dd 45%, #fcc7d3 100%);
}

.global-love-bg::before {
  content: "";

  position: absolute;

  inset: -20%;

  background: radial-gradient(
    circle,
    rgba(255, 255, 255, 0.22) 0 2px,

    transparent 3px
  );

  background-size: 42px 42px;

  opacity: 0.3;

  animation: softGridMove 32s linear infinite;
}

.global-love-bg::after {
  content: "";

  position: absolute;

  inset: 0;

  background: linear-gradient(
    90deg,
    rgba(252, 199, 211, 0.82),
    rgba(252, 199, 211, 0.42),
    rgba(252, 199, 211, 0.82)
  );

  opacity: 0.55;
}

.love-bg-word {
  position: absolute;

  font-family: "Playfair Display", serif;

  color: var(--red);

  opacity: var(--opacity);

  font-weight: 700;

  white-space: nowrap;

  user-select: none;

  will-change: transform, opacity;

  animation:
    loveFloat var(--duration, 13s) ease-in-out infinite,
    lovePulse calc(var(--duration, 13s) * 1.4) ease-in-out infinite;
}

@keyframes loveFloat {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(var(--rotate));
  }

  35% {
    transform: translate3d(var(--move-x), calc(var(--move-y) * -1), 0)
      rotate(calc(var(--rotate) + 2deg));
  }

  70% {
    transform: translate3d(calc(var(--move-x) * -0.45), var(--move-y), 0)
      rotate(calc(var(--rotate) - 2deg));
  }
}

@keyframes lovePulse {
  0%,
  100% {
    opacity: var(--opacity);
  }

  50% {
    opacity: calc(var(--opacity) + 0.06);
  }
}

@keyframes softGridMove {
  from {
    transform: translate3d(0, 0, 0);
  }

  to {
    transform: translate3d(42px, 42px, 0);
  }
}

.page-wrapper {
  position: relative;

  z-index: 2;
}

.lovely-navbar {
  position: fixed;

  top: 0;

  left: 0;

  width: 100%;

  z-index: 999;

  background: rgba(252, 199, 211, 0.84);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  border-bottom: 1px solid rgba(222, 16, 88, 0.13);

  padding: 13px 0;

  padding-top: max(13px, env(safe-area-inset-top));
}

.navbar-brand {
  display: flex;

  align-items: center;

  gap: 11px;

  color: var(--red);

  font-weight: 900;
}

.logo-mark {
  width: 46px;

  height: 46px;

  border: 3px solid var(--red);

  border-radius: 19px 19px 9px 9px;

  display: grid;

  place-items: center;

  position: relative;

  background: rgba(255, 255, 255, 0.38);

  flex: 0 0 auto;
}

.logo-mark::before,
.logo-mark::after {
  content: "";

  position: absolute;

  top: -11px;

  width: 24px;

  height: 24px;

  border-top: 3px solid var(--red);

  border-left: 3px solid var(--red);

  border-radius: 50% 0 0 0;
}

.logo-mark::before {
  left: 4px;

  transform: rotate(45deg);
}

.logo-mark::after {
  right: 4px;

  transform: rotate(135deg);
}

.logo-mark i {
  color: var(--red);

  font-size: 14px;

  margin-top: 10px;
}

.logo-text strong {
  display: block;

  font-size: 27px;

  color: var(--red);

  line-height: 0.9;

  letter-spacing: -0.05em;
}

.logo-text span {
  display: block;

  font-size: 10px;

  letter-spacing: 0.12em;

  color: var(--black);

  font-weight: 900;

  text-transform: uppercase;

  margin-top: 5px;
}

.navbar-nav .nav-link {
  color: #641028;

  font-size: 14px;

  font-weight: 800;

  padding: 10px 11px !important;

  transition: 0.25s ease;
}

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

.phone-link {
  color: var(--red);

  font-weight: 900;

  white-space: nowrap;
}

.main-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 12px 18px;

  border-radius: 999px;

  font-size: 14px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.25);

  transition: 0.25s ease;

  white-space: nowrap;

  display: inline-flex;

  align-items: center;

  justify-content: center;

  gap: 9px;
}

.main-btn:hover {
  color: white;

  background: var(--red-dark);

  transform: translateY(-2px);
}

.navbar-toggler {
  border: 0;

  box-shadow: none !important;
}

.inventory-page {
  padding: 145px 0 80px;

  min-height: 100vh;

  min-height: 100svh;
}

.section-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  padding: 9px 15px;

  background: rgba(255, 255, 255, 0.48);

  border: 1px solid var(--border);

  color: var(--red);

  border-radius: 999px;

  font-size: 13px;

  font-weight: 900;

  margin-bottom: 18px;
}

.page-title {
  font-family: "Playfair Display", serif;

  font-size: clamp(48px, 6vw, 86px);

  line-height: 0.94;

  letter-spacing: -0.065em;

  color: var(--red);

  margin-bottom: 18px;
}

.page-title span {
  display: block;

  margin-top: 16px;

  color: var(--black);

  font-family: "Inter", sans-serif;

  font-size: clamp(19px, 2vw, 28px);

  line-height: 1.15;

  letter-spacing: -0.045em;

  max-width: 820px;

  font-weight: 900;
}

.page-text {
  color: var(--text);

  font-size: 18px;

  line-height: 1.75;

  max-width: 850px;

  font-weight: 600;

  margin-bottom: 0;
}

.quote-progress {
  /* position: sticky; */

  top: 92px;

  z-index: 30;

  margin-top: 30px;

  margin-bottom: 24px;

  padding: 12px;

  border-radius: 30px;

  background: rgba(255, 255, 255, 0.76);

  border: 1px solid rgba(255, 255, 255, 0.82);

  box-shadow: 0 20px 55px rgba(176, 20, 73, 0.14);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  display: grid;

  grid-template-columns: 1.1fr 1.7fr 0.8fr 0.8fr 0.9fr 1.1fr;

  gap: 10px;
}

.progress-chip {
  min-height: 62px;

  border-radius: 20px;

  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(222, 16, 88, 0.1);

  display: grid;

  grid-template-columns: 32px 1fr;

  align-items: center;

  column-gap: 10px;

  padding: 10px 12px;
}

.progress-chip i {
  width: 32px;

  height: 32px;

  border-radius: 12px;

  background: rgba(222, 16, 88, 0.1);

  color: var(--red);

  display: grid;

  place-items: center;

  grid-row: span 2;
}

.progress-chip span {
  color: #7d2d45;

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.06em;

  line-height: 1;
}

.progress-chip strong {
  color: var(--black);

  font-size: 16px;

  font-weight: 900;

  line-height: 1.2;
}

.route-chip {
  grid-template-columns: 32px auto 1fr auto;

  gap: 8px;
}

.route-chip i {
  grid-row: auto;
}

.route-chip em {
  height: 2px;

  background: var(--red);

  opacity: 0.5;

  border-radius: 999px;

  min-width: 26px;
}

.progress-submit {
  border: none;

  border-radius: 20px;

  background: var(--red);

  color: white;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.24);

  transition: 0.25s ease;

  min-height: 62px;
}

.progress-submit:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.panel {
  background: rgba(255, 255, 255, 0.66);

  border: 1px solid rgba(255, 255, 255, 0.76);

  border-radius: 34px;

  box-shadow: var(--shadow);

  -webkit-backdrop-filter: blur(16px);

  backdrop-filter: blur(16px);

  position: relative;

  overflow: hidden;
}

.panel::before {
  content: "";

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  background: rgba(222, 16, 88, 0.07);

  top: -120px;

  right: -90px;
}

.panel-inner {
  position: relative;

  z-index: 2;

  padding: 26px;
}

.form-control,
.form-select,
textarea {
  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 17px;

  padding: 14px 15px;

  font-weight: 800;

  color: var(--black);

  background: rgba(255, 255, 255, 0.84);

  box-shadow: none;

  font-size: 16px !important;
}

.form-control:focus,
.form-select:focus,
textarea:focus {
  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

.rooms-panel {
  margin-bottom: 24px;
}

.rooms-step-label {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 14px;

  padding: 9px 14px;

  border-radius: 999px;

  background: rgba(222, 16, 88, 0.09);

  color: var(--red);

  font-size: 13px;

  font-weight: 900;
}

.rooms-header {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 18px;

  margin-bottom: 18px;
}

.rooms-header h2,
.workspace-heading h2,
.selected-heading h2 {
  margin: 0;

  font-size: 28px;

  font-weight: 900;

  letter-spacing: -0.045em;
}

.rooms-header p,
.workspace-heading p,
.selected-heading p {
  margin: 5px 0 0;

  color: #7d2d45;

  font-size: 14px;

  font-weight: 800;
}

.room-add-inline {
  display: grid;

  grid-template-columns: 220px 140px;

  gap: 10px;

  align-items: center;
}

.add-room-btn {
  border: none;

  background: var(--red);

  color: white;

  padding: 13px 15px;

  border-radius: 16px;

  font-weight: 900;

  box-shadow: 0 14px 30px rgba(222, 16, 88, 0.22);

  transition: 0.25s ease;
}

.add-room-btn:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.room-row {
  display: flex;

  gap: 14px;

  overflow-x: auto;

  overflow-y: visible;

  padding: 12px 14px 18px;

  margin: -8px -14px 0;

  scroll-snap-type: x proximity;

  scroll-padding-left: 14px;

  -webkit-overflow-scrolling: touch;
}

.room-card {
  min-width: 260px;

  flex: 0 0 auto;

  scroll-snap-align: start;

  border: 1px solid rgba(222, 16, 88, 0.12);

  background: rgba(255, 255, 255, 0.58);

  border-radius: 26px;

  padding: 17px;

  cursor: pointer;

  transition: 0.24s ease;

  position: relative;

  transform-origin: center;
}

.room-card:hover,
.room-card.is-active {
  background: white;

  transform: translateY(-3px);

  box-shadow: 0 18px 44px rgba(176, 20, 73, 0.14);

  border-color: rgba(222, 16, 88, 0.24);
}

.room-card.is-active {
  border: 2px solid var(--red);
}

.room-card::after {
  content: "Click to add items here";

  display: block;

  margin-top: 13px;

  padding: 9px 11px;

  border-radius: 999px;

  background: rgba(222, 16, 88, 0.08);

  color: var(--red);

  text-align: center;

  font-size: 12px;

  font-weight: 900;

  transition: 0.22s ease;
}

.room-card.is-active::after {
  content: "Selected room";

  background: var(--red);

  color: white;

  box-shadow: 0 12px 24px rgba(222, 16, 88, 0.22);
}

.room-card-top {
  display: flex;

  align-items: center;

  gap: 13px;

  margin-bottom: 16px;
}

.room-icon {
  width: 54px;

  height: 54px;

  border-radius: 20px;

  background: rgba(222, 16, 88, 0.1);

  color: var(--red);

  display: grid;

  place-items: center;

  font-size: 22px;

  flex: 0 0 auto;
}

.room-name {
  flex: 1;

  min-width: 0;
}

.room-name strong {
  display: block;

  color: var(--black);

  font-size: 16px;

  font-weight: 900;

  line-height: 1.15;
}

.room-name span {
  display: block;

  color: #7d2d45;

  font-size: 12px;

  font-weight: 800;

  margin-top: 4px;
}

.room-delete {
  border: none;

  background: rgba(222, 16, 88, 0.09);

  color: var(--red);

  width: 34px;

  height: 34px;

  border-radius: 13px;

  display: grid;

  place-items: center;

  transition: 0.2s ease;

  flex: 0 0 auto;
}

.room-delete:hover {
  background: var(--red);

  color: white;
}

.room-stats {
  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 10px;
}

.room-stat {
  border-radius: 17px;

  background: rgba(255, 255, 255, 0.58);

  border: 1px solid rgba(222, 16, 88, 0.09);

  padding: 11px 12px;
}

.room-stat b {
  display: block;

  color: var(--red);

  font-size: 21px;

  font-weight: 900;

  line-height: 1;
}

.room-stat small {
  color: #7d2d45;

  font-size: 11px;

  font-weight: 900;

  text-transform: uppercase;

  letter-spacing: 0.04em;
}

.workspace-panel {
  margin-bottom: 24px;
}

.active-room-notice {
  display: flex;

  align-items: center;

  gap: 16px;

  margin-bottom: 22px;

  padding: 18px;

  border-radius: 26px;

  background: linear-gradient(
    135deg,
    rgba(222, 16, 88, 0.12),
    rgba(255, 255, 255, 0.58)
  );

  border: 1px solid rgba(222, 16, 88, 0.16);
}

.active-room-notice-icon {
  width: 54px;

  height: 54px;

  border-radius: 20px;

  background: var(--red);

  color: white;

  display: grid;

  place-items: center;

  font-size: 22px;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.24);

  flex: 0 0 auto;
}

.active-room-notice h3 {
  margin: 0;

  color: var(--black);

  font-size: 22px;

  font-weight: 900;

  letter-spacing: -0.04em;
}

.active-room-notice p {
  margin: 4px 0 0;

  color: #7d2d45;

  font-size: 14px;

  font-weight: 800;
}

.workspace-top {
  display: flex;

  justify-content: space-between;

  align-items: flex-start;

  gap: 18px;

  margin-bottom: 22px;
}

.active-room-badge {
  display: inline-flex;

  align-items: center;

  gap: 9px;

  margin-bottom: 12px;

  color: var(--red);

  background: rgba(222, 16, 88, 0.08);

  border: 1px solid rgba(222, 16, 88, 0.12);

  border-radius: 999px;

  padding: 8px 13px;

  font-size: 13px;

  font-weight: 900;
}

.workspace-actions {
  display: flex;

  gap: 10px;

  flex-wrap: wrap;
}

.soft-btn {
  border: 1px solid rgba(222, 16, 88, 0.14);

  background: rgba(255, 255, 255, 0.62);

  color: var(--red);

  padding: 12px 15px;

  border-radius: 16px;

  font-size: 13px;

  font-weight: 900;

  transition: 0.22s ease;
}

.soft-btn:hover {
  background: white;

  transform: translateY(-2px);
}

.search-row {
  display: grid;

  grid-template-columns: minmax(0, 1fr) 220px;

  gap: 12px;

  margin-bottom: 22px;
}

.search-box {
  position: relative;
}

.search-box .search-icon {
  position: absolute;

  left: 17px;

  top: 50%;

  transform: translateY(-50%);

  color: var(--red);

  z-index: 2;
}

.search-box input {
  width: 100%;

  height: 58px;

  border: 1px solid rgba(222, 16, 88, 0.16);

  border-radius: 20px;

  padding: 0 52px 0 48px;

  font-weight: 800;

  color: var(--black);

  background: rgba(255, 255, 255, 0.84);

  box-shadow: none;

  font-size: 16px;
}

.search-box input:focus {
  outline: none;

  border-color: var(--red);

  box-shadow: 0 0 0 4px rgba(222, 16, 88, 0.13);
}

.clear-search {
  position: absolute;

  right: 10px;

  top: 50%;

  transform: translateY(-50%);

  border: none;

  width: 38px;

  height: 38px;

  border-radius: 14px;

  background: rgba(222, 16, 88, 0.09);

  color: var(--red);

  display: grid;

  place-items: center;
}

.clear-search:hover {
  background: var(--red);

  color: white;
}

.subsection-title {
  display: flex;

  align-items: center;

  gap: 9px;

  margin: 24px 0 14px;

  color: var(--black);

  font-weight: 900;

  font-size: 18px;

  letter-spacing: -0.025em;
}

.subsection-title i {
  color: var(--red);
}

.quick-add-note {
  color: #7d2d45;

  font-size: 13px;

  font-weight: 800;

  margin-top: -5px;

  margin-bottom: 12px;
}

.popular-row {
  display: flex;

  gap: 10px;

  overflow-x: auto;

  padding-bottom: 8px;
}

.popular-pill {
  flex: 0 0 auto;

  border: 1px solid rgba(222, 16, 88, 0.14);

  background: rgba(255, 255, 255, 0.62);

  color: #641028;

  border-radius: 999px;

  padding: 11px 14px;

  font-weight: 900;

  font-size: 13px;

  transition: 0.22s ease;

  display: inline-flex;

  align-items: center;

  gap: 8px;
}

.popular-pill:hover {
  background: var(--red);

  color: white;

  transform: translateY(-2px);
}

.items-grid {
  display: grid;

  grid-template-columns: repeat(4, minmax(0, 1fr));

  gap: 14px;
}

.item-card {
  border: 1px solid rgba(222, 16, 88, 0.12);

  background: rgba(255, 255, 255, 0.58);

  border-radius: 24px;

  padding: 16px;

  transition: 0.22s ease;

  position: relative;

  cursor: default;
}

.item-card:hover {
  background: white;

  transform: translateY(-4px);

  box-shadow: 0 18px 42px rgba(176, 20, 73, 0.12);
}

.item-top {
  display: flex;

  gap: 11px;

  align-items: flex-start;

  margin-bottom: 14px;
}

.item-icon {
  width: 48px;

  height: 48px;

  border-radius: 18px;

  background: rgba(222, 16, 88, 0.1);

  color: var(--red);

  display: grid;

  place-items: center;

  font-size: 20px;

  flex: 0 0 auto;
}

.item-name {
  flex: 1;

  min-width: 0;
}

.item-name strong {
  display: block;

  color: var(--black);

  font-weight: 900;

  font-size: 15px;

  line-height: 1.2;
}

.item-name span {
  display: block;

  margin-top: 4px;

  color: #7d2d45;

  font-size: 12px;

  font-weight: 800;
}

.qty-control {
  display: grid;

  grid-template-columns: 38px 1fr 38px;

  gap: 8px;

  align-items: center;
}

.qty-btn {
  border: none;

  width: 38px;

  height: 38px;

  border-radius: 14px;

  background: rgba(222, 16, 88, 0.1);

  color: var(--red);

  font-weight: 900;

  transition: 0.2s ease;
}

.qty-btn:hover {
  background: var(--red);

  color: white;
}

.qty-number {
  height: 38px;

  border-radius: 14px;

  background: rgba(255, 255, 255, 0.68);

  border: 1px solid rgba(222, 16, 88, 0.1);

  color: var(--black);

  display: grid;

  place-items: center;

  font-weight: 900;

  font-size: 14px;
}

.item-add-hint {
  margin-top: 12px;

  color: #7d2d45;

  font-size: 12px;

  font-weight: 800;

  text-align: center;
}

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

  border-radius: 24px;

  padding: 34px;

  text-align: center;

  background: rgba(255, 255, 255, 0.52);

  border: 1px dashed rgba(222, 16, 88, 0.24);

  color: #7d2d45;

  font-weight: 800;
}

.empty-items i {
  display: block;

  color: var(--red);

  font-size: 34px;

  margin-bottom: 12px;
}

.selected-panel {
  margin-bottom: 24px;
}

.selected-heading {
  display: flex;

  justify-content: space-between;

  align-items: end;

  gap: 16px;

  margin-bottom: 18px;
}

.selected-total {
  color: var(--red);

  background: rgba(222, 16, 88, 0.08);

  border: 1px solid rgba(222, 16, 88, 0.12);

  border-radius: 999px;

  padding: 9px 14px;

  font-size: 13px;

  font-weight: 900;

  white-space: nowrap;
}

.selected-list {
  display: grid;

  gap: 10px;
}

.selected-row {
  display: grid;

  grid-template-columns: 1fr auto;

  align-items: center;

  gap: 14px;

  background: rgba(255, 255, 255, 0.52);

  border: 1px solid rgba(222, 16, 88, 0.09);

  border-radius: 20px;

  padding: 13px 15px;
}

.selected-row strong {
  display: block;

  color: var(--black);

  font-size: 14px;

  font-weight: 900;
}

.selected-row span {
  display: block;

  color: #7d2d45;

  font-size: 12px;

  font-weight: 800;

  margin-top: 3px;
}

.selected-controls {
  display: flex;

  align-items: center;

  gap: 8px;
}

.selected-controls b {
  min-width: 24px;

  text-align: center;

  color: var(--black);

  font-weight: 900;
}

.comment-panel textarea {
  min-height: 120px;

  resize: none;
}

.bottom-submit {
  width: 100%;

  border: none;

  background: var(--red);

  color: white;

  padding: 17px 22px;

  border-radius: 20px;

  font-weight: 900;

  box-shadow: 0 16px 34px rgba(222, 16, 88, 0.26);

  transition: 0.25s ease;

  margin-top: 14px;
}

.bottom-submit:hover {
  background: var(--red-dark);

  transform: translateY(-2px);
}

.footer-section {
  padding: 70px 0 28px;

  background: rgba(222, 16, 88, 0.96);

  color: white;

  position: relative;

  z-index: 2;
}

.footer-logo {
  font-family: "Playfair Display", serif;

  font-size: 42px;

  font-weight: 800;

  letter-spacing: -0.055em;

  margin-bottom: 10px;
}

.footer-section p {
  color: rgba(255, 255, 255, 0.82);

  line-height: 1.7;

  font-weight: 500;
}

.footer-title {
  font-weight: 900;

  margin-bottom: 17px;

  font-size: 16px;
}

.footer-links {
  list-style: none;

  padding: 0;

  margin: 0;
}

.footer-links li {
  margin-bottom: 10px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.82);

  font-weight: 600;
}

.socials {
  display: flex;

  gap: 10px;

  margin-top: 18px;
}

.socials a {
  width: 42px;

  height: 42px;

  border-radius: 50%;

  background: rgba(255, 255, 255, 0.16);

  color: white;

  display: grid;

  place-items: center;

  transition: 0.25s ease;
}

.socials a:hover {
  background: white;

  color: var(--red);

  transform: translateY(-3px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.18);

  margin-top: 42px;

  padding-top: 22px;

  color: rgba(255, 255, 255, 0.75);

  font-size: 14px;

  font-weight: 600;
}

@media (max-width: 1399px) {
  .quote-progress {
    grid-template-columns: repeat(3, 1fr);
  }

  .progress-submit {
    grid-column: span 3;
  }

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

@media (max-width: 1199px) {
  .navbar-collapse {
    background: rgba(255, 247, 250, 0.96);

    border: 1px solid rgba(222, 16, 88, 0.12);

    border-radius: 24px;

    padding: 18px;

    margin-top: 14px;
  }
}

@media (max-width: 991px) {
  .inventory-page {
    padding: 135px 0 65px;
  }

  .quote-progress {
    position: static;

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

  .progress-submit {
    grid-column: 1 / -1;
  }

  .rooms-header,
  .workspace-top,
  .selected-heading {
    align-items: stretch;

    flex-direction: column;
  }

  .room-add-inline {
    grid-template-columns: 1fr;
  }

  .room-card {
    min-width: 230px;
  }

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

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

@media (max-width: 575px) {
  .page-title {
    font-size: 48px;
  }

  .page-title span {
    font-size: 19px;
  }

  .page-text {
    font-size: 16px;
  }

  .quote-progress {
    grid-template-columns: 1fr;

    border-radius: 24px;
  }

  .route-chip {
    grid-template-columns: 32px auto 1fr;
  }

  .route-chip em {
    display: none;
  }

  .panel {
    border-radius: 26px;
  }

  .panel-inner {
    padding: 20px;
  }

  .room-card {
    min-width: 215px;
  }

  .room-row {
    padding-left: 12px;

    padding-right: 12px;

    margin-left: -12px;

    margin-right: -12px;
  }

  .room-card::after {
    font-size: 11px;
  }

  .active-room-notice {
    align-items: flex-start;
  }

  .active-room-notice h3 {
    font-size: 19px;
  }

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

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

  .selected-controls {
    justify-content: space-between;
  }

  .logo-text strong {
    font-size: 23px;
  }

  .logo-text span {
    font-size: 9px;
  }

  .logo-mark {
    width: 42px;

    height: 42px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation: none !important;

    transition: none !important;

    scroll-behavior: auto !important;
  }
}

/* ===== PHP conversion shared fixes ===== */

img {
  max-width: 100%;
  height: auto;
}

.navbar-brand img {
  max-height: 58px;
  object-fit: contain;
}

.room-row {
  overflow-y: visible;
  -webkit-overflow-scrolling: touch;
}

.content-page {
  position: relative;
  z-index: 2;
  padding-top: 145px;
}

.page-hero-section {
  padding: 30px 0 55px;
}

.referral-content-section {
  padding: 10px 0 85px;
}

.referral-highlight-card,
.referral-info-card,
.referral-text-panel {
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 34px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.referral-highlight-card {
  padding: 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.referral-icon {
  width: 72px;
  height: 72px;
  border-radius: 26px;
  background: var(--red);
  color: white;
  display: grid;
  place-items: center;
  font-size: 28px;
  box-shadow: 0 18px 38px rgba(222, 16, 88, 0.25);
  margin-bottom: 22px;
}

.referral-highlight-card h2 {
  color: var(--red);
  font-size: clamp(34px, 4vw, 54px);
  line-height: 0.95;
  font-weight: 900;
  letter-spacing: -0.065em;
  margin-bottom: 18px;
}

.referral-highlight-card p,
.referral-text-panel p {
  color: var(--text);
  font-size: 17px;
  line-height: 1.75;
  font-weight: 700;
}

.referral-highlight-card .main-btn {
  width: fit-content;
  margin-top: 12px;
}

.referral-info-card {
  padding: 28px;
  display: grid;
  gap: 16px;
}

.referral-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 18px;
  padding: 20px;
  border-radius: 26px;
  background: rgba(255, 255, 255, 0.56);
  border: 1px solid rgba(222, 16, 88, 0.1);
}

.referral-step span {
  width: 62px;
  height: 62px;
  border-radius: 22px;
  background: rgba(222, 16, 88, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  font-size: 20px;
  font-weight: 900;
}

.referral-step h3 {
  margin: 0 0 6px;
  color: var(--black);
  font-size: 22px;
  font-weight: 900;
  letter-spacing: -0.04em;
}

.referral-step p {
  margin: 0;
  color: #7d2d45;
  font-size: 15px;
  line-height: 1.65;
  font-weight: 700;
}

.referral-text-panel {
  margin-top: 24px;
  padding: 32px;
}

.referral-text-panel p:last-child {
  margin-bottom: 0;
}

@media (max-width: 575px) {
  .content-page {
    padding-top: 125px;
  }

  .referral-highlight-card,
  .referral-info-card,
  .referral-text-panel {
    border-radius: 26px;
  }

  .referral-highlight-card,
  .referral-info-card,
  .referral-text-panel {
    padding: 22px;
  }

  .referral-step {
    grid-template-columns: 1fr;
  }
}

.pac-container {
  z-index: 999999 !important;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(176, 20, 73, 0.18);
  border: 1px solid rgba(222, 16, 88, 0.16);
  font-family: inherit;
}

.pac-item {
  padding: 10px 14px;
  cursor: pointer;
}

.pac-item:hover {
  background: #ffe4eb;
}

.quote-price-page {
  position: relative;
  z-index: 2;
  padding: 150px 0 90px;
}

.price-final-card,
.summary-box {
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.78);
  border-radius: 34px;
  box-shadow: var(--shadow);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}

.price-final-card {
  padding: 34px;
  display: grid;
  gap: 28px;
  margin-bottom: 28px;
}

.price-main span {
  display: block;
  color: #7d2d45;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.price-main strong {
  color: var(--red);
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 900;
  line-height: 0.95;
  letter-spacing: -0.07em;
}

.price-main p {
  color: #7d2d45;
  font-weight: 700;
  margin: 14px 0 0;
}

.price-loader {
  display: inline-block;
  width: 60px;
  height: 60px;
  border: 5px solid rgba(196, 54, 92, 0.2);
  border-top-color: var(--red);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

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

.price-route {
  display: flex;
  align-items: center;
  gap: 18px;
  background: rgba(255, 255, 255, 0.54);
  border-radius: 24px;
  padding: 20px;
}

.price-route div {
  flex: 1;
}

.price-route span {
  display: block;
  color: #7d2d45;
  font-size: 12px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-route strong {
  color: var(--black);
  font-size: 16px;
  font-weight: 900;
}

.price-route i {
  color: var(--red);
}

.price-breakdown-section {
  margin-bottom: 28px;
}

.price-mini-card {
  height: 100%;
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(222, 16, 88, 0.1);
  border-radius: 28px;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(176, 20, 73, 0.1);
}

.price-mini-card i {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  background: rgba(222, 16, 88, 0.1);
  color: var(--red);
  display: grid;
  place-items: center;
  margin-bottom: 16px;
}

.price-mini-card span {
  display: block;
  color: #7d2d45;
  font-size: 13px;
  font-weight: 900;
  text-transform: uppercase;
}

.price-mini-card strong {
  display: block;
  margin-top: 8px;
  color: var(--black);
  font-size: 30px;
  font-weight: 900;
  letter-spacing: -0.05em;
}

.price-mini-card small {
  display: block;
  margin-top: 8px;
  color: #7d2d45;
  font-weight: 700;
}

.summary-box {
  padding: 28px;
  height: 100%;
}

.summary-box h2 {
  color: var(--red);
  font-size: 28px;
  font-weight: 900;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.mileage-help {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(222, 16, 88, 0.12);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
  margin-left: 6px;
  cursor: help;
}

.summary-line {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(222, 16, 88, 0.12);
}

.summary-line:last-child {
  border-bottom: 0;
}

.summary-line span {
  color: #7d2d45;
  font-weight: 800;
}

.summary-line strong {
  color: var(--black);
  font-weight: 900;
  text-align: right;
}

.price-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: flex-end;
  margin-top: 28px;
}

@media (max-width: 768px) {
  .quote-price-page {
    padding-top: 125px;
  }

  .price-route {
    align-items: flex-start;
    flex-direction: column;
  }

  .price-route i {
    transform: rotate(90deg);
  }

  .price-actions {
    justify-content: stretch;
  }

  .price-actions a,
  .price-actions button {
    width: 100%;
    justify-content: center;
  }
}

.mileage-help-wrap {
  position: relative;
  display: inline-flex;
  align-items: center;
  margin-left: 6px;
  vertical-align: middle;
}

.mileage-help {
  width: 22px;
  height: 22px;
  border: 0;
  border-radius: 50%;
  background: rgba(222, 16, 88, 0.12);
  color: var(--red);
  font-size: 13px;
  font-weight: 900;
  line-height: 22px;
  text-align: center;
  cursor: pointer;
  padding: 0;
}

.mileage-tooltip {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 10px);
  transform: translateX(-50%) translateY(6px);
  width: 280px;
  max-width: 78vw;
  padding: 12px 14px;
  border-radius: 16px;
  background: #fff;
  color: #7d2d45;
  border: 1px solid rgba(222, 16, 88, 0.14);
  box-shadow: 0 18px 45px rgba(176, 20, 73, 0.16);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.45;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  z-index: 9999;
  transition: 0.18s ease;
  text-transform: none;
}

.mileage-tooltip::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 100%;
  transform: translateX(-50%);
  border-width: 8px;
  border-style: solid;
  border-color: #fff transparent transparent transparent;
}

.mileage-help-wrap:hover .mileage-tooltip,
.mileage-help-wrap.is-open .mileage-tooltip {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

/* ─────────────────────────────────────────────────────────────
   LEAD POPUP STYLES
───────────────────────────────────────────────────────────── */

.lead-overlay {
  position: fixed;
  inset: 0;
  background: rgba(23, 18, 23, 0.65);
  backdrop-filter: blur(6px);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;

  opacity: 0;
  visibility: hidden;
  transition: 0.25s ease;
}

.lead-overlay.is-open {
  opacity: 1;
  visibility: visible;
}

.lead-modal {
  width: min(520px, 92vw);
  background: var(--pink-light);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 28px 24px;
  position: relative;

  transform: translateY(20px) scale(0.98);
  transition: 0.25s ease;
}

.lead-overlay.is-open .lead-modal {
  transform: translateY(0) scale(1);
}

/* Close button */
.lead-modal-close {
  position: absolute;
  top: 14px;
  right: 14px;
  border: none;
  background: transparent;
  font-size: 18px;
  color: var(--text);
  cursor: pointer;
  transition: 0.2s;
}

.lead-modal-close:hover {
  color: var(--red);
}

/* Steps */
.lead-step {
  text-align: center;
}

.hidden {
  display: none !important;
}

/* Icon */
.lead-modal-icon {
  width: 64px;
  height: 64px;
  margin: 0 auto 14px;
  border-radius: 50%;
  background: var(--pink-soft);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--red);
  font-size: 22px;
}

.lead-modal-icon.success {
  background: rgba(34, 197, 94, 0.12);
  color: #22c55e;
}

/* Typography */
.lead-step h2 {
  font-size: 22px;
  color: var(--black);
  margin-bottom: 6px;
}

.lead-step p {
  font-size: 14px;
  color: var(--text);
  margin-bottom: 18px;
}

/* Step 1 buttons */
.lead-type-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lead-type-btn {
  width: 100%;
  border: 1px solid var(--border);
  background: white;
  border-radius: 14px;
  padding: 14px;
  text-align: left;
  cursor: pointer;
  transition: 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.lead-type-btn i {
  color: var(--red);
  font-size: 18px;
}

.lead-type-btn strong {
  font-size: 15px;
  color: var(--black);
}

.lead-type-btn span {
  font-size: 13px;
  color: var(--text);
}

.lead-type-btn:hover {
  transform: translateY(-2px);
  border-color: var(--red);
  box-shadow: 0 12px 30px rgba(222, 16, 88, 0.12);
}

/* Step 2 form */
.lead-form-fields {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 16px;
}

.lead-form-fields input {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  outline: none;
  font-size: 14px;
  transition: 0.2s;
}

.lead-form-fields input:focus {
  border-color: var(--red);
  box-shadow: 0 0 0 3px rgba(222, 16, 88, 0.12);
}

/* Submit button */
.quote-submit {
  width: 100%;
  border: none;
  background: var(--red);
  color: white;
  padding: 12px 14px;
  border-radius: 12px;
  font-size: 15px;
  cursor: pointer;
  transition: 0.2s ease;
}

.quote-submit:hover {
  background: var(--red-dark);
}

.quote-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Error */
.lead-error {
  margin-top: 10px;
  font-size: 13px;
  color: var(--red);
}

/* Step 3 button */
/* .secondary-btn {
  margin-top: 10px;
  width: 100%;
  border: 1px solid var(--border);
  background: white;
  color: var(--black);
  padding: 12px 14px;
  border-radius: 12px;
  cursor: pointer;
  transition: 0.2s ease;
} */

.secondary-btn:hover {
  border-color: var(--red);
  color: var(--red);
}

/* ───────── MOBILE OPTIMIZATION ───────── */
@media (max-width: 480px) {
  .lead-modal {
    padding: 22px 18px;
    border-radius: 16px;
  }

  .lead-step h2 {
    font-size: 20px;
  }

  .lead-modal-icon {
    width: 56px;
    height: 56px;
    font-size: 20px;
  }
}

.quote-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 10px;
}

/* Shared button base */
.quote-submit {
  width: 100%;
  padding: 13px 14px;
  border-radius: 14px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: 0.2s ease;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

/* Primary CTA */
.quote-submit.primary {
  background: var(--red);
  color: white;
  box-shadow: 0 12px 30px rgba(222, 16, 88, 0.18);
}

.quote-submit.primary:hover {
  background: var(--red-dark);
  transform: translateY(-2px);
}

/* Secondary CTA */
.quote-submit.secondary {
  background: white;
  color: var(--black);
  border: 1px solid var(--border);
}

.quote-submit.secondary:hover {
  border-color: var(--red);
  color: var(--red);
  transform: translateY(-2px);
}

/* OR divider */
.quote-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: 2px 0;
}

.quote-divider span {
  font-size: 12px;
  font-weight: 600;
  color: var(--text);
  background: var(--pink-light);
  padding: 0 10px;
  position: relative;
  z-index: 2;
}

.quote-divider::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 1px;
  background: var(--border);
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  z-index: 1;
}

/* Mobile tweak */
@media (max-width: 480px) {
  .quote-submit {
    font-size: 14px;
    padding: 12px;
  }
}

.why-img {
  border-radius: 38px;
  background:url("../images/why.jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

.wiko-img {
  border-radius: 38px;
  background:url("../images/wiko.jpg") center/cover no-repeat;
  border: 1px solid rgba(255, 255, 255, 0.7);
  position: relative;
  overflow: hidden;
  max-width: 100%;
}

