/* ==========================================================================
   CSS Variables & Resets
   ========================================================================== */
:root {
  /* Brand Colors */
  --clr-teal: #26585f;
  --clr-teal-light: #34757e;
  --clr-orange: #ef7f1a;
  --clr-orange-hover: #d67015;
  --clr-navy: #0b2239;

  /* Neutrals */
  --clr-white: #ffffff;
  --clr-light: #f8f9fa;
  --clr-gray-100: #f1f5f9;
  --clr-gray-200: #e2e8f0;
  --clr-gray-500: #64748b;
  --clr-gray-800: #1e293b;

  /* Typography */
  --font-heading: "Playfair Display", serif;
  --font-body: "Nunito", sans-serif;

  /* Shadows & Effects */
  --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
  --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.08);
  --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
  --shadow-hover: 0 25px 30px -5px rgba(38, 88, 95, 0.15);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --topbar-height: 42px;

  /* Transitions */
  --transition-fast: 0.2s ease;
  --transition-base: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.bg-color {
  width: 100vw;
  margin-top: 1.75rem;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
  background:
    radial-gradient(
      circle at top right,
      rgba(38, 88, 95, 0.18),
      transparent 26%
    ),
    linear-gradient(180deg, #0f2336 0%, #102538 100%);
}
/* ==========================================================================
   Specialised Infusions
   ========================================================================== */
.specialised-infusions {
  max-width: 1440px;
  margin: 0 auto;
  padding: 4rem;

  /* border: 1px solid rgba(38, 195, 188, 0.14);
  border-radius: 28px;
  box-shadow: 0 24px 52px rgba(11, 34, 57, 0.22); */
}

.specialised-infusions-header {
  max-width: 100%;
  margin-bottom: 2rem;
  text-align: center;
}

.specialised-infusions-tag {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  color: var(--clr-orange);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.specialised-infusions-header h3 {
  margin: 1rem 0;
  color: #f6efe6;
  font-size: 2.2rem;
  line-height: 1.08;
}

.specialised-infusions-highlight {
  color: var(--clr-orange);
  font-style: italic;
  font-weight: 500;
}

.specialised-infusions-header p {
  max-width: 100%;
  color: rgba(222, 233, 241, 0.78);
  font-size: 1.05rem;
  line-height: 1.7;
  text-align: center;
}

.specialised-infusions-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.2rem;
}

.infusion-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.8rem 1.75rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(38, 195, 188, 0.16);
  border-radius: 10px;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    box-shadow var(--transition-base);
}

.infusion-card:hover {
  transform: translateY(-4px);
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(38, 195, 188, 0.28);
  box-shadow: 0 16px 32px rgba(8, 21, 34, 0.18);
}

.infusion-card-wide {
  grid-column: 1 / -1;
}

.infusion-card-copy h4 {
  margin-bottom: 0.45rem;
  color: #f7eee4;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.35;
}

.infusion-card-copy p {
  margin: 0;
  color: rgba(196, 214, 227, 0.82);
  font-size: 0.95rem;
  line-height: 1.6;
}

.infusion-card-link {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 0.75rem 1rem;
  border: 1px solid rgba(38, 195, 188, 0.18);
  border-radius: 6px;
  background: rgba(38, 195, 188, 0.08);
  color: var(--clr-orange);
  font-size: 0.85rem;
  font-weight: 800;
  letter-spacing: 1px;
  text-transform: uppercase;
  transition:
    transform var(--transition-base),
    border-color var(--transition-base),
    background var(--transition-base),
    color var(--transition-base);
}

.infusion-card-link:hover {
  transform: translateY(-2px);
  background: rgba(38, 195, 188, 0.16);
  border-color: rgba(38, 195, 188, 0.34);
  color: #fff;
}

.infusion-assessment-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  margin-top: 1.4rem;
  padding: 1.4rem 1.5rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 18px;
}

.infusion-assessment-copy h4 {
  margin-bottom: 0.4rem;
  color: #f7eee4;
  font-size: 1.1rem;
}

.infusion-assessment-copy p {
  margin: 0;
  color: rgba(196, 214, 227, 0.78);
  line-height: 1.65;
}

.infusion-assessment-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  flex-shrink: 0;
}

.advanced-procedures {
  margin-top: 2.25rem;
}

.advanced-procedures-header {
  margin-bottom: 1.6rem;
  text-align: center;
}

.advanced-procedures-header h3 {
  margin: 1rem 0 0;
  color: #f6efe6;
  font-size: 2.2rem;
  line-height: 1.08;
}

.advanced-procedures-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 2rem;
  padding: 2.2rem;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(38, 195, 188, 0.14);
  border-radius: 12px;
}

.advanced-procedures-list {
  display: grid;
  gap: 0.9rem;
  align-content: start;
}

.advanced-procedure-item {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 64px;
  padding: 1.1rem 1.4rem;
  background: rgba(18, 42, 63, 0.9);
  border: 1px solid rgba(38, 195, 188, 0.14);
  border-radius: 6px;
  color: #f7eee4;
  font-size: 1rem;
  font-weight: 700;
  line-height: 1.4;
}

.advanced-procedure-dot {
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  border-radius: 50%;
  background: #22c7be;
}

.advanced-procedures-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}

.advanced-procedures-copy h4 {
  margin-bottom: 1rem;
  color: #f6efe6;
  font-size: 1.8rem;
  font-weight: 500;
  line-height: 1.15;
}

.advanced-procedures-copy p {
  max-width: 32rem;
  margin-bottom: 2rem;
  color: rgba(196, 214, 227, 0.82);
  font-size: 1rem;
  line-height: 1.8;
}

.advanced-procedures-cta {
  min-width: 255px;
  min-height: 56px;
  padding: 0.95rem 1.5rem;
  border-radius: 4px;
  /* background: linear-gradient(135deg, #27c6be 0%, #2ab3aa 100%); */
  color: #ffffff;
  box-shadow: 0 18px 34px rgba(39, 198, 190, 0.18);
}

