/* ========================================
   Op. Dr. Vedat Ali Canoğlu - Sünnet Kliniği
   Custom Stylesheet - Full Responsive
   ======================================== */

/* --- CSS Variables --- */
:root {
  --primary: #1B2A4A;
  --primary-light: #2D4A7A;
  --primary-dark: #0F1A30;
  --secondary: #0D9488;
  --secondary-light: #14B8A6;
  --secondary-dark: #0A756B;
  --accent-green: #10B981;
  --accent-gold: #F59E0B;
  --bg-light: #F0FDFA;
  --bg-gray: #F8F9FA;
  --bg-blue-light: #EFF6FF;
  --text-dark: #1E293B;
  --text-muted: #64748B;
  --text-light: #94A3B8;
  --white: #FFFFFF;
  --shadow-sm: 0 2px 6px rgba(0,0,0,0.06);
  --shadow-md: 0 4px 16px rgba(0,0,0,0.1);
  --shadow-lg: 0 12px 36px rgba(0,0,0,0.14);
  --shadow-xl: 0 24px 56px rgba(0,0,0,0.18);
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 16px;
  --radius-xl: 24px;
  --transition: all 0.3s ease;
}

/* --- CRITICAL: Overflow Control --- */
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
  overflow-x: hidden;
}

body {
  font-family: 'Inter', sans-serif;
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.7;
  overflow-x: hidden;
  width: 100%;
  max-width: 100vw;
}

*, *::before, *::after {
  box-sizing: border-box;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  font-weight: 700;
  line-height: 1.3;
  letter-spacing: -0.02em;
  word-wrap: break-word;
  overflow-wrap: break-word;
}

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

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

section {
  padding: 80px 0;
  overflow: hidden;
  position: relative;
}

.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding-left: 15px;
  padding-right: 15px;
}

/* --- Section Title --- */
.section-title {
  font-size: 2.1rem;
  color: var(--primary);
  margin-bottom: 0.5rem;
  position: relative;
}

.section-title-lg {
  font-size: 2.4rem;
}

.text-center .section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--secondary);
  margin: 12px auto 0;
  border-radius: 2px;
}

.section-subtitle {
  color: var(--text-muted);
  font-size: 1.02rem;
  max-width: 600px;
  margin: 0 auto 2.5rem;
}

.section-badge {
  display: inline-block;
  background: var(--bg-light);
  color: var(--secondary);
  padding: 6px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
  border: 1px solid rgba(13,148,136,0.15);
}

.section-badge-lg {
  font-size: 1.05rem;
  padding: 10px 24px;
  font-weight: 700;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border: none;
}

/* ==========================================
   TOP BAR
   ========================================== */
.top-bar {
  background: var(--primary);
  color: rgba(255,255,255,0.85);
  font-size: 0.82rem;
  padding: 7px 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  overflow: hidden;
  white-space: nowrap;
}

.top-bar a {
  color: rgba(255,255,255,0.85);
}

.top-bar a:hover {
  color: var(--secondary-light);
}

.top-bar i {
  color: var(--secondary-light);
  margin-right: 4px;
}

/* ==========================================
   NAVBAR
   ========================================== */
.navbar {
  background: var(--white);
  padding: 10px 0;
  transition: var(--transition);
  z-index: 1050;
  box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

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

.navbar-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.brand-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.3rem;
  flex-shrink: 0;
}

.brand-text .brand-title {
  font-family: 'Poppins', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: var(--primary);
  line-height: 1.2;
  white-space: nowrap;
}

.brand-text .brand-subtitle {
  font-size: 0.72rem;
  color: var(--secondary);
  font-weight: 500;
}

.navbar-nav .nav-link {
  color: var(--text-dark);
  font-weight: 500;
  font-size: 0.88rem;
  padding: 8px 12px !important;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  white-space: nowrap;
}

.navbar-nav .nav-link:hover,
.navbar-nav .nav-link.active {
  color: var(--secondary);
  background: var(--bg-light);
}

.btn-randevu {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.88rem;
  border: none;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: var(--transition);
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
  white-space: nowrap;
  flex-shrink: 0;
}

.btn-randevu:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.4);
  background: linear-gradient(135deg, var(--secondary-light), var(--secondary));
}

/* ==========================================
   HERO SECTION
   ========================================== */
.hero-section {
  background: linear-gradient(135deg, #E6FFFA 0%, #CCFBF1 25%, #E0F2FE 60%, #EFF6FF 100%);
  padding: 50px 0 0;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  padding: 30px 0;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(13,148,136,0.1);
  color: var(--secondary);
  padding: 8px 18px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1.2rem;
  border: 1.5px solid rgba(13,148,136,0.25);
}

.hero-badge i {
  font-size: 0.95rem;
}

.hero-title {
  font-size: 2.8rem;
  font-weight: 800;
  color: var(--primary);
  line-height: 1.15;
  margin-bottom: 1rem;
}

.hero-title span {
  color: var(--secondary);
}

.hero-subtitle {
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  background: var(--primary);
  color: var(--white);
  padding: 10px 18px;
  border-radius: var(--radius-sm);
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 1.2rem;
  line-height: 1.5;
  max-width: 100%;
}

.hero-heading-secondary {
  font-size: 1.2rem;
  color: var(--secondary-dark);
  font-weight: 700;
  margin-bottom: 0.6rem;
}

.hero-desc {
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 520px;
  margin-bottom: 1.8rem;
  line-height: 1.8;
}

.hero-buttons {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 2rem;
}

.btn-hero-primary {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: none;
  box-shadow: 0 4px 15px rgba(13,148,136,0.35);
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-hero-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(13,148,136,0.45);
  color: var(--white);
}

.btn-hero-secondary {
  background: var(--white);
  color: var(--primary);
  padding: 13px 28px;
  border-radius: 50px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 2px solid var(--primary);
  transition: var(--transition);
  font-size: 0.95rem;
}

.btn-hero-secondary:hover {
  background: var(--primary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(27,42,74,0.25);
}

.hero-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px 20px;
}

.hero-feature-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  white-space: nowrap;
}

.hero-feature-item i {
  width: 32px;
  height: 32px;
  background: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 0.85rem;
  box-shadow: var(--shadow-sm);
  flex-shrink: 0;
}

/* Hero Image */
.hero-image-wrapper {
  position: relative;
  z-index: 2;
  text-align: center;
  padding: 20px 0;
}

.hero-doctor-img {
  max-height: 480px;
  object-fit: cover;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-xl);
  margin: 0 auto;
  border: 4px solid var(--white);
  aspect-ratio: auto;
}

