html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  overflow-x: hidden;
  animation: fadeIn 1s ease-in;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

/* top-bar (mobile-first) - compact by default on small screens */
.top-bar {
  display: flex;
  flex-direction: column;
  gap: 8px;
  align-items: stretch;
  padding: 10px 14px;
  background: linear-gradient(135deg, #4945f8 0%, #8886ff 100%);
  box-shadow: 0 2px 10px rgba(73, 69, 248, 0.3);
  position: relative;
  z-index: 10;
}

/* compact row visible on small screens */
.topbar-compact {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.phone-compact,
.phone-compact .number {
  color: #fff;
}
.phone-compact {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  text-decoration: none;
  font-weight: 600;
  font-size: 14px;
}
.phone-icon,
.icon {
  width: 18px;
  height: 18px;
  vertical-align: middle;
  display: inline-block;
  margin-right: 8px;
  color: currentColor;
}
.top-bar .icon {
  color: #fff;
}
.topbar-toggle {
  background: transparent;
  border: none;
  color: #fff;
  font-size: 18px;
  padding: 6px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.topbar-toggle[aria-expanded="true"] .chev {
  transform: rotate(180deg);
}

/* hide full details (address, email, opening) on small screens */
.top-bar .left-content,
.top-bar .right-content {
  display: none;
}

/* when expanded show the details stacked */
.top-bar.expanded .left-content,
.top-bar.expanded .right-content {
  display: flex;
  gap: 12px;
  align-items: center;
}
.top-bar.expanded .left-content {
  flex-direction: column;
  align-items: flex-start;
  padding: 6px 0;
}
.top-bar.expanded .right-content {
  justify-content: flex-start;
}

/* consistent colour & spacing for items inside top-bar */
.top-bar .address,
.top-bar .phone-number,
.top-bar .email-address a,
.top-bar .opening-days,
.top-bar .opening-hours {
  color: #ffffff;
  font-size: 14px;
}
.top-bar .phone-number .phone-link {
  color: #fff;
  text-decoration: none;
}

/* Desktop: show full top-bar inline and hide compact controls */
@media (min-width: 768px) {
  .top-bar {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 10px 50px;
  }
  .top-bar .left-content {
    justify-content: flex-start;
  }
  .topbar-compact {
    display: none;
  }
  .top-bar .left-content,
  .top-bar .right-content {
    display: flex !important;
    align-items: center;
    gap: 12px;
  }
  .top-bar .left-content {
    flex: 1;
  }
  .top-bar .right-content {
    justify-content: flex-end;
  }
}

/* small visual cue for clickable phone on very small screens */
@media (max-width: 420px) {
  .phone-compact .number {
    display: none;
  } /* show only icon to save space */
  .phone-compact {
    padding-right: 8px;
  }
}

.left-content,
.right-content {
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone-number,
.email-address a,
.opening-days,
.opening-hours {
  margin-right: 15px;
  font-size: 14px;
  color: #ffffff;
  text-decoration: none;
}

/* mobile-first header styles */
.bottom-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px; /* compact on mobile */
  background-color: #f9f9f9;
  position: relative;
  gap: 12px;
}

header .bottom-nav {
  padding: 20px;
}

/* hamburger button (visible on mobile) */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 36px;
  background: transparent;
  border: none;
  cursor: pointer;
  z-index: 30;
}
.menu-toggle .icon {
  width: 22px;
  height: 22px;
  color: #333;
  transition: transform 0.2s ease;
}
.menu-toggle.open .icon {
  transform: rotate(90deg);
}

/* mobile nav: hidden by default, shows when .open */
.nav-links {
  display: none;
  flex-direction: column;
  gap: 8px;
  padding: 12px 16px;
  background: white;
  position: absolute;
  left: 0;
  right: 0;
  top: 100%;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
  z-index: 20;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
}
.nav-links.open {
  display: flex;
}

/* hide large CTA on small screens (we show a mobile CTA inside the nav) */
.right-content .book-now {
  display: none;
}
.nav-links a.book-mobile {
  display: inline-block;
  padding: 10px 14px;
  border-radius: 20px;
  background: linear-gradient(135deg, #4945f8, #8886ff);
  color: #fff;
  font-weight: 600;
  text-align: center;
}

/* Desktop / larger screens: show full nav and CTA */
@media (min-width: 768px) {
  .bottom-nav {
    padding: 50px 20px;
  }
  .menu-toggle {
    display: none;
  }
  .nav-links {
    display: flex !important;
    position: static;
    flex-direction: row;
    gap: 20px;
    background: transparent;
    box-shadow: none;
    padding: 0;
    border: 0;
  }
  .right-content .book-now {
    display: block;
  }
  .nav-links a.book-mobile {
    display: none;
  }
}

.web-log img {
  width: auto;
  margin: 0 40px;
  height: 40px;
}

.right-content .nav-links a {
  margin-right: 20px;
  text-decoration: none;
  color: #333333;
  font-size: 16px;
  font-weight: 500;
  transition: all 0.3s ease;
  position: relative;
}

.right-content .nav-links a::after {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: linear-gradient(to right, #4945f8, #8886ff);
  transition: width 0.3s ease;
}

.right-content .nav-links a:hover::after {
  width: 100%;
}

.right-content .book-now .btn {
  padding: 12px 25px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  color: #4945f8;
  text-decoration: none;
  border-radius: 25px;
  font-weight: 600;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

.right-content .book-now .btn:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
  color: #333;
}

.hero-section {
  position: relative;
  height: 80vh;
  overflow: hidden;
}

.slider {
  display: flex;
  height: 100%;
  width: 300%;
  /* 3 slides */
  transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide {
  flex: 1;
  background-size: cover;
  background-position: center center;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  color: white;
  text-align: left;
  position: relative;
  padding: 50px;
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s ease;
  width: -webkit-fill-available;
  margin: 0 auto;
}

.slide.active {
  opacity: 1;
  transform: translateY(0);
}

.slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(45deg, #4945f8db, #8785ff3d);
  z-index: 1;
  animation: gradientShift 8s ease-in-out infinite;
}

@keyframes gradientShift {
  0%,
  100% {
    background: linear-gradient(45deg, #4945f8db, #8785ff3d);
  }

  50% {
    background: linear-gradient(45deg, #8885ffdb, #4945f83d);
  }
}

.slide .hero-content {
  position: relative;
  z-index: 3;
  padding-left: 20px;
  max-width: 100%;
}

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  z-index: 4;
  background: rgba(0, 0, 0, 0.2);
  padding: 10px 20px;
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.4);
  margin: 0 6px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.dot:hover {
  background: rgba(255, 255, 255, 0.7);
  transform: scale(1.2);
}

.dot.active {
  background: white;
  transform: scale(1.3);
  box-shadow: 0 0 15px rgba(255, 255, 255, 0.5);
}

.hero-content h1 {
  font-size: 3.5em;
  margin-bottom: 20px;
  color: #ffffff;
  font-weight: 700;
  line-height: 1.1;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.3);
}

.hero-content p {
  font-size: 1.3em;
  margin-bottom: 30px;
  opacity: 0.9;
  font-weight: 300;
  line-height: 1.4;
  max-width: 500px;
}

.cta-button {
  display: inline-block;
  padding: 15px 30px;
  background: linear-gradient(
    135deg,
    #ffffff 0%,
    rgba(255, 255, 255, 0.9) 100%
  );
  color: #4945f8;
  text-decoration: none;
  border-radius: 50px;
  font-weight: 600;
  font-size: 1em;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  border: 2px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
  backdrop-filter: blur(10px);
}

.cta-button:hover {
  background: white;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.3);
  color: #333;
}

.recovery-section {
  padding: 50px;
  width: -webkit-fill-available;
  max-width: 1600px;
  margin: 0 auto;
}

.middle-heading h1 {
  max-width: 800px;
  margin: 0 auto;
  text-align: center;
  font-size: 2.5em;
  line-height: 1.3;
}

.gradient-span {
  background: linear-gradient(to right, #4945f8, #8886ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.middle-heading p {
  max-width: 1400px;
  margin: 20px auto;
  text-align: center;
  font-size: 1.1em;
  line-height: 1.6;
}

.grid-section {
  /* max-width: 1400px; */
  /* margin: 0 auto; */
  display: grid;
  grid-template-columns: 1fr 1fr;
  padding: 50px 0;
}

.image-frame {
  position: relative;
}

.big-boximg {
  width: 100%;
  height: auto;
}

.big-boximg img {
  max-width: 400px;
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intersect-smallbox {
  position: absolute;
  top: 50%;
  left: 50%;
  max-width: 250px;
  width: 100%;
  height: auto;
  background: #8886ff;
  border: 5px solid #ffffff;
  border-radius: 10px;
  transform: translate(-20%, -10%);
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.intersect-smallbox img {
  width: 100%;
  height: auto;
  border-radius: 10px;
  transform: scaleX(-1);
}

.text-content h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
  line-height: 1.3;
}

.text-content p {
  font-size: 1.2em;
  line-height: 1.6;
}

.advance-thermal {
  padding: 50px;
  max-width: 1100px;
  margin: 0 auto;
  width: -webkit-fill-available;
}

.center-heading {
  text-align: center;
  width: 100%;
  font-size: 2.5em;
  margin-bottom: 40px;
}

.grid-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(300px, 1fr));
  gap: 20px;
  justify-content: center;
  align-items: stretch;
}

.grid-cards .card {
  background-color: #f9f9f9;
  border-radius: 10px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
}

.grid-cards .card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(73, 69, 248, 0.05) 0%,
    rgba(136, 134, 255, 0.05) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: 1;
}

.grid-cards .card:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.grid-cards .card:hover::before {
  opacity: 1;
}

.card .full-width img {
  width: 100%;
  height: 250px;
  object-fit: cover;
  object-position: center;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.grid-cards .card:hover .full-width img {
  transform: scale(1.05);
}

.card-content {
  padding: 20px;
  flex: 1;
  display: flex;
  flex-direction: column;
  position: relative;
  z-index: 2;
}

.card-content h1 {
  color: #4945f8;
  font-size: 1.5em;
  margin-bottom: 15px;
  transition: color 0.3s ease;
  line-height: 1.3;
  margin: 0;
}

.grid-cards .card:hover .card-content h1 {
  color: #333;
}

.card-content p {
  font-size: 1em;
  line-height: 1.5;
  margin-bottom: 20px;
  transition: color 0.3s ease;
}

.grid-cards .card:hover .card-content p {
  color: #666;
}

.link-button {
  align-self: flex-start;
  color: #4945f8;
  text-decoration: none;
  border-radius: 5px;
  cursor: pointer;
  font-weight: bold;
  padding: 8px 16px;
  border: 2px solid transparent;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  overflow: hidden;
}

.link-button::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(73, 69, 248, 0.1),
    transparent
  );
  transition: left 0.5s ease;
}

.link-button:hover::before {
  left: 100%;
}

.link-button:hover {
  background-color: #4945f8;
  color: white;
  transform: translateX(4px);
}

.view-more {
  text-align: center;
  margin-top: 50px;
}

.view-more .link-button {
  padding: 10px 20px;
  background-color: #4945f8;
  color: #ffffff;
  text-decoration: none;
  border-radius: 5px;
}

.key-benifits {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.key-benifits .center-heading {
  font-size: 1.5em;
  margin-bottom: 20px;
}

.ulgrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 0 auto;
}

.ulgrid .multiple-columns {
  padding: 20px;
  border-radius: 10px;
  text-align: center;
  font-size: 1em;
  color: #5f5df0;
  line-height: 1.5;
  position: relative;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  background: #fff;
  backdrop-filter: blur(10px);
  border: none;
}

.ulgrid .multiple-columns:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 25px rgba(95, 93, 240, 0.15);
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.9) 0%,
    rgba(255, 255, 255, 0.8) 100%
  );
  color: #4945f8;
}
.ulgrid .multiple-columns strong {
  margin: 10px 0;
  display: inline-block;
  font-size: 20px;
}

