/* ── Design tokens ── */
:root {
  --gold: #c9a84c;
  --gold-lt: #e2bb6a;
  --dark: #111111;
  --dark2: #1a1a1a;
  --dark3: #222222;
  --mid: #2a2a2a;
  --light: #f5f5f0;
  --muted: #999999;
  --white: #ffffff;
}

/* ── Base ── */
body {
  font-family: "Inter", sans-serif;
  background: var(--dark);
  color: var(--white);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Playfair Display", serif;
}

a {
  text-decoration: none;
}

/* ── Utility ── */

.bg-dark {
  --bs-bg-opacity: 1;
  background-color: #101419;
}

.bg-dark-1 {
  background: var(--dark);
}

.bg-dark-2 {
  background: var(--dark2);
}

.bg-dark-3 {
  background: #0e0f11;
}

.bg-mid {
  background: var(--mid);
}

.bg-light-1 {
  background: var(--light);
}

.border-gold {
  border-color: var(--gold) !important;
}

.btn-gold {
  background: #c89a4b;
  color: white;
  font-weight: 600;
  border: none;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
}

/* .btn-gold:hover {
	background: #e2bb6a;
	color: #b7b7b7;
} */
.btn:hover {
  color: none;
  background-color: none;
  border-color: none;
}

.btn-outline-gold {
  color: white;
  background: #25d366;
  font-weight: 600;
  border-radius: 6px;
  letter-spacing: 0.03em;
  transition: all 0.2s;
}

/* ── Navbar ── */
header {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 9999;
}

.navbar {
  background: transparent !important;
  padding: 18px 0;
}

.navbar-brand .brand-text {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  line-height: 1;
}

.navbar-brand .brand-name {
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
  color: var(--white);
  line-height: 1;
}

.nav-link {
  color: #ccc !important;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-link:hover {
  color: var(--gold) !important;
}

.logo-icon {
  color: var(--gold);
  font-size: 1.5rem;
}

/* ── Hero ── */
.hero-section {
  position: relative;
  min-height: 90vh !important;
  margin-top: -110px; /* pulls hero behind header */
  padding-top: 170px; /* creates space for content */
  overflow: hidden;
}

/* Full-bleed background photo */
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url("../front_images/hero.png");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 15%;
  z-index: 0;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  margin-top: 111px;
}

footer a {
  color: #6c757d;
  text-decoration: none;
}

footer a:hover {
  color: #fff;
  text-decoration: none;
}

/* Dark gradient: strong on left & right, transparent in the centre */
.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to right,
    rgba(0, 0, 0, 0.95) 0%,
    rgba(0, 0, 0, 0.65) 25%,
    rgba(0, 0, 0, 0.15) 50%,
    rgba(0, 0, 0, 0.65) 75%,
    rgba(0, 0, 0, 0.95) 100%
  );
}