.advanced-procedures-cta:hover {
  /* background: linear-gradient(135deg, #33d5cd 0%, #25aca4 100%); */
  color: #ffffff;
  box-shadow: 0 20px 36px rgba(39, 198, 190, 0.24);
}

@media (max-width: 991px) {
  .bg-color {
    padding: 0 1.25rem;
  }

  .specialised-infusions {
    padding: 1.75rem 0;
  }

  .specialised-infusions-grid {
    grid-template-columns: 1fr;
  }

  .advanced-procedures-panel {
    grid-template-columns: 1fr;
    gap: 1.5rem;
    padding: 1.5rem;
  }

  .infusion-card-wide {
    grid-column: auto;
  }

  .infusion-assessment-bar {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 640px) {
  .bg-color {
    padding: 0 1rem;
  }

  .specialised-infusions-header h3 {
    font-size: 2rem;
  }

  .advanced-procedures-header h3,
  .advanced-procedures-copy h4 {
    font-size: 2rem;
  }

  .infusion-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 1.3rem;
  }

  .infusion-card-link,
  .advanced-procedures-cta,
  .infusion-assessment-actions .btn {
    width: 100%;
    min-width: 0;
    justify-content: center;
  }

  .infusion-assessment-actions {
    width: 100%;
  }
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--clr-gray-800);
  line-height: 1.6;
  background-color: var(--clr-white);
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: var(--font-heading);
  color: var(--clr-navy);
  line-height: 1.2;
  margin-bottom: 1rem;
}

p {
  margin-bottom: 1rem;
  color: var(--clr-gray-500);
}

a {
  text-decoration: none;
  color: inherit;
  transition: var(--transition-base);
}

ul {
  list-style: none;
}

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

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.75rem 1.5rem;
  border-radius: var(--radius-sm);
  font-weight: 700;
  font-family: var(--font-body);
  cursor: pointer;
  transition: var(--transition-base);
  text-align: center;
  border: 2px solid transparent;
}

.btn-large {
  padding: 1rem 2rem;
  font-size: 1.1rem;
}

.btn-block {
  display: flex;
  width: 100%;
}

.btn-primary {
  background-color: var(--clr-orange);
  color: var(--clr-white);
}

.btn-primary:hover {
  background-color: var(--clr-teal-light);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-secondary {
  background-color: var(--clr-orange);
  color: var(--clr-white);
}

.btn-secondary:hover {
  background-color: var(--clr-orange-hover);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background-color: transparent;
  border-color: var(--clr-teal);
  color: var(--clr-teal);
}

.btn-outline:hover {
  background-color: var(--clr-teal);
  color: var(--clr-white);
  transform: translateY(-2px);
}

/* ==========================================================================
   Header & Navigation
   ========================================================================== */
.topbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: var(--topbar-height);
  background: linear-gradient(90deg, #0b2239 0%, #1d4a57 100%);
  color: #fff;
  z-index: 1100;
  box-shadow: 0 4px 14px rgba(11, 34, 57, 0.18);
}

.topbar-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.topbar-message,
.topbar-call {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  font-size: 0.9rem;
  font-weight: 700;
  line-height: 1;
}

.topbar-message i {
  color: var(--clr-orange);
}

.topbar-call {
  color: #fff;
  white-space: nowrap;
}

.topbar-call:hover {
  color: #ffd39d;
}

.header {
  position: fixed;
  top: var(--topbar-height);
  left: 0;
  width: 100%;
  background-color: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
  padding: 1rem 0;
}

.header.scrolled {
  padding: 0.5rem 0;
  box-shadow: var(--shadow-md);
}

.header-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  /* max-width: 1520px; */
}

/* ==========================================================================
   Navigation
   ========================================================================== */
.nav {
  display: flex;
  align-items: center;
  gap: 0.15rem;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 0.5rem 0.75rem;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--clr-navy);
  border-radius: var(--radius-sm);
  white-space: nowrap;
  transition: color var(--transition-fast);
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 2px;
  background: var(--clr-orange);
  border-radius: 2px;
  transition: width var(--transition-base);
}

.nav-link:hover,
.nav-link.active {
  color: var(--clr-teal);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: calc(100% - 1.5rem);
}

.nav-mobile-cta {
  display: none;
}

.logo img {
  height: 70px;
  object-fit: contain;
}

.header-right {
  display: flex;
  align-items: center;
  gap: 2rem;
}

.contact-number {
  font-weight: 700;
  color: var(--clr-navy);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.contact-number i {
  color: var(--clr-orange);
}

.mobile-menu-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--clr-navy);
  cursor: pointer;
}

/* ==========================================================================
   Hero Section — Redesigned
   ========================================================================== */
.hero {
  position: relative;
  padding: calc(9rem + var(--topbar-height)) 0 6rem;
  background: linear-gradient(
    130deg,
    #0b2239 0%,
    #0e2d40 40%,
    #1d4a57 72%,
    #26585f 100%
  );
  overflow: hidden;
  min-height: 100vh;
  display: flex;
  align-items: center;
}

.hero-blob {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}

.hero-blob-1 {
  width: 650px;
  height: 650px;
  background: radial-gradient(
    circle,
    rgba(239, 127, 26, 0.13) 0%,
    transparent 68%
  );
  top: -220px;
  right: 4%;
}

.hero-blob-2 {
  width: 420px;
  height: 420px;
  background: radial-gradient(
    circle,
    rgba(38, 88, 95, 0.38) 0%,
    transparent 70%
  );
  bottom: -130px;
  left: -110px;
}

.hero-container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* ---- Content side ---- */
.hero-content {
  color: #fff;
}

.hero-live-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.45rem 1.1rem;
  background: rgba(239, 127, 26, 0.15);
  border: 1px solid rgba(239, 127, 26, 0.35);
  border-radius: 50px;
  color: #ffb56b;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}

.hero-live-dot {
  width: 8px;
  height: 8px;
  background: #ef7f1a;
  border-radius: 50%;
  flex-shrink: 0;
  animation: hero-pulse 1.6s ease-out infinite;
}

