/* ===== DR. RAJAT KELKAR CLINIC STYLESHEET ===== */

/* Imports */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700;800&family=Roboto:wght@300;400;500;700&display=swap');

/* Design System & Variables */
:root {
  --primary: #1a0a02;          /* Premium Deep Chocolate */
  --primary-light: #2d1a0e;    /* Medium Chocolate */
  --accent: #e8500a;           /* Deep Rust Orange */
  --accent-light: #ff6b1a;     /* Lighter Vivid Orange */
  --gold: #ff8c50;             /* Soft Peach/Orange */
  --text-dark: #2d1a0e;        /* Dark Warm Gray */
  --text-muted: #8a6a5a;       /* Muted Brownish Gray */
  --bg-light: #fff8f4;         /* Soft Cream Section Alternate */
  --bg-white: #ffffff;
  --bg-card: #ffffff;
  --border-color: rgba(232, 80, 10, 0.15);
  --success: #10b981;
  --danger: #ef4444;
  
  --font-heading: 'Montserrat', sans-serif;
  --font-body: 'Roboto', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(26, 10, 2, 0.04);
  --shadow-md: 0 4px 16px rgba(26, 10, 2, 0.08);
  --shadow-lg: 0 16px 36px rgba(26, 10, 2, 0.12);
  --shadow-premium: 0 24px 48px rgba(232, 80, 10, 0.12);
  
  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --radius: 12px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background-color: var(--bg-white);
  line-height: 1.65;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.25;
  color: var(--primary);
}

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

ul {
  list-style: none;
}

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

/* Scrollbar */
::-webkit-scrollbar {
  width: 6px;
}
::-webkit-scrollbar-track {
  background: #f5e8e0;
}
::-webkit-scrollbar-thumb {
  background: var(--accent);
  border-radius: 4px;
}

/* Layout Utilities */
.container {
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 15px;
}

.section {
  padding: 90px 0;
}

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

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

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

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-family: var(--font-heading);
}

.section-tag::before {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-head.center .section-tag::after {
  content: '';
  width: 28px;
  height: 2px;
  background: var(--accent);
}

.section-title {
  font-size: clamp(32px, 4.5vw, 48px);
  font-weight: 800;
  color: var(--primary);
  margin-bottom: 16px;
}

.section-sub {
  font-size: 16px;
  color: var(--text-muted);
  max-width: 600px;
  line-height: 1.7;
}

.section-head.center .section-sub {
  margin: 0 auto;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 28px;
  border-radius: 8px;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.9rem;
  cursor: pointer;
  transition: var(--transition);
  border: none;
  gap: 8px;
}

.btn-primary {
  background: var(--accent);
  color: var(--bg-white);
  box-shadow: 0 4px 14px rgba(232, 80, 10, 0.25);
}

.btn-primary:hover {
  background: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(232, 80, 10, 0.4);
}

.btn-outline {
  background: transparent;
  color: var(--primary);
  border: 1px solid rgba(26, 10, 2, 0.25);
}

.btn-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: rgba(232, 80, 10, 0.05);
  transform: translateY(-2px);
}

.btn-white-outline {
  background: transparent;
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.35);
}

.btn-white-outline:hover {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--bg-white);
  transform: translateY(-2px);
}

.btn-sm {
  padding: 8px 16px;
  font-size: 0.8rem;
}

/* Header & Sticky Navigation */
header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(232, 80, 10, 0.08);
  transition: var(--transition);
}

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

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

.logo {
  display: flex;
  align-items: center;
  gap: 14px;
}

.logo-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--gold));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 20px;
  color: var(--bg-white);
  font-weight: 700;
  flex-shrink: 0;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-main {
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.3rem;
  color: var(--primary);
  line-height: 1.1;
}

.logo-sub {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 2px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}

.nav-links a {
  font-weight: 600;
  font-size: 14px;
  padding: 8px 14px;
  color: rgba(26, 10, 2, 0.85);
  border-radius: 6px;
}

.nav-links a:hover {
  color: var(--accent);
  background: rgba(232, 80, 10, 0.06);
}

.nav-links a.active {
  color: var(--accent);
  background: rgba(232, 80, 10, 0.08);
}

