/* ==========================================================================
   Özel Diş Kliniği - Main CSS Stylesheet
   ========================================================================== */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* --- CSS Root Variables --- */
:root {
  --primary: #0e7490;
  --primary-hover: #0891b2;
  --primary-light: #ecfeff;
  --secondary: #06b6d4;
  --dark: #0f172a;
  --dark-heading: #1e293b;
  --body-text: #475569;
  --light-bg: #f8fafc;
  --white: #ffffff;
  --border-color: #e2e8f0;
  --accent-gold: #f59e0b;
  --success: #10b981;
  --danger: #ef4444;
  
  --shadow-sm: 0 1px 3px rgba(0,0,0,0.08);
  --shadow-md: 0 4px 12px rgba(14, 116, 144, 0.08);
  --shadow-lg: 0 10px 25px rgba(14, 116, 144, 0.12);
  --shadow-hover: 0 15px 30px rgba(14, 116, 144, 0.18);
  
  --radius-sm: 8px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-full: 9999px;
  
  --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  font-family: 'Inter', sans-serif;
  color: var(--body-text);
  background-color: var(--white);
  line-height: 1.6;
  overflow-x: hidden;
}

h1, h2, h3, h4, h5, h6 {
  font-family: 'Poppins', sans-serif;
  color: var(--dark-heading);
  font-weight: 600;
  line-height: 1.3;
}

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

ul {
  list-style: none;
}

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

/* --- Container --- */
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 1.25rem;
}

/* --- Section Spacing & Headers --- */
.section {
  padding: 5rem 0;
}

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

.section-header {
  text-align: center;
  max-width: 650px;
  margin: 0 auto 3.5rem auto;
}

.badge {
  display: inline-block;
  padding: 0.35rem 1rem;
  background-color: var(--primary-light);
  color: var(--primary);
  font-weight: 600;
  font-size: 0.875rem;
  border-radius: var(--radius-full);
  margin-bottom: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
}

.section-title {
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: var(--body-text);
  font-size: 1.05rem;
}

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.75rem;
  font-family: 'Poppins', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  border-radius: var(--radius-md);
  cursor: pointer;
  border: 2px solid transparent;
  transition: var(--transition);
  outline: none;
}

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

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

.btn-secondary {
  background-color: var(--white);
  color: var(--primary);
  border-color: var(--primary);
}

.btn-secondary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
}

.btn-outline-white {
  background-color: transparent;
  color: var(--white);
  border-color: var(--white);
}

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

.btn-sm {
  padding: 0.5rem 1.15rem;
  font-size: 0.875rem;
}

.btn-lg {
  padding: 1.1rem 2.25rem;
  font-size: 1.05rem;
}

/* --- Header / Topbar --- */
.topbar {
  background-color: var(--dark);
  color: #94a3b8;
  font-size: 0.85rem;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

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

.topbar-info {
  display: flex;
  gap: 1.5rem;
}

.topbar-info-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.topbar-info-item i {
  color: var(--secondary);
}

.topbar-social {
  display: flex;
  gap: 1rem;
}

.topbar-social a {
  color: #94a3b8;
}

.topbar-social a:hover {
  color: var(--secondary);
}

/* --- Main Navbar --- */
.header {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  background-color: var(--white);
  z-index: 1000;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: 'Poppins', sans-serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--dark);
}

.logo i {
  font-size: 1.8rem;
  color: var(--primary);
}

.logo span {
  color: var(--primary);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.8rem;
}

.nav-link {
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--dark-heading);
  position: relative;
  padding: 0.5rem 0;
}

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

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

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

.nav-cta {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.mobile-toggle {
  display: none;
  font-size: 1.5rem;
  color: var(--dark);
  background: none;
  border: none;
  cursor: pointer;
}

/* --- Hero Section --- */
.hero {
  position: relative;
  background: linear-gradient(135deg, #f0fdfa 0%, #e0f2fe 100%);
  padding: 6rem 0 5rem 0;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.hero-content h1 {
  font-size: 3rem;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: 1.25rem;
  line-height: 1.2;
}

.hero-content h1 span {
  color: var(--primary);
}

.hero-content p {
  font-size: 1.1rem;
  color: var(--body-text);
  margin-bottom: 2rem;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.hero-stats {
  display: flex;
  gap: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(14, 116, 144, 0.15);
}

.stat-item h3 {
  font-size: 1.8rem;
  color: var(--primary);
}

.stat-item p {
  font-size: 0.875rem;
  margin-bottom: 0;
}

.hero-image-wrapper {
  position: relative;
}

.hero-img-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 1.5rem;
  box-shadow: var(--shadow-lg);
  position: relative;
}

.hero-img-card img {
  border-radius: var(--radius-md);
  width: 100%;
  height: 420px;
  object-fit: cover;
}

.hero-badge-floating {
  position: absolute;
  bottom: 2rem;
  left: -1.5rem;
  background: var(--white);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  border-left: 4px solid var(--primary);
}

.hero-badge-floating i {
  font-size: 2rem;
  color: var(--primary);
}

.hero-badge-floating strong {
  display: block;
  font-size: 1.1rem;
  color: var(--dark);
}

.hero-badge-floating span {
  font-size: 0.85rem;
  color: var(--body-text);
}

/* --- Features / Quick Cards --- */
.quick-cards {
  margin-top: -3rem;
  position: relative;
  z-index: 10;
}

.cards-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.quick-card {
  background: var(--white);
  padding: 2rem 1.5rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border-top: 4px solid transparent;
}

.quick-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-top-color: var(--primary);
}

.quick-card-icon {
  width: 60px;
  height: 60px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}

.quick-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
}

.quick-card p {
  font-size: 0.9rem;
  color: var(--body-text);
}

/* --- Services / Treatments Grid --- */
.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.treatment-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

.treatment-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-hover);
  border-color: var(--secondary);
}