@keyframes hero-pulse {
  0% {
    box-shadow: 0 0 0 0 rgba(239, 127, 26, 0.55);
  }
  70% {
    box-shadow: 0 0 0 9px rgba(239, 127, 26, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(239, 127, 26, 0);
  }
}

.hero-title {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1.1;
  margin-bottom: 1.5rem;
  letter-spacing: -0.5px;
}

.hero-title-em {
  font-style: normal;
  color: #ef7f1a;
}

.hero-desc {
  font-size: 1.05rem;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.78;
  margin-bottom: 2.5rem;
  max-width: 490px;
}

.hero-desc strong {
  color: #fff;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: #ef7f1a;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid #ef7f1a;
  transition: all 0.3s ease;
  box-shadow: 0 8px 24px rgba(239, 127, 26, 0.38);
  text-decoration: none;
}

.hero-btn-primary:hover {
  background: #d67015;
  border-color: #d67015;
  transform: translateY(-3px);
  box-shadow: 0 14px 32px rgba(239, 127, 26, 0.48);
  color: #fff;
}

.hero-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  padding: 0.95rem 2rem;
  background: transparent;
  color: #fff;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 50px;
  border: 2px solid rgba(255, 255, 255, 0.35);
  transition: all 0.3s ease;
  text-decoration: none;
}

.hero-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.7);
  transform: translateY(-3px);
  color: #fff;
}

.hero-stats {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-stat-value {
  font-size: 1.45rem;
  font-weight: 800;
  color: #fff;
  line-height: 1;
  font-family: var(--font-heading);
}

.hero-stat-label {
  font-size: 0.76rem;
  color: rgba(255, 255, 255, 0.5);
  margin-top: 4px;
}

.hero-stat-div {
  width: 1px;
  height: 34px;
  background: rgba(255, 255, 255, 0.15);
}

/* ---- Visual / image side ---- */
.hero-visual {
  position: relative;
  padding: 20px 30px 36px 10px;
}

.hero-img-wrap {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: 0 32px 64px rgba(0, 0, 0, 0.45);
}

.hero-photo {
  width: 100%;
  height: 520px;
  object-fit: cover;
  display: block;
}

.hero-img-grad {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to top,
    rgba(11, 34, 57, 0.55) 0%,
    transparent 55%
  );
}

.hero-chip {
  position: absolute;
  background: #fff;
  border-radius: 16px;
  padding: 0.85rem 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  min-width: 158px;
  z-index: 2;
}

.hero-chip-nurse {
  bottom: 10px;
  left: -10px;
}

.hero-chip-time {
  top: 28px;
  right: -10px;
}

.hero-chip-ico {
  width: 44px;
  height: 44px;
  background: var(--clr-teal);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.hero-chip-ico-ora {
  background: #ef7f1a;
}

.hero-chip strong {
  display: block;
  font-weight: 700;
  color: #0b2239;
  font-size: 0.9rem;
  line-height: 1.2;
}

.hero-chip span {
  font-size: 0.75rem;
  color: #64748b;
}

.hero-rating {
  position: absolute;
  bottom: 22px;
  right: 2px;
  background: rgba(11, 34, 57, 0.9);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50px;
  padding: 0.55rem 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  color: #fff;
  font-size: 0.8rem;
  font-weight: 600;
  white-space: nowrap;
  z-index: 2;
}

.hero-rating-stars {
  color: #f59e0b;
  font-size: 0.72rem;
  display: flex;
  gap: 1px;
}

/* keep text-gradient for other sections */
.text-gradient {
  background: linear-gradient(to right, var(--clr-teal), var(--clr-teal-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* ==========================================================================
   Section Defaults
   ========================================================================== */
section {
  padding: 6rem 0;
}

.section-title {
  text-align: center;
  max-width: 900px;
  margin: 0 auto 4rem;
}

.section-title.align-left {
  text-align: left;
  margin: 0 0 2rem 0;
}

.section-title h2 {
  font-size: 2.5rem;
  position: relative;
  padding-bottom: 1rem;
  margin-bottom: 1rem;
}

.section-title h2::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--clr-orange);
}

.section-title.align-left h2::after {
  left: 0;
  transform: none;
}

.section-title p {
  font-size: 1.1rem;
}

/* ==========================================================================
   Features Section
   ========================================================================== */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
}

.feature-card {
  background: var(--clr-white);
  padding: 2.5rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gray-100);
  transition: var(--transition-base);
}

.feature-card:hover {
  transform: translateY(-10px);
  box-shadow: var(--shadow-hover);
  border-color: var(--clr-teal-light);
}

.feature-icon {
  width: 70px;
  height: 70px;
  background-color: rgba(38, 88, 95, 0.1);
  color: var(--clr-teal);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  transition: var(--transition-base);
}

.feature-card:hover .feature-icon {
  background-color: var(--clr-teal);
  color: var(--clr-white);
}

/* ==========================================================================
   About Section
   ========================================================================== */
.about-section {
  padding: 6rem 0;
  background: var(--clr-white);
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

/* --- Image column --- */
.about-image-wrapper {
  position: relative;
}

.about-image-wrapper img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.about-exp-badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--clr-orange);
  color: var(--clr-white);
  padding: 1.5rem 1.75rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
  line-height: 1.2;
}

.about-exp-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  line-height: 1;
}

.about-exp-label {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  opacity: 0.9;
  margin-top: 0.4rem;
}

.about-img-tag {
  position: absolute;
  top: 24px;
  left: -24px;
  background: var(--clr-white);
  color: var(--clr-teal);
  padding: 0.75rem 1.25rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 0.9rem;
  white-space: nowrap;
}

.about-img-tag i {
  color: var(--clr-orange);
  font-size: 1.1rem;
}

/* --- Content column --- */
.section-tag {
  display: inline-block;
  color: var(--clr-orange);
  font-weight: 700;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 0.75rem;
}