.ulgrid .multiple-columns:hover::before {
  color: #4945f8;
  transform: translateY(-50%) scale(1.2);
}

.marquee-section {
  background-color: #4945f8;
  overflow: hidden;
  white-space: nowrap;
  padding: 10px 0;
}

.marquee {
  display: inline-block;
  animation: marquee 10s linear infinite;
}

.marquee img {
  height: 30px;
  margin: 0 20px;
  filter: invert(1);
}

.marquee .star {
  font-size: 24px;
  color: #ffffff;
  margin: 0 10px;
}

@keyframes marquee {
  0% {
    transform: translateX(100%);
  }

  100% {
    transform: translateX(-100%);
  }
}

.technology-power {
  padding: 50px 20px;
  background-color: #f9f9f9;
}

.technology-power .content {
  max-width: 1400px;
  margin: 0 auto;
  text-align: center;
}

.technology-power .content h1 {
  width: 100%;
  font-size: 2.5em;
  margin-bottom: 20px;
}

.technology-power .content p {
  font-size: 1.2em;
  line-height: 1.6;
}

.technology-power .content h2 {
  font-size: 2em;
  margin-top: 40px;
}

.technology-power .full-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1400px;
  margin: 40px auto 0 auto;
}

.technology-power .full-grid .blur-imgbox {
  overflow: hidden;
  border-radius: 0;
}