.nav-cta {
  background-color: var(--accent) !important;
  color: var(--bg-white) !important;
  font-weight: 700 !important;
  box-shadow: 0 4px 10px rgba(232, 80, 10, 0.2);
}

.nav-cta:hover {
  background-color: var(--accent-light) !important;
  transform: translateY(-1px);
}

.mobile-menu-btn {
  display: none;
  font-size: 1.5rem;
  background: none;
  border: none;
  color: var(--primary);
  cursor: pointer;
  padding: 6px;
}

/* Mobile drop menu */
.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--bg-white);
  border-top: 1px solid var(--border-color);
  padding: 12px 24px;
  gap: 4px;
  box-shadow: var(--shadow-md);
}

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

.mobile-menu a {
  padding: 12px 16px;
  font-size: 15px;
  font-weight: 600;
  border-radius: 6px;
}

.mobile-menu a:hover {
  color: var(--accent);
  background: rgba(232, 80, 10, 0.06);
}

/* Hero Slider Section */
.hero-slider-container {
  position: relative;
  height: 90vh;
  min-height: 600px;
  width: 100%;
  overflow: hidden;
  margin-top: 80px;
}

.slider-wrapper {
  height: 100%;
  width: 100%;
}

.slide {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 1s ease-in-out;
  display: flex;
  align-items: center;
  z-index: 1;
}

.slide.active {
  opacity: 1;
  z-index: 2;
}

.slide-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 6s ease-out;
}

.slide.active .slide-img {
  transform: scale(1.05);
}

.slide-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(26, 10, 2, 0.85) 0%, rgba(26, 10, 2, 0.45) 100%);
  z-index: 2;
}

.slide-content {
  position: relative;
  z-index: 3;
  color: var(--bg-white);
  max-width: 720px;
  padding: 0 15px;
  animation: fadeInUp 0.8s ease both;
}

.slide-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.slide-content h1 {
  font-size: clamp(34px, 5.5vw, 64px);
  font-weight: 800;
  margin-bottom: 20px;
  line-height: 1.15;
}

.slide-content h1 span {
  color: var(--accent-light);
}

.slide-content p {
  font-size: clamp(15px, 2vw, 18px);
  margin-bottom: 36px;
  opacity: 0.85;
  font-weight: 400;
}

.slide-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Slide default gradient if no image */
.slide[data-no-img="1"] .slide-img {
  background: linear-gradient(135deg, #1a0a02 0%, #8a2000 50%, #c43a00 100%);
}

/* Slider Controls */
.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 4;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  color: var(--bg-white);
  border: 1px solid rgba(255, 255, 255, 0.2);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  transition: var(--transition);
}

.slider-btn:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(232, 80, 10, 0.35);
}

.slider-prev { left: 24px; }
.slider-next { right: 24px; }

.slider-dots {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  display: flex;
  gap: 8px;
}

.dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.35);
  cursor: pointer;
  transition: var(--transition);
}

.dot.active {
  background: var(--accent);
  width: 28px;
  border-radius: 6px;
}

/* Stats Bar */
.stats-bar {
  padding: 0;
  background-color: var(--bg-white);
  border-bottom: 1px solid var(--border-color);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  max-width: 1200px;
  margin: 0 auto;
}

.stat-item {
  padding: 36px 20px;
  text-align: center;
  border-right: 1px solid var(--border-color);
  transition: var(--transition);
}

.stat-item:last-child {
  border-right: none;
}

.stat-item:hover {
  background: rgba(232, 80, 10, 0.02);
}

.stat-num {
  font-family: var(--font-heading);
  font-size: 38px;
  font-weight: 800;
  color: var(--accent);
  line-height: 1;
}

.stat-lbl {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary-light);
  letter-spacing: 0.08em;
  margin-top: 8px;
}

/* About Doctor Section */
.doctor-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 64px;
  align-items: center;
}

.doctor-img-wrap {
  position: relative;
}

.doctor-img-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd4b0 100%);
  border-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-heading);
  font-size: 80px;
  font-weight: 800;
  color: rgba(232, 80, 10, 0.25);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 2;
  overflow: hidden;
}