.about-content h2 {
  font-size: 2.4rem;
  margin-bottom: 1.25rem;
  line-height: 1.25;
}

.about-intro {
  font-size: 1rem;
  line-height: 1.75;
  margin-bottom: 1rem;
}

.about-values {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  margin: 2rem 0 2.5rem;
}

.about-value-item {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
}

.about-value-icon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  background: rgba(38, 88, 95, 0.08);
  color: var(--clr-teal);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  margin-top: 2px;
  transition: var(--transition-base);
}

.about-value-item:hover .about-value-icon {
  background: var(--clr-teal);
  color: var(--clr-white);
}

.about-value-item h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.2rem;
}

.about-value-item p {
  font-size: 0.9rem;
  margin: 0;
}

.about-cta {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Responsive */
@media (max-width: 992px) {
  .about-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }

  .about-image-col {
    order: -1;
  }

  .about-exp-badge {
    right: 10px;
    bottom: -20px;
  }

  .about-img-tag {
    left: 10px;
    top: 16px;
  }

  .about-image-wrapper img {
    height: 380px;
  }

  .about-content h2 {
    font-size: 2rem;
  }
}

@media (max-width: 768px) {
  .about-cta {
    flex-direction: column;
  }

  .about-image-wrapper img {
    height: 280px;
  }
}

/* ==========================================================================
   How It Works Section
   ========================================================================== */
.how-it-works {
  background: #26585f;
}

.how-it-works .section-title h2 {
  color: var(--clr-white);
}

.how-it-works .section-title p {
  color: rgba(255, 255, 255, 0.75);
}

.how-it-works .step h3 {
  color: var(--clr-white);
}

.how-it-works .step p {
  color: rgba(255, 255, 255, 0.75);
}

.steps-container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  position: relative;
}

.step {
  flex: 1;
  text-align: center;
  position: relative;
  z-index: 1;
}

.step-icon {
  width: 80px;
  height: 80px;
  background: rgba(255, 255, 255, 0.12);
  color: var(--clr-white);
  border: 2px solid rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
  box-shadow: var(--shadow-md);
  position: relative;
  transition: var(--transition-base);
}

.step:hover .step-icon {
  background: var(--clr-white);
  color: var(--clr-teal);
  transform: scale(1.1);
}

.step-connector {
  flex: 0 0 100px;
  height: 2px;
  background: rgba(255, 255, 255, 0.2);
  margin-top: 40px;
  position: relative;
}

.step-connector::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 10px;
  height: 10px;
  background: var(--clr-orange);
  border-radius: 50%;
}

/* ==========================================================================
   Services Section — Modern Card Grid
   ========================================================================== */
.services {
  background: #f4f8f9;
}

.services .section-title .section-tag {
  display: block;
  margin-bottom: 0.5rem;
}

.services-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card-new {
  background: var(--clr-white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 2px 16px rgba(11, 34, 57, 0.06);
  border: 1px solid rgba(11, 34, 57, 0.06);
  display: flex;
  flex-direction: column;
  transition:
    transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
    box-shadow 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card-new:hover {
  transform: translateY(-10px);
  box-shadow: 0 24px 48px rgba(11, 34, 57, 0.13);
}

/* Coloured icon strip at top */
.svc-icon-wrap {
  width: 100%;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2.4rem;
  flex-shrink: 0;
  border-radius: 0;
}

.svc-blue {
  background: linear-gradient(135deg, #dbeafe, #bfdbfe);
}
.svc-purple {
  background: linear-gradient(135deg, #ede9fe, #ddd6fe);
}
.svc-teal {
  background: linear-gradient(135deg, #ccfbf1, #99f6e4);
}
.svc-orange {
  background: linear-gradient(135deg, #ffedd5, #fed7aa);
}
.svc-pink {
  background: linear-gradient(135deg, #fce7f3, #fbcfe8);
}
.svc-green {
  background: linear-gradient(135deg, #dcfce7, #bbf7d0);
}

.svc-blue i {
  color: #1d4ed8;
}
.svc-purple i {
  color: #6d28d9;
}
.svc-teal i {
  color: #0f766e;
}
.svc-orange i {
  color: #c2410c;
}
.svc-pink i {
  color: #be185d;
}
.svc-green i {
  color: #15803d;
}

.svc-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1;
}

.service-card-new h3 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-navy);
  margin-bottom: 0.4rem;
}

.service-card-new p {
  font-size: 0.875rem;
  line-height: 1.65;
  color: var(--clr-gray-500);
  margin-bottom: 1.25rem;
  flex: 1;
  text-align: center;
}

.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--clr-teal);
  transition:
    gap var(--transition-fast),
    color var(--transition-fast);
  margin-top: auto;
}

.svc-link i {
  font-size: 0.75rem;
  transition: transform var(--transition-fast);
}

.svc-link:hover {
  color: var(--clr-orange);
  gap: 0.7rem;
}

.svc-link:hover i {
  transform: translateX(3px);
}

/* ==========================================================================
   Pricing Section — Indian Rupee Packages
   ========================================================================== */
.pricing-grid-new {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-grid-doc {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.pricing-grid-legacy {
  display: none;
}

.pricing-card-new {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  position: relative;
  transition: var(--transition-base);
}

.pricing-card-doc {
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.2rem;
  position: relative;
  transition: var(--transition-base);
}

.pricing-card-new:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card-doc:hover {
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}

.pricing-card-new.popular-new {
  border: 2px solid var(--clr-teal);
  padding-top: 2.75rem;
}

.pricing-card-doc.popular-new {
  border: 2px solid var(--clr-teal);
  padding-top: 2.75rem;
  box-shadow: 0 16px 32px rgba(38, 88, 95, 0.12);
}

.most-booked-badge {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  background: var(--clr-teal);
  color: var(--clr-white);
  padding: 0.4rem 1.4rem;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  white-space: nowrap;
}

.pkg-name {
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--clr-gray-500);
  margin-bottom: 0.75rem;
}

.pkg-price {
  display: flex;
  align-items: center;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 2.4rem;
  font-weight: 700;
  color: var(--clr-navy);
  line-height: 1;
  margin-bottom: 0.5rem;
}

.pkg-currency {
  font-size: 2rem;
  margin-top: 0.4rem;
  margin-right: 2px;
}

.pkg-per {
  font-size: 0.9rem;
  font-family: var(--font-body);
  color: var(--clr-gray-500);
  font-weight: 400;
  align-self: flex-end;
  margin-bottom: 0.35rem;
  margin-left: 4px;
}

.pkg-desc {
  font-size: 0.87rem;
  color: var(--clr-orange);
  line-height: 1.5;
  margin-bottom: 1.5rem;
}

.pkg-features {
  margin-bottom: 1.5rem;
}

.pkg-features li {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--clr-gray-100);
  font-size: 0.9rem;
  color: var(--clr-gray-800);
}

.pkg-features li:last-child {
  border-bottom: none;
}

.pkg-features li i {
  color: var(--clr-teal);
  font-size: 0.82rem;
  flex-shrink: 0;
}

.pkg-note {
  font-size: 0.76rem;
  color: var(--clr-gray-500);
  font-style: italic;
  margin-top: 0.75rem;
  margin-bottom: 0;
}

.pricing-intro + p {
  display: none;
}

.pricing-support-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-top: 1.5rem;
}

.pricing-panel {
  background: linear-gradient(180deg, #ffffff 0%, #f6fbfb 100%);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  padding: 2rem 1.75rem;
  box-shadow: var(--shadow-sm);
}

.pricing-panel h3 {
  font-family: var(--font-heading);
  font-size: 1.35rem;
  color: var(--clr-navy);
  margin-bottom: 1rem;
}

.pricing-panel-list {
  display: grid;
  gap: 0.85rem;
}

.pricing-panel-list li {
  position: relative;
  padding-left: 1.1rem;
  color: var(--clr-gray-800);
  line-height: 1.6;
}

.pricing-panel-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.72rem;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--clr-orange);
}

.pricing-panel-note {
  margin-top: 1.25rem;
  color: var(--clr-gray-600);
  font-weight: 600;
}

.pricing-panel-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 1.25rem;
}

