@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700;800&family=Playfair+Display:ital,wght@0,400;0,600;0,700;0,800;1,400&display=swap');
@import url('https://cdn.jsdelivr.net/npm/remixicon@3.5.0/fonts/remixicon.css');

:root {
  /* Premium Palette */
  --primary-dark: #0f172a;    /* Slate Blue / Charcoal */
  --primary: #0284c7;         /* Clean Cyan Blue */
  --primary-hover: #0369a1;
  --primary-light: #e0f2fe;   /* Ice Blue */
  --accent: #0d9488;          /* Clinical Teal */
  --accent-hover: #0f766e;
  --accent-light: #f0fdfa;    /* Mint White */
  --text-dark: #1e293b;
  --text-muted: #64748b;
  --bg-light: #f8fafc;
  --bg-white: #ffffff;
  --border-color: #e2e8f0;
  
  /* Gradation & Shadows */
  --gradient-primary: linear-gradient(135deg, #0284c7 0%, #0d9488 100%);
  --gradient-dark: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
  --gradient-light: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  --shadow-sm: 0 2px 4px rgba(15, 23, 42, 0.05);
  --shadow-md: 0 10px 25px rgba(15, 23, 42, 0.08);
  --shadow-lg: 0 20px 40px rgba(15, 23, 42, 0.12);
  --shadow-accent: 0 10px 20px rgba(13, 148, 136, 0.15);
  --shadow-primary: 0 10px 20px rgba(2, 132, 199, 0.15);
  
  /* Border Radius & Transitions */
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-full: 9999px;
  --transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --font-serif: 'Playfair Display', serif;
  --font-sans: 'Outfit', sans-serif;
}

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

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

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

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

p {
  color: var(--text-muted);
  font-weight: 400;
}

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

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

/* Custom Scrollbar */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: var(--bg-light);
}
::-webkit-scrollbar-thumb {
  background: var(--border-color);
  border-radius: var(--radius-full);
}
::-webkit-scrollbar-thumb:hover {
  background: var(--text-muted);
}

/* Utility Classes */
.section {
  padding: 80px 0;
  position: relative;
}
.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.section-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px auto;
}
.section-subtitle {
  color: var(--accent);
  text-transform: uppercase;
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 2px;
  margin-bottom: 12px;
  display: block;
}
.section-title {
  font-size: 2.5rem;
  margin-bottom: 16px;
}
.text-gradient {
  background: var(--gradient-primary);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 28px;
  font-size: 0.95rem;
  font-weight: 600;
  border-radius: var(--radius-full);
  transition: var(--transition);
  cursor: pointer;
  border: none;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--gradient-primary);
  color: var(--bg-white);
  box-shadow: var(--shadow-primary);
}
.btn-primary:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(2, 132, 199, 0.25);
  background: linear-gradient(135deg, #0369a1 0%, #0f766e 100%);
}
.btn-secondary {
  background: var(--bg-white);
  color: var(--primary-dark);
  border: 1px solid var(--border-color);
}
.btn-secondary:hover {
  transform: translateY(-3px);
  background: var(--primary-light);
  border-color: var(--primary);
  color: var(--primary);
}
.btn-accent {
  background: var(--accent);
  color: var(--bg-white);
  box-shadow: var(--shadow-accent);
}
.btn-accent:hover {
  transform: translateY(-3px);
  box-shadow: 0 15px 30px rgba(13, 148, 136, 0.25);
  background: var(--accent-hover);
}

