/* ======================================================
   SahiDarma Skin & Aesthetics Clinic
   Public Website Stylesheet
 ====================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Playfair+Display:ital,wght@0,700;1,700&display=swap');

/* ---- CSS Variables ---- */
html,
body {
  margin: 0;
  padding: 0;
  overflow-x: hidden;
  /* Prevent horizontal scroll from 100vw */
}

/* Global Header Layout Force */
header,
.main-header,
.navbar-premium,
.navbar {
  width: 100% !important;
  max-width: 100% !important;
  margin: 0 !important;
  position: fixed !important;
  top: 0 !important;
  z-index: 2000 !important;
  left: 0 !important;
  right: 0 !important;
  border-radius: 0 !important;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15) !important;
}

.navbar-premium .container,
.navbar-premium .navbar-inner {
  max-width: 100% !important;
  padding-left: 50px !important;
  padding-right: 50px !important;
}

@media (max-width: 768px) {

  .navbar-premium .container,
  .navbar-premium .navbar-inner {
    padding-left: 20px !important;
    padding-right: 20px !important;
  }
}

--pink: #D63384;
--pink-dark: #A01060;
--pink-light: #F8BBD9;
--pink-bg: #FFF0F7;
--purple: #9C27B0;
--gold: #c9a063;
--gradient: linear-gradient(135deg, #D63384 0%, #9C27B0 100%);
--gradient-soft: linear-gradient(135deg, #FFF0F7 0%, #F3E5F5 100%);
--dark: #1A1A2E;
--dark2: #2D2D44;
--text: #374151;
--text-light: #6B7280;
--white: #FFFFFF;
--border: #F0D6E8;
--shadow: 0 4px 24px rgba(214, 51, 132, 0.12);
--shadow-lg: 0 12px 48px rgba(214, 51, 132, 0.18);
--radius: 16px;
--radius-sm: 8px;
--transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ---- Reset & Base ---- */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
  padding-top: 90px;
  /* Offset for the 90px fixed navbar */
}

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

a {
  text-decoration: none;
  color: inherit;
}

ul {
  list-style: none;
}

button {
  cursor: pointer;
  border: none;
  background: none;
  font-family: inherit;
}

/* ---- Typography ---- */
h1,
h2,
h3,
h4,
h5 {
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.5rem);
  line-height: 1.2;
}

h2 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
}

h3 {
  font-size: 1.4rem;
}

.serif {
  font-family: 'Playfair Display', serif;
  font-style: italic;
}

.text-pink {
  color: var(--pink);
}

.text-muted {
  color: var(--text-light);
}

/* ---- Container ---- */
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---- Buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 600;
  transition: var(--transition);
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(214, 51, 132, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(214, 51, 132, 0.5);
}

.btn-outline {
  border: 2px solid var(--pink);
  color: var(--pink);
  background: transparent;
}

.btn-outline:hover {
  background: var(--pink);
  color: var(--white);
}

.btn-white {
  background: var(--white);
  color: var(--pink);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

.btn-sm {
  padding: 8px 20px;
  font-size: 0.875rem;
}

/* ---- Section Titles ---- */
.section-label {
  display: inline-block;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 6px 16px;
  border-radius: 50px;
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 12px;
}

.section-desc {
  color: var(--text-light);
  font-size: 1.05rem;
  max-width: 540px;
}

.section-header {
  margin-bottom: 56px;
}

.section-header.center {
  text-align: center;
}

.section-header.center .section-desc {
  margin: 0 auto;
}

/* ---- NAVBAR ---- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  background: #ffffff;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
  transition: var(--transition);
  padding: 0 40px;
}

.navbar.scrolled {
  height: 70px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1400px;
  margin: 0 auto;
}

.navbar-brand {
  display: flex;
  align-items: center;
  flex: 1;
  gap: 12px;
  text-decoration: none;
}

.brand-logo-img {
  height: 45px;
  width: auto;
  transition: var(--transition);
}

.brand-text-wrapper {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-main {
  font-size: 20px;
  font-weight: 700;
  color: #ff2d8d;
  letter-spacing: -0.5px;
}

.brand-sub {
  font-size: 12px;
  font-weight: 400;
  color: #333;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.navbar.scrolled .brand-logo-img {
  height: 36px;
}

.navbar.scrolled .brand-main {
  font-size: 18px;
}

.navbar.scrolled .brand-sub {
  font-size: 11px;
}

@media (max-width: 768px) {
  .brand-main {
    font-size: 18px;
  }

  .brand-sub {
    font-size: 10px;
  }

  .navbar-brand {
    gap: 8px;
  }
}

.navbar-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex: 2;
}

.navbar .nav-link {
  padding: 8px 18px;
  border-radius: 20px;
  font-weight: 500;
  font-size: 0.95rem;
  color: #333 !important;
  transition: var(--transition);
  margin: 0 5px;
}

.navbar .nav-link:hover {
  color: #ff2d8d !important;
  background: rgba(255, 45, 141, 0.05) !important;
}

.navbar .nav-link.active {
  background: linear-gradient(135deg, #D63384 0%, #9C27B0 100%) !important;
  color: white !important;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.25);
}

.navbar-cta {
  display: flex;
  justify-content: flex-end;
  flex: 1;
}

.btn-navbar-cta {
  background: linear-gradient(135deg, #D63384 0%, #9C27B0 100%);
  color: white !important;
  padding: 10px 24px;
  border-radius: 30px;
  font-weight: 600;
  font-size: 0.9rem;
  box-shadow: 0 4px 15px rgba(214, 51, 132, 0.2);
  transition: var(--transition);
}

.btn-navbar-cta:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(214, 51, 132, 0.35);
  color: white !important;
}

.navbar-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
}

.navbar .navbar-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: #333 !important;
  border-radius: 2px;
  transition: var(--transition);
}

/* ---- HOMEPAGE HERO (Premium Slider) ---- */
.homepage-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0B1F3A;
  padding: 0;
}

