/* ============================================
   Dr. Güngör Çalışan Diş Kliniği - Modern Theme
   ============================================ */

:root {
  --primary: #FF6B35;
  --primary-dark: #E85A24;
  --primary-light: #FF8B5A;
  --secondary: #F7931E;
  --accent: #FFB627;
  --gradient: linear-gradient(135deg, #FF6B35 0%, #F7931E 50%, #FFB627 100%);
  --gradient-soft: linear-gradient(135deg, #FFF3EB 0%, #FFE4CC 100%);
  --dark: #1A1A2E;
  --dark-2: #2D2D44;
  --gray: #6B7280;
  --gray-light: #E5E7EB;
  --light: #FFF8F3;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 8px rgba(255, 107, 53, 0.08);
  --shadow: 0 8px 24px rgba(255, 107, 53, 0.12);
  --shadow-lg: 0 20px 60px rgba(255, 107, 53, 0.18);
  --shadow-xl: 0 30px 80px rgba(26, 26, 46, 0.15);
  --radius-sm: 8px;
  --radius: 16px;
  --radius-lg: 24px;
  --radius-xl: 32px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--white);
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Playfair Display', 'Poppins', serif;
  font-weight: 700;
  line-height: 1.2;
  color: var(--dark);
}

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

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

ul {
  list-style: none;
}

/* ============================================
   LOADER
   ============================================ */
.loader-wrapper {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}

.loader-wrapper.hidden {
  opacity: 0;
  visibility: hidden;
}

.loader-logo {
  width: 100px;
  height: 100px;
  position: relative;
  animation: pulse 1.5s ease-in-out infinite;
}

.loader-tooth {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: var(--primary);
  stroke-width: 4;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 300;
  stroke-dashoffset: 300;
  animation: draw 2s ease-in-out infinite;
}

@keyframes draw {
  0% { stroke-dashoffset: 300; }
  50% { stroke-dashoffset: 0; fill: rgba(255, 107, 53, 0.1); }
  100% { stroke-dashoffset: -300; }
}

@keyframes pulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.1); }
}

.loader-text {
  margin-top: 30px;
  font-family: 'Playfair Display', serif;
  font-size: 22px;
  color: var(--primary);
  letter-spacing: 2px;
  font-weight: 600;
}

.loader-text span {
  display: inline-block;
  animation: bounce 1.4s ease-in-out infinite;
}

.loader-text span:nth-child(2) { animation-delay: 0.1s; }
.loader-text span:nth-child(3) { animation-delay: 0.2s; }
.loader-text span:nth-child(4) { animation-delay: 0.3s; }
.loader-text span:nth-child(5) { animation-delay: 0.4s; }
.loader-text span:nth-child(6) { animation-delay: 0.5s; }

@keyframes bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* ============================================
   CONTAINER & LAYOUT
   ============================================ */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

.section {
  padding: 100px 0;
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: 70px;
}

.section-tag {
  display: inline-block;
  padding: 8px 20px;
  background: var(--gradient-soft);
  color: var(--primary);
  border-radius: 100px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(32px, 4vw, 48px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.section-title .accent {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.section-desc {
  font-size: 17px;
  color: var(--gray);
  max-width: 650px;
  margin: 0 auto;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 16px 32px;
  border-radius: 100px;
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  text-transform: none;
  letter-spacing: 0.3px;
}

.btn-primary {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 10px 25px rgba(255, 107, 53, 0.35);
}

.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.45);
}

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

.btn-outline:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-3px);
}

.btn-white {
  background: var(--white);
  color: var(--primary);
  box-shadow: var(--shadow);
}

.btn-white:hover {
  background: var(--dark);
  color: var(--white);
  transform: translateY(-3px);
}

.btn i, .btn svg {
  transition: transform 0.3s ease;
}

.btn:hover i, .btn:hover svg {
  transform: translateX(4px);
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  transition: var(--transition);
  border-bottom: 1px solid rgba(255, 107, 53, 0.06);
}

.header.scrolled {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.04);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: 'Playfair Display', serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--dark);
  flex-shrink: 0;
}

.logo-icon {
  width: 40px;
  height: 40px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}

.logo-icon::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(255,255,255,0.3), transparent);
}

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

.logo-text span {
  font-size: 17px;
  font-weight: 700;
  white-space: nowrap;
}

.logo-text small {
  font-family: 'Poppins', sans-serif;
  font-size: 10px;
  font-weight: 500;
  color: var(--primary);
  letter-spacing: 1.2px;
  text-transform: uppercase;
}

.nav-menu {
  display: flex;
  gap: 4px;
  align-items: center;
  margin: 0 auto;
}

.nav-menu li {
  position: relative;
}

.nav-menu a {
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--dark);
  border-radius: 100px;
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  white-space: nowrap;
}

.nav-menu a:hover,
.nav-menu a.active {
  color: var(--primary);
}

.nav-menu a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gradient);
}

/* Dropdown — desktop only (min-width: 993px) */
@media (min-width: 993px) {
  .nav-dropdown {
    position: absolute;
    top: 100%;
    left: 50%;
    transform: translateX(-50%) translateY(10px);
    background: var(--white);
    min-width: 220px;
    padding: 12px;
    border-radius: 16px;
    box-shadow: 0 20px 50px rgba(26, 26, 46, 0.12);
    border: 1px solid rgba(255, 107, 53, 0.08);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .nav-menu li:hover .nav-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateX(-50%) translateY(0);
  }
}

.nav-dropdown a {
  display: block;
  padding: 10px 16px;
  font-size: 14px;
  border-radius: 10px;
  color: var(--dark);
}

.nav-dropdown a:hover {
  background: var(--gradient-soft);
  color: var(--primary);
}

.nav-cta {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-phone-btn {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--gradient-soft);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  position: relative;
}

.nav-phone-btn:hover {
  background: var(--gradient);
  color: var(--white);
  transform: translateY(-2px);
}

.nav-phone-btn::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid var(--primary);
  opacity: 0.3;
  animation: ping 2s infinite;
}

@keyframes ping {
  0% { transform: scale(1); opacity: 0.3; }
  100% { transform: scale(1.4); opacity: 0; }
}