/* Hero Trust Strip (under image) */
.hero-trust-strip {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 16px;
  flex-wrap: wrap;
}

.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  background: var(--white);
  padding: 8px 14px;
  border-radius: 50px;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(13,148,136,0.12);
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary);
  transition: all 0.3s ease;
  white-space: nowrap;
}

.hero-trust-item i {
  color: var(--secondary);
  font-size: 0.95rem;
}

.hero-trust-item:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
}

.hero-trust-item:hover i {
  color: var(--white);
}

/* ==========================================
   STATS SECTION
   ========================================== */
.stats-section {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  padding: 35px 0;
  position: relative;
  overflow: hidden;
}

.stat-item {
  text-align: center;
  padding: 18px 10px;
  position: relative;
  z-index: 1;
}

.stats-section .row > div:not(:last-child) .stat-item::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  height: 60%;
  width: 1px;
  background: rgba(255,255,255,0.2);
}

.stat-icon {
  width: 50px;
  height: 50px;
  background: rgba(255,255,255,0.2);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  font-size: 1.3rem;
  color: var(--white);
}

.stat-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: 4px;
}

.stat-label {
  color: rgba(255,255,255,0.8);
  font-size: 0.84rem;
  font-weight: 500;
}

/* ==========================================
   WHY US SECTION
   ========================================== */
.why-us-section {
  background: var(--white);
}

.why-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 30px 22px;
  text-align: center;
  transition: var(--transition);
  border: 1px solid #E2E8F0;
  border-top: 3px solid var(--secondary);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.why-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--secondary);
}

.why-card-icon {
  width: 64px;
  height: 64px;
  background: var(--bg-light);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 1.6rem;
  color: var(--secondary);
  transition: var(--transition);
  border: 1.5px solid rgba(13,148,136,0.15);
}

.why-card:hover .why-card-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.08);
}

.why-card h5 {
  font-size: 1.05rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.why-card p {
  color: var(--text-muted);
  font-size: 0.88rem;
  margin-bottom: 0;
  line-height: 1.7;
}

/* ==========================================
   SERVICES SECTION
   ========================================== */
.services-section {
  background: var(--bg-gray);
}

.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: var(--transition);
  border: 1px solid #E2E8F0;
  height: 100%;
  display: flex;
  flex-direction: column;
}

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

.service-icon-header {
  background: linear-gradient(135deg, var(--bg-light), #CCFBF1);
  padding: 35px 28px;
  text-align: center;
  position: relative;
}

.service-icon-circle {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  font-size: 2rem;
  color: var(--white);
  box-shadow: 0 6px 20px rgba(13,148,136,0.3);
}

.service-badge-tag {
  position: absolute;
  top: 14px;
  right: 14px;
  background: var(--secondary);
  color: var(--white);
  padding: 4px 12px;
  border-radius: 50px;
  font-size: 0.75rem;
  font-weight: 600;
}

.service-body {
  padding: 28px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
  overflow: hidden;
}

.service-card {
  overflow: hidden;
}

.service-body h4 {
  font-size: 1.25rem;
  color: var(--primary);
  margin-bottom: 10px;
}

.service-tagline {
  color: var(--secondary-dark);
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 16px;
  line-height: 1.6;
}

.service-features {
  list-style: none;
  padding: 0;
  margin-bottom: 18px;
}

.service-features li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  padding: 5px 0;
  font-size: 0.88rem;
  color: var(--text-dark);
}

.service-features li i {
  color: var(--secondary);
  font-size: 0.82rem;
  flex-shrink: 0;
  margin-top: 3px;
}

.btn-service {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--secondary);
  font-weight: 600;
  font-size: 0.9rem;
  padding: 8px 0;
  border: none;
  background: none;
  transition: var(--transition);
  margin-top: auto;
}

.btn-service:hover {
  color: var(--secondary-dark);
  gap: 12px;
}

/* ==========================================
   GALLERY SECTION (Kliniğimiz)
   ========================================== */
.gallery-section {
  background: var(--bg-light);
}

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

.gallery-item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  cursor: pointer;
  aspect-ratio: 1 / 1;
  box-shadow: var(--shadow-md);
  transition: box-shadow 0.3s ease;
}

.gallery-item:hover {
  box-shadow: var(--shadow-xl);
}

.gallery-item-wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1.05;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1), filter 0.4s ease;
  display: block;
}

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

.gallery-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 2;
}

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

.gallery-overlay-content {
  text-align: center;
  color: var(--white);
  transform: translateY(15px);
  transition: transform 0.4s ease;
}

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

.gallery-overlay-content i {
  font-size: 2rem;
  display: block;
  margin-bottom: 8px;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.3));
  animation: none;
}

.gallery-item:hover .gallery-overlay-content i {
  animation: gallery-icon-pop 0.5s ease forwards;
}

@keyframes gallery-icon-pop {
  0% { transform: scale(0.5) rotate(-15deg); opacity: 0; }
  60% { transform: scale(1.15) rotate(3deg); opacity: 1; }
  100% { transform: scale(1) rotate(0); opacity: 1; }
}

.gallery-overlay-content span {
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  text-shadow: 0 2px 8px rgba(0,0,0,0.4);
  background: rgba(13,148,136,0.85);
  padding: 4px 16px;
  border-radius: 50px;
  display: inline-block;
}

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  transition: border-color 0.3s ease;
  z-index: 3;
  pointer-events: none;
}

.gallery-item:hover::after {
  border-color: var(--secondary);
}

/* --- Gallery Lightbox Modal --- */
.gallery-lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.92);
  z-index: 99998;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.gallery-lightbox.active {
  opacity: 1;
  visibility: visible;
}

.lightbox-content {
  max-width: 90vw;
  max-height: 85vh;
  position: relative;
  text-align: center;
}

.lightbox-content img {
  max-width: 90vw;
  max-height: 80vh;
  object-fit: contain;
  border-radius: var(--radius-lg);
  box-shadow: 0 20px 60px rgba(0,0,0,0.5);
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery-lightbox.active .lightbox-content img {
  opacity: 1;
  transform: scale(1);
}

.lightbox-caption {
  color: var(--white);
  font-family: 'Poppins', sans-serif;
  font-weight: 600;
  font-size: 1.1rem;
  margin-top: 16px;
  letter-spacing: 0.5px;
}

.lightbox-counter {
  position: absolute;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.6);
  font-size: 0.88rem;
  font-weight: 500;
  background: rgba(0,0,0,0.4);
  padding: 4px 16px;
  border-radius: 50px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.2);
  color: var(--white);
  width: 48px;
  height: 48px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.2rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.lightbox-close:hover {
  background: rgba(255,255,255,0.2);
  transform: rotate(90deg) scale(1.1);
}

