/* ============================================
   KURUMSAL SAĞLIK WEB SİTESİ TASARIMI
   Renk Paleti: Lacivert (#1e3a8a) + Emerald (#10b981)
   Tasarım: Profesyonel, Sade, Güven Veren
   ============================================ */

/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
}

*:focus {
  outline: none !important;
  box-shadow: none !important;
}

body {
  font-family: "Poppins", sans-serif;
  line-height: 1.6;
  color: #4b5563;
  overflow-x: hidden;
  font-size: 16px;
  background: #ffffff;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Typography */
h1,
h2,
h3,
h4,
h5,
h6 {
  color: #1f2937;
  font-weight: 700;
  letter-spacing: -0.025em;
  line-height: 1.2;
}

.section-title {
  text-align: center;
  font-size: 2.25rem;
  font-weight: 800;
  margin-bottom: 3rem;
  color: #1f2937;
  position: relative;
}

.section-title::after {
  content: "";
  position: absolute;
  bottom: -12px;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 4px;
  background: #1e3a8a;
  border-radius: 2px;
}

/* Buttons - Full Width, Minimum 48px */
.btn {
  display: block;
  width: 100%;
  padding: 14px 32px;
  min-height: 48px;
  text-decoration: none;
  border-radius: 12px;
  font-weight: 600;
  text-align: center;
  transition: all 0.3s ease;
  cursor: pointer;
  border: none;
  font-size: 1rem;
  line-height: 1.5;
}

.btn-primary {
  background: #1e3a8a;
  color: white;
  box-shadow: 0 2px 8px rgba(30, 58, 138, 0.15);
}

.btn-primary:hover {
  background: #1e40af;
  box-shadow: 0 4px 12px rgba(30, 58, 138, 0.25);
  transform: translateY(-1px);
}

.btn-whatsapp {
  background: #10b981;
  color: white;
  margin-top: 12px;
}

.btn-whatsapp:hover {
  background: #059669;
  box-shadow: 0 4px 12px rgba(16, 185, 129, 0.25);
  transform: translateY(-1px);
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(10px);
  z-index: 1000;
  transition: all 0.3s ease;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  border-bottom: 1px solid #e5e7eb;
}

.navbar {
  padding: 1rem 0;
}

.navbar .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-brand .logo {
  height: 50px;
  width: auto;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 2rem;
}

.nav-menu a {
  text-decoration: none;
  color: #1f2937;
  font-weight: 500;
  transition: color 0.3s ease;
  position: relative;
}

.nav-menu a:hover {
  color: #1e3a8a;
}

.nav-menu a::before {
  content: "";
  position: absolute;
  width: 0;
  height: 2px;
  bottom: -5px;
  left: 0;
  background: #1e3a8a;
  transition: width 0.3s ease;
}

.nav-menu a:hover::before {
  width: 100%;
}

.hamburger {
  display: none;
  flex-direction: column;
  cursor: pointer;
}

.hamburger span {
  width: 25px;
  height: 3px;
  background: #1f2937;
  margin: 3px 0;
  transition: 0.3s;
}

/* Hero Section - Sade ve Profesyonel */
.hero {
  background: linear-gradient(to bottom, #f0f9ff 0%, #ffffff 100%);
  color: #1f2937;
  padding: 140px 0 80px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 800px;
  margin: 0 auto;
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  margin-bottom: 1.25rem;
  line-height: 1.2;
  color: #1f2937;
}

.hero p {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  color: #4b5563;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 400px;
  margin: 0 auto;
}

/* Stats Section */
.stats {
  background: #ffffff;
  padding: 60px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 24px;
  text-align: center;
}

.stat-item {
  background: white;
  padding: 32px 24px;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.stat-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.stat-number {
  font-size: 2.5rem;
  font-weight: 800;
  color: #1e3a8a;
  margin-bottom: 0.5rem;
}

.stat-label {
  font-size: 1rem;
  color: #4b5563;
  font-weight: 500;
}

/* Card System - Beyaz Zemin + Soft Shadow */
.specialty-card,
.benefit-item,
.application-item,
.contact-item,
.testimonial-card {
  background: white;
  border-radius: 16px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: all 0.3s ease;
  border: 1px solid #e5e7eb;
}

.specialty-card:hover,
.benefit-item:hover,
.contact-item:hover {
  transform: translateY(-4px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Specialties Section */
.specialties {
  padding: 80px 0;
  background: #f9fafb;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 24px;
}

.specialty-card {
  overflow: hidden;
}

.specialty-image {
  height: 200px;
  overflow: hidden;
  background: #f3f4f6;
}

.specialty-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.specialty-card:hover .specialty-image img {
  transform: scale(1.05);
}

.specialty-card h3 {
  font-size: 1.25rem;
  font-weight: 700;
  margin: 20px 24px 12px;
  color: #1f2937;
}

.specialty-card p {
  padding: 0 24px 24px;
  color: #4b5563;
  line-height: 1.6;
}

/* Benefits Section */
.benefits {
  background: #ffffff;
  padding: 80px 0;
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
}

.benefit-item {
  padding: 32px 24px;
  text-align: center;
}

.benefit-item i {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.benefit-item h3 {
  font-size: 1.125rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.5rem;
}

.benefit-item p {
  color: #4b5563;
  font-size: 0.95rem;
  line-height: 1.6;
}

/* Special Applications */
.special-applications {
  padding: 80px 0;
  background: #f9fafb;
}

.applications-content {
  display: grid;
  gap: 20px;
}

.application-item {
  padding: 28px;
  border-left: 4px solid #1e3a8a;
}

.application-item h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 0.75rem;
}

.application-item p {
  color: #4b5563;
  line-height: 1.6;
}

/* Education Section */
.education {
  background: #ffffff;
  padding: 80px 0;
}

.education-description {
  text-align: center;
  font-size: 1.0625rem;
  color: #4b5563;
  max-width: 800px;
  margin: 0 auto 3rem;
  line-height: 1.6;
}

.video-section {
  margin-bottom: 3rem;
}

.video-section h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
  text-align: center;
}

.video-placeholder {
  background: #f9fafb;
  height: 300px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  border: 2px dashed #e5e7eb;
}

.video-placeholder i {
  font-size: 4rem;
  margin-bottom: 1rem;
  color: #d1d5db;
}

.certificate-section {
  padding: 32px;
  text-align: center;
}

.certificate-section h3 {
  font-size: 1.375rem;
  font-weight: 700;
  color: #1f2937;
  margin-bottom: 1rem;
}

.certificate-section p {
  color: #4b5563;
  line-height: 1.6;
  margin-bottom: 1rem;
}

/* Testimonials */
.testimonials {
  padding: 80px 0;
  background: #f9fafb;
}

.testimonial-card {
  max-width: 800px;
  margin: 0 auto;
  padding: 40px;
  text-align: center;
}

.testimonial-content p {
  font-size: 1.125rem;
  font-style: italic;
  color: #4b5563;
  margin-bottom: 2rem;
  line-height: 1.6;
}

.testimonial-author strong {
  font-size: 1.0625rem;
  color: #1f2937;
  font-weight: 600;
}

/* Services List - Lacivert Arka Plan */
.services-list {
  background: #1e3a8a;
  color: white;
  padding: 80px 0;
  text-align: center;
}

.services-list .section-title {
  color: white;
}

.services-list .section-title::after {
  background: white;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 16px;
  margin-bottom: 3rem;
}

.service-item {
  background: rgba(255, 255, 255, 0.15);
  padding: 20px;
  border-radius: 12px;
  font-weight: 500;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  transition: all 0.3s ease;
}

.service-item:hover {
  background: rgba(255, 255, 255, 0.25);
  transform: translateY(-2px);
}

.cta-section {
  margin-top: 3rem;
}

.cta-section h3 {
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 2rem;
}

/* Contact */
.contact {
  padding: 80px 0;
  background: #ffffff;
}

.contact-info {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.contact-item {
  padding: 32px;
  text-align: center;
}

.contact-item i {
  font-size: 2.5rem;
  color: #1e3a8a;
  margin-bottom: 1rem;
}

.contact-item a {
  color: #1f2937;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.3s ease;
}

.contact-item a:hover {
  color: #1e3a8a;
}

/* Footer */
.footer {
  background: #1f2937;
  color: white;
  padding: 50px 0 20px;
}

.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo {
  height: 60px;
  width: auto;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.footer-nav a {
  color: #d1d5db;
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-nav a:hover {
  color: white;
}

.footer-social {
  text-align: right;
}

.footer-social a {
  display: inline-block;
  width: 48px;
  height: 48px;
  background: #1e3a8a;
  color: white;
  text-align: center;
  line-height: 48px;
  border-radius: 50%;
  font-size: 1.25rem;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.footer-social a:hover {
  background: #10b981;
  transform: translateY(-2px);
}

.footer-bottom {
  text-align: center;
  padding-top: 2rem;
  border-top: 1px solid #374151;
  color: #d1d5db;
  font-size: 0.9rem;
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive Design - Mobile First */
@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  .container {
    padding: 0 16px;
  }

  .nav-menu {
    position: fixed;
    left: -100%;
    top: 80px;
    flex-direction: column;
    background-color: white;
    width: 100%;
    text-align: center;
    transition: 0.3s;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 2rem 0;
  }

  .nav-menu.active {
    left: 0;
  }

  .hamburger {
    display: flex;
  }

  .hamburger.active span:nth-child(2) {
    opacity: 0;
  }

  .hamburger.active span:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .hamburger.active span:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }

  .hero {
    padding: 120px 0 60px;
  }

  .hero h1 {
    font-size: 2.25rem;
  }

  .hero p {
    font-size: 1.0625rem;
  }

  .hero-buttons {
    max-width: 100%;
  }

  .section-title {
    font-size: 1.875rem;
  }

  .specialties-grid,
  .benefits-grid {
    grid-template-columns: 1fr;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .contact-info {
    grid-template-columns: 1fr;
  }

  .footer-content {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .footer-social {
    text-align: center;
  }

  .footer-nav {
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .hero {
    padding: 100px 0 50px;
  }

  .hero h1 {
    font-size: 1.875rem;
  }

  .stats-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .stat-number {
    font-size: 2.25rem;
  }

  .specialty-card h3,
  .application-item h3 {
    font-size: 1.125rem;
  }

  .specialties-grid,
  .benefits-grid {
    gap: 16px;
  }
}

/* Smooth scrolling */
html {
  scroll-behavior: smooth;
}

/* Loading animation */
.loading {
  opacity: 0;
  animation: fadeIn 0.6s ease forwards;
}

@keyframes fadeIn {
  to {
    opacity: 1;
  }
}

/* ============================================
   HAMBURGER MENU - CROSS-BROWSER PERFECT X
   ============================================ */

/* Hamburger Button - Bulletproof Positioning */
#menu-btn {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: transparent;
  border: none;
  padding: 0;
  margin: 0;
  position: relative;
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: visible;
  cursor: pointer;
}

/* Menu Lines - Absolute Positioning */
#menu-btn .menu-line {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 24px;
  height: 2px;
  background-color: #111827;
  border-radius: 2px;
  transition: all 0.3s ease-in-out;
}

/* Default State - Hamburger (≡) */
#menu-btn .menu-line:nth-child(1) {
  top: 14px;
}

#menu-btn .menu-line:nth-child(2) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
}

#menu-btn .menu-line:nth-child(3) {
  bottom: 14px;
}

/* Active State - Perfect X */
#menu-btn.active .menu-line:nth-child(1) {
  top: 50%;
  transform: translateX(-50%) translateY(-50%) rotate(45deg);
}

#menu-btn.active .menu-line:nth-child(2) {
  opacity: 0;
  width: 0;
}

#menu-btn.active .menu-line:nth-child(3) {
  bottom: 50%;
  transform: translateX(-50%) translateY(50%) rotate(-45deg);
}

/* ============================================
   GLOBAL NAVBAR & HAMBURGER MENU SYSTEM
   Tüm Sayfalarda Tutarlı (100% Consistent)
   ============================================ */

/* Desktop Navigation - Global */
.global-navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 9998;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  transition: all 0.3s ease;
}

.global-navbar-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.global-navbar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 5rem; /* 80px */
}