.nav-cta .btn {
  padding: 11px 22px;
  font-size: 13.5px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: none;
  background: var(--gradient-soft);
  border-radius: 12px;
  cursor: pointer;
  color: var(--primary);
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  position: relative;
  z-index: 105;
  transition: background 0.3s ease;
}

.menu-toggle .bar {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 3px;
  transform: translate(-50%, -50%);
  transition: transform 0.35s ease, opacity 0.2s ease, background 0.3s ease;
}

.menu-toggle .bar:nth-child(1) { transform: translate(-50%, calc(-50% - 6px)); }
.menu-toggle .bar:nth-child(3) { transform: translate(-50%, calc(-50% + 6px)); }

.menu-toggle.active { background: var(--gradient); }
.menu-toggle.active .bar { background: var(--white); }
.menu-toggle.active .bar:nth-child(1) { transform: translate(-50%, -50%) rotate(45deg); }
.menu-toggle.active .bar:nth-child(2) { opacity: 0; }
.menu-toggle.active .bar:nth-child(3) { transform: translate(-50%, -50%) rotate(-45deg); }

.menu-overlay {
  position: fixed;
  inset: 0;
  background: rgba(26, 26, 46, 0.55);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  z-index: 98;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.menu-overlay.active {
  opacity: 1;
  visibility: visible;
}

.body-lock {
  overflow: hidden !important;
  height: 100vh;
}

/* Mobile-only elements — hidden on desktop */
.mobile-only { display: none; }
.nav-menu .nav-icon { display: none; }

/* ============================================
   GALLERY TABS
   ============================================ */
.tabs-nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-bottom: 50px;
  background: var(--white);
  padding: 8px;
  border-radius: 100px;
  box-shadow: var(--shadow);
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.tab-btn {
  flex: 1;
  padding: 14px 28px;
  border: none;
  background: transparent;
  border-radius: 100px;
  color: var(--dark);
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  font-family: inherit;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.tab-btn.active {
  background: var(--gradient);
  color: var(--white);
  box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
}

.tab-content {
  display: none;
  animation: fadeInTab 0.5s ease;
}

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

@keyframes fadeInTab {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
  min-height: 100vh;
  padding: 140px 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 400px;
  height: 400px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(80px);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 8px 8px 20px;
  background: var(--white);
  border-radius: 100px;
  box-shadow: var(--shadow);
  margin-bottom: 24px;
  font-size: 14px;
  font-weight: 500;
}

.hero-badge span {
  color: var(--primary);
  font-weight: 600;
}

.hero-badge b {
  background: var(--gradient);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
}

.hero-title {
  font-size: clamp(40px, 5.5vw, 68px);
  line-height: 1.05;
  margin-bottom: 24px;
  font-weight: 800;
}

.hero-title .highlight {
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  display: inline-block;
}

.hero-title .highlight::after {
  content: '';
  position: absolute;
  bottom: 5px;
  left: 0;
  right: 0;
  height: 12px;
  background: rgba(255, 182, 39, 0.35);
  z-index: -1;
  border-radius: 4px;
}

.hero-desc {
  font-size: 18px;
  color: var(--gray);
  margin-bottom: 36px;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 50px;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  padding-top: 40px;
  border-top: 1px solid rgba(255, 107, 53, 0.15);
}

.stat-item h3 {
  font-size: 40px;
  background: var(--gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 4px;
}

.stat-item p {
  font-size: 13px;
  color: var(--gray);
  font-weight: 500;
}

.hero-visual {
  position: relative;
  height: 600px;
}

.hero-image {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, #FF6B35 0%, #FFB627 100%);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
}

.hero-image-inner {
  width: 100%;
  height: 100%;
  background: url('https://images.unsplash.com/photo-1629909613654-28e377c37b09?w=800&auto=format&fit=crop&q=80') center/cover;
  border-radius: var(--radius-xl);
  position: relative;
}

.hero-image-inner::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(255, 107, 53, 0.3));
}

.floating-card {
  position: absolute;
  background: var(--white);
  padding: 20px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  z-index: 3;
  animation: float 4s ease-in-out infinite;
}

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

.floating-card.card-1 {
  top: 40px;
  left: -40px;
  display: flex;
  align-items: center;
  gap: 14px;
  animation-delay: 0s;
}

.floating-card.card-2 {
  bottom: 40px;
  right: -30px;
  animation-delay: 1.5s;
}

.floating-card.card-3 {
  top: 50%;
  right: -50px;
  animation-delay: 0.7s;
}

.card-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
}

.card-content h4 {
  font-size: 14px;
  font-weight: 700;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}

.card-content p {
  font-size: 12px;
  color: var(--gray);
}

.rating-stars {
  color: var(--accent);
  font-size: 14px;
  margin-bottom: 4px;
}

/* ============================================
   FEATURES / WHY US
   ============================================ */
.features {
  padding: 80px 0;
  background: var(--white);
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.feature-card {
  padding: 40px 30px;
  background: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
  border: 1px solid var(--gray-light);
  transition: var(--transition);
  position: relative;
  overflow: hidden;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  transform: translateY(-100%);
  transition: transform 0.4s ease;
}

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

.feature-card:hover::before {
  transform: translateY(0);
}

.feature-icon {
  width: 80px;
  height: 80px;
  margin: 0 auto 24px;
  background: var(--gradient-soft);
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  transition: var(--transition);
}

.feature-card:hover .feature-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(-10deg) scale(1.1);
}

.feature-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--gray);
  font-size: 15px;
}

/* ============================================
   SERVICES
   ============================================ */
.services {
  background: var(--light);
  position: relative;
}

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

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  position: relative;
  box-shadow: var(--shadow-sm);
}

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

.service-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-image img {
  transform: scale(1.1);
}

.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(26, 26, 46, 0.4));
}

.service-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  background: var(--gradient);
  color: var(--white);
  padding: 6px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  z-index: 2;
}

.service-content {
  padding: 30px;
}

.service-content h3 {
  font-size: 22px;
  margin-bottom: 12px;
}

.service-content p {
  color: var(--gray);
  margin-bottom: 20px;
  font-size: 15px;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--primary);
  font-weight: 600;
  font-size: 14px;
}