/* All content sits above the bg */
.hero-content {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero-headline {
  font-size: clamp(2.2rem, 5.5vw, 3.7rem);
  line-height: 1.05;
}

.hero-headline .accent {
  color: var(--gold);
}

.hero-sub {
  font-size: 0.95rem;
  color: #ccc;
  font-weight: 300;
}

.hero-badge {
  display: flex;
  flex-direction: row;
  align-items: center;
  font-size: 0.67rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #aaa;
}

.hero-badge i {
  font-size: 1.3rem;
  color: var(--gold);
  margin-bottom: 4px;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "";
}

.smile-text {
  margin-left: 120px;
  margin-bottom: 88px;
}

.button-white {
  color: #ffffff !important;
}

.why-choose-card-heading {
  text-align: center;
}

/* Card stays semi-opaque so it's readable over the image */
.smile-card {
  background: rgba(18, 18, 18, 0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid #3a3a3a;
  border-radius: 14px;
  padding: 1.6rem;
  width: 348px;
  margin-left: -40px;
}

.smile-card .step-num {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #a97d44;
  color: var(--dark);
  font-size: 0.72rem;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.smile-option {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.55rem 0.75rem;
  border: 1px solid #3a3a3a;
  border-radius: 8px;
  margin-bottom: 0.5rem;
  font-size: 0.85rem;
  color: #ddd;
  cursor: pointer;
  transition:
    border-color 0.2s,
    background 0.2s;
}

.smile-option:hover {
  border-color: var(--gold);
  background: rgba(255, 255, 255, 0.05);
}

.smile-option .radio-circle {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  border: 1.5px solid #666;
  flex-shrink: 0;
}

.social-proof-faces img {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  border: 2px solid var(--dark);
  margin-left: -10px;
}

.social-proof-faces img:first-child {
  margin-left: 0;
}

/* ── Stats bar ── */
.stats-bar {
  background: var(--dark2);
  border-top: 1px solid #2a2a2a;
  border-bottom: 1px solid #2a2a2a;
}

.stat-item .stat-num {
  font-family: "Playfair Display", serif;
  font-size: 1.7rem;
  color: var(--white);
  font-weight: 700;
}

.stat-item .stat-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--muted);
}

.stat-divider {
  width: 1px;
  background: #333;
  height: 50px;
}

/* ── Simulation section ── */
.sim-section {
  background: #0b0b0b;
}

.text-gold {
  color: #c9a84c;
}

.textwarn {
  color: #a97d44;
}

.btnwarn {
  background: #c89a4b;
  color: #b7b7b7;
}

.bgchat {
  background: #0e1317;
}

.bgwhatsapp {
  background: #25d366;
  /* background: #25D366 */
}

.comparison-slider {
  position: relative;
  width: 100%;
  max-width: 420px;
  overflow: hidden;
  border-radius: 20px;
}

.comparison-img {
  width: 100%;
  display: block;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.comparison-overlay img {
  width: 420px;
  /* same width as parent */
  max-width: none;
}

.comparison-line {
  position: absolute;
  left: 50%;
  top: 0;
  width: 2px;
  height: 100%;
  background: #fff;
  z-index: 3;
}

.sim-bg {
  background: linear-gradient(
    to right,
    #f5f1eb 0%,
    #f1ebe2 40%,
    #343333 60%,
    #151515 85%,
    #111111 100%
  );
  border-radius: 20px;
}

.comparison-handle {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #666;
  border: 3px solid #fff;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 3px;
  cursor: ew-resize;
  z-index: 4;
}

.before-label {
  position: absolute;
  top: 15px;
  left: 15px;
  color: #fff;
  font-weight: 700;
  z-index: 4;
}

.after-label {
  position: absolute;
  top: 15px;
  right: 15px;
  color: #fff;
  font-weight: 700;
  z-index: 4;
}

.img-before,
.img-after {
  width: 100%;
  display: block;
}

.img-after-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
}

.slider-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  transform: translateX(-50%);
}

.slider-handle {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  background: #5b5b5b;
  border: 4px solid #fff;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: ew-resize;
  z-index: 10;
}

.before-label {
  position: absolute;
  top: 20px;
  left: 20px;
  color: #fff;
  font-weight: 600;
}

.after-label {
  position: absolute;
  top: 20px;
  right: 20px;
  color: #fff;
  font-weight: 600;
}

.card {
  border-radius: 12px;
}

.card-img-top {
  border-radius: 12px 12px 0 0;
}

.card:hover {
  transform: translateY(-4px);
  transition: 0.3s;
}

.btn-gold,
.btn-outline-gold {
  white-space: nowrap;
}

/* ── High-ticket box ── */
.high-ticket {
  background: var(--mid);
  border-radius: 14px;
}

.ht-check {
  color: var(--gold);
  font-size: 0.85rem;
}

/* ── CTA ── */
.cta-section {
  background: var(--dark2);
}

.cta-box {
  background: var(--gold);
  border-radius: 14px;
  color: var(--dark);
}

.cta-icon-box {
  background: var(--dark2);
  border-radius: 14px;
  text-align: center;
  padding: 1.5rem 1rem;
}

.cta-icon-box i {
  font-size: 1.6rem;
  color: var(--gold);
}

.cta-icon-box span {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #ccc;
  display: block;
  margin-top: 0.4rem;
  font-weight: 600;
}

/* ── Footer ── */
footer {
  background: #0d0d0d;
  border-top: 1px solid #222;
  font-size: 0.8rem;
  color: #888;
}

footer a {
  color: #888;
}

footer a:hover {
  color: var(--gold);
}

/* ── Responsive tweaks ── */
.future-smile-heading {
  font-family: "Playfair Display", serif;
  font-size: 2.2rem;
  font-weight: 700;
  line-height: 1.15;
  color: #1a1a1a;
  margin-bottom: 20px;
}

.future-smile-heading span {
  display: block;
  color: #c9a84c;
  margin-top: 4px;
}

