:root {
  --primary: #8b5cf6;
  --primary-dark: #4c1d95;
  --secondary: #fb7185;
  --rose-soft: #fff1f4;
  --lavender: #f5f3ff;
  --soft-bg: #fffbff;
  --blue-soft: #f6f2ff;
  --sky-soft: #fff6f8;
  --dark: #1f1430;
  --text: #6f637a;
  --white: #ffffff;

  --border: rgba(139, 92, 246, 0.14);
  --shadow: 0 24px 70px rgba(31, 20, 48, 0.12);
  --soft-shadow: 0 16px 45px rgba(31, 20, 48, 0.08);
  --radius: 28px;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background: #ffffff;
  overflow-x: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
}

h1,
h2,
.brand-title {
  font-family: "Playfair Display", serif;
}

h1,
h2,
h3,
h4 {
  color: var(--dark);
}

.container {
  max-width: 1180px;
}

/* TOP BAR START */
.top-bar {
  position: relative;
  z-index: 1001;
  display: block;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 50%, rgba(251, 113, 133, 0.12), transparent 28%),
    radial-gradient(circle at 88% 50%, rgba(139, 92, 246, 0.14), transparent 30%),
    linear-gradient(90deg, #fff8fb 0%, #fffbff 48%, #f6f2ff 100%);
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  font-size: 15px;
}

.top-bar::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.72),
      transparent);
  opacity: 0.65;
  pointer-events: none;
}

.top-bar-inner {
  position: relative;
  min-height: 42px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 8px 0;
}

.top-info {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.top-info-item {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #675772;
  font-weight: 800;
  line-height: 1.2;
  letter-spacing: -0.1px;
}

.top-info-item i {
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #8b5cf6;
  background: rgba(139, 92, 246, 0.1);
  font-size: 15px;
}

.top-action {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  flex: 0 0 auto;
}

.top-call-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 32px;
  padding: 7px 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 15px;
  font-weight: 800;
  line-height: 1;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 12px 30px rgba(139, 92, 246, 0.22);
  transition: 0.28s ease;
}

.top-call-btn i {
  font-size: 12px;
}

.top-call-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 16px 36px rgba(139, 92, 246, 0.3);
}

/* TOP BAR RESPONSIVE */
@media (max-width: 991px) {
  .top-bar {
    display: block !important;
  }

  .top-bar-inner {
    gap: 12px;
  }

  .top-info {
    gap: 8px;
  }

  .top-info-item {
    font-size: 15px;
  }

  .top-info-item i {
    width: 24px;
    height: 24px;
    font-size: 14px;
  }

  .top-call-btn {
    padding: 7px 12px;
    font-size: 14px;
  }
}

@media (max-width: 767px) {
  .top-bar {
    display: block !important;
    background:
      radial-gradient(circle at 0% 0%, rgba(251, 113, 133, 0.13), transparent 32%),
      radial-gradient(circle at 100% 100%, rgba(139, 92, 246, 0.15), transparent 36%),
      linear-gradient(135deg, #fff8fb 0%, #f8f3ff 100%);
  }

  .top-bar-inner {
    min-height: auto;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 9px 0;
  }

  .top-info {
    display: grid;
    grid-template-columns: 1fr;
    gap: 7px;
  }

  .top-info-item {
    width: 100%;
    padding: 8px 10px;
    border-radius: 14px;
    color: #5f516d;
    background: rgba(255, 255, 255, 0.72);
    border: 1px solid rgba(139, 92, 246, 0.1);
    box-shadow: 0 8px 22px rgba(31, 20, 48, 0.04);
  }

  .top-action {
    width: 100%;
  }

  .top-call-btn {
    width: 100%;
    min-height: 40px;
    border-radius: 14px;
    font-size: 14px;
  }
}

@media (max-width: 420px) {
  .top-info-item {
    align-items: flex-start;
    font-size: 13px;
    line-height: 1.35;
  }

  .top-info-item i {
    margin-top: -2px;
  }

  .top-call-btn {
    font-size: 14px;
  }
}

/* TOP BAR END */




/* HEADER START */
.site-header {
  position: sticky;
  top: 0;
  z-index: 999;
  width: 100%;
  padding: 14px 0;
  background:
    linear-gradient(90deg, rgba(76, 29, 149, 0.94), rgba(31, 20, 48, 0.94) 45%, rgba(18, 12, 28, 0.96));
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(255, 255, 255, 0.09);
  transition: 0.3s ease;
}

.site-header::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 8% 50%, rgba(251, 113, 133, 0.2), transparent 28%),
    radial-gradient(circle at 92% 50%, rgba(139, 92, 246, 0.16), transparent 30%);
  pointer-events: none;
}

.site-header.scrolled {
  padding: 9px 0;
  box-shadow: 0 22px 55px rgba(31, 20, 48, 0.2);
}

.header-container {
  position: relative;
  z-index: 2;
  max-width: 1380px;
  padding-left: 26px;
  padding-right: 26px;
}

.header-shell {
  min-height: 58px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
}

/* BRAND */
.brand {
  display: inline-grid;
  line-height: 1;
  color: #ffffff;
  min-width: max-content;
}

.brand:hover {
  color: #ffffff;
}

.brand-main {
  display: block;
  color: #ffffff;
  font-family: "Playfair Display", serif;
  font-size: 32px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.95;
}

.brand-sub {
  display: block;
  margin-top: 7px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 3px;
  text-transform: uppercase;
}

/* DESKTOP NAV */
.desktop-nav {
  justify-self: center;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.desktop-nav a {
  position: relative;
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 14px;
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0.2px;
  white-space: nowrap;
  transition: 0.28s ease;
}

.desktop-nav a::before {
  content: "";
  position: absolute;
  left: 50%;
  right: 50%;
  bottom: 5px;
  height: 2px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb7185, #8b5cf6);
  opacity: 0;
  transition: 0.28s ease;
}

.desktop-nav a:hover,
.desktop-nav a.active {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.14),
    0 14px 30px rgba(0, 0, 0, 0.12);
}

.desktop-nav a:hover::before,
.desktop-nav a.active::before {
  left: 18px;
  right: 18px;
  opacity: 1;
}

/* HEADER ACTIONS */
.header-actions {
  display: inline-flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: max-content;
}

.header-call {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 0 18px 0 7px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.13);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
  transition: 0.28s ease;
}

.header-call:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.header-call-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 28% 20%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.24);
}

.header-book {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 28px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  letter-spacing: 0.2px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #8b5cf6 0%, #fb7185 100%);
  box-shadow:
    0 18px 42px rgba(251, 113, 133, 0.26),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
  transition: 0.28s ease;
}

.header-book:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow:
    0 24px 55px rgba(251, 113, 133, 0.34),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.header-book i {
  font-size: 16px;
}

/* MENU BUTTON */
.menu-toggle {
  position: relative;
  width: 48px;
  height: 48px;
  display: none;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.menu-toggle span {
  position: absolute;
  width: 21px;
  height: 2px;
  border-radius: 999px;
  background: #ffffff;
  transition: 0.28s ease;
}

.menu-toggle span:first-child {
  transform: translateY(-5px);
}

.menu-toggle span:last-child {
  transform: translateY(5px);
}

.menu-toggle.active span:first-child {
  transform: rotate(45deg);
}

.menu-toggle.active span:last-child {
  transform: rotate(-45deg);
}

/* MOBILE MENU */
.menu-backdrop {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: none;
  background: rgba(14, 8, 24, 0.62);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.menu-backdrop.active {
  display: block;
}

.mobile-menu {
  position: fixed;
  top: 86px;
  left: 0;
  right: 0;
  z-index: 1001;
  width: 100%;
  max-height: calc(100vh - 86px);
  overflow-y: auto;
  padding: 20px 18px 24px;
  background:
    radial-gradient(circle at 12% 0%, rgba(251, 113, 133, 0.24), transparent 32%),
    radial-gradient(circle at 88% 100%, rgba(139, 92, 246, 0.24), transparent 34%),
    linear-gradient(135deg, rgba(22, 13, 35, 0.98), rgba(12, 9, 18, 0.98));
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 26px 80px rgba(0, 0, 0, 0.28);
  transform: translateY(-20px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: 0.32s ease;
}

.mobile-menu.active {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 0 16px;
  margin-bottom: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-brand {
  display: inline-grid;
  line-height: 1;
  color: #ffffff;
}

.mobile-brand:hover {
  color: #ffffff;
}

.mobile-brand span {
  font-family: "Playfair Display", serif;
  font-size: 22px;
  font-weight: 800;
  letter-spacing: -0.5px;
}

.mobile-brand small {
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 9px;
  font-weight: 900;
  letter-spacing: 2.2px;
  text-transform: uppercase;
}

.mobile-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(251, 113, 133, 0.24);
  border-radius: 14px;
  color: #ffffff;
  background: rgba(255, 255, 255, 0.08);
}

.mobile-links {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px;
}

.mobile-links a {
  min-height: 54px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 0 10px 0 16px;
  border-radius: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 14px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
  transition: 0.28s ease;
}

.mobile-links a i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  background: rgba(255, 255, 255, 0.09);
}

.mobile-links a:hover,
.mobile-links a.active {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 20%, rgba(251, 113, 133, 0.22), transparent 36%),
    linear-gradient(135deg, rgba(139, 92, 246, 0.26), rgba(255, 255, 255, 0.08));
  border-color: rgba(251, 113, 133, 0.22);
}

.mobile-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin-top: 18px;
}

.mobile-call,
.mobile-book {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 16px;
  font-size: 14px;
  font-weight: 950;
}

.mobile-call {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.09);
  border: 1px solid rgba(255, 255, 255, 0.11);
}

.mobile-call:hover {
  color: #ffffff;
}

.mobile-book {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #8b5cf6 0%, #fb7185 100%);
  box-shadow: 0 18px 40px rgba(251, 113, 133, 0.24);
}

.mobile-book:hover {
  color: #ffffff;
}

/* RESPONSIVE */
@media (max-width: 1250px) {
  .header-shell {
    gap: 20px;
  }

  .desktop-nav {
    gap: 8px;
  }

  .desktop-nav a {
    padding: 0 11px;
    font-size: 13px;
  }

  .header-book {
    padding: 0 22px;
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    gap: 4px;
  }

  .desktop-nav a {
    padding: 0 9px;
    font-size: 12.5px;
  }

  .header-call span:last-child {
    display: none;
  }

  .header-call {
    padding: 0 6px;
  }
}

@media (max-width: 991px) {
  .site-header {
    padding: 11px 0;
  }

  .site-header.scrolled {
    padding: 8px 0;
  }

  .header-container {
    padding-left: 16px;
    padding-right: 16px;
  }

  .header-shell {
    min-height: 58px;
    display: flex;
    justify-content: space-between;
    gap: 16px;
  }

  .desktop-nav,
  .header-call,
  .header-book {
    display: none;
  }

  .menu-toggle {
    display: grid;
  }

  .brand-main {
    font-size: 28px;
  }

  .brand-sub {
    font-size: 9px;
    letter-spacing: 2.5px;
  }
}

@media (max-width: 575px) {
  .site-header {
    padding: 9px 0;
  }

  .header-container {
    padding-left: 12px;
    padding-right: 12px;
  }

  .header-shell {
    min-height: 54px;
  }

  .brand-main {
    font-size: 24px;
  }

  .brand-sub {
    margin-top: 6px;
    font-size: 8px;
    letter-spacing: 2px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .mobile-menu {
    top: 72px;
    max-height: calc(100vh - 72px);
    padding: 16px 12px 18px;
  }

  .mobile-actions {
    grid-template-columns: 1fr;
  }

  .mobile-links a {
    min-height: 52px;
    border-radius: 15px;
  }
}

@media (max-width: 380px) {
  .brand-main {
    font-size: 21px;
  }

  .brand-sub {
    font-size: 7.5px;
    letter-spacing: 1.7px;
  }
}

/* HEADER END */



/* HERO START */
.hero-section {
  position: relative;
  min-height: calc(100vh - 86px);
  display: flex;
  align-items: center;
  padding: 46px 0 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 18%, rgba(251, 113, 133, 0.14), transparent 30%),
    radial-gradient(circle at 92% 12%, rgba(139, 92, 246, 0.16), transparent 32%),
    radial-gradient(circle at 85% 88%, rgba(76, 29, 149, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 46%, #f5f3ff 100%);
}

.hero-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.055) 1px, transparent 1px);
  background-size: 56px 56px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 78%);
  pointer-events: none;
}

.hero-section::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -160px;
  width: 780px;
  height: 320px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.1);
  filter: blur(70px);
  pointer-events: none;
}

.hero-bg-glow {
  position: absolute;
  border-radius: 999px;
  pointer-events: none;
  filter: blur(4px);
  opacity: 0.9;
}

.hero-glow-one {
  width: 260px;
  height: 260px;
  left: -90px;
  top: 90px;
  background: rgba(251, 113, 133, 0.18);
}

.hero-glow-two {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: -140px;
  background: rgba(139, 92, 246, 0.16);
}

.hero-bg-pattern {
  position: absolute;
  top: 90px;
  right: 10%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139, 92, 246, 0.16) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.45;
  pointer-events: none;
}

.hero-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(420px, 0.98fr);
  align-items: center;
  gap: 48px;
}

/* HERO CONTENT */
.hero-content {
  max-width: 650px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.hero-badge {
  margin-bottom: 18px;
}

.hero-content h1 {
  margin: 0 0 18px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 52px !important;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.8px;
}

.hero-content h1 span {
  display: inline;
  background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-content p {
  max-width: 590px;
  margin: 0 0 24px;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 24px;
}

.primary-btn,
.secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.3), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.26);
}

.primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 56px rgba(139, 92, 246, 0.34);
}

.secondary-btn {
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.07);
}

.secondary-btn:hover {
  color: #4c1d95;
  background: #ffffff;
  transform: translateY(-2px);
}

/* TRUST CARDS */
.hero-trust {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.hero-trust-card {
  min-height: 74px;
  display: flex;
  align-items: center;
  gap: 11px;
  padding: 12px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 251, 0.74));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 14px 34px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.trust-icon {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
}

.hero-trust-card strong {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.15;
}

.hero-trust-card small {
  display: block;
  margin-top: 4px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 800;
  line-height: 1.2;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  min-height: 520px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-main-card {
  position: relative;
  width: min(500px, 100%);
  padding: 12px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(255, 248, 251, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 90px rgba(31, 20, 48, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.hero-main-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(251, 113, 133, 0.16), rgba(255, 255, 255, 0));
}

.hero-image-card {
  position: relative;
  overflow: hidden;
  border-radius: 30px;
}

.hero-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.04) 0%, rgba(31, 20, 48, 0.08) 35%, rgba(31, 20, 48, 0.58) 100%),
    radial-gradient(circle at 75% 12%, rgba(255, 255, 255, 0.35), transparent 28%);
  pointer-events: none;
}

.hero-image-card img {
  width: 100%;
  height: 470px;
  object-fit: cover;
  object-position: center;
  border-radius: 30px;
  transform: scale(1.01);
}

/* DESKTOP IMAGE OVERLAY */
.hero-image-overlay {
  position: absolute;
  inset: 12px;
  z-index: 3;
  pointer-events: none;
}

.hero-card-top {
  position: absolute;
  left: 16px;
  top: 16px;
  display: flex;
  align-items: center;
  gap: 11px;
  max-width: calc(100% - 32px);
  padding: 12px 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.overlay-icon,
.hero-card-top span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6, #fb7185);
}

.hero-card-top strong {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.1;
}

.hero-card-top small {
  display: block;
  margin-top: 4px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 800;
}

.hero-mini-card {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 210px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.14);
}

.hero-mini-card i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6, #fb7185);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.2);
}

.hero-mini-card strong {
  display: block;
  color: #1f1430;
  font-size: 12.5px;
  font-weight: 950;
  line-height: 1.1;
}

.hero-mini-card small {
  display: block;
  margin-top: 4px;
  color: #7b6e84;
  font-size: 10.5px;
  font-weight: 800;
}

.mini-card-left {
  left: 16px;
  bottom: 92px;
}

.mini-card-right {
  right: 16px;
  bottom: 92px;
}

.hero-card-bottom {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  display: flex;
  gap: 10px;
}

.treatment-pill {
  flex: 1;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background: rgba(31, 20, 48, 0.7);
  border: 1px solid rgba(255, 255, 255, 0.16);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.treatment-pill i {
  color: #fb7185;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .hero-section {
    min-height: auto;
    padding: 36px 0 30px;
  }

  .hero-wrapper {
    gap: 42px;
  }

  .hero-content h1 {
    font-size: clamp(40px, 4.2vw, 56px);
    margin-bottom: 14px;
  }

  .hero-content p {
    font-size: 15px;
    line-height: 1.62;
    margin-bottom: 20px;
  }

  .hero-actions {
    margin-bottom: 20px;
  }

  .hero-visual {
    min-height: 480px;
  }

  .hero-image-card img {
    height: 430px;
  }

  .hero-trust-card {
    min-height: 68px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .hero-section {
    min-height: auto;
    padding: 64px 0 54px;
  }

  .hero-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .hero-content {
    max-width: 760px;
    text-align: center;
    margin: 0 auto;
  }

  .hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    max-width: 760px;
    margin: 0 auto;
  }

  .hero-visual {
    min-height: auto;
  }

  .hero-main-card {
    width: min(560px, 100%);
  }

  .hero-image-card img {
    height: 470px;
  }
}

/* MOBILE - CLEAN IMAGE, NO OVERLAY BUTTONS */
@media (max-width: 767px) {
  .hero-section {
    padding: 48px 0 40px;
  }

  .hero-content h1 {
    font-size: 42px;
    line-height: 1.02;
    letter-spacing: -1.2px;
  }

  .hero-content p {
    font-size: 15.5px;
    line-height: 1.68;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    margin-bottom: 22px;
  }

  .primary-btn,
  .secondary-btn {
    width: 100%;
    min-height: 52px;
  }

  .hero-trust {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .hero-trust-card {
    min-height: 68px;
    border-radius: 18px;
    text-align: left;
  }

  .hero-main-card {
    width: 100%;
    padding: 10px;
    border-radius: 30px;
  }

  .hero-image-card {
    border-radius: 23px;
  }

  .hero-image-card img {
    height: 410px;
    width: 100%;
    object-fit: cover;
    object-position: center top;
    border-radius: 23px;
    transform: none;
  }

  .hero-image-card::after {
    background:
      linear-gradient(180deg, rgba(31, 20, 48, 0.01), rgba(31, 20, 48, 0.08)),
      radial-gradient(circle at 75% 12%, rgba(255, 255, 255, 0.22), transparent 28%);
  }

  .hero-image-overlay,
  .hero-card-top,
  .hero-mini-card,
  .hero-card-bottom,
  .treatment-pill {
    display: none !important;
  }
}

@media (max-width: 420px) {
  .hero-section {
    padding: 42px 0 36px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .hero-content h1 {
    font-size: 33px !important;
  }

  .hero-content p {
    font-size: 14.5px;
  }

  .hero-image-card img {
    height: 370px;
  }
}

@media (max-width: 360px) {
  .hero-image-card img {
    height: 350px;
  }
}

/* HERO END */





/* QUICK CONTACT START */
.quick-contact-section {
  position: relative;
  z-index: 8;
  margin-top: -42px;
  padding: 0 0 18px;
}

.quick-contact-section::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 12px;
  width: min(880px, 88%);
  height: 90px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(45px);
  pointer-events: none;
}

.quick-contact-wrap {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 1.18fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 12%, rgba(251, 113, 133, 0.16), transparent 28%),
    radial-gradient(circle at 92% 88%, rgba(139, 92, 246, 0.18), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.74));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 24px 70px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  overflow: hidden;
}

.quick-contact-wrap::before {
  content: "";
  position: absolute;
  top: -70px;
  left: 12%;
  width: 240px;
  height: 160px;
  border-radius: 50%;
  background: rgba(251, 113, 133, 0.13);
  filter: blur(44px);
  pointer-events: none;
}

.quick-contact-wrap::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -90px;
  width: 260px;
  height: 190px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.16);
  filter: blur(46px);
  pointer-events: none;
}

.quick-item {
  position: relative;
  z-index: 2;
  min-height: 94px;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 16px;
  border-radius: 24px;
  color: #1f1430;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.11);
  box-shadow:
    0 14px 36px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.28s ease;
  overflow: hidden;
}

.quick-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(251, 113, 133, 0.08));
  opacity: 0;
  transition: 0.28s ease;
  pointer-events: none;
}

.quick-item:hover {
  color: #1f1430;
  transform: translateY(-4px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow:
    0 22px 50px rgba(31, 20, 48, 0.1),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.quick-item:hover::before {
  opacity: 1;
}

.quick-icon {
  position: relative;
  z-index: 2;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 19px;
  color: #ffffff;
  font-size: 21px;
  background:
    radial-gradient(circle at 28% 22%, rgba(255, 255, 255, 0.34), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow:
    0 16px 32px rgba(139, 92, 246, 0.24),
    inset 0 1px 0 rgba(255, 255, 255, 0.32);
}

.quick-content {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  flex: 1;
  line-height: 1;
}

.quick-content small {
  display: block;
  margin-bottom: 8px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 1.3px;
  text-transform: uppercase;
}

.quick-content strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  line-height: 1.22;
  letter-spacing: -0.2px;
}

.quick-arrow {
  position: relative;
  z-index: 2;
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(245, 243, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.12);
  font-size: 15px;
  transition: 0.28s ease;
}

.quick-item:hover .quick-arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  transform: translateX(3px);
}

.quick-call {
  text-decoration: none;
}

/* COMMON SECTION CSS */
.section-padding {
  padding: 90px 0;
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 46px;
}

.section-heading.left {
  margin-left: 0;
  margin-right: 0;
}

.section-heading h2,
.cta-card h2,
.doctor-card h2 {
  color: #1f1430;
  font-size: 45px !important;
  line-height: 1.08;
  letter-spacing: -1px;
  margin-bottom: 15px;
}

.section-heading p {
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.8;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .quick-contact-section {
    margin-top: -36px;
  }

  .quick-contact-wrap {
    padding: 10px;
    border-radius: 26px;
  }

  .quick-item {
    min-height: 82px;
    padding: 14px;
    border-radius: 21px;
  }

  .quick-icon {
    width: 48px;
    height: 48px;
    border-radius: 17px;
    font-size: 19px;
  }

  .quick-content small {
    margin-bottom: 6px;
    font-size: 10px;
  }

  .quick-content strong {
    font-size: 14px;
  }

  .quick-arrow {
    width: 32px;
    height: 32px;
    font-size: 14px;
  }

  .section-padding {
    padding: 78px 0;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .quick-contact-section {
    margin-top: 0;
    padding: 28px 0 0;
  }

  .quick-contact-wrap {
    grid-template-columns: 1fr;
    gap: 11px;
    padding: 12px;
    border-radius: 28px;
  }

  .quick-item {
    min-height: 86px;
  }

  .section-padding {
    padding: 74px 0;
  }
}

/* MOBILE */
@media (max-width: 575px) {
  .quick-contact-section {
    padding: 22px 0 0;
  }

  .quick-contact-wrap {
    padding: 10px;
    border-radius: 24px;
  }

  .quick-item {
    min-height: 78px;
    gap: 12px;
    padding: 13px;
    border-radius: 19px;
  }

  .quick-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
    font-size: 18px;
  }

  .quick-content small {
    margin-bottom: 6px;
    font-size: 9.5px;
    letter-spacing: 1px;
  }

  .quick-content strong {
    font-size: 13.5px;
    line-height: 1.25;
  }

  .quick-arrow {
    width: 32px;
    height: 32px;
    font-size: 13px;
  }

  .section-padding {
    padding: 64px 0;
  }

  .section-heading {
    margin-bottom: 36px;
  }

  .section-heading h2,
  .cta-card h2,
  .doctor-card h2 {
    font-size: 34px;
  }

  .section-heading p {
    font-size: 15px;
  }
}

@media (max-width: 390px) {
  .quick-item {
    align-items: flex-start;
  }

  .quick-arrow {
    margin-top: 7px;
  }

  .quick-content strong {
    font-size: 13px;
  }
}

/* QUICK CONTACT END */





/* ABOUT START */
.about-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.about-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 42%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.55) 42%, transparent 100%);
  pointer-events: none;
}