.service-link:hover {
  gap: 14px;
}

/* ============================================
   ABOUT / DOCTOR
   ============================================ */
.about {
  background: var(--white);
}

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

.about-visual {
  position: relative;
}

.about-image {
  width: 100%;
  height: 600px;
  border-radius: var(--radius-xl);
  overflow: hidden;
  background: var(--gradient-soft);
  position: relative;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-experience {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: var(--gradient);
  color: var(--white);
  padding: 30px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  text-align: center;
}

.about-experience h3 {
  color: var(--white);
  font-size: 48px;
  line-height: 1;
  margin-bottom: 6px;
  font-family: 'Playfair Display', serif;
}

.about-experience p {
  font-size: 13px;
  letter-spacing: 1px;
  text-transform: uppercase;
  opacity: 0.9;
}

.about-content .section-tag {
  margin-bottom: 16px;
}

.about-content h2 {
  font-size: clamp(28px, 3.5vw, 42px);
  margin-bottom: 20px;
  line-height: 1.2;
}

.about-content > p {
  color: var(--gray);
  margin-bottom: 30px;
  font-size: 16px;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}

.about-feature {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}

.about-feature-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-soft);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.about-feature h4 {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.about-feature p {
  color: var(--gray);
  font-size: 13px;
}

/* ============================================
   DOCTORS / TEAM
   ============================================ */
.doctors {
  background: var(--light);
}

.doctors-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
}

.doctor-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  display: grid;
  grid-template-columns: 260px 1fr;
}

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

.doctor-image {
  height: 100%;
  min-height: 360px;
  overflow: hidden;
  position: relative;
  background: var(--gradient);
}

.doctor-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

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

.doctor-social {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  opacity: 0;
  transition: var(--transition);
}

.doctor-card:hover .doctor-social {
  opacity: 1;
  bottom: 30px;
}

.doctor-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.doctor-social a:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-4px);
}

.doctor-info {
  padding: 40px 30px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.doctor-tag {
  display: inline-block;
  color: var(--primary);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.doctor-info h3 {
  font-size: 26px;
  margin-bottom: 6px;
}

.doctor-info .specialty {
  color: var(--secondary);
  font-weight: 500;
  margin-bottom: 20px;
  font-size: 15px;
}

.doctor-info p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

.doctor-meta {
  display: flex;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.doctor-meta div {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gray);
  font-size: 13px;
}

.doctor-meta i {
  color: var(--primary);
}

/* ============================================
   CTA STRIP
   ============================================ */
.cta-strip {
  padding: 80px 0;
  background: var(--gradient);
  position: relative;
  overflow: hidden;
}

.cta-strip::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.cta-strip::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -10%;
  width: 400px;
  height: 400px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.cta-content {
  display: grid;
  grid-template-columns: 1.5fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 2;
}

.cta-content h2 {
  color: var(--white);
  font-size: clamp(28px, 3.5vw, 40px);
  margin-bottom: 12px;
}

.cta-content p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: flex-end;
  flex-wrap: wrap;
}

/* ============================================
   BEFORE / AFTER
   ============================================ */
.before-after {
  background: var(--white);
}

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

.ba-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.ba-slider {
  position: relative;
  height: 280px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
}

.ba-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.ba-image.after {
  clip-path: polygon(50% 0, 100% 0, 100% 100%, 50% 100%);
  transition: clip-path 0.05s ease;
}

.ba-slider-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: var(--white);
  transform: translateX(-50%);
  pointer-events: none;
}

.ba-slider-handle::before {
  content: '⇔';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: var(--shadow);
}

.ba-labels {
  position: absolute;
  top: 15px;
  left: 15px;
  right: 15px;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  z-index: 2;
}

.ba-labels span {
  background: rgba(26, 26, 46, 0.75);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
}

.ba-labels span:last-child {
  background: var(--gradient);
}

.ba-info {
  padding: 24px;
}

.ba-info h4 {
  font-size: 18px;
  margin-bottom: 6px;
  font-family: 'Poppins', sans-serif;
}

.ba-info p {
  color: var(--gray);
  font-size: 14px;
}

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  background: var(--light);
}

.gallery-filter {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}

.filter-btn {
  padding: 10px 24px;
  border: 2px solid var(--gray-light);
  background: var(--white);
  border-radius: 100px;
  color: var(--dark);
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: var(--transition);
  font-size: 14px;
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1;
  cursor: pointer;
  box-shadow: var(--shadow-sm);
}

.gallery-item:nth-child(3n+1) {
  aspect-ratio: 1 / 1.3;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img {
  transform: scale(1.1);
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(255, 107, 53, 0.85));
  opacity: 0;
  transition: var(--transition);
}

.gallery-item:hover::after {
  opacity: 1;
}

.gallery-overlay {
  position: absolute;
  bottom: 20px;
  left: 20px;
  right: 20px;
  color: var(--white);
  transform: translateY(20px);
  opacity: 0;
  transition: var(--transition);
  z-index: 2;
}

.gallery-item:hover .gallery-overlay {
  transform: translateY(0);
  opacity: 1;
}

.gallery-overlay h4 {
  color: var(--white);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.gallery-overlay p {
  font-size: 12px;
  opacity: 0.9;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--white);
}

.testimonials-slider {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.testimonial-card {
  background: var(--white);
  padding: 40px 30px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-light);
  position: relative;
  transition: var(--transition);
}

.testimonial-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
  border-color: transparent;
}

.testimonial-quote {
  position: absolute;
  top: 20px;
  right: 25px;
  font-size: 60px;
  color: var(--primary);
  opacity: 0.15;
  line-height: 1;
  font-family: 'Playfair Display', serif;
}

.testimonial-rating {
  color: var(--accent);
  margin-bottom: 16px;
  font-size: 16px;
  letter-spacing: 2px;
}

.testimonial-text {
  color: var(--dark-2);
  font-size: 15px;
  margin-bottom: 24px;
  font-style: italic;
  line-height: 1.7;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--gray-light);
}

.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: var(--gradient);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  font-size: 18px;
}

.testimonial-author h5 {
  font-size: 15px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 2px;
}