/* Glassmorphism Badge */
.badge-glass {
  background: rgba(255, 255, 255, 0.7);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.4);
  padding: 6px 16px;
  border-radius: var(--radius-full);
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--accent);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* Top Notification Bar */
.topbar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.8);
  padding: 10px 0;
  font-size: 0.85rem;
}
.topbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}
.topbar-info {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.topbar-item {
  display: flex;
  align-items: center;
  gap: 6px;
}
.topbar-item a:hover {
  color: var(--primary-light);
}

/* Header & Navbar */
header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  transition: var(--transition);
}
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 0;
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}
.logo-icon {
  width: 44px;
  height: 44px;
  background: var(--gradient-primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.5rem;
  box-shadow: var(--shadow-primary);
}
.logo-text h1 {
  font-size: 1.25rem;
  font-weight: 800;
  line-height: 1.1;
  font-family: var(--font-sans);
}
.logo-text span {
  font-size: 0.75rem;
  color: var(--accent);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.nav-menu {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
}
.nav-link {
  font-size: 0.95rem;
  font-weight: 550;
  color: var(--text-dark);
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: var(--transition);
}
.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}
.nav-link:hover,
.nav-link.active {
  color: var(--primary);
}
.hamburger {
  display: none;
  font-size: 1.75rem;
  cursor: pointer;
  color: var(--primary-dark);
  transition: var(--transition);
}

/* Home Hero Section */
.hero {
  padding: 60px 0 100px 0;
  background: radial-gradient(circle at 80% 20%, rgba(224, 242, 254, 0.6) 0%, rgba(248, 250, 252, 1) 70%);
  position: relative;
  overflow: hidden;
}
.hero-wrapper {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}
.hero-badge {
  margin-bottom: 20px;
}
.hero-title {
  font-size: 3.5rem;
  margin-bottom: 24px;
}
.hero-description {
  font-size: 1.125rem;
  margin-bottom: 36px;
  line-height: 1.7;
}
.hero-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  border-top: 1px solid var(--border-color);
  padding-top: 30px;
}
.stat-item h3 {
  font-size: 2rem;
  color: var(--primary);
  font-family: var(--font-sans);
  font-weight: 700;
  line-height: 1;
  margin-bottom: 4px;
}
.stat-item p {
  font-size: 0.85rem;
  font-weight: 500;
}
.hero-image-wrapper {
  position: relative;
  display: flex;
  justify-content: center;
}
.hero-image-bg {
  position: absolute;
  width: 100%;
  height: 100%;
  max-width: 440px;
  max-height: 440px;
  background: var(--gradient-primary);
  border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%;
  opacity: 0.15;
  animation: morphing 15s ease-in-out infinite;
  z-index: 1;
}
.hero-image-card {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 4px solid var(--bg-white);
  max-width: 380px;
  transition: var(--transition);
}
.hero-image-card:hover {
  transform: translateY(-5px) scale(1.02);
}
.hero-floating-badge {
  position: absolute;
  bottom: 30px;
  left: -20px;
  z-index: 3;
  box-shadow: var(--shadow-lg);
}

@keyframes morphing {
  0% { border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; }
  50% { border-radius: 60% 40% 40% 60% / 50% 60% 30% 50%; }
  100% { border-radius: 40% 60% 60% 40% / 40% 50% 50% 60%; }
}

/* Specialties Section */
.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 30px;
}
.specialty-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  transition: var(--transition);
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.specialty-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 0;
  background: var(--gradient-primary);
  transition: var(--transition);
}
.specialty-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(2, 132, 199, 0.2);
}
.specialty-card:hover::before {
  height: 100%;
}
.specialty-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-sm);
  background: var(--primary-light);
  color: var(--primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  margin-bottom: 24px;
  transition: var(--transition);
}
.specialty-card:hover .specialty-icon {
  background: var(--gradient-primary);
  color: var(--bg-white);
  transform: scale(1.05);
}
.specialty-card h3 {
  font-size: 1.3rem;
  margin-bottom: 12px;
}
.specialty-card p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.specialty-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.85rem;
  font-weight: 700;
  color: var(--primary);
}
.specialty-link i {
  transition: var(--transition);
}
.specialty-card:hover .specialty-link i {
  transform: translateX(4px);
}