.treatment-img {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.treatment-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.treatment-body {
  padding: 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.treatment-body h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.treatment-body p {
  font-size: 0.95rem;
  color: var(--body-text);
  margin-bottom: 1.25rem;
  flex: 1;
}

.treatment-link {
  font-weight: 600;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.treatment-link:hover {
  gap: 0.75rem;
  color: var(--primary-hover);
}

/* --- Filter Buttons --- */
.filter-tabs {
  display: flex;
  justify-content: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
}

.filter-btn {
  padding: 0.6rem 1.4rem;
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-full);
  font-weight: 500;
  font-size: 0.9rem;
  color: var(--body-text);
  cursor: pointer;
  transition: var(--transition);
}

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

/* --- Before & After Comparison Slider --- */
.ba-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 16 / 9;
  user-select: none;
}

.ba-image-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
}

.ba-image-after {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  height: 100%;
  background-size: cover;
  background-position: center;
  border-right: 3px solid var(--white);
  box-shadow: 2px 0 10px rgba(0,0,0,0.3);
}

.ba-slider-handle {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 44px;
  height: 44px;
  background: var(--white);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 2px 10px rgba(0,0,0,0.3);
  cursor: ew-resize;
  pointer-events: none;
}

.ba-range-input {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  cursor: ew-resize;
  z-index: 10;
}

.ba-label {
  position: absolute;
  bottom: 1.25rem;
  padding: 0.4rem 1rem;
  background: rgba(15, 23, 42, 0.75);
  color: var(--white);
  font-size: 0.85rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  backdrop-filter: blur(4px);
}

.ba-label-before {
  right: 1.25rem;
}

.ba-label-after {
  left: 1.25rem;
}

/* --- Team / Doctors Grid --- */
.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

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

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

.team-img {
  height: 300px;
  overflow: hidden;
}

.team-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.team-info {
  padding: 1.5rem;
}

.team-info h3 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
}

.team-info .role {
  color: var(--primary);
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}

.team-info p {
  font-size: 0.875rem;
  color: var(--body-text);
  margin-bottom: 1rem;
}

/* --- Testimonials / Reviews --- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
  position: relative;
}

.stars {
  color: var(--accent-gold);
  margin-bottom: 1rem;
}

.testimonial-card p {
  font-style: italic;
  margin-bottom: 1.5rem;
}

.patient-info {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.patient-avatar {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: var(--primary-light);
  color: var(--primary);
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
}

.patient-details h4 {
  font-size: 1rem;
}

.patient-details span {
  font-size: 0.8rem;
  color: #94a3b8;
}

/* --- Accordions (SSS) --- */
.accordion {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.accordion-item {
  background: var(--white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: var(--transition);
}

.accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-weight: 600;
  font-size: 1.05rem;
  color: var(--dark-heading);
}

.accordion-header i {
  color: var(--primary);
  transition: transform 0.3s ease;
}

.accordion-item.active .accordion-header i {
  transform: rotate(180deg);
}

.accordion-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s ease;
  padding: 0 1.5rem;
  background: #fdfdfd;
  color: var(--body-text);
  font-size: 0.95rem;
  border-top: 1px solid transparent;
}

.accordion-item.active .accordion-body {
  max-height: 300px;
  padding: 1.25rem 1.5rem;
  border-top-color: var(--border-color);
}

/* --- Blog Cards & Grid --- */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.blog-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: var(--transition);
  border: 1px solid var(--border-color);
  display: flex;
  flex-direction: column;
}

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

.blog-img {
  height: 200px;
  overflow: hidden;
  position: relative;
}

.blog-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}

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

