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

:root {
  /* Premium Design Tokens - Lite Pink, Soft Purple, Minimal Black & White */
  --bg-light: #FDF8F9;          /* Powder Blush Pink */
  --bg-white: #FFFFFF;          /* Pure Clinical White */
  --bg-dark: #110E15;           /* Obsidian Plum-Black */
  --primary-purple: #4A2E80;    /* Deep Royal Lavender-Purple */
  --accent-pink: #F5A8D0;       /* Lite Logo Pink */
  --text-dark: #1F1A24;         /* Rich Obsidian Charcoal */
  --text-light: #FEF9FB;        /* Ivory Pink-White */
  --text-muted: #7E738C;        /* Elegant Lavender Grey */
  --border-soft: rgba(74, 46, 128, 0.08);
  --border-pink: rgba(245, 168, 208, 0.3);
  --primary-gradient: linear-gradient(135deg, #4A2E80 0%, #7B5EB3 100%);
  --pink-gradient: linear-gradient(135deg, #FDF8F9 0%, #FAECF2 100%);
  --glow-gradient: linear-gradient(135deg, rgba(245, 168, 208, 0.2) 0%, rgba(74, 46, 128, 0.05) 100%);
  --shadow-premium: 0 20px 40px rgba(74, 46, 128, 0.04);
  --shadow-glow: 0 15px 35px rgba(245, 168, 208, 0.2);
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --transition-smooth: all 0.5s cubic-bezier(0.16, 1, 0.3, 1);
  --transition-fast: all 0.25s ease;
}

/* Base Styles & Reset */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  background-color: var(--bg-light);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--primary-purple);
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: var(--accent-pink);
}

/* Typography */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-serif);
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

h1 {
  font-size: clamp(2.5rem, 5vw, 4.5rem);
  font-weight: 400;
  color: var(--primary-purple);
}

h2 {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--primary-purple);
  margin-bottom: 1.5rem;
}

h3 {
  font-size: clamp(1.4rem, 2vw, 1.8rem);
  color: var(--primary-purple);
}

p {
  font-size: 1rem;
  color: var(--text-dark);
  font-weight: 300;
}

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

/* Containers */
.container {
  width: 100%;
  max-width: 1300px;
  margin: 0 auto;
  padding: 0 2rem;
}

/* Section Spacing */
.section {
  padding: 8rem 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-dark);
  color: var(--text-light);
}

.section-dark h2, .section-dark h3 {
  color: var(--text-light);
}

.section-dark p {
  color: var(--text-muted);
}

/* Premium Header / Navigation */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  padding: 1.5rem 0;
  transition: var(--transition-smooth);
  border-bottom: 1px solid transparent;
}

.header.scrolled {
  background: rgba(253, 248, 249, 0.85);
  backdrop-filter: blur(20px);
  padding: 1rem 0;
  border-bottom: 1px solid var(--border-soft);
  box-shadow: 0 4px 30px rgba(74, 46, 128, 0.02);
}

.nav-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  color: var(--primary-purple);
}

.logo-text span {
  font-family: var(--font-sans);
  font-size: 0.65rem;
  text-transform: uppercase;
  display: block;
  letter-spacing: 0.35em;
  color: var(--text-muted);
  margin-top: -0.2rem;
}

.nav-links {
  display: flex;
  gap: 3rem;
  list-style: none;
}

/* Navigation Dropdown styles */
.nav-dropdown {
  position: relative;
}

.dropdown-arrow {
  font-size: 0.65rem;
  margin-left: 0.2rem;
  display: inline-block;
  transition: var(--transition-fast);
}

.nav-dropdown:hover .dropdown-arrow {
  transform: rotate(180deg);
  color: var(--primary-purple);
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%) translateY(15px);
  width: 240px;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid var(--border-pink);
  border-radius: 24px;
  box-shadow: var(--shadow-premium), 0 10px 30px rgba(74, 46, 128, 0.05);
  list-style: none;
  padding: 1.2rem;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s;
  z-index: 100;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  pointer-events: none;
}

.nav-dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(5px);
  pointer-events: auto;
}

.dropdown-menu li {
  width: 100%;
}