.testimonial-author small {
  color: var(--gray);
  font-size: 12px;
}

/* ============================================
   BLOG
   ============================================ */
.blog {
  background: var(--light);
}

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

.blog-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
}

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

.blog-image {
  height: 240px;
  overflow: hidden;
  position: relative;
}

.blog-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.blog-card:hover .blog-image img {
  transform: scale(1.1);
}

.blog-date {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--white);
  padding: 8px 16px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--primary);
  box-shadow: var(--shadow);
}

.blog-content {
  padding: 30px;
}

.blog-meta {
  display: flex;
  gap: 16px;
  margin-bottom: 14px;
  font-size: 13px;
  color: var(--gray);
}

.blog-meta span {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.blog-meta i {
  color: var(--primary);
}

.blog-content h3 {
  font-size: 20px;
  margin-bottom: 12px;
  transition: color 0.3s ease;
  line-height: 1.35;
}

.blog-card:hover .blog-content h3 {
  color: var(--primary);
}

.blog-content p {
  color: var(--gray);
  font-size: 14px;
  margin-bottom: 20px;
}

/* ============================================
   FAQ
   ============================================ */
.faq {
  background: var(--white);
}

.faq-container {
  max-width: 900px;
  margin: 0 auto;
}

.faq-item {
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid transparent;
}

.faq-item.active {
  background: var(--white);
  border-color: var(--primary);
  box-shadow: var(--shadow);
}

.faq-question {
  padding: 24px 30px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  gap: 20px;
}

.faq-question h4 {
  font-size: 17px;
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  transition: color 0.3s ease;
}

.faq-item.active .faq-question h4 {
  color: var(--primary);
}

.faq-icon {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--white);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: var(--transition);
  border: 1px solid var(--gray-light);
}

.faq-item.active .faq-icon {
  background: var(--gradient);
  color: var(--white);
  transform: rotate(45deg);
  border-color: transparent;
}

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

.faq-answer-inner {
  padding: 0 30px 24px;
  color: var(--gray);
  line-height: 1.7;
}

/* ============================================
   CONTACT
   ============================================ */
.contact {
  background: var(--light);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 50px;
}

.contact-info {
  background: var(--gradient);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.contact-info::before {
  content: '';
  position: absolute;
  bottom: -100px;
  right: -100px;
  width: 300px;
  height: 300px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.contact-info h3 {
  color: var(--white);
  font-size: 28px;
  margin-bottom: 12px;
  position: relative;
}

.contact-info > p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  position: relative;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin-bottom: 28px;
  position: relative;
}

.contact-icon {
  width: 50px;
  height: 50px;
  background: rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  backdrop-filter: blur(10px);
}

.contact-item h5 {
  color: var(--white);
  font-size: 14px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
  opacity: 0.9;
}

.contact-item p {
  color: var(--white);
  font-size: 16px;
  font-weight: 500;
}

.social-links {
  display: flex;
  gap: 12px;
  margin-top: 40px;
  position: relative;
}

.social-links a {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.15);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
  backdrop-filter: blur(10px);
}

.social-links a:hover {
  background: var(--white);
  color: var(--primary);
  transform: translateY(-4px);
}

.contact-form {
  background: var(--white);
  padding: 50px 40px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

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

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

.form-group label {
  display: block;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--dark);
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 20px;
  border: 2px solid var(--gray-light);
  border-radius: 12px;
  font-family: inherit;
  font-size: 15px;
  color: var(--dark);
  transition: var(--transition);
  background: var(--white);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  box-shadow: 0 0 0 4px rgba(255, 107, 53, 0.1);
}

.form-group textarea {
  min-height: 140px;
  resize: vertical;
}

.contact-form button {
  width: 100%;
  justify-content: center;
}

/* ============================================
   APPOINTMENT PAGE
   ============================================ */
.appointment-wrapper {
  padding: 130px 0 100px;
  background: var(--gradient-soft);
  min-height: 100vh;
}

.appointment-container {
  max-width: 1100px;
  margin: 0 auto;
  background: var(--white);
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  display: grid;
  grid-template-columns: 1fr 1.2fr;
}

.appointment-sidebar {
  background: var(--gradient);
  padding: 60px 40px;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.appointment-sidebar::before {
  content: '';
  position: absolute;
  bottom: -50px;
  right: -50px;
  width: 200px;
  height: 200px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 50%;
}

.appointment-sidebar h2 {
  color: var(--white);
  font-size: 32px;
  margin-bottom: 16px;
  position: relative;
}

.appointment-sidebar p {
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 40px;
  position: relative;
}

.appointment-steps {
  position: relative;
}

.step-item {
  display: flex;
  gap: 16px;
  margin-bottom: 24px;
  align-items: flex-start;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  flex-shrink: 0;
  backdrop-filter: blur(10px);
  border: 2px solid rgba(255, 255, 255, 0.3);
}

.step-item h4 {
  color: var(--white);
  font-size: 16px;
  font-family: 'Poppins', sans-serif;
  margin-bottom: 4px;
}

.step-item p {
  font-size: 13px;
  opacity: 0.9;
  margin-bottom: 0;
}

.appointment-form {
  padding: 60px 40px;
}

.appointment-form h3 {
  font-size: 26px;
  margin-bottom: 8px;
}

.appointment-form > p {
  color: var(--gray);
  margin-bottom: 32px;
}

/* ============================================
   PAGE HEADER (Inner Pages)
   ============================================ */
.page-header {
  padding: 160px 0 80px;
  background: var(--gradient-soft);
  position: relative;
  overflow: hidden;
  text-align: center;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: var(--gradient);
  border-radius: 50%;
  opacity: 0.15;
  filter: blur(60px);
}

.page-header::after {
  content: '';
  position: absolute;
  bottom: -100px;
  left: -100px;
  width: 300px;
  height: 300px;
  background: var(--accent);
  border-radius: 50%;
  opacity: 0.12;
  filter: blur(80px);
}

.page-header h1 {
  font-size: clamp(36px, 5vw, 56px);
  margin-bottom: 16px;
  position: relative;
  z-index: 2;
}

.breadcrumb {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  color: var(--gray);
  font-size: 14px;
  position: relative;
  z-index: 2;
}

.breadcrumb a {
  color: var(--primary);
  font-weight: 500;
}

.breadcrumb a:hover {
  text-decoration: underline;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 80px 0 0;
  position: relative;
  overflow: hidden;
}

.footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
}