.pricing-note-strip {
  margin-top: 1.5rem;
  padding: 1.5rem 1.75rem;
  background: #0f3c44;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
}

.pricing-note-label {
  margin-bottom: 0.9rem;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.75);
}

.pricing-note-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem 1.5rem;
}

.pricing-note-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.65rem;
  color: rgba(255, 255, 255, 0.92);
  line-height: 1.6;
}

.pricing-note-list li i {
  color: #7ee0c3;
  font-size: 0.85rem;
  margin-top: 0.3rem;
  flex-shrink: 0;
}

/* ==========================================================================
   Why Choose Us Section — Dark Gradient + Glass Cards
   ========================================================================== */
.why-choose {
  background: linear-gradient(
    135deg,
    var(--clr-navy) 0%,
    #1a4a52 60%,
    var(--clr-teal) 100%
  );
  padding: 6rem 0;
  position: relative;
  overflow: hidden;
}

/* Decorative background circle */
.why-choose::before {
  content: "";
  position: absolute;
  top: -150px;
  right: -150px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.03);
  pointer-events: none;
}

.why-choose::after {
  content: "";
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: rgba(239, 127, 26, 0.06);
  pointer-events: none;
}

.why-choose-header {
  text-align: center;
  margin-bottom: 3.5rem;
  position: relative;
  z-index: 1;
}

.why-tag {
  display: inline-block;
  color: var(--clr-orange);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  margin-bottom: 0.75rem;
}

.why-choose-header h2 {
  color: var(--clr-white);
  font-size: 2.6rem;
  margin-bottom: 1rem;
}

.why-choose-header p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 1.05rem;
  max-width: 560px;
  margin: 0 auto;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  position: relative;
  z-index: 1;
}

.why-card {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 18px;
  padding: 2rem 1.75rem;
  transition:
    background 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.why-card:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(239, 127, 26, 0.45);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.why-icon {
  display: block;
  font-size: 2rem;
  margin-bottom: 1rem;
  line-height: 1;
}

.why-card h4 {
  font-family: var(--font-body);
  font-size: 1rem;
  font-weight: 700;
  color: var(--clr-white);
  margin-bottom: 0.5rem;
}

.why-card > p {
  font-size: 0.875rem;
  line-height: 1.7;
  color: rgba(255, 255, 255, 0.65);
  margin: 0;
}

/* ==========================================================================
   Policies Section
   ========================================================================== */
.policies-section {
  position: relative;
  overflow: hidden;
}

.policies-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.policy-card {
  display: flex;
  align-items: flex-start;
  gap: 1.15rem;
  padding: 1.75rem;
  background: var(--clr-white);
  border: 1px solid var(--clr-gray-200);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  transition: var(--transition-base);
}

.policy-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.policy-card-icon {
  width: 58px;
  height: 58px;
  flex-shrink: 0;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(38, 88, 95, 0.08);
  color: var(--clr-teal);
  font-size: 1.35rem;
}

.policy-card-body {
  min-width: 0;
}

.policy-card-kicker {
  margin-bottom: 0.45rem;
  color: var(--clr-orange);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 1.6px;
  text-transform: uppercase;
}

.policy-card h3 {
  margin-bottom: 0.7rem;
  color: var(--clr-navy);
  font-size: 1.25rem;
}

.policy-card p {
  margin-bottom: 1rem;
  color: var(--clr-gray-700);
  line-height: 1.7;
}

.policy-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--clr-orange);
  font-weight: 700;
}

.policy-card-link i {
  transition: transform 0.2s ease;
}

.policy-card:hover .policy-card-link i {
  transform: translateX(3px);
}

/* ==========================================================================
   FAQ Section
   ========================================================================== */
.faq-container {
  max-width: 1200px;
  margin: 0 auto;
}

.faq-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1.5rem;
  align-items: start;
}

