/*
 * Style Sheet for Noor Dental Clinic Ludhiana
 * Color Palette: Hospital Teal-Blue & Mint-Green
 * Design Style: Clean, Premium, Glassmorphic Accentuation, Interactive micro-interactions.
 */

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

/* CSS Variables */
:root {
  --primary-hsl: 194, 80%, 25%;
  --primary: hsl(var(--primary-hsl));
  --primary-light: hsl(194, 80%, 42%);
  --primary-dark: hsl(194, 80%, 15%);
  --primary-rgb: 13, 92, 117;
  
  --accent-hsl: 166, 56%, 40%;
  --accent: hsl(var(--accent-hsl));
  --accent-light: hsl(166, 56%, 55%);
  --accent-dark: hsl(166, 56%, 25%);
  --accent-rgb: 45, 159, 132;
  
  --bg-primary: #ffffff;
  --bg-secondary: #f4f9f9;
  --bg-dark: #121f24;
  --bg-card: #ffffff;
  
  --text-main: #1b2a30;
  --text-muted: #536c75;
  --text-white: #ffffff;
  
  --border-color: rgba(13, 92, 117, 0.08);
  --border-glow: rgba(45, 159, 132, 0.2);
  
  --font-heading: 'Outfit', sans-serif;
  --font-body: 'Inter', sans-serif;
  
  --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.04);
  --shadow-md: 0 8px 30px rgba(13, 92, 117, 0.06);
  --shadow-lg: 0 16px 40px rgba(13, 92, 117, 0.12);
  
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  
  --transition: all 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
  --transition-slow: all 0.5s cubic-bezier(0.25, 0.8, 0.25, 1);
  
  --max-width: 1200px;
}

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

html {
  scroll-behavior: smooth;
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font-body);
  color: var(--text-main);
  background-color: var(--bg-primary);
  line-height: 1.7;
  overflow-x: hidden;
}

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

h1 {
  font-size: 2.5rem;
}

h2 {
  font-size: 2rem;
  margin-bottom: 1rem;
}

h3 {
  font-size: 1.5rem;
  margin-bottom: 0.75rem;
}

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

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

button, input, textarea, select {
  font-family: inherit;
  font-size: inherit;
}

ul {
  list-style: none;
}

/* Utility Classes */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 1.5rem;
}

.text-center { text-align: center; }
.section-padding { padding: 5rem 0; }
.bg-secondary { background-color: var(--bg-secondary); }
.bg-dark-section { background-color: var(--bg-dark); color: var(--text-white); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2rem;
  font-weight: 600;
  border-radius: var(--radius-sm);
  transition: var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
  gap: 0.5rem;
}

.btn-primary {
  background-color: var(--primary);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(var(--primary-rgb), 0.3);
}

.btn-primary:hover {
  background-color: var(--primary-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--primary-rgb), 0.4);
}

.btn-accent {
  background-color: var(--accent);
  color: var(--text-white);
  box-shadow: 0 4px 15px rgba(var(--accent-rgb), 0.3);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(var(--accent-rgb), 0.4);
}

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

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

.btn-white {
  background-color: var(--text-white);
  color: var(--primary);
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}

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

/* Header & Navigation */
.top-bar {
  background-color: var(--primary-dark);
  color: var(--text-white);
  padding: 0.5rem 0;
  font-size: 0.85rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.top-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.top-bar-info {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.top-bar-info span {
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

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

.main-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 0;
}

.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-heading);
  font-weight: 800;
  font-size: 1.6rem;
  color: var(--primary);
}

.logo img {
  height: 48px;
  width: auto;
  object-fit: contain;
  display: block;
}

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

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

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

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

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

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

.hamburger {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--primary);
  cursor: pointer;
}

/* Hero Section & Slider */
.hero-slider-container {
  position: relative;
  height: 80vh;
  min-height: 500px;
  max-height: 750px;
  overflow: hidden;
  background-color: var(--bg-dark);
}

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

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

.slide-img-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.slide-img-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, rgba(18, 31, 36, 0.9) 30%, rgba(18, 31, 36, 0.4) 100%);
}

.hero-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-content {
  position: relative;
  z-index: 5;
  color: var(--text-white);
  max-width: 700px;
  padding: 0 1.5rem;
}