.footer-brand .logo-text,
.footer-brand .logo {
  color: var(--white);
}

.footer-brand p {
  margin: 24px 0;
  font-size: 15px;
  line-height: 1.7;
}

.footer h4 {
  color: var(--white);
  font-size: 18px;
  margin-bottom: 24px;
  font-family: 'Poppins', sans-serif;
  position: relative;
  padding-bottom: 12px;
}

.footer h4::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 40px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px;
}

.footer-links li {
  margin-bottom: 12px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  font-size: 14px;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.footer-links a::before {
  content: '→';
  color: var(--primary);
  transition: transform 0.3s ease;
}

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

.footer-contact-item {
  display: flex;
  gap: 12px;
  margin-bottom: 18px;
  font-size: 14px;
}

.footer-contact-item i {
  color: var(--primary);
  flex-shrink: 0;
  margin-top: 4px;
}

.newsletter {
  display: flex;
  margin-top: 20px;
}

.newsletter input {
  flex: 1;
  padding: 12px 18px;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  border-radius: 100px 0 0 100px;
  font-family: inherit;
  font-size: 14px;
}

.newsletter input::placeholder {
  color: rgba(255, 255, 255, 0.5);
}

.newsletter input:focus {
  outline: none;
  background: rgba(255, 255, 255, 0.15);
}

.newsletter button {
  padding: 12px 24px;
  border: none;
  background: var(--gradient);
  color: var(--white);
  border-radius: 0 100px 100px 0;
  cursor: pointer;
  font-family: inherit;
  font-weight: 600;
}

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

.footer-bottom-links {
  display: flex;
  gap: 24px;
}

.footer-bottom-links a:hover {
  color: var(--primary);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 60px;
  height: 60px;
  background: #25D366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  z-index: 90;
  box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4);
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

@keyframes pulse-whatsapp {
  0% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0.5); }
  70% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 20px rgba(37, 211, 102, 0); }
  100% { box-shadow: 0 10px 30px rgba(37, 211, 102, 0.4), 0 0 0 0 rgba(37, 211, 102, 0); }
}

.whatsapp-float:hover {
  transform: scale(1.1) rotate(10deg);
}

.back-to-top {
  position: fixed;
  bottom: 100px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  z-index: 90;
  box-shadow: var(--shadow);
  transition: var(--transition);
  opacity: 0;
  visibility: hidden;
  border: none;
  cursor: pointer;
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
}

.back-to-top:hover {
  transform: translateY(-4px);
}

/* ============================================
   ANIMATIONS ON SCROLL
   ============================================ */
.animate-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.animate-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   PREMIUM POLISH — DECORATIONS & UPGRADES
   ============================================ */

/* Section decorative blobs */
.section {
  position: relative;
  overflow: hidden;
}

.section-deco {
  position: absolute;
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.15;
  pointer-events: none;
  z-index: 0;
}

.section-deco.deco-1 {
  width: 350px;
  height: 350px;
  background: var(--gradient);
  top: -100px;
  left: -100px;
}

.section-deco.deco-2 {
  width: 300px;
  height: 300px;
  background: var(--accent);
  bottom: -100px;
  right: -80px;
}

.section > .container { position: relative; z-index: 2; }

/* SVG wave separators */
.wave-separator {
  position: absolute;
  left: 0;
  right: 0;
  width: 100%;
  height: 60px;
  z-index: 3;
  pointer-events: none;
}

.wave-separator.top { top: -1px; }
.wave-separator.bottom { bottom: -1px; transform: rotate(180deg); }

.wave-separator svg {
  width: 100%;
  height: 100%;
  display: block;
}

/* Enhanced hero */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  color: var(--primary);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
  z-index: 3;
  animation: floatUpDown 2.5s ease-in-out infinite;
}

.hero-scroll-indicator .mouse {
  width: 26px;
  height: 42px;
  border: 2px solid var(--primary);
  border-radius: 14px;
  position: relative;
}

.hero-scroll-indicator .mouse::after {
  content: '';
  position: absolute;
  top: 8px;
  left: 50%;
  transform: translateX(-50%);
  width: 3px;
  height: 8px;
  background: var(--primary);
  border-radius: 3px;
  animation: scrollDot 1.8s ease-in-out infinite;
}

@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  100% { top: 22px; opacity: 0; }
}

@keyframes floatUpDown {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-8px); }
}

/* Trust badges strip */
.trust-strip {
  padding: 40px 0;
  background: var(--white);
  border-top: 1px solid rgba(255, 107, 53, 0.08);
  border-bottom: 1px solid rgba(255, 107, 53, 0.08);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  align-items: center;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 12px;
  border-radius: 12px;
  transition: var(--transition);
}

.trust-item:hover {
  background: var(--gradient-soft);
  transform: translateY(-3px);
}

.trust-icon {
  width: 48px;
  height: 48px;
  background: var(--gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.25);
}

.trust-item h5 {
  font-family: 'Poppins', sans-serif;
  font-size: 15px;
  margin-bottom: 2px;
}

.trust-item p {
  font-size: 12px;
  color: var(--gray);
}

/* Service card upgrades */
.service-card {
  border: 1px solid transparent;
}

.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  padding: 2px;
  background: linear-gradient(135deg, transparent, rgba(255, 107, 53, 0));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
}

.service-card:hover::before {
  opacity: 1;
  background: linear-gradient(135deg, var(--primary), var(--accent));
}

.service-icon-float {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 48px;
  height: 48px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--primary);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 2;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
  backdrop-filter: blur(10px);
}

.service-features {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 20px;
}