.hero-slider-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
}

.homepage-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right,
      rgba(10, 20, 40, 0.85) 0%,
      rgba(10, 20, 40, 0.3) 100%);
  z-index: 1;
  pointer-events: none;
}

/* Container must be on top of background and gradient */
.hero-container {
  position: relative;
  z-index: 10;
  padding-top: 100px;
  padding-bottom: 60px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}

.hero-text-content {
  transform: translateY(-50px);
}

/* Left Content */
.hero-label-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 24px;
  backdrop-filter: blur(5px);
}

.hero-main-title {
  font-size: clamp(2.5rem, 5vw, 3.8rem);
  font-weight: 900;
  line-height: 1.1;
  color: #ffffff;
  margin-bottom: 24px;
}

.gradient-text {
  background: linear-gradient(135deg, #ff2d8d 0%, #ff9a8b 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-description {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.85);
  max-width: 520px;
  line-height: 1.7;
  margin-bottom: 40px;
}

.hero-cta-group {
  display: flex;
  gap: 20px;
  margin-bottom: 60px;
}

.btn-hero {
  padding: 16px 36px;
  font-size: 1rem;
  font-weight: 700;
  border-radius: 50px;
  transition: all 0.3s ease;
}

.btn-hero.btn-primary {
  background: linear-gradient(135deg, #ff2d8d 0%, #ff5ca8 100%);
  color: #ffffff !important;
  box-shadow: 0 8px 25px rgba(255, 45, 141, 0.4);
}

.btn-hero.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 35px rgba(255, 45, 141, 0.5);
  filter: brightness(1.1);
}

.btn-hero.btn-glass {
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #ffffff !important;
  backdrop-filter: blur(10px);
}

.btn-hero.btn-glass:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: #ffffff;
  color: #ffffff !important;
  transform: translateY(-3px);
}

.hero-trust-stats {
  display: flex;
  gap: 40px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
}

.stat-count {
  display: block;
  font-size: 2.2rem;
  font-weight: 900;
  color: #ffffff !important;
  margin-bottom: 5px;
}

.stat-label {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Right Visual Area */
.hero-visual-area {
  position: relative;
  width: 100%;
  height: 580px;
}

.hero-slider-wrap {
  width: 100%;
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.1);
}

.hero-slider {
  width: 100%;
  height: 100%;
  position: relative;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.5s ease-in-out;
}

.slide.active {
  opacity: 1;
  animation: kenBurns 10s linear alternate infinite;
}

.slider-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom right, rgba(214, 51, 132, 0.15), rgba(156, 39, 176, 0.15));
}

@keyframes kenBurns {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.15);
  }
}

/* Floating Cards */
.glass-card {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(15px);
  -webkit-backdrop-filter: blur(15px);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
  border-radius: 24px;
}

.services-card {
  position: absolute;
  bottom: -40px;
  right: -20px;
  width: 340px;
  padding: 24px;
  z-index: 20;
  animation: floatCard 6s ease-in-out infinite;
}

.card-header {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 20px;
}

.brand-disc {
  width: 50px;
  height: 50px;
  background: var(--pink);
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-size: 1.4rem;
}

.header-text h4 {
  font-size: 1.1rem;
  margin: 0;
}

.header-text p {
  font-size: 0.8rem;
  margin: 0;
}