.future-smile-text {
  font-size: 1rem;
  line-height: 1.7;
  color: #666;
  max-width: 340px;
}
.text-warning {
  --bs-text-opacity: 1;
  color: #ac7c34;
}
@media (max-width: 426px) {
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 137px;
  }
}
@media (max-width: 766px) {
  .hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    margin-top: 137px;
  }
}

/* ===== Small Laptop (1024px–1365px) ===== */
@media (min-width: 1024px) and (max-width: 1365px) {
  /* Hero */
  .hero-headline {
    font-size: 3rem;
  }

  .hero-sub {
    font-size: 0.9rem;
  }

  .smile-card {
    width: 310px;
    margin-left: 0;
  }

  /* Simulation Section */
  .sim-bg {
    padding: 25px;
  }

  .smile-text {
    margin: 0;
    font-size: 1.7rem;
    text-align: left;
  }

  /* Navbar */
  .navbar-brand img {
    height: 80px;
  }

  .nav-link {
    font-size: 0.75rem;
  }

  .btn-gold,
  .btn-outline-gold {
    font-size: 0.75rem;
    padding: 0.55rem 0.9rem;
  }
}

section.py-5.inner-pages {
  margin-top: 40px;
}

/* ── Tablets ── */
@media (max-width: 991px) {
  .stat-divider {
    display: none;
  }

  .hero-section {
    min-height: auto;
  }

  /* Smile card: remove fixed width, centre it */
  .smile-card {
    width: 100%;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 1.5rem;
  }

  /* Smile text: remove left margin */
  .smile-text {
    margin-left: 0;
    text-align: center;
  }

  /* Simulation gradient: switch to vertical on stacked layout */
  .sim-bg {
    background: linear-gradient(
      to bottom,
      #f5f1eb 0%,
      #f1ede8 40%,
      #b8b4af 70%,
      #2a2a2a 90%,
      #111111 100%
    );
  }

  /* Navbar collapse panel */
  .navbar-collapse {
    background: rgba(17, 17, 17, 0.97);
    border-radius: 10px;
    padding: 1.2rem 1.5rem;
    margin-top: 10px;
    border: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-link {
    padding: 0.55rem 0 !important;
  }

  /* Stats bar: 2-col grid on tablets */
  .stats-bar-row > .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }
}

/* ── Mobile landscape / small tablets ── */
@media (max-width: 767px) {
  .hero-section {
    padding-top: 0px;
    padding-bottom: 0px;
  }

  .hero-headline {
    font-size: 2.2rem;
    text-align: center;
  }

  .hero-sub {
    text-align: center;
  }

  /* CTA buttons: stack vertically */
  .hero-section .d-flex.align-items-center.gap-3.mb-4 {
    flex-direction: column;
    align-items: stretch !important;
    width: 100%;
  }

  .hero-section .d-flex.align-items-center.gap-3.mb-4 .btn {
    width: 100%;
    text-align: center;
    white-space: normal;
  }

  /* Trust badges: wrap in a 2-col grid */
  .hero-section .d-flex.gap-4.mb-4.flex-wrap {
    justify-content: center;
    gap: 1rem !important;
  }

  .hero-badge {
    font-size: 0.62rem;
  }

  /* Social proof: centre */
  .social-proof-faces {
    justify-content: center;
  }

  .hero-section .d-flex.align-items-center.gap-3:not(.mb-4):not(.mb-3) {
    justify-content: center;
  }

  /* Stats bar: 2-col grid */
  .stats-bar-row > .col {
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 1rem;
  }

  /* Hide vertical rule dividers */
  .stats-bar-row > .col-auto {
    display: none !important;
  }

  /* Simulation section: reduce padding */
  .sim-section .col-lg-4 {
    padding: 1.5rem !important;
  }

  .sim-bg {
    border-radius: 14px;
  }
}

/* ── Small phones ── */
@media (max-width: 480px) {
  .hero-headline {
    font-size: 1.85rem;
  }

  .hero-sub {
    font-size: 0.85rem;
  }

  .smile-card {
    padding: 1.2rem;
    max-width: 100%;
  }

  .smile-option {
    font-size: 0.8rem;
    padding: 0.45rem 0.65rem;
  }

  /* Stats bar: single column */
  .stats-bar-row > .col {
    flex: 0 0 100%;
    max-width: 100%;
  }

  .comparison-handle {
    width: 40px;
    height: 40px;
  }

  .before-label,
  .after-label {
    font-size: 0.7rem;
    top: 10px;
  }

  .before-label {
    left: 10px;
  }

  .after-label {
    right: 10px;
  }
}