.about-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(55px);
  pointer-events: none;
}

.about-glow-one {
  width: 300px;
  height: 300px;
  left: -130px;
  top: 80px;
  background: rgba(251, 113, 133, 0.14);
}

.about-glow-two {
  width: 360px;
  height: 360px;
  right: -160px;
  bottom: 30px;
  background: rgba(139, 92, 246, 0.14);
}

.about-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 58px;
}

/* ABOUT VISUAL */
.about-visual {
  position: relative;
}

.about-image-box {
  position: relative;
  overflow: hidden;
  border-radius: 38px;
  padding: 12px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 251, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 90px rgba(31, 20, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-image-box::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.2), rgba(251, 113, 133, 0.15), transparent);
}

.about-image-box img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
}

.about-image-overlay {
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.12) 45%, rgba(31, 20, 48, 0.52) 100%),
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.30), transparent 28%);
  pointer-events: none;
}

.about-experience {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: calc(100% - 60px);
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9) 58%, rgba(251, 113, 133, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(31, 20, 48, 0.22);
}

.about-exp-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.92);
}

.about-experience strong {
  display: block;
  color: #ffffff;
  font-size: 24px;
  font-weight: 950;
  line-height: 1;
}

.about-experience small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.about-floating-note {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 999px;
  color: #1f1430;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.about-floating-note i {
  color: #8b5cf6;
}

.about-mini-stats {
  position: relative;
  width: calc(100% - 54px);
  margin: -34px auto 0;
  z-index: 4;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 12px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 255, 0.84));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 60px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-mini-stats div {
  padding: 14px;
  border-radius: 18px;
  background:
    linear-gradient(135deg, #ffffff, #fff8fb);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.about-mini-stats strong {
  display: block;
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  line-height: 1;
}

.about-mini-stats span {
  display: block;
  margin-top: 6px;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 850;
}

/* ABOUT CONTENT */
.about-content {
  position: relative;
}

.about-heading {
  margin-bottom: 24px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 0 0 16px;
}

.section-heading p {
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.78;
  margin: 0;
}

.about-highlight-box {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-top: -10px;
  margin-bottom: 18px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 20%, rgba(251, 113, 133, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 45px rgba(31, 20, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.about-highlight-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 18px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.about-highlight-box h3 {
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
  margin: 0 0 7px;
}

.about-highlight-box p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.feature-list {
  display: grid;
  gap: 12px;
  margin: 0 0 24px;
}

.feature-row {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 54px;
  padding: 12px 14px;
  border-radius: 18px;
  color: #1f1430;
  font-size: 14px;
  font-weight: 900;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(139, 92, 246, 0.10);
  box-shadow:
    0 12px 30px rgba(31, 20, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.feature-icon {
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.20);
}

.about-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-primary-link,
.about-call-link {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.about-primary-link {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.about-primary-link:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.about-call-link {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.about-call-link:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .about-wrapper {
    gap: 44px;
  }

  .about-image-box img {
    height: 440px;
  }

  .about-mini-stats {
    margin-top: -28px;
  }

  .section-heading h2 {
    font-size: 28px;
    margin-bottom: 12px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.65;
  }

  .about-highlight-box {
    padding: 15px;
    margin-bottom: 14px;
  }

  .feature-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .feature-row {
    min-height: 48px;
    padding: 10px 12px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .about-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-content {
    text-align: center;
  }

  .section-heading.left {
    margin-left: auto;
    margin-right: auto;
  }

  .about-heading {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .about-highlight-box {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .feature-list {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
  }

  .feature-row {
    text-align: left;
  }

  .about-actions {
    justify-content: center;
  }

  .about-image-box img {
    height: 480px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-wrapper {
    gap: 36px;
  }

  .about-image-box {
    padding: 10px;
    border-radius: 30px;
  }

  .about-image-box img,
  .about-image-overlay {
    height: 390px;
    border-radius: 22px;
  }

  .about-image-box img {
    object-position: center;
  }

  .about-image-overlay {
    inset: 10px;
  }

  .about-floating-note {
    top: 20px;
    right: 20px;
    max-width: calc(100% - 40px);
    font-size: 11px;
    padding: 9px 11px;
  }

  .about-experience {
    left: 20px;
    right: 20px;
    bottom: 20px;
    max-width: none;
    padding: 13px;
    border-radius: 18px;
  }

  .about-exp-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .about-experience strong {
    font-size: 20px;
  }

  .about-experience small {
    font-size: 11px;
  }

  .about-mini-stats {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    margin-top: 10px;
    border-radius: 22px;
  }

  .about-mini-stats div {
    padding: 13px;
  }

  .section-heading h2 {
    font-size: 33px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-highlight-box {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .about-highlight-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .feature-row {
    align-items: flex-start;
    min-height: auto;
    padding: 13px;
    border-radius: 16px;
    font-size: 13.5px;
    line-height: 1.35;
  }

  .about-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
  }

  .about-primary-link,
  .about-call-link {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {

  .about-image-box img,
  .about-image-overlay {
    height: 340px;
  }

  .about-floating-note {
    display: none;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .about-highlight-box h3 {
    font-size: 16px;
  }

  .about-highlight-box p {
    font-size: 13.5px;
  }
}

/* ABOUT END */





/* SERVICES START */
.services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 10%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 32%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.services-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 78%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45), transparent 78%);
  pointer-events: none;
}

.services-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.services-glow-one {
  width: 320px;
  height: 320px;
  left: -130px;
  top: 80px;
  background: rgba(251, 113, 133, 0.14);
}

.services-glow-two {
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: 40px;
  background: rgba(139, 92, 246, 0.14);
}

.services-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -25px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 46px;
}

/* SERVICES INTRO */
.services-intro {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 15%, rgba(251, 113, 133, 0.12), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 70px rgba(31, 20, 48, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.services-intro::before {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 92px;
  height: 92px;
  border-radius: 28px;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.22) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.55;
  pointer-events: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.services-intro h2 {
  margin: 18px 0 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.services-intro p {
  margin: 0;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.78;
}

.services-intro-card {
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 15px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 16px 40px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.services-intro-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.services-intro-card strong {
  display: block;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

.services-intro-card span {
  display: block;
  margin-top: 5px;
  color: #7b6e84;
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.4;
}

.services-main-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
  transition: 0.28s ease;
}

.services-main-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

/* SERVICES GRID */
.services-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.service-card {
  position: relative;
  min-height: 232px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 30px;
  color: #1f1430;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 48px rgba(31, 20, 48, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.service-card::after {
  content: "";
  position: absolute;
  right: -35px;
  top: -35px;
  width: 110px;
  height: 110px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.3s ease;
  pointer-events: none;
}

.service-card:hover {
  color: #1f1430;
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.20);
  box-shadow:
    0 28px 70px rgba(31, 20, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover::after {
  transform: scale(1.25);
  background: rgba(251, 113, 133, 0.11);
}

.featured-service {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.13), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(76, 29, 149, 0.11);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.service-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  font-size: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
  margin-bottom: 22px;
}

.service-content {
  position: relative;
  z-index: 2;
}

.service-card h3 {
  color: #1f1430;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.service-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

.service-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  padding-top: 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.service-link i {
  transition: 0.25s ease;
}

.service-card:hover .service-link i {
  transform: translateX(4px);
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .services-wrapper {
    gap: 36px;
  }

  .services-intro {
    padding: 24px;
    border-radius: 30px;
  }

  .services-intro h2 {
    font-size: clamp(32px, 3.4vw, 46px);
    margin: 15px 0 12px;
  }

  .services-intro p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .services-intro-card {
    margin: 18px 0;
    padding: 13px;
  }

  .service-card {
    min-height: 208px;
    padding: 20px;
    border-radius: 26px;
  }

  .service-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .services-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .services-intro-card {
    text-align: left;
  }

  .services-grid {
    max-width: 760px;
    margin: 0 auto;
  }

  .services-main-btn {
    width: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .services-intro {
    padding: 22px;
    border-radius: 28px;
  }

  .services-intro h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .services-intro p {
    font-size: 15px;
    line-height: 1.7;
  }

  .services-intro-card {
    display: grid;
    gap: 12px;
    border-radius: 22px;
  }

  .services-main-btn {
    width: 100%;
    min-height: 52px;
  }

  .services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .service-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .service-number {
    top: 18px;
    right: 20px;
    font-size: 36px;
  }

  .service-card h3 {
    font-size: 19px;
  }

  .service-link {
    padding-top: 16px;
  }
}

@media (max-width: 420px) {
  .services-intro {
    padding: 18px;
    border-radius: 24px;
  }

  .services-intro h2 {
    font-size: 35px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .service-card {
    padding: 19px;
  }
}

/* SERVICES END */




/* WHY CHOOSE START */
.why-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 12%, rgba(139, 92, 246, 0.11), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(251, 113, 133, 0.10), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.why-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.5) 45%, transparent 100%);
  pointer-events: none;
}

.why-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.why-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(139, 92, 246, 0.14);
}

.why-glow-two {
  width: 360px;
  height: 360px;
  right: -150px;
  bottom: 20px;
  background: rgba(251, 113, 133, 0.13);
}

.why-wrapper {
  position: relative;
  z-index: 2;
  margin-top: -25px;
  display: grid;
  grid-template-columns: minmax(300px, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 58px;
}

/* LEFT CONTENT */
.why-content {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 70px rgba(31, 20, 48, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.why-content::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 94px;
  height: 94px;
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.20) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.55;
  pointer-events: none;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.why-content h2 {
  position: relative;
  z-index: 2;
  margin: 18px 0 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.4px;
}

.why-content p {
  position: relative;
  z-index: 2;
  margin: 0;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.78;
}

.why-highlight {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin: 24px 0;
  padding: 15px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 16px 40px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.why-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.why-highlight strong {
  display: block;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

.why-highlight span {
  display: block;
  margin-top: 5px;
  color: #7b6e84;
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.4;
}

.why-main-btn {
  position: relative;
  z-index: 2;
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 22px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
  transition: 0.28s ease;
}

.why-main-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

/* RIGHT CARDS AREA */
.why-cards-area {
  position: relative;
  min-height: 470px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
  align-items: center;
}

.why-center-line {
  position: absolute;
  left: 50%;
  top: 34px;
  bottom: 34px;
  width: 1px;
  transform: translateX(-50%);
  background: linear-gradient(180deg,
      transparent,
      rgba(139, 92, 246, 0.22),
      rgba(251, 113, 133, 0.18),
      transparent);
  pointer-events: none;
}

.why-card {
  position: relative;
  min-height: 205px;
  padding: 24px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 48px rgba(31, 20, 48, 0.065),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  overflow: hidden;
  transition: 0.3s ease;
}

.why-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.why-card::after {
  content: "";
  position: absolute;
  right: -38px;
  top: -38px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.3s ease;
  pointer-events: none;
}

.why-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.2);
  box-shadow:
    0 28px 70px rgba(31, 20, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.why-card:hover::before {
  opacity: 1;
}

.why-card:hover::after {
  transform: scale(1.2);
  background: rgba(251, 113, 133, 0.11);
}

.why-card-one,
.why-card-three {
  transform: translateY(-18px);
}

.why-card-two,
.why-card-four {
  transform: translateY(18px);
}

.why-card-one:hover,
.why-card-three:hover {
  transform: translateY(-26px);
}

.why-card-two:hover,
.why-card-four:hover {
  transform: translateY(10px);
}

.why-card-count {
  position: absolute;
  top: 22px;
  right: 22px;
  color: rgba(76, 29, 149, 0.10);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.why-card-icon {
  position: relative;
  z-index: 2;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 20px;
  color: #ffffff;
  font-size: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
  margin-bottom: 22px;
}

.why-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 20px;
  font-weight: 950;
  letter-spacing: -0.3px;
  margin: 0 0 10px;
}

.why-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .why-wrapper {
    gap: 38px;
  }

  .why-content {
    padding: 24px;
    border-radius: 30px;
  }

  .why-content h2 {
    font-size: clamp(32px, 3.4vw, 46px);
    margin: 15px 0 12px;
  }

  .why-content p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .why-highlight {
    margin: 18px 0;
    padding: 13px;
  }

  .why-cards-area {
    min-height: 420px;
    gap: 15px;
  }

  .why-card {
    min-height: 185px;
    padding: 20px;
    border-radius: 26px;
  }

  .why-card-icon {
    width: 52px;
    height: 52px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .why-card h3 {
    font-size: 18px;
  }

  .why-card p {
    font-size: 13.5px;
    line-height: 1.55;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .why-wrapper {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .why-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .why-highlight {
    text-align: left;
  }

  .why-cards-area {
    max-width: 760px;
    min-height: auto;
    margin: 0 auto;
  }

  .why-center-line {
    display: none;
  }

  .why-card-one,
  .why-card-two,
  .why-card-three,
  .why-card-four,
  .why-card-one:hover,
  .why-card-two:hover,
  .why-card-three:hover,
  .why-card-four:hover {
    transform: none;
  }

  .why-main-btn {
    width: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .why-content {
    padding: 22px;
    border-radius: 28px;
  }

  .why-content h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .why-content p {
    font-size: 15px;
    line-height: 1.7;
  }

  .why-highlight {
    display: grid;
    gap: 12px;
    border-radius: 22px;
  }

  .why-main-btn {
    width: 100%;
    min-height: 52px;
  }

  .why-cards-area {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .why-card {
    min-height: auto;
    padding: 22px;
    border-radius: 24px;
  }

  .why-card-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .why-card-count {
    top: 18px;
    right: 20px;
    font-size: 36px;
  }

  .why-card h3 {
    font-size: 19px;
  }
}

@media (max-width: 420px) {
  .why-content {
    padding: 18px;
    border-radius: 24px;
  }

  .why-content h2 {
    font-size: 34px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .why-card {
    padding: 19px;
  }
}

/* WHY CHOOSE END */





/* DOCTOR START */
.doctor-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 18%, rgba(251, 113, 133, 0.12), transparent 32%),
    radial-gradient(circle at 90% 78%, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(135deg, #fffbff 0%, #f5f3ff 52%, #ffffff 100%);
}

.doctor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 82%);
  pointer-events: none;
}

.doctor-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.doctor-glow-one {
  width: 340px;
  height: 340px;
  left: -150px;
  top: 100px;
  background: rgba(251, 113, 133, 0.15);
}

.doctor-glow-two {
  width: 380px;
  height: 380px;
  right: -160px;
  bottom: 40px;
  background: rgba(139, 92, 246, 0.16);
}

.doctor-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 58px;
  padding: 34px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.12), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 30px 90px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* DOCTOR VISUAL */
.doctor-visual {
  position: relative;
  width: 100%;
}

.doctor-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 251, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 90px rgba(31, 20, 48, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.doctor-image-card::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(251, 113, 133, 0.16), transparent);
}

.doctor-image-card img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.doctor-image-shade {
  position: absolute;
  inset: 12px;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.12) 45%, rgba(31, 20, 48, 0.56) 100%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.30), transparent 28%);
  pointer-events: none;
}

.doctor-name-badge {
  position: absolute;
  left: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: calc(100% - 60px);
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9) 58%, rgba(251, 113, 133, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(31, 20, 48, 0.24);
}

.doctor-badge-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.92);
}

.doctor-name-badge strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.doctor-name-badge small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.doctor-floating-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 60px);
  padding: 11px 13px;
  border-radius: 999px;
  color: #1f1430;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.doctor-floating-badge i {
  color: #8b5cf6;
}

.doctor-mini-stats {
  position: relative;
  width: calc(100% - 48px);
  margin: -34px auto 0;
  z-index: 4;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 26px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.84));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 60px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.doctor-mini-stats div {
  padding: 12px;
  border-radius: 18px;
  text-align: center;
  background:
    linear-gradient(135deg, #ffffff, #fff8fb);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.doctor-mini-stats strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.doctor-mini-stats span {
  display: block;
  margin-top: 6px;
  color: #7b6e84;
  font-size: 10.5px;
  font-weight: 850;
  line-height: 1.25;
}

/* DOCTOR CONTENT */
.doctor-content {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.doctor-content h2 {
  margin: 18px 0 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -1.4px;
}

.doctor-content>p {
  max-width: 650px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.78;
  margin: 0 0 20px;
}

.doctor-profile-note {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 26px;
  background:
    radial-gradient(circle at 8% 20%, rgba(251, 113, 133, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 45px rgba(31, 20, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.doctor-note-icon {
  width: 50px;
  height: 50px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 21px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.doctor-profile-note h3 {
  color: #1f1430;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.25;
  margin: 0 0 7px;
}

.doctor-profile-note p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.doctor-points {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 0 0 26px;
}

.doctor-points span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.74));
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: #4c1d95;
  padding: 10px 14px;
  font-weight: 950;
  font-size: 13px;
  box-shadow:
    0 12px 28px rgba(31, 20, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.doctor-points span i {
  color: #8b5cf6;
}

.doctor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.doctor-primary-btn,
.doctor-secondary-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.doctor-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.doctor-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.doctor-secondary-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.doctor-secondary-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .doctor-wrapper {
    gap: 42px;
    padding: 28px;
    border-radius: 36px;
  }

  .doctor-image-card img {
    height: 430px;
  }

  .doctor-content h2 {
    font-size: clamp(34px, 3.8vw, 50px);
    margin: 15px 0 12px;
  }

  .doctor-content>p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .doctor-profile-note {
    padding: 15px;
    margin-bottom: 16px;
  }

  .doctor-points {
    margin-bottom: 20px;
  }

  .doctor-mini-stats {
    margin-top: -28px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .doctor-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 28px;
  }

  .doctor-visual {
    width: 100%;
    max-width: 100%;
    margin: 0;
  }

  .doctor-image-card {
    width: 100%;
  }

  .doctor-content {
    text-align: center;
  }

  .doctor-content>p {
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-profile-note {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    text-align: left;
  }

  .doctor-points {
    justify-content: center;
  }

  .doctor-actions {
    justify-content: center;
  }

  .doctor-image-card img {
    height: 480px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .doctor-section .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .doctor-wrapper {
    width: 100%;
    padding: 12px;
    border-radius: 28px;
    gap: 34px;
  }

  .doctor-visual {
    width: 100%;
    max-width: 100%;
  }

  .doctor-image-card {
    width: 100%;
    padding: 8px;
    border-radius: 26px;
  }

  .doctor-image-card img,
  .doctor-image-shade {
    width: 100%;
    height: 400px;
    border-radius: 20px;
  }

  .doctor-image-shade {
    inset: 8px;
  }

  .doctor-floating-badge {
    top: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
    font-size: 11px;
    padding: 9px 11px;
  }

  .doctor-name-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    max-width: none;
    padding: 13px;
    border-radius: 18px;
  }

  .doctor-badge-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .doctor-name-badge strong {
    font-size: 20px;
  }

  .doctor-name-badge small {
    font-size: 11px;
  }

  .doctor-mini-stats {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    margin-top: -22px;
    border-radius: 22px;
  }

  .doctor-content h2 {
    font-size: 36px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .doctor-content>p {
    font-size: 15px;
    line-height: 1.7;
  }

  .doctor-profile-note {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .doctor-note-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .doctor-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .doctor-points span {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  /* BUTTONS NICHE FULL WIDTH */
  .doctor-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
    margin-top: 4px;
  }

  .doctor-primary-btn,
  .doctor-secondary-btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .doctor-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .doctor-wrapper {
    padding: 10px;
    border-radius: 24px;
  }

  .doctor-image-card img,
  .doctor-image-shade {
    height: 350px;
  }

  .doctor-floating-badge {
    display: none;
  }

  .doctor-content h2 {
    font-size: 34px !important;
  }

  .doctor-profile-note h3 {
    font-size: 16px;
  }

  .doctor-profile-note p {
    font-size: 13.5px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }
}

@media (max-width: 360px) {

  .doctor-image-card img,
  .doctor-image-shade {
    height: 320px;
  }
}

/* DOCTOR END */



/* ==================================================
   TESTIMONIALS SLIDER SECTION START
================================================== */

.testimonial-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.testimonial-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.testimonial-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.testimonial-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.testimonial-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(0, 1.18fr);
  align-items: center;
  gap: 42px;
}

/* INTRO */
.testimonial-intro h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.testimonial-intro>p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.testimonial-score-card {
  display: flex;
  align-items: center;
  gap: 13px;
  max-width: 420px;
  margin: 24px 0 24px;
  padding: 16px;
  border-radius: 24px;
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.10), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 16px 42px rgba(31, 20, 48, 0.07);
}

.score-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 21px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.testimonial-score-card strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  margin-bottom: 4px;
}

.testimonial-score-card span {
  display: block;
  color: #6f637a;
  font-size: 13px;
  font-weight: 700;
  line-height: 1.45;
}

.testimonial-main-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 0 20px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
  transition: 0.28s ease;
}

.testimonial-main-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

/* SLIDER */
.testimonial-slider-wrap {
  position: relative;
  min-width: 0;
}

.testimonial-slider {
  position: relative;
  overflow: hidden;
  width: 100%;
  border-radius: 34px;
}

.testimonial-track {
  display: flex;
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform;
}

.testimonial-slide {
  flex: 0 0 50%;
  padding: 8px;
}

.review-card {
  position: relative;
  min-height: 345px;
  height: 100%;
  padding: 26px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(255, 251, 255, 0.78));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.075),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.32s ease;
}

.review-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 14%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.32s ease;
}

.review-card::after {
  content: "";
  position: absolute;
  right: -52px;
  top: -52px;
  z-index: -1;
  width: 145px;
  height: 145px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.32s ease;
}

.review-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.review-card:hover::before {
  opacity: 1;
}

.review-card:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.review-featured {
  background:
    radial-gradient(circle at 14% 14%, rgba(251, 113, 133, 0.14), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.82));
}

.review-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 13px;
  margin-bottom: 20px;
}

.review-avatar {
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 23px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.review-top h4 {
  color: #1f1430;
  font-size: 16px;
  font-weight: 950;
  margin: 0 0 4px;
}

.review-top span {
  color: #7b6e84;
  font-size: 12px;
  font-weight: 800;
}

.stars {
  position: relative;
  z-index: 2;
  display: flex;
  gap: 4px;
  color: #fb7185;
  font-size: 15px;
  margin-bottom: 16px;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 15px;
  font-weight: 700;
  line-height: 1.75;
  margin: 0;
}

.review-quote-icon {
  position: absolute;
  right: 22px;
  bottom: 16px;
  z-index: 1;
  color: rgba(139, 92, 246, 0.12);
  font-size: 68px;
  line-height: 1;
}

/* CONTROLS */
.testimonial-slider-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  margin-top: 22px;
}

.testimonial-slider-btn {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.08);
  transition: 0.25s ease;
}

.testimonial-slider-btn:hover {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  transform: translateY(-2px);
}

.testimonial-dots {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 12px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border: 0;
  padding: 0;
  border-radius: 999px;
  cursor: pointer;
  background: rgba(139, 92, 246, 0.28);
  transition: 0.25s ease;
}

.testimonial-dots button.active {
  width: 24px;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
}

/* RESPONSIVE */
@media (max-width: 991px) {
  .testimonial-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .testimonial-intro {
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
  }

  .testimonial-score-card {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonial-slide {
    flex-basis: 50%;
  }
}

@media (max-width: 767px) {
  .testimonial-wrapper {
    gap: 28px;
  }

  .testimonial-intro h2 {
    font-size: 32px;
    line-height: 1.08;
  }

  .testimonial-intro>p {
    font-size: 15px;
    line-height: 1.68;
  }

  .testimonial-score-card {
    align-items: flex-start;
    text-align: left;
    padding: 14px;
    border-radius: 20px;
  }

  .score-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .testimonial-main-btn {
    width: 100%;
  }

  .testimonial-slide {
    flex-basis: 100%;
    padding: 6px;
  }

  .review-card {
    min-height: 300px;
    padding: 22px;
    border-radius: 26px;
  }

  .review-avatar {
    width: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .testimonial-slider-controls {
    margin-top: 18px;
  }

  .testimonial-slider-btn {
    width: 42px;
    height: 42px;
  }

  .review-card p {
    font-size: 14px;
    line-height: 1.68;
  }
}

@media (max-width: 420px) {
  .testimonial-intro h2 {
    font-size: 29px;
  }

  .review-card {
    min-height: auto;
    padding: 19px;
    border-radius: 23px;
  }

  .review-top {
    align-items: flex-start;
  }

  .testimonial-dots {
    gap: 6px;
    padding: 8px 10px;
  }

  .testimonial-dots button {
    width: 7px;
    height: 7px;
  }

  .testimonial-dots button.active {
    width: 20px;
  }
}

/* ==================================================
   TESTIMONIALS SLIDER SECTION END
================================================== */





/* CTA START */
.cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.45) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.45) 45%, transparent 100%);
  pointer-events: none;
}

.cta-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.cta-glow-one {
  width: 320px;
  height: 320px;
  left: -130px;
  top: 30px;
  background: rgba(251, 113, 133, 0.14);
}

.cta-glow-two {
  width: 380px;
  height: 380px;
  right: -150px;
  bottom: -70px;
  background: rgba(139, 92, 246, 0.14);
}

.cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 34px;
  padding: 38px;
  border-radius: 38px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 37px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(245, 243, 255, 0.46), rgba(255, 241, 244, 0.38));
}

.cta-card::after {
  content: "";
  position: absolute;
  right: 34px;
  top: 28px;
  width: 110px;
  height: 110px;
  border-radius: 32px;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.22) 2px, transparent 2.5px);
  background-size: 15px 15px;
  opacity: 0.5;
  pointer-events: none;
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.cta-badge {
  margin-bottom: 16px;
}

.cta-content h2 {
  margin: 0 0 12px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 42px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.3px;
}

.cta-content p {
  max-width: 650px;
  margin: 0;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
}

.cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-primary-btn,
.cta-secondary-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 24px;
  font-size: 14px;
  font-weight: 950;
  white-space: nowrap;
  transition: 0.28s ease;
}

.cta-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.cta-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.34);
}

.cta-secondary-btn {
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.065);
}