/* About Section */
.about-teaser {
  background-color: var(--bg-white);
}
.about-teaser-wrapper {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 60px;
  align-items: center;
}
.about-teaser-img {
  position: relative;
}
.about-teaser-img::before {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: -15px;
  left: -15px;
  border: 3px solid var(--accent);
  border-radius: var(--radius-md);
  z-index: 1;
}
.about-teaser-img img {
  position: relative;
  z-index: 2;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-md);
  width: 100%;
  max-width: 450px;
}
.about-teaser-content h2 {
  font-size: 2.25rem;
  margin-bottom: 20px;
}
.about-teaser-content p {
  font-size: 1.05rem;
  line-height: 1.7;
  margin-bottom: 30px;
}
.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 40px;
}
.about-feature-item {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  font-size: 0.95rem;
}
.about-feature-item i {
  color: var(--accent);
  font-size: 1.25rem;
}

/* YouTube Video Section */
.video-section {
  background-color: #f1f5f9;
}
.video-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.video-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: var(--transition);
  border: 1px solid var(--border-color);
}
.video-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.video-container {
  position: relative;
  padding-bottom: 56.25%; /* 16:9 ratio */
  height: 0;
  overflow: hidden;
  background: #000;
}
.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 0;
}
.video-cover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.4s ease;
  z-index: 5;
}
.video-container:hover .video-cover {
  transform: scale(1.03);
}
.video-play-btn {
  width: 60px;
  height: 60px;
  background: var(--gradient-primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 2rem;
  box-shadow: var(--shadow-lg);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  padding-left: 4px;
  z-index: 10;
}
.video-container:hover .video-play-btn {
  transform: scale(1.1);
  box-shadow: 0 0 0 8px rgba(13, 148, 136, 0.2);
}
.video-info {
  padding: 16px 20px;
}
.video-info h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}

/* Testimonial Section */
.reviews-section {
  background: var(--gradient-dark);
  color: var(--bg-white);
  position: relative;
  overflow: hidden;
}
.reviews-section .section-title, 
.reviews-section .section-header p {
  color: var(--bg-white);
}
.reviews-section .section-subtitle {
  color: var(--primary-light);
}
.reviews-container {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}
.reviews-wrapper {
  overflow: hidden;
  position: relative;
  min-height: 250px;
}
.review-slide {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  padding: 40px;
  border-radius: var(--radius-md);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  opacity: 0;
  transform: translateX(50px);
  transition: all 0.6s ease;
  pointer-events: none;
}
.review-slide.active {
  opacity: 1;
  transform: translateX(0);
  position: relative;
  pointer-events: auto;
}
.review-rating {
  color: #fbbf24;
  margin-bottom: 16px;
  font-size: 1.25rem;
}
.review-content {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  font-style: italic;
  margin-bottom: 24px;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.7;
}
.review-author {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.author-name {
  font-weight: 700;
  font-size: 1.05rem;
}
.author-city {
  font-size: 0.85rem;
  color: var(--primary-light);
}
.reviews-nav {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 30px;
}
.review-btn {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-full);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: var(--bg-white);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: var(--transition);
}
.review-btn:hover {
  background: var(--gradient-primary);
  border-color: transparent;
}

/* FAQ Accordion Section */
.faq-section {
  background-color: var(--bg-light);
}
.faq-container {
  max-width: 800px;
  margin: 0 auto;
}
.faq-item {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-sm);
  margin-bottom: 16px;
  overflow: hidden;
  transition: var(--transition);
}
.faq-item:hover,
.faq-item.active {
  box-shadow: var(--shadow-sm);
  border-color: rgba(2, 132, 199, 0.3);
}
.faq-header {
  padding: 20px 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}
.faq-header h3 {
  font-family: var(--font-sans);
  font-size: 1.1rem;
  font-weight: 600;
}
.faq-icon {
  width: 32px;
  height: 32px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: var(--transition);
}
.faq-item.active .faq-icon {
  transform: rotate(180deg);
  background: var(--gradient-primary);
  color: var(--bg-white);
}
.faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0, 1, 0, 1);
}
.faq-content {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-muted);
}
.faq-item.active .faq-body {
  max-height: 1000px;
  transition: max-height 0.4s cubic-bezier(1, 0, 1, 0);
}