.service-features span {
  padding: 4px 12px;
  background: var(--gradient-soft);
  color: var(--primary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.3px;
}

/* Doctor rating */
.doctor-rating {
  display: flex;
  align-items: center;
  gap: 6px;
  margin-bottom: 12px;
  font-size: 13px;
}

.doctor-rating .stars {
  color: var(--accent);
  letter-spacing: 1px;
}

.doctor-rating span {
  color: var(--gray);
  font-size: 12px;
}

/* Enhanced buttons */
.btn {
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.btn-primary::before {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: width 0.6s ease, height 0.6s ease;
  z-index: -1;
}

.btn-primary:hover::before {
  width: 400px;
  height: 400px;
}

/* Numbered badge */
.numbered-badge {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--primary);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  box-shadow: var(--shadow);
  z-index: 2;
  border: 2px solid var(--primary);
}

/* Timeline / Process */
.process-timeline {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 30px;
  position: relative;
  margin-top: 20px;
}

.process-timeline::before {
  content: '';
  position: absolute;
  top: 42px;
  left: 10%;
  right: 10%;
  height: 3px;
  background: linear-gradient(90deg, var(--primary), var(--accent));
  opacity: 0.3;
  border-radius: 3px;
  z-index: 0;
}

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

.process-step-icon {
  width: 84px;
  height: 84px;
  margin: 0 auto 20px;
  background: var(--white);
  border: 3px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--primary);
  font-size: 28px;
  position: relative;
  transition: var(--transition);
}

.process-step:hover .process-step-icon {
  background: var(--gradient);
  color: var(--white);
  border-color: transparent;
  transform: scale(1.1);
  box-shadow: 0 15px 35px rgba(255, 107, 53, 0.4);
}

.process-step-num {
  position: absolute;
  top: -8px;
  right: -8px;
  width: 28px;
  height: 28px;
  background: var(--gradient);
  color: var(--white);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  box-shadow: 0 4px 12px rgba(255, 107, 53, 0.3);
}

.process-step h4 {
  font-size: 16px;
  margin-bottom: 8px;
  font-family: 'Poppins', sans-serif;
}

.process-step p {
  font-size: 13px;
  color: var(--gray);
}

/* Marquee / logo strip */
.marquee-wrap {
  overflow: hidden;
  position: relative;
  padding: 20px 0;
  mask-image: linear-gradient(90deg, transparent, black 10%, black 90%, transparent);
}

.marquee {
  display: flex;
  gap: 60px;
  animation: marquee 30s linear infinite;
  width: max-content;
}

.marquee-item {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gray);
  font-weight: 600;
  font-size: 15px;
  white-space: nowrap;
}

.marquee-item i {
  color: var(--primary);
  font-size: 20px;
}

@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* Stat card enhanced */
.stat-item h3 {
  position: relative;
  display: inline-block;
}

.stat-item h3::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 0;
  right: 0;
  height: 8px;
  background: rgba(255, 182, 39, 0.3);
  z-index: -1;
  border-radius: 4px;
}

/* Blog card upgrade */
.blog-card {
  position: relative;
}

.blog-card::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--primary), var(--accent));
  opacity: 0;
  transition: opacity 0.4s ease;
  pointer-events: none;
  z-index: -1;
  filter: blur(20px);
  transform: translateY(15px);
}

.blog-card:hover::after {
  opacity: 0.15;
}

.reading-time {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 3px 10px;
  background: var(--gradient-soft);
  color: var(--primary);
  border-radius: 100px;
  font-size: 11px;
  font-weight: 600;
}

/* Feature grid enhancement */
.feature-card {
  position: relative;
}

.feature-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 30px;
  height: 3px;
  background: var(--gradient);
  border-radius: 3px 3px 0 0;
  opacity: 0;
  transition: opacity 0.4s ease, width 0.4s ease;
}

.feature-card:hover::after {
  opacity: 1;
  width: 60px;
}

/* Gallery item badge */
.gallery-item-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: rgba(255, 255, 255, 0.95);
  color: var(--dark);
  padding: 4px 10px;
  border-radius: 100px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  z-index: 3;
  backdrop-filter: blur(10px);
}

/* Testimonial upgrade */
.testimonial-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: var(--gradient);
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  opacity: 0;
  transition: opacity 0.4s ease;
}

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

.verified-badge {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  font-size: 11px;
  color: #22c55e;
  font-weight: 600;
  margin-top: 4px;
}

/* Price tag */
.price-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: var(--gradient);
  color: var(--white);
  padding: 10px 16px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 15px;
  box-shadow: 0 8px 20px rgba(255, 107, 53, 0.35);
  z-index: 2;
}

.price-tag small {
  display: block;
  font-size: 10px;
  font-weight: 500;
  opacity: 0.9;
  margin-bottom: -2px;
}

/* Card corner accent */
.corner-accent {
  position: absolute;
  top: 0;
  right: 0;
  width: 60px;
  height: 60px;
  overflow: hidden;
  pointer-events: none;
}

.corner-accent::before {
  content: '';
  position: absolute;
  top: -30px;
  right: -30px;
  width: 60px;
  height: 60px;
  background: var(--gradient);
  transform: rotate(45deg);
}

/* Pulse ring effect */
.pulse-ring {
  position: relative;
}

.pulse-ring::before,
.pulse-ring::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  border: 2px solid var(--primary);
  opacity: 0.4;
  animation: pulseRing 2.5s cubic-bezier(0.215, 0.61, 0.355, 1) infinite;
}

.pulse-ring::after { animation-delay: 1.25s; }

@keyframes pulseRing {
  0% { transform: scale(1); opacity: 0.4; }
  100% { transform: scale(1.8); opacity: 0; }
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .nav-menu a { padding: 10px 12px; font-size: 13.5px; }
  .logo-text small { display: none; }
}

@media (max-width: 1100px) {
  .trust-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
  .process-timeline { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .process-timeline::before { display: none; }
  .hero-scroll-indicator { display: none; }
  .hero-grid { grid-template-columns: 1fr; text-align: center; gap: 50px; }
  .hero-visual { max-width: 480px; margin: 0 auto; height: 500px; }
  .hero-actions, .hero-stats { justify-content: center; }
  .hero-desc { margin-left: auto; margin-right: auto; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid, .testimonials-slider, .blog-grid { grid-template-columns: repeat(2, 1fr); }
  .ba-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); }
  .about-grid { grid-template-columns: 1fr; gap: 60px; }
  .about-image { height: 500px; }
  .doctors-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .appointment-container { grid-template-columns: 1fr; }
}