@media only screen and (min-width: 996px) and (max-width: 1199px) {
  /* ---------------- Container ---------------- */

  .container {
    max-width: 1110px !important;
  }

  /* ---------------- Navbar ---------------- */

  .navbar {
    padding: 12px 0 !important;
  }

  .navbar-brand img {
    height: 70px !important;
    width: auto !important;
  }

  .nav-link {
    font-size: 11px !important;
    padding: 0 8px !important;
    letter-spacing: 0.03em !important;
  }

  .navbar .btn,
  .btn-gold,
  .btn-outline-gold {
    font-size: 12px !important;
    padding: 11px 18px !important;
  }

  /* ---------------- Hero ---------------- */

  .hero-section {
    min-height: 880px !important;
    padding-top: 150px !important;
    margin-top: -100px !important;
  }

  .hero-content {
    margin-top: 0 !important;
  }

  .hero-content .container {
    max-width: 1000px !important;
  }

  .hero-content .row {
    align-items: center !important;
  }

  .hero-headline {
    font-size: 3rem !important;
    line-height: 1.05 !important;
  }

  .hero-sub {
    font-size: 15px !important;
    line-height: 1.7 !important;
  }

  .hero-badge {
    font-size: 11px !important;
  }

  .hero-badge i {
    font-size: 18px !important;
  }

  /* Hero Image */

  .hero-image img,
  .hero-img img {
    width: 430px !important;
    max-width: 100% !important;
  }

  /* ---------------- Smile Card ---------------- */

  .smile-card {
    width: 300px !important;
    padding: 22px !important;
    margin-left: 0 !important;
  }

  .smile-option {
    font-size: 13px !important;
    padding: 10px 12px !important;
  }

  /* ---------------- Buttons ---------------- */

  .hero-section .btn {
    font-size: 13px !important;
    padding: 13px 20px !important;
  }

  /* ---------------- Social Proof ---------------- */

  .social-proof-faces img {
    width: 30px !important;
    height: 30px !important;
  }
  .futurepd {
    padding: 0% !important;
  }

  /* ---------------- Stats ---------------- */

  .stats-bar {
    padding: 18px 0 !important;
  }

  .stat-num {
    font-size: 28px !important;
  }

  .stat-label {
    font-size: 11px !important;
  }

  .stat-divider {
    height: 45px !important;
  }

  /* ---------------- Future Smile ---------------- */

  .sim-bg {
    padding: 30px !important;
  }

  .future-smile-heading {
    font-size: 38px !important;
    line-height: 1.15 !important;
  }

  .future-smile-text {
    font-size: 15px !important;
    max-width: 100% !important;
  }

  .comparison-slider {
    width: 360px !important;
    max-width: 360px !important;
    margin: 0 auto !important;
  }

  .comparison-overlay img {
    width: 360px !important;
  }

  .comparison-line {
    left: 50% !important;
  }

  .comparison-handle {
    left: 50% !important;
  }

  /* ---------------- Remove Hard Margins ---------------- */

  .smile-text {
    margin-left: 86px !important;
    margin-bottom: 0 !important;
  }

  /* ---------------- Cards ---------------- */

  .card-title {
    font-size: 16px !important;
  }

  .card-text {
    font-size: 13px !important;
  }

  .card-img-top {
    height: 170px !important;
    object-fit: cover !important;
  }

  /* ---------------- Treatment Cards ---------------- */

  .treatment-card {
    min-width: 150px !important;
  }

  .treatment-card img {
    height: 150px !important;
    object-fit: cover !important;
  }

  /* ---------------- Testimonial ---------------- */

  .story-card img {
    height: 180px !important;
    object-fit: cover !important;
  }

  /* ---------------- High Ticket ---------------- */

  .high-ticket {
    padding: 24px !important;
  }

  /* ---------------- CTA ---------------- */

  .cta-box {
    padding: 28px !important;
  }

  .cta-icon-box {
    padding: 25px 18px !important;
  }

  /* ---------------- Footer ---------------- */

  footer {
    font-size: 13px !important;
  }
}

.comparison-slider {
  width: 380px;
  max-width: 380px;
}

.comparison-overlay img {
  width: 380px;
}