/* Blog Summary / Cards */
.blog-section {
  background-color: var(--bg-white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 30px;
}
.blog-card {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: var(--transition);
}
.blog-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
}
.blog-img {
  position: relative;
  overflow: hidden;
  padding-bottom: 56.25%; /* 16:9 ratio */
  background-color: var(--primary-light);
}
.blog-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: var(--transition);
}
.blog-card:hover .blog-img img {
  transform: scale(1.05);
}
.blog-category {
  position: absolute;
  top: 15px;
  left: 15px;
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 4px 12px;
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: var(--shadow-accent);
}
.blog-details {
  padding: 24px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}
.blog-meta {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 12px;
}
.blog-meta span {
  display: flex;
  align-items: center;
  gap: 4px;
}
.blog-details h3 {
  font-size: 1.25rem;
  margin-bottom: 12px;
  line-height: 1.35;
}
.blog-details p {
  font-size: 0.9rem;
  margin-bottom: 20px;
  flex-grow: 1;
}
.blog-read-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  color: var(--primary);
  font-weight: 700;
  font-size: 0.85rem;
}
.blog-read-btn i {
  transition: var(--transition);
}
.blog-card:hover .blog-read-btn i {
  transform: translateX(4px);
}

/* Call to Action (CTA) Section */
.cta-section {
  background: var(--gradient-primary);
  color: var(--bg-white);
  padding: 60px 0;
  text-align: center;
}
.cta-wrapper {
  max-width: 800px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}
.cta-wrapper h2 {
  color: var(--bg-white);
  font-size: 2.25rem;
}
.cta-wrapper p {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  margin-bottom: 10px;
}
.cta-btns {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}
.btn-white {
  background-color: var(--bg-white);
  color: var(--primary);
}
.btn-white:hover {
  background-color: var(--primary-light);
  transform: translateY(-3px);
}
.btn-outline-white {
  background-color: transparent;
  border: 2px solid var(--bg-white);
  color: var(--bg-white);
}
.btn-outline-white:hover {
  background-color: var(--bg-white);
  color: var(--primary);
  transform: translateY(-3px);
}

/* Contact Footer & Map */
footer {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 60px 0 20px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1fr;
  gap: 50px;
  margin-bottom: 50px;
}
.footer-logo {
  color: var(--bg-white);
  margin-bottom: 20px;
}
.footer-logo-icon {
  background: var(--bg-white);
  color: var(--primary);
}
.footer-desc {
  font-size: 0.9rem;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 12px;
}
.social-icon {
  width: 40px;
  height: 40px;
  background: rgba(255, 255, 255, 0.05);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  transition: var(--transition);
}
.social-icon:hover {
  background: var(--gradient-primary);
  transform: translateY(-3px);
}
.footer-title {
  color: var(--bg-white);
  font-size: 1.2rem;
  font-family: var(--font-sans);
  margin-bottom: 24px;
  position: relative;
  padding-bottom: 8px;
}
.footer-title::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 40px;
  height: 2px;
  background: var(--primary);
}
.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}
.footer-links a:hover {
  color: var(--primary);
  padding-left: 4px;
}
.footer-contact-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-size: 0.9rem;
}
.footer-contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  color: rgba(255, 255, 255, 0.7);
  transition: var(--transition);
  text-decoration: none;
}
.footer-contact-item:hover {
  color: var(--primary-light);
}
.footer-contact-item i {
  color: var(--primary);
  font-size: 1.35rem;
  margin-top: 2px;
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.footer-contact-item div h4 {
  color: var(--bg-white);
  font-size: 0.95rem;
  margin: 0 0 2px 0;
  font-weight: 600;
}
.footer-contact-item div p {
  font-size: 0.875rem;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.4;
  margin: 0;
}
.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  padding-top: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 0.85rem;
}