.card-service-list {
  list-style: none;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.card-service-list li {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 15px;
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.03);
  font-size: 0.85rem;
  font-weight: 500;
  transition: 0.3s;
}

.card-service-list li.active-row {
  background: var(--gradient);
  color: white;
  box-shadow: 0 8px 15px rgba(214, 51, 132, 0.3);
}

.s-price {
  font-weight: 700;
  opacity: 0.9;
}

/* Floating Badges */
.glass-badge {
  position: absolute;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  padding: 15px 20px;
  border-radius: 100px;
  /* Fully rounded pill */
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  z-index: 21;
}

.badge-top-right {
  top: 20px;
  right: -40px;
  animation: floatCard 5s ease-in-out infinite reverse;
}

.badge-bottom-left {
  bottom: 80px;
  left: -40px;
  animation: floatCard 7s ease-in-out infinite;
}

.badge-icon {
  width: 36px;
  height: 36px;
  background: #EBF8FF;
  color: #3182CE;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  font-size: 1.1rem;
}

.badge-text {
  font-size: 0.8rem;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

@keyframes floatCard {

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

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

/* RESPONSIVE HERO */
@media (max-width: 1100px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 80px;
    text-align: center;
  }

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

  .hero-description {
    margin-left: auto;
    margin-right: auto;
  }

  .hero-cta-group {
    justify-content: center;
  }

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

  .badge-top-right {
    right: 0;
  }

  .badge-bottom-left {
    left: 0;
  }

  .services-card {
    right: 50%;
    transform: translateX(50%);
    bottom: -60px;
  }
}

.hero-watermark {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60%;
  opacity: 0.05;
  pointer-events: none;
  z-index: 15;
}

.hero-corner-logo {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 80px;
  opacity: 0.3;
  pointer-events: none;
  z-index: 10;
}

.hero-corner-logo img,
.hero-watermark img {
  width: 100%;
  height: auto;
}

/* Gold Accents */
.text-gold {
  color: var(--gold);
}

.sparkle {
  color: var(--gold);
}

.hero-label-badge .sparkle {
  color: var(--gold);
  font-size: 1.1rem;
}

.stat-count {
  color: var(--gold);
}

/* Matching stats to logo gold */

/* ---- REVEAL & HOVER ANIMATIONS ---- */
.reveal-item {
  opacity: 0;
  transform: translateY(40px);
  transition: all 0.8s cubic-bezier(0.2, 0.8, 0.2, 1);
  will-change: opacity, transform;
}

.reveal-item.active {
  opacity: 1;
  transform: translateY(0);
}

/* ---- WHY CHOOSE US (Premium Light/Dark Hybrid) ---- */
.why-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #0b1a2f 0%, #1e0b2f 100%);
  position: relative;
  overflow: hidden;
}

.why-section::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 50%;
  height: 50%;
  background: radial-gradient(circle at top right, rgba(214, 51, 132, 0.1), transparent 70%);
  pointer-events: none;
}

.why-section .section-label {
  background: rgba(255, 45, 141, 0.1);
  color: #ff2d8d;
  font-weight: 800;
  border: 1px solid rgba(255, 45, 141, 0.2);
}

.why-section .section-title {
  color: #ffffff;
  font-size: clamp(2.5rem, 5vw, 3.2rem);
  font-weight: 900;
  letter-spacing: -0.5px;
  margin-bottom: 20px;
}

.why-section .section-desc {
  color: #cbd5e1;
  margin: 0 auto;
  font-size: 1.1rem;
}

.why-section .section-title .text-pink {
  font-style: italic;
  font-family: 'Playfair Display', serif;
  background: linear-gradient(135deg, #ff2d8d 0%, #a100ff 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 60px;
}

.feature-card {
  position: relative;
  height: 340px;
  border-radius: 20px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 32px;
  z-index: 1;
}

.feature-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.7; /* Increased for better visibility */
  transition: all 0.6s ease;
  z-index: -2;
}

/* Background Images */
.feature-card:nth-child(1)::before {
  background-image: url('../img/features/expert.png');
}

.feature-card:nth-child(2)::before {
  background-image: url('../img/features/tech.png');
}

.feature-card:nth-child(3)::before {
  background-image: url('../img/features/results.png');
}

.feature-card:nth-child(4)::before {
  background-image: url('../img/features/hygiene.png');
}

.feature-card:nth-child(5)::before {
  background-image: url('../img/features/timings.png');
}

.feature-card:nth-child(6)::before {
  background-image: url('../img/features/care.png');
}

.feature-card::after {
  content: '';
  position: absolute;
  inset: 0;
  /* Darken only the bottom for text contrast, top stays clear */
  background: linear-gradient(to top, rgba(11, 26, 47, 0.95) 0%, rgba(11, 26, 47, 0.4) 50%, transparent 100%);
  z-index: -1;
}