.cta-secondary-btn:hover {
  color: #4c1d95;
  background: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .cta-section {
    padding: 26px 0 74px;
  }

  .cta-card {
    padding: 30px;
    border-radius: 34px;
  }

  .cta-content h2 {
    font-size: clamp(32px, 3.4vw, 46px);
  }

  .cta-content p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    min-height: 48px;
    padding: 0 20px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .cta-section {
    padding: 28px 0 74px;
  }

  .cta-card {
    grid-template-columns: 1fr;
    gap: 26px;
    padding: 32px;
    text-align: center;
  }

  .cta-content {
    margin: 0 auto;
  }

  .cta-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .cta-actions {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .cta-section {
    padding: 24px 0 64px;
  }

  .cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .cta-card::after {
    right: 18px;
    top: 18px;
    width: 82px;
    height: 82px;
    border-radius: 24px;
    opacity: 0.38;
  }

  .cta-content h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .cta-content p {
    font-size: 15px;
    line-height: 1.68;
  }

  .cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
  }

  .cta-primary-btn,
  .cta-secondary-btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .cta-card {
    padding: 20px;
    border-radius: 24px;
  }

  .cta-content h2 {
    font-size: 34px !important;
  }

  .cta-content p {
    font-size: 14.5px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }
}

/* CTA END */





/* FOOTER START */
.footer {
  position: relative;
  overflow: hidden;
  padding: 74px 0 24px;
  color: rgba(255, 255, 255, 0.76);
  background:
    radial-gradient(circle at 12% 10%, rgba(251, 113, 133, 0.20), transparent 30%),
    radial-gradient(circle at 92% 85%, rgba(139, 92, 246, 0.24), transparent 34%),
    linear-gradient(135deg, #120718 0%, #1f1430 45%, #35115f 100%);
}

.footer::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), transparent 90%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.64), transparent 90%);
  pointer-events: none;
}

.footer::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -170px;
  width: 820px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.20);
  filter: blur(80px);
  pointer-events: none;
}

.footer-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.footer-glow-one {
  width: 300px;
  height: 300px;
  left: -130px;
  top: 60px;
  background: rgba(251, 113, 133, 0.20);
}

.footer-glow-two {
  width: 380px;
  height: 380px;
  right: -160px;
  bottom: 10px;
  background: rgba(139, 92, 246, 0.20);
}

.footer-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(300px, 0.9fr) minmax(0, 1.35fr);
  gap: 38px;
  align-items: stretch;
}

/* BRAND BOX */
.footer-brand-box {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  background:
    radial-gradient(circle at 12% 16%, rgba(251, 113, 133, 0.16), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(255, 255, 255, 0.045));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow:
    0 24px 70px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.10);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.footer-brand-box::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 92px;
  height: 92px;
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(255, 255, 255, 0.16) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.45;
  pointer-events: none;
}

.footer-brand {
  position: relative;
  z-index: 2;
  display: inline-grid;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 18px;
}

.footer-brand:hover {
  color: #ffffff;
}

.footer-brand span {
  display: block;
  font-family: "Playfair Display", serif;
  color: #ffffff;
  font-size: 34px;
  font-weight: 800;
  letter-spacing: -1px;
  line-height: 0.95;
}

.footer-brand small {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 3px;
  text-transform: uppercase;
}

.footer-brand-box p {
  position: relative;
  z-index: 2;
  max-width: 430px;
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 15px;
  font-weight: 600;
  line-height: 1.8;
}

.footer-contact-pills {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
  margin-top: 24px;
}

.footer-contact-pills a {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 0 15px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.06));
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.10);
  transition: 0.28s ease;
}

.footer-contact-pills a i {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #8b5cf6 0%, #fb7185 100%);
  box-shadow: 0 12px 26px rgba(251, 113, 133, 0.22);
}

.footer-contact-pills a:hover {
  color: #ffffff;
  transform: translateY(-2px);
  background:
    linear-gradient(135deg, rgba(251, 113, 133, 0.20), rgba(139, 92, 246, 0.16));
  border-color: rgba(251, 113, 133, 0.28);
}

/* LINK BOXES */
.footer-links-box {
  display: grid;
  grid-template-columns: 0.78fr 0.9fr 1.32fr;
  gap: 18px;
}

.footer-link-card {
  position: relative;
  padding: 26px;
  border-radius: 30px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.092), rgba(255, 255, 255, 0.04));
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 20px 60px rgba(0, 0, 0, 0.16),
    inset 0 1px 0 rgba(255, 255, 255, 0.09);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  overflow: hidden;
}

.footer-link-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 18% 14%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 88%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.3s ease;
  pointer-events: none;
}

.footer-link-card:hover::before {
  opacity: 1;
}

.footer-link-card h4 {
  position: relative;
  z-index: 2;
  color: #ffffff;
  font-size: 16px;
  font-weight: 950;
  margin: 0 0 18px;
  letter-spacing: -0.2px;
}

.footer-link-card h4::after {
  content: "";
  display: block;
  width: 38px;
  height: 3px;
  margin-top: 10px;
  border-radius: 999px;
  background: linear-gradient(90deg, #fb7185, #8b5cf6);
}

.footer-link-card ul {
  position: relative;
  z-index: 2;
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-link-card li {
  margin-bottom: 10px;
}

.footer-link-card li:last-child {
  margin-bottom: 0;
}

.footer-link-card a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 14px;
  font-weight: 750;
  line-height: 1.4;
  transition: 0.25s ease;
}

.footer-link-card a::before {
  content: "";
  width: 6px;
  height: 6px;
  flex: 0 0 auto;
  border-radius: 999px;
  background: rgba(251, 113, 133, 0.76);
  transition: 0.25s ease;
}

.footer-link-card a:hover {
  color: #ffffff;
  transform: translateX(4px);
}

.footer-link-card a:hover::before {
  background: #ffffff;
}

/* CONTACT CARD */
.footer-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.footer-info-item {
  display: flex;
  gap: 11px;
  align-items: flex-start;
}

.footer-info-item span {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 14px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #8b5cf6 0%, #fb7185 100%);
  box-shadow: 0 12px 26px rgba(251, 113, 133, 0.18);
}

.footer-info-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  font-weight: 650;
  line-height: 1.65;
}

.footer-info-item p a {
  display: inline;
  color: rgba(255, 255, 255, 0.82);
}

.footer-info-item p a::before {
  display: none;
}

.footer-info-item p a:hover {
  color: #ffffff;
  transform: none;
}

/* FOOTER BOTTOM */
.footer-bottom {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  padding: 18px 22px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.035));
  border: 1px solid rgba(255, 255, 255, 0.10);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.70);
  font-size: 13.5px;
  font-weight: 650;
}

.footer-bottom-links {
  display: inline-flex;
  align-items: center;
  gap: 10px;
}

.footer-bottom-links a {
  color: rgba(255, 255, 255, 0.72);
  font-size: 13.5px;
  font-weight: 800;
  transition: 0.25s ease;
}

.footer-bottom-links a:hover {
  color: #ffffff;
}

.footer-bottom-links span {
  width: 5px;
  height: 5px;
  border-radius: 999px;
  background: rgba(251, 113, 133, 0.82);
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .footer {
    padding: 58px 0 20px;
  }

  .footer-wrapper {
    gap: 28px;
  }

  .footer-brand-box {
    padding: 24px;
    border-radius: 30px;
  }

  .footer-brand span {
    font-size: 30px;
  }

  .footer-brand-box p {
    font-size: 14px;
    line-height: 1.65;
  }

  .footer-link-card {
    padding: 22px;
    border-radius: 26px;
  }

  .footer-link-card li {
    margin-bottom: 8px;
  }

  .footer-bottom {
    margin-top: 22px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .footer {
    padding: 64px 0 22px;
  }

  .footer-wrapper {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .footer-brand-box {
    text-align: center;
  }

  .footer-brand-box p {
    margin-left: auto;
    margin-right: auto;
  }

  .footer-contact-pills {
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
  }

  .footer-links-box {
    grid-template-columns: repeat(2, 1fr);
  }

  .footer-contact-card {
    grid-column: 1 / -1;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .footer {
    padding: 52px 0 18px;
  }

  .footer-brand-box {
    padding: 22px;
    border-radius: 28px;
  }

  .footer-brand span {
    font-size: 30px;
  }

  .footer-brand small {
    font-size: 10px;
    letter-spacing: 2.5px;
  }

  .footer-brand-box p {
    font-size: 14px;
    line-height: 1.7;
  }

  .footer-contact-pills a {
    min-height: 50px;
    justify-content: center;
  }

  .footer-links-box {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .footer-link-card {
    padding: 22px;
    border-radius: 26px;
  }

  .footer-link-card h4 {
    margin-bottom: 16px;
  }

  .footer-info-item p {
    font-size: 13px;
  }

  .footer-bottom {
    display: grid;
    grid-template-columns: 1fr;
    text-align: center;
    justify-items: center;
    border-radius: 20px;
    padding: 16px;
  }
}

@media (max-width: 420px) {
  .footer {
    padding: 46px 0 16px;
  }

  .footer-brand-box {
    padding: 18px;
    border-radius: 24px;
  }

  .footer-brand span {
    font-size: 26px;
  }

  .footer-link-card {
    padding: 18px;
    border-radius: 22px;
  }

  .footer-contact-pills a {
    font-size: 12.5px;
  }

  .footer-bottom p,
  .footer-bottom-links a {
    font-size: 12.5px;
  }
}

/* FOOTER END */



/* FLOATING BUTTONS START */
.floating-actions {
  position: fixed;
  right: 22px;
  bottom: 24px;
  z-index: 999;
  display: grid;
  gap: 12px;
}

.floating-btn {
  position: relative;
  min-width: 154px;
  min-height: 58px;
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 8px 14px 8px 8px;
  border-radius: 999px;
  color: #ffffff;
  overflow: hidden;
  isolation: isolate;
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow:
    0 18px 44px rgba(31, 20, 48, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.24);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  transition: 0.28s ease;
}

.floating-btn::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  opacity: 1;
  transition: 0.28s ease;
}

.floating-btn::after {
  content: "";
  position: absolute;
  top: -80%;
  left: -50%;
  z-index: -1;
  width: 80%;
  height: 240%;
  background: linear-gradient(90deg,
      transparent,
      rgba(255, 255, 255, 0.34),
      transparent);
  transform: rotate(24deg);
  opacity: 0;
  transition: 0.45s ease;
}

.floating-btn:hover {
  color: #ffffff;
  transform: translateY(-4px);
  box-shadow:
    0 26px 60px rgba(31, 20, 48, 0.30),
    inset 0 1px 0 rgba(255, 255, 255, 0.30);
}

.floating-btn:hover::after {
  left: 105%;
  opacity: 1;
}

.float-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  font-size: 20px;
  background: rgba(255, 255, 255, 0.16);
  box-shadow:
    inset 0 1px 0 rgba(255, 255, 255, 0.24),
    0 10px 24px rgba(0, 0, 0, 0.14);
}

.float-text {
  display: grid;
  line-height: 1;
}

.float-text small {
  color: rgba(255, 255, 255, 0.76);
  font-size: 10px;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.float-text strong {
  margin-top: 4px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
}

.float-whatsapp::before {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, #128c4a 0%, #22c55e 100%);
}

.float-call::before {
  background:
    radial-gradient(circle at 25% 20%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
}

/* Pulse Glow */
.float-whatsapp .float-icon,
.float-call .float-icon {
  position: relative;
}

.float-whatsapp .float-icon::after,
.float-call .float-icon::after {
  content: "";
  position: absolute;
  inset: -6px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  animation: floatingPulse 1.8s infinite;
}

@keyframes floatingPulse {
  0% {
    transform: scale(0.85);
    opacity: 0.7;
  }

  100% {
    transform: scale(1.45);
    opacity: 0;
  }
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .floating-actions {
    right: 18px;
    bottom: 18px;
    gap: 10px;
  }

  .floating-btn {
    min-height: 54px;
    min-width: 148px;
  }

  .float-icon {
    width: 38px;
    height: 38px;
    font-size: 18px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .floating-actions {
    right: 16px;
    bottom: 18px;
  }

  .floating-btn {
    min-width: 58px;
    width: 58px;
    height: 58px;
    min-height: 58px;
    justify-content: center;
    padding: 0;
    border-radius: 20px;
  }

  .float-icon {
    width: 100%;
    height: 100%;
    background: transparent;
    box-shadow: none;
  }

  .float-text {
    display: none;
  }
}

/* MOBILE BOTTOM BAR */
@media (max-width: 575px) {
  .floating-actions {
    left: 12px;
    right: 12px;
    bottom: 12px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .floating-btn {
    width: 100%;
    min-width: 0;
    min-height: 54px;
    height: 54px;
    justify-content: center;
    gap: 9px;
    padding: 0 12px;
    border-radius: 18px;
  }

  .float-icon {
    width: 34px;
    height: 34px;
    font-size: 18px;
    background: rgba(255, 255, 255, 0.16);
  }

  .float-text {
    display: grid;
  }

  .float-text small {
    font-size: 9px;
  }

  .float-text strong {
    font-size: 12px;
  }
}

@media (max-width: 360px) {
  .floating-actions {
    gap: 8px;
  }

  .floating-btn {
    min-height: 50px;
    height: 50px;
    border-radius: 16px;
  }

  .float-icon {
    width: 32px;
    height: 32px;
    font-size: 17px;
  }

  .float-text small {
    display: none;
  }

  .float-text strong {
    margin-top: 0;
    font-size: 11.5px;
  }
}

/* FLOATING BUTTONS END */

/* <============ Home Page CSS END ===============> */























/* <============ About Page CSS Start  ===============> */

/* ==================================================
   ABOUT PAGE START
================================================== */

.about-page-hero,
.about-intro-section,
.care-approach-section,
.mission-section,
.facility-section,
.about-doctor-section,
.about-cta-section {
  position: relative;
  overflow: hidden;
}

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 18px 0 14px;
}

.section-heading p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* ABOUT BREADCRUMB HERO START */
.about-page-hero {
  position: relative;
  overflow: hidden;
  padding: 76px 0 42px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 30%),
    radial-gradient(circle at 90% 16%, rgba(139, 92, 246, 0.16), transparent 34%),
    radial-gradient(circle at 78% 88%, rgba(76, 29, 149, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.about-page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.58), transparent 82%);
  pointer-events: none;
}

.about-page-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -170px;
  width: 820px;
  height: 300px;
  transform: translateX(-50%);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.12);
  filter: blur(75px);
  pointer-events: none;
}

.about-hero-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(62px);
  pointer-events: none;
}

.about-hero-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.16);
}

.about-hero-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.about-hero-pattern {
  position: absolute;
  top: 82px;
  right: 9%;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.about-hero-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(330px, 390px);
  align-items: center;
  gap: 44px;
}

/* LEFT CONTENT */
.about-hero-content {
  max-width: 860px;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.about-hero-badge {
  margin-bottom: 18px;
}

.about-hero-content h1 {
  max-width: 860px;
  margin: 0 0 18px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.9px;
}

.about-hero-content h1 span {
  display: inline;
  background: linear-gradient(135deg, #4c1d95 0%, #8b5cf6 56%, #fb7185 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.about-hero-content p {
  max-width: 720px;
  margin: 0 0 24px;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.76;
}

/* BREADCRUMB */
.about-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), rgba(255, 251, 255, 0.70));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 14px 34px rgba(31, 20, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.about-breadcrumb a,
.about-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.about-breadcrumb a:hover {
  color: #8b5cf6;
}

.about-breadcrumb>i {
  color: #fb7185;
  font-size: 12px;
}

/* RIGHT CARD */
.about-hero-card {
  position: relative;
  display: grid;
  gap: 14px;
  padding: 18px;
  border-radius: 34px;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 14% 14%, rgba(251, 113, 133, 0.14), transparent 34%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.15);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.about-hero-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 33px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(245, 243, 255, 0.42), rgba(255, 241, 244, 0.34));
}

.about-hero-card::after {
  content: "";
  position: absolute;
  right: 18px;
  top: 18px;
  width: 88px;
  height: 88px;
  border-radius: 26px;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.20) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.5;
  pointer-events: none;
}

.about-hero-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 6px 4px 10px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.about-card-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.about-hero-card-head strong {
  display: block;
  color: #1f1430;
  font-size: 17px;
  font-weight: 950;
  line-height: 1.1;
}

.about-hero-card-head small {
  display: block;
  margin-top: 5px;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 800;
}

.hero-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.hero-info-item {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 13px;
  border-radius: 22px;
  color: #1f1430;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.11);
  box-shadow:
    0 14px 34px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  overflow: hidden;
  transition: 0.28s ease;
}

.hero-info-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.08), rgba(251, 113, 133, 0.08));
  opacity: 0;
  transition: 0.28s ease;
  pointer-events: none;
}

.hero-info-item:hover {
  color: #1f1430;
  transform: translateY(-3px);
  border-color: rgba(139, 92, 246, 0.20);
  box-shadow:
    0 20px 46px rgba(31, 20, 48, 0.095),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.hero-info-item:hover::before {
  opacity: 1;
}

.hero-info-icon {
  position: relative;
  z-index: 2;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #ffffff;
  background:
    radial-gradient(circle at 24% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.22);
}

.hero-info-text {
  position: relative;
  z-index: 2;
  display: grid;
  min-width: 0;
  flex: 1;
}

.hero-info-text small {
  display: block;
  color: #7b6e84;
  font-size: 10.5px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.hero-info-text strong {
  display: block;
  margin-top: 5px;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  line-height: 1.28;
}

.hero-info-arrow {
  position: relative;
  z-index: 2;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(245, 243, 255, 0.88);
  border: 1px solid rgba(139, 92, 246, 0.12);
  font-size: 13px;
  transition: 0.28s ease;
}

.hero-info-item:hover .hero-info-arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  transform: translateX(3px);
}

/* TRUST STRIP */
.about-hero-trust-strip {
  position: relative;
  z-index: 2;
  margin-top: 34px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(139, 92, 246, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 255, 0.62));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 58px rgba(31, 20, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-trust-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.about-trust-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.20);
}

.about-trust-item strong {
  display: block;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.about-trust-item span {
  display: block;
  margin-top: 4px;
  color: #7b6e84;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .about-page-hero {
    padding: 56px 0 34px;
  }

  .about-hero-box {
    gap: 34px;
  }

  .about-hero-content h1 {
    font-size: clamp(40px, 4.3vw, 60px);
    margin-bottom: 14px;
  }

  .about-hero-content p {
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 20px;
  }

  .about-hero-card {
    padding: 15px;
    border-radius: 30px;
  }

  .about-hero-card-head {
    padding-bottom: 8px;
  }

  .hero-info-item {
    min-height: 68px;
    padding: 11px;
    border-radius: 19px;
  }

  .hero-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .about-hero-trust-strip {
    margin-top: 24px;
  }

  .about-trust-item {
    min-height: 68px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .about-page-hero {
    padding: 66px 0 44px;
  }

  .about-hero-box {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-hero-content {
    max-width: 780px;
    text-align: center;
    margin: 0 auto;
  }

  .about-hero-content p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-hero-card {
    width: min(620px, 100%);
    margin: 0 auto;
  }

  .about-breadcrumb {
    justify-content: center;
  }

  .about-hero-trust-strip {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-page-hero {
    padding: 52px 0 34px;
  }

  .about-hero-content h1 {
    font-size: 39px;
    line-height: 1.02;
    letter-spacing: -1.2px;
  }

  .about-hero-content p {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-breadcrumb {
    width: 100%;
    justify-content: center;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .about-hero-card {
    padding: 13px;
    border-radius: 26px;
  }

  .about-hero-card::after {
    width: 72px;
    height: 72px;
    border-radius: 22px;
    opacity: 0.36;
  }

  .about-hero-card-head {
    padding: 4px 2px 10px;
  }

  .about-card-mark {
    width: 44px;
    height: 44px;
    border-radius: 16px;
    font-size: 20px;
  }

  .hero-info-item {
    min-height: 72px;
    border-radius: 18px;
    padding: 11px;
  }

  .hero-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 14px;
  }

  .hero-info-arrow {
    width: 30px;
    height: 30px;
  }

  .about-hero-trust-strip {
    margin-top: 24px;
    padding: 10px;
    border-radius: 24px;
  }

  .about-trust-item {
    min-height: 70px;
    border-radius: 18px;
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .about-page-hero {
    padding: 44px 0 30px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .about-hero-content h1 {
    font-size: 32px !important;
  }

  .about-hero-content p {
    font-size: 14.5px;
  }

  .about-hero-card {
    padding: 10px;
    border-radius: 22px;
  }

  .about-hero-card-head strong {
    font-size: 15px;
  }

  .about-hero-card-head small {
    font-size: 11px;
  }

  .hero-info-text small {
    font-size: 9.5px;
  }

  .hero-info-text strong {
    font-size: 12.5px;
  }

  .about-trust-item {
    align-items: flex-start;
  }
}

/* ABOUT BREADCRUMB HERO END */




/* CLINIC INTRO START */
.about-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.11), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.about-intro-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.54) 45%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.54) 45%, transparent 100%);
  pointer-events: none;
}

.about-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.about-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.about-glow-two {
  width: 380px;
  height: 380px;
  right: -170px;
  bottom: 40px;
  background: rgba(139, 92, 246, 0.15);
}

.about-intro-pattern {
  position: absolute;
  right: 8%;
  top: 90px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.about-intro-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  align-items: center;
  gap: 58px;
}

/* LEFT VISUAL */
.about-intro-visual {
  position: relative;
  width: 100%;
}

.about-main-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  border-radius: 40px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 248, 251, 0.58));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 34px 92px rgba(31, 20, 48, 0.14),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-main-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 42px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(251, 113, 133, 0.16), transparent);
}