.dropdown-menu a {
  display: block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-dark) !important;
  padding: 0.6rem 1rem;
  border-radius: 12px;
  transition: var(--transition-fast);
}

.dropdown-menu a:hover {
  background: var(--pink-gradient);
  color: var(--primary-purple) !important;
  padding-left: 1.2rem;
}

.nav-link {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: var(--text-dark);
  position: relative;
  padding: 0.5rem 0;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background-color: var(--primary-purple);
  transition: var(--transition-smooth);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-cta {
  padding: 0.8rem 2rem;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background-color: var(--primary-purple);
  color: var(--bg-white);
  border: 1px solid var(--primary-purple);
  transition: var(--transition-smooth);
  box-shadow: 0 4px 15px rgba(74, 46, 128, 0.15);
}

.nav-cta:hover {
  background-color: transparent;
  color: var(--primary-purple);
  box-shadow: none;
}

/* Mobile Nav Toggle */
.mobile-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  z-index: 1001;
}

.mobile-toggle span {
  display: block;
  width: 25px;
  height: 2px;
  background-color: var(--text-dark);
  margin: 5px 0;
  transition: var(--transition-fast);
}

/* Luxury Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  background: var(--pink-gradient);
  padding-top: 100px;
}

.hero-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 80%;
  background: radial-gradient(circle, rgba(245, 168, 208, 0.4) 0%, rgba(74, 46, 128, 0.05) 70%);
  filter: blur(80px);
  z-index: 0;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 700px;
}

.hero-sub {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.4em;
  color: var(--primary-purple);
  font-weight: 500;
  margin-bottom: 1.5rem;
  display: block;
}

.hero-title {
  margin-bottom: 2rem;
  opacity: 0;
  transform: translateY(30px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) forwards;
}

.hero-title span {
  font-family: var(--font-sans);
  font-weight: 300;
  display: block;
  font-size: clamp(1.2rem, 2.5vw, 2.2rem);
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-top: 1rem;
}

.hero-desc {
  font-size: 1.15rem;
  color: var(--text-dark);
  margin-bottom: 3rem;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.3s forwards;
}

.hero-buttons {
  display: flex;
  gap: 1.5rem;
  align-items: center;
  opacity: 0;
  transform: translateY(20px);
  animation: fadeInUp 1.2s cubic-bezier(0.16, 1, 0.3, 1) 0.6s forwards;
}

.btn {
  display: inline-block;
  padding: 1.1rem 2.8rem;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: var(--transition-smooth);
}

.btn-primary {
  background: var(--primary-purple);
  color: var(--bg-white);
  border: 1px solid var(--primary-purple);
  box-shadow: var(--shadow-glow);
}

.btn-primary:hover {
  background: transparent;
  color: var(--primary-purple);
  box-shadow: none;
  transform: translateY(-2px);
}

.btn-secondary {
  background: transparent;
  color: var(--primary-purple);
  border: 1px solid var(--border-soft);
}

.btn-secondary:hover {
  background: rgba(74, 46, 128, 0.04);
  border-color: var(--primary-purple);
  transform: translateY(-2px);
}

/* Floating Badges / Visuals in Hero */
.hero-visual {
  position: absolute;
  right: 5%;
  width: 45%;
  height: 70%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1;
}

.luxury-frame {
  position: relative;
  width: 80%;
  height: 90%;
  border-radius: 120px 40px 120px 40px;
  border: 1px solid var(--border-pink);
  padding: 1.5rem;
  background: rgba(255, 255, 255, 0.3);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow-premium);
  display: flex;
  justify-content: center;
  align-items: center;
}

.luxury-image-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 100px 30px 100px 30px;
  background: linear-gradient(135deg, rgba(245, 168, 208, 0.5) 0%, rgba(74, 46, 128, 0.1) 100%);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: var(--primary-purple);
  font-family: var(--font-serif);
  font-size: 2rem;
  position: relative;
  overflow: hidden;
  box-shadow: inset 0 0 50px rgba(255, 255, 255, 0.5);
}

.luxury-image-placeholder::after {
  content: '';
  position: absolute;
  width: 200%;
  height: 200%;
  background: linear-gradient(45deg, transparent, rgba(255, 255, 255, 0.15), transparent);
  top: -50%;
  left: -50%;
  transform: rotate(45deg);
  animation: shine 6s infinite linear;
}