.feature-card:hover {
  transform: translateY(-8px);
  border-color: rgba(214, 51, 132, 0.4);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3), 0 0 20px rgba(214, 51, 132, 0.1);
}

.feature-card:hover::before {
  opacity: 0.9;
  transform: scale(1.05);
}

.feature-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #ff2d8d 0%, #a100ff 100%);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.2rem;
  margin-bottom: 24px;
  box-shadow: 0 8px 20px rgba(255, 45, 141, 0.3);
}

.feature-card h3 {
  color: #ffffff;
  font-size: 1.3rem;
  font-weight: 800;
  margin-bottom: 12px;
}

.feature-card p {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* Animations */
@keyframes float {

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

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

.feature-card.reveal-item.active {
  animation: float 4s ease-in-out infinite;
}

/* Response */
@media (max-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

  .why-section .section-title {
    font-size: 2.2rem;
  }

  .feature-card {
    padding: 30px;
    height: 300px;
  }
}

/* ---- MID BANNER SECTION (Full Width) ---- */
.mid-banner-section {
  width: 100%;
  height: 450px;
  background: url('../img/banner_mid.png') no-repeat center center;
  background-size: cover;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mid-banner-section::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(11, 26, 47, 0.3), transparent 70%);
  pointer-events: none;
}

@media (max-width: 768px) {
  .mid-banner-section {
    height: 300px;
    background-attachment: scroll; /* Disable parallax on mobile for performance */
  }
}

/* ---- CTA PREMIUM SECTION (Strict Visual Match) ---- */
.cta-premium-section {
  position: relative;
  width: 100%;
  min-height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: 100px 0;
  text-align: center;
}

.cta-bg-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center right;
  z-index: 1;
}

.cta-dark-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 25, 40, 0.95) 0%, rgba(10, 25, 40, 0.7) 40%, rgba(10, 25, 40, 0.3) 100%);
  z-index: 2;
}

.cta-premium-content {
  position: relative;
  z-index: 10;
  color: white;
  width: 100%;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.2rem, 5vw, 3.2rem);
  font-weight: 700;
  margin-bottom: 12px;
  color: white;
}

.cta-subtitle {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 60px;
  letter-spacing: 0.5px;
}

/* Icon Features */
.cta-highlights {
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-bottom: 60px;
  flex-wrap: wrap;
}

.highlight-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  max-width: 180px;
}

.highlight-icon {
  font-size: 2.2rem;
  color: white;
  margin-bottom: 20px;
  opacity: 0.9;
  transition: transform 0.3s ease;
}

.highlight-item:hover .highlight-icon {
  transform: translateY(-5px);
}

.highlight-item p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.85rem;
  font-weight: 600;
  line-height: 1.4;
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* Premium Buttons */
.cta-premium-actions {
  display: flex;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
}

.btn-outline-white {
  background: transparent;
  color: white !important;
  border: 1px solid rgba(255, 255, 255, 0.6);
  padding: 15px 35px;
  border-radius: 100px;
  font-weight: 700;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 1px;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.btn-outline-white:hover {
  background: rgba(255, 255, 255, 0.15);
  border-color: white;
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 991px) {
  .cta-highlights {
    gap: 30px;
  }
}

@media (max-width: 768px) {
  .cta-premium-section {
    padding: 80px 0;
  }

  .cta-highlights {
    flex-direction: column;
    gap: 40px;
  }

  .highlight-item {
    max-width: 100%;
  }

  .cta-premium-actions {
    flex-direction: column;
    align-items: center;
  }

  .btn-outline-white {
    width: 100%;
    max-width: 300px;
  }
}

/* ---- CONTACT SECTION ---- */
.contact-section {
  padding: 100px 0;
  background: linear-gradient(135deg, #ffffff 0%, #fff5f8 100%);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--border), transparent);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 60px;
  align-items: start;
}

.contact-info-card {
  background: var(--white);
  border-radius: 16px;
  padding: 40px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}

.contact-info-item:last-child {
  margin-bottom: 0;
}

.contact-info-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ff2d8d 0%, #a100ff 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  flex-shrink: 0;
  box-shadow: 0 5px 15px rgba(255, 45, 141, 0.2);
}

.contact-info-text h4 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--text-light);
  margin-bottom: 6px;
  font-weight: 700;
}

.contact-info-text p {
  font-weight: 700;
  color: var(--dark);
  font-size: 1rem;
  line-height: 1.5;
}

/* ---- FORM ---- */
.contact-form-card {
  background: var(--white);
  border-radius: 20px;
  padding: 45px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.02);
}