.about-main-image::after {
  content: "";
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.08) 42%, rgba(31, 20, 48, 0.54) 100%),
    radial-gradient(circle at 78% 15%, rgba(255, 255, 255, 0.30), transparent 28%);
  pointer-events: none;
}

.about-main-image img {
  width: 100%;
  height: 510px;
  object-fit: cover;
  object-position: center;
  border-radius: 28px;
  transform: scale(1.01);
}

.about-image-top-chip {
  position: absolute;
  top: 30px;
  left: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 60px);
  padding: 11px 14px;
  border-radius: 999px;
  color: #1f1430;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.about-image-top-chip i {
  color: #8b5cf6;
}

.about-image-label {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9) 58%, rgba(251, 113, 133, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(31, 20, 48, 0.22);
}

.about-image-label-icon {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.92);
}

.about-image-label strong {
  display: block;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.about-image-label small {
  display: block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 11px;
  font-weight: 800;
}

/* STATS */
.about-stats-row {
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.84));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 60px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.about-stats-row div {
  position: relative;
  overflow: hidden;
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 13px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff, #fff8fb);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.about-stat-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 13px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18);
}

.about-stats-row strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.about-stats-row small {
  display: block;
  margin-top: 6px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

/* RIGHT CONTENT */
.about-intro-content {
  position: relative;
}

.about-intro-content h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 18px 0 16px;
}

.about-intro-content>p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.78;
  margin: 0 0 20px;
}

.about-note-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-bottom: 18px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(251, 113, 133, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 45px rgba(31, 20, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.about-note-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.about-note-card h3 {
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
  margin: 0 0 7px;
}

.about-note-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

/* FEATURE LIST */
.about-feature-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.about-feature-item {
  position: relative;
  min-height: 56px;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 14px;
  border-radius: 20px;
  color: #1f1430;
  font-size: 14px;
  font-weight: 900;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 248, 251, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.10);
  box-shadow:
    0 12px 30px rgba(31, 20, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  transition: 0.28s ease;
}

.about-feature-item:hover {
  transform: translateX(5px);
  border-color: rgba(139, 92, 246, 0.18);
  box-shadow:
    0 18px 42px rgba(31, 20, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
}

.feature-check {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6);
  box-shadow: 0 10px 22px rgba(139, 92, 246, 0.20);
}

/* ACTIONS */
.about-intro-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-intro-primary,
.about-intro-secondary {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.about-intro-primary {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.about-intro-primary:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.about-intro-secondary {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.about-intro-secondary:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .about-intro-wrapper {
    gap: 42px;
  }

  .about-main-image img {
    height: 430px;
  }

  .about-intro-content h2 {
    font-size: clamp(32px, 3.5vw, 46px);
    margin: 15px 0 12px;
  }

  .about-intro-content>p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .about-note-card {
    padding: 15px;
    margin-bottom: 15px;
  }

  .about-feature-list {
    gap: 10px;
    margin-bottom: 20px;
  }

  .about-feature-item {
    min-height: 50px;
  }

  .about-stats-row div {
    min-height: 92px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .about-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about-intro-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .about-intro-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .about-intro-content>p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-note-card {
    text-align: left;
  }

  .about-feature-item {
    text-align: left;
  }

  .about-intro-actions {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-intro-wrapper {
    gap: 36px;
  }

  .about-intro-visual {
    width: 100%;
    max-width: 100%;
  }

  .about-main-image {
    padding: 10px;
    border-radius: 30px;
  }

  .about-main-image img {
    height: 390px;
    border-radius: 22px;
    transform: none;
  }

  .about-main-image::after {
    inset: 10px;
    border-radius: 22px;
  }

  .about-image-top-chip {
    top: 20px;
    left: 20px;
    right: 20px;
    justify-content: center;
    max-width: none;
    font-size: 11px;
    padding: 9px 11px;
  }

  .about-image-label {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 12px;
    border-radius: 18px;
  }

  .about-image-label-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .about-stats-row {
    width: calc(100% - 20px);
    grid-template-columns: 1fr;
    margin-top: 16px;
    border-radius: 22px;
  }

  .about-stats-row div {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 13px;
  }

  .about-stat-icon {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .about-intro-content h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .about-intro-content>p {
    font-size: 15px;
    line-height: 1.7;
  }

  .about-note-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .about-feature-item {
    align-items: flex-start;
    min-height: auto;
    padding: 13px;
    border-radius: 17px;
    font-size: 13.5px;
    line-height: 1.35;
  }

  .about-feature-item:hover {
    transform: translateY(-2px);
  }

  .about-intro-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
  }

  .about-intro-primary,
  .about-intro-secondary {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .about-main-image img {
    height: 340px;
  }

  .about-image-top-chip {
    display: none;
  }

  .about-image-label strong {
    font-size: 13px;
  }

  .about-image-label small {
    font-size: 10px;
  }

  .about-intro-content h2 {
    font-size: 30px !important;
  }

  .about-note-card h3 {
    font-size: 16px;
  }

  .about-note-card p {
    font-size: 13.5px;
  }

  .about-stats-row {
    width: 100%;
  }
}

@media (max-width: 360px) {
  .about-main-image img {
    height: 315px;
  }
}

/* CLINIC INTRO END */



/* CARE APPROACH START */
.care-approach-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.care-approach-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.50) 46%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.50) 46%, transparent 100%);
  pointer-events: none;
}

.care-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.care-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.14);
}

.care-glow-two {
  width: 380px;
  height: 380px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.14);
}

.care-pattern {
  position: absolute;
  top: 88px;
  right: 9%;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.care-heading {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 18px 0 14px;
}

.section-heading p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

/* CARE GRID */
.care-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.care-card {
  position: relative;
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.32s ease;
}

.care-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 14% 14%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.32s ease;
}

.care-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.32s ease;
}

.care-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.care-card:hover::before {
  opacity: 1;
}

.care-card:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.care-card-featured {
  min-height: 300px;
  transform: translateY(-18px);
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.care-card-featured:hover {
  transform: translateY(-26px);
}

.care-feature-badge {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.care-feature-badge i {
  color: #fb7185;
}

.care-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.care-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
  margin-bottom: 24px;
  margin-top: 8px;
}

.care-card-featured .care-icon {
  margin-top: 38px;
}

.care-content {
  position: relative;
  z-index: 2;
}

.care-card h3 {
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  letter-spacing: -0.35px;
  margin: 0 0 10px;
}

.care-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.care-arrow {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(245, 243, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
  transition: 0.28s ease;
}

.care-card:hover .care-arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  transform: translateX(4px);
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .care-grid {
    gap: 16px;
  }

  .care-card {
    min-height: 232px;
    padding: 22px;
    border-radius: 28px;
  }

  .care-card-featured {
    min-height: 258px;
    transform: translateY(-12px);
  }

  .care-card-featured:hover {
    transform: translateY(-20px);
  }

  .care-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 23px;
    margin-bottom: 18px;
  }

  .care-card-featured .care-icon {
    margin-top: 32px;
  }

  .care-card h3 {
    font-size: 19px;
  }

  .care-card p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .care-arrow {
    width: 36px;
    height: 36px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .care-grid {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .care-card,
  .care-card-featured,
  .care-card:hover,
  .care-card-featured:hover {
    transform: none;
  }

  .care-card,
  .care-card-featured {
    min-height: auto;
  }

  .care-card-featured .care-icon {
    margin-top: 8px;
  }

  .care-feature-badge {
    position: relative;
    top: auto;
    left: auto;
    width: max-content;
    margin-bottom: 18px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 30px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.68;
  }

  .care-card {
    padding: 22px;
    border-radius: 26px;
  }

  .care-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .care-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .care-card h3 {
    font-size: 19px;
  }

  .care-card p {
    font-size: 14px;
    line-height: 1.62;
  }

  .care-arrow {
    width: 38px;
    height: 38px;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .section-heading h2 {
    font-size: 30px !important;
  }

  .care-card {
    padding: 19px;
    border-radius: 23px;
  }

  .care-feature-badge {
    font-size: 10.5px;
  }
}

/* CARE APPROACH END */

/* MISSION VISION START */
.mission-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.mission-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.52) 46%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.52) 46%, transparent 100%);
  pointer-events: none;
}

.mission-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.mission-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.mission-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.mission-pattern {
  position: absolute;
  top: 86px;
  right: 9%;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.mission-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: 48px;
}

/* LEFT CONTENT */
.mission-content {
  position: relative;
  padding: 30px;
  border-radius: 34px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.11), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 70px rgba(31, 20, 48, 0.09),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mission-content::after {
  content: "";
  position: absolute;
  right: 24px;
  top: 24px;
  width: 94px;
  height: 94px;
  border-radius: 30px;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.20) 2px, transparent 2.5px);
  background-size: 14px 14px;
  opacity: 0.52;
  pointer-events: none;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

/* FIXED H2 FONT SIZE */
.mission-content h2 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
  margin: 18px 0 16px;
}

.mission-content>p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.78;
  margin: 0;
}

.mission-highlight {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 24px;
  padding: 15px;
  border-radius: 24px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 16px 40px rgba(31, 20, 48, 0.055),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.mission-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.mission-highlight strong {
  display: block;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

.mission-highlight span {
  display: block;
  margin-top: 5px;
  color: #7b6e84;
  font-size: 12.5px;
  font-weight: 750;
  line-height: 1.4;
}

/* RIGHT CARDS */
.mission-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  align-items: stretch;
}

.mission-card {
  position: relative;
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 32px;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.32s ease;
}

.mission-card-primary {
  transform: translateY(-18px);
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.mission-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.32s ease;
}

.mission-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.32s ease;
}

.mission-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.mission-card-primary:hover {
  transform: translateY(-26px);
}

.mission-card:hover::before {
  opacity: 1;
}

.mission-card:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.mission-card-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.mission-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
  margin-bottom: 24px;
}

.mission-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 22px;
  font-weight: 950;
  letter-spacing: -0.35px;
  margin: 0 0 12px;
}

.mission-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0;
}

.mission-card-line {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 5px;
  margin-top: auto;
  border-radius: 999px;
  background:
    linear-gradient(90deg, #4c1d95, #8b5cf6, #fb7185);
  opacity: 0.86;
}

/* VALUES STRIP */
.mission-values-strip {
  position: relative;
  z-index: 2;
  margin-top: 28px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 12px;
  border-radius: 30px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 92% 82%, rgba(139, 92, 246, 0.14), transparent 32%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.78), rgba(255, 251, 255, 0.62));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 58px rgba(31, 20, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.mission-value-item {
  display: flex;
  align-items: center;
  gap: 12px;
  min-height: 76px;
  padding: 14px;
  border-radius: 22px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 248, 251, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.mission-value-item i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 28px rgba(139, 92, 246, 0.20);
}

.mission-value-item strong {
  display: block;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.15;
}

.mission-value-item span {
  display: block;
  margin-top: 4px;
  color: #7b6e84;
  font-size: 11.5px;
  font-weight: 800;
  line-height: 1.2;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .mission-wrapper {
    gap: 36px;
  }

  .mission-content {
    padding: 24px;
    border-radius: 30px;
  }

  .mission-content h2 {
    font-size: 45px !important;
    line-height: 1.04;
    margin: 15px 0 12px;
  }

  .mission-content>p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .mission-highlight {
    margin-top: 18px;
    padding: 13px;
  }

  .mission-card {
    min-height: 270px;
    padding: 22px;
    border-radius: 28px;
  }

  .mission-card-primary {
    transform: translateY(-12px);
  }

  .mission-card-primary:hover {
    transform: translateY(-20px);
  }

  .mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 23px;
    margin-bottom: 18px;
  }

  .mission-card h3 {
    font-size: 20px;
  }

  .mission-card p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .mission-values-strip {
    margin-top: 22px;
  }

  .mission-value-item {
    min-height: 68px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .mission-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .mission-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .mission-content h2 {
    font-size: 42px !important;
  }

  .mission-highlight {
    text-align: left;
  }

  .mission-cards {
    max-width: 760px;
    margin: 0 auto;
  }

  .mission-card,
  .mission-card-primary,
  .mission-card:hover,
  .mission-card-primary:hover {
    transform: none;
  }

  .mission-values-strip {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .mission-content {
    padding: 22px;
    border-radius: 28px;
  }

  .mission-content h2 {
    font-size: 35px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .mission-content>p {
    font-size: 15px;
    line-height: 1.7;
  }

  .mission-highlight {
    display: grid;
    gap: 12px;
    border-radius: 22px;
  }

  .mission-cards {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .mission-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .mission-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .mission-card-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .mission-card h3 {
    font-size: 20px;
  }

  .mission-card-line {
    margin-top: 22px;
  }

  .mission-values-strip {
    margin-top: 18px;
    padding: 10px;
    border-radius: 24px;
  }

  .mission-value-item {
    min-height: 70px;
    border-radius: 18px;
    padding: 12px;
  }
}

@media (max-width: 420px) {
  .mission-content {
    padding: 18px;
    border-radius: 24px;
  }

  .mission-content h2 {
    font-size: 30px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .mission-card {
    padding: 19px;
    border-radius: 23px;
  }

  .mission-value-item {
    align-items: flex-start;
  }
}

/* MISSION VISION END */




/* FACILITIES START */
.facility-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.facility-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.50) 46%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.50) 46%, transparent 100%);
  pointer-events: none;
}

.facility-bg-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.facility-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.14);
}

.facility-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.14);
}

.facility-pattern {
  position: absolute;
  top: 86px;
  right: 9%;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.facility-heading {
  position: relative;
  z-index: 2;
}

.section-heading {
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.4px;
  margin: 18px 0 14px;
}

.section-heading p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

/* FACILITY GRID */
.facility-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.18fr 0.92fr 0.92fr;
  gap: 18px;
  align-items: stretch;
}

.facility-card {
  position: relative;
  min-height: 250px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 30px;
  overflow: hidden;
  isolation: isolate;
  color: #1f1430;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition: 0.32s ease;
}

.facility-card-featured {
  grid-row: span 2;
  min-height: 520px;
  padding: 30px;
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.16), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.17), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.facility-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: 0.32s ease;
}

.facility-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: 0.32s ease;
}

.facility-card:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.facility-card:hover::before {
  opacity: 1;
}

.facility-card:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.facility-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.facility-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
  margin-bottom: 24px;
}

.facility-card-featured .facility-icon {
  width: 70px;
  height: 70px;
  border-radius: 24px;
  font-size: 29px;
}

.facility-content {
  position: relative;
  z-index: 2;
}

.facility-card h3 {
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.35px;
  margin: 0 0 10px;
}

.facility-card-featured h3 {
  font-size: 28px;
  letter-spacing: -0.7px;
}

.facility-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

.facility-card-featured p {
  font-size: 15px;
  line-height: 1.75;
}

.facility-meta {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.facility-meta span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.facility-meta span i {
  color: #8b5cf6;
}

/* FEATURED IMAGE AREA */
.facility-image-box {
  position: relative;
  z-index: 2;
  margin-top: auto;
  overflow: hidden;
  height: 210px;
  border-radius: 26px;
  padding: 8px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.80), rgba(255, 248, 251, 0.58));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 44px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.facility-image-box img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 20px;
}

.facility-image-box::after {
  content: "";
  position: absolute;
  inset: 8px;
  border-radius: 20px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.08) 42%, rgba(31, 20, 48, 0.46) 100%),
    radial-gradient(circle at 78% 16%, rgba(255, 255, 255, 0.28), transparent 28%);
  pointer-events: none;
}

.facility-image-badge {
  position: absolute;
  left: 20px;
  bottom: 20px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 40px);
  padding: 10px 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.9), rgba(139, 92, 246, 0.88) 58%, rgba(251, 113, 133, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(31, 20, 48, 0.20);
}

.facility-image-badge i {
  color: #ffffff;
}

.facility-arrow {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(245, 243, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
  transition: 0.28s ease;
}

.facility-card:hover .facility-arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  transform: translateX(4px);
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .facility-grid {
    gap: 16px;
  }

  .facility-card {
    min-height: 220px;
    padding: 20px;
    border-radius: 26px;
  }

  .facility-card-featured {
    min-height: 456px;
    padding: 24px;
  }

  .facility-icon {
    width: 54px;
    height: 54px;
    border-radius: 18px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .facility-card-featured .facility-icon {
    width: 62px;
    height: 62px;
    border-radius: 21px;
    font-size: 25px;
  }

  .facility-card h3 {
    font-size: 19px;
  }

  .facility-card-featured h3 {
    font-size: 25px;
  }

  .facility-card p {
    font-size: 13.5px;
    line-height: 1.58;
  }

  .facility-image-box {
    height: 160px;
    border-radius: 22px;
  }

  .facility-image-box img,
  .facility-image-box::after {
    border-radius: 16px;
  }

  .facility-arrow {
    width: 36px;
    height: 36px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .facility-grid {
    max-width: 760px;
    margin: 0 auto;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
  }

  .facility-card-featured {
    grid-row: auto;
    grid-column: 1 / -1;
    min-height: auto;
  }

  .facility-image-box {
    height: 260px;
    margin-top: 24px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2 {
    font-size: 35px;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p {
    font-size: 15px;
    line-height: 1.68;
  }

  .facility-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .facility-card,
  .facility-card-featured {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .facility-icon,
  .facility-card-featured .facility-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .facility-card h3,
  .facility-card-featured h3 {
    font-size: 20px;
    letter-spacing: -0.35px;
  }

  .facility-card p,
  .facility-card-featured p {
    font-size: 14px;
    line-height: 1.62;
  }

  .facility-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .facility-meta {
    margin-top: 18px;
  }

  .facility-meta span {
    width: 100%;
    justify-content: center;
  }

  .facility-image-box {
    height: 220px;
    margin-top: 22px;
    border-radius: 22px;
  }

  .facility-image-box img,
  .facility-image-box::after {
    border-radius: 16px;
  }

  .facility-image-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    justify-content: center;
    max-width: none;
    font-size: 11px;
  }

  .facility-arrow {
    width: 38px;
    height: 38px;
    margin-top: 18px;
  }
}

@media (max-width: 420px) {
  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .section-heading h2 {
    font-size: 30px !important;
  }

  .facility-card,
  .facility-card-featured {
    padding: 19px;
    border-radius: 23px;
  }

  .facility-image-box {
    height: 190px;
  }
}

/* FACILITIES END */





/* DOCTOR INTRO START */
.about-doctor-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 16%, rgba(251, 113, 133, 0.12), transparent 32%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(135deg, #fffbff 0%, #f5f3ff 52%, #ffffff 100%);
}

.about-doctor-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.48), transparent 82%);
  pointer-events: none;
}

.about-doctor-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.doctor-glow-one {
  width: 330px;
  height: 330px;
  left: -150px;
  top: 90px;
  background: rgba(251, 113, 133, 0.15);
}

.doctor-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.16);
}

.about-doctor-pattern {
  position: absolute;
  top: 90px;
  right: 9%;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.about-doctor-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  gap: 52px;
  align-items: center;
  padding: 32px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 30px 90px rgba(31, 20, 48, 0.11),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

/* LEFT VISUAL */
.about-doctor-visual {
  position: relative;
  width: 100%;
}

.about-doctor-image {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  border-radius: 38px;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 251, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 90px rgba(31, 20, 48, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.about-doctor-image::before {
  content: "";
  position: absolute;
  inset: -1px;
  z-index: -1;
  border-radius: 40px;
  background:
    linear-gradient(135deg, rgba(139, 92, 246, 0.22), rgba(251, 113, 133, 0.16), transparent);
}

.about-doctor-image img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.doctor-image-overlay {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.10) 42%, rgba(31, 20, 48, 0.56) 100%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.30), transparent 28%);
  pointer-events: none;
}

.doctor-mini-badge {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9) 58%, rgba(251, 113, 133, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(31, 20, 48, 0.24);
}

.doctor-mini-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.92);
}

.doctor-mini-badge strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.doctor-mini-badge small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.doctor-top-badge {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: calc(100% - 60px);
  padding: 11px 13px;
  border-radius: 999px;
  color: #1f1430;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.doctor-top-badge i {
  color: #8b5cf6;
}

/* DOCTOR STATS */
.doctor-quick-stats {
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.84));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 60px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.doctor-quick-stats div {
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 13px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff, #fff8fb);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.doctor-quick-stats i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 13px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18);
}

.doctor-quick-stats strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.doctor-quick-stats span {
  display: block;
  margin-top: 6px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

/* RIGHT CONTENT */
.about-doctor-content {
  position: relative;
}

.section-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.about-doctor-content h2 {
  margin: 18px 0 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.04;
  letter-spacing: -1.2px;
}

.about-doctor-content>p {
  max-width: 650px;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.78;
  margin: 0 0 20px;
}

.doctor-note-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-bottom: 20px;
  border-radius: 28px;
  background:
    radial-gradient(circle at 8% 20%, rgba(251, 113, 133, 0.10), transparent 30%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.72));
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow:
    0 18px 45px rgba(31, 20, 48, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.doctor-note-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.doctor-note-card h3 {
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.25;
  margin: 0 0 7px;
}

.doctor-note-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.doctor-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 0 0 26px;
}