.doctor-img-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.doctor-badge-float {
  position: absolute;
  bottom: 28px;
  left: -24px;
  background: var(--accent);
  color: var(--bg-white);
  padding: 12px 22px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 13px;
  line-height: 1.4;
  box-shadow: 0 12px 32px rgba(232, 80, 10, 0.35);
  z-index: 3;
}

.doctor-badge-float span {
  display: block;
  font-family: var(--font-heading);
  font-size: 26px;
  font-weight: 800;
}

.doctor-name {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 8px;
}

.doctor-name span {
  color: var(--accent);
}

.doctor-credentials {
  color: var(--accent);
  font-size: 15px;
  font-weight: 600;
  margin-bottom: 6px;
}

.doctor-hospital {
  font-size: 14px;
  color: var(--primary-light);
  font-weight: 500;
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.doctor-hospital i {
  color: var(--accent);
}

.doctor-bio {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 30px;
}

.doctor-quals {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 36px;
}

.qual-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 13px;
  font-weight: 500;
  color: var(--primary-light);
}

.qual-icon {
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background-color: rgba(232, 80, 10, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  flex-shrink: 0;
}

.doctor-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* Why Choose Us & Benefits Grid */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: flex-start;
}

.why-list {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.why-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 24px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: 20px;
}

.why-num {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: rgba(232, 80, 10, 0.08);
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.why-info h4 {
  font-size: 16px;
  margin-bottom: 4px;
  color: var(--primary);
}

.why-info p {
  font-size: 13px;
  color: var(--text-muted);
}

.benefits-box {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg-white);
  padding: 40px;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
}

.benefits-box h3 {
  color: var(--bg-white);
  margin-bottom: 24px;
  font-size: 24px;
}

.benefits-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.benefit-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
}

.benefit-item i {
  color: var(--gold);
}

/* Specialized Procedures Grid */
.procedures-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(340px, 1fr));
  gap: 30px;
}

.procedure-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  padding: 36px 30px;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.procedure-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(232, 80, 10, 0.3);
}

.proc-icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background-color: rgba(232, 80, 10, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  margin-bottom: 20px;
  transition: var(--transition);
}

.procedure-card:hover .proc-icon {
  background-color: var(--accent);
  color: var(--bg-white);
}

.procedure-card h3 {
  font-size: 18px;
  color: var(--primary);
  margin-bottom: 12px;
}

.procedure-card p {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
  flex-grow: 1;
}

.proc-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-top: 24px;
}

.proc-link i {
  transition: var(--transition);
}

.procedure-card:hover .proc-link i {
  transform: translateX(4px);
}

/* Service Detail Layout */
.detail-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: flex-start;
}

.detail-content {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 40px;
  border-radius: 16px;
  box-shadow: var(--shadow-sm);
}

.detail-desc {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dark);
  margin-bottom: 32px;
}

.detail-block {
  margin-bottom: 32px;
}

.detail-block h3 {
  font-size: 20px;
  margin-bottom: 16px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}

.detail-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.detail-list-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.detail-list-item i {
  color: var(--accent);
  margin-top: 3px;
}

.detail-sidebar {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.sidebar-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 16px;
  padding: 30px;
  box-shadow: var(--shadow-sm);
}

.sidebar-card.accent-card {
  background: linear-gradient(135deg, var(--primary), var(--primary-light));
  color: var(--bg-white);
  border: none;
}

.sidebar-card.accent-card h3 {
  color: var(--bg-white);
}

.sidebar-card h3 {
  font-size: 18px;
  margin-bottom: 20px;
}

.services-list-sidebar {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.services-list-sidebar a {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 12px 16px;
  border-radius: 8px;
  border: 1px solid var(--border-color);
  font-size: 14px;
  font-weight: 600;
  color: var(--primary);
}

.services-list-sidebar a:hover,
.services-list-sidebar a.active {
  background-color: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
}

/* Video Gallery Library */
.videos-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
  gap: 30px;
}

.video-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  transition: var(--transition);
  display: flex;
  flex-direction: column;
  height: 100%;
}

.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(232, 80, 10, 0.25);
}