.form-group {
  margin-bottom: 20px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--dark);
}

.form-control {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid #f1f5f9;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
  color: var(--dark);
  background: #f8fafc;
  transition: all 0.3s ease;
  outline: none;
}

.form-control:focus {
  border-color: #ff2d8d;
  background: white;
  box-shadow: 0 0 0 4px rgba(255, 45, 141, 0.1);
}

textarea.form-control {
  resize: vertical;
  min-height: 120px;
}

select.form-control {
  appearance: none;
  cursor: pointer;
}

/* ---- FOOTER ---- */
footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 64px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 48px;
}

.footer-brand .brand-name {
  color: var(--pink);
  font-size: 1.5rem;
  font-weight: 800;
}

.footer-brand p {
  margin-top: 12px;
  font-size: 0.9rem;
  line-height: 1.7;
}

.footer-heading {
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 700;
  margin-bottom: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 0.875rem;
  transition: var(--transition);
}

.footer-links a:hover {
  color: var(--pink);
  padding-left: 4px;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 20px;
}

.social-link {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
}

.social-link:hover {
  background: var(--pink);
  color: white;
  transform: translateY(-2px);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 24px 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

/* ---- About Page ---- */
.about-hero {
  padding: 160px 0 100px;
  background: var(--gradient-soft);
}

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

.about-img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.about-img-placeholder {
  height: 420px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 5rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.team-avatar {
  height: 200px;
  background: var(--gradient);
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 4rem;
}

.team-info {
  padding: 20px;
}

.team-info h3 {
  font-size: 1.1rem;
  margin-bottom: 4px;
}

.team-info span {
  font-size: 0.85rem;
  color: var(--pink);
  font-weight: 500;
}

/* ---- Book Appointment ---- */
.book-hero {
  padding: 160px 0 60px;
  background: var(--gradient-soft);
}

.booking-container {
  max-width: 700px;
  margin: 0 auto;
  padding: 0 24px 80px;
}

.booking-card {
  background: var(--white);
  border-radius: 24px;
  box-shadow: var(--shadow-lg);
  padding: 48px;
}

.booking-steps {
  display: flex;
  gap: 0;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--border);
  padding-bottom: 24px;
}

.step {
  flex: 1;
  text-align: center;
}

.step-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--border);
  color: var(--text-light);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  font-size: 0.9rem;
}

.step.active .step-num {
  background: var(--gradient);
  color: white;
}

.step-label {
  font-size: 0.8rem;
  color: var(--text-light);
  font-weight: 500;
}

.step.active .step-label {
  color: var(--pink);
}

.time-slots {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 8px;
}

.time-slot {
  padding: 10px 4px;
  text-align: center;
  border: 2px solid var(--border);
  border-radius: var(--radius-sm);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
  color: var(--dark);
}

.time-slot:hover {
  border-color: var(--pink);
  color: var(--pink);
}

.time-slot.selected {
  border-color: var(--pink);
  background: var(--pink);
  color: white;
}

/* ---- Page Hero (Professional Refinement) ---- */
.homepage-hero {
  position: relative;
  background: var(--pink-bg);
  padding: 80px 0 100px;
  overflow: hidden;
}

.premium-hero {
  position: relative;
  min-height: 700px;
  padding: 180px 0 100px;
  background: #020617;
  /* Very dark medical navy */
  background-image: url('../img/hero-bg.png');
  background-size: cover;
  background-position: center;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero-bg-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(105deg, rgba(2, 6, 23, 0.98) 30%, rgba(2, 6, 23, 0.6) 100%);
  z-index: 1;
}

/* Background Blobs - Subtler */
.hero-blob {
  position: absolute;
  filter: blur(120px);
  z-index: 2;
  opacity: 0.2;
  /* Much lower opacity */
  border-radius: 50%;
  animation: blob-float 15s infinite alternate ease-in-out;
}

.blob-1 {
  width: 400px;
  height: 400px;
  background: var(--pink);
  top: -150px;
  left: -150px;
}

.blob-2 {
  width: 500px;
  height: 500px;
  background: var(--purple);
  bottom: -100px;
  right: 5%;
}

@keyframes blob-float {
  0% {
    transform: translate(0, 0) scale(1);
  }

  100% {
    transform: translate(40px, 60px) scale(1.05);
  }
}

.hero-content-wrapper {
  position: relative;
  z-index: 10;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: center;
}

/* Typography */
.hero-label {
  display: inline-block;
  color: var(--pink-light);
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 3px;
  margin-bottom: 20px;
  padding-left: 40px;
  position: relative;
}

.hero-label::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 30px;
  height: 2px;
  background: var(--pink);
}