.technology-power .full-grid .blur-imgbox img {
  width: 100%;
  height: 300px;
  filter: blur(5px);
  object-fit: cover;
  transition:
    transform 0.3s ease,
    filter 0.3s ease;
}

.blur-imgbox img:hover {
  filter: blur(0);
  transform: scale(1.05);
}

.bottom-section {
  max-width: 1400px;
  margin: 0 auto;
  padding: 50px 20px;
  text-align: center;
}

.bottom-section h1 {
  font-size: 2.5em;
  margin-bottom: 20px;
}

.bottom-section p {
  font-size: 1.2em;
  margin-bottom: 10px;
}

.flex-row {
  display: flex;
  justify-content: center;
  gap: 20px;
  margin-top: 30px;
}

.flex-row .col-item {
  background-color: #4945f8;
  color: #ffffff;
  padding: 15px 30px;
  border-radius: 5px;
  font-size: 1em;
  display: flex;
  text-align: center;
  gap: 10px;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.flex-row .col-item::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s ease;
}

.flex-row .col-item:hover::before {
  left: 100%;
}

.flex-row .col-item:hover {
  transform: translateY(-3px);
  box-shadow: 0 8px 20px rgba(73, 69, 248, 0.3);
  background-color: #333;
}

.cta-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #5f5df0;
  position: relative;
}

.cta-section::after {
  content: "";
  position: absolute;
  top: 0;
  left: -20px;
  width: 50%;
  height: 100%;
  background: url("../images/recovery2.png") no-repeat center center;
  background-size: cover;
  opacity: 0.1;
  border-radius: 10px;
  z-index: 1;
}

.cta-section .content-center {
  width: 40%;
  color: #ffffff;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-section .content-center h1 {
  font-size: 2.5em;
  text-align: center;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.cta-section .right-flex-end {
  width: 40%;
}

.cta-section .right-flex-end img {
  width: 100%;
  max-height: 300px;
  object-fit: cover;
  border-radius: 10px;
}

.news-letter {
  font-family: "Inter", sans-serif;
  background-color: #fdfdfd;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
  padding: 24px;
  overflow-x: hidden;
  position: relative;
}

/* Ambient Glow Background */
.ambient-glow {
  position: absolute;
  top: 10%;
  left: -10%;
  width: 40vw;
  height: 40vw;
  background: radial-gradient(
    circle,
    rgba(124, 124, 252, 0.15) 0%,
    rgba(255, 255, 255, 0) 70%
  );
  filter: blur(60px);
  z-index: -1;
  animation: glowPulse 4s ease-in-out infinite alternate;
}

@keyframes glowPulse {
  from {
    opacity: 0.8;
    transform: scale(1);
  }

  to {
    opacity: 1;
    transform: scale(1.1);
  }
}

.newsletter-card {
  width: 100%;
  border-radius: 40px;
  padding: 40px;
  box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
  text-align: center;
  color: white;
}

/* Operating Hours Card */
.hours-card {
  background-color: #636363 !important;
}

.hours-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 48px;
  letter-spacing: 0.025em;
}

.hours-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}

.day-group {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.day-label {
  color: #d1d5db;
  font-size: 14px;
  font-weight: 300;
}

.time-label {
  font-size: 20px;
  font-weight: 500;
}

.newsletter-container {
  width: 100%;
  max-width: 1024px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

/* Newsletter Card */
.newsletter-card {
  background-color: #7c7cfc;
}

.newsletter-title {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 12px;
}

.newsletter-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: #eff6ff;
  margin-bottom: 40px;
}

/* Form Styling */
.form-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
  max-width: 670px;
  margin: 0 auto;
}

.email-input {
  width: 100%;
  padding: 16px 24px;
  border-radius: 16px;
  background-color: rgba(255, 255, 255, 0.2);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: white;
  font-size: 14px;
  outline: none;
  transition: all 0.2s;
}

.email-input::placeholder {
  color: rgba(255, 255, 255, 0.7);
}

.email-input:focus {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.3);
}