.lightbox-prev,
.lightbox-next {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.1);
  border: 2px solid rgba(255,255,255,0.15);
  color: var(--white);
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  cursor: pointer;
  z-index: 10;
  transition: all 0.3s ease;
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
  background: var(--secondary);
  border-color: var(--secondary);
  transform: translateY(-50%) scale(1.1);
}

/* ==========================================
   FAMILIES SECTION (Mutlu Aileler)
   ========================================== */
.families-section {
  background: var(--white);
  padding: 80px 0;
}

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

.family-card {
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: var(--transition);
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
}

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

.family-card img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  display: block;
}

.family-img-placeholder {
  aspect-ratio: 1 / 1;
  background: linear-gradient(135deg, var(--bg-light), #E0F2F1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--secondary);
}

.family-img-placeholder i {
  font-size: 2rem;
  opacity: 0.5;
}

.family-img-placeholder span {
  font-size: 0.82rem;
  font-weight: 500;
  opacity: 0.6;
}

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

.about-img-wrapper {
  position: relative;
  margin-bottom: 20px;
}

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

.about-experience-badge {
  position: absolute;
  bottom: -15px;
  right: 10px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  padding: 16px 20px;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-lg);
}

.about-experience-badge .exp-number {
  font-family: 'Poppins', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  line-height: 1;
}

.about-experience-badge .exp-text {
  font-size: 0.78rem;
  font-weight: 500;
  opacity: 0.9;
}

.about-content h3 {
  font-size: 1.7rem;
  color: var(--primary);
  margin-bottom: 0.8rem;
}

.about-subtitle {
  color: var(--secondary);
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-content .about-desc {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.8;
  margin-bottom: 1.2rem;
}

.about-quote {
  background: var(--bg-light);
  border-left: 4px solid var(--secondary);
  padding: 20px 24px;
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-style: italic;
  color: var(--primary);
  font-size: 0.95rem;
  margin-bottom: 1.2rem;
  position: relative;
}

.about-quote::before {
  content: '\201C';
  font-family: Georgia, serif;
  font-size: 3.5rem;
  color: rgba(13,148,136,0.15);
  position: absolute;
  top: -8px;
  left: 14px;
  line-height: 1;
}

/* About Collapse Detail */
.about-chevron {
  transition: transform 0.3s ease;
  font-size: 0.75rem;
}

.about-detail-btn[aria-expanded="true"] .about-chevron {
  transform: rotate(180deg);
}

.about-detail-content {
  border-top: 1px solid rgba(13,148,136,0.15);
  padding-top: 16px;
}

.about-signature {
  font-family: 'Georgia', serif;
  font-size: 1.3rem;
  color: var(--secondary);
  font-style: italic;
  padding-bottom: 10px;
  border-bottom: 2px solid rgba(13,148,136,0.2);
  display: inline-block;
}

/* ==========================================
   BIOGRAPHY SECTION
   ========================================== */
.biography-section {
  background: var(--bg-light);
}

.biography-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  box-shadow: var(--shadow-md);
  border: 1px solid #E2E8F0;
  border-top: 4px solid var(--secondary);
}

.biography-card p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.9;
  margin-bottom: 1.1rem;
}

.biography-card p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   PRICING SECTION
   ========================================== */
.pricing-section {
  background: var(--white);
}

.pricing-intro-card {
  background: var(--bg-light);
  border-radius: var(--radius-lg);
  padding: 36px;
  border: 1px solid rgba(13,148,136,0.15);
  border-left: 5px solid var(--secondary);
}

.pricing-intro-text {
  color: var(--text-dark);
  font-size: 0.98rem;
  line-height: 1.9;
  margin-bottom: 1.5rem;
}

.pricing-detail-toggle {
  text-align: center;
}

.btn-pricing-detail {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border: none;
  padding: 11px 26px;
  border-radius: 50px;
  font-weight: 600;
  font-size: 0.92rem;
  cursor: pointer;
  transition: var(--transition);
  display: inline-flex;
  align-items: center;
}

.btn-pricing-detail:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(13,148,136,0.35);
}

.btn-pricing-detail[aria-expanded="true"] .bi-chevron-down {
  transform: rotate(180deg);
}

.pricing-detail-content {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid rgba(13,148,136,0.15);
}

.pricing-detail-content p {
  color: var(--text-muted);
  font-size: 0.94rem;
  line-height: 1.9;
  margin-bottom: 1rem;
}

.pricing-detail-content p:last-child {
  margin-bottom: 0;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
  background: var(--bg-gray);
}

.process-step {
  text-align: center;
  padding: 16px 10px;
  position: relative;
}

.process-step-number {
  width: 56px;
  height: 56px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Poppins', sans-serif;
  font-size: 1.3rem;
  font-weight: 800;
  margin: 0 auto 14px;
  position: relative;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(13,148,136,0.3);
  outline: 3px solid rgba(13,148,136,0.15);
  outline-offset: 4px;
}

.process-step-connector {
  position: absolute;
  top: 44px;
  left: calc(50% + 36px);
  width: calc(100% - 72px);
  height: 2px;
  background: linear-gradient(90deg, var(--secondary), rgba(13,148,136,0.2));
  z-index: 1;
}

.process-step-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 10px;
  color: var(--secondary);
  font-size: 1.2rem;
}

.process-step h6 {
  font-size: 0.95rem;
  color: var(--primary);
  margin-bottom: 5px;
}

.process-step p {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-bottom: 0;
}

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

.faq-left-panel {
  position: sticky;
  top: 120px;
}

.faq-left-desc {
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 1.5rem;
  font-size: 0.95rem;
}

.faq-accordion .accordion-item {
  border: 1px solid #E2E8F0;
  border-radius: var(--radius-md) !important;
  margin-bottom: 10px;
  overflow: hidden;
  transition: var(--transition);
}

.faq-accordion .accordion-item:hover {
  border-color: var(--secondary);
}

.faq-accordion .accordion-button {
  font-weight: 600;
  color: var(--primary);
  font-size: 0.95rem;
  padding: 16px 20px;
  background: var(--white);
  box-shadow: none;
}

.faq-accordion .accordion-button:not(.collapsed) {
  background: var(--bg-light);
  color: var(--secondary);
  box-shadow: none;
}