.comparison-line {
  left: 50%;
}

.comparison-handle {
  left: 50%;
}

.comparison-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  overflow: hidden;
  z-index: 2;
}

.comparison-line {
  position: absolute;
  top: 0;
  left: 50%;
  width: 2px;
  height: 100%;
  background: #fff;
  z-index: 3;
}

.comparison-handle {
  position: absolute;
  left: 50%;
  bottom: 20px;
  transform: translateX(-50%);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background: #666;
  border: 3px solid #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 3px;
  z-index: 4;
  cursor: ew-resize;
}

@media (min-width: 1024px) and (max-width: 1199px) {
  .comparison-slider {
    max-width: 340px;
  }
}
@media (max-width: 576px) {
  .hero-content .d-flex.gap-4.mb-4 {
    gap: 8px !important;
    justify-content: space-between;
  }

  .hero-content .hero-badge {
    flex: 1 1 0;
    min-width: 0;
    gap: 4px !important;
  }

  .hero-content .hero-badge div:last-child {
    font-size: 9px !important;
    line-height: 1.2;
    white-space: normal;
    overflow-wrap: break-word;
    word-break: break-word;
  }

  .hero-content .hero-badge i {
    font-size: 16px !important;
    flex-shrink: 0;
  }
  .worldtext {
    font-size: 14px;
  }

  .textn {
    font-size: 18px;
  }

  .btnwarn {
    background: #c89a4b;
    color: #b7b7b7;
    font-size: 12px;
  }
  .comparison-slider {
    width: 300px !important;
    max-width: 300px !important;
    margin: 0 auto;
  }

  .comparison-overlay {
    width: 50%;
  }

  .comparison-overlay img {
    width: 300px !important;
    max-width: none;
  }

  .comparison-line {
    left: 50%;
  }

  .comparison-handle {
    left: 50%;
    width: 44px;
    height: 44px;
    bottom: 15px;
  }

  .before-label,
  .after-label {
    font-size: 11px;
    top: 10px;
  }
}
.comparison-slider,
.comparison-handle {
  touch-action: none;
  -webkit-user-select: none;
  user-select: none;
}

/* Right Side */

.future-quote {
  font-size: 34px;
  line-height: 1.25;
  font-weight: 300;
  color: #fff;
  letter-spacing: 0.3px;
  max-width: 240px;
}

.future-quote::before {
  content: "“";
  color: #c9a84c;
  font-size: 70px;
  line-height: 0;
  display: block;
  margin-bottom: 18px;
}

.future-quote::after {
  content: "”";
  color: #c9a84c;
  font-size: 70px;
  line-height: 0;
  display: block;
  margin-top: 25px;
  text-align: right;
}

/* Section */