.subscribe-btn {
  padding: 16px 40px;
  border-radius: 16px;
  background-color: white;
  color: #7c7cfc;
  border: none;
  font-weight: 500;
  font-size: 14px;
  cursor: pointer;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
  transition: all 0.2s;
}

.subscribe-btn:hover {
  background-color: rgba(255, 255, 255, 0.9);
}

.subscribe-btn:active {
  transform: scale(0.96);
}

.feedback-msg {
  margin-top: 16px;
  font-size: 12px;
  color: #dbeafe;
  opacity: 0;
  transition: opacity 0.3s;
}

/* --- Modern Footer Styles --- */
footer.modern-footer {
  background: url("../images/footer-bg.jpeg");
  background-position: center center;
  background-size: cover;
  background-repeat: no-repeat;
  position: relative;
  z-index: 0;
  width: -webkit-fill-available;
}
.modern-footer {
  border-top: 3px solid #7c7cfc;
  margin-top: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #fff;
}
footer.modern-footer::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  backdrop-filter: blur(6px);
  z-index: -1;
  background: #00000061;
}

.footer-container {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  justify-content: space-around;
  padding: 30px 50px;
}

.footer-logo {
  width: 200px;
  margin-bottom: 0;
}

.footer-desc {
  font-size: 15px;
  color: #fff;
  margin-bottom: 0;
}
p.footer-desc a:hover {
  color: #6363f7 !important;
}

p.footer-desc a {
  transition: all 0.3s ease-in-out;
  color: #fff;
  text-decoration: none;
}

.footer-links h4,
.footer-features h4 {
  color: #fff;
  font-size: 18px;
  margin-bottom: 18px;
  font-weight: 600;
}

.footer-links ul,
.footer-features ul {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  gap: 5px;
  margin: 0;
}

.footer-links ul li {
  font-size: 15px;
}

.footer-links ul li a {
  color: #fff;
  text-decoration: none;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 500;
  position: relative;
}

.footer-links ul li a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -2px;
  left: 0;
  background: linear-gradient(to right, #6363f7, #7c7cfc);
  transition: width 0.3s ease;
}

.footer-links ul li a:hover::before {
  width: 100%;
}

.footer-links ul li a:hover {
  color: #4945f8;
  transform: translateX(4px);
}
span.footer-icon svg {
  width: 18px;
  height: 18px;
}
.footer-features .footer-icon {
  margin-right: 6px;
  transition: all 0.3s ease;
  display: inline-block;
}

.footer-features ul li:hover .footer-icon {
  transform: scale(1.2) rotate(5deg);
  color: #4945f8;
}

.footer-features ul li {
  font-size: 14px;
  transition: all 0.3s ease;
  cursor: pointer;
}
.footer-features ul li {
  display: flex;
  align-items: center;
}

.footer-features ul li:hover {
  transform: translateX(8px);
  color: #4945f8;
}

.footer-features .footer-sub {
  color: #888;
  font-size: 12px;
}

.footer-bottom {
  background: linear-gradient(90deg, #6363f7 0%, #7c7cfc 100%);
  color: #fff;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  padding: 16px 24px;
  font-size: 15px;
  border-radius: 0;
}

.footer-policy-links {
  display: flex;
  gap: 24px;
}

.footer-policy-links a {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  transition:
    text-decoration 0.2s,
    color 0.2s;
}

.footer-policy-links a:hover {
  text-decoration: underline;
  color: #e0e7ff;
}

@media (max-width: 900px) {
  .footer-container {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
  }

  .footer-links,
  .footer-features {
    margin-top: 24px;
  }
}

/* Scroll animations */
.animate-on-scroll {
  opacity: 0;
  transform: translateY(30px);
  transition: all 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.animate-on-scroll.animate {
  opacity: 1;
  transform: translateY(0);
}

/* Pulse animation for CTA elements */
@keyframes pulse {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.05);
  }

  100% {
    transform: scale(1);
  }
}

.pulse-on-hover:hover {
  animation: pulse 0.6s ease-in-out;
}

/* Floating animation */
@keyframes float {
  0%,
  100% {
    transform: translateY(0px);
  }

  50% {
    transform: translateY(-10px);
  }
}

.float {
  animation: float 3s ease-in-out infinite;
}

/* Ripple effect for buttons */
.ripple {
  position: relative;
  overflow: hidden;
}

.ripple::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  transform: translate(-50%, -50%);
  transition:
    width 0.6s,
    height 0.6s;
}

.ripple:active::after {
  width: 300px;
  height: 300px;
}

/* Loading animation */
.loading-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(135deg, #4945f8 0%, #8886ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  animation: fadeOutLoading 1s ease-in-out 2s forwards;
}

.loading-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 30px;
  animation: bounceIn 0.8s ease-out;
}

.loading-logo {
  width: 200px;
  height: auto;
  filter: brightness(0) invert(1);
  animation: logoPulse 2s ease-in-out infinite;
}