.hero-subtitle {
  font-family: var(--font-heading);
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 600;
  color: var(--accent-light);
  margin-bottom: 1rem;
  display: inline-block;
  font-size: 0.9rem;
  background: rgba(45, 159, 132, 0.15);
  padding: 0.35rem 1rem;
  border-radius: 50px;
  border: 1px solid rgba(45, 159, 132, 0.3);
}

.hero-title-main {
  font-size: clamp(2rem, 5vw, 3.8rem);
  font-family: var(--font-heading);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-white);
  margin-bottom: 1.5rem;
  text-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.hero-tagline-bold {
  font-size: clamp(1.2rem, 3vw, 1.8rem);
  text-transform: uppercase;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 1.5rem;
  background: linear-gradient(135deg, #ffffff 40%, var(--accent-light));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero-desc {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.85);
  margin-bottom: 2rem;
  max-width: 600px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

/* Slider Controls */
.slider-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 10;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--text-white);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}

.slider-arrow:hover {
  background: var(--accent);
  border-color: var(--accent);
  box-shadow: 0 0 15px rgba(45, 159, 132, 0.5);
  transform: translateY(-50%) scale(1.05);
}

.slider-arrow-left {
  left: 2rem;
}

.slider-arrow-right {
  right: 2rem;
}

.slider-dots {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  gap: 0.75rem;
}

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

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

/* Highlights Grid */
.highlights-container {
  margin-top: -4rem;
  position: relative;
  z-index: 20;
}

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

.highlight-card {
  background-color: var(--bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
  transition: var(--transition);
  display: flex;
  flex-direction: column;
}

.highlight-card:hover {
  transform: translateY(-8px);
  border-color: var(--accent-light);
  box-shadow: 0 20px 40px rgba(13, 92, 117, 0.1);
}

.highlight-icon {
  background: rgba(13, 92, 117, 0.06);
  color: var(--primary);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.5rem;
  font-size: 1.8rem;
  transition: var(--transition);
}

.highlight-card:hover .highlight-icon {
  background: var(--accent);
  color: var(--text-white);
  transform: rotateY(360deg);
}

.highlight-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.75rem;
}

.highlight-card p {
  color: var(--text-muted);
  font-size: 0.95rem;
  flex-grow: 1;
  margin-bottom: 1.25rem;
}

.highlight-link {
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--primary);
  display: flex;
  align-items: center;
  gap: 0.35rem;
}

.highlight-link:hover {
  color: var(--accent);
}

/* Intro Section */
.section-header {
  max-width: 700px;
  margin: 0 auto 3.5rem auto;
  text-align: center;
}

.section-tag {
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: var(--accent);
  display: block;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: 2.2rem;
  font-family: var(--font-heading);
  font-weight: 800;
  color: var(--primary-dark);
  position: relative;
  display: inline-block;
  padding-bottom: 0.75rem;
}

.section-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 3px;
  background-color: var(--accent);
  border-radius: 2px;
}

.section-desc {
  color: var(--text-muted);
  font-size: 1.1rem;
  margin-top: 1rem;
}

.intro-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 4rem;
  align-items: center;
}

.intro-text h2 {
  font-size: 2rem;
  margin-bottom: 1.5rem;
}

.intro-text p {
  margin-bottom: 1.25rem;
  color: var(--text-muted);
}

.intro-bullets {
  margin-top: 2rem;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.2rem;
}

.intro-bullet-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.intro-bullet-item svg {
  color: var(--accent);
  flex-shrink: 0;
}

.intro-image-container {
  position: relative;
}

.intro-image-container img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 8px solid var(--bg-primary);
}