@media (max-width: 992px) {
  .nav {
    padding: 12px 0;
  }
  .nav-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 88%;
    max-width: 380px;
    height: 100vh;
    height: 100dvh;
    background:
      radial-gradient(circle at top right, rgba(255, 107, 53, 0.08), transparent 40%),
      radial-gradient(circle at bottom left, rgba(255, 182, 39, 0.06), transparent 40%),
      var(--white);
    flex-direction: column;
    padding: 88px 0 0;
    gap: 0;
    box-shadow: -20px 0 60px rgba(26, 26, 46, 0.15);
    transition: right 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    align-items: stretch;
    overflow-y: auto;
    overflow-x: hidden;
    margin: 0;
    z-index: 99;
    border-radius: 24px 0 0 24px;
  }
  .nav-menu.active { right: 0; }
  .nav-menu li { width: 100%; padding: 0 16px; }
  .nav-menu a {
    padding: 14px 18px;
    font-size: 15px;
    border-radius: 14px;
    justify-content: flex-start;
    width: 100%;
    gap: 14px;
    color: var(--dark-2);
    position: relative;
    font-weight: 500;
  }
  .nav-menu a .nav-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: var(--gradient-soft);
    color: var(--primary);
    font-size: 15px;
    flex-shrink: 0;
    transition: var(--transition);
  }
  .nav-menu a:hover .nav-icon,
  .nav-menu a.active .nav-icon {
    background: var(--gradient);
    color: var(--white);
    transform: rotate(-8deg);
  }
  .nav-menu > li > a.active {
    background: linear-gradient(90deg, rgba(255, 107, 53, 0.1), transparent);
    color: var(--primary);
    font-weight: 600;
  }
  .nav-menu > li > a.active::before {
    content: '';
    position: absolute;
    left: -16px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 60%;
    background: var(--gradient);
    border-radius: 0 4px 4px 0;
  }
  .nav-menu > li > a.active::after { display: none; }
  .nav-menu li:has(.nav-dropdown) > a::after {
    content: '\f107';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    font-size: 11px;
    margin-left: auto;
    color: var(--gray);
    transition: transform 0.3s ease;
  }
  .nav-menu li:has(.nav-dropdown).open > a::after {
    transform: rotate(180deg);
    color: var(--primary);
  }
  /* Mobilde inline chevron'u gizle — sadece CSS ::after görünsün */
  .nav-menu a > i.fa-chevron-down {
    display: none;
  }
  .nav-dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    padding: 0;
    margin: 0;
    background: transparent;
    border-radius: 0;
    max-height: 0;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    min-width: auto;
    display: flex;
    flex-direction: column;
    gap: 2px;
    transition: max-height 0.35s ease, opacity 0.3s ease, padding 0.35s ease;
  }
  .nav-menu li.open .nav-dropdown {
    max-height: 300px;
    opacity: 1;
    visibility: visible;
    padding: 6px 0 6px 14px;
    margin: 4px 0 8px 50px;
    border-left: 2px solid rgba(255, 107, 53, 0.25);
  }
  .nav-dropdown a {
    padding: 10px 14px !important;
    font-size: 13.5px !important;
    color: var(--gray) !important;
    font-weight: 500 !important;
    border-radius: 10px !important;
    display: flex !important;
    align-items: center;
    gap: 12px !important;
    justify-content: flex-start !important;
    width: 100%;
    background: transparent !important;
    position: relative;
    text-transform: none;
  }
  .nav-dropdown a::before {
    content: '';
    display: block;
    position: static;
    width: 6px;
    height: 6px;
    top: auto;
    left: auto;
    border-radius: 50%;
    background: currentColor;
    opacity: 0.4;
    transform: none;
    transition: transform 0.25s ease, opacity 0.25s ease, background 0.25s ease;
    flex-shrink: 0;
    margin: 0;
  }
  .nav-dropdown a::after { display: none !important; }
  .nav-dropdown a:hover {
    color: var(--primary) !important;
    background: var(--gradient-soft) !important;
  }
  .nav-dropdown a:hover::before {
    opacity: 1;
    transform: scale(1.4);
  }
  .nav-dropdown a.active {
    color: var(--primary) !important;
    font-weight: 600 !important;
    background: var(--gradient-soft) !important;
  }
  .nav-dropdown a.active::before {
    opacity: 1;
    background: var(--primary);
    transform: scale(1.4);
  }

  .menu-toggle { display: flex; }
  .logo-text small { display: block; }

  /* Mobile sidebar extras */
  .nav-menu .mobile-only { display: block; }
  .nav-menu .nav-icon { display: inline-flex; }
  .nav-menu .mobile-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gray-light), transparent);
    margin: 20px 16px;
    padding: 0;
  }
  .nav-menu .mobile-section-title {
    padding: 0 24px 8px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--gray);
  }
  .nav-menu .mobile-cta {
    padding: 8px 16px 4px;
  }
  .nav-menu .mobile-cta .btn {
    width: 100%;
    justify-content: center;
    padding: 15px 20px;
    font-size: 14px;
    border-radius: 14px;
  }
  .nav-menu .mobile-contact {
    padding: 0 16px;
  }
  .nav-menu .mobile-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 14px;
    color: var(--dark-2);
    font-size: 13px;
    text-decoration: none;
    border-radius: 10px;
    transition: var(--transition);
  }
  .nav-menu .mobile-contact-item:hover {
    background: var(--gradient-soft);
    color: var(--primary);
  }
  .nav-menu .mobile-contact-item i {
    color: var(--primary);
    width: 20px;
    text-align: center;
    margin-top: 2px;
    flex-shrink: 0;
  }
  .nav-menu .mobile-contact-item strong {
    display: block;
    font-weight: 600;
    color: var(--dark);
    font-size: 14px;
    margin-bottom: 2px;
  }
  .nav-menu .mobile-social {
    display: flex;
    justify-content: center;
    gap: 10px;
    padding: 20px 16px 30px;
  }
  .nav-menu .mobile-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--gradient-soft);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    transition: var(--transition);
    font-size: 15px;
  }
  .nav-menu .mobile-social a:hover {
    background: var(--gradient);
    color: var(--white);
    transform: translateY(-4px);
  }

  /* Sidebar Header */
  .nav-menu .mobile-menu-brand {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 0 20px 20px;
    margin: 0 0 8px;
    border-bottom: 1px solid rgba(255, 107, 53, 0.1);
  }
  .nav-menu .mobile-menu-brand .brand-icon {
    width: 44px;
    height: 44px;
    background: var(--gradient);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.3);
  }
  .nav-menu .mobile-menu-brand h5 {
    font-family: 'Playfair Display', serif;
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 2px;
  }
  .nav-menu .mobile-menu-brand small {
    font-size: 11px;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    font-weight: 500;
  }


  /* Hero — tablet */
  .hero { padding: 110px 0 50px; }
  .hero-visual { height: 460px; max-width: 440px; }
  .floating-card.card-3 { display: none; }
  .floating-card.card-1 { left: -20px; }
  .floating-card.card-2 { right: -20px; }
}