.loading-spinner {
  width: 50px;
  height: 50px;
  border: 3px solid rgba(255, 255, 255, 0.3);
  border-top: 3px solid white;
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes bounceIn {
  0% {
    transform: scale(0.3);
    opacity: 0;
  }

  50% {
    transform: scale(1.05);
  }

  70% {
    transform: scale(0.9);
  }

  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@keyframes logoPulse {
  0%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.1);
  }
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

@keyframes fadeOutLoading {
  to {
    opacity: 0;
    visibility: hidden;
  }
}

/* WHAT MAKES THIS DIFFERENT */

.section {
  max-width: 1600px;
  /* margin: 0 auto; */
  /* box-shadow: 0 20px 35px -8px rgba(0, 0, 0, 0.08), 0 8px 16px -6px rgba(0, 0, 0, 0.02); */
  /* padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem); */
  color: #0a1e2f;
  transition: all 0.2s ease;
  /* margin: 30px auto; */
  width: -webkit-fill-available;
  padding: 70px 50px 50px;
  margin: 0 auto;
}

.section__subhead {
  color: #333;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 22px;
  text-align: center;
}

/* flex container for left highlight + right list */
.section__divider {
  /* margin: 1.5rem 0 1rem; */
}

.tagline-block {
  /* flex: 1 1 240px; */
  /* min-width: 240px; */
}

.tagline-block p {
  font-size: clamp(0.95rem, 3.5vw, 1.125rem);
  color: #2c3e4f;
  margin-bottom: 0;
  line-height: 1.5;
}

.highlight {
  /* background: #f0f4f9; */
  /* padding: clamp(1.2rem, 4vw, 1.8rem); */
  border-radius: 10px;
  color: #0f2b3d;
}

.highlight .intro {
  font-size: clamp(1.1rem, 4vw, 1.25rem);
  font-weight: 500;
  margin-bottom: 0.75rem;
  color: #1e3b4f;
  margin-top: 0;
}

.highlight .clinic-note {
  font-size: 18px;
  line-height: normal;
  color: #2d4b61;
  margin-top: 7px;
  text-align: center;
  text-transform: capitalize;
}

.highlight strong {
  color: #4945f8;
  font-weight: 600;
}

.services-list .lead {
  font-size: clamp(1rem, 3.5vw, 1.1rem);
  font-weight: 500;
  color: #1e3b4f;
  margin-bottom: 1rem;
}

ul.grid-list {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: center;
  margin: 0;
  padding: 0;
  margin: 70px 0 0;
}

ul.grid-list li {
  list-style: none;
  width: 24%;
  background: #fff;
  text-align: center;
  border-radius: 20px;
  overflow: hidden;
  /* border: 2px solid #4960f8; */
  box-shadow: 0 0 10px 1px #0000002c;
  transition: all 0.3s ease-in-out;
}
ul.grid-list li:hover {
  transform: translateY(-10px);
  box-shadow: 0 10px 10px 1px #0000002c;
}
ul.grid-list li .card-img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.outro {
  background: #eaf0f6;
  border-radius: 10px;
  padding: clamp(1rem, 3vw, 1.3rem) clamp(1.5rem, 4vw, 2rem);
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  font-weight: 450;
  color: #0e2637;
  display: inline-block;
  line-height: 1.4;
}

.outro span {
  font-weight: 600;
  color: #0a1e2f;
}
/* header */
.section__heading {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  color: #333;
  margin: 0;
  /* padding-bottom: 0.5rem; */
  text-align: center;
}

/* timeline / card grid */
.complement-grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  gap: clamp(1.2rem, 3vw, 2rem);
  margin: 2rem 0 2.5rem 0;
  justify-content: center;
}

.complement-card {
  background: #fff;
  border-radius: 28px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.02);
  transition: transform 0.15s ease;
  border: 1px solid #edf2f7;
  width: 24%;
  overflow: hidden;
  box-shadow: 0 0 10px 1px #0000002c;
}

.complement-card:hover {
  transform: translateY(-3px);
  border-color: #d6e0eb;
}

.complement-card img {
  width: 100%;
  height: 250px;
  object-fit: cover;
}

.complement-content {
  padding: 10px 20px 30px;
}

.card-label {
  font-size: clamp(0.9rem, 2.5vw, 1rem);
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 600;
  color: #4945f8;
  margin-bottom: 0.75rem;
}

.card-title {
  font-size: clamp(1.3rem, 4vw, 1.7rem);
  font-weight: 600;
  line-height: 1.2;
  color: #0f2b3d;
  margin-bottom: 1rem;
}

.card-desc {
  font-size: 15px;
  color: #2d4b61;
  line-height: 1.5;
}

/* enhancement + disclaimer area */
.enhance-block {
  background: #eaf0f6;
  border-radius: 10px;
  padding: 20px 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  margin: 0 auto;
  width: 72%;
}

.enhance-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.1rem, 3.8vw, 1.3rem);
  font-weight: 500;
  color: #1e3b4f;
}

.enhance-left span {
  font-size: 1.8rem;
  line-height: 1;
}

.enhance-right {
  display: flex;
  flex-wrap: wrap;
  align-items: baseline;
  gap: 0.5rem 1.8rem;
  font-size: clamp(1rem, 3.5vw, 1.15rem);
}

.disclaimer-item {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  color: #1f3b4c;
}

.disclaimer-item strong {
  font-weight: 600;
  color: #0a1e2f;
}

.disclaimer-item .accent {
  color: #4945f8;
  font-weight: 600;
  margin-right: 4px;
}

.pill-note {
  background: #ffffffd9;
  padding: 0.3rem 1.2rem;
  border-radius: 40px;
  font-size: 0.95rem;
  color: #2c3e4f;
  border: 1px solid #cddae6;
  white-space: nowrap;
}
/* two column layout on larger screens, stacked on mobile */
.who-its-bg {
  background: radial-gradient(#3b36ff, #7c7cfc03);
  background-size: contain;
  background-position: center center;
  background-repeat: no-repeat;
  background-blend-mode: overlay;
  position: relative;
  z-index: 0;
  padding: 37px 8rem;
  margin: 0 auto;
  color: #0a1e2f;
  transition: all 0.2s ease;
  width: -webkit-fill-available;
}
.who-its-bg::before {
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  backdrop-filter: blur(2px);
  z-index: -1;
  /* background: #ffffff5e; */
}
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 3rem;
  /* margin: 0 0 2.8rem 0; */
  align-items: flex-start;
}

.checklist-col {
  flex: 1 1 260px;
  min-width: 240px;
}

.checklist {
  list-style: none;
  padding: 0;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.05rem, 3.8vw, 1.2rem);
  padding: 10px 0 15px;
  color: #000;
  border-bottom: 1px dashed #000;
  line-height: 1.4;
  text-transform: capitalize;
  font-weight: 500;
  width: 70%;
}