.global-navbar-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  transition: opacity 0.2s ease;
  flex-shrink: 0;
}

.global-navbar-logo:hover {
  opacity: 1;
}

.global-navbar-logo img {
  height: 100px; /* 56px */
  width: 100;
  object-fit: contain;
}

.global-navbar-brand {
  display: flex;
  flex-direction: column;
  justify-content: center;
  line-height: 1.2;
}

.global-navbar-brand-title {
  font-weight: 700;
  color: #111827;
  font-size: 1.25rem; /* 20px */
  letter-spacing: -0.02em;
}

.global-navbar-brand-subtitle {
  color: #6b7280;
  font-size: 0.75rem; /* 12px */
  font-weight: 500;
  letter-spacing: 0.02em;
}

.global-navbar-menu {
  display: flex;
  align-items: center;
}

.global-navbar-link {
  padding: 0.5rem;
  font-size: 16px;
  font-weight: 500;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.global-navbar-link.active {
  color: #2563eb;
  background: #eff6ff;
}

.global-navbar-link:not(.active) {
  color: #4b5563;
}

.global-navbar-link:not(.active):hover {
  color: #111827;
  background: #f9fafb;
}

.global-navbar-cta {
  margin-left: 0.5rem;
  padding: 0.625rem 1.25rem;
  background: linear-gradient(to right, #2563eb, #4f46e5);
  color: white;
  font-size: 0.875rem;
  font-weight: 600;
  border-radius: 0.5rem;
  transition: all 0.2s ease;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  box-shadow: 0 2px 4px rgba(37, 99, 235, 0.2);
}

.global-navbar-cta:hover {
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
  transform: translateY(-1px);
}

/* Navbar Dropdown */
.global-navbar-dropdown {
  position: relative;
  display: inline-flex;
  margin-left: 0.5rem;
}

.global-navbar-dropdown .global-navbar-cta {
  margin-left: 0;
}

.global-dropdown-arrow {
  font-size: 10px !important;
  transition: transform 0.3s ease;
  margin-left: 2px;
  opacity: 0.8;
}

.global-navbar-dropdown:hover .global-dropdown-arrow {
  transform: rotate(180deg);
}

.global-navbar-dropdown-menu {
  position: absolute;
  top: calc(100% + 6px);
  right: 0;
  min-width: 220px;
  background: rgba(255, 255, 255, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-radius: 14px;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.12), 0 0 0 1px rgba(0, 0, 0, 0.04);
  opacity: 0;
  visibility: hidden;
  transform: translateY(8px);
  transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
  z-index: 100;
  padding: 6px;
  pointer-events: none;
}

/* Hover Köprüsü: Buton ile menü arasındaki boşlukta farenin menüyü kapatmasını engeller */
.global-navbar-dropdown-menu::before {
  content: '';
  position: absolute;
  top: -16px;
  left: 0;
  width: 100%;
  height: 16px;
  background: transparent;
}

.global-navbar-dropdown:hover .global-navbar-dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.global-dropdown-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 16px;
  color: #374151;
  font-size: 0.875rem;
  font-weight: 500;
  border-radius: 10px;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
}

.global-dropdown-item:hover {
  background: linear-gradient(135deg, #eff6ff, #f5f3ff);
  color: #2563eb;
  transform: translateX(2px);
}

.global-dropdown-item i {
  width: 18px;
  text-align: center;
  font-size: 14px;
  color: #6b7280;
  transition: color 0.2s ease;
}

.global-dropdown-item:hover i {
  color: #2563eb;
}

/* Randevu Al Dropdown Butonu Özel Stili */
.global-dropdown-item[href="randevu.html"] {
  background: linear-gradient(90deg, #2563eb, #7c3aed, #6366f1) !important;
  color: #fff !important;
  border-radius: 999px !important;
  margin-bottom: 6px;
  justify-content: center;
}

.global-dropdown-item[href="randevu.html"] i {
  color: #fff !important;
}

.global-dropdown-item[href="randevu.html"]:hover {
  transform: translateY(-1px) !important;
  box-shadow: 0 4px 12px rgba(99, 102, 241, 0.4) !important;
  color: #fff !important;
}

.global-dropdown-item[href="randevu.html"]:hover i {
  color: #fff !important;
}

.global-dropdown-divider {
  height: 1px;
  background: #e5e7eb;
  margin: 4px 8px;
}

/* Mobile Header - Global */
.global-mobile-header {
  position: fixed !important;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10000 !important;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
  border-bottom: 1px solid rgba(229, 231, 235, 1);
  transition: all 0.3s ease;
}

.global-mobile-container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1rem;
}

.global-mobile-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 4rem; /* 64px */
}

.global-mobile-logo {
  display: flex;
  align-items: center;
  gap: 0.625rem;
  flex-shrink: 0;
}

.global-mobile-logo img {
  height: 80px; /* 44px */
  width: 80px;
  object-fit: contain;
}

.global-mobile-brand {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}

.global-mobile-brand-title {
  font-size: 1rem;
  font-weight: 700;
  color: #111827;
  letter-spacing: -0.01em;
}

.global-mobile-brand-subtitle {
  font-size: 0.625rem; /* 10px */
  color: #6b7280;
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Hamburger Button - Global */
.global-hamburger-btn {
  position: relative;
  width: 2.5rem; /* 40px */
  height: 2.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  background: transparent !important;
  border: none !important;
  outline: none !important;
  cursor: pointer;
  z-index: 10001;
  -webkit-tap-highlight-color: transparent;
  transition: transform 0.2s ease;
  padding: 0;
  margin: 0;
}

.global-hamburger-btn:focus {
  outline: none !important;
  box-shadow: none !important;
}

.global-hamburger-btn:active {
  transform: scale(0.92);
}

.global-hamburger-btn svg {
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.global-hamburger-btn svg path {
  stroke: #374151;
  stroke-width: 2;
  stroke-linecap: round;
}

/* Mobile Menu - Global */
.global-mobile-menu {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  position: relative;
  z-index: 9999;
  background: linear-gradient(to bottom, #ffffff 0%, #f8fafc 100%);
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.08);
}

.global-mobile-nav {
  display: flex;
  flex-direction: column;
  padding: 0.5rem 0;
  background: transparent;
}

.global-mobile-link {
  display: block;
  padding: 1rem 1.5rem;
  font-size: 0.875rem; /* 14px */
  font-weight: 500;
  color: #374151;
  text-decoration: none;
  transition: all 0.2s ease;
  border-bottom: 1px solid #e5e7eb;
  -webkit-tap-highlight-color: transparent;
  position: relative;
}

.global-mobile-link.active {
  color: #6c5ce7;
  font-weight: 600;
  background: rgba(108, 92, 231, 0.05);
}

.global-mobile-link:not(.active):hover {
  color: #6366f1;
  background: rgba(99, 102, 241, 0.03);
}

.global-mobile-link:active {
  background: rgba(99, 102, 241, 0.08);
  transform: scale(0.98);
}

/* Mobil CTA Button - İzole Randevu Al Butonu */
.global-mobile-cta-btn {
  display: block;
  margin: 1rem 1rem 0.5rem 1rem;
  padding: 0.875rem 1.5rem;
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  font-size: 0.9375rem; /* 15px */
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border-radius: 0.75rem; /* 12px */
  border: none !important;
  outline: none !important;
  box-shadow: 0 4px 12px rgba(102, 126, 234, 0.25);
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  -webkit-tap-highlight-color: transparent;
  position: relative;
  overflow: hidden;
}

.global-mobile-cta-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #764ba2 0%, #667eea 100%);
  opacity: 0;
  transition: opacity 0.3s ease;
  z-index: -1;
}

.global-mobile-cta-btn:hover::before,
.global-mobile-cta-btn:active::before {
  opacity: 1;
}

.global-mobile-cta-btn:hover {
  box-shadow: 0 6px 20px rgba(102, 126, 234, 0.4);
  transform: translateY(-2px);
}

.global-mobile-cta-btn:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(102, 126, 234, 0.3);
}

/* CTA butonu standart link stillerinden tamamen izole */
.global-mobile-cta-btn.active,
.global-mobile-cta-btn:not(.active) {
  background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
  color: white !important;
  font-weight: 600;
}

/* Icon Animations */
#hamburger-icon,
#close-icon {
  position: absolute;
  transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

#hamburger-icon.hidden {
  opacity: 0;
  transform: rotate(90deg) scale(0.8);
}

#close-icon.hidden {
  opacity: 0;
  transform: rotate(-90deg) scale(0.8);
}

#hamburger-icon:not(.hidden) {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

#close-icon:not(.hidden) {
  opacity: 1;
  transform: rotate(0deg) scale(1);
}

/* Responsive Breakpoints */
@media (max-width: 1023px) {
  .global-navbar {
    display: none;
  }
}

@media (min-width: 1024px) {
  .global-mobile-header {
    display: none !important;
  }
}

@media (min-width: 400px) {
  .global-mobile-brand-subtitle {
    display: block !important;
  }
}
@media (max-width: 1024px) {
  .text-gray-900 {
    font-size: 35px;
  }
}
@media (max-width: 1024px) {
  .yeniden-kazanın {
    font-size: 35px;
  }
}