.doctor-chip-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.74));
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: #4c1d95;
  padding: 10px 14px;
  font-weight: 950;
  font-size: 13px;
  box-shadow:
    0 12px 28px rgba(31, 20, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.doctor-chip-list span i {
  color: #8b5cf6;
}

.about-doctor-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.about-page-btn,
.about-outline-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.about-page-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.about-page-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.about-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.about-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .about-doctor-wrapper {
    gap: 40px;
    padding: 26px;
    border-radius: 36px;
  }

  .about-doctor-image img {
    height: 420px;
  }

  .about-doctor-content h2 {
    /* font-size: 45px; */
    margin: 15px 0 12px;
  }

  .about-doctor-content>p {
    font-size: 14.5px;
    line-height: 1.65;
    margin-bottom: 16px;
  }

  .doctor-note-card {
    padding: 15px;
    margin-bottom: 16px;
  }

  .doctor-chip-list {
    margin-bottom: 20px;
  }

  .doctor-quick-stats {
    margin-top: -28px;
  }

  .doctor-quick-stats div {
    min-height: 90px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .about-doctor-wrapper {
    grid-template-columns: 1fr;
    gap: 42px;
    padding: 28px;
  }

  .about-doctor-visual {
    width: 100%;
    max-width: 680px;
    margin: 0 auto;
  }

  .about-doctor-content {
    max-width: 780px;
    margin: 0 auto;
    text-align: center;
  }

  .about-doctor-content>p {
    margin-left: auto;
    margin-right: auto;
  }

  .doctor-note-card {
    text-align: left;
  }

  .doctor-chip-list {
    justify-content: center;
  }

  .about-doctor-actions {
    justify-content: center;
  }

  .about-doctor-image img {
    height: 480px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-doctor-section .container {
    max-width: 100%;
    padding-left: 12px;
    padding-right: 12px;
  }

  .about-doctor-wrapper {
    width: 100%;
    padding: 12px;
    border-radius: 28px;
    gap: 36px;
  }

  .about-doctor-visual {
    max-width: 100%;
  }

  .about-doctor-image {
    padding: 8px;
    border-radius: 26px;
  }

  .about-doctor-image img {
    height: 400px;
    border-radius: 20px;
  }

  .doctor-image-overlay {
    inset: 8px;
    border-radius: 20px;
  }

  .doctor-top-badge {
    top: 18px;
    right: 18px;
    max-width: calc(100% - 36px);
    font-size: 11px;
    padding: 9px 11px;
  }

  .doctor-mini-badge {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 13px;
    border-radius: 18px;
  }

  .doctor-mini-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .doctor-mini-badge strong {
    font-size: 20px;
  }

  .doctor-mini-badge small {
    font-size: 11px;
  }

  .doctor-quick-stats {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    margin-top: 16px;
    border-radius: 22px;
  }

  .doctor-quick-stats div {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 13px;
  }

  .doctor-quick-stats i {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .about-doctor-content h2 {
    font-size: 30px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .about-doctor-content>p {
    font-size: 15px;
    line-height: 1.7;
  }

  .doctor-note-card {
    display: grid;
    gap: 12px;
    padding: 16px;
    border-radius: 22px;
  }

  .doctor-note-icon {
    width: 46px;
    height: 46px;
    border-radius: 16px;
  }

  .doctor-chip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .doctor-chip-list span {
    width: 100%;
    justify-content: center;
  }

  .about-doctor-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 11px;
    width: 100%;
  }

  .about-page-btn,
  .about-outline-btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .about-doctor-section .container {
    padding-left: 10px;
    padding-right: 10px;
  }

  .about-doctor-wrapper {
    padding: 10px;
    border-radius: 24px;
  }

  .about-doctor-image img {
    height: 340px;
  }

  .doctor-top-badge {
    display: none;
  }

  .about-doctor-content h2 {
    font-size: 30px !important;
  }

  .doctor-note-card h3 {
    font-size: 16px;
  }

  .doctor-note-card p {
    font-size: 13.5px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }
}

@media (max-width: 360px) {
  .about-doctor-image img {
    height: 315px;
  }
}

/* DOCTOR INTRO END */





/* BUTTONS */
.about-page-btn,
.about-outline-btn {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.about-page-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.about-page-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
}

.about-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.about-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* ABOUT CTA START */
.about-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.about-cta-section::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.04) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.46) 48%, transparent 100%);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, rgba(0, 0, 0, 0.46) 48%, transparent 100%);
  pointer-events: none;
}

.about-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(58px);
  pointer-events: none;
}

.about-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.about-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.about-cta-pattern {
  position: absolute;
  top: 46px;
  right: 9%;
  width: 156px;
  height: 156px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.about-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 380px;
  align-items: stretch;
  gap: 24px;
  padding: 20px;
  border-radius: 42px;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.about-cta-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 41px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.74), rgba(245, 243, 255, 0.42), rgba(255, 241, 244, 0.34));
}

.about-cta-content {
  position: relative;
  padding: 24px;
  border-radius: 32px;
}

.about-cta-badge {
  margin-bottom: 18px;
}

.about-cta-card h2 {
  max-width: 780px;
  margin: 0 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -1.2px;
}

.about-cta-card p {
  max-width: 660px;
  margin: 0;
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
}

.about-cta-points {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.about-cta-points span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.about-cta-points span i {
  color: #8b5cf6;
}

/* RIGHT ACTION CARD */
.about-cta-action-card {
  position: relative;
  padding: 26px;
  border-radius: 32px;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.14), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(245, 243, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 18px 54px rgba(31, 20, 48, 0.08),
    inset 0 1px 0 rgba(255, 255, 255, 0.96);
}

.about-cta-action-card::after {
  content: "";
  position: absolute;
  right: -36px;
  top: -36px;
  width: 118px;
  height: 118px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.09);
  pointer-events: none;
}

.about-cta-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.about-cta-action-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.25;
  margin: 0 0 10px;
}

.about-cta-action-card p {
  position: relative;
  z-index: 2;
  font-size: 14px;
  line-height: 1.62;
  margin-bottom: 22px;
}

.about-cta-actions {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr;
  gap: 11px;
}

.about-page-btn,
.about-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.about-page-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.about-page-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.about-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.about-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
}

/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .about-cta-section {
    padding: 26px 0 74px;
  }

  .about-cta-card {
    grid-template-columns: minmax(0, 1fr) 350px;
    padding: 18px;
    border-radius: 38px;
  }

  .about-cta-content {
    padding: 22px;
  }

  .about-cta-card h2 {
    font-size: 45px !important;
    line-height: 1.04;
  }

  .about-cta-card p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .about-cta-action-card {
    padding: 22px;
    border-radius: 28px;
  }
}

/* TABLET */
@media (max-width: 991px) {
  .about-cta-section {
    padding: 28px 0 74px;
  }

  .about-cta-card {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
    text-align: center;
  }

  .about-cta-content {
    padding: 20px;
  }

  .about-cta-card h2 {
    font-size: 42px !important;
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .about-cta-points {
    justify-content: center;
  }

  .about-cta-action-card {
    max-width: 620px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }

  .about-cta-icon {
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .about-cta-section {
    padding: 24px 0 64px;
  }

  .about-cta-card {
    padding: 12px;
    border-radius: 28px;
  }

  .about-cta-content {
    padding: 16px;
  }

  .about-cta-card h2 {
    font-size: 35px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .about-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .about-cta-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .about-cta-points span {
    justify-content: center;
    width: 100%;
  }

  .about-cta-action-card {
    padding: 20px;
    border-radius: 24px;
  }

  .about-cta-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .about-page-btn,
  .about-outline-btn {
    width: 100%;
    min-height: 52px;
  }
}

@media (max-width: 420px) {
  .about-cta-card {
    padding: 10px;
    border-radius: 24px;
  }

  .about-cta-content {
    padding: 14px;
  }

  .about-cta-card h2 {
    font-size: 30px !important;
  }

  .about-cta-action-card {
    padding: 18px;
    border-radius: 22px;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }
}

/* ABOUT CTA END */

/* ==================================================
   ABOUT PAGE END
================================================== */
























/* ==================================================
   DENTIST PROFILE PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading h2,
.dentist-profile-content h2,
.method-left-card h2,
.dentist-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.dentist-profile-content>p,
.method-left-card>p,
.dentist-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

.card-arrow {
  position: relative;
  z-index: 2;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  margin-top: auto;
  border-radius: 999px;
  color: #4c1d95;
  background: rgba(245, 243, 255, 0.9);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
  transition: 0.28s ease;
}

.premium-hover:hover .card-arrow {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6);
  transform: translateX(4px);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .dentist-primary-btn,
  .dentist-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* DENTIST BREADCRUMB HERO START */
.dentist-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.dentist-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.breadcrumb-glow,
.dentist-bg-glow,
.dentist-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.breadcrumb-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.breadcrumb-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.breadcrumb-pattern,
.dentist-section-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.breadcrumb-hero-box {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.breadcrumb-hero-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.breadcrumb-hero-box p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.breadcrumb-nav a,
.breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* DENTIST BREADCRUMB HERO END */


/* DOCTOR PROFILE INTRO START */
.dentist-profile-intro {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.dentist-intro-glow-one,
.specialization-glow-one,
.method-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.dentist-intro-glow-two,
.specialization-glow-two,
.method-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.dentist-profile-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: 52px;
}

.dentist-profile-visual {
  position: relative;
}

.dentist-image-card {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 12px;
  border-radius: 38px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.76), rgba(255, 248, 251, 0.56));
  border: 1px solid rgba(255, 255, 255, 0.92);
  box-shadow:
    0 32px 90px rgba(31, 20, 48, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dentist-image-card img {
  width: 100%;
  height: 500px;
  display: block;
  object-fit: cover;
  object-position: center top;
  border-radius: 28px;
}

.dentist-image-overlay {
  position: absolute;
  inset: 12px;
  z-index: 1;
  border-radius: 28px;
  background:
    linear-gradient(180deg, rgba(31, 20, 48, 0.02) 0%, rgba(31, 20, 48, 0.10) 42%, rgba(31, 20, 48, 0.56) 100%),
    radial-gradient(circle at 76% 14%, rgba(255, 255, 255, 0.30), transparent 28%);
  pointer-events: none;
}

.dentist-name-card {
  position: absolute;
  left: 30px;
  right: 30px;
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 14px 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.26), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9) 58%, rgba(251, 113, 133, 0.88));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 22px 50px rgba(31, 20, 48, 0.24);
}

.dentist-name-icon {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.92);
}

.dentist-name-card strong {
  display: block;
  color: #ffffff;
  font-size: 22px;
  font-weight: 950;
  line-height: 1;
}

.dentist-name-card small {
  display: block;
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 800;
}

.dentist-top-chip {
  position: absolute;
  top: 30px;
  right: 30px;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 13px;
  border-radius: 999px;
  color: #1f1430;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  box-shadow: 0 18px 42px rgba(31, 20, 48, 0.12);
}

.dentist-top-chip i {
  color: #8b5cf6;
}

.dentist-quick-stats {
  position: relative;
  z-index: 4;
  width: calc(100% - 48px);
  margin: -34px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 12px;
  border-radius: 28px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.84));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 24px 60px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.dentist-quick-stats div {
  min-height: 104px;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 13px;
  border-radius: 20px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.08), transparent 32%),
    linear-gradient(135deg, #ffffff, #fff8fb);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.dentist-quick-stats i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  margin-bottom: 8px;
  border-radius: 13px;
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.28), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 12px 24px rgba(139, 92, 246, 0.18);
}

.dentist-quick-stats strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
  line-height: 1;
}

.dentist-quick-stats span {
  display: block;
  margin-top: 6px;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 850;
  line-height: 1.25;
}

.dentist-profile-content {
  position: relative;
}

.dentist-note-card {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  padding: 18px;
  margin-top: 22px;
  border-radius: 28px;
}

.dentist-note-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.dentist-note-card h3 {
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 7px;
}

.dentist-note-card p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

.doctor-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 11px;
  margin: 22px 0 26px;
}

.doctor-chip-list span {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(245, 243, 255, 0.74));
  border: 1px solid rgba(139, 92, 246, 0.12);
  color: #4c1d95;
  padding: 10px 14px;
  font-weight: 950;
  font-size: 13px;
  box-shadow:
    0 12px 28px rgba(31, 20, 48, 0.045),
    inset 0 1px 0 rgba(255, 255, 255, 0.92);
}

.doctor-chip-list span i {
  color: #8b5cf6;
}

.dentist-profile-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* DOCTOR PROFILE INTRO END */


/* DOCTOR DETAILS START */
.dentist-details-section {
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

.dentist-details-grid {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(0, 1.1fr);
  gap: 22px;
  align-items: stretch;
}

.dentist-profile-card,
.dentist-detail-highlight {
  border-radius: 34px;
  padding: 24px;
}

.profile-card-head {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  padding-bottom: 16px;
  margin-bottom: 14px;
  border-bottom: 1px solid rgba(139, 92, 246, 0.12);
}

.profile-card-head span,
.detail-highlight-icon {
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 18px;
  color: #ffffff;
  font-size: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.profile-card-head strong {
  display: block;
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
}

.profile-card-head small {
  color: #7b6e84;
  font-size: 12px;
  font-weight: 800;
}

.profile-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.profile-info-item {
  padding: 14px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(139, 92, 246, 0.10);
}

.profile-info-item small {
  display: block;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.profile-info-item strong {
  display: block;
  margin-top: 5px;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
}

.dentist-detail-highlight h3 {
  position: relative;
  z-index: 2;
  margin: 20px 0 12px;
  color: #1f1430;
  font-size: 26px;
  font-weight: 950;
  letter-spacing: -0.7px;
  line-height: 1.16;
}

.dentist-detail-highlight p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0 0 20px;
}

.detail-highlight-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 11px;
}

.detail-highlight-list span {
  min-height: 44px;
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 10px 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.detail-highlight-list span i {
  color: #8b5cf6;
}

/* DOCTOR DETAILS END */


/* SPECIALIZATION START */
.dentist-specialization-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.specialization-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.92fr 1.16fr 0.92fr;
  gap: 20px;
  align-items: stretch;
}

.specialization-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 32px;
}

.specialization-featured {
  min-height: 300px;
  transform: translateY(-18px);
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.specialization-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.specialization-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.specialization-badge i {
  color: #fb7185;
}

.specialization-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
  margin-bottom: 24px;
}

.specialization-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  margin: 0 0 10px;
}

.specialization-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 22px;
}

/* SPECIALIZATION END */


/* CARE METHOD START */
.dentist-method-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.method-pattern {
  top: 70px;
  left: 8%;
  right: auto;
}

.dentist-method-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
}

.method-left-card {
  padding: 30px;
  border-radius: 34px;
}

.method-mini-points {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.method-mini-points span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.method-mini-points span i {
  color: #8b5cf6;
}

.method-step-list {
  display: grid;
  gap: 14px;
}

.method-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
}

.method-step-number {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #ffffff;
  font-size: 14px;
  font-weight: 950;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 16px 34px rgba(139, 92, 246, 0.24);
}

.method-step h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 7px;
}

.method-step p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

/* CARE METHOD END */


/* CTA START */
.dentist-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.dentist-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.dentist-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.dentist-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.dentist-cta-content {
  position: relative;
  z-index: 2;
}

.dentist-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.dentist-primary-btn,
.dentist-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.dentist-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.dentist-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.dentist-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.dentist-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .dentist-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .breadcrumb-hero-box {
    padding: 28px;
  }

  .dentist-profile-wrapper {
    gap: 40px;
  }

  .dentist-image-card img {
    height: 420px;
  }

  .section-heading h2,
  .dentist-profile-content h2,
  .method-left-card h2,
  .dentist-cta-card h2 {
    font-size: 40px !important;
  }

  .dentist-profile-content>p,
  .method-left-card>p,
  .dentist-cta-card p {
    font-size: 14.5px;
    line-height: 1.65;
  }

  .specialization-card {
    min-height: 235px;
    padding: 22px;
  }

  .specialization-featured {
    min-height: 260px;
    transform: translateY(-12px);
  }

  .specialization-featured:hover {
    transform: translateY(-20px);
  }

  .dentist-quick-stats div {
    min-height: 90px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .dentist-profile-wrapper,
  .dentist-details-grid,
  .dentist-method-wrapper,
  .dentist-cta-card {
    grid-template-columns: 1fr;
  }

  .dentist-profile-visual {
    max-width: 680px;
    margin: 0 auto;
  }

  .dentist-profile-content,
  .section-heading,
  .method-left-card,
  .dentist-cta-card {
    text-align: center;
  }

  .dentist-profile-content>p,
  .method-left-card>p,
  .dentist-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .dentist-profile-actions,
  .dentist-cta-actions,
  .doctor-chip-list,
  .method-mini-points {
    justify-content: center;
  }

  .dentist-profile-card,
  .dentist-detail-highlight,
  .method-step-list,
  .specialization-grid {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .specialization-grid {
    grid-template-columns: 1fr;
  }

  .specialization-featured,
  .specialization-featured:hover {
    transform: none;
  }

  .dentist-image-card img {
    height: 480px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .dentist-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .breadcrumb-hero-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .breadcrumb-hero-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .breadcrumb-hero-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .dentist-profile-content h2,
  .method-left-card h2,
  .dentist-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .dentist-profile-content>p,
  .method-left-card>p,
  .dentist-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .dentist-profile-wrapper {
    gap: 36px;
  }

  .dentist-image-card {
    padding: 8px;
    border-radius: 26px;
  }

  .dentist-image-card img {
    height: 390px;
    border-radius: 20px;
  }

  .dentist-image-overlay {
    inset: 8px;
    border-radius: 20px;
  }

  .dentist-top-chip {
    top: 18px;
    right: 18px;
    font-size: 11px;
    padding: 9px 11px;
  }

  .dentist-name-card {
    left: 18px;
    right: 18px;
    bottom: 18px;
    padding: 13px;
    border-radius: 18px;
  }

  .dentist-name-icon {
    width: 38px;
    height: 38px;
    border-radius: 14px;
  }

  .dentist-name-card strong {
    font-size: 20px;
  }

  .dentist-name-card small {
    font-size: 11px;
  }

  .dentist-quick-stats {
    width: calc(100% - 16px);
    grid-template-columns: 1fr;
    margin-top: 16px;
    border-radius: 22px;
  }

  .dentist-quick-stats div {
    min-height: auto;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 12px;
    text-align: left;
    padding: 13px;
  }

  .dentist-quick-stats i {
    margin-bottom: 0;
    flex: 0 0 auto;
  }

  .dentist-note-card,
  .method-step {
    display: grid;
    text-align: left;
  }

  .doctor-chip-list {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .doctor-chip-list span {
    justify-content: center;
  }

  .dentist-profile-actions,
  .dentist-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .dentist-primary-btn,
  .dentist-outline-btn {
    width: 100%;
  }

  .dentist-profile-card,
  .dentist-detail-highlight,
  .specialization-card,
  .method-left-card,
  .method-step {
    border-radius: 26px;
    padding: 22px;
  }

  .specialization-card,
  .specialization-featured {
    min-height: auto;
  }

  .specialization-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .specialization-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .specialization-card h3 {
    font-size: 20px;
  }

  .card-arrow {
    margin-top: 18px;
  }

  .dentist-cta-card {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 420px) {
  .breadcrumb-hero-box h1 {
    font-size: 32px;
  }

  .breadcrumb-hero-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .dentist-profile-content h2,
  .method-left-card h2,
  .dentist-cta-card h2 {
    font-size: 29px !important;
  }

  .dentist-image-card img {
    height: 330px;
  }

  .dentist-top-chip {
    display: none;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .dentist-profile-card,
  .dentist-detail-highlight,
  .specialization-card,
  .method-left-card,
  .method-step {
    padding: 19px;
    border-radius: 23px;
  }

  .dentist-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

@media (max-width: 360px) {
  .dentist-image-card img {
    height: 310px;
  }
}

/* ==================================================
   DENTIST PROFILE PAGE END
================================================== */


























/* ==================================================
   SERVICES PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 780px;
  margin: 0 auto 46px;
}

.section-heading h2,
.services-intro-content h2,
.process-content h2,
.services-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.services-intro-content>p,
.process-content>p,
.services-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .service-primary-btn,
  .service-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* SERVICES BREADCRUMB HERO START */
.services-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.services-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.service-page-glow,
.service-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.service-page-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.service-page-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.service-page-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.services-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.services-breadcrumb-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 46px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.services-breadcrumb-box p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.services-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.services-breadcrumb-nav a,
.services-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.services-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.services-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* SERVICES BREADCRUMB HERO END */

/* SERVICES INTRO START */
.services-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.service-page-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.service-intro-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.service-intro-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.services-intro-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.92fr);
  align-items: center;
  gap: 46px;
}

/* LEFT CONTENT */
.services-intro-content {
  position: relative;
  z-index: 2;
  max-width: 660px;
}

.services-intro-content h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.services-intro-content>p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* RIGHT CARD FIXED */
.services-intro-card {
  position: relative;
  z-index: 2;
  width: 100%;
  min-height: 330px;
  display: block !important;
  padding: 34px;
  border-radius: 34px;
}

.services-intro-card::before {
  pointer-events: none;
}

.services-intro-card::after {
  pointer-events: none;
}

.services-intro-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 24px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.services-intro-card-content {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.services-intro-card h3 {
  display: block;
  width: 100%;
  max-width: 100%;
  color: #1f1430;
  font-size: 27px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.6px;
  margin: 0 0 14px;
}

.services-intro-card p {
  display: block;
  width: 100%;
  max-width: 100%;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.services-mini-points {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.services-mini-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  line-height: 1;
  white-space: nowrap;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.services-mini-points span i {
  color: #8b5cf6;
  font-size: 13px;
}

/* TABLET */
@media (max-width: 991px) {
  .services-intro-wrapper {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .services-intro-content {
    max-width: 760px;
    margin: 0 auto;
    text-align: center;
  }

  .services-intro-content>p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-intro-card {
    max-width: 760px;
    min-height: auto;
    margin: 0 auto;
  }

  .services-mini-points {
    justify-content: center;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .services-intro-card {
    padding: 24px;
    border-radius: 26px;
  }

  .services-intro-content h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .services-intro-content>p {
    font-size: 15px;
    line-height: 1.68;
  }

  .services-intro-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 20px;
  }

  .services-intro-card h3 {
    font-size: 22px;
    line-height: 1.18;
  }

  .services-intro-card p {
    font-size: 14px;
    line-height: 1.65;
  }

  .services-mini-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 9px;
  }

  .services-mini-points span {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .services-intro-card {
    padding: 20px;
    border-radius: 23px;
  }

  .services-intro-content h2 {
    font-size: 29px !important;
  }

  .services-intro-card h3 {
    font-size: 20px;
  }
}

/* SERVICES INTRO END */


/* SERVICES GRID START */
.services-grid-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.service-grid-pattern {
  top: 120px;
}

.service-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.service-card {
  min-height: 285px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 30px;
}

.service-card-featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 42px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.service-feature-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.service-feature-badge i {
  color: #fb7185;
}

.service-icon {
  position: relative;
  z-index: 2;
  margin-bottom: 22px;
}

.service-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 20px;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 10px;
}

.service-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0 0 22px;
}

.service-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.service-link:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

/* SERVICES GRID END */


/* PROCESS START */
.service-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.process-pattern {
  top: 70px;
  left: 8%;
  right: auto;
}

.service-process-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: 44px;
  align-items: center;
}

.process-content {
  padding: 30px;
  border-radius: 34px;
}

.process-step-list {
  display: grid;
  gap: 14px;
}

.process-step {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 18px;
  border-radius: 26px;
}

.process-step-number {
  font-size: 14px;
  font-weight: 950;
}

.process-step h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 7px;
}

.process-step p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.65;
  margin: 0;
}

/* PROCESS END */


/* SERVICES CTA START */
.services-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.service-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.service-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.services-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.services-cta-content {
  position: relative;
  z-index: 2;
}

.services-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* SERVICES CTA END */


/* BUTTONS */
.service-primary-btn,
.service-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.service-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.service-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.service-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.service-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .services-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .services-breadcrumb-box {
    padding: 28px;
  }

  .section-heading h2,
  .services-intro-content h2,
  .process-content h2,
  .services-cta-card h2 {
    font-size: 40px !important;
  }

  .services-intro-wrapper,
  .service-process-wrapper {
    gap: 36px;
  }

  .service-card {
    min-height: 245px;
    padding: 21px;
  }

  .service-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 23px;
    margin-bottom: 18px;
  }

  .service-card h3 {
    font-size: 18px;
  }

  .service-card p {
    font-size: 13.2px;
    line-height: 1.55;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .services-intro-wrapper,
  .service-process-wrapper,
  .services-cta-card {
    grid-template-columns: 1fr;
  }

  .services-intro-content,
  .section-heading,
  .process-content,
  .services-cta-card {
    text-align: center;
  }

  .services-intro-content>p,
  .process-content>p,
  .services-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .services-mini-points,
  .process-mini-points,
  .services-cta-actions {
    justify-content: center;
  }

  .services-intro-card,
  .process-step-list,
  .service-grid {
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .services-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .services-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .services-breadcrumb-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .services-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .services-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .services-intro-content h2,
  .process-content h2,
  .services-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .services-intro-content>p,
  .process-content>p,
  .services-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .services-intro-card,
  .service-card,
  .process-content,
  .process-step {
    padding: 22px;
    border-radius: 26px;
  }

  .services-intro-wrapper,
  .service-process-wrapper {
    gap: 34px;
  }

  .service-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .service-card {
    min-height: auto;
  }

  .service-icon,
  .services-intro-icon,
  .process-step-number {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .service-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .process-step {
    display: grid;
    text-align: left;
  }

  .services-mini-points,
  .process-mini-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .services-mini-points span,
  .process-mini-points span {
    justify-content: center;
  }

  .services-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .services-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-primary-btn,
  .service-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .services-breadcrumb-box h1 {
    font-size: 32px;
  }

  .services-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .services-intro-content h2,
  .process-content h2,
  .services-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .services-intro-card,
  .service-card,
  .process-content,
  .process-step {
    padding: 19px;
    border-radius: 23px;
  }

  .services-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   SERVICES PAGE END
================================================== */





























/* ==================================================
   GALLERY PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.gallery-intro-content h2,
.gallery-showcase-content h2,
.doctor-gallery-content h2,
.gallery-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.gallery-intro-content>p,
.gallery-showcase-content>p,
.doctor-gallery-content>p,
.gallery-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .gallery-primary-btn,
  .gallery-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* BREADCRUMB HERO START */
.gallery-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.gallery-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.gallery-page-glow,
.gallery-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.gallery-page-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.gallery-page-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.gallery-page-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.gallery-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.gallery-breadcrumb-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 46px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.gallery-breadcrumb-box p {
  max-width: 720px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.gallery-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.gallery-breadcrumb-nav a,
.gallery-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.gallery-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.gallery-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* BREADCRUMB HERO END */


/* GALLERY INTRO START */
.gallery-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.gallery-intro-glow-one,
.gallery-grid-glow-one,
.treatment-glow-one,
.equipment-glow-one,
.doctor-gallery-glow-one,
.result-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.gallery-intro-glow-two,
.gallery-grid-glow-two,
.treatment-glow-two,
.equipment-glow-two,
.doctor-gallery-glow-two,
.result-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.gallery-intro-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.gallery-intro-card {
  padding: 28px;
  border-radius: 34px;
}

.gallery-intro-icon,
.equipment-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.gallery-intro-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 12px;
}

.gallery-intro-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.gallery-mini-points,
.gallery-showcase-points {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.gallery-mini-points span,
.gallery-showcase-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.gallery-mini-points span i,
.gallery-showcase-points span i {
  color: #8b5cf6;
}

/* GALLERY INTRO END */


/* CATEGORY STRIP START */
.gallery-category-section {
  position: relative;
  z-index: 5;
  margin-bottom: -42px;
}

.gallery-category-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 30px;
}

.gallery-category-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
  transition: 0.28s ease;
}

.gallery-category-pill i {
  color: #8b5cf6;
}

.gallery-category-pill:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  transform: translateY(-2px);
}

.gallery-category-pill:hover i {
  color: #ffffff;
}

/* CATEGORY STRIP END */


/* BASE GALLERY CARD START */
.gallery-card {
  position: relative;
  min-height: 280px;
  border-radius: 30px;
  padding: 10px;
}

.gallery-card img {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  min-height: 260px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 22px;
  transition: transform 0.42s ease;
}

.gallery-card:hover img {
  transform: scale(1.05);
}

.gallery-overlay {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 3;
  padding: 16px;
  border-radius: 22px;
  color: #ffffff;
  background:
    radial-gradient(circle at 22% 18%, rgba(255, 255, 255, 0.24), transparent 30%),
    linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.88) 58%, rgba(251, 113, 133, 0.86));
  border: 1px solid rgba(255, 255, 255, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 16px 36px rgba(31, 20, 48, 0.20);
  transform: translateY(10px);
  opacity: 0.96;
  transition: 0.32s ease;
}

.gallery-card:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay span {
  display: inline-flex;
  color: rgba(255, 255, 255, 0.86);
  font-size: 11px;
  font-weight: 950;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  margin-bottom: 7px;
}

.gallery-overlay h3 {
  color: #ffffff;
  font-size: 18px;
  font-weight: 950;
  line-height: 1.15;
  margin: 0 0 6px;
}

.gallery-overlay p {
  color: rgba(255, 255, 255, 0.82);
  font-size: 12px;
  font-weight: 700;
  line-height: 1.4;
  margin: 0;
}

/* BASE GALLERY CARD END */


/* CLINIC GRID START */
.gallery-grid-section {
  position: relative;
  overflow: hidden;
  padding-top: 132px;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.gallery-grid-pattern {
  top: 150px;
}

.gallery-masonry-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 250px;
  gap: 18px;
}

.gallery-card-large {
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-card-wide {
  grid-column: span 2;
}

.gallery-masonry-grid .gallery-card {
  min-height: auto;
}

.gallery-masonry-grid .gallery-card img {
  min-height: 100%;
}

/* CLINIC GRID END */


/* TREATMENT ROOM START */
.gallery-showcase-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.gallery-showcase-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
}

.treatment-gallery-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.treatment-card-tall {
  grid-row: span 2;
  min-height: 578px;
}

/* TREATMENT ROOM END */


/* EQUIPMENT GALLERY START */
.equipment-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.equipment-pattern {
  top: 120px;
}

.equipment-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.equipment-card {
  border-radius: 32px;
  padding: 12px;
}

.equipment-image {
  position: relative;
  z-index: 2;
  overflow: hidden;
  height: 250px;
  border-radius: 24px;
}

.equipment-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: transform 0.42s ease;
}

.equipment-card:hover .equipment-image img {
  transform: scale(1.05);
}

.equipment-content {
  position: relative;
  z-index: 2;
  padding: 22px 12px 12px;
}

.equipment-icon {
  margin-bottom: 18px;
}

.equipment-content h3 {
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.equipment-content p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* EQUIPMENT GALLERY END */


/* DOCTOR TEAM GALLERY START */
.doctor-gallery-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.doctor-gallery-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 44px;
  align-items: center;
}

.doctor-gallery-content .gallery-primary-btn {
  margin-top: 26px;
}

.doctor-photo-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 18px;
}