.breadcrumb-modern {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  font-size: 0.8rem;
  font-weight: 500;
  opacity: 0.6;
}

.breadcrumb-modern a {
  color: white;
}

.breadcrumb-modern i {
  font-size: 0.6rem;
  color: var(--pink-light);
}

.hero-title {
  font-family: 'Playfair Display', serif;
  /* Use serif for premium feel */
  font-size: clamp(2.8rem, 6.5vw, 4.5rem);
  font-weight: 700;
  color: white;
  line-height: 1.05;
  margin-bottom: 24px;
}

.hero-title span {
  font-style: italic;
  font-weight: 400;
  color: var(--pink-light);
  background: none;
  -webkit-text-fill-color: initial;
}

.hero-subtitle {
  font-size: 1.1rem;
  line-height: 1.9;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 44px;
  max-width: 540px;
  font-weight: 400;
}

/* Actions */
.hero-actions {
  display: flex;
  gap: 20px;
  margin-bottom: 56px;
}

.btn-hero-primary {
  padding: 18px 40px;
  border-radius: 50px;
  background: var(--gradient);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(214, 51, 132, 0.3);
  transition: var(--transition);
}

.btn-hero-primary:hover {
  transform: translateY(-4px);
  box-shadow: 0 15px 40px rgba(214, 51, 132, 0.4);
}

.btn-hero-secondary {
  padding: 18px 40px;
  border-radius: 50px;
  background: transparent;
  border: 2px solid rgba(255, 255, 255, 0.2);
  color: white;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 1px;
  transition: var(--transition);
}

.btn-hero-secondary:hover {
  background: white;
  color: var(--dark);
  border-color: white;
  transform: translateY(-4px);
}

/* Trust Indicators */
.hero-trust {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.6);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.trust-item i {
  color: #22c55e;
  font-size: 1rem;
}

/* Visual Side */
.visual-container {
  position: relative;
  padding: 20px;
}