.video-thumb {
  position: relative;
  aspect-ratio: 16/9;
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd4b0 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.video-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.video-card:hover .video-thumb img {
  transform: scale(1.05);
}

.play-overlay {
  position: absolute;
  inset: 0;
  background: rgba(26, 10, 2, 0.45);
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--bg-white);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  padding-left: 3px;
  box-shadow: 0 4px 15px rgba(0,0,0,0.2);
  transition: var(--transition);
}

.video-card:hover .play-circle {
  background-color: var(--accent);
  color: var(--bg-white);
  transform: scale(1.1);
}

.video-body {
  padding: 20px;
  flex-grow: 1;
}

.video-body h3 {
  font-size: 16px;
  margin-bottom: 8px;
}

.video-body p {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
}

/* Video Modal */
#videoModal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 2000;
  background-color: rgba(26, 10, 2, 0.95);
  backdrop-filter: blur(6px);
  align-items: center;
  justify-content: center;
}

#videoModal.open {
  display: flex;
}

.modal-container {
  position: relative;
  width: 90%;
  max-width: 850px;
}

.modal-close-btn {
  position: absolute;
  top: -44px;
  right: 0;
  background: none;
  border: none;
  color: var(--bg-white);
  font-size: 24px;
  cursor: pointer;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
  transition: var(--transition);
}

.modal-close-btn:hover {
  background-color: var(--accent);
}

.video-iframe-wrap {
  position: relative;
  padding-top: 56.25%; /* 16:9 ratio */
  background: #000;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.video-iframe-wrap iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}

/* Testimonials Carousel */
.testi-slider-wrap {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  overflow: hidden;
}

.testi-slides-inner {
  display: flex;
  transition: transform 0.5s ease-in-out;
}

.testi-slide-item {
  min-width: 100%;
  padding: 0 40px;
}

.testi-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  padding: 44px;
  border-radius: 16px;
  text-align: center;
  box-shadow: var(--shadow-sm);
  position: relative;
}

.testi-quote-icon {
  font-size: 36px;
  color: rgba(232, 80, 10, 0.2);
  margin-bottom: 20px;
}

.testi-comment {
  font-size: clamp(15px, 2.5vw, 18px);
  color: var(--text-dark);
  font-style: italic;
  line-height: 1.8;
  margin-bottom: 24px;
}

.testi-stars {
  color: #f59e0b;
  font-size: 14px;
  margin-bottom: 16px;
}

.testi-author {
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--accent);
}

.testi-nav-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  z-index: 5;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.testi-nav-btn:hover {
  background: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
}

.testi-prev { left: 0; }
.testi-next { right: 0; }

/* FAQ Accordion */
.faq-list {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.faq-header h4 {
  font-size: 15px;
  color: var(--primary);
  font-weight: 700;
}

.faq-icon-toggle {
  font-size: 12px;
  color: var(--accent);
  transition: transform 0.3s ease;
}

.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease-out;
  background-color: rgba(232, 80, 10, 0.01);
}

.faq-body-content {
  padding: 0 24px 20px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.6;
}

.faq-item.active {
  border-color: rgba(232, 80, 10, 0.3);
}

.faq-item.active .faq-icon-toggle {
  transform: rotate(180deg);
}

.faq-item.active .faq-body {
  max-height: 200px;
}

/* Appointment Form & Grid */
.appt-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.appt-contact-cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.appt-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 12px;
  padding: 24px;
  display: flex;
  gap: 20px;
  box-shadow: var(--shadow-sm);
}

.appt-card-icon {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(232, 80, 10, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}

.appt-card-info h4 {
  font-size: 15px;
  margin-bottom: 4px;
}

.appt-card-info p {
  font-size: 13px;
  color: var(--text-muted);
  font-weight: 500;
}

.appt-form-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 20px;
  padding: 44px;
  box-shadow: var(--shadow-lg);
}

.form-title {
  font-size: 24px;
  margin-bottom: 10px;
}

.form-subtitle {
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 30px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-bottom: 20px;
}

.form-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--primary);
  letter-spacing: 0.05em;
}