.faq-column {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  background: var(--clr-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.5rem;
  background: transparent;
  border: none;
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--clr-navy);
  font-weight: 600;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: var(--transition-base);
}

.faq-question i {
  color: var(--clr-teal);
  transition: transform 0.3s ease;
}

.faq-question.active i {
  transform: rotate(180deg);
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
}

.faq-answer p {
  padding: 0 1.5rem 1.5rem;
  margin: 0;
}

@media (max-width: 768px) {
  .faq-columns {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}

/* ==========================================================================
   CTA Section
   ========================================================================== */
.cta-section {
  background: url("https://images.unsplash.com/photo-1519494026892-80bbd2d6fd0d?q=80&w=1200&auto=format&fit=crop")
    center/cover fixed;
  position: relative;
  padding: 8rem 0;
  text-align: center;
  color: var(--clr-white);
}

.cta-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(11, 34, 57, 0.85);
}

.cta-container {
  position: relative;
  z-index: 1;
}

.cta-section h2 {
  color: var(--clr-white);
  font-size: 3rem;
}

.cta-section p {
  color: var(--clr-gray-200);
  font-size: 1.2rem;
  margin-bottom: 2.5rem;
}

.cta-buttons {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer {
  background: var(--clr-navy);
  color: var(--clr-gray-200);
  padding: 5rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 0.5fr 1.8fr 0.6fr;
  gap: 4rem;
  margin-bottom: 3rem;
}

.footer-logo {
  background-color: white;
  padding: 5px;
  border-radius: 10px;
  height: 100px;
  margin-bottom: 1.5rem;
  /* filter: brightness(0) invert(1); */
}

.footer h3 {
  color: var(--clr-white);
  margin-bottom: 1.5rem;
  font-family: var(--font-body);
}

.footer ul {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer ul a:hover {
  color: var(--clr-orange);
  padding-left: 5px;
}

.contact-info li {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.contact-info i {
  color: var(--clr-orange);
  flex-shrink: 0;
  margin-top: 2px;
}

.contact-info a {
  color: inherit;
  line-height: 1.5;
}

.contact-info a:hover {
  color: var(--clr-orange);
}

.footer-bottom {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1.5rem;
  font-size: 0.9rem;
}

.footer-bottom-copy {
  display: grid;
  gap: 0.4rem;
}

.footer-bottom-copy p {
  margin: 0;
}

.footer-disclaimer {
  color: var(--clr-orange);
  max-width: 100%;
  text-align: center;
  line-height: 1.6;
}

.legal-links {
  display: flex;
  gap: 0.2rem;
  color: var(--clr-orange);
}

.legal-links a:hover {
  color: var(--clr-white);
}

/* ==========================================================================
   Stats Bar
   ========================================================================== */
.stats-bar {
  background: var(--clr-teal);
  padding: 1.5rem 0;
}

.stats-container {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}

.stat-item {
  flex: 1;
  text-align: center;
  padding: 0.5rem 1.5rem;
  min-width: 150px;
}

.stat-number {
  display: block;
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--clr-white);
  line-height: 1;
}

.stat-label {
  display: block;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.75);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-top: 0.3rem;
}

.stat-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.2);
  flex-shrink: 0;
}

/* ==========================================================================
   Social Proof & Badge Live Dot
   ========================================================================== */
.social-proof {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  margin-top: 1.5rem;
  flex-wrap: wrap;
}

.social-proof .stars {
  color: #f59e0b;
  font-size: 0.9rem;
  letter-spacing: 2px;
}

.social-proof span {
  font-size: 0.9rem;
  color: var(--clr-gray-500);
  margin: 0;
}

.social-proof strong {
  color: var(--clr-navy);
}

.badge-live-dot {
  font-size: 0.45em;
  color: #22c55e;
  vertical-align: middle;
  margin-right: 0.15rem;
  animation: pulse-dot 2s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%,
  100% {
    opacity: 1;
  }
  50% {
    opacity: 0.3;
  }
}

/* ==========================================================================
   How It Works CTA
   ========================================================================== */
.how-it-works-cta {
  text-align: center;
  margin-top: 3.5rem;
}

.hint-text {
  margin-top: 1rem;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
}

.hint-text strong {
  color: var(--clr-orange);
}

/* ==========================================================================
   Service Book Button
   ========================================================================== */
.service-book-btn {
  margin-top: 1.5rem;
  font-size: 0.9rem;
}

/* ==========================================================================
   Testimonials — Carousel
   ========================================================================== */
.testi-carousel {
  position: relative;
  --testi-gap: 1.5rem;
  --testi-cards-per-view: 3;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

/* Tablet */
@media (max-width: 991px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Mobile */
@media (max-width: 600px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

.testi-track-wrap {
  overflow: hidden;
}

.testi-track {
  display: flex;
  gap: var(--testi-gap);
  transition: transform 0.48s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.testimonial-card {
  flex: 0 0
    calc(
      (100% - (var(--testi-gap) * (var(--testi-cards-per-view) - 1))) /
        var(--testi-cards-per-view)
    );
  min-width: 0;
  background: var(--clr-white);
  padding: 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--clr-gray-200);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex-shrink: 0;
  transition:
    box-shadow var(--transition-base),
    transform var(--transition-base);
}
.testimonial-card {
  max-height: 270px; /* maximum height of card */
  overflow-y: auto; /* enable vertical scroll */
  scroll-behavior: smooth; /* smooth scrolling */
  padding-right: 10px; /* optional: avoid content being hidden under scrollbar */
}

/* Custom scrollbar for WebKit browsers (Chrome, Edge, Safari) */
.testimonial-card::-webkit-scrollbar {
  width: 12px; /* thickness of vertical scrollbar */
}

.testimonial-card::-webkit-scrollbar-track {
  background: #f0f0f0; /* track color */
  border-radius: 6px;
}

.testimonial-card::-webkit-scrollbar-thumb {
  background: #888; /* draggable thumb */
  border-radius: 6px;
}

.testimonial-card::-webkit-scrollbar-thumb:hover {
  background: #555; /* thumb hover color */
}

/* Optional: Firefox scrollbar styling */
.testimonial-card {
  scrollbar-width: thin; /* thin scrollbar */
  scrollbar-color: #888 #f0f0f0; /* thumb color | track color */
}

.testimonial-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}

/* Controls row */
.testi-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  margin-top: 2rem;
}

.testi-nav-btn {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 2px solid var(--clr-gray-200);
  background: var(--clr-white);
  color: var(--clr-navy);
  font-size: 0.9rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition-base);
  flex-shrink: 0;
}