@media (max-width: 768px) {
  .section { padding: 60px 0; }
  .hero { padding: 100px 0 40px; }
  .hero-title { font-size: clamp(32px, 8vw, 44px); }
  .hero-desc { font-size: 15px; }
  .hero-visual {
    height: auto;
    aspect-ratio: 4 / 5;
    max-width: 380px;
    max-height: 480px;
  }
  .hero-image { position: relative; height: 100%; }
  .floating-card { padding: 12px 14px !important; }
  .floating-card.card-1 { top: 20px; left: -10px; }
  .floating-card.card-2 { bottom: 20px; right: -10px; }
  .floating-card .card-icon { width: 40px; height: 40px; }
  .floating-card h4 { font-size: 13px; }
  .floating-card p { font-size: 11px; }
  .hero-stats { grid-template-columns: repeat(3, 1fr); gap: 12px; padding-top: 30px; }
  .stat-item h3 { font-size: 26px; }
  .stat-item p { font-size: 11px; }
  .features-grid, .services-grid, .testimonials-slider, .blog-grid { grid-template-columns: 1fr; }
  .ba-grid { grid-template-columns: 1fr; gap: 20px; }
  .ba-slider { height: 260px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .gallery-item:nth-child(3n+1) { aspect-ratio: 1; }
  .contact-grid { grid-template-columns: 1fr; gap: 30px; }
  .cta-content { grid-template-columns: 1fr; text-align: center; }
  .cta-actions { justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; padding-bottom: 40px; }
  .doctor-card { grid-template-columns: 1fr; }
  .doctor-image { min-height: 300px; }
  .form-row { grid-template-columns: 1fr; }
  .contact-info, .contact-form, .appointment-sidebar, .appointment-form { padding: 40px 24px; }
  .about-experience { right: 0; bottom: -20px; padding: 18px 24px; }
  .about-experience h3 { font-size: 32px; }
  .about-image { height: 420px; }
  .about-features { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .tabs-nav {
    max-width: 100%;
    padding: 6px;
    gap: 4px;
  }
  .tab-btn { padding: 12px 16px; font-size: 12.5px; }
  .nav-cta .btn { display: none; }
  .logo-text span { font-size: 15px; }
  .logo-icon { width: 36px; height: 36px; }
  .section-header { margin-bottom: 40px; }
  .service-image, .blog-image { height: 200px; }
  .doctor-info { padding: 30px 24px; }
  .page-header { padding: 130px 0 60px; }
  .gallery-filter { gap: 8px; }
  .filter-btn { padding: 8px 16px; font-size: 12.5px; }
}

@media (max-width: 560px) {
  .hero-visual { max-width: 320px; }
  .floating-card.card-1 { top: 15px; left: 0; }
  .floating-card.card-2 { bottom: 15px; right: 0; }
  .about-experience { padding: 14px 20px; }
  .about-experience h3 { font-size: 28px; }
  .about-image { height: 380px; }
  .ba-slider { height: 240px; }
  .service-content, .blog-content { padding: 24px 20px; }
  .contact-info h3 { font-size: 24px; }
  .appointment-sidebar h2 { font-size: 26px; }
  .appointment-form h3 { font-size: 22px; }
  .cta-strip { padding: 60px 0; }
  .footer { padding: 60px 0 0; }
  .nav-menu {
    width: 90%;
    max-width: none;
    padding: 80px 18px 24px;
  }
  .nav-phone-btn { width: 38px; height: 38px; font-size: 13px; }
  .logo { gap: 8px; }
}

@media (max-width: 560px) {
  .trust-grid { grid-template-columns: 1fr; gap: 12px; }
  .process-timeline { grid-template-columns: 1fr; gap: 30px; }
  .marquee { animation-duration: 20s; gap: 40px; }
  .marquee-item { font-size: 13px; }
}

@media (max-width: 480px) {
  .container { padding: 0 16px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .gallery-item { aspect-ratio: 4 / 3; }
  .gallery-item:nth-child(3n+1) { aspect-ratio: 4 / 3; }
  .logo-text small { display: none; }
  .whatsapp-float { width: 52px; height: 52px; font-size: 24px; bottom: 20px; right: 16px; }
  .back-to-top { bottom: 82px; right: 16px; width: 40px; height: 40px; font-size: 15px; }
  .hero-badge { font-size: 12px; padding: 6px 6px 6px 16px; }
  .section-tag { font-size: 12px; padding: 6px 16px; }
  .hero-stats { gap: 8px; }
  .stat-item h3 { font-size: 22px; }
  .btn { padding: 14px 24px; font-size: 14px; }
  .ba-slider-handle::before { width: 38px; height: 38px; font-size: 16px; }
  .doctor-info { padding: 26px 20px; }
  .doctor-info h3 { font-size: 22px; }
  .doctor-meta { flex-direction: column; gap: 8px; }
  .footer-grid { gap: 30px; }
  .newsletter input, .newsletter button { font-size: 13px; padding: 10px 14px; }
  .cta-content h2 { font-size: 24px; }
  .filter-btn { padding: 8px 14px; font-size: 12px; }
}

@media (max-width: 360px) {
  .hero-title { font-size: 30px; }
  .logo-text span { font-size: 14px; }
  .nav-cta { gap: 8px; }
}