.hero-stats-badge {
  position: absolute;
  bottom: 10%;
  left: -10%;
  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(20px);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  border-radius: 20px;
  box-shadow: var(--shadow-premium);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 5;
  animation: float 4s ease-in-out infinite alternate;
}

.hero-stats-badge .number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--primary-purple);
  line-height: 1;
}

.hero-stats-badge .label {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
}

/* Introduction Section (About Dr. D. Charitha Reddy) */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 5rem;
  align-items: center;
}

.intro-image-wrapper {
  position: relative;
  padding: 2rem;
}

.intro-circle-decoration {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  border: 1px dashed var(--border-pink);
  transform: scale(0.9);
  animation: rotateSlow 20s linear infinite;
  z-index: 0;
}

.intro-doctor-card {
  position: relative;
  z-index: 1;
  background: var(--bg-white);
  border-radius: 200px 200px 40px 40px;
  padding: 1.5rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-glow);
  aspect-ratio: 0.75;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}

.doctor-avatar-placeholder {
  width: 100%;
  height: 100%;
  border-radius: 190px 190px 30px 30px;
  background: linear-gradient(135deg, rgba(245, 168, 208, 0.3) 0%, rgba(74, 46, 128, 0.08) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 1.5rem;
  color: var(--primary-purple);
  font-family: var(--font-serif);
  position: relative;
  text-align: center;
  padding-bottom: 2rem;
}

.doctor-badge-floating {
  position: absolute;
  top: 15%;
  right: -5%;
  background: var(--primary-gradient);
  color: var(--bg-white);
  padding: 0.8rem 1.8rem;
  border-radius: 30px;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 500;
  box-shadow: var(--shadow-glow);
}

.intro-philosophy {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  font-style: italic;
  color: var(--primary-purple);
  margin: 1.5rem 0 2rem 0;
  line-height: 1.4;
  position: relative;
  padding-left: 2rem;
}

.intro-philosophy::before {
  content: '“';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 4rem;
  color: var(--accent-pink);
  line-height: 1;
}

.intro-credentials {
  display: flex;
  gap: 2rem;
  margin-top: 3rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
}

.credential-item {
  flex: 1;
}

.credential-title {
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--primary-purple);
  margin-bottom: 0.5rem;
}

.credential-desc {
  font-size: 0.9rem;
  color: var(--text-muted);
}

/* Services Showcase (Grid & Categories) */
.section-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 5rem auto;
}

.section-tag {
  display: inline-block;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.3em;
  color: var(--primary-purple);
  font-weight: 600;
  margin-bottom: 1rem;
}

.services-filter {
  display: flex;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 4rem;
}

.filter-btn {
  background: transparent;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 500;
  color: var(--text-dark);
  cursor: pointer;
  transition: var(--transition-smooth);
}

.filter-btn:hover,
.filter-btn.active {
  background-color: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
  gap: 2.5rem;
}

.service-card {
  background: var(--bg-white);
  border-radius: 40px 10px 40px 10px;
  border: 1px solid var(--border-soft);
  padding: 3rem 2.5rem;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-premium);
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 5px;
  background: var(--primary-gradient);
  opacity: 0;
  transition: var(--transition-smooth);
}

.service-icon-box {
  width: 60px;
  height: 60px;
  border-radius: 20px;
  background: var(--pink-gradient);
  display: flex;
  justify-content: center;
  align-items: center;
  color: var(--primary-purple);
  font-size: 1.5rem;
  margin-bottom: 2rem;
  transition: var(--transition-smooth);
}

.service-card h3 {
  margin-bottom: 1rem;
  transition: var(--transition-smooth);
}

.service-card p {
  color: var(--text-muted);
  margin-bottom: 2rem;
  font-size: 0.95rem;
}

.service-link {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  color: var(--primary-purple);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.service-link span {
  transition: var(--transition-fast);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-pink);
}

.service-card:hover::before {
  opacity: 1;
}

.service-card:hover .service-icon-box {
  background: var(--primary-purple);
  color: var(--bg-white);
}