.sim-bg {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

/* Mobile */

@media (max-width: 991px) {
  .future-quote {
    font-size: 28px;
    margin: 35px auto 0;
    text-align: center;
  }
}

/* 

.quote-card{
    background:rgba(255,255,255,.04);
    border:1px solid rgba(201,168,76,.25);
    border-radius:22px;
    padding:45px 35px;
    backdrop-filter:blur(10px);
    position:relative;
}

.quote-icon{
    font-size:55px;
    color:#C9A84C;
    display:block;
    margin-bottom:15px;
}

.quote-card h3{
    font-size:34px;
    line-height:1.35;
    color:#fff;
    margin-bottom:30px;
}

.gold-line{
    width:70px;
    height:3px;
    background:#C9A84C;
    border-radius:20px;
    margin-bottom:20px;
}

.quote-card p{
    color:#bbb;
    letter-spacing:2px;
    text-transform:uppercase;
    font-size:12px;
} */

.quote-content {
  width: 100%;
  max-width: 260px;
  margin-top: 34px;
  margin-bottom: 34px;
}

.quote-title {
  font-size: 42px;
  line-height: 1.08;
  font-weight: 700;
  color: #fff;
  margin-bottom: 18px;
}

.quote-subtitle {
  font-size: 20px;
  line-height: 1.5;
  color: #d2d2d2;
  margin-bottom: 25px;
}

.quote-line {
  width: 65px;
  height: 3px;
  background: #c9a84c;
  border-radius: 30px;
  margin-bottom: 20px;
}

.quote-line.small {
  margin: 25px 0;
}

.quote-features {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.quote-feature {
  display: flex;
  align-items: center;
  gap: 10px;

  color: #bdbdbd;
  font-size: 14px;
  font-weight: 500;
}

.quote-feature i {
  color: #c9a84c;
  font-size: 18px;
}

@media (max-width: 990px) {
  .sim-section .col-lg-4 {
    padding: 1.5rem !important;
    align-items: center;
    justify-items: center;
  }
}
@media (max-width: 991px) {
  .quote-content {
    max-width: 420px;
    margin: auto;
    text-align: center;
  }

  .quote-line,
  .quote-line.small {
    margin-left: auto;
    margin-right: auto;
  }

  .quote-feature {
    justify-content: center;
  }

  .quote-title {
    font-size: 36px;
  }

  .quote-subtitle {
    font-size: 18px;
  }
}

/* ===============================
   1024px Laptop Optimization
=================================*/
@media (min-width: 992px) and (max-width: 1200px) {
  /* Reduce section padding */
  .futurepd {
    padding: 2rem !important;
  }

  /* Heading */
  .futurepd h2 {
    font-size: 36px !important;
    line-height: 1.15;
  }

  .futurepd p {
    font-size: 16px;
    line-height: 1.6;
  }

  /* Buttons */
  .futurepd .btn {
    font-size: 18px;
    padding: 12px 20px;
  }

  /* Comparison slider */
  .comparison-slider {
    transform: scale(0.88);
    transform-origin: center;
  }

  /* Right content */
  .quote-content {
    max-width: 180px;
  }

  .quote-title {
    font-size: 26px;
    line-height: 1.1;
    margin-bottom: 12px;
  }

  .quote-subtitle {
    font-size: 16px;
    line-height: 1.45;
    margin-bottom: 18px;
  }

  .quote-line {
    width: 45px;
    margin-bottom: 15px;
  }

  .quote-line.small {
    margin: 15px 0;
  }

  .quote-feature {
    font-size: 13px;
    gap: 8px;
    white-space: nowrap; /* Prevent wrapping */
  }

  .quote-feature i {
    font-size: 15px;
    flex-shrink: 0;
  }

  /* Reduce Bootstrap column padding */
  .sim-bg > [class*="col-"] {
    padding-left: 15px;
    padding-right: 15px;
  }
}

@media (min-width: 992px) and (max-width: 1200px) {
  .futurepd {
    flex: 0 0 38%;
    max-width: 38%;
  }

  .comparison-section {
    flex: 0 0 37%;
    max-width: 37%;
  }

  .quote-section {
    flex: 0 0 25%;
    max-width: 25%;
  }
}

/*=====================================================
            PREMIUM WHY CHOOSE FINESSE
======================================================*/

.why-choose-wrapper {
  position: relative;
  overflow: hidden;

  background: radial-gradient(
    circle at top,
    #2d2513 0%,
    #111 45%,
    #090909 100%
  );

  border-radius: 30px;

  padding: 70px 20px;

  border: 1px solid rgba(201, 168, 76, 0.25);

  box-shadow:
    0 40px 80px rgba(0, 0, 0, 0.55),
    inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

/* Luxury glow */

.why-choose-wrapper:before {
  content: "";

  position: absolute;

  width: 650px;
  height: 650px;

  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.18),
    transparent 70%
  );

  left: -250px;
  top: -300px;

  animation: moveGlow 10s ease-in-out infinite;
}

.why-choose-wrapper:after {
  content: "";

  position: absolute;

  width: 550px;
  height: 550px;

  background: radial-gradient(
    circle,
    rgba(201, 168, 76, 0.12),
    transparent 70%
  );

  right: -220px;
  bottom: -250px;

  animation: moveGlow2 12s ease-in-out infinite;
}

@keyframes moveGlow {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(60px, 40px);
  }
  100% {
    transform: translate(0, 0);
  }
}

@keyframes moveGlow2 {
  0% {
    transform: translate(0, 0);
  }
  50% {
    transform: translate(-70px, -35px);
  }
  100% {
    transform: translate(0, 0);
  }
}

/*================================*/

.why-choose-wrapper h2 {
  position: relative;
  z-index: 2;

  font-size: 40px;

  letter-spacing: 2px;

  font-weight: 700;

  color: #fff;

  margin-bottom: 60px !important;
}

.textwarn {
  color: #d8b65a;
}

/*======================================
CARD
=======================================*/