.checklist li:last-child {
  border-bottom: none;
}

.checklist li::before {
  content: "✔";
  color: #4945f8;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  width: 1.5rem;
  display: inline-block;
}

/* right side visual / emphasis block */
.performance-col {
  display: table-column;
  background: #ffffff;
  text-align: center;
  flex: 1;
  max-width: 50%;
  padding-bottom: 20px;
  height: auto;
  margin: 40px 0 0;
  border-radius: 11px;
  overflow: hidden;
  transform: rotate(10deg) translateY(32px);
  z-index: 2;
  box-shadow: var(--shadow-lg);
}
.performance-col img {
  width: 350px;
  object-fit: contain;
}

.performance-col p {
  font-size: clamp(1.1rem, 3.8vw, 1.3rem);
  font-weight: 500;
  color: #000;
  /* margin-bottom: 1rem; */
  line-height: 1.4;
  margin: 0;
  text-transform: capitalize;
}

.performance-highlight {
  font-size: clamp(1.8rem, 6vw, 2.4rem);
  font-weight: 700;
  line-height: 1.1;
  color: #0a1e2f;
  margin: 0.5rem 0;
}

.performance-highlight span {
  color: #4945f8;
  display: inline-block;
  /* border-bottom: 3px solid #4945f8; */
  /* padding-bottom: 0.2rem; */
}
.audience-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  align-items: anchor-center;
}
.checklist-col {
  width: 50% !important;
}

.micro-note {
  font-size: 0.95rem;
  color: #000;
  margin-top: 1rem;
  font-style: italic;
  text-transform: capitalize;
}

/* bottom statement "Recovery is performance." – prominent */
.closing-statement {
  background: white;
  border-radius: 10px;
  padding: 15px 35px;
  font-size: 20px;
  font-weight: 600;
  color: #000;
  display: inline-flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  margin: 1.2rem 0;
  border: 0;
  letter-spacing: -0.01em;
}

.closing-statement a {
  background: #4945f8;
  color: white;
  padding: 7px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px !important;
  white-space: nowrap;
  border: 1px solid #4945f8;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.closing-statement a:hover {
  background: #000;
  border-color: #fff;
}
.lightning {
  font-size: 2rem;
  line-height: 1;
}
.exclusivity-section {
  max-width: 1400px;
  margin: 0 auto;
  background: #f9f9f9;
  border-radius: 2rem;
  box-shadow:
    0 20px 35px -8px rgba(0, 0, 0, 0.08),
    0 8px 16px -6px rgba(0, 0, 0, 0.02);
  padding: clamp(2rem, 6vw, 3.5rem) clamp(1.5rem, 5vw, 3rem);
  transition: all 0.2s ease;
  color: #0a1e2f;
}

.exclusivity-section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  border-bottom: 2px solid #e3e9f0;
  padding-bottom: 0.5rem;
}

.exclusive-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin: 2rem 0 1rem;
  align-items: center;
}

.badge-column {
  flex: 1 1 200px;
  min-width: 180px;
}

.badge {
  background: #f0f4f9;
  border-radius: 2rem;
  padding: 1.8rem 1.5rem;
  text-align: center;
  border: 1px solid #d9e3ef;
}

.badge-icon {
  font-size: 3rem;
  line-height: 1;
  margin-bottom: 0.75rem;
}

.badge-title {
  font-size: 1.4rem;
  font-weight: 700;
  color: #0f2b3d;
  margin-bottom: 0.3rem;
}

.badge-sub {
  font-size: 1rem;
  color: #4945f8;
  font-weight: 500;
  letter-spacing: 0.3px;
}

.content-column {
  flex: 2 1 380px;
  min-width: 260px;
}
.content-column {
  margin: 30px 0 0;
}

.exclusive-highlight {
  font-size: clamp(1.2rem, 4vw, 1.6rem);
  font-weight: 600;
  color: #0a1e2f;
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.exclusive-highlight span {
  background: #4945f8;
  padding: 10px 20px;
  border-radius: 60px;
  display: inline-block;
  text-transform: capitalize;
  color: #fff;
}

.exclusive-desc {
  font-size: clamp(1rem, 3.5vw, 1.15rem);
  color: #2d4b61;
  line-height: 1.6;
  margin-bottom: 1.2rem;
}

.radius-marker {
  display: inline-flex;
  align-items: center;
  background: #f5f8fc;
  border-radius: 40px;
  padding: 0.5rem 1.5rem 0.5rem 1.2rem;
  gap: 0.5rem;
  border: 1px solid #cbdae7;
  font-weight: 500;
  color: #1f3b4c;
  margin: 0.5rem 0 1rem;
  flex-wrap: wrap;
}

.radius-marker strong {
  font-size: 1.2rem;
  color: #4945f8;
  margin-right: 0.2rem;
}

.tech-statement {
  background: #eaf0f6;
  border-radius: 60px;
  padding: 1.2rem 1.8rem;
  font-size: clamp(1rem, 3.8vw, 1.2rem);
  color: #0e2637;
  display: inline-block;
  width: auto;
  max-width: 100%;
  line-height: 1.5;
  margin-top: 1.8rem;
  border: 1px solid #d0ddee;
}

.tech-statement strong {
  font-weight: 700;
  color: #0a1e2f;
  border-bottom: 2px solid #4945f8;
}

.section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}
.offer-cta {
  background: radial-gradient(#3b36ff, #7c7cfc03);
  padding: 70px 50px !important;
}
.offer-cta h2 {
  color: #000;
  margin: 0;
}

.offer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 5rem;
  margin: 2rem 0 1.8rem;
  align-items: center;
}

.offer-badge {
  flex: 1 1 220px;
  min-width: 200px;
}

.promo-card {
  background: #ffffff;
  border-radius: 10px;
  padding: 50px;
  text-align: center;
  border: 1px solid #d9e3ef;
}