.form-control {
  padding: 12px 16px;
  border-radius: 6px;
  border: 1px solid var(--border-color);
  background-color: #faf5f2;
  font-family: var(--font-body);
  font-size: 14px;
  outline: none;
  transition: var(--transition);
  color: var(--text-dark);
}

.form-control:focus {
  border-color: var(--accent);
  background-color: var(--bg-white);
  box-shadow: 0 0 0 3px rgba(232, 80, 10, 0.12);
}

.form-submit-btn {
  width: 100%;
}

.form-message {
  padding: 14px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  text-align: center;
  margin-bottom: 20px;
  display: none;
}

.form-message.success {
  background-color: #e6fcf5;
  color: #0ca678;
  border: 1px solid #c3fae8;
  display: block;
}

.form-message.error {
  background-color: #fff5f5;
  color: #fa5252;
  border: 1px solid #ffe3e3;
  display: block;
}

/* Contact page Map Wrapper */
.map-col {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  height: 450px;
}

.map-col iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block;
}

/* Footer layout */
footer {
  background-color: var(--primary);
  color: rgba(255, 255, 255, 0.6);
  padding: 72px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 56px;
  margin-bottom: 48px;
}

.footer-brand h3 {
  color: var(--bg-white);
  font-size: 24px;
  margin-bottom: 8px;
}

.footer-qualifications {
  font-size: 13px;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 16px;
}

.footer-bio {
  font-size: 13px;
  line-height: 1.7;
  margin-bottom: 24px;
}

.footer-socials {
  display: flex;
  gap: 10px;
}

.social-btn {
  width: 36px;
  height: 36px;
  border-radius: 6px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
}

.social-btn:hover {
  background-color: var(--accent);
  color: var(--bg-white);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.footer-col-title {
  color: var(--bg-white);
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 20px;
}

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

.footer-links a {
  font-size: 13px;
  display: inline-flex;
  align-items: center;
}

.footer-links a:hover {
  color: var(--accent-light);
}

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 13px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--accent-light);
  margin-top: 3px;
}

.footer-contact-item strong {
  display: block;
  color: var(--bg-white);
}

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

.footer-copy {
  font-size: 12px;
}

.footer-copy a {
  color: var(--accent-light);
}

.footer-copy a:hover {
  text-decoration: underline;
}

/* WhatsApp Floating Button */
.wa-float-btn {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 1000;
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background-color: #25d366;
  color: var(--bg-white);
  font-size: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
}

.wa-float-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 12px 32px rgba(37, 211, 102, 0.55);
}

/* ===== CLINIC ADMIN PANEL STYLES ===== */
.admin-body {
  background-color: #f3f4f6;
  padding-top: 80px;
}

.admin-navbar {
  background-color: var(--primary);
  color: var(--bg-white);
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 1000;
  height: 80px;
  display: flex;
  align-items: center;
  border-bottom: 2px solid var(--accent);
}

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

.admin-nav-brand h2 {
  color: var(--bg-white);
  font-size: 1.25rem;
  line-height: 1;
}

.admin-nav-brand span {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 700;
}

.admin-nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 13px;
  font-weight: 600;
}

.admin-nav-actions a {
  display: flex;
  align-items: center;
  gap: 6px;
}

.admin-nav-actions a:hover {
  color: var(--accent-light);
}

.admin-wrapper {
  display: grid;
  grid-template-columns: 240px 1fr;
  gap: 30px;
  align-items: flex-start;
  margin-top: 30px;
}

.admin-sidebar {
  background-color: var(--bg-white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
}

.admin-menu {
  display: flex;
  flex-direction: column;
}

.admin-menu-item {
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 600;
  color: var(--primary-light);
  cursor: pointer;
  transition: var(--transition);
  border-left: 3px solid transparent;
  display: flex;
  align-items: center;
  gap: 12px;
}

.admin-menu-item:hover {
  background-color: rgba(232, 80, 10, 0.04);
  color: var(--accent);
}

.admin-menu-item.active {
  background-color: rgba(232, 80, 10, 0.06);
  color: var(--accent);
  border-left-color: var(--accent);
}

.admin-content-area {
  min-height: 500px;
}

.tab-content {
  display: none;
}

.tab-content.active {
  display: block;
}

.admin-header-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 24px;
}