/* Page Header component for secondary pages */
.page-header {
  padding: 60px 0;
  background: var(--gradient-dark);
  color: var(--bg-white);
  text-align: center;
  position: relative;
}
.page-header h1 {
  color: var(--bg-white);
  font-size: 2.75rem;
  margin-bottom: 12px;
}
.breadcrumbs {
  display: flex;
  justify-content: center;
  gap: 8px;
  font-size: 0.875rem;
  color: var(--primary-light);
}
.breadcrumbs a:hover {
  color: var(--bg-white);
}

/* Hakkımda (Bio) Page */
.bio-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 50px;
  align-items: start;
}
.bio-sidebar {
  background: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  position: sticky;
  top: 120px;
}
.bio-img-container {
  border-radius: var(--radius-md);
  overflow: hidden;
  margin-bottom: 24px;
  border: 2px solid var(--border-color);
}
.bio-sidebar h2 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.bio-sidebar .badge-glass {
  background-color: var(--bg-light);
  margin-bottom: 20px;
}
.bio-info-box {
  border-top: 1px solid var(--border-color);
  padding-top: 20px;
}
.bio-info-row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 0.9rem;
}
.bio-info-label {
  font-weight: 600;
  color: var(--text-dark);
}
.bio-info-val {
  color: var(--text-muted);
}
.timeline-section {
  margin-top: 40px;
}
.timeline-section h3 {
  font-size: 1.5rem;
  margin-bottom: 24px;
  border-left: 4px solid var(--accent);
  padding-left: 12px;
}
.timeline {
  position: relative;
  padding-left: 20px;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 0;
  top: 4px;
  bottom: 4px;
  width: 2px;
  background-color: var(--border-color);
}
.timeline-item {
  position: relative;
  margin-bottom: 24px;
}
.timeline-item::before {
  content: '';
  position: absolute;
  left: -24px;
  top: 4px;
  width: 10px;
  height: 10px;
  border-radius: var(--radius-full);
  background-color: var(--bg-white);
  border: 2px solid var(--accent);
}
.timeline-item.active::before {
  background-color: var(--accent);
}
.timeline-year {
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--accent);
  margin-bottom: 4px;
}
.timeline-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--primary-dark);
}
.timeline-place {
  font-size: 0.85rem;
  color: var(--text-muted);
}

/* Specialties (Uzmanlıklar) Page */
.specialties-tabs {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 40px;
}
.tab-btn {
  padding: 10px 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-white);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 600;
  cursor: pointer;
  transition: var(--transition);
}
.tab-btn.active,
.tab-btn:hover {
  background: var(--gradient-primary);
  color: var(--bg-white);
  border-color: transparent;
  box-shadow: var(--shadow-primary);
}
.specialty-detail-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
  margin-bottom: 40px;
  display: none;
  animation: fadeIn 0.5s ease forwards;
}
.specialty-detail-card.active {
  display: block;
}
.specialty-detail-header {
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.specialty-detail-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.specialty-detail-header h2 {
  font-size: 2rem;
}
.specialty-detail-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  margin-bottom: 20px;
  color: var(--text-dark);
}
.specialty-detail-body p:last-child {
  margin-bottom: 0;
}

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