.faq-accordion .accordion-button::after {
  background-image: none;
  content: '\F282';
  font-family: 'bootstrap-icons';
  font-size: 1rem;
  width: auto;
  height: auto;
  transition: var(--transition);
}

.faq-accordion .accordion-button:not(.collapsed)::after {
  content: '\F286';
  transform: none;
}

.faq-accordion .accordion-body {
  padding: 0 20px 18px;
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.8;
}

/* ==========================================
   CTA SECTION
   ========================================== */
.cta-section {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
  padding: 55px 0;
  overflow: hidden;
}

.cta-section h2 {
  color: var(--white);
  font-size: 1.8rem;
  margin-bottom: 0.5rem;
}

.cta-section .cta-desc {
  max-width: 520px;
  color: rgba(255,255,255,0.8);
  font-size: 1rem;
}

.btn-cta-phone {
  background: var(--white);
  color: var(--primary);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-cta-phone:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(255,255,255,0.2);
  color: var(--primary);
}

.btn-cta-whatsapp {
  background: var(--accent-green);
  color: var(--white);
  padding: 13px 26px;
  border-radius: 50px;
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: var(--transition);
  font-size: 1rem;
}

.btn-cta-whatsapp:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(16,185,129,0.4);
  color: var(--white);
  background: #059669;
}

/* ==========================================
   CONTACT SECTION
   ========================================== */
.contact-section {
  background: var(--bg-gray);
}

.contact-info-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
}

.contact-info-title {
  color: var(--primary);
  margin-bottom: 18px;
  font-size: 1.1rem;
}

.contact-info-title i {
  color: var(--secondary);
}

.contact-info-item {
  display: flex;
  gap: 14px;
  padding: 14px 0;
  border-bottom: 1px solid #F1F5F9;
  align-items: flex-start;
}

.contact-info-item > div:last-child {
  min-width: 0;
  flex: 1;
}

.contact-info-item:last-child {
  border-bottom: none;
}

.contact-info-icon {
  width: 44px;
  height: 44px;
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-info-item h6 {
  font-size: 0.84rem;
  color: var(--text-muted);
  font-weight: 500;
  margin-bottom: 3px;
}

.contact-info-item p {
  font-size: 0.92rem;
  color: var(--primary);
  font-weight: 600;
  margin-bottom: 0;
}

.contact-social-links {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 4px;
}

.contact-social-link {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--bg-light);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--secondary);
  font-size: 1rem;
  transition: var(--transition);
  border: 1px solid rgba(13,148,136,0.15);
  flex-shrink: 0;
}

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

.map-wrapper {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid #E2E8F0;
  width: 100%;
  height: 100%;
  min-height: 400px;
}

.map-wrapper iframe {
  width: 100%;
  height: 100%;
  min-height: 400px;
  border: none;
  display: block;
}

/* ==========================================
   FOOTER
   ========================================== */
.site-footer {
  background: var(--primary);
  color: rgba(255,255,255,0.8);
  padding: 50px 0 0;
  border-top: 3px solid var(--secondary);
  overflow: hidden;
}

.footer-brand .brand-logo {
  width: 44px;
  height: 44px;
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 1.1rem;
  margin-bottom: 10px;
}

.footer-brand h5 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 4px;
}

.footer-brand p {
  color: rgba(255,255,255,0.6);
  font-size: 0.84rem;
  line-height: 1.7;
}

.footer-title {
  color: var(--white);
  font-size: 1rem;
  margin-bottom: 18px;
  font-weight: 600;
}

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

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

.footer-links li a {
  color: rgba(255,255,255,0.65);
  font-size: 0.88rem;
  transition: var(--transition);
}

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

.footer-links li a i {
  margin-right: 6px;
  font-size: 0.7rem;
}

.footer-contact-item {
  display: flex;
  gap: 10px;
  margin-bottom: 14px;
  align-items: flex-start;
}

.footer-contact-item i {
  color: var(--secondary-light);
  font-size: 0.95rem;
  margin-top: 3px;
  flex-shrink: 0;
}

.footer-contact-item span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.65);
}

.footer-hours-table {
  width: 100%;
}

.footer-hours-table td {
  padding: 5px 0;
  font-size: 0.85rem;
  color: rgba(255,255,255,0.65);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-hours-table td:last-child {
  text-align: right;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 16px;
}

.footer-social a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.7);
  font-size: 0.95rem;
  transition: var(--transition);
}

.footer-social a:hover {
  background: var(--secondary);
  color: var(--white);
  transform: translateY(-2px);
}

.footer-bottom {
  background: rgba(0,0,0,0.15);
  padding: 14px 0;
  margin-top: 36px;
}

.footer-bottom p {
  margin-bottom: 0;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.5);
}

.footer-badges {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}

.footer-badge-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: rgba(255,255,255,0.5);
}

.footer-badge-item i {
  color: var(--secondary-light);
}

/* ==========================================
   DESKTOP WHATSAPP BUTTON (>991px only)
   ========================================== */
.desktop-wa {
  position: fixed;
  bottom: 28px;
  right: 28px;
  z-index: 9999;
}

.desktop-wa a {
  width: 60px;
  height: 60px;
  background: #25D366;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.8rem;
  box-shadow: 0 4px 18px rgba(37,211,102,0.4);
  transition: var(--transition);
  position: relative;
}

.desktop-wa a:hover {
  transform: scale(1.08);
  box-shadow: 0 6px 28px rgba(37,211,102,0.5);
  color: var(--white);
}

.desktop-wa a::before {
  content: '';
  position: absolute;
  inset: -4px;
  border-radius: 50%;
  border: 2px solid rgba(37,211,102,0.3);
  animation: wa-pulse 2s infinite;
}

@keyframes wa-pulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(1.3); opacity: 0; }
}

/* ==========================================
   MOBILE BOTTOM BAR (≤991px only)
   ========================================== */
.mobile-bottom-bar,
.mbb-phone-dropdown,
.mbb-overlay {
  display: none;
}

/* ==========================================
   BACK TO TOP
   ========================================== */
.back-to-top {
  position: fixed;
  bottom: 28px;
  left: 24px;
  z-index: 9999;
  opacity: 0;
  visibility: hidden;
  transition: var(--transition);
}

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

.back-to-top a {
  width: 42px;
  height: 42px;
  background: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  font-size: 1.1rem;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
}

.back-to-top a:hover {
  background: var(--secondary);
  transform: translateY(-2px);
  color: var(--white);
}

/* ==========================================
   ANIMATIONS & ACCESSIBILITY
   ========================================== */
.fade-in-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