.admin-header-title h2 {
  font-size: 1.5rem;
}

.admin-card {
  background-color: var(--bg-white);
  border-radius: var(--radius);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}

.admin-card h3 {
  font-size: 16px;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 12px;
}

.admin-stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  margin-bottom: 30px;
}

.stat-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: 10px;
  padding: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  box-shadow: var(--shadow-sm);
}

.stat-card-text p {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  color: var(--text-muted);
  letter-spacing: 0.05em;
}

.stat-card-text h3 {
  font-size: 24px;
  color: var(--primary);
  margin-top: 4px;
}

.stat-card-icon {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background-color: rgba(232, 80, 10, 0.08);
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}

.message-card {
  border: 1px solid var(--border-color);
  border-radius: 8px;
  padding: 20px;
  margin-bottom: 16px;
  background-color: var(--bg-white);
  box-shadow: var(--shadow-sm);
}

.message-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 12px;
}

.message-meta h4 {
  font-size: 14px;
  margin-bottom: 2px;
}

.message-meta p {
  font-size: 11px;
  color: var(--text-muted);
}

.message-date {
  font-size: 11px;
  color: var(--text-muted);
}

.message-body {
  font-size: 12px;
  padding: 12px;
  background-color: #faf5f2;
  border-radius: 6px;
  color: var(--text-dark);
  line-height: 1.5;
}

.admin-list-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  margin-bottom: 12px;
  background: var(--bg-white);
}

.admin-list-item-content {
  display: flex;
  align-items: center;
  gap: 16px;
  overflow: hidden;
}

.admin-list-thumb {
  width: 60px;
  height: 45px;
  object-fit: cover;
  border-radius: 4px;
  background-color: #ddd;
}

.admin-list-info h4 {
  font-size: 13px;
  margin-bottom: 2px;
}

.admin-list-info p {
  font-size: 11px;
  color: var(--text-muted);
}

.admin-actions {
  display: flex;
  gap: 10px;
}