.doctor-photo-main {
  grid-row: span 2;
  min-height: 578px;
}

/* DOCTOR TEAM GALLERY END */


/* BEFORE AFTER START */
.before-after-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.result-pattern {
  top: 120px;
}

.before-after-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.before-after-card {
  border-radius: 34px;
  padding: 16px;
}

.before-after-images {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.result-image {
  position: relative;
  overflow: hidden;
  height: 280px;
  border-radius: 24px;
}

.result-image img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
  transition: transform 0.42s ease;
}

.before-after-card:hover .result-image img {
  transform: scale(1.05);
}

.result-image span {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 3;
  min-height: 32px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 12px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.90), rgba(139, 92, 246, 0.88), rgba(251, 113, 133, 0.86));
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.18);
}

.before-after-content {
  position: relative;
  z-index: 2;
  padding: 22px 8px 4px;
}

.before-after-content h3 {
  color: #1f1430;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 8px;
}

.before-after-content p {
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* BEFORE AFTER END */


/* CTA START */
.gallery-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.gallery-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.gallery-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.gallery-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.gallery-cta-content {
  position: relative;
  z-index: 2;
}

.gallery-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.gallery-primary-btn,
.gallery-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.gallery-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.gallery-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.gallery-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.gallery-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .gallery-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .gallery-breadcrumb-box {
    padding: 28px;
  }

  .section-heading h2,
  .gallery-intro-content h2,
  .gallery-showcase-content h2,
  .doctor-gallery-content h2,
  .gallery-cta-card h2 {
    font-size: 40px !important;
  }

  .gallery-intro-wrapper,
  .gallery-showcase-wrapper,
  .doctor-gallery-wrapper {
    gap: 36px;
  }

  .gallery-masonry-grid {
    grid-auto-rows: 220px;
  }

  .treatment-card-tall,
  .doctor-photo-main {
    min-height: 500px;
  }

  .result-image {
    height: 240px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .gallery-intro-wrapper,
  .gallery-showcase-wrapper,
  .doctor-gallery-wrapper,
  .gallery-cta-card {
    grid-template-columns: 1fr;
  }

  .gallery-intro-content,
  .section-heading,
  .gallery-showcase-content,
  .doctor-gallery-content,
  .gallery-cta-card {
    text-align: center;
  }

  .gallery-intro-content>p,
  .gallery-showcase-content>p,
  .doctor-gallery-content>p,
  .gallery-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-mini-points,
  .gallery-showcase-points,
  .gallery-cta-actions {
    justify-content: center;
  }

  .gallery-intro-card,
  .gallery-masonry-grid,
  .treatment-gallery-grid,
  .equipment-grid,
  .doctor-photo-grid,
  .before-after-grid {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .gallery-masonry-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 250px;
  }

  .equipment-grid {
    grid-template-columns: 1fr;
  }

  .before-after-grid {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .gallery-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .gallery-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .gallery-breadcrumb-box h1 {
    font-size: 32px !important;
    letter-spacing: -1px;
  }

  .gallery-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .gallery-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .gallery-intro-content h2,
  .gallery-showcase-content h2,
  .doctor-gallery-content h2,
  .gallery-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .gallery-intro-content>p,
  .gallery-showcase-content>p,
  .doctor-gallery-content>p,
  .gallery-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .gallery-category-section {
    margin-bottom: -28px;
  }

  .gallery-category-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .gallery-category-strip::-webkit-scrollbar {
    display: none;
  }

  .gallery-category-pill {
    flex: 0 0 auto;
    min-height: 40px;
    font-size: 12px;
  }

  .gallery-grid-section {
    padding-top: 92px;
  }

  .gallery-intro-card,
  .equipment-card,
  .before-after-card {
    padding: 22px;
    border-radius: 26px;
  }

  .gallery-intro-icon,
  .equipment-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .gallery-masonry-grid,
  .treatment-gallery-grid,
  .doctor-photo-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: auto;
    gap: 14px;
  }

  .gallery-card,
  .gallery-card-large,
  .gallery-card-wide,
  .treatment-card-tall,
  .doctor-photo-main {
    grid-column: auto;
    grid-row: auto;
    min-height: 320px;
  }

  .gallery-card img {
    min-height: 300px;
  }

  .gallery-overlay {
    left: 20px;
    right: 20px;
    bottom: 20px;
    padding: 14px;
    border-radius: 18px;
  }

  .equipment-image {
    height: 240px;
  }

  .before-after-images {
    grid-template-columns: 1fr;
  }

  .result-image {
    height: 260px;
  }

  .gallery-mini-points,
  .gallery-showcase-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .gallery-mini-points span,
  .gallery-showcase-points span {
    justify-content: center;
  }

  .gallery-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .gallery-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .gallery-primary-btn,
  .gallery-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .gallery-breadcrumb-box h1 {
    font-size: 32px;
  }

  .gallery-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .gallery-intro-content h2,
  .gallery-showcase-content h2,
  .doctor-gallery-content h2,
  .gallery-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .gallery-card {
    min-height: 280px;
    padding: 8px;
    border-radius: 24px;
  }

  .gallery-card img {
    min-height: 260px;
    border-radius: 18px;
  }

  .gallery-overlay {
    left: 16px;
    right: 16px;
    bottom: 16px;
  }

  .gallery-intro-card,
  .equipment-card,
  .before-after-card {
    padding: 19px;
    border-radius: 23px;
  }

  .equipment-image,
  .result-image {
    height: 220px;
  }

  .gallery-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   GALLERY PAGE END
================================================== */
































/* ==================================================
   TESTIMONIALS PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.testimonials-intro-content h2,
.review-highlight-card h2,
.rating-content h2,
.testimonial-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.testimonials-intro-content>p,
.review-highlight-card>p,
.rating-content>p,
.testimonial-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .testimonial-primary-btn,
  .testimonial-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* BREADCRUMB HERO START */
.testimonials-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.testimonials-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.testimonial-page-glow,
.testimonial-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.testimonial-page-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.testimonial-page-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.testimonial-page-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.testimonials-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.testimonials-breadcrumb-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 46px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.testimonials-breadcrumb-box p {
  max-width: 740px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.testimonials-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.testimonials-breadcrumb-nav a,
.testimonials-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.testimonials-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.testimonials-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* BREADCRUMB HERO END */


/* INTRO START */
.testimonials-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.testimonial-intro-glow-one,
.review-highlight-glow-one,
.patient-review-glow-one,
.rating-glow-one,
.testimonial-trust-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.testimonial-intro-glow-two,
.review-highlight-glow-two,
.patient-review-glow-two,
.rating-glow-two,
.testimonial-trust-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.testimonials-intro-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.testimonials-trust-card {
  padding: 28px;
  border-radius: 34px;
}

.testimonials-trust-icon,
.review-trust-icon,
.trust-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.testimonials-trust-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 12px;
}

.testimonials-trust-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.testimonials-mini-points {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.testimonials-mini-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.testimonials-mini-points span i {
  color: #8b5cf6;
}

/* INTRO END */


/* REVIEW HIGHLIGHT START */
.review-highlight-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.review-highlight-pattern {
  top: 120px;
}

.review-highlight-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(340px, 0.88fr);
  gap: 24px;
  align-items: stretch;
}

.review-highlight-card {
  padding: 34px;
  border-radius: 38px;
}

.review-quote-icon {
  width: 66px;
  height: 66px;
  display: grid;
  place-items: center;
  color: #ffffff;
  font-size: 31px;
  border-radius: 24px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.review-stars,
.review-card-stars,
.rating-score-stars {
  display: flex;
  align-items: center;
  gap: 4px;
  color: #fb7185;
}

.review-highlight-card .review-stars {
  margin-bottom: 16px;
}

.review-highlight-card>p {
  font-size: 17px;
  line-height: 1.8;
  max-width: 780px;
}

.review-author {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
}

.review-avatar,
.review-user span {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  color: #ffffff;
  border-radius: 18px;
  font-size: 17px;
  font-weight: 950;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.22);
}

.review-author strong,
.review-user strong {
  display: block;
  color: #1f1430;
  font-size: 15px;
  font-weight: 950;
}

.review-author small,
.review-user small {
  display: block;
  margin-top: 3px;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 800;
}

.review-trust-grid {
  display: grid;
  gap: 14px;
}

.review-trust-item {
  min-height: 150px;
  padding: 22px;
  border-radius: 28px;
}

.review-trust-item .review-trust-icon {
  width: 50px;
  height: 50px;
  border-radius: 18px;
  font-size: 21px;
  margin-bottom: 16px;
}

.review-trust-item strong {
  display: block;
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 18px;
  font-weight: 950;
  margin-bottom: 5px;
}

.review-trust-item span {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 13px;
  font-weight: 700;
}

/* REVIEW HIGHLIGHT END */


/* PATIENT REVIEW CARDS START */
.patient-reviews-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.reviews-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.review-card {
  min-height: 330px;
  display: flex;
  flex-direction: column;
  padding: 24px;
  border-radius: 30px;
}

.review-card-featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.review-feature-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 16px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.review-feature-badge i {
  color: #fb7185;
}

.review-card-top {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}

.review-user {
  display: flex;
  align-items: center;
  gap: 12px;
}

.review-rating {
  min-width: 46px;
  min-height: 34px;
  display: grid;
  place-items: center;
  color: #4c1d95;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.review-card-stars {
  position: relative;
  z-index: 2;
  margin-bottom: 16px;
}

.review-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.7;
  margin: 0 0 20px;
}

.review-tag {
  position: relative;
  z-index: 2;
  width: max-content;
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.review-tag i {
  color: #8b5cf6;
}

/* PATIENT REVIEW CARDS END */


/* RATING DISPLAY START */
.rating-display-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.rating-pattern {
  top: 120px;
}

.rating-display-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 420px;
  gap: 34px;
  align-items: center;
}

.rating-score-card {
  padding: 30px;
  border-radius: 34px;
  text-align: center;
}

.rating-score {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 76px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -2px;
}

.rating-score-stars {
  position: relative;
  z-index: 2;
  justify-content: center;
  margin: 12px 0 14px;
  font-size: 18px;
}

.rating-score-card>p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 700;
  margin: 0 0 24px;
}

.rating-bars {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
  text-align: left;
}

.rating-bar-item span {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 7px;
}

.rating-bar-item div {
  overflow: hidden;
  height: 10px;
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.10);
}

.rating-bar-item b {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
}

/* RATING DISPLAY END */


/* TRUST BUILDING START */
.testimonial-trust-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.testimonial-trust-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial-trust-card {
  min-height: 260px;
  padding: 26px;
  border-radius: 32px;
}

.trust-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.testimonial-trust-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.testimonial-trust-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* TRUST BUILDING END */


/* CTA START */
.testimonial-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.testimonial-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.testimonial-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.testimonial-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.testimonial-cta-content {
  position: relative;
  z-index: 2;
}

.testimonial-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.testimonial-primary-btn,
.testimonial-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.testimonial-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.testimonial-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.testimonial-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.testimonial-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .testimonials-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .testimonials-breadcrumb-box {
    padding: 28px;
  }

  .section-heading h2,
  .testimonials-intro-content h2,
  .review-highlight-card h2,
  .rating-content h2,
  .testimonial-cta-card h2 {
    font-size: 40px !important;
  }

  .testimonials-intro-wrapper,
  .review-highlight-wrapper,
  .rating-display-wrapper {
    gap: 28px;
  }

  .review-card {
    min-height: 300px;
    padding: 22px;
  }

  .review-highlight-card {
    padding: 28px;
  }

  .rating-score {
    font-size: 66px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .testimonials-intro-wrapper,
  .review-highlight-wrapper,
  .rating-display-wrapper,
  .testimonial-cta-card {
    grid-template-columns: 1fr;
  }

  .testimonials-intro-content,
  .section-heading,
  .rating-content,
  .testimonial-cta-card {
    text-align: center;
  }

  .testimonials-intro-content>p,
  .rating-content>p,
  .testimonial-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .testimonials-mini-points,
  .testimonial-cta-actions {
    justify-content: center;
  }

  .testimonials-trust-card,
  .review-highlight-card,
  .review-trust-grid,
  .reviews-grid,
  .rating-score-card,
  .testimonial-trust-grid {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .reviews-grid,
  .testimonial-trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .rating-score-card {
    max-width: 520px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .testimonials-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .testimonials-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .testimonials-breadcrumb-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .testimonials-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .testimonials-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .testimonials-intro-content h2,
  .review-highlight-card h2,
  .rating-content h2,
  .testimonial-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .testimonials-intro-content>p,
  .review-highlight-card>p,
  .rating-content>p,
  .testimonial-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .testimonials-trust-card,
  .review-highlight-card,
  .review-trust-item,
  .review-card,
  .rating-score-card,
  .testimonial-trust-card {
    padding: 22px;
    border-radius: 26px;
  }

  .testimonials-trust-icon,
  .review-trust-icon,
  .trust-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .review-quote-icon {
    width: 58px;
    height: 58px;
    border-radius: 21px;
    font-size: 26px;
  }

  .reviews-grid,
  .testimonial-trust-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .review-card {
    min-height: auto;
  }

  .review-card-top {
    align-items: center;
  }

  .review-tag {
    width: 100%;
    justify-content: center;
  }

  .testimonials-mini-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .testimonials-mini-points span {
    justify-content: center;
  }

  .rating-score {
    font-size: 58px;
  }

  .testimonial-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .testimonial-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .testimonial-primary-btn,
  .testimonial-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .testimonials-breadcrumb-box h1 {
    font-size: 32px;
  }

  .testimonials-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .testimonials-intro-content h2,
  .review-highlight-card h2,
  .rating-content h2,
  .testimonial-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .testimonials-trust-card,
  .review-highlight-card,
  .review-trust-item,
  .review-card,
  .rating-score-card,
  .testimonial-trust-card {
    padding: 19px;
    border-radius: 23px;
  }

  .review-user {
    align-items: flex-start;
  }

  .review-user span,
  .review-avatar {
    width: 42px;
    height: 42px;
    border-radius: 15px;
  }

  .rating-score {
    font-size: 50px;
  }

  .testimonial-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   TESTIMONIALS PAGE END
================================================== */



























/* ==================================================
   FAQS PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.faqs-intro-content h2,
.faq-timing-card h3,
.faq-location-card h3,
.faq-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.faqs-intro-content>p,
.faq-timing-card p,
.faq-location-card p,
.faq-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .faq-primary-btn,
  .faq-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* BREADCRUMB HERO START */
.faqs-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.faqs-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.faq-page-glow,
.faq-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.faq-page-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.faq-page-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.faq-page-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.faqs-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.faqs-breadcrumb-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 48px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.faqs-breadcrumb-box p {
  max-width: 740px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.faqs-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.faqs-breadcrumb-nav a,
.faqs-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.faqs-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.faqs-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* BREADCRUMB HERO END */


/* FAQS INTRO START */
.faqs-intro-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.faq-intro-glow-one,
.faq-accordion-glow-one,
.faq-appointment-glow-one,
.faq-treatment-glow-one,
.faq-location-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.faq-intro-glow-two,
.faq-accordion-glow-two,
.faq-appointment-glow-two,
.faq-treatment-glow-two,
.faq-location-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.faqs-intro-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(360px, 0.95fr);
  align-items: center;
  gap: 44px;
}

.faqs-help-card {
  padding: 28px;
  border-radius: 34px;
}

.faqs-help-icon,
.faq-side-icon,
.faq-timing-icon,
.faq-location-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.faqs-help-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 24px;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 12px;
}

.faqs-help-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.faqs-mini-points,
.faq-side-points {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.faqs-mini-points span,
.faq-side-points span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.faqs-mini-points span i,
.faq-side-points span i {
  color: #8b5cf6;
}

/* FAQS INTRO END */


/* FAQ CATEGORY STRIP START */
.faq-category-section {
  position: relative;
  z-index: 5;
  margin-bottom: -42px;
}

.faq-category-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  padding: 16px;
  border-radius: 30px;
}

.faq-category-pill {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  padding: 0 15px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
  transition: 0.28s ease;
}

.faq-category-pill i {
  color: #8b5cf6;
}

.faq-category-pill:hover {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  transform: translateY(-2px);
}

.faq-category-pill:hover i {
  color: #ffffff;
}

/* FAQ CATEGORY STRIP END */


/* FAQ ACCORDION COMMON START */
.faq-accordion-section,
.faq-appointment-section,
.faq-treatment-section,
.faq-location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.faq-accordion-section {
  padding-top: 132px;
}

.faq-accordion-pattern,
.faq-treatment-pattern {
  top: 140px;
}

.faq-layout,
.faq-split-wrapper,
.faq-location-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(320px, 0.86fr) minmax(0, 1.14fr);
  gap: 24px;
  align-items: start;
}

.faq-side-card,
.faq-timing-card,
.faq-location-card {
  padding: 30px;
  border-radius: 34px;
}

.faq-side-card h3,
.faq-timing-card h3,
.faq-location-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 26px !important;
  font-weight: 950;
  line-height: 1.2;
  margin: 0 0 12px;
}

.faq-side-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 15px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.faq-accordion-list,
.faq-grid-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 14px;
}

.faq-grid-list {
  grid-template-columns: repeat(2, 1fr);
}

.faq-item {
  border-radius: 26px;
}

.faq-item input {
  display: none;
}

.faq-question {
  position: relative;
  z-index: 2;
  min-height: 70px;
  width: 100%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 20px 22px;
  color: #1f1430;
  font-size: 16px;
  font-weight: 950;
  line-height: 1.35;
}

.faq-question span {
  display: block;
}

.faq-question i {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 16px;
  background: rgba(245, 243, 255, 0.92);
  border: 1px solid rgba(139, 92, 246, 0.14);
  transition: 0.3s ease;
}

.faq-answer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.38s ease;
}

.faq-answer p {
  overflow: hidden;
  color: #6f637a;
  font-size: 14.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
  padding: 0 22px;
}