.btn-hero-primary:focus-visible,
.btn-hero-secondary:focus-visible,
.btn-randevu:focus-visible,
.btn-service:focus-visible,
.btn-cta-phone:focus-visible,
.btn-cta-whatsapp:focus-visible {
  outline: 3px solid rgba(13,148,136,0.5);
  outline-offset: 2px;
}

.btn-hero-primary:active,
.btn-randevu:active {
  transform: translateY(0) scale(0.98);
}

.nav-link:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: var(--radius-sm);
}

.accordion-button:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: -2px;
}

/* ==========================================
   SCROLLBAR
   ========================================== */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--bg-gray);
}

::-webkit-scrollbar-thumb {
  background: var(--secondary);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--secondary-dark);
}

::selection {
  background: var(--secondary);
  color: var(--white);
}

/* ==========================================
   PRELOADER
   ========================================== */
.preloader {
  position: fixed;
  inset: 0;
  background: var(--white);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

.preloader.loaded {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.preloader-spinner {
  width: 48px;
  height: 48px;
  border: 4px solid var(--bg-light);
  border-top-color: var(--secondary);
  border-radius: 50%;
  animation: spin 0.8s linear infinite;
}

@keyframes spin {
  to { transform: rotate(360deg); }
}

/* ==========================================
   HOVER EFFECTS & MICRO-INTERACTIONS
   ========================================== */

/* --- Navbar Link Hover Underline Animation --- */
.navbar-nav .nav-link {
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--secondary);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  transform: translateX(-50%);
  border-radius: 2px;
}

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

/* --- Button Shine Effect --- */
.btn-hero-primary,
.btn-randevu,
.btn-cta-whatsapp,
.btn-pricing-detail {
  position: relative;
  overflow: hidden;
}

.btn-hero-primary::after,
.btn-randevu::after,
.btn-cta-whatsapp::after,
.btn-pricing-detail::after {
  content: '';
  position: absolute;
  top: -50%;
  left: -60%;
  width: 40%;
  height: 200%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transform: skewX(-25deg);
  transition: left 0.6s ease;
}

.btn-hero-primary:hover::after,
.btn-randevu:hover::after,
.btn-cta-whatsapp:hover::after,
.btn-pricing-detail:hover::after {
  left: 120%;
}

/* --- Hero Badge Pulse --- */
.hero-badge {
  animation: badge-glow 3s ease-in-out infinite;
}

@keyframes badge-glow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(13,148,136,0.1); }
  50% { box-shadow: 0 0 20px 4px rgba(13,148,136,0.15); }
}

/* --- Hero Title Gradient on Hover --- */
.hero-title span {
  transition: all 0.4s ease;
  display: inline-block;
}

.hero-title:hover span {
  background: linear-gradient(135deg, var(--secondary), var(--secondary-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  transform: scale(1.02);
}

/* --- Hero Feature Item Hover --- */
.hero-feature-item {
  transition: all 0.3s ease;
  padding: 6px 10px;
  border-radius: 50px;
}

.hero-feature-item:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-2px);
}

.hero-feature-item:hover i {
  background: var(--secondary);
  color: var(--white);
  transform: rotate(10deg) scale(1.1);
}