/* Contact (İletişim) Page */
.contact-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 50px;
}
.contact-info-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-info-card h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-detail-item {
  display: flex;
  gap: 16px;
}
.contact-detail-icon {
  width: 48px;
  height: 48px;
  background: var(--accent-light);
  color: var(--accent);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.3rem;
  flex-shrink: 0;
}
.contact-detail-content h4 {
  font-family: var(--font-sans);
  font-size: 1rem;
  margin-bottom: 4px;
}
.contact-detail-content p,
.contact-detail-content a {
  font-size: 0.95rem;
  color: var(--text-muted);
}
.contact-detail-content a:hover {
  color: var(--primary);
}
.contact-form-card {
  background-color: var(--bg-white);
  border: 1px solid var(--border-color);
  border-radius: var(--radius-md);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h2 {
  font-size: 1.75rem;
  margin-bottom: 24px;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 20px;
}
.form-group {
  margin-bottom: 20px;
}
.form-group label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 8px;
  color: var(--text-dark);
}
.form-control {
  width: 100%;
  padding: 14px 20px;
  border: 1px solid var(--border-color);
  background: var(--bg-light);
  border-radius: var(--radius-sm);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: var(--transition);
  color: var(--text-dark);
}
.form-control:focus {
  outline: none;
  border-color: var(--primary);
  background: var(--bg-white);
  box-shadow: 0 0 0 4px rgba(2, 132, 199, 0.1);
}
textarea.form-control {
  resize: vertical;
  min-height: 120px;
}
.contact-map {
  margin-top: 50px;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  height: 400px;
}
.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* Floating Quick Actions Widgets */
.floating-widgets {
  position: fixed;
  bottom: 30px;
  right: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 999;
}
.floating-btn {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bg-white);
  font-size: 1.75rem;
  box-shadow: var(--shadow-lg);
  cursor: pointer;
  transition: var(--transition);
  position: relative;
}
.floating-btn:hover {
  transform: translateY(-5px) scale(1.05);
}
.floating-whatsapp {
  background-color: #25d366;
}
.floating-phone {
  background-color: var(--primary);
}
.floating-pulse {
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: var(--radius-full);
  background: inherit;
  opacity: 0.6;
  z-index: -1;
  animation: pulse-widget 2s infinite;
}

@keyframes pulse-widget {
  0% { transform: scale(1); opacity: 0.6; }
  100% { transform: scale(1.6); opacity: 0; }
}

/* Blog Article Modal (Popup) */
.blog-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(15, 23, 42, 0.7);
  backdrop-filter: blur(8px);
  z-index: 2000;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: var(--transition);
}
.blog-modal.active {
  opacity: 1;
  pointer-events: auto;
}
.blog-modal-container {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  max-width: 800px;
  width: 90%;
  max-height: 85vh;
  overflow-y: auto;
  box-shadow: var(--shadow-lg);
  position: relative;
  transform: translateY(30px);
  transition: var(--transition);
}
.blog-modal.active .blog-modal-container {
  transform: translateY(0);
}
.blog-modal-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 40px;
  height: 40px;
  background: var(--bg-light);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  color: var(--primary-dark);
  cursor: pointer;
  z-index: 10;
  transition: var(--transition);
}
.blog-modal-close:hover {
  background: var(--primary-dark);
  color: var(--bg-white);
}
.blog-modal-banner {
  height: 350px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.blog-modal-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(180deg, rgba(15, 23, 42, 0) 40%, rgba(15, 23, 42, 0.8) 100%);
}
.blog-modal-header-text {
  position: absolute;
  bottom: 30px;
  left: 30px;
  right: 30px;
  color: var(--bg-white);
}
.blog-modal-header-text h2 {
  color: var(--bg-white);
  font-size: 2rem;
  margin-top: 8px;
}
.blog-modal-content {
  padding: 40px;
  font-size: 1.05rem;
  line-height: 1.8;
  color: var(--text-dark);
}
.blog-modal-content p {
  margin-bottom: 20px;
  color: var(--text-dark);
}
.blog-modal-content h3 {
  font-size: 1.5rem;
  margin-top: 30px;
  margin-bottom: 16px;
}