.promo-icon {
  font-size: 3.2rem;
  line-height: 1;
  margin-bottom: 0.5rem;
}

.promo-title {
  font-size: 28px;
  font-weight: 700;
  color: #000000;
  margin-bottom: 0.25rem;
  text-transform: uppercase;
}

.promo-sub {
  font-size: 20px;
  color: #4945f8;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-family: inherit;
}

.promo-highlight {
  background: #4945f8;
  border-radius: 5px;
  padding: 0.6rem 1.2rem;
  margin-top: 1rem;
  font-weight: 600;
  color: #fff;
  border: 1px solid #4945f8;
  font-size: 18px;
  display: inline-block;
  text-decoration: none;
  width: -webkit-fill-available;
  transition: all 0.3s ease-in-out;
}
.promo-highlight:hover {
  background: #000;
  border-color: #000;
}

.offer-details {
  flex: 2 1 400px;
  min-width: 260px;
}

.offer-intro {
  font-size: clamp(1.2rem, 4.5vw, 1.7rem);
  font-weight: 600;
  line-height: 1.3;
  margin-bottom: 1.2rem;
}

.offer-intro span {
  background: #4945f8;
  padding: 10px 20px;
  border-radius: 10px;
  display: inline-block;
  text-transform: capitalize;
  color: #fff;
}

.service-list-compact {
  list-style: none;
  margin: 1.5rem 0;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(170px, 1fr));
  gap: 0.5rem 1rem;
  padding: 0;
}

.service-list-compact li {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 18px;
  color: #ffffff;
  padding: 0.3rem 0;
  /* border-bottom: 1px dashed #dee6ef; */
  font-weight: 600;
}

.service-list-compact li::before {
  content: "●";
  color: #ffffff;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 0;
  flex-shrink: 0;
}

.offer-cta-block {
  background: #ffffff;
  border-radius: 10px;
  padding: 20px 40px;
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  /* gap: 1rem 2rem; */
}

.offer-cta-left {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  font-size: 1.3rem;
  font-weight: 500;
  text-transform: capitalize;
}

.offer-cta-left span {
  font-size: 2rem;
}

.offer-cta-right {
  background: #4945f8;
  color: white;
  padding: 10px 20px;
  border-radius: 5px;
  font-weight: 500;
  font-size: 16px;
  white-space: nowrap;
  border: 1px solid #4945f8;
  text-transform: capitalize;
  text-decoration: none;
  transition: all 0.3s ease-in-out;
}
.offer-cta-right:hover {
  background: #000;
  border-color: #000;
}

.fine-print {
  font-size: 0.95rem;
  color: #546e7a;
  margin-top: 1rem;
  padding-left: 0.5rem;
  border-left: 3px solid #4945f8;
}
.section h2 {
  font-size: clamp(1.8rem, 5vw, 2.5rem);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: -0.02em;
  margin-bottom: 1.5rem;
  padding-bottom: 0.5rem;
}

.trust-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem 2.5rem;
  margin: 2rem 0 2rem;
  align-items: flex-start;
}

.trust-list-col {
  flex: 1 1 280px;
  min-width: 260px;
}

.trust-badge-col {
  flex: 1 1 220px;
  background: #f0f4f9;
  border-radius: 2rem;
  padding: 2rem 1.8rem;
  border: 1px solid #d9e3ef;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.trust-list {
  list-style: none;
  padding: 0;
}

.trust-list li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: clamp(1.05rem, 3.8vw, 1.2rem);
  padding: 0.7rem 0;
  color: #1a2c3b;
  border-bottom: 1px dashed #dee6ef;
}

.trust-list li:last-child {
  border-bottom: none;
}

.trust-list li::before {
  content: "✔";
  color: #4945f8;
  font-weight: 700;
  font-size: 1.3rem;
  line-height: 1;
  flex-shrink: 0;
  width: 1.5rem;
  display: inline-block;
}

.redefining-quote {
  font-size: 1.3rem;
  font-weight: 500;
  line-height: 1.4;
  color: #0f2b3d;
  margin-bottom: 1rem;
}

.redefining-quote span {
  background: #eaf0f6;
  display: inline;
}

.clinic-signature {
  font-size: 1.1rem;
  color: #2d4b61;
  margin-top: 0.8rem;
  font-style: italic;
}

/* FINAL CTA BLOCK */
.final-cta-section {
  padding-top: 10px;
  background: #fff;
}
.final-cta {
  background: #4945f8;
  color: white;
  border-radius: 2.5rem;
  padding: 2.5rem 2rem;
  margin-top: 2.5rem;
  text-align: center;
  background-image: radial-gradient(circle at 10% 30%, #7c7cfc 0%, #4945f8 90%);
}

.final-cta h3 {
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  margin-bottom: 0.8rem;
  letter-spacing: -0.01em;
}

.final-cta .availability {
  font-size: 1.2rem;
  color: #fff;
  font-weight: 500;
  margin-bottom: 2rem;
  border-bottom: 1px solid #ffffff47;
  padding-bottom: 1rem;
  display: inline-block;
  text-transform: capitalize;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

.btn-primary {
  background: transparent;
  color: #fff;
  border: none;
  padding: 1rem 2.5rem;
  border-radius: 60px;
  font-weight: 600;
  font-size: 1.2rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.2);
  border: 2px solid #fff;
  backdrop-filter: blur(4px);
}

.btn-primary:hover {
  background: #000;
}

.btn-secondary {
  background: transparent;
  color: white;
  border: 2px solid #fff;
  padding: 1rem 2.2rem;
  border-radius: 60px;
  font-weight: 500;
  font-size: 1.1rem;
  cursor: pointer;
  transition: 0.3s ease-in-out;
  backdrop-filter: blur(4px);
}

.btn-secondary:hover {
  background: #ffffff1a;
  border-color: #000;
  color: #000;
}

.cta-note {
  font-size: 0.95rem;
  color: #fff;
  margin-top: 2rem;
  border-top: 1px dashed #ffffff54;
  padding-top: 1.2rem;
  text-transform: capitalize;
}

.section h2 {
  font-size: 40px;
  font-weight: 700;
  line-height: 1.3;
  margin-bottom: 1rem;
  padding-bottom: 1rem;
}
.who-its-bg h2.section__heading {
  text-align: left;
  padding: 0;
  margin: 0 !important;
  color: #000;
}

.form-intro {
  margin: 0 0 2rem;
  text-align: center;
}

.form-intro p {
  font-size: clamp(1.1rem, 3.8vw, 1.25rem);
  color: #2d4b61;
  line-height: 1.5;
  margin: 0 !important;
  text-align: center;
}

.assessment-note {
  background: #4945f8;
  padding: 10px 20px;
  border-radius: 5px;
  font-size: 1.1rem;
  color: #fff;
  display: inline-block;
  margin-top: 20px;
  font-weight: 600;
  text-transform: capitalize;
}
.contact-section h2 {
  text-align: center;
  font-size: 40px !important;
  margin: 0 !important;
  padding: 0;
  margin-bottom: 10px !important;
  text-transform: uppercase;
}

.booking-form {
  margin: 2rem 0 1rem;
  width: 60%;
}
.bookform {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 50px;
  padding: 0px 120px;
}

.booking-image img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 10px;
}