.blog-date {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--white);
  color: var(--dark);
  padding: 0.3rem 0.8rem;
  font-size: 0.8rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
}

.blog-body {
  padding: 1.5rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}

.blog-body h3 {
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.blog-body p {
  font-size: 0.9rem;
  color: var(--body-text);
  margin-bottom: 1.25rem;
  flex: 1;
}

.blog-meta {
  display: flex;
  justify-content: space-between;
  font-size: 0.8rem;
  color: #94a3b8;
  padding-top: 1rem;
  border-top: 1px solid var(--border-color);
}

/* --- Page Header / Breadcrumb --- */
.page-banner {
  background: linear-gradient(135deg, var(--dark) 0%, #1e293b 100%);
  color: var(--white);
  padding: 4rem 0;
  text-align: center;
}

.page-banner h1 {
  color: var(--white);
  font-size: 2.5rem;
  margin-bottom: 0.75rem;
}

.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  font-size: 0.9rem;
  color: #94a3b8;
}

.breadcrumbs a {
  color: var(--secondary);
}

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

/* --- Contact Section / Form --- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info-box {
  background: var(--primary);
  color: var(--white);
  padding: 3rem 2.5rem;
  border-radius: var(--radius-lg);
}

.contact-info-box h2 {
  color: var(--white);
  font-size: 1.75rem;
  margin-bottom: 1rem;
}

.contact-info-box p {
  color: #e0f2fe;
  margin-bottom: 2rem;
}

.contact-item {
  display: flex;
  gap: 1.25rem;
  margin-bottom: 1.75rem;
}

.contact-item i {
  font-size: 1.4rem;
  color: var(--secondary);
  margin-top: 0.2rem;
}

.contact-item h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 0.25rem;
}

.contact-item p {
  color: #cbd5e1;
  font-size: 0.9rem;
  margin-bottom: 0;
}

.contact-form-box {
  background: var(--white);
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.form-group {
  margin-bottom: 1.5rem;
}

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

.form-label {
  display: block;
  font-weight: 500;
  font-size: 0.9rem;
  margin-bottom: 0.5rem;
  color: var(--dark-heading);
}

.form-control {
  width: 100%;
  padding: 0.8rem 1rem;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  transition: var(--transition);
  outline: none;
}

.form-control:focus {
  border-color: var(--primary);
  box-shadow: 0 0 0 3px rgba(14, 116, 144, 0.15);
}

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

/* --- Call to Action Banner --- */
.cta-banner {
  background: linear-gradient(135deg, var(--primary) 0%, var(--primary-hover) 100%);
  color: var(--white);
  padding: 4rem 0;
  border-radius: var(--radius-lg);
  text-align: center;
}

.cta-banner h2 {
  color: var(--white);
  font-size: 2.25rem;
  margin-bottom: 1rem;
}

.cta-banner p {
  color: #e0f2fe;
  font-size: 1.1rem;
  max-width: 600px;
  margin: 0 auto 2rem auto;
}

/* --- Floating WhatsApp & Quick Contact Button --- */
.floating-whatsapp {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 60px;
  height: 60px;
  background-color: #25d366;
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  box-shadow: 0 4px 15px rgba(37, 211, 102, 0.4);
  z-index: 999;
  transition: var(--transition);
}

.floating-whatsapp:hover {
  transform: scale(1.1);
  color: var(--white);
}

/* --- Toast Notification --- */
.toast-notification {
  position: fixed;
  top: 2rem;
  right: 2rem;
  background: var(--white);
  border-left: 5px solid var(--success);
  padding: 1rem 1.5rem;
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 1100;
  transform: translateX(150%);
  transition: transform 0.4s ease;
}

.toast-notification.show {
  transform: translateX(0);
}

.toast-notification i {
  color: var(--success);
  font-size: 1.5rem;
}

/* --- Footer --- */
.footer {
  background-color: var(--dark);
  color: #94a3b8;
  padding: 5rem 0 2rem 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.5fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.footer-col h3 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 1.5rem;
}

.footer-logo {
  color: var(--white);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.footer-logo i {
  color: var(--secondary);
}

.footer-col p {
  font-size: 0.9rem;
  margin-bottom: 1.5rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.footer-links a {
  font-size: 0.9rem;
}

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

.footer-hours {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  font-size: 0.9rem;
}

.footer-hours li {
  display: flex;
  justify-content: space-between;
}

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

/* --- Responsive Media Queries --- */
@media (max-width: 1024px) {
  .container {
    padding: 0 1.5rem;
  }

  .cards-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .treatments-grid, .team-grid, .testimonials-grid, .blog-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
  }
  
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
  }

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

@media (max-width: 768px) {
  .section {
    padding: 3.5rem 0;
  }

  .section-header {
    margin-bottom: 2.5rem;
  }

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

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* Topbar Hide on Mobile */
  .topbar {
    display: none;
  }

  /* Header & Navbar Mobile */
  .header {
    height: 70px;
  }

  .navbar {
    height: 70px;
  }

  .logo {
    font-size: 1.25rem;
  }

  .logo i {
    font-size: 1.5rem;
  }
  
  .nav-menu {
    position: fixed;
    top: 70px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 70px);
    background: var(--white);
    flex-direction: column;
    padding: 2rem 1.5rem 3rem 1.5rem;
    gap: 1rem;
    transition: var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }

  .nav-link {
    font-size: 1.1rem;
    padding: 0.75rem 0;
    width: 100%;
    border-bottom: 1px solid var(--border-color);
  }

  .nav-link::after {
    display: none;
  }

  .mobile-nav-cta {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    width: 100%;
    margin-top: 1rem;
  }
  
  .mobile-toggle {
    display: block;
    padding: 0.5rem;
  }
  
  .nav-cta {
    display: none;
  }

  /* Hero Section Mobile */
  .hero {
    padding: 3rem 0;
  }
  
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }
  
  .hero-content h1 {
    font-size: 2rem;
    line-height: 1.25;
  }

  .hero-content p {
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
  }
  
  .hero-buttons {
    justify-content: center;
    gap: 0.75rem;
  }

  .hero-buttons .btn {
    width: 100%;
  }
  
  .hero-stats {
    justify-content: center;
    gap: 1.5rem;
  }

  .stat-item h3 {
    font-size: 1.5rem;
  }

  .hero-img-card img {
    height: 300px;
  }

  .hero-badge-floating {
    position: relative;
    bottom: 0;
    left: 0;
    margin-top: 1rem;
    width: 100%;
    justify-content: center;
  }

  /* Filter Tabs Mobile Horizontal Scroll */
  .filter-tabs {
    flex-wrap: nowrap;
    justify-content: flex-start;
    overflow-x: auto;
    padding-bottom: 0.75rem;
    -webkit-overflow-scrolling: touch;
  }

  .filter-btn {
    white-space: nowrap;
    flex-shrink: 0;
  }

  /* Before & After Slider Mobile */
  .ba-container {
    aspect-ratio: 4 / 3;
    border-radius: var(--radius-md);
  }

  .ba-label {
    font-size: 0.75rem;
    padding: 0.3rem 0.75rem;
    bottom: 0.75rem;
  }
  
  /* Grids Mobile */
  .quick-cards {
    margin-top: 0;
    padding-top: 2rem;
  }

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

  .quick-card {
    padding: 1.5rem;
  }
  
  .treatments-grid, .team-grid, .testimonials-grid, .blog-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .treatment-img, .blog-img {
    height: 180px;
  }

  .team-img {
    height: 250px;
  }
  
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-info-box, .contact-form-box {
    padding: 1.75rem 1.25rem;
    border-radius: var(--radius-md);
  }

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

  /* Input zoom prevention on iOS */
  .form-control {
    font-size: 16px;
  }

  /* Page Banner Mobile */
  .page-banner {
    padding: 2.5rem 0;
  }

  .page-banner h1 {
    font-size: 1.75rem;
  }

  /* Footer Mobile */
  .footer {
    padding: 3rem 0 1.5rem 0;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 2.5rem;
  }

  .footer-col h3 {
    margin-bottom: 1rem;
    font-size: 1.1rem;
  }

  .footer-links a {
    padding: 0.25rem 0;
    font-size: 0.95rem;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
  }

  /* Floating WhatsApp Mobile */
  .floating-whatsapp {
    bottom: 1.25rem;
    right: 1.25rem;
    width: 52px;
    height: 52px;
    font-size: 1.75rem;
  }
}

  /* Blog Detail & Sidebar Mobile Enhancements */
  .blog-meta-bar {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem 1.25rem;
    font-size: 0.85rem;
    color: #64748b;
    margin-bottom: 2rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
  }

  .blog-author-box {
    display: flex;
    flex-wrap: wrap;
    gap: 1.25rem;
    background: var(--light-bg);
    padding: 1.25rem;
    border-radius: var(--radius-md);
    align-items: center;
  }

  .sticky-sidebar {
    position: relative !important;
    top: 0 !important;
    margin-top: 2rem;
  }
}

@media (max-width: 480px) {
  .hero-content h1 {
    font-size: 1.75rem;
  }

  .btn {
    padding: 0.75rem 1.25rem;
    font-size: 0.9rem;
  }

  .btn-lg {
    padding: 0.85rem 1.5rem;
    font-size: 0.95rem;
  }

  .hero-stats {
    flex-direction: column;
    gap: 0.75rem;
  }

  .blog-author-box {
    flex-direction: column;
    text-align: center;
  }
}