.intro-image-badge {
  position: absolute;
  bottom: -2rem;
  left: -2rem;
  background: var(--accent);
  color: var(--text-white);
  padding: 1.5rem 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.intro-badge-num {
  font-size: 2.2rem;
  font-weight: 800;
  font-family: var(--font-heading);
  line-height: 1;
}

.intro-badge-lbl {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

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

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

.service-card-item:hover {
  transform: translateY(-6px);
  border-color: var(--accent-light);
  box-shadow: var(--shadow-lg);
}

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

.service-card-icon {
  background: rgba(45, 159, 132, 0.08);
  color: var(--accent);
  width: 50px;
  height: 50px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
  transition: var(--transition);
}

.service-card-item:hover .service-card-icon {
  background: var(--primary);
  color: var(--text-white);
}

.service-card-item h3 {
  font-size: 1.25rem;
  margin-bottom: 0.75rem;
}

.service-card-item p {
  color: var(--text-muted);
  font-size: 0.9rem;
  line-height: 1.6;
  margin-bottom: 1.5rem;
  flex-grow: 1;
}

.service-card-link {
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--primary);
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  margin-top: auto;
}

.service-card-link:hover {
  color: var(--accent);
}

/* Why Choose Us & Reviews */
.stats-banner {
  background: linear-gradient(135deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  padding: 4rem 0;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  margin-bottom: 5rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}

.stat-item {
  position: relative;
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  height: 70%;
  width: 1px;
  background-color: rgba(255, 255, 255, 0.15);
}

.stat-number {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 800;
  color: var(--accent-light);
  line-height: 1.1;
  margin-bottom: 0.25rem;
}

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

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

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

.testimonial-card:hover {
  transform: translateY(-4px);
  border-color: rgba(45, 159, 132, 0.3);
  box-shadow: var(--shadow-md);
}

.testimonial-quote {
  font-size: 0.95rem;
  color: var(--text-muted);
  font-style: italic;
  margin-bottom: 1.5rem;
  line-height: 1.65;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.testimonial-avatar {
  background: var(--bg-secondary);
  color: var(--primary);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  border: 2px solid var(--accent);
}

.testimonial-name {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1rem;
  color: var(--primary-dark);
}

.testimonial-location {
  font-size: 0.8rem;
  color: var(--text-muted);
}

.testimonial-stars {
  color: #ffb703;
  margin-bottom: 0.75rem;
  font-size: 0.9rem;
}

/* Contact Us Section */
.contact-section-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 3.5rem;
  background-color: var(--bg-card);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid var(--border-color);
}

.contact-info-panel {
  background: linear-gradient(150deg, var(--primary-dark), var(--primary));
  color: var(--text-white);
  padding: 3.5rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.contact-info-panel h2 {
  color: var(--text-white);
  margin-bottom: 1rem;
}

.contact-info-panel p {
  color: rgba(255, 255, 255, 0.8);
  margin-bottom: 2.5rem;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 1.75rem;
}

.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.contact-icon-bubble {
  background: rgba(255, 255, 255, 0.1);
  color: var(--accent-light);
  width: 45px;
  height: 45px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-detail h4 {
  color: var(--text-white);
  font-size: 1rem;
  margin-bottom: 0.25rem;
}

.contact-detail p, .contact-detail a {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.contact-detail a:hover {
  color: var(--accent-light);
}

.contact-socials-block {
  margin-top: 3rem;
}

.contact-socials-block h4 {
  color: var(--text-white);
  margin-bottom: 0.75rem;
}

.social-icons {
  display: flex;
  gap: 0.75rem;
}

.social-icon {
  background: rgba(255, 255, 255, 0.1);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}

.social-icon:hover {
  background: var(--accent);
  color: var(--text-white);
  transform: translateY(-3px);
}

.contact-form-panel {
  padding: 3.5rem;
}

.contact-form-panel h3 {
  font-size: 1.75rem;
  margin-bottom: 0.5rem;
}

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

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  margin-bottom: 1.5rem;
}

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

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--primary-dark);
}

.form-input {
  padding: 0.85rem 1rem;
  border: 1px solid var(--border-color);
  background-color: var(--bg-secondary);
  border-radius: var(--radius-sm);
  color: var(--text-main);
  transition: var(--transition);
  outline: none;
}

.form-input:focus {
  background-color: var(--bg-primary);
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--border-glow);
}

.form-message {
  margin-top: 1rem;
  padding: 1rem;
  border-radius: var(--radius-sm);
  font-size: 0.9rem;
  display: none;
}

.form-message.success {
  background: rgba(45, 159, 132, 0.1);
  color: var(--accent-dark);
  border: 1px solid var(--accent);
  display: block;
}

.form-message.error {
  background: rgba(220, 38, 38, 0.1);
  color: #b91c1c;
  border: 1px solid #dc2626;
  display: block;
}

/* Map Embed */
.map-container-wrapper {
  margin-top: 4rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  border: 1px solid var(--border-color);
}

.map-container-wrapper iframe {
  display: block;
  width: 100%;
  height: 450px;
  border: 0;
}

/* Footer Section */
.main-footer {
  background-color: var(--bg-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 5rem 0 2rem 0;
  font-size: 0.9rem;
  border-top: 3px solid var(--accent);
}

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

.footer-col h3 {
  color: var(--text-white);
  font-size: 1.2rem;
  font-family: var(--font-heading);
  margin-bottom: 1.75rem;
  position: relative;
  padding-bottom: 0.5rem;
}

.footer-col h3::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 35px;
  height: 2px;
  background-color: var(--accent);
}

.footer-about-logo {
  margin-bottom: 1.25rem;
}

.footer-about-text {
  margin-bottom: 1.5rem;
  line-height: 1.6;
}

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

.footer-links-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

.footer-links-list a:hover {
  color: var(--accent-light);
  transform: translateX(3px);
}

.footer-contact-info {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.footer-contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.footer-contact-info-item svg {
  color: var(--accent-light);
  flex-shrink: 0;
  margin-top: 0.2rem;
}

.footer-contact-info-item a:hover {
  color: var(--text-white);
}

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

.footer-legal-links {
  display: flex;
  gap: 1.5rem;
}

.footer-legal-links a:hover {
  color: var(--text-white);
}

/* Floating WhatsApp Widget */
.whatsapp-float {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  background-color: #25d366;
  color: #ffffff;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
  z-index: 9999;
  font-size: 2rem;
  transition: var(--transition);
  animation: pulse-whatsapp 2s infinite;
}

.whatsapp-float:hover {
  background-color: #128c7e;
  transform: scale(1.1);
  box-shadow: 0 6px 25px rgba(18, 140, 126, 0.6);
}

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

/* ABOUT PAGE Specifics */
.about-hero {
  background: linear-gradient(135deg, rgba(13, 92, 117, 0.95), rgba(18, 31, 36, 0.95)), url('../images/clinic_interior.png') no-repeat center center/cover;
  padding: 5rem 0;
  text-align: center;
  color: var(--text-white);
}

.about-hero-title {
  font-size: 2.8rem;
  color: var(--text-white);
  margin-bottom: 0.5rem;
}

.breadcrumbs {
  font-size: 0.9rem;
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  color: rgba(255, 255, 255, 0.7);
}

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

.about-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.about-img-box {
  position: relative;
}

.about-img-box img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
}

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

.value-card {
  background: var(--bg-card);
  border: 1px solid var(--border-color);
  padding: 2rem;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-sm);
  text-align: center;
  transition: var(--transition);
}