.service-card:hover .service-link span {
  transform: translateX(5px);
}

/* Interactive Treatment Quiz */
.quiz-section {
  background: var(--pink-gradient);
  position: relative;
  overflow: hidden;
}

.quiz-container {
  max-width: 800px;
  margin: 0 auto;
  background: var(--bg-white);
  border-radius: 40px;
  padding: 4rem 3rem;
  box-shadow: var(--shadow-premium);
  border: 1px solid var(--border-pink);
  position: relative;
  z-index: 2;
}

.quiz-step {
  display: none;
}

.quiz-step.active {
  display: block;
  animation: fadeIn 0.5s ease-in-out;
}

.quiz-question {
  font-family: var(--font-serif);
  font-size: 2rem;
  color: var(--primary-purple);
  text-align: center;
  margin-bottom: 3rem;
}

.quiz-options {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.quiz-option {
  background: var(--bg-light);
  border: 1px solid var(--border-soft);
  padding: 1.5rem;
  border-radius: 20px;
  cursor: pointer;
  transition: var(--transition-smooth);
  text-align: center;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--text-dark);
}

.quiz-option:hover {
  background: var(--bg-white);
  border-color: var(--primary-purple);
  box-shadow: var(--shadow-premium);
  transform: translateY(-2px);
}

.quiz-option.selected {
  background: var(--primary-purple);
  border-color: var(--primary-purple);
  color: var(--bg-white);
  box-shadow: var(--shadow-glow);
}

.quiz-progress-bar {
  height: 4px;
  width: 100%;
  background: var(--border-soft);
  border-radius: 2px;
  margin-bottom: 3rem;
  overflow: hidden;
}

.quiz-progress-fill {
  height: 100%;
  width: 33%;
  background: var(--primary-purple);
  transition: var(--transition-smooth);
}

.quiz-footer {
  display: flex;
  justify-content: space-between;
  margin-top: 3rem;
  border-top: 1px solid var(--border-soft);
  padding-top: 2rem;
}

.quiz-btn {
  background: transparent;
  border: 1px solid var(--border-soft);
  padding: 0.8rem 2.2rem;
  border-radius: 30px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition-fast);
}

.quiz-btn:hover {
  border-color: var(--primary-purple);
  color: var(--primary-purple);
}

.quiz-btn.next {
  background: var(--primary-purple);
  color: var(--bg-white);
  border-color: var(--primary-purple);
}

.quiz-btn.next:hover {
  background: transparent;
  color: var(--primary-purple);
}

.quiz-result-card {
  text-align: center;
  animation: fadeInUp 0.8s ease-out;
}

.quiz-result-title {
  font-size: 2.2rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.quiz-result-text {
  font-size: 1.1rem;
  color: var(--text-muted);
  max-width: 600px;
  margin: 0 auto 3rem auto;
}

.quiz-result-actions {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
}

/* Testimonials / Patient Reviews */
.testimonials-slider {
  position: relative;
  overflow: hidden;
  max-width: 800px;
  margin: 0 auto;
  padding: 2rem 0;
}

.testimonials-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.testimonial-slide {
  min-width: 100%;
  padding: 0 1rem;
  text-align: center;
}

.testimonial-rating {
  color: #FFC107;
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  color: var(--primary-purple);
  line-height: 1.4;
  margin-bottom: 2rem;
  font-style: italic;
}

.testimonial-author {
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-dark);
}

.testimonial-role {
  font-size: 0.75rem;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.25rem;
}

.testimonial-nav {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 3rem;
}

.testimonial-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--border-soft);
  cursor: pointer;
  transition: var(--transition-fast);
}

.testimonial-dot.active {
  background: var(--primary-purple);
  transform: scale(1.3);
}

/* Luxury Interactive Booking Form on Contact Page */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: start;
}

.contact-info-panel {
  display: flex;
  flex-direction: column;
  gap: 3rem;
}

.clinic-location-card {
  background: var(--bg-white);
  border-radius: 30px;
  border: 1px solid var(--border-soft);
  padding: 2.5rem;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
}

.clinic-location-card:hover {
  transform: translateY(-5px);
  border-color: var(--border-pink);
  box-shadow: var(--shadow-glow);
}