/* --- Stat Item Hover --- */
.stat-item {
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.stat-item:hover {
  background: rgba(255,255,255,0.08);
  transform: translateY(-4px);
}

.stat-item:hover .stat-icon {
  transform: scale(1.15) rotate(-8deg);
  background: rgba(255,255,255,0.3);
}

.stat-icon {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.stat-number {
  transition: all 0.3s ease;
}

.stat-item:hover .stat-number {
  transform: scale(1.08);
  text-shadow: 0 2px 10px rgba(255,255,255,0.3);
}

/* --- Why Card Icon Bounce --- */
.why-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.why-card:hover .why-card-icon {
  animation: icon-bounce 0.5s ease;
}

@keyframes icon-bounce {
  0% { transform: scale(1); }
  30% { transform: scale(1.2); }
  50% { transform: scale(0.95); }
  70% { transform: scale(1.1); }
  100% { transform: scale(1.08); }
}

.why-card h5 {
  transition: color 0.3s ease;
}

.why-card:hover h5 {
  color: var(--secondary);
}

/* --- Service Card Glow Border --- */
.service-card {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover {
  border-color: var(--secondary);
  box-shadow: 0 8px 32px rgba(13,148,136,0.18), 0 0 0 1px rgba(13,148,136,0.1);
}

.service-card:hover .service-icon-circle {
  transform: scale(1.1) rotate(-5deg);
  box-shadow: 0 10px 30px rgba(13,148,136,0.4);
}

.service-icon-circle {
  transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.service-card:hover .service-badge-tag {
  background: var(--primary);
  transform: scale(1.05);
}

.service-badge-tag {
  transition: all 0.3s ease;
}

/* --- Service Feature List Hover --- */
.service-features li {
  transition: all 0.3s ease;
  padding-left: 0;
  border-radius: var(--radius-sm);
}

.service-features li:hover {
  padding-left: 8px;
  background: var(--bg-light);
}

.service-features li:hover i {
  transform: scale(1.2);
}

/* --- Btn Service Arrow Animation --- */
.btn-service i {
  transition: transform 0.3s ease;
}

.btn-service:hover i {
  transform: translateX(6px);
  animation: arrow-bounce 0.6s ease infinite;
}

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

/* --- About Image Hover Zoom --- */
.about-img-wrapper img {
  transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.about-img-wrapper:hover img {
  transform: scale(1.03);
  box-shadow: 0 16px 48px rgba(0,0,0,0.2);
}

.about-experience-badge {
  transition: all 0.3s ease;
}

.about-img-wrapper:hover .about-experience-badge {
  transform: scale(1.05);
  box-shadow: 0 8px 24px rgba(13,148,136,0.4);
}

/* --- About Quote Hover --- */
.about-quote {
  transition: all 0.3s ease;
}

.about-quote:hover {
  border-left-color: var(--secondary-light);
  border-left-width: 6px;
  background: linear-gradient(135deg, var(--bg-light), #CCFBF1);
  transform: translateX(4px);
}

/* --- Biography Card Paragraph Hover --- */
.biography-card p {
  transition: all 0.3s ease;
  padding: 4px 0;
  border-left: 3px solid transparent;
  padding-left: 0;
}

.biography-card p:hover {
  color: var(--text-dark);
  border-left-color: var(--secondary);
  padding-left: 14px;
  background: linear-gradient(90deg, rgba(13,148,136,0.03), transparent);
}

/* --- Pricing Card Hover --- */
.pricing-intro-card {
  transition: all 0.3s ease;
}

.pricing-intro-card:hover {
  box-shadow: var(--shadow-lg);
  border-left-color: var(--secondary-light);
  transform: translateY(-2px);
}

/* --- Process Step Hover --- */
.process-step {
  transition: all 0.3s ease;
  border-radius: var(--radius-md);
}

.process-step:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px);
}

.process-step:hover .process-step-number {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(13,148,136,0.4);
}

.process-step-number {
  transition: all 0.3s ease;
}

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

.process-step-icon {
  transition: all 0.3s ease;
}

/* --- FAQ Accordion Hover --- */
.faq-accordion .accordion-item {
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover {
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.faq-accordion .accordion-button i {
  transition: all 0.3s ease;
}

.faq-accordion .accordion-item:hover .accordion-button i {
  transform: scale(1.2) rotate(-10deg);
}

/* --- Contact Info Item Hover --- */
.contact-info-item {
  transition: all 0.3s ease;
  padding-left: 0;
  border-radius: var(--radius-sm);
}

.contact-info-item:hover {
  background: var(--bg-light);
  padding-left: 10px;
}

.contact-info-item:hover .contact-info-icon {
  background: var(--secondary);
  color: var(--white);
  transform: scale(1.08) rotate(-5deg);
}

.contact-info-icon {
  transition: all 0.3s ease;
}

/* --- Contact Social Link Hover Bounce --- */
.contact-social-link:hover {
  animation: social-bounce 0.4s ease;
}

@keyframes social-bounce {
  0% { transform: translateY(0); }
  40% { transform: translateY(-8px); }
  60% { transform: translateY(-3px); }
  80% { transform: translateY(-5px); }
  100% { transform: translateY(-2px); }
}

/* --- Map Wrapper Hover --- */
.map-wrapper {
  transition: all 0.3s ease;
}

.map-wrapper:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-3px);
}

/* --- Footer Link Hover Arrow --- */
.footer-links li a {
  position: relative;
  transition: all 0.3s ease;
}

.footer-links li a:hover {
  color: var(--secondary-light);
  padding-left: 8px;
}

.footer-links li a:hover i {
  color: var(--secondary-light);
  transform: translateX(3px);
}

.footer-links li a i {
  transition: transform 0.3s ease;
}

/* --- Footer Social Hover Glow --- */
.footer-social a:hover {
  box-shadow: 0 4px 16px rgba(13,148,136,0.4);
}

/* --- Footer Contact Item Hover --- */
.footer-contact-item {
  transition: all 0.3s ease;
  padding: 4px 0;
  border-radius: var(--radius-sm);
}

.footer-contact-item:hover {
  padding-left: 8px;
}

.footer-contact-item:hover i {
  transform: scale(1.15);
}

.footer-contact-item i {
  transition: transform 0.3s ease;
}

/* --- CTA Section Button Hover Glow --- */
.btn-cta-phone:hover {
  box-shadow: 0 0 20px rgba(255,255,255,0.3), 0 8px 25px rgba(255,255,255,0.2);
}

.btn-cta-whatsapp:hover {
  box-shadow: 0 0 20px rgba(16,185,129,0.3), 0 8px 25px rgba(16,185,129,0.4);
}

/* --- Section Badge Hover --- */
.section-badge {
  transition: all 0.3s ease;
}

.section-badge:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}

.section-badge-lg:hover {
  box-shadow: 0 4px 16px rgba(13,148,136,0.3);
}

/* --- Section Title Hover Underline Grow --- */
.text-center .section-title::after {
  transition: width 0.4s ease;
}

.text-center .section-title:hover::after {
  width: 100px;
}

/* --- Back to Top Hover Pulse --- */
.back-to-top a:hover {
  animation: btt-pulse 0.6s ease;
}

@keyframes btt-pulse {
  0% { transform: translateY(0); }
  30% { transform: translateY(-6px); }
  50% { transform: translateY(-3px); }
  70% { transform: translateY(-5px); }
  100% { transform: translateY(-2px); }
}

/* --- Btn Hero Secondary Hover Border Morph --- */
.btn-hero-secondary:hover {
  border-color: var(--secondary);
  background: var(--secondary);
  color: var(--white);
}

/* --- Global Image Fade In --- */
img {
  opacity: 1;
}

/* --- Smooth Focus Ring --- */
*:focus-visible {
  outline: 2px solid var(--secondary);
  outline-offset: 2px;
  border-radius: 4px;
}

/* --- Card Tilt on Hover (subtle) --- */
.why-card:hover {
  transform: translateY(-6px) perspective(1000px) rotateX(2deg);
}

.service-card:hover {
  transform: translateY(-5px) perspective(1000px) rotateX(1deg);
}

/* --- Gradient text for colored spans --- */
.section-title span[style*="color:var(--secondary)"] {
  transition: all 0.3s ease;
}

/* ==========================================
   RESPONSIVE - 1400px+ (Extra Large)
   ========================================== */
@media (min-width: 1400px) {
  .hero-title {
    font-size: 3.2rem;
  }
  .section-title-lg {
    font-size: 2.6rem;
  }
  .biography-card {
    padding: 50px;
  }
}

/* ==========================================
   RESPONSIVE - max 1399px
   ========================================== */
@media (max-width: 1399px) {
  .hero-title {
    font-size: 2.6rem;
  }
  .section-title-lg {
    font-size: 2.2rem;
  }
}

/* ==========================================
   RESPONSIVE - max 1199px (Tablet Landscape)
   ========================================== */
@media (max-width: 1199px) {
  .hero-title {
    font-size: 2.4rem;
  }
  .section-title {
    font-size: 1.8rem;
  }
  .section-title-lg {
    font-size: 2rem;
  }
  .navbar-nav .nav-link {
    padding: 7px 9px !important;
    font-size: 0.84rem;
  }
  .hero-heading-secondary {
    font-size: 1.1rem;
  }
  .hero-doctor-img {
    max-height: 420px;
  }
  .biography-card {
    padding: 35px;
  }
}

/* ==========================================
   RESPONSIVE - max 991px (Tablet Portrait)
   ========================================== */
@media (max-width: 991px) {
  /* Navbar mobile */
  .navbar-collapse {
    background: var(--white);
    padding: 16px;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
    box-shadow: var(--shadow-lg);
    margin-top: 8px;
    border: 1px solid #E2E8F0;
  }

  /* Desktop WA hidden on mobile, Mobile bar shown */
  .desktop-wa { display: none; }

  .mobile-bottom-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 9999;
    box-shadow: 0 -4px 20px rgba(0,0,0,0.15);
  }

  .mbb-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 15px 10px;
    color: var(--white);
    text-decoration: none;
    font-weight: 700;
    font-size: 0.95rem;
    font-family: 'Poppins', sans-serif;
    border: none;
    cursor: pointer;
    letter-spacing: 0.3px;
  }

  .mbb-btn i { font-size: 1.15rem; }

  .mbb-phone {
    flex: 1;
    background: linear-gradient(135deg, var(--secondary), var(--secondary-dark));
  }

  .mbb-whatsapp {
    flex: 1;
    background: linear-gradient(135deg, #25D366, #128C7E);
  }

  .mbb-phone-dropdown {
    display: none;
    position: fixed;
    bottom: 52px;
    left: 0;
    right: 0;
    background: var(--white);
    border-radius: 14px 14px 0 0;
    box-shadow: 0 -8px 30px rgba(0,0,0,0.2);
    z-index: 10000;
    padding: 6px 0;
  }

  .mbb-phone-dropdown.open {
    display: block;
  }

  .mbb-phone-dropdown a {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 15px 22px;
    color: var(--primary);
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    border-bottom: 1px solid #F1F5F9;
    white-space: nowrap;
  }

  .mbb-phone-dropdown a:last-child { border-bottom: none; }

  .mbb-phone-dropdown a:active {
    background: var(--bg-light);
  }

  .mbb-phone-dropdown a i {
    width: 36px;
    height: 36px;
    background: var(--bg-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--secondary);
    font-size: 1rem;
    flex-shrink: 0;
  }

  .mbb-phone-dropdown a small {
    color: var(--text-muted);
    font-weight: 400;
    margin-left: 4px;
  }

  .mbb-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.3);
    z-index: 9998;
  }

  .mbb-overlay.open {
    display: block;
  }

  /* Footer extra padding for mobile bar */
  .footer-bottom {
    padding-bottom: 60px;
  }

  /* Back to top above bar */
  .back-to-top {
    bottom: 65px;
  }

  .navbar-nav .nav-link {
    padding: 10px 14px !important;
    font-size: 0.92rem;
    border-bottom: 1px solid #F1F5F9;
  }

  .navbar-nav .nav-link:last-child {
    border-bottom: none;
  }

  .btn-randevu {
    width: 100%;
    justify-content: center;
    margin-top: 10px;
    padding: 12px 24px !important;
  }

  /* Hero */
  .hero-section {
    padding: 30px 0 0;
    text-align: center;
  }

  .hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px 0;
  }

  .hero-desc {
    max-width: 100%;
  }

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

  .hero-features {
    grid-template-columns: 1fr 1fr;
    justify-items: center;
  }

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

  .hero-heading-secondary {
    font-size: 1rem;
  }

  .hero-subtitle {
    text-align: left;
    font-size: 0.84rem;
  }

  .hero-image-wrapper {
    margin-top: 30px;
    padding: 0;
  }

  .hero-doctor-img {
    max-height: 360px;
  }

  .hero-trust-strip {
    gap: 4px;
  }

  .hero-trust-item {
    font-size: 0.75rem;
    padding: 6px 10px;
  }

  .hero-trust-item i {
    font-size: 0.85rem;
  }

  /* Sections */
  section {
    padding: 55px 0;
  }

  .section-title-lg {
    font-size: 1.8rem;
  }

  .stat-number {
    font-size: 1.8rem;
  }

  .process-step-connector {
    display: none !important;
  }

  .faq-left-panel {
    position: static;
  }

  .biography-card {
    padding: 28px;
  }

  .pricing-intro-card {
    padding: 26px;
  }

  .gallery-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
  }

  .gallery-item-wide {
    grid-column: span 2;
  }

  .families-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 14px;
  }

  .families-section {
    padding: 50px 0;
  }

  .map-wrapper,
  .map-wrapper iframe {
    min-height: 320px;
  }

  .about-img-wrapper {
    max-width: 400px;
    margin: 0 auto 20px;
  }

  .about-experience-badge {
    right: 5px;
    bottom: -10px;
    padding: 12px 16px;
  }

  .about-experience-badge .exp-number {
    font-size: 1.8rem;
  }
}