.testi-nav-btn:hover:not(:disabled) {
  background: var(--clr-teal);
  border-color: var(--clr-teal);
  color: #fff;
  transform: scale(1.05);
}

.testi-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.testi-dots {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.testi-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  border: none;
  background: var(--clr-gray-200);
  cursor: pointer;
  transition: var(--transition-base);
  padding: 0;
}

.testi-dot.active {
  background: var(--clr-teal);
  width: 28px;
  border-radius: 5px;
}

/* Top row: avatar | name + time | Google G */
.review-header {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--clr-teal);
  color: var(--clr-white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1.15rem;
  flex-shrink: 0;
}

.testimonial-author-info {
  flex: 1;
}

.testimonial-author-info strong {
  display: block;
  color: var(--clr-navy);
  font-family: var(--font-body);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.review-time {
  font-size: 0.8rem;
  color: var(--clr-gray-500);
}

.google-badge {
  margin-left: auto;
  flex-shrink: 0;
  line-height: 0;
}

/* Stars row */
.review-stars {
  display: flex;
  align-items: center;
  gap: 2px;
  color: #f59e0b;
  font-size: 0.95rem;
}

.review-verified {
  color: #4285f4;
  font-size: 0.9rem;
  margin-left: 6px;
}

/* Review body */
.testimonial-text {
  color: var(--clr-gray-800);
  font-size: 0.95rem;
  line-height: 1.7;
  margin: 0;
}

/* ==========================================================================
   Floating WhatsApp Button
   ========================================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background: #25d366;
  color: var(--clr-white);
  border-radius: 50px;
  padding: 0.9rem 1.5rem;
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  z-index: 9999;
  transition: var(--transition-base);
  animation: pulse-wa 3s ease-in-out infinite;
}

.floating-whatsapp i {
  font-size: 1.5rem;
}

.floating-whatsapp:hover {
  background: #128c7e;
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(37, 211, 102, 0.55);
  color: var(--clr-white);
}

@keyframes pulse-wa {
  0%,
  100% {
    box-shadow: 0 8px 25px rgba(37, 211, 102, 0.45);
  }
  50% {
    box-shadow: 0 8px 40px rgba(37, 211, 102, 0.75);
  }
}

/* ==========================================================================
   Animations & Keyframes
   ========================================================================== */
.float-animation {
  animation: float 4s ease-in-out infinite;
}

.float-animation-delayed {
  animation: float 4s ease-in-out infinite 2s;
}

@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-15px);
  }
  100% {
    transform: translateY(0px);
  }
}

/* Scroll Animations Base */
.animate-on-scroll {
  opacity: 0;
  visibility: hidden;
  transition:
    opacity 0.8s ease-out,
    transform 0.8s ease-out;
  will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}

/* Fade In Base */
.fade-in {
  opacity: 0;
}

/* Fade Up */
.fade-up {
  transform: translateY(30px);
}

/* Fade Left */
.fade-left {
  transform: translateX(30px);
}

/* Fade Right */
.fade-right {
  transform: translateX(-30px);
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */
@media (max-width: 992px) {
  :root {
    --topbar-height: 48px;
  }

  .topbar-message,
  .topbar-call {
    font-size: 0.8rem;
  }

  /* Nav becomes a dropdown */
  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--clr-white);
    flex-direction: column;
    align-items: stretch;
    padding: 1rem 1.5rem 1.5rem;
    box-shadow: var(--shadow-md);
    border-top: 1px solid var(--clr-gray-100);
    gap: 0.25rem;
    z-index: 999;
  }

  .nav.open {
    display: flex;
  }

  .nav-link {
    padding: 0.75rem 1rem;
    font-size: 1rem;
    border-radius: var(--radius-sm);
  }

  .nav-link:hover {
    background: var(--clr-gray-100);
  }

  .nav-link::after {
    display: none;
  }

  .nav-mobile-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    margin-top: 0.75rem;
    padding-top: 1rem;
    border-top: 1px solid var(--clr-gray-100);
  }

  .header-right {
    display: none;
  }

  .mobile-menu-toggle {
    display: block;
  }

  .hero-container,
  .why-choose .container {
    grid-template-columns: 1fr;
  }

  .hero {
    padding: calc(8rem + var(--topbar-height)) 0 4rem;
    text-align: center;
    min-height: unset;
  }

  .hero-content {
    order: 1;
  }

  .hero-visual {
    order: 2;
    padding: 10px 10px 30px;
  }

  .hero-desc {
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
  }

  .hero-btns {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
  }

  .hero-chip-nurse {
    left: 10px;
  }

  .hero-chip-time {
    right: 10px;
  }

  .section-title h2 {
    font-size: 2rem;
  }

  .pricing-card.popular {
    transform: none;
  }

  .pricing-card.popular:hover {
    transform: translateY(-10px);
  }

  .pricing-grid-new,
  .pricing-grid-doc {
    grid-template-columns: 1fr;
  }

  .pricing-support-grid,
  .pricing-note-list {
    grid-template-columns: 1fr;
  }

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

  .why-grid,
  .services-grid-new {
    grid-template-columns: repeat(2, 1fr);
  }

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