.location-title {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
}

.location-detail {
  font-size: 0.95rem;
  color: var(--text-dark);
  margin-bottom: 1.5rem;
  line-height: 1.5;
}

.location-contact {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--primary-purple);
}

.booking-form-wrapper {
  background: var(--bg-white);
  border-radius: 40px;
  padding: 4rem;
  border: 1px solid var(--border-soft);
  box-shadow: var(--shadow-glow);
}

.form-group {
  position: relative;
  margin-bottom: 2.5rem;
}

.form-input {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  transition: var(--transition-fast);
}

.form-input:focus {
  outline: none;
  border-bottom-color: var(--primary-purple);
}

.form-label {
  position: absolute;
  top: 0.8rem;
  left: 0;
  font-size: 0.95rem;
  color: var(--text-muted);
  pointer-events: none;
  transition: var(--transition-fast);
}

.form-input:focus ~ .form-label,
.form-input:not(:placeholder-shown) ~ .form-label {
  top: -1.2rem;
  font-size: 0.75rem;
  color: var(--primary-purple);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-select {
  width: 100%;
  padding: 0.8rem 0;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--border-soft);
  font-size: 0.95rem;
  color: var(--text-dark);
  font-family: var(--font-sans);
  cursor: pointer;
}

.form-select:focus {
  outline: none;
  border-bottom-color: var(--primary-purple);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

/* Luxurious Footer */
.footer {
  background-color: var(--bg-dark);
  color: var(--text-light);
  padding: 6rem 0 3rem 0;
  font-weight: 300;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 4rem;
  margin-bottom: 4rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  padding-bottom: 4rem;
}

.footer-brand h3 {
  font-size: 2rem;
  letter-spacing: 0.05em;
  color: var(--bg-white);
  margin-bottom: 1.5rem;
}

.footer-brand p {
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.6;
}

.footer-links-title {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--accent-pink);
  margin-bottom: 2rem;
  font-weight: 600;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-link {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: var(--transition-fast);
}

.footer-link:hover {
  color: var(--bg-white);
  padding-left: 5px;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* Blog Listing Page Hub Styles & Subpage Headers */
.blog-header {
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  padding: 12rem 0 8rem 0;
  text-align: center;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

#about-hero {
  background-image: linear-gradient(135deg, rgba(253, 248, 249, 0.94) 0%, rgba(250, 236, 242, 0.86) 100%), url('../assets/about_header.png');
}

#services-hero {
  background-image: linear-gradient(135deg, rgba(253, 248, 249, 0.94) 0%, rgba(250, 236, 242, 0.86) 100%), url('../assets/services_header.png');
}

#blogs-banner {
  background-image: linear-gradient(135deg, rgba(253, 248, 249, 0.94) 0%, rgba(250, 236, 242, 0.86) 100%), url('../assets/blogs_header.png');
}

#contact-hero {
  background-image: linear-gradient(135deg, rgba(253, 248, 249, 0.94) 0%, rgba(250, 236, 242, 0.86) 100%), url('../assets/contact_header.png');
}

.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 3rem;
}

.blog-card {
  background: var(--bg-white);
  border-radius: 30px;
  border: 1px solid var(--border-soft);
  overflow: hidden;
  box-shadow: var(--shadow-premium);
  transition: var(--transition-smooth);
  display: flex;
  flex-direction: column;
}

.blog-card-image-box {
  width: 100%;
  aspect-ratio: 1.5;
  background: linear-gradient(135deg, rgba(245, 168, 208, 0.4) 0%, rgba(74, 46, 128, 0.08) 100%);
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: var(--font-serif);
  color: var(--primary-purple);
  font-size: 1.4rem;
  text-align: center;
  padding: 2rem;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.blog-card-content {
  padding: 2.5rem;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

.blog-card-meta {
  display: flex;
  gap: 1.5rem;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--text-muted);
  margin-bottom: 1rem;
  font-weight: 500;
}

.blog-card-title {
  font-size: 1.6rem;
  color: var(--primary-purple);
  margin-bottom: 1rem;
  line-height: 1.3;
}

.blog-card-excerpt {
  color: var(--text-muted);
  font-size: 0.95rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  flex-grow: 1;
}

.blog-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-glow);
  border-color: var(--border-pink);
}