/* ==========================================
   RESPONSIVE - max 767px (Mobile Landscape)
   ========================================== */
@media (max-width: 767px) {
  .top-bar {
    display: none;
  }

  .navbar {
    padding: 8px 0;
  }

  .brand-text .brand-title {
    font-size: 0.95rem;
  }

  .brand-logo {
    width: 38px;
    height: 38px;
    font-size: 1.1rem;
  }

  .hero-section {
    padding: 20px 0 0;
  }

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

  .hero-heading-secondary {
    font-size: 0.92rem;
  }

  .hero-subtitle {
    font-size: 0.82rem;
    padding: 8px 14px;
  }

  .hero-badge {
    font-size: 0.78rem;
    padding: 6px 14px;
  }

  .hero-buttons {
    flex-direction: column;
    width: 100%;
  }

  .hero-buttons a {
    text-align: center;
    justify-content: center;
    width: 100%;
  }

  .hero-features {
    grid-template-columns: 1fr 1fr;
    gap: 8px 12px;
    justify-items: start;
  }

  .hero-feature-item {
    font-size: 0.76rem;
    gap: 5px;
  }

  .hero-feature-item i {
    width: 26px;
    height: 26px;
    font-size: 0.75rem;
  }

  .hero-doctor-img {
    max-height: 280px;
  }

  /* Sections */
  section {
    padding: 45px 0;
  }

  .section-title {
    font-size: 1.5rem;
  }

  .section-title-lg {
    font-size: 1.6rem;
  }

  .section-subtitle {
    font-size: 0.9rem;
    margin-bottom: 2rem;
  }

  /* Stats */
  .stat-item {
    padding: 10px 6px;
  }

  .stat-number {
    font-size: 1.5rem;
  }

  .stat-label {
    font-size: 0.75rem;
  }

  .stat-icon {
    width: 42px;
    height: 42px;
    font-size: 1.1rem;
    margin-bottom: 8px;
  }

  .stats-section .row > div .stat-item::after {
    display: none;
  }

  /* About */
  .about-experience-badge {
    position: relative;
    bottom: auto;
    right: auto;
    display: inline-block;
    margin-top: 16px;
  }

  .about-img-wrapper {
    text-align: center;
    max-width: 100%;
  }

  .about-content h3 {
    font-size: 1.4rem;
  }

  .about-quote {
    padding: 16px 18px;
    font-size: 0.88rem;
  }

  /* Service */
  .service-icon-header {
    padding: 28px 20px;
  }

  .service-icon-circle {
    width: 65px;
    height: 65px;
    font-size: 1.6rem;
  }

  .service-body {
    padding: 22px;
  }

  .service-body h4 {
    font-size: 1.1rem;
  }

  /* Map */
  .map-wrapper,
  .map-wrapper iframe {
    min-height: 260px;
  }

  /* CTA */
  .cta-section h2 {
    font-size: 1.4rem;
  }

  .cta-section .cta-desc {
    font-size: 0.9rem;
  }

  /* Process */
  .process-step-number {
    width: 48px;
    height: 48px;
    font-size: 1.1rem;
    outline-width: 2px;
    outline-offset: 3px;
  }

  .process-step-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }

  .process-step h6 {
    font-size: 0.88rem;
  }

  .process-step p {
    font-size: 0.78rem;
  }

  /* Why */
  .why-card {
    padding: 22px 18px;
  }

  .why-card-icon {
    width: 54px;
    height: 54px;
    font-size: 1.4rem;
  }

  /* Biography */
  .biography-card {
    padding: 22px;
  }

  .biography-card p {
    font-size: 0.88rem;
  }

  /* Pricing */
  .pricing-intro-card {
    padding: 22px;
    border-left-width: 3px;
  }

  .pricing-intro-text {
    font-size: 0.9rem;
  }

  .btn-pricing-detail {
    font-size: 0.85rem;
    padding: 10px 20px;
  }

  /* Btn */
  .btn-hero-primary,
  .btn-hero-secondary {
    padding: 11px 22px;
    font-size: 0.88rem;
  }

  /* Footer */
  .footer-bottom {
    text-align: center;
  }

  .footer-badges {
    justify-content: center;
    margin-top: 10px;
  }

  /* Contact */
  .contact-info-card {
    padding: 22px;
  }

  .contact-info-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
  }
}