@media (max-width: 768px) {
  :root {
    --topbar-height: 54px;
  }

  .topbar {
    height: var(--topbar-height);
  }

  .topbar-container {
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.35rem 1rem;
    padding: 0.35rem 0;
  }

  .topbar-message,
  .topbar-call {
    font-size: 0.74rem;
  }

  .testi-carousel {
    --testi-gap: 1rem;
    --testi-cards-per-view: 1;
  }

  .testimonial-card {
    flex-basis: 100%;
  }

  .testi-controls {
    gap: 0.85rem;
    margin-top: 1.5rem;
  }

  .hero-title {
    font-size: 2.4rem;
  }

  .hero-btns {
    flex-direction: column;
    align-items: center;
  }

  .hero-btn-primary,
  .hero-btn-ghost {
    width: 100%;
    justify-content: center;
  }

  .hero-photo {
    height: 320px;
  }

  .hero-rating {
    font-size: 0.72rem;
    right: 0;
    bottom: 10px;
  }

  .social-proof {
    justify-content: center;
  }

  .stat-divider {
    display: none;
  }

  .stat-item {
    min-width: 120px;
  }

  .steps-container {
    flex-direction: column;
    align-items: center;
    gap: 2rem;
  }

  .step-connector {
    display: none;
  }

  .why-grid,
  .services-grid-new {
    grid-template-columns: 1fr;
  }

  .why-choose-header h2 {
    font-size: 2rem;
  }

  .cta-buttons {
    flex-direction: column;
  }

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

  .footer-bottom {
    flex-direction: column;
    /* gap: 1rem; */
    text-align: center;
  }

  .floating-whatsapp-text {
    display: none;
  }

  .floating-whatsapp {
    padding: 1rem;
    border-radius: 50%;
    bottom: 1.5rem;
    right: 1.5rem;
  }

  .floating-whatsapp i {
    font-size: 1.8rem;
  }
}

/* ==========================================================================
   Blog Page
   ========================================================================== */
.blog-page {
  background:
    radial-gradient(
      circle at top left,
      rgba(239, 127, 26, 0.08),
      transparent 24%
    ),
    linear-gradient(180deg, #f7fbfc 0%, #edf4f7 100%);
  color: var(--clr-navy);
}

.blog-page .blog-shell {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: calc(8.75rem + var(--topbar-height)) 1.5rem 3rem;
}

.blog-page .blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-page .blog-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  overflow: hidden;
  background: var(--clr-white);
  border: 1px solid rgba(38, 88, 95, 0.1);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(11, 34, 57, 0.08);
  transition:
    transform var(--transition-base),
    box-shadow var(--transition-base),
    border-color var(--transition-base);
}

.blog-page .blog-card:hover {
  transform: translateY(-8px);
  border-color: rgba(38, 88, 95, 0.18);
  box-shadow: 0 20px 44px rgba(11, 34, 57, 0.14);
}

.blog-page .blog-card-media {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(239, 127, 26, 0.16), rgba(38, 88, 95, 0.24)),
    #dbe6ec;
}

.blog-page .blog-card-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.blog-page .blog-card-body {
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 1rem;
  padding: 1.4rem;
}

.blog-page .post-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.blog-page .post-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: rgba(239, 127, 26, 0.12);
  color: var(--clr-orange);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.blog-page .post-date {
  color: var(--clr-gray-500);
  font-size: 0.88rem;
  font-weight: 700;
}

.blog-page .blog-card-body h2 {
  color: var(--clr-orange);
  font-size: 1.3rem;
  line-height: 1.35;
}

.blog-page .blog-card-body p {
  color: var(--clr-gray-500);
  line-height: 1.75;
}

.blog-page .blog-card-footer {
  margin-top: auto;
  padding-top: 0.35rem;
}

.blog-page .blog-read-link {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  color: var(--clr-teal);
  font-weight: 800;
  transition:
    gap var(--transition-base),
    color var(--transition-base);
}

.blog-page .blog-read-link:hover {
  gap: 0.8rem;
  color: var(--clr-orange);
}

.blog-page .blog-read-link i {
  font-size: 0.8rem;
}

.blog-page .blog-skeleton-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.5rem;
}

.blog-page .blog-skeleton-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(38, 88, 95, 0.08);
  border-radius: 24px;
  box-shadow: 0 12px 28px rgba(11, 34, 57, 0.08);
}

.blog-page .shimmer {
  background:
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0) 0%,
      rgba(255, 255, 255, 0.72) 50%,
      rgba(255, 255, 255, 0) 100%
    ),
    linear-gradient(180deg, #e7eef2 0%, #dfe7ec 100%);
  background-size:
    180px 100%,
    100% 100%;
  animation: blog-shimmer 1.4s infinite linear;
}

.blog-page .skeleton-media {
  aspect-ratio: 16 / 10;
}

.blog-page .skeleton-body {
  padding: 1.4rem;
}

.blog-page .skeleton-line {
  height: 14px;
  margin-bottom: 0.9rem;
  border-radius: 999px;
}

.blog-page .skeleton-line.lg {
  height: 18px;
  width: 78%;
}

.blog-page .skeleton-line.md {
  width: 100%;
}

.blog-page .skeleton-line.sm {
  width: 62%;
}

.blog-page .blog-empty {
  display: none;
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.8);
  border: 1px solid rgba(38, 88, 95, 0.1);
  border-radius: 22px;
  color: var(--clr-gray-500);
  text-align: center;
  box-shadow: 0 12px 28px rgba(11, 34, 57, 0.08);
}

.blog-page .blog-empty.show {
  display: block;
}

@keyframes blog-shimmer {
  from {
    background-position:
      -180px 0,
      0 0;
  }
  to {
    background-position:
      calc(100% + 180px) 0,
      0 0;
  }
}

@media (max-width: 1100px) {
  .blog-page .blog-grid,
  .blog-page .blog-skeleton-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 768px) {
  .blog-page .blog-grid,
  .blog-page .blog-skeleton-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .blog-page .blog-shell {
    padding: calc(7.5rem + var(--topbar-height)) 1rem 2rem;
  }

  .blog-page .blog-card-body {
    padding: 1.2rem;
  }

  .blog-page .blog-card-body h2 {
    font-size: 1.15rem;
  }
}