.why-card {
  position: relative;

  overflow: hidden;

  z-index: 2;

  height: 100%;

  padding: 18px 11px;

  border-radius: 24px;

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

  backdrop-filter: blur(18px);

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

  transition: 0.55s cubic-bezier(0.19, 1, 0.22, 1);

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;
}

/* moving light */

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

  position: absolute;

  left: -130%;

  top: 0;

  width: 70%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transform: skewX(-25deg);

  transition: 1.2s;
}

.why-card:hover:before {
  left: 170%;
}

.why-card:hover {
  transform: translateY(-18px) scale(1.04);

  border-color: #c9a84c;

  box-shadow:
    0 30px 60px rgba(0, 0, 0, 0.5),
    0 0 30px rgba(201, 168, 76, 0.18);
}

/*=====================*/

.why-card img {
  width: 90px;

  height: 90px;

  object-fit: contain;

  /* margin-bottom:18px!important; */

  position: relative;

  z-index: 2;

  animation: floatIcon 4s ease-in-out infinite;

  filter: drop-shadow(0 0 12px rgba(201, 168, 76, 0.25));
}

@keyframes floatIcon {
  0% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }

  100% {
    transform: translateY(0px);
  }
}

/* golden circle */

.why-card img::before {
  display: none;
}

/*=====================*/

.why-title {
  color: #fff;

  font-size: 16px;

  font-weight: 700;

  line-height: 1.35;

  text-transform: uppercase;

  display: flex;

  align-items: center;

  justify-content: center;

  min-height: 70px;

  margin-bottom: 12px;

  letter-spacing: 0.4px;
}

.why-text {
  color: #bfbfbf;

  font-size: 15px;

  line-height: 1.7;

  display: flex;

  justify-content: center;

  align-items: flex-start;

  text-align: center;

  min-height: 72px;
}

/*=============================
Floating animation
==============================*/

.why-card:nth-child(odd) {
  animation: cardFloat 5s ease-in-out infinite;
}

.why-card:nth-child(even) {
  animation: cardFloat2 6s ease-in-out infinite;
}

@keyframes cardFloat {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-7px);
  }

  100% {
    transform: translateY(0);
  }
}

@keyframes cardFloat2 {
  0% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(6px);
  }

  100% {
    transform: translateY(0);
  }
}

/*======================
Scroll reveal
=======================*/

.why-card {
  opacity: 1;

  transform: none;
  animation:
    fadeCard 0.8s forwards,
    cardFloat 5s ease-in-out infinite;
}

.why-card:nth-child(1) {
  animation-delay: 0.1s;
}
.why-card:nth-child(2) {
  animation-delay: 0.25s;
}
.why-card:nth-child(3) {
  animation-delay: 0.4s;
}
.why-card:nth-child(4) {
  animation-delay: 0.55s;
}
.why-card:nth-child(5) {
  animation-delay: 0.7s;
}
.why-card:nth-child(6) {
  animation-delay: 0.85s;
}

@keyframes fadeCard {
  to {
    opacity: 1;

    transform: translateY(0);
  }
}

/*=======================*/

@media (max-width: 991px) {
  .why-choose-wrapper {
    padding: 50px 20px;
  }

  .why-card {
    margin-bottom: 25px;
  }
}

@media (max-width: 576px) {
  .why-choose-wrapper h2 {
    font-size: 28px;

    line-height: 1.5;
  }

  .why-card {
    padding: 16px 12px;
  }

  .why-card img {
    width: 70px;
    height: 70px;
  }

  .why-title {
    font-size: 14px;

    min-height: auto;
  }

  .why-text {
    font-size: 13px;

    min-height: auto;
  }
}

/*=========================================
        PREMIUM TREATMENT CARD HOVER
=========================================*/

.treatment-card {
  display: block;
  text-decoration: none;
  perspective: 1000px;
}

.treatment-card .card {
  position: relative;
  overflow: hidden;

  background: #1b1e22 !important;

  border: 1px solid rgba(255, 255, 255, 0.15) !important;

  border-radius: 18px;

  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);

  transform-style: preserve-3d;

  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.35);
}

/* Premium moving light */

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

  position: absolute;

  left: -140%;

  top: 0;

  width: 70%;

  height: 100%;

  background: linear-gradient(
    120deg,
    transparent,
    rgba(255, 255, 255, 0.18),
    transparent
  );

  transform: skewX(-22deg);

  transition: 1.1s;

  z-index: 5;
}

.treatment-card:hover .card::before {
  left: 170%;
}