.value-card:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.value-card-icon {
  background: rgba(45, 159, 132, 0.06);
  color: var(--accent);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.6rem;
  margin: 0 auto 1.25rem auto;
}

.value-card h3 {
  font-size: 1.2rem;
  margin-bottom: 0.5rem;
}

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

/* Bio Section */
.bio-wrapper {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 4rem;
  align-items: center;
}

.bio-img-frame {
  border: 12px solid var(--bg-secondary);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}

.bio-content h2 {
  font-size: 2.2rem;
  margin-bottom: 0.25rem;
}

.bio-deg {
  color: var(--accent);
  font-weight: 700;
  font-size: 1.1rem;
  margin-bottom: 1.5rem;
  display: block;
}

.bio-content p {
  color: var(--text-muted);
  margin-bottom: 1.25rem;
}

/* SERVICES PAGE Specifics */
.services-detail-list {
  display: flex;
  flex-direction: column;
  gap: 5rem;
}

.service-detail-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

.service-detail-block:nth-child(even) {
  direction: rtl;
}

.service-detail-block:nth-child(even) .service-detail-content {
  direction: ltr;
}

.service-detail-block:nth-child(even) .service-detail-img {
  direction: ltr;
}

.service-detail-content h2 {
  font-size: 2.2rem;
  margin-bottom: 1rem;
}

.service-detail-content p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.service-features-list {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.service-feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--primary-dark);
}

.service-feature-item svg {
  color: var(--accent);
}

.service-detail-img img {
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--border-color);
}