/* CMS Admin Styles */
.admin-lock-screen {
  background: var(--gradient-dark);
  height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 3000;
  transition: var(--transition);
}
.admin-lock-screen.hidden {
  opacity: 0;
  pointer-events: none;
}
.lock-card {
  background: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 40px;
  width: 100%;
  max-width: 420px;
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.lock-icon {
  width: 64px;
  height: 64px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: var(--radius-full);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  margin: 0 auto 24px auto;
}
.lock-card h2 {
  margin-bottom: 8px;
}
.lock-card p {
  margin-bottom: 24px;
}
.admin-layout {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}
.admin-sidebar {
  background-color: var(--primary-dark);
  color: rgba(255, 255, 255, 0.7);
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  border-right: 1px solid rgba(255, 255, 255, 0.05);
}
.admin-sidebar-header {
  display: flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  margin-bottom: 30px;
}
.admin-sidebar-header i {
  font-size: 1.5rem;
  color: var(--primary);
}
.admin-sidebar-header h2 {
  color: var(--bg-white);
  font-family: var(--font-sans);
  font-size: 1.15rem;
}
.admin-nav {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.admin-nav-link {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: var(--transition);
}
.admin-nav-link:hover,
.admin-nav-link.active {
  background: rgba(255, 255, 255, 0.05);
  color: var(--bg-white);
}
.admin-nav-link.active i {
  color: var(--primary);
}
.admin-logout {
  margin-top: auto;
  color: #ef4444;
}
.admin-logout:hover {
  background: rgba(239, 68, 68, 0.1);
  color: #ef4444;
}
.admin-content {
  background-color: #f1f5f9;
  padding: 40px;
  overflow-y: auto;
  max-height: 100vh;
}
.admin-content-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 20px;
}
.admin-content-header h1 {
  font-size: 2rem;
  font-family: var(--font-sans);
}
.admin-panel-section {
  display: none;
}
.admin-panel-section.active {
  display: block;
}
.admin-card {
  background-color: var(--bg-white);
  border-radius: var(--radius-md);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--border-color);
  margin-bottom: 30px;
}
.admin-card-title {
  font-size: 1.25rem;
  font-family: var(--font-sans);
  font-weight: 700;
  margin-bottom: 20px;
  border-bottom: 1px solid var(--border-color);
  padding-bottom: 10px;
}
.admin-notification {
  position: fixed;
  top: 30px;
  right: 30px;
  padding: 16px 24px;
  background-color: #10b981;
  color: var(--bg-white);
  border-radius: var(--radius-sm);
  box-shadow: var(--shadow-lg);
  font-weight: 600;
  z-index: 3000;
  transform: translateY(-20px);
  opacity: 0;
  transition: var(--transition);
  display: flex;
  align-items: center;
  gap: 10px;
}
.admin-notification.active {
  transform: translateY(0);
  opacity: 1;
}

/* WYSIWYG Rich Text Editor styling */
.wysiwyg-container {
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border-color);
  border-radius: 8px;
  overflow: hidden;
  background: white;
  margin-top: 8px;
  margin-bottom: 16px;
}
.wysiwyg-toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 8px 12px;
  background: #f8fafc;
  border-bottom: 1px solid var(--border-color);
  align-items: center;
}
.wysiwyg-btn {
  background: transparent;
  border: 1px solid transparent;
  border-radius: 4px;
  color: var(--text-dark);
  font-size: 0.95rem;
  padding: 6px 10px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: all 0.2s ease;
  font-weight: 600;
}
.wysiwyg-btn:hover {
  background: rgba(13, 148, 136, 0.08);
  color: var(--primary);
  border-color: rgba(13, 148, 136, 0.15);
}
.wysiwyg-btn.active {
  background: var(--primary);
  color: white;
  border-color: var(--primary);
}
.wysiwyg-editor {
  min-height: 250px;
  max-height: 400px;
  padding: 16px;
  outline: none;
  font-family: var(--font-sans);
  color: var(--text-dark);
  line-height: 1.6;
  overflow-y: auto;
  text-align: left;
}
.wysiwyg-editor p {
  margin-bottom: 12px;
}
.wysiwyg-editor h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--primary);
  margin-top: 18px;
  margin-bottom: 10px;
  font-weight: 700;
}
.wysiwyg-editor h4 {
  font-family: var(--font-serif);
  font-size: 1.15rem;
  color: var(--primary-dark);
  margin-top: 16px;
  margin-bottom: 8px;
  font-weight: 700;
}
.wysiwyg-editor ul, .wysiwyg-editor ol {
  margin-left: 20px;
  margin-bottom: 12px;
}
.wysiwyg-editor b, .wysiwyg-editor strong {
  font-weight: 700;
}
.wysiwyg-editor i, .wysiwyg-editor em {
  font-style: italic;
}