/* ==========================================
   RESPONSIVE - max 575px (Mobile Portrait)
   ========================================== */
@media (max-width: 575px) {
  .hero-title {
    font-size: 1.55rem;
  }

  .hero-heading-secondary {
    font-size: 0.88rem;
  }

  .stats-section .row > div {
    flex: 0 0 50%;
    max-width: 50%;
  }

  .stat-number {
    font-size: 1.3rem;
  }

  .stat-icon {
    width: 38px;
    height: 38px;
    font-size: 1rem;
    margin-bottom: 6px;
  }

  .section-title {
    font-size: 1.35rem;
  }

  .section-title-lg {
    font-size: 1.4rem;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .gallery-item-wide {
    grid-column: span 2;
    aspect-ratio: 16 / 9;
  }

  .gallery-item {
    aspect-ratio: 1 / 1;
  }

  .gallery-overlay-content span {
    font-size: 0.78rem;
    padding: 3px 10px;
  }

  .gallery-overlay-content i {
    font-size: 1.4rem;
  }

  .btn-cta-phone,
  .btn-cta-whatsapp {
    padding: 11px 22px;
    font-size: 0.9rem;
    width: 100%;
    justify-content: center;
  }

  .cta-section {
    padding: 40px 0;
  }

  .cta-section h2 {
    font-size: 1.25rem;
  }

  .service-body {
    padding: 20px;
  }

  .service-body h4 {
    font-size: 1.05rem;
  }

  .service-tagline {
    font-size: 0.82rem;
  }

  .service-features li {
    font-size: 0.82rem;
    word-break: break-word;
  }

  .service-icon-header {
    padding: 24px 18px;
  }

  .service-icon-circle {
    width: 64px;
    height: 64px;
    font-size: 1.6rem;
  }

  .contact-info-card {
    padding: 18px;
  }

  .biography-card {
    padding: 18px;
  }

  .pricing-intro-card {
    padding: 18px;
  }

  .pricing-detail-content p {
    font-size: 0.88rem;
  }

  .faq-accordion .accordion-button {
    font-size: 0.88rem;
    padding: 14px 16px;
  }

  .faq-accordion .accordion-body {
    font-size: 0.86rem;
    padding: 0 16px 14px;
  }

  .footer-hours-table td {
    font-size: 0.8rem;
  }

  .lightbox-prev,
  .lightbox-next {
    width: 40px;
    height: 40px;
    font-size: 1rem;
  }

  .lightbox-prev { left: 10px; }
  .lightbox-next { right: 10px; }

  .lightbox-close {
    width: 40px;
    height: 40px;
    font-size: 1rem;
    top: 12px;
    right: 12px;
  }

  .lightbox-caption {
    font-size: 0.9rem;
  }

  .mbb-btn {
    padding: 13px 8px;
    font-size: 0.85rem;
  }

  .back-to-top a {
    width: 36px;
    height: 36px;
    font-size: 0.95rem;
  }

  .back-to-top {
    bottom: 60px;
    left: 12px;
  }
}

/* ==========================================
   RESPONSIVE - max 400px (Extra Small)
   ========================================== */
@media (max-width: 400px) {
  .hero-title {
    font-size: 1.35rem;
  }

  .hero-heading-secondary {
    font-size: 0.82rem;
  }

  .section-title {
    font-size: 1.2rem;
  }

  .section-title-lg {
    font-size: 1.25rem;
  }

  .stat-number {
    font-size: 1.15rem;
  }

  .stat-label {
    font-size: 0.7rem;
  }

  .why-card {
    padding: 18px 14px;
  }

  .why-card-icon {
    width: 48px;
    height: 48px;
    font-size: 1.2rem;
  }

  .why-card h5 {
    font-size: 0.95rem;
  }

  .why-card p {
    font-size: 0.82rem;
  }

  .service-icon-circle {
    width: 56px;
    height: 56px;
    font-size: 1.4rem;
  }

  .biography-card {
    padding: 16px;
  }

  .pricing-intro-card {
    padding: 14px;
  }

  .contact-info-card {
    padding: 16px;
  }

  .about-content h3 {
    font-size: 1.25rem;
  }

  .about-quote {
    padding: 14px 16px;
    font-size: 0.84rem;
  }

  .faq-accordion .accordion-button {
    font-size: 0.84rem;
    padding: 12px 14px;
  }

  .brand-text .brand-title {
    font-size: 0.88rem;
  }

  .brand-logo {
    width: 34px;
    height: 34px;
    font-size: 1rem;
    border-radius: 8px;
  }
}