/* Smile Gallery Page Grid */
.gallery-grid-layout {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.gallery-card {
  background: var(--bg-card);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.gallery-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: var(--accent);
}

.gallery-img-holder {
  height: 250px;
  position: relative;
  overflow: hidden;
}

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

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

.gallery-card-content {
  padding: 1.5rem;
}

.gallery-card-tag {
  color: var(--accent);
  font-weight: 700;
  font-size: 0.8rem;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
  display: block;
}

.gallery-card-title {
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-bottom: 0.75rem;
}

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

/* Interactive FAQ Accordion */
.faq-accordion-container {
  max-width: 800px;
  margin: 0 auto;
}

.faq-accordion-item {
  background: var(--bg-card);
  border-radius: var(--radius-sm);
  margin-bottom: 1rem;
  border: 1px solid var(--border-color);
  box-shadow: var(--shadow-sm);
  overflow: hidden;
  transition: var(--transition);
}

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

.faq-accordion-header {
  padding: 1.25rem 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  background-color: var(--bg-card);
  transition: var(--transition);
}

.faq-accordion-header h3 {
  font-size: 1.1rem;
  margin-bottom: 0;
  font-weight: 600;
  color: var(--primary-dark);
}

.faq-accordion-arrow {
  color: var(--primary);
  transition: var(--transition);
  font-size: 1.2rem;
  display: flex;
  align-items: center;
}

.faq-accordion-item.active .faq-accordion-arrow {
  transform: rotate(180deg);
  color: var(--accent);
}

.faq-accordion-item.active .faq-accordion-header {
  background-color: var(--bg-secondary);
}

.faq-accordion-content {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.faq-accordion-content-inner {
  padding: 1.5rem;
  border-top: 1px solid var(--border-color);
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

/* CONTACT PAGE Layout specifics */
.contact-grid-top {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-bottom: 4rem;
}

.contact-card-top {
  background-color: var(--bg-card);
  padding: 2.2rem;
  border-radius: var(--radius-md);
  text-align: center;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  transition: var(--transition);
}

.contact-card-top:hover {
  transform: translateY(-4px);
  border-color: var(--accent);
  box-shadow: var(--shadow-md);
}

.contact-card-top-icon {
  background: rgba(13, 92, 117, 0.05);
  color: var(--primary);
  width: 55px;
  height: 55px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin: 0 auto 1.25rem auto;
}

.contact-card-top h3 {
  font-size: 1.25rem;
  margin-bottom: 0.5rem;
}

.contact-card-top p {
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.6;
}

.contact-card-top a {
  color: var(--primary);
  font-weight: 600;
}

.contact-card-top a:hover {
  color: var(--accent);
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .intro-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .about-row {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .bio-wrapper {
    grid-template-columns: 1fr;
    gap: 3rem;
    text-align: center;
  }
  
  .bio-img-frame {
    max-width: 320px;
    margin: 0 auto;
  }
  
  .contact-section-wrapper {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlights-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .highlights-container {
    margin-top: -2rem;
  }
  
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .gallery-grid-layout {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .service-detail-block {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .service-detail-block:nth-child(even) {
    direction: ltr;
  }
}

@media (max-width: 768px) {
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.75rem; }
  h3 { font-size: 1.35rem; }
  .section-title { font-size: 1.8rem; }
  
  .top-bar {
    display: none; /* Hide top bar on mobile to save space */
  }
  
  .hamburger {
    display: block;
  }
  
  .nav-menu {
    position: fixed;
    top: 60px; /* Header height */
    left: -100%;
    width: 100%;
    height: calc(100vh - 60px);
    background-color: var(--bg-primary);
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    padding-top: 3rem;
    gap: 2rem;
    box-shadow: 0 10px 15px rgba(0, 0, 0, 0.05);
    transition: var(--transition);
    z-index: 999;
  }
  
  .nav-menu.active {
    left: 0;
  }
  
  .hero-slider-container {
    height: 70vh;
  }
  
  .slider-arrow {
    width: 45px;
    height: 45px;
  }
  
  .slider-arrow-left { left: 1rem; }
  .slider-arrow-right { right: 1rem; }
  
  .highlights-grid {
    grid-template-columns: 1fr;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
  }
  
  .stat-item:nth-child(2)::after {
    display: none;
  }
  
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
  
  .contact-grid-top {
    grid-template-columns: 1fr;
  }
  
  .gallery-grid-layout {
    grid-template-columns: 1fr;
  }
  
  .form-grid {
    grid-template-columns: 1fr;
  }
  
  .form-group-full {
    grid-column: span 1;
  }
  
  .contact-info-panel, .contact-form-panel {
    padding: 2rem 1.5rem;
  }
  
  .value-cards, .about-value-cards {
    grid-template-columns: 1fr;
  }
  
  .footer-columns {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
  
  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 1.5rem;
  }
  
  .whatsapp-float {
    bottom: 1.5rem;
    right: 1.5rem;
    width: 50px;
    height: 50px;
    font-size: 1.6rem;
  }
}