.faq-item input:checked~.faq-answer {
  grid-template-rows: 1fr;
}

.faq-item input:checked~.faq-answer p {
  padding-bottom: 22px;
}

.faq-item input:checked~.faq-question i {
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  transform: rotate(45deg);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.24);
}

/* FAQ ACCORDION COMMON END */


/* APPOINTMENT QUESTIONS START */
.faq-appointment-section {
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

/* APPOINTMENT QUESTIONS END */


/* TREATMENT QUESTIONS START */
.faq-timing-card .faq-primary-btn {
  margin-top: 24px;
}

/* TREATMENT QUESTIONS END */


/* LOCATION QUESTIONS START */
.faq-location-tags {
  position: relative;
  z-index: 2;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.faq-location-tags span {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

/* LOCATION QUESTIONS END */


/* CTA START */
.faq-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.faq-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.faq-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.faq-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.faq-cta-content {
  position: relative;
  z-index: 2;
}

.faq-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.faq-primary-btn,
.faq-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.faq-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.faq-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.faq-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.faq-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .faqs-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .faqs-breadcrumb-box {
    padding: 28px;
  }

  .section-heading h2,
  .faqs-intro-content h2,
  .faq-cta-card h2 {
    font-size: 40px !important;
  }

  .faqs-intro-wrapper,
  .faq-layout,
  .faq-split-wrapper,
  .faq-location-wrapper {
    gap: 22px;
  }

  .faq-question {
    min-height: 64px;
    padding: 18px 20px;
    font-size: 15px;
  }

  .faq-answer p {
    font-size: 14px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .faqs-intro-wrapper,
  .faq-layout,
  .faq-split-wrapper,
  .faq-location-wrapper,
  .faq-cta-card {
    grid-template-columns: 1fr;
  }

  .faqs-intro-content,
  .section-heading,
  .faq-cta-card {
    text-align: center;
  }

  .faqs-intro-content>p,
  .faq-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .faqs-mini-points,
  .faq-side-points,
  .faq-location-tags,
  .faq-cta-actions {
    justify-content: center;
  }

  .faqs-help-card,
  .faq-side-card,
  .faq-accordion-list,
  .faq-grid-list,
  .faq-timing-card,
  .faq-location-card {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .faq-grid-list {
    grid-template-columns: 1fr;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .faqs-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .faqs-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .faqs-breadcrumb-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .faqs-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .faqs-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .faqs-intro-content h2,
  .faq-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .faqs-intro-content>p,
  .faq-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .faq-category-section {
    margin-bottom: -28px;
  }

  .faq-category-strip {
    justify-content: flex-start;
    overflow-x: auto;
    flex-wrap: nowrap;
    padding: 12px;
    border-radius: 22px;
    scrollbar-width: none;
  }

  .faq-category-strip::-webkit-scrollbar {
    display: none;
  }

  .faq-category-pill {
    flex: 0 0 auto;
    min-height: 40px;
    font-size: 12px;
  }

  .faq-accordion-section {
    padding-top: 92px;
  }

  .faqs-help-card,
  .faq-side-card,
  .faq-timing-card,
  .faq-location-card,
  .faq-item {
    padding: 0;
    border-radius: 26px;
  }

  .faqs-help-card,
  .faq-side-card,
  .faq-timing-card,
  .faq-location-card {
    padding: 22px;
  }

  .faqs-help-icon,
  .faq-side-icon,
  .faq-timing-icon,
  .faq-location-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .faq-question {
    min-height: 64px;
    padding: 18px;
    font-size: 14.5px;
  }

  .faq-question i {
    width: 34px;
    height: 34px;
    font-size: 14px;
  }

  .faq-answer p {
    font-size: 14px;
    line-height: 1.68;
    padding: 0 18px;
  }

  .faq-item input:checked~.faq-answer p {
    padding-bottom: 18px;
  }

  .faqs-mini-points,
  .faq-side-points,
  .faq-location-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .faqs-mini-points span,
  .faq-side-points span,
  .faq-location-tags span {
    justify-content: center;
  }

  .faq-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .faq-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .faq-primary-btn,
  .faq-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .faqs-breadcrumb-box h1 {
    font-size: 32px;
  }

  .faqs-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .faqs-intro-content h2,
  .faq-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .faqs-help-card,
  .faq-side-card,
  .faq-timing-card,
  .faq-location-card {
    padding: 19px;
    border-radius: 23px;
  }

  .faq-question {
    padding: 16px;
  }

  .faq-answer p {
    padding: 0 16px;
  }

  .faq-item input:checked~.faq-answer p {
    padding-bottom: 16px;
  }

  .faq-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   FAQS PAGE END
================================================== */



























/* ==================================================
   CONTACT PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.contact-form-card h2,
.contact-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.contact-form-card>p,
.contact-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .contact-primary-btn,
  .contact-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* BREADCRUMB HERO START */
.contact-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 72px 0 58px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.12), transparent 30%),
    radial-gradient(circle at 90% 20%, rgba(139, 92, 246, 0.15), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.contact-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.contact-page-glow,
.contact-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.contact-page-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 70px;
  background: rgba(251, 113, 133, 0.16);
}

.contact-page-glow-two {
  width: 390px;
  height: 390px;
  right: -160px;
  bottom: -130px;
  background: rgba(139, 92, 246, 0.16);
}

.contact-page-pattern {
  position: absolute;
  top: 80px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.contact-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  padding: 34px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 12% 14%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 88% 86%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.86), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 28px 78px rgba(31, 20, 48, 0.10),
    inset 0 1px 0 rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
}

.contact-breadcrumb-box h1 {
  margin: 18px 0 14px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 45px !important;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -1.7px;
}

.contact-breadcrumb-box p {
  max-width: 740px;
  margin: 0 auto 22px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.contact-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.contact-breadcrumb-nav a,
.contact-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.contact-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.contact-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* BREADCRUMB HERO END */


/* CONTACT INFO START */
.contact-info-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 15%, rgba(251, 113, 133, 0.10), transparent 32%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.contact-info-glow-one,
.contact-form-glow-one,
.map-glow-one,
.nearby-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.contact-info-glow-two,
.contact-form-glow-two,
.map-glow-two,
.nearby-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.contact-info-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.contact-info-card {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  padding: 26px;
  border-radius: 32px;
}

.contact-info-featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.contact-feature-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.contact-feature-badge i {
  color: #fb7185;
}

.contact-info-icon,
.support-icon,
.map-info-icon,
.nearby-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.contact-info-card span {
  position: relative;
  z-index: 2;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.contact-info-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.contact-info-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0 0 22px;
}

.contact-card-link,
.support-link {
  position: relative;
  z-index: 2;
  margin-top: auto;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.contact-card-link:hover,
.support-link:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

/* CONTACT INFO END */


/* CONTACT FORM START */
.contact-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.contact-form-pattern {
  top: 120px;
}

.contact-form-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(340px, 0.82fr);
  gap: 24px;
  align-items: stretch;
}

.contact-form-card {
  padding: 34px;
  border-radius: 38px;
}

.contact-form {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.contact-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 9px;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #8b5cf6;
  font-size: 16px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  outline: none;
  border-radius: 18px;
  color: #1f1430;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 16px 0 44px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.045);
  transition: 0.28s ease;
}

.input-wrap select {
  appearance: none;
}

.textarea-wrap i {
  top: 18px;
  transform: none;
}

.input-wrap textarea {
  min-height: 130px;
  resize: vertical;
  padding-top: 16px;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: rgba(139, 92, 246, 0.32);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.10);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #9a8fa6;
}

.contact-form .contact-primary-btn {
  margin-top: 20px;
}

.contact-support-column {
  display: grid;
  gap: 16px;
}

.support-card {
  padding: 24px;
  border-radius: 32px;
}

.support-icon {
  width: 56px;
  height: 56px;
  border-radius: 20px;
  font-size: 23px;
  margin-bottom: 18px;
}

.support-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.support-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0 0 18px;
}

/* CONTACT FORM END */


/* MAP LOCATION START */
.contact-map-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.contact-map-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(340px, 0.8fr);
  gap: 22px;
  align-items: stretch;
}

.map-card {
  min-height: 480px;
  padding: 12px;
  border-radius: 36px;
}

.map-card iframe {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  min-height: 456px;
  display: block;
  border: 0;
  border-radius: 26px;
  filter: saturate(0.9) contrast(1.02);
}

.map-info-card {
  padding: 28px;
  border-radius: 36px;
}

.map-info-card span {
  position: relative;
  z-index: 2;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.9px;
}

.map-info-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 26px;
  font-weight: 950;
  line-height: 1.18;
  margin: 8px 0 12px;
}

.map-info-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.72;
  margin: 0;
}

.map-info-list {
  position: relative;
  z-index: 2;
  display: grid;
  gap: 12px;
  margin: 24px 0;
}

.map-info-list div {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: 16px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.map-info-list i {
  color: #8b5cf6;
}

.map-info-list strong {
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
}

/* MAP LOCATION END */


/* NEARBY AREAS START */
.nearby-area-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.nearby-pattern {
  top: 120px;
}

.nearby-area-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.nearby-area-card {
  min-height: 255px;
  padding: 26px;
  border-radius: 32px;
}

.nearby-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.nearby-area-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.nearby-area-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* NEARBY AREAS END */


/* CTA START */
.contact-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.contact-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.contact-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.contact-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.contact-cta-content {
  position: relative;
  z-index: 2;
}

.contact-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.contact-primary-btn,
.contact-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.contact-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.contact-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.contact-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.contact-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .contact-breadcrumb-hero {
    padding: 58px 0 44px;
  }

  .contact-breadcrumb-box {
    padding: 28px;
  }

  .section-heading h2,
  .contact-form-card h2,
  .contact-cta-card h2 {
    font-size: 40px !important;
  }

  .contact-info-card {
    min-height: 285px;
    padding: 22px;
  }

  .contact-form-card {
    padding: 28px;
  }

  .map-card {
    min-height: 420px;
  }

  .map-card iframe {
    min-height: 396px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .contact-info-grid,
  .contact-form-wrapper,
  .contact-map-wrapper,
  .contact-cta-card {
    grid-template-columns: 1fr;
  }

  .nearby-area-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading,
  .contact-cta-card {
    text-align: center;
  }

  .section-heading p,
  .contact-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .contact-cta-actions {
    justify-content: center;
  }

  .contact-info-card,
  .contact-form-card,
  .contact-support-column,
  .map-card,
  .map-info-card,
  .nearby-area-grid {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .contact-breadcrumb-hero {
    padding: 52px 0 38px;
  }

  .contact-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .contact-breadcrumb-box h1 {
    font-size: 38px;
    letter-spacing: -1px;
  }

  .contact-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .contact-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .contact-form-card h2,
  .contact-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .contact-form-card>p,
  .contact-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .contact-info-card,
  .contact-form-card,
  .support-card,
  .map-info-card,
  .nearby-area-card {
    padding: 22px;
    border-radius: 26px;
  }

  .contact-info-icon,
  .support-icon,
  .map-info-icon,
  .nearby-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .contact-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    border-radius: 16px;
    font-size: 13.5px;
  }

  .contact-form .contact-primary-btn {
    width: 100%;
  }

  .map-card {
    min-height: 360px;
    padding: 8px;
    border-radius: 26px;
  }

  .map-card iframe {
    min-height: 342px;
    border-radius: 20px;
  }

  .nearby-area-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .nearby-area-card {
    min-height: auto;
  }

  .nearby-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .contact-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .contact-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .contact-primary-btn,
  .contact-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .contact-breadcrumb-box h1 {
    font-size: 32px;
  }

  .contact-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .contact-form-card h2,
  .contact-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .contact-info-card,
  .contact-form-card,
  .support-card,
  .map-info-card,
  .nearby-area-card {
    padding: 19px;
    border-radius: 23px;
  }

  .contact-info-card h3,
  .support-card h3,
  .map-info-card h3,
  .nearby-area-card h3 {
    font-size: 20px;
  }

  .map-card {
    min-height: 320px;
  }

  .map-card iframe {
    min-height: 304px;
  }

  .contact-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   CONTACT PAGE END
================================================== */





































/* ==================================================
   APPOINTMENT PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.appointment-form-card h2,
.appointment-location-content h2,
.appointment-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.appointment-form-card>p,
.appointment-location-content>p,
.appointment-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .appointment-primary-btn,
  .appointment-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* BREADCRUMB HERO START */
.appointment-breadcrumb-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.16), transparent 34%),
    radial-gradient(circle at 52% 100%, rgba(76, 29, 149, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.appointment-breadcrumb-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.appointment-breadcrumb-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: min(760px, 86%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), transparent);
}

.appointment-page-glow,
.appointment-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.appointment-page-glow-one {
  width: 340px;
  height: 340px;
  left: -150px;
  top: 72px;
  background: rgba(251, 113, 133, 0.16);
}

.appointment-page-glow-two {
  width: 410px;
  height: 410px;
  right: -170px;
  bottom: -140px;
  background: rgba(139, 92, 246, 0.16);
}

.appointment-page-pattern {
  position: absolute;
  top: 84px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.appointment-breadcrumb-box {
  position: relative;
  z-index: 2;
  max-width: 940px;
  margin: 0 auto;
  text-align: center;
  padding: 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.11), transparent 32%),
    radial-gradient(circle at 90% 86%, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 34px 90px rgba(31, 20, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.appointment-hero-kicker {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
}

.appointment-hero-status {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.appointment-hero-status i {
  color: #fb7185;
}

.appointment-breadcrumb-box h1 {
  max-width: 820px;
  margin: 20px auto 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 46px !important;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.8px;
}

.appointment-breadcrumb-box p {
  max-width: 760px;
  margin: 0 auto 24px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.appointment-hero-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.appointment-breadcrumb-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.appointment-breadcrumb-nav a,
.appointment-breadcrumb-nav span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.appointment-breadcrumb-nav>i {
  color: #fb7185;
  font-size: 12px;
}

.appointment-breadcrumb-nav a:hover {
  color: #8b5cf6;
}

/* BREADCRUMB HERO END */


/* QUICK INFO START */
.appointment-quick-section {
  position: relative;
  z-index: 8;
  margin-top: -44px;
}

.appointment-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 14px;
  border-radius: 32px;
}

.appointment-quick-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-right: 1px solid rgba(139, 92, 246, 0.12);
}

.appointment-quick-item:last-child {
  border-right: 0;
}

.appointment-quick-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #ffffff;
  font-size: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.22);
}

.appointment-quick-item span {
  display: block;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.appointment-quick-item strong {
  display: block;
  margin-top: 5px;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

/* QUICK INFO END */


/* APPOINTMENT FORM START */
.appointment-form-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.appointment-form-glow-one,
.process-glow-one,
.location-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.appointment-form-glow-two,
.process-glow-two,
.location-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.appointment-form-pattern,
.location-pattern {
  top: 120px;
}

.appointment-form-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(340px, 0.84fr);
  gap: 24px;
  align-items: stretch;
}

.appointment-form-card {
  padding: 34px;
  border-radius: 38px;
}

.appointment-form {
  position: relative;
  z-index: 2;
  margin-top: 28px;
}

.appointment-form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.form-group-full {
  grid-column: 1 / -1;
}

.form-group label {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
  margin-bottom: 9px;
}

.input-wrap {
  position: relative;
}

.input-wrap i {
  position: absolute;
  left: 16px;
  top: 50%;
  z-index: 2;
  transform: translateY(-50%);
  color: #8b5cf6;
  font-size: 16px;
}

.input-wrap input,
.input-wrap select,
.input-wrap textarea {
  width: 100%;
  min-height: 54px;
  border: 1px solid rgba(139, 92, 246, 0.14);
  outline: none;
  border-radius: 18px;
  color: #1f1430;
  background: rgba(255, 255, 255, 0.82);
  padding: 0 16px 0 44px;
  font-size: 14px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.045);
  transition: 0.28s ease;
}

.input-wrap select {
  appearance: none;
}

.textarea-wrap i {
  top: 18px;
  transform: none;
}

.input-wrap textarea {
  min-height: 135px;
  resize: vertical;
  padding-top: 16px;
}

.input-wrap input:focus,
.input-wrap select:focus,
.input-wrap textarea:focus {
  border-color: rgba(139, 92, 246, 0.32);
  background: #ffffff;
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.10);
}

.input-wrap input::placeholder,
.input-wrap textarea::placeholder {
  color: #9a8fa6;
}

.appointment-form-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.appointment-side-column {
  display: grid;
  gap: 16px;
}

.appointment-side-card {
  padding: 24px;
  border-radius: 32px;
}

.appointment-side-featured {
  background:
    radial-gradient(circle at 12% 12%, rgba(251, 113, 133, 0.15), transparent 32%),
    radial-gradient(circle at 92% 86%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.78));
}

.appointment-feature-badge {
  position: relative;
  z-index: 2;
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 30px;
  padding: 0 11px;
  margin-bottom: 18px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 11px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.12);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.06);
}

.appointment-feature-badge i {
  color: #fb7185;
}

.appointment-side-icon,
.process-icon,
.timing-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.appointment-side-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.appointment-side-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0 0 18px;
}

.side-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.side-link:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

/* APPOINTMENT FORM END */


/* PROCESS START */
.appointment-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.appointment-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.process-card {
  min-height: 255px;
  padding: 26px;
  border-radius: 32px;
}

.process-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.process-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.process-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* PROCESS END */


/* LOCATION TIMING START */
.appointment-location-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.appointment-location-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
  gap: 34px;
  align-items: center;
}

.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.location-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.location-tags span i {
  color: #8b5cf6;
}

.location-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 26px;
}

.appointment-timing-card {
  padding: 30px;
  border-radius: 36px;
}

.appointment-timing-card span {
  position: relative;
  z-index: 2;
  display: block;
  color: #7b6e84;
  font-size: 12px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.9px;
  margin-bottom: 8px;
}

.appointment-timing-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 28px;
  font-weight: 950;
  line-height: 1.12;
  margin: 0 0 10px;
}

.appointment-timing-card p {
  position: relative;
  z-index: 2;
  color: #4c1d95;
  font-size: 18px;
  font-weight: 950;
  margin: 0 0 22px;
}

.timing-closed {
  position: relative;
  z-index: 2;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 15px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.timing-closed i {
  color: #fb7185;
}

/* LOCATION TIMING END */


/* CTA START */
.appointment-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.appointment-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.appointment-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.appointment-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.appointment-cta-content {
  position: relative;
  z-index: 2;
}

.appointment-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* BUTTONS */
.appointment-primary-btn,
.appointment-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.appointment-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.appointment-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.appointment-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.appointment-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .appointment-breadcrumb-hero {
    padding: 58px 0 76px;
  }

  .appointment-breadcrumb-box {
    padding: 30px;
  }

  .appointment-breadcrumb-box h1 {
    font-size: clamp(40px, 4.8vw, 62px);
  }

  .section-heading h2,
  .appointment-form-card h2,
  .appointment-location-content h2,
  .appointment-cta-card h2 {
    font-size: 40px !important;
  }

  .appointment-form-card {
    padding: 28px;
  }

  .appointment-side-card {
    padding: 21px;
  }

  .appointment-process-grid {
    gap: 14px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .appointment-quick-grid,
  .appointment-form-wrapper,
  .appointment-location-wrapper,
  .appointment-cta-card {
    grid-template-columns: 1fr;
  }

  .appointment-process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .appointment-quick-item {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  }

  .appointment-quick-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .appointment-location-content,
  .appointment-cta-card {
    text-align: center;
  }

  .section-heading p,
  .appointment-location-content>p,
  .appointment-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .location-tags,
  .location-actions,
  .appointment-cta-actions {
    justify-content: center;
  }

  .appointment-form-card,
  .appointment-side-column,
  .appointment-process-grid,
  .appointment-timing-card {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .appointment-breadcrumb-hero {
    padding: 52px 0 78px;
  }

  .appointment-breadcrumb-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .appointment-breadcrumb-box h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .appointment-breadcrumb-box p {
    font-size: 15px;
    line-height: 1.68;
  }

  .appointment-hero-kicker {
    display: grid;
    grid-template-columns: 1fr;
  }

  .appointment-hero-status {
    justify-content: center;
  }

  .appointment-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .appointment-breadcrumb-nav {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
  }

  .appointment-quick-section {
    margin-top: -38px;
  }

  .appointment-quick-grid {
    padding: 10px;
    border-radius: 24px;
  }

  .appointment-quick-item {
    padding: 14px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .appointment-form-card h2,
  .appointment-location-content h2,
  .appointment-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .appointment-form-card>p,
  .appointment-location-content>p,
  .appointment-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .appointment-form-card,
  .appointment-side-card,
  .process-card,
  .appointment-timing-card {
    padding: 22px;
    border-radius: 26px;
  }

  .appointment-form-grid {
    grid-template-columns: 1fr;
  }

  .form-group-full {
    grid-column: auto;
  }

  .input-wrap input,
  .input-wrap select,
  .input-wrap textarea {
    border-radius: 16px;
    font-size: 13.5px;
  }

  .appointment-form-actions,
  .location-actions,
  .appointment-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .appointment-primary-btn,
  .appointment-outline-btn {
    width: 100%;
  }

  .appointment-side-icon,
  .process-icon,
  .timing-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .appointment-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .process-card {
    min-height: auto;
  }

  .process-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .location-tags {
    display: grid;
    grid-template-columns: 1fr;
  }

  .location-tags span {
    justify-content: center;
  }

  .appointment-cta-card {
    padding: 24px;
    border-radius: 28px;
  }
}

@media (max-width: 420px) {
  .appointment-breadcrumb-box h1 {
    font-size: 32px;
  }

  .appointment-breadcrumb-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .appointment-form-card h2,
  .appointment-location-content h2,
  .appointment-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .appointment-form-card,
  .appointment-side-card,
  .process-card,
  .appointment-timing-card {
    padding: 19px;
    border-radius: 23px;
  }

  .appointment-quick-item {
    align-items: flex-start;
  }

  .appointment-quick-item strong {
    font-size: 13px;
  }

  .appointment-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   APPOINTMENT PAGE END
================================================== */



















/* ==================================================
   SERVICE DETAILS PAGE START
================================================== */

/* COMMON */
.section-padding {
  padding: 90px 0;
}

.section-badge {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.96), rgba(245, 243, 255, 0.92));
  border: 1px solid rgba(139, 92, 246, 0.14);
  border-radius: 999px;
  padding: 9px 15px;
  font-size: 13px;
  font-weight: 900;
  box-shadow: 0 12px 28px rgba(139, 92, 246, 0.08);
}

.section-badge i {
  color: #8b5cf6;
}

.section-heading {
  position: relative;
  z-index: 2;
  max-width: 820px;
  margin: 0 auto 46px;
}

.section-heading h2,
.service-overview-content h2,
.needed-card h2,
.aftercare-content h2,
.service-detail-cta-card h2 {
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 40px !important;
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -1.1px;
  margin: 18px 0 14px;
}

.section-heading p,
.service-overview-content>p,
.needed-card>p,
.aftercare-content>p,
.service-detail-cta-card p {
  color: #6f637a;
  font-size: 15.5px;
  font-weight: 600;
  line-height: 1.75;
  margin: 0;
}

.service-overview-content>p+p {
  margin-top: 14px;
}

/* COMMON PREMIUM HOVER + ANIMATION START */
.reveal-up {
  animation: revealUp 0.78s ease both;
}

.reveal-delay-1 {
  animation-delay: 0.08s;
}

.reveal-delay-2 {
  animation-delay: 0.16s;
}

.reveal-delay-3 {
  animation-delay: 0.24s;
}

@keyframes revealUp {
  from {
    opacity: 0;
    transform: translateY(26px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.premium-card {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.94), rgba(255, 251, 255, 0.76));
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow:
    0 20px 54px rgba(31, 20, 48, 0.07),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  transition:
    transform 0.32s ease,
    box-shadow 0.32s ease,
    border-color 0.32s ease,
    background 0.32s ease;
}

.premium-card::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    radial-gradient(circle at 16% 16%, rgba(251, 113, 133, 0.12), transparent 34%),
    radial-gradient(circle at 88% 90%, rgba(139, 92, 246, 0.14), transparent 34%);
  opacity: 0;
  transition: opacity 0.32s ease;
}

.premium-card::after {
  content: "";
  position: absolute;
  right: -42px;
  top: -42px;
  z-index: -1;
  width: 132px;
  height: 132px;
  border-radius: 50%;
  background: rgba(139, 92, 246, 0.08);
  transition: transform 0.32s ease, background 0.32s ease;
}

.premium-hover:hover {
  transform: translateY(-8px);
  border-color: rgba(139, 92, 246, 0.22);
  box-shadow:
    0 30px 76px rgba(31, 20, 48, 0.13),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
}

.premium-hover:hover::before {
  opacity: 1;
}

.premium-hover:hover::after {
  transform: scale(1.22);
  background: rgba(251, 113, 133, 0.12);
}

.premium-icon {
  transition: transform 0.32s ease, box-shadow 0.32s ease;
}

.premium-hover:hover .premium-icon {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 20px 44px rgba(139, 92, 246, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  .reveal-up {
    animation: none;
  }

  .premium-card,
  .premium-card::before,
  .premium-card::after,
  .service-detail-primary-btn,
  .service-detail-outline-btn {
    transition: none;
  }

  .premium-hover:hover {
    transform: none;
  }
}

/* COMMON PREMIUM HOVER + ANIMATION END */


/* HERO START */
.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 78px 0 92px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 30%),
    radial-gradient(circle at 88% 18%, rgba(139, 92, 246, 0.16), transparent 34%),
    radial-gradient(circle at 52% 100%, rgba(76, 29, 149, 0.08), transparent 34%),
    linear-gradient(135deg, #ffffff 0%, #fff8fb 48%, #f5f3ff 100%);
}

.service-detail-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(139, 92, 246, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(139, 92, 246, 0.045) 1px, transparent 1px);
  background-size: 58px 58px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  -webkit-mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.55), transparent 82%);
  pointer-events: none;
}