.admin-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 15px;
}
.admin-table th,
.admin-table td {
  padding: 14px 18px;
  text-align: left;
  border-bottom: 1px solid var(--border-color);
  font-size: 0.9rem;
}
.admin-table th {
  background-color: var(--bg-light);
  font-weight: 600;
  color: var(--text-dark);
}
.admin-action-btn {
  background: none;
  border: none;
  font-size: 1.1rem;
  cursor: pointer;
  transition: var(--transition);
  margin-right: 10px;
}
.admin-btn-edit {
  color: var(--primary);
}
.admin-btn-delete {
  color: #ef4444;
}
.admin-btn-edit:hover,
.admin-btn-delete:hover {
  transform: scale(1.2);
}
.admin-status-pill {
  padding: 4px 10px;
  background-color: rgba(2, 132, 199, 0.1);
  color: var(--primary);
  border-radius: var(--radius-full);
  font-size: 0.75rem;
  font-weight: 700;
}

/* Responsive Breakpoints */
@media (max-width: 1024px) {
  .hero-title { font-size: 3rem; }
  .hero-wrapper { gap: 40px; }
  .about-teaser-wrapper, .bio-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-teaser-img img { max-width: 100%; }
  .bio-sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: span 2; }
}

@media (max-width: 768px) {
  .topbar { display: none; }
  .navbar { padding: 16px 24px; }
  .nav-menu {
    position: fixed;
    top: 77px;
    left: -100%;
    width: 100%;
    height: calc(100vh - 77px);
    background-color: var(--bg-white);
    flex-direction: column;
    padding: 40px 24px;
    gap: 24px;
    transition: var(--transition);
    border-top: 1px solid var(--border-color);
    box-shadow: var(--shadow-lg);
    z-index: 1100;
  }
  .nav-menu.active { left: 0; }
  .hamburger { display: block; }
  
  .hero { padding: 40px 0 60px 0; }
  .hero-wrapper { grid-template-columns: 1fr; text-align: center; }
  .hero-btns { justify-content: center; }
  .hero-stats { justify-content: center; max-width: 500px; margin: 0 auto; }
  
  /* Show doctor image beautifully on mobile below text */
  .hero-image-wrapper {
    display: flex;
    justify-content: center;
    margin-top: 40px;
  }
  .hero-image-card {
    max-width: 280px;
    margin: 0 auto;
  }
  .hero-floating-badge {
    left: 50%;
    transform: translateX(-50%);
    bottom: -15px;
    white-space: nowrap;
  }
  
  .section-title { font-size: 2rem; }
  .page-header h1 { font-size: 2rem; }
  .cta-wrapper h2 { font-size: 1.75rem; }
  .cta-wrapper p { font-size: 0.95rem; }
  
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: span 1; }
  .form-grid { grid-template-columns: 1fr; }
  .admin-layout { grid-template-columns: 1fr; }
  .admin-sidebar { display: none; }
}

@media (max-width: 576px) {
  .section { padding: 50px 0; }
  .hero-title { font-size: 2.25rem; }
  .hero-description { font-size: 1rem; margin-bottom: 24px; }
  .hero-stats { grid-template-columns: 1fr; gap: 15px; text-align: center; }
  .stat-item { border-bottom: 1px solid var(--border-color); padding-bottom: 10px; }
  .stat-item:last-child { border-bottom: none; }
  
  .specialties-tabs { gap: 8px; }
  .tab-btn { padding: 8px 16px; font-size: 0.85rem; }
  
  .specialty-detail-header {
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 16px;
  }
  .specialty-detail-header h2 { font-size: 1.5rem; }
  .specialty-detail-card { padding: 24px; }
  
  .bio-sidebar { padding: 20px; }
  .contact-info-card, .contact-form-card { padding: 24px; }
  
  .floating-widgets { bottom: 20px; right: 20px; gap: 10px; }
  .floating-btn { width: 48px; height: 48px; font-size: 1.5rem; }
  
  .footer-bottom {
    justify-content: center;
    text-align: center;
    flex-direction: column;
    gap: 8px;
  }
}