.hero-main-img-wrap {
  position: relative;
  z-index: 2;
  border-radius: 40px;
  overflow: hidden;
  box-shadow: 0 40px 80px rgba(0, 0, 0, 0.5);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.hero-main-img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

.visual-decoration {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  border: 2px solid var(--pink);
  border-radius: 40px;
  transform: translate(20px, 20px);
  z-index: 1;
  opacity: 0.3;
}

.floating-card {
  position: absolute;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
  z-index: 10;
  font-weight: 700;
  font-size: 0.8rem;
  color: var(--dark);
  animation: float-mini 4s infinite ease-in-out;
}

.floating-card i {
  color: var(--pink);
  font-size: 1rem;
}

.card-1 {
  top: 20%;
  left: -40px;
}

.card-2 {
  bottom: 20%;
  right: -20px;
  animation-delay: -2s;
}

@keyframes float-mini {

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

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

/* Responsive Overrides */
@media (max-width: 1024px) {
  .premium-hero {
    padding: 160px 0 100px;
  }

  .hero-content-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }

  .hero-label {
    padding-left: 0;
  }

  .hero-label::before {
    display: none;
  }

  .breadcrumb-modern {
    justify-content: center;
  }

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

  .hero-subtitle {
    margin-left: auto;
    margin-right: auto;
  }

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

  .hero-trust {
    justify-content: center;
    gap: 20px;
  }

  .visual-container {
    max-width: 500px;
    margin: 0 auto;
  }

  .hero-main-img {
    height: 400px;
  }

  .card-1 {
    left: 0;
  }

  .card-2 {
    right: 0;
  }
}

@media (max-width: 768px) {
  .hero-title {
    font-size: 2.8rem;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    max-width: 320px;
  }

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

  .hero-trust {
    flex-direction: column;
    align-items: center;
    gap: 12px;
  }
}

/* ---- Mobile Nav ---- */
.mobile-nav {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(26, 26, 46, 0.95);
  z-index: 999;
  padding: 100px 40px 40px;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.mobile-nav.open {
  display: flex;
}

.mobile-nav .nav-link {
  color: white;
  font-size: 1.2rem;
  padding: 12px 24px;
}

.mobile-nav .btn-primary {
  margin-top: 16px;
}

/* ---- Success Message ---- */
.success-msg {
  background: #F0FDF4;
  border: 1px solid #86EFAC;
  border-radius: var(--radius);
  padding: 20px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  color: #166534;
  font-weight: 600;
}

.error-msg {
  background: #FFF0F7;
  border: 1px solid #F9A8D4;
  border-radius: var(--radius);
  padding: 20px 24px;
  color: var(--pink);
  font-weight: 600;
}

/* ---- FOOTER ---- */
footer {
  background: #151522;
  /* Darker navy from image */
  color: var(--white);
  padding: 80px 0 30px;
  margin-top: 80px;
  font-family: 'Inter', sans-serif;
}

.footer-inner {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1.5fr;
  gap: 40px;
  margin-bottom: 60px;
}

.footer-brand p {
  color: #a0a0b0;
  margin-bottom: 30px;
  line-height: 1.8;
  font-size: 0.9rem;
  max-width: 90%;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-link {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  /* Rounded squares from image */
  background: #2b2b3c;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #d1d5db;
  font-size: 0.95rem;
  transition: var(--transition);
}

.social-link:hover {
  background: #ff2d8d;
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 4px 15px rgba(255, 45, 141, 0.3);
}

.footer-heading {
  color: #ff2d8d;
  font-size: 1.1rem;
  margin-bottom: 30px;
  font-weight: 800;
  letter-spacing: 0.5px;
}

.footer-links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-links li {
  margin-bottom: 20px;
  display: flex;
  align-items: flex-start;
  color: #a0a0b0;
  font-size: 0.9rem;
  line-height: 1.6;
}

.footer-links a {
  color: #a0a0b0;
  text-decoration: none;
  transition: var(--transition);
}

.footer-links a:hover {
  color: #ff2d8d;
}

/* Specific styling for the Contact list icons */
.footer-links li i {
  margin-top: 4px;
  font-size: 0.9rem;
  width: 20px;
  /* Fixed width for alignment */
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding-top: 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #a0a0b0;
  font-size: 0.85rem;
}

@media (max-width: 992px) {
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 576px) {
  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 15px;
    text-align: center;
  }
}

/* ---- Responsive ---- */
@media (max-width: 992px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-visual {
    order: -1;
  }

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

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

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

@media (max-width: 768px) {

  .navbar-nav,
  .navbar-cta {
    display: none;
  }

  .navbar-toggle {
    display: flex;
  }

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

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

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

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

  .time-slots {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 480px) {
  .features-grid {
    grid-template-columns: 1fr;
  }

  .hero-stats {
    gap: 20px;
  }

  .cta-actions {
    flex-direction: column;
    align-items: center;
  }

  .booking-card {
    padding: 28px 20px;
  }

  .time-slots {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ======================================================
   Floating WhatsApp Button
   ====================================================== */
.floating-whatsapp {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background-color: #25D366;
  color: #FFF !important;
  border-radius: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
  z-index: 1000;
  transition: all 0.3s ease;
  text-decoration: none;
}

.floating-whatsapp:hover {
  background-color: #128C7E;
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.3);
}

.whatsapp-badge {
  position: absolute;
  top: -5px;
  right: -5px;
  background-color: #ff0000;
  color: white;
  font-size: 13px;
  font-weight: bold;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 2px solid #FFF;
  animation: bounceBadge 2s infinite;
}

@keyframes bounceBadge {

  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }

  40% {
    transform: translateY(-8px);
  }

  60% {
    transform: translateY(-4px);
  }
}

@media (max-width: 768px) {
  .floating-whatsapp {
    bottom: 20px;
    right: 20px;
    width: 50px;
    height: 50px;
    font-size: 28px;
  }

  .whatsapp-badge {
    width: 20px;
    height: 20px;
    font-size: 11px;
  }
}

/* ======================================================
   Floating Scroll Toggle Button
   ====================================================== */
.floating-scroll-btn {
  position: fixed;
  bottom: 110px;
  right: 30px;
  width: 50px;
  height: 50px;
  background: var(--gradient);
  color: #FFF !important;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  box-shadow: 0 4px 12px rgba(214, 51, 132, 0.3);
  z-index: 999;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
}

.floating-scroll-btn:hover {
  transform: scale(1.1) translateY(-2px);
  box-shadow: 0 6px 16px rgba(214, 51, 132, 0.5);
}

@media (max-width: 768px) {
  .floating-scroll-btn {
    bottom: 90px;
    right: 20px;
    width: 45px;
    height: 45px;
    font-size: 18px;
  }
}

/* ---- TABBED SERVICES SECTION ---- */
.tabs-container {
  margin-top: 40px;
}

/* ======================================================
   CONTACT PAGE HERO SECTION
   ====================================================== */
.contact-hero {
  position: relative;
  width: 100%;
  height: 65vh; /* Premium height */
  min-height: 500px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background: url('../img/contact_hero.png') no-repeat center center;
  background-size: cover;
  overflow: hidden;
}

.contact-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  /* Dark Cinematic Overlay */
  background: linear-gradient(to bottom, rgba(10, 25, 41, 0.75), rgba(10, 25, 41, 0.6));
  z-index: 1;
}

.contact-hero .container {
  position: relative;
  z-index: 10;
  padding-top: 60px;
}

.contact-hero .hero-content {
  opacity: 0;
  transform: translateY(30px);
  animation: contactHeroFadeIn 1s cubic-bezier(0.165, 0.84, 0.44, 1) forwards;
}

.contact-hero .hero-title {
  font-size: clamp(3rem, 7vw, 4.2rem);
  font-weight: 900;
  color: #ffffff;
  margin-bottom: 20px;
  line-height: 1.1;
}

.contact-hero .hero-subtitle {
  font-size: 1.15rem;
  color: #e2e8f0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
  font-weight: 400;
}

.contact-hero .text-pink {
  color: #ff2d8d !important;
  font-weight: 700;
}

@keyframes contactHeroFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 768px) {
  .contact-hero {
    height: 50vh;
  }
  .contact-hero .hero-title {
    font-size: 2.5rem;
  }
  .contact-hero .hero-subtitle {
    font-size: 1rem;
    padding: 0 10px;
  }
}
/* ---- ABOUT CLINIC SECTION (Homepage) ---- */
.about-clinic-section {
  padding: 100px 0;
  background: #fdfaf9; /* soft beige/white */
}

.about-clinic-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-clinic-image-wrap {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.08);
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-clinic-image-wrap:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.12);
}