/* Gold Glow Border */

.treatment-card .card::after {
  content: "";

  position: absolute;

  inset: 0;

  border-radius: 18px;

  border: 1px solid transparent;

  transition: 0.45s;

  pointer-events: none;
}

.treatment-card:hover .card::after {
  border-color: rgba(201, 168, 76, 0.7);

  box-shadow: 0 0 18px rgba(201, 168, 76, 0.25);
}

/* Card Hover */

.treatment-card:hover .card {
  transform: translateY(-12px) scale(1.03);

  border-color: #c9a84c !important;

  box-shadow:
    0 28px 55px rgba(0, 0, 0, 0.45),
    0 0 30px rgba(201, 168, 76, 0.18);
}

/* Image */

.treatment-card .card-img-top {
  transition: 0.6s;
}

.treatment-card:hover .card-img-top {
  transform: scale(1.08);
}

/* Heading */

.treatment-card h6 {
  transition: 0.35s;
}

.treatment-card:hover h6 {
  color: #c9a84c;
}

/* Description */

.treatment-card p {
  transition: 0.35s;
}

.treatment-card:hover p {
  color: #d7d7d7 !important;
}

/* Arrow Button */

.treatment-card button {
  transition: 0.45s;
}

.treatment-card:hover button {
  background: #c9a84c !important;

  transform: rotate(-45deg) scale(1.15);

  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.45);
}

/* Smooth animation */

.treatment-card .card,
.treatment-card img,
.treatment-card h6,
.treatment-card p,
.treatment-card button {
  transition: all 0.45s cubic-bezier(0.19, 1, 0.22, 1);
}

.whatsapp-btn {
  background: #25d366;
  color: #fff;
  border: none;
  border-radius: 14px;
  padding: 16px 28px;
  font-size: 17px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  transition: all 0.35s ease;
  box-shadow: #25d366;
}

.whatsapp-btn i {
  font-size: 24px;
  transition: transform 0.35s ease;
}

.whatsapp-btn:hover {
  background: #1e7f45;
  color: #fff;
  transform: translateY(-3px);
  box-shadow: #1e7f45;
}

.whatsapp-btn:hover i {
  transform: rotate(-10deg) scale(1.15);
}

.whatsapp-btn:focus {
  color: #fff;
  box-shadow: 0 0 0 0.25rem rgba(37, 211, 102, 0.3);
}

/* Social Media Hover Effect */
footer .social-icon {
  width: 35px;
  height: 35px;
  border: 1px solid #c9a84c;
  color: #c9a84c;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  transition: all 0.35s ease;
}

footer .social-icon:hover {
  background: #c9a84c;
  color: #111111;
  transform: translateY(-4px) scale(1.08);
  box-shadow: 0 8px 20px rgba(201, 168, 76, 0.35);
}

.btncost {
  background: #c89a4b;
  color: #fff;
  border: 1px solid #c89a4b;
  transition: all 0.3s ease;
}

.btncost:hover {
  background: #b98935;
  border-color: #b98935;
  color: #fff;
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(200, 154, 75, 0.35);
}

.btncost:hover i {
  transform: translateX(5px);
}

.btncost i {
  transition: transform 0.3s ease;
}

.treatment-card .card-body {
  padding: 16px;
}

.treatment-card h6 {
  margin-bottom: 8px;
}

.treatment-card p {
  margin-bottom: 12px;
  line-height: 1.45;
}

@media (max-width: 1400px) {
  .statssize {
    font-size: 10px !important;
  }
}


/* ======================================
   Small Laptop (1000px - 1400px)
====================================== */

@media (min-width:1000px) and (max-width:1400px){

    .treatment-card .card{
         height:auto !important;
        display:flex;
        flex-direction:column;
    }

    .treatment-card .card-img-top{
        height:130px !important;
        object-fit:cover;
    }

    .treatment-card .card-body{
       display:block !important;
        flex-direction:column;
        justify-content:flex-start;
        padding:14px;
        flex:1;
    }

    .treatment-card h6{
        font-size:13px;
        line-height:1.3;
        margin-bottom:8px;
        min-height:34px;
    }

    .treatment-card p{
        font-size:13px;
        line-height:1.35;
        color:#d7d7d7 !important;
        margin-bottom:10px;
        min-height:48px;
    }

    .treatment-card .text-end{
          margin-top:10px;
        padding-top:0;
    }

}