.service-detail-hero::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 40px;
  width: min(760px, 86%);
  height: 1px;
  transform: translateX(-50%);
  background: linear-gradient(90deg, transparent, rgba(139, 92, 246, 0.28), transparent);
}

.service-detail-glow,
.service-detail-cta-glow {
  position: absolute;
  border-radius: 999px;
  filter: blur(60px);
  pointer-events: none;
}

.service-detail-glow-one {
  width: 340px;
  height: 340px;
  left: -150px;
  top: 72px;
  background: rgba(251, 113, 133, 0.16);
}

.service-detail-glow-two {
  width: 410px;
  height: 410px;
  right: -170px;
  bottom: -140px;
  background: rgba(139, 92, 246, 0.16);
}

.service-detail-pattern {
  position: absolute;
  top: 84px;
  right: 9%;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background:
    radial-gradient(circle, rgba(139, 92, 246, 0.18) 2px, transparent 2.5px);
  background-size: 18px 18px;
  opacity: 0.42;
  pointer-events: none;
}

.service-detail-hero-box {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 42px;
  padding: 38px;
  border-radius: 42px;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.11), transparent 32%),
    radial-gradient(circle at 90% 86%, rgba(139, 92, 246, 0.14), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.88), rgba(255, 251, 255, 0.68));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow:
    0 34px 90px rgba(31, 20, 48, 0.12),
    inset 0 1px 0 rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}

.service-hero-kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.service-hero-status {
  min-height: 36px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 28px rgba(31, 20, 48, 0.055);
}

.service-hero-status i {
  color: #fb7185;
}

.service-hero-content h1 {
  max-width: 760px;
  margin: 20px 0 16px;
  color: #1f1430;
  font-family: "Playfair Display", serif;
  font-size: 46px !important;
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -1.8px;
}

.service-hero-content p {
  max-width: 680px;
  margin: 0 0 24px;
  color: #6f637a;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.75;
}

.service-hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 22px;
}

.service-detail-breadcrumb {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(139, 92, 246, 0.13);
  box-shadow: 0 12px 30px rgba(31, 20, 48, 0.055);
}

.service-detail-breadcrumb a,
.service-detail-breadcrumb span {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: #4c1d95;
  font-size: 13px;
  font-weight: 950;
}

.service-detail-breadcrumb>i {
  color: #fb7185;
  font-size: 12px;
}

.service-detail-breadcrumb a:hover {
  color: #8b5cf6;
}

.service-hero-visual {
  position: relative;
}

.service-hero-image {
  padding: 12px;
  border-radius: 34px;
}

.service-hero-image img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 430px;
  display: block;
  object-fit: cover;
  object-position: center;
  border-radius: 24px;
}

.service-image-badge {
  position: absolute;
  left: 28px;
  bottom: 28px;
  z-index: 4;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 40px;
  padding: 0 14px;
  border-radius: 999px;
  color: #ffffff;
  font-size: 13px;
  font-weight: 950;
  background: linear-gradient(135deg, rgba(76, 29, 149, 0.92), rgba(139, 92, 246, 0.9), rgba(251, 113, 133, 0.88));
  box-shadow: 0 16px 38px rgba(31, 20, 48, 0.20);
}

.service-floating-card {
  position: absolute;
  z-index: 5;
  display: flex;
  align-items: center;
  gap: 10px;
  width: 210px;
  padding: 14px;
  border-radius: 22px;
}

.service-floating-card i {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 15px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
}

.service-floating-card strong {
  display: block;
  color: #1f1430;
  font-size: 13px;
  font-weight: 950;
}

.service-floating-card span {
  display: block;
  margin-top: 2px;
  color: #6f637a;
  font-size: 12px;
  font-weight: 800;
}

.service-floating-one {
  left: -22px;
  top: 48px;
}

.service-floating-two {
  right: -18px;
  bottom: 52px;
}

/* HERO END */


/* QUICK STRIP START */
.service-quick-section {
  position: relative;
  z-index: 8;
  margin-top: -44px;
}

.service-quick-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  padding: 14px;
  border-radius: 32px;
}

.service-quick-item {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-right: 1px solid rgba(139, 92, 246, 0.12);
}

.service-quick-item:last-child {
  border-right: 0;
}

.service-quick-icon {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 17px;
  color: #ffffff;
  font-size: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.22);
}

.service-quick-item span {
  display: block;
  color: #7b6e84;
  font-size: 11px;
  font-weight: 950;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.service-quick-item strong {
  display: block;
  margin-top: 5px;
  color: #1f1430;
  font-size: 14px;
  font-weight: 950;
  line-height: 1.25;
}

/* QUICK STRIP END */


/* OVERVIEW START */
.service-overview-section,
.service-needed-section,
.aftercare-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 10% 12%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 80%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 50%, #ffffff 100%);
}

.overview-glow-one,
.benefits-glow-one,
.needed-glow-one,
.process-glow-one,
.aftercare-glow-one,
.related-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.overview-glow-two,
.benefits-glow-two,
.needed-glow-two,
.process-glow-two,
.aftercare-glow-two,
.related-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.service-overview-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.78fr);
  gap: 38px;
  align-items: center;
}

.service-overview-points,
.location-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.service-overview-points span,
.location-tags span {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 0 13px;
  border-radius: 999px;
  color: #4c1d95;
  font-size: 12px;
  font-weight: 950;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.service-overview-points span i,
.location-tags span i {
  color: #8b5cf6;
}

.service-overview-card {
  padding: 28px;
  border-radius: 34px;
}

.overview-card-icon,
.benefit-icon,
.process-step-icon,
.related-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 20px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.service-overview-card h3,
.related-service-card h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.service-overview-card p,
.related-service-card p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0 0 20px;
}

.service-card-link {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: #4c1d95;
  font-size: 14px;
  font-weight: 950;
  transition: 0.28s ease;
}

.service-card-link:hover {
  color: #8b5cf6;
  transform: translateX(4px);
}

/* OVERVIEW END */


/* BENEFITS START */
.service-benefits-section,
.service-process-section,
.related-services-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.benefits-pattern,
.process-pattern,
.related-pattern {
  top: 120px;
}

.benefit-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.benefit-card {
  min-height: 255px;
  padding: 26px;
  border-radius: 32px;
}

.benefit-number,
.process-step-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
}

.benefit-card h3,
.process-step h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 21px;
  font-weight: 950;
  line-height: 1.18;
  margin: 0 0 10px;
}

.benefit-card p,
.process-step p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* BENEFITS END */

/* ==================================================
   SERVICE DETAIL PROCESS SECTION START
================================================== */

.sd-process-section {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 8% 14%, rgba(251, 113, 133, 0.10), transparent 30%),
    radial-gradient(circle at 92% 78%, rgba(139, 92, 246, 0.12), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 48%, #ffffff 100%);
}

.sd-process-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 80px;
  background: rgba(251, 113, 133, 0.15);
}

.sd-process-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: 20px;
  background: rgba(139, 92, 246, 0.15);
}

.sd-process-pattern {
  top: 120px;
}

.sd-process-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.sd-process-card {
  position: relative;
  min-height: 300px;
  display: block !important;
  padding: 28px;
  border-radius: 32px;
}

.sd-process-number {
  position: absolute;
  top: 22px;
  right: 22px;
  z-index: 1;
  color: rgba(76, 29, 149, 0.10);
  font-size: 46px;
  font-weight: 950;
  line-height: 1;
  letter-spacing: -2px;
  pointer-events: none;
}

.sd-process-icon {
  position: relative;
  z-index: 2;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: #ffffff;
  font-size: 25px;
  margin-bottom: 22px;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.32), transparent 30%),
    linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 18px 38px rgba(139, 92, 246, 0.26);
}

.sd-process-content {
  position: relative;
  z-index: 2;
  display: block;
  width: 100%;
}

.sd-process-content h3 {
  display: block;
  width: 100%;
  color: #1f1430;
  font-size: 22px;
  font-weight: 950;
  line-height: 1.18;
  letter-spacing: -0.4px;
  margin: 0 0 12px;
}

.sd-process-content p {
  display: block;
  width: 100%;
  color: #6f637a;
  font-size: 14px;
  font-weight: 600;
  line-height: 1.68;
  margin: 0;
}

/* TABLET */
@media (max-width: 991px) {
  .sd-process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-width: 760px;
    width: 100%;
    margin: 0 auto;
  }

  .sd-process-card {
    min-height: 260px;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .sd-process-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .sd-process-card {
    min-height: auto;
    padding: 22px;
    border-radius: 26px;
  }

  .sd-process-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
    margin-bottom: 18px;
  }

  .sd-process-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .sd-process-content h3 {
    font-size: 20px;
  }

  .sd-process-content p {
    font-size: 14px;
    line-height: 1.65;
  }
}

@media (max-width: 420px) {
  .sd-process-card {
    padding: 19px;
    border-radius: 23px;
  }

  .sd-process-content h3 {
    font-size: 19px;
  }
}

/* ==================================================
   SERVICE DETAIL PROCESS SECTION END
================================================== */

/* WHEN NEEDED START */
.service-needed-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 26px;
  align-items: center;
}

.needed-card {
  padding: 30px;
  border-radius: 36px;
}

.needed-alert {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-top: 24px;
  padding: 14px;
  border-radius: 18px;
  color: #4c1d95;
  background: rgba(255, 255, 255, 0.84);
  border: 1px solid rgba(139, 92, 246, 0.12);
}

.needed-alert i {
  color: #fb7185;
  margin-top: 2px;
}

.needed-alert span {
  font-size: 13px;
  font-weight: 900;
  line-height: 1.5;
}

.needed-list {
  display: grid;
  gap: 14px;
}

.needed-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px;
  border-radius: 26px;
}

.needed-item>i {
  position: relative;
  z-index: 2;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 16px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
  box-shadow: 0 14px 30px rgba(139, 92, 246, 0.22);
}

.needed-item h3 {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 17px;
  font-weight: 950;
  margin: 0 0 6px;
}

.needed-item p {
  position: relative;
  z-index: 2;
  color: #6f637a;
  font-size: 13.5px;
  font-weight: 600;
  line-height: 1.6;
  margin: 0;
}

/* WHEN NEEDED END */


/* PROCESS START */
.process-timeline {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.process-step {
  min-height: 275px;
  padding: 26px;
  border-radius: 32px;
}

/* PROCESS END */


/* AFTER CARE START */
.aftercare-wrapper {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 30px;
  align-items: center;
}

.aftercare-content .service-detail-primary-btn {
  margin-top: 26px;
}

.aftercare-grid {
  display: grid;
  gap: 14px;
}

.aftercare-item {
  display: flex;
  align-items: center;
  gap: 13px;
  padding: 18px;
  border-radius: 24px;
}

.aftercare-item i {
  position: relative;
  z-index: 2;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 999px;
  color: #ffffff;
  background: linear-gradient(135deg, #4c1d95, #8b5cf6 58%, #fb7185);
}

.aftercare-item span {
  position: relative;
  z-index: 2;
  color: #1f1430;
  font-size: 14px;
  font-weight: 900;
  line-height: 1.45;
}

/* AFTER CARE END */


/* CTA START */
.service-detail-cta-section {
  position: relative;
  overflow: hidden;
  padding: 34px 0 92px;
  background:
    radial-gradient(circle at 10% 20%, rgba(251, 113, 133, 0.11), transparent 30%),
    radial-gradient(circle at 90% 82%, rgba(139, 92, 246, 0.13), transparent 34%),
    linear-gradient(180deg, #ffffff 0%, #fffbff 54%, #ffffff 100%);
}

.service-detail-cta-glow-one {
  width: 320px;
  height: 320px;
  left: -140px;
  top: 40px;
  background: rgba(251, 113, 133, 0.15);
}

.service-detail-cta-glow-two {
  width: 390px;
  height: 390px;
  right: -170px;
  bottom: -90px;
  background: rgba(139, 92, 246, 0.15);
}

.service-detail-cta-card {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 26px;
  padding: 38px;
  border-radius: 38px;
  background:
    radial-gradient(circle at 8% 18%, rgba(251, 113, 133, 0.13), transparent 32%),
    radial-gradient(circle at 90% 88%, rgba(139, 92, 246, 0.16), transparent 34%),
    linear-gradient(135deg, rgba(255, 255, 255, 0.84), rgba(255, 251, 255, 0.66));
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 28px 78px rgba(31, 20, 48, 0.10);
}

.service-detail-cta-content {
  position: relative;
  z-index: 2;
}

.service-detail-cta-actions {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* CTA END */


/* RELATED START */
.related-services-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.related-service-card {
  min-height: 285px;
  padding: 26px;
  border-radius: 32px;
}

/* RELATED END */


/* BUTTONS */
.service-detail-primary-btn,
.service-detail-outline-btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border: 0;
  border-radius: 999px;
  padding: 0 22px;
  font-size: 14px;
  font-weight: 950;
  transition:
    transform 0.28s ease,
    box-shadow 0.28s ease,
    background 0.28s ease,
    color 0.28s ease;
}

.service-detail-primary-btn {
  color: #ffffff;
  background:
    radial-gradient(circle at 25% 18%, rgba(255, 255, 255, 0.30), transparent 30%),
    linear-gradient(135deg, #4c1d95 0%, #8b5cf6 58%, #fb7185 100%);
  box-shadow: 0 18px 42px rgba(139, 92, 246, 0.25);
}

.service-detail-primary-btn:hover {
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 24px 54px rgba(139, 92, 246, 0.33);
}

.service-detail-outline-btn {
  color: #4c1d95;
  background: #ffffff;
  border: 1px solid rgba(139, 92, 246, 0.14);
  box-shadow: 0 14px 34px rgba(31, 20, 48, 0.06);
}

.service-detail-outline-btn:hover {
  color: #4c1d95;
  transform: translateY(-2px);
  background: #fffbff;
  box-shadow: 0 18px 44px rgba(31, 20, 48, 0.10);
}


/* LAPTOP FIT */
@media (min-width: 992px) and (max-height: 780px) {
  .section-padding {
    padding: 72px 0;
  }

  .service-detail-hero {
    padding: 58px 0 76px;
  }

  .service-detail-hero-box {
    padding: 30px;
  }

  .service-hero-content h1 {
    font-size: clamp(40px, 4.8vw, 62px);
  }

  .service-hero-image img {
    height: 365px;
  }

  .section-heading h2,
  .service-overview-content h2,
  .needed-card h2,
  .aftercare-content h2,
  .service-detail-cta-card h2 {
    font-size: 40px !important;
  }

  .benefit-card,
  .process-step,
  .related-service-card {
    min-height: 235px;
    padding: 22px;
  }
}

/* TABLET */
@media (max-width: 991px) {

  .service-detail-hero-box,
  .service-quick-grid,
  .service-overview-wrapper,
  .service-needed-wrapper,
  .aftercare-wrapper,
  .service-detail-cta-card {
    grid-template-columns: 1fr;
  }

  .benefit-grid,
  .process-timeline,
  .related-services-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-floating-card {
    display: none;
  }

  .service-quick-item {
    border-right: 0;
    border-bottom: 1px solid rgba(139, 92, 246, 0.12);
  }

  .service-quick-item:last-child {
    border-bottom: 0;
  }

  .section-heading,
  .service-overview-content,
  .needed-card,
  .aftercare-content,
  .service-detail-cta-card {
    text-align: center;
  }

  .section-heading p,
  .service-overview-content>p,
  .needed-card>p,
  .aftercare-content>p,
  .service-detail-cta-card p {
    margin-left: auto;
    margin-right: auto;
  }

  .service-overview-points,
  .service-detail-cta-actions {
    justify-content: center;
  }

  .service-detail-hero-box,
  .service-overview-card,
  .needed-list,
  .aftercare-grid,
  .benefit-grid,
  .process-timeline,
  .related-services-grid {
    max-width: 760px;
    width: 100%;
    margin-left: auto;
    margin-right: auto;
  }
}

/* MOBILE */
@media (max-width: 767px) {
  .section-padding {
    padding: 64px 0;
  }

  .service-detail-hero {
    padding: 52px 0 78px;
  }

  .service-detail-hero-box {
    padding: 24px 18px;
    border-radius: 28px;
  }

  .service-hero-content h1 {
    font-size: 38px;
    line-height: 1.02;
    letter-spacing: -1px;
  }

  .service-hero-content p {
    font-size: 15px;
    line-height: 1.68;
  }

  .service-hero-kicker {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-hero-status {
    justify-content: center;
  }

  .service-hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-detail-breadcrumb {
    width: 100%;
    border-radius: 16px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .service-hero-image {
    padding: 8px;
    border-radius: 26px;
  }

  .service-hero-image img {
    height: 300px;
    border-radius: 20px;
  }

  .service-image-badge {
    left: 20px;
    bottom: 20px;
  }

  .service-quick-section {
    margin-top: -38px;
  }

  .service-quick-grid {
    padding: 10px;
    border-radius: 24px;
  }

  .service-quick-item {
    padding: 14px;
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .service-overview-content h2,
  .needed-card h2,
  .aftercare-content h2,
  .service-detail-cta-card h2 {
    font-size: 32px !important;
    line-height: 1.08;
    letter-spacing: -1px;
  }

  .section-heading p,
  .service-overview-content>p,
  .needed-card>p,
  .aftercare-content>p,
  .service-detail-cta-card p {
    font-size: 15px;
    line-height: 1.68;
  }

  .service-overview-card,
  .needed-card,
  .benefit-card,
  .process-step,
  .related-service-card,
  .aftercare-item {
    padding: 22px;
    border-radius: 26px;
  }

  .overview-card-icon,
  .benefit-icon,
  .process-step-icon,
  .related-icon {
    width: 56px;
    height: 56px;
    border-radius: 19px;
    font-size: 22px;
  }

  .benefit-grid,
  .process-timeline,
  .related-services-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .benefit-card,
  .process-step,
  .related-service-card {
    min-height: auto;
  }

  .benefit-number,
  .process-step-number {
    top: 20px;
    right: 20px;
    font-size: 38px;
  }

  .needed-item {
    padding: 16px;
    border-radius: 22px;
  }

  .aftercare-item {
    align-items: flex-start;
  }

  .service-overview-points {
    display: grid;
    grid-template-columns: 1fr;
  }

  .service-overview-points span {
    justify-content: center;
  }

  .service-detail-cta-card {
    padding: 24px;
    border-radius: 28px;
  }

  .service-detail-cta-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .service-detail-primary-btn,
  .service-detail-outline-btn {
    width: 100%;
  }
}

@media (max-width: 420px) {
  .service-hero-content h1 {
    font-size: 32px;
  }

  .service-detail-hero-box {
    padding: 22px 14px;
    border-radius: 24px;
  }

  .section-heading h2,
  .service-overview-content h2,
  .needed-card h2,
  .aftercare-content h2,
  .service-detail-cta-card h2 {
    font-size: 29px !important;
  }

  .section-badge {
    font-size: 11.5px;
    padding: 8px 12px;
  }

  .service-hero-image img {
    height: 260px;
  }

  .service-overview-card,
  .needed-card,
  .benefit-card,
  .process-step,
  .related-service-card,
  .aftercare-item {
    padding: 19px;
    border-radius: 23px;
  }

  .service-quick-item {
    align-items: flex-start;
  }

  .service-quick-item strong {
    font-size: 13px;
  }

  .service-detail-cta-card {
    padding: 20px;
    border-radius: 24px;
  }
}

/* ==================================================
   SERVICE DETAILS PAGE END
================================================== */

/* ==================================================
   THANK YOU POPUP START
================================================== */
.thankyou-popup {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.thankyou-popup.is-visible {
  display: flex;
}

.thankyou-popup-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(15, 23, 42, 0.68);
  backdrop-filter: blur(10px);
}

.thankyou-popup-card {
  position: relative;
  width: min(480px, 100%);
  padding: 34px 30px 28px;
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 24px 70px rgba(15, 23, 42, 0.28);
  text-align: center;
  animation: thankyouPop 0.28s ease-out;
}

.thankyou-popup-close {
  position: absolute;
  top: 14px;
  right: 14px;
  width: 38px;
  height: 38px;
  border: 0;
  border-radius: 50%;
  background: #f1f5f9;
  color: #334155;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.thankyou-popup-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  background: #dcfce7;
  color: #15803d;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 42px;
}

.thankyou-popup-kicker {
  display: block;
  margin-bottom: 8px;
  color: #0f766e;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.thankyou-popup-card h2 {
  margin: 0 0 10px;
  color: #0f172a;
  font-size: 28px;
  line-height: 1.25;
}

.thankyou-popup-card p {
  margin: 0;
  color: #475569;
  font-size: 15.5px;
  line-height: 1.7;
}

.thankyou-popup-actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

.thankyou-popup-primary,
.thankyou-popup-secondary {
  min-height: 46px;
  padding: 12px 18px;
  border-radius: 8px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  text-decoration: none;
  border: 0;
  cursor: pointer;
}

.thankyou-popup-primary {
  background: #0f766e;
  color: #ffffff;
}

.thankyou-popup-secondary {
  background: #f1f5f9;
  color: #334155;
}

@keyframes thankyouPop {
  from {
    opacity: 0;
    transform: translateY(16px) scale(0.98);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@media (max-width: 575px) {
  .thankyou-popup-card {
    padding: 30px 20px 22px;
  }

  .thankyou-popup-card h2 {
    font-size: 24px;
  }

  .thankyou-popup-primary,
  .thankyou-popup-secondary {
    width: 100%;
  }
}

/* ==================================================
   THANK YOU POPUP END
================================================== */