/* Individual Blog Article Page Styles */
.article-header {
  padding: 13rem 0 7rem 0;
  background: linear-gradient(135deg, rgba(253, 248, 249, 0.95) 0%, rgba(250, 236, 242, 0.88) 100%), url('../assets/clinic_header.png') no-repeat center center;
  background-size: cover;
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--border-soft);
}

.article-meta-box {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--text-muted);
  font-weight: 500;
}

.article-container {
  max-width: 800px;
  margin: 0 auto;
  padding: 6rem 2rem;
}

.article-content {
  font-size: 1.1rem;
  color: var(--text-dark);
  line-height: 1.8;
  font-weight: 300;
}

.article-content h2 {
  font-size: 2rem;
  margin: 3.5rem 0 1.5rem 0;
  color: var(--primary-purple);
}

.article-content p {
  margin-bottom: 2rem;
  font-size: 1.05rem;
}

.article-content ul, .article-content ol {
  margin: 0 0 2rem 2rem;
}

.article-content li {
  margin-bottom: 0.75rem;
}

.article-content blockquote {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-style: italic;
  color: var(--primary-purple);
  border-left: 3px solid var(--accent-pink);
  padding-left: 2rem;
  margin: 3rem 0;
}

.article-back-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--primary-purple);
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-bottom: 3rem;
}

.article-back-link span {
  transition: var(--transition-fast);
}

.article-back-link:hover span {
  transform: translateX(-5px);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes float {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-10px);
  }
}

@keyframes rotateSlow {
  from {
    transform: scale(0.9) rotate(0deg);
  }
  to {
    transform: scale(0.9) rotate(360deg);
  }
}

@keyframes shine {
  0% {
    left: -50%;
  }
  100% {
    left: 120%;
  }
}

/* Media Queries (Responsive Styling) */
@media (max-width: 992px) {
  .nav-links {
    display: none;
    position: fixed;
    top: 0;
    right: 0;
    width: 300px;
    height: 100vh;
    background: var(--bg-white);
    flex-direction: column;
    padding: 8rem 3rem 3rem 3rem;
    box-shadow: -10px 0 30px rgba(0, 0, 0, 0.05);
    z-index: 1000;
    gap: 2rem;
  }
  
  .nav-links.active {
    display: flex;
  }
  
  .mobile-toggle {
    display: block;
  }
  
  .mobile-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
  }
  
  .mobile-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
  }

  .hero {
    flex-direction: column;
    padding-top: 140px;
    text-align: center;
    min-height: auto;
    padding-bottom: 8rem;
  }

  .hero-content {
    max-width: 100%;
    margin-bottom: 4rem;
  }

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

  .hero-visual {
    position: relative;
    right: 0;
    width: 100%;
    height: 400px;
  }

  .hero-stats-badge {
    left: 5%;
  }

  .intro-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 4rem;
  }
  
  .booking-form-wrapper {
    padding: 3rem 2rem;
  }

  /* Mobile Dropdown Accordion */
  .dropdown-menu {
    position: static;
    transform: none !important;
    opacity: 1;
    visibility: visible;
    display: none;
    box-shadow: none;
    border: none;
    background: transparent;
    padding: 0.5rem 0 0 1rem;
    width: 100%;
    margin-top: 0.5rem;
    pointer-events: auto;
    gap: 0.5rem;
  }
  
  .dropdown-menu.active {
    display: flex;
  }
  
  .nav-dropdown:hover .dropdown-menu {
    transform: none;
  }
  
  .nav-dropdown:hover .dropdown-arrow {
    transform: none;
  }
  
  .nav-dropdown.active .dropdown-arrow {
    transform: rotate(180deg);
  }
  
  .dropdown-menu a {
    padding: 0.5rem 0.8rem;
    background: rgba(74, 46, 128, 0.03);
    border-radius: 12px;
  }
}

@media (max-width: 768px) {
  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }

  .quiz-options {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }
  
  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }
  
  .btn {
    width: 100%;
    text-align: center;
  }
  
  .hero-stats-badge {
    padding: 1rem;
  }
}