.about-clinic-image-wrap img {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: 16px;
}

.about-image-overlay {
  position: absolute;
  inset: 0;
  border-radius: 16px;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.2);
  pointer-events: none;
}

.about-tag {
  display: inline-block;
  padding: 6px 16px;
  background: rgba(255, 45, 141, 0.08);
  color: #ff2d8d;
  border-radius: 30px;
  font-size: 0.85rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 20px;
}

.about-heading {
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 800;
  color: #0b1a2f; /* navy dark */
  line-height: 1.2;
  margin-bottom: 20px;
}

.about-desc {
  font-size: 1.1rem;
  color: #555;
  line-height: 1.7;
  margin-bottom: 30px;
}

.about-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 40px 0;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.about-bullets li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 1.05rem;
  font-weight: 600;
  color: #0b1a2f;
  transition: color 0.3s ease;
}

.about-bullets li:hover {
  color: #ff2d8d;
}

.about-bullets li i {
  color: #ff2d8d;
  font-size: 1.2rem;
}

.btn-about-cta {
  display: inline-flex;
  align-items: center;
  background: linear-gradient(135deg, #ff2d8d 0%, #ff5ca8 100%);
  color: #fff !important;
  padding: 16px 32px;
  border-radius: 30px;
  font-weight: 700;
  font-size: 1rem;
  box-shadow: 0 8px 25px rgba(255, 45, 141, 0.3);
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-about-cta:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 30px rgba(255, 45, 141, 0.45);
}

@media (max-width: 992px) {
  .about-clinic-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-clinic-content {
    text-align: center;
  }
  .about-bullets {
    align-items: center;
  }
}
/* ======================================================
   MOBILE RESPONSIVENESS (GLOBAL)
   ====================================================== */

@media (max-width: 991px) {
    body { padding-top: 90px; }
    
    .section-title { font-size: 2.2rem; }
    .section-header { margin-bottom: 40px; }
    
    /* Home Hero */
    .hero-section .container {
        flex-direction: column;
        text-align: center;
        gap: 40px;
    }
    
    .hero-content {
        max-width: 100%;
        padding-right: 0;
    }
    
    .hero-title {
        font-size: 2.8rem;
    }
    
    .hero-cta-group {
        justify-content: center;
        margin-bottom: 40px;
    }
    
    .hero-trust-stats {
        justify-content: center;
        padding-top: 30px;
    }
    
    .hero-visual-area {
        height: auto;
    }
    
    .services-card {
        position: relative;
        bottom: 0;
        right: 0;
        width: 100%;
        margin-top: 20px;
    }
}

@media (max-width: 768px) {
    body { padding-top: 90px; }
    
    .container { padding: 0 20px; }
    
    .section-title { font-size: 1.8rem; }
    
    .hero-title {
        font-size: 2.2rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
        gap: 15px;
    }
    
    .btn-hero {
        width: 100%;
    }
    
    .hero-trust-stats {
        flex-direction: column;
        gap: 25px;
        align-items: center;
    }
    
    .stat-count { font-size: 1.8rem; }
    
    .hero-visual-area {
        display: none; /* Hide complex floating area on mobile for better performance */
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 576px) {
    body { padding-top: 70px; }
    
    .hero-title {
        font-size: 1.8rem;
    }
    
    .section-header {
        margin-bottom: 30px;
    }
}