.btn-icon-danger {
  background: none;
  border: none;
  color: var(--danger);
  cursor: pointer;
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-icon-danger:hover {
  background-color: rgba(239, 68, 68, 0.08);
}

.btn-icon-primary {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  padding: 8px;
  font-size: 14px;
  border-radius: 6px;
  transition: var(--transition);
}

.btn-icon-primary:hover {
  background-color: rgba(232, 80, 10, 0.08);
}

.alert {
  padding: 14px 20px;
  border-radius: 8px;
  margin-bottom: 24px;
  font-size: 13px;
  font-weight: 600;
}

.alert-success {
  background-color: #ecfdf5;
  color: var(--success);
  border: 1px solid #a7f3d0;
}

.alert-danger {
  background-color: #fef2f2;
  color: var(--danger);
  border: 1px solid #fecaca;
}

/* Modals inside Admin */
.admin-modal {
  display: none;
  position: fixed;
  inset: 0;
  background-color: rgba(26, 10, 2, 0.6);
  z-index: 2000;
  align-items: center;
  justify-content: center;
  backdrop-filter: blur(4px);
}

.admin-modal.open {
  display: flex;
}

.admin-modal-card {
  background-color: var(--bg-white);
  border-radius: 12px;
  width: 90%;
  max-width: 600px;
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  animation: scaleUp 0.3s ease;
}

.admin-modal-header {
  padding: 20px 24px;
  background-color: var(--primary);
  color: var(--bg-white);
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.admin-modal-header h3 {
  color: var(--bg-white);
  font-size: 15px;
}

.admin-modal-close {
  background: none;
  border: none;
  color: rgba(255,255,255,0.7);
  font-size: 18px;
  cursor: pointer;
}

.admin-modal-close:hover {
  color: var(--bg-white);
}

.admin-modal-body {
  padding: 24px;
}

/* Admin login card wrapper */
.admin-login-container {
  min-height: calc(100vh - 120px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px 15px;
}

.admin-login-card {
  background-color: var(--bg-white);
  border-radius: 16px;
  padding: 48px 40px;
  width: 100%;
  max-width: 440px;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

.admin-login-header {
  text-align: center;
  margin-bottom: 32px;
}

.admin-login-header h2 {
  font-size: 20px;
  margin-bottom: 6px;
}

.admin-login-header p {
  font-size: 12px;
  color: var(--text-muted);
}

/* Form layouts grid */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-group-full {
  grid-column: span 2;
}

.mb-4 {
  margin-bottom: 16px;
}

.mt-4 {
  margin-top: 24px;
}

/* Keyframe animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes scaleUp {
  from {
    opacity: 0;
    transform: scale(0.95);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

/* Responsive Media Queries */
@media (max-width: 1024px) {
  .doctor-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .doctor-img-wrap {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .why-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item:nth-child(2) {
    border-right: none;
  }
  
  .stat-item:nth-child(3) {
    border-right: 1px solid var(--border-color);
  }
  
  .appt-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .admin-wrapper {
    grid-template-columns: 1fr;
  }
  
  .admin-stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .section {
    padding: 60px 0;
  }
  
  .nav-links {
    display: none;
  }
  
  .mobile-menu-btn {
    display: block;
  }
  
  .hero-slider-container {
    height: 50vh;
    min-height: 280px;
    margin-top: 80px;
  }
  
  /* Automatically adapt to banner aspect ratio on mobile if image-only slides exist */
  .hero-slider-container:has(.image-only-slide) {
    height: auto;
    aspect-ratio: 16 / 9;
    min-height: auto;
  }
  
  .image-only-slide {
    background-color: var(--primary) !important;
  }
  
  .image-only-slide img {
    object-fit: contain !important;
    width: 100% !important;
    height: 100% !important;
  }
  
  .slide-content {
    max-width: 92%;
    padding: 0 10px;
  }
  
  .slide-content h1 {
    font-size: clamp(20px, 5.5vw, 30px);
    margin-bottom: 12px;
  }
  
  .slide-content p {
    font-size: clamp(12px, 3.5vw, 15px);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }
  
  .slide-badge {
    padding: 4px 12px;
    font-size: 10px;
    margin-bottom: 12px;
  }
  
  .slide-actions {
    gap: 8px;
  }
  
  .slide-actions .btn {
    padding: 8px 16px;
    font-size: 12px;
  }
  
  /* Responsive slider controls */
  .slider-btn {
    width: 36px;
    height: 36px;
    font-size: 12px;
  }
  .slider-prev { left: 8px; }
  .slider-next { right: 8px; }
  
  .slider-dots {
    bottom: 8px;
  }
  .dot {
    width: 8px;
    height: 8px;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .stat-item {
    padding: 24px 12px;
  }
  
  .stat-num {
    font-size: 28px;
  }
  
  .benefits-grid {
    grid-template-columns: 1fr;
  }
  
  .detail-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  
  .appt-form-card {
    padding: 24px;
  }
  
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

@media (max-width: 480px) {
  .slide-actions {
    flex-direction: column;
    width: 100%;
  }
  
  .slide-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }
  
  .stat-item {
    border-right: none;
    border-bottom: 1px solid var(--border-color);
  }
  
  .stat-item:last-child {
    border-bottom: none;
  }
  
  .doctor-quals {
    grid-template-columns: 1fr;
  }
  
  .detail-list {
    grid-template-columns: 1fr;
  }
}

/* Doctor Image & Team Section Revisions */
.doctor-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 20px;
  box-shadow: var(--shadow-lg);
  display: block;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 30px;
  margin-top: 40px;
}

.team-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  text-align: center;
}

.team-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-premium);
  border-color: rgba(232, 80, 10, 0.3);
}

.team-img-wrap {
  width: 100%;
  aspect-ratio: 1/1;
  background-color: var(--bg-light);
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--border-color);
}

.team-img-placeholder {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, #ffe8d6 0%, #ffd4b0 100%);
  color: var(--accent);
  font-size: 38px;
}

.team-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.team-card:hover .team-img {
  transform: scale(1.05);
}

.team-info {
  padding: 24px 20px;
}

.team-name {
  font-family: var(--font-heading);
  font-size: 18px;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 6px;
}

.team-role {
  font-size: 12px;
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: 12px;
}

.team-desc {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
}