.booking-image {
  width: 40%;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.8rem 1.5rem;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.form-field.full-width {
  grid-column: 1 / -1;
}

.form-field label {
  font-weight: 600;
  font-size: 0.95rem;
  color: #1e3b4f;
  letter-spacing: 0.3px;
  display: flex;
  align-items: center;
  gap: 0.3rem;
}

.form-field input,
.form-field select,
.form-field textarea {
  padding: 0.9rem 1.2rem;
  border: 1.5px solid #dde5ef;
  font-size: 1rem;
  background: #ffffff;
  transition: 0.15s ease;
  font-family: inherit;
  border-radius: 5px !important;
}
.form-field textarea {
  border-radius: 30px;
  resize: vertical;
  min-height: 100px;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: #4945f8;
  box-shadow: 0 0 0 3px rgba(180, 141, 75, 0.15);
}

/* dropdown custom styling */
.form-field select {
  appearance: none;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%234f5b67' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'><polyline points='6 9 12 15 18 9'/></svg>");
  background-repeat: no-repeat;
  background-position: right 1.2rem center;
  background-size: 1rem;
}

.cta-buttons-form {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin: 2.5rem 0 1.5rem;
  justify-content: start;
}

.btn-option {
  background: #4945f8;
  border: 1.5px solid #d0ddee;
  padding: 1rem 2rem;
  border-radius: 10px;
  font-size: 1.1rem;
  font-weight: 500;
  color: #fff;
  cursor: pointer;
  transition: 0.15s ease;
  flex: 0 1 auto;
  min-width: 200px;
}

.btn-option:hover {
  background: #4945f8;
  border-color: #4945f8;
  transform: translateY(-2px);
}

.btn-option.active {
  background: #0a1e2f;
  color: white;
  border-color: #0a1e2f;
}

/* avoid generic submit */
.no-submit {
  display: none;
}

@media (max-width: 700px) {
  .form-grid {
    grid-template-columns: 1fr;
    gap: 1.2rem;
  }
}

@media (max-width: 500px) {
  .btn-option {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .trust-grid {
    flex-direction: column;
  }
  .final-cta {
    padding: 2rem 1.5rem;
  }
  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }
  .btn-primary,
  .btn-secondary {
    width: 100%;
    text-align: center;
  }
}

@media (max-width: 650px) {
  .offer-cta-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .offer-cta-right {
    white-space: normal;
    width: 100%;
    text-align: center;
    text-transform: capitalize;
  }
}

@media (max-width: 450px) {
  .service-list-compact {
    grid-template-columns: 1fr;
    padding: 0;
  }
}

@media (max-width: 550px) {
  .exclusive-grid {
    flex-direction: column;
    gap: 1.5rem;
  }
  .badge-column {
    width: 100%;
  }
}

@media (max-width: 400px) {
  .radius-marker {
    padding: 0.5rem 1rem;
  }
}

/* tiny screens fine-tuning */
@media (max-width: 550px) {
  .audience-grid {
    flex-direction: column;
    gap: 1.5rem;
  }

  .performance-col {
    width: 100%;
  }

  .closing-statement {
    border-radius: 30px;
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 380px) {
  .checklist li {
    font-size: 1rem;
    padding: 0.6rem 0;
  }
  .checklist li::before {
    font-size: 1.1rem;
    width: 1.3rem;
  }
}

/* optional extra polish */
.badge {
  display: inline-block;
  background: #ffffffb3;
  border-radius: 30px;
  padding: 0.2rem 1rem;
  font-size: 0.85rem;
  color: #415f73;
  border: 1px solid #bfd2e2;
  margin-top: 1rem;
}

/* tiny screens adjustments */
@media (max-width: 550px) {
  .enhance-block {
    flex-direction: column;
    align-items: flex-start;
  }
  .enhance-right {
    width: 100%;
    justify-content: space-between;
  }
  .pill-note {
    white-space: normal;
    text-align: center;
    width: 100%;
  }
}

@media (max-width: 400px) {
  .complement-card {
    min-width: 100%;
  }
  .enhance-right {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
  }
}

/* optional: tiny screens below 360px */
@media (max-width: 600px) {
  .grid-list {
    grid-template-columns: 1fr; /* force single column */
  }

  .grid-list li {
    font-size: 1rem;
  }

  .section__subhead {
    border-left-width: 4px;
    font-size: 16px;
  }
}
