/* BİSMİLLAHİRAHMANİRAHİM */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Inter", sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
  overflow-x: hidden;
}

.container {
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
}

/* Utility Classes */
.text-center {
  text-align: center;
}

.d-flex {
  display: flex;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.gap-10 {
  gap: 10px;
}

.gap-20 {
  gap: 20px;
}

.gap-30 {
  gap: 30px;
}

/* Header Styles */
.main-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.95);
  backdrop-filter: blur(10px);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
  transition: all 0.3s ease;
}

.main-header.scrolled {
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.15);
}

.header-top {
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
  padding: 10px 0;
  font-size: 13px;
  color: #666;
  border-bottom: 1px solid #e9ecef;
}

.header-top .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.contact-info {
  display: flex;
  gap: 35px;
}

.contact-item {
  display: flex;
  align-items: center;
  gap: 8px;
  transition: color 0.3s ease;
  cursor: pointer;
}

.contact-item:hover {
  color: #007bff;
}

.contact-item i {
  font-size: 12px;
  color: #007bff;
  width: 12px;
  text-align: center;
}

.header-search {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  transition: color 0.3s ease;
  padding: 5px 10px;
  border-radius: 5px;
}

.header-search:hover {
  color: #007bff;
  background: rgba(0, 123, 255, 0.1);
}

.header-search i {
  font-size: 12px;
}

.header-main {
  padding: 15px 0;
}

.header-main .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 30px;
}

.logo {
  flex-shrink: 0;
  cursor: pointer;
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.02);
}

.logo h1 {
  font-size: 22px;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 1px;
  line-height: 1.1;
  margin-bottom: 2px;
}

.logo-subtitle {
  font-size: 10px;
  color: #007bff;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
}

/* Navigation - Desktop */
.main-navigation {
  flex: 1;
  display: flex;
  justify-content: center;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 25px;
  margin: 0;
  padding: 0;
}

.nav-item {
  position: relative;
}

.nav-link {
  text-decoration: none;
  color: #333;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  padding: 10px 0;
  position: relative;
  transition: all 0.3s ease;
  display: flex;
  align-items: center;
  gap: 4px;
  white-space: nowrap;
}

.nav-link:hover,
.nav-link.active {
  color: #007bff;
}

.nav-link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: #007bff;
  transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link i {
  font-size: 10px;
  transition: transform 0.3s ease;
}

.dropdown:hover .nav-link i {
  transform: rotate(180deg);
}

.header-actions {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  gap: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 24px;
  text-decoration: none;
  border-radius: 8px;
  font-weight: 600;
  font-size: 14px;
  transition: all 0.3s ease;
  border: none;
  cursor: pointer;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  position: relative;
  overflow: hidden;
}

.btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(
    90deg,
    transparent,
    rgba(255, 255, 255, 0.2),
    transparent
  );
  transition: left 0.5s;
}

.btn:hover::before {
  left: 100%;
}

.btn-header {
  background: #2c3e50;
  color: white;
  padding: 10px 16px;
  font-size: 12px;
  white-space: nowrap;
}

.btn-header:hover {
  background: #34495e;
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 62, 80, 0.3);
}

/* Mobile Menu Toggle */
.mobile-menu-toggle {
  display: none;
  flex-direction: column;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  gap: 3px;
  width: 35px;
  height: 35px;
  justify-content: center;
  align-items: center;
  border-radius: 5px;
  transition: all 0.3s ease;
  z-index: 10001;
  position: relative;
}

.mobile-menu-toggle:hover {
  background: rgba(0, 0, 0, 0.1);
}

.mobile-menu-toggle span {
  width: 22px;
  height: 2px;
  background: #333;
  transition: all 0.3s ease;
  border-radius: 1px;
  display: block;
}

.mobile-menu-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.mobile-menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.mobile-menu-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(7px, -6px);
}

/* Dropdown Menu Styles - Desktop */
.dropdown {
  position: relative;
}

.dropdown-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  background: white;
  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
  border-radius: 12px;
  padding: 20px 0;
  min-width: 220px;
  opacity: 0;
  visibility: hidden;
  transform: translateX(-50%) translateY(-10px);
  transition: all 0.3s ease;
  z-index: 1001;
  border: 1px solid rgba(0, 0, 0, 0.05);
}

.dropdown:hover .dropdown-menu {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
}

.dropdown-menu::before {
  content: "";
  position: absolute;
  top: -8px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-bottom: 8px solid white;
}

.dropdown-menu a {
  display: block;
  padding: 12px 25px;
  color: #333;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
  transition: all 0.3s ease;
  position: relative;
  text-transform: none;
  letter-spacing: 0;
}

.dropdown-menu a::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: #007bff;
  transform: scaleY(0);
  transition: transform 0.3s ease;
}

.dropdown-menu a:hover {
  background: linear-gradient(
    90deg,
    rgba(0, 123, 255, 0.1) 0%,
    transparent 100%
  );
  color: #007bff;
  padding-left: 30px;
}

.dropdown-menu a:hover::before {
  transform: scaleY(1);
}

/* Hero Section */
.hero-section {
  margin-top: 100px;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 50%, #dee2e6 100%);
  position: relative;
  overflow: hidden;
  padding: 80px 0;
}

.hero-container {
  display: flex;
  align-items: center;
  gap: 100px; /* Önceden 80px idi */
  max-width: 1400px;
  margin: 0 auto;
  padding: 0 20px;
  position: relative;
  z-index: 2;
}
/* Responsive Düzeltmeler */
@media (max-width: 1400px) {
  .image-container {
    width: 450px;
    height: 600px;
  }
  
  .hero-container {
    gap: 80px;
  }
}

@media (max-width: 1200px) {
  .image-container {
    width: 400px;
    height: 550px;
  }
  
  .hero-container {
    gap: 60px;
  }
  
  .floating-card {
    right: -40px;
    bottom: 30px;
  }
}

@media (max-width: 1024px) {
  .hero-container {
    flex-direction: column;
    gap: 50px;
    text-align: center;
  }

  .image-container {
    width: 380px;
    height: 500px;
    transform: rotate(0deg);
  }

  .floating-card {
    position: static;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
  }
}

@media (max-width: 768px) {
  .image-container {
    width: 320px;
    height: 420px;
  }
}

@media (max-width: 480px) {
  .image-container {
    width: 280px;
    height: 380px;
  }
  
  .floating-card {
    padding: 20px;
    min-width: 180px;
  }
}

@media (max-width: 360px) {
  .image-container {
    width: 250px;
    height: 320px;
  }
  
  .floating-card {
    min-width: 160px;
    padding: 15px;
  }
}

/* Extra Large Screens İçin */
@media (min-width: 1600px) {
  .image-container {
    width: 550px;
    height: 700px;
  }
  
  .hero-container {
    gap: 120px;
  }
  
  .floating-card {
    right: -70px;
    bottom: 50px;
    min-width: 250px;
    padding: 30px;
  }
}
.hero-content {
  flex: 0.8; /* Hero text kısmını biraz küçülttük */
  max-width: 500px; /* Önceden 550px idi */
  animation: fadeInLeft 1s ease-out;
}

@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.hero-title {
  font-size: 52px;
  line-height: 1.2;
  margin-bottom: 25px;
  color: #2c3e50;
}

.doctor-name {
  font-family: "Playfair Display", serif;
  font-style: italic;
  font-weight: 500;
  color: #007bff;
  display: block;
  margin-bottom: 10px;
  position: relative;
}

.doctor-name::after {
  content: "";
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, #007bff, transparent);
}

.hero-subtitle {
  font-weight: 700;
  color: #2c3e50;
  display: block;
}

.hero-description {
  font-size: 18px;
  line-height: 1.8;
  color: #666;
  margin-bottom: 35px;
  position: relative;
  padding-left: 20px;
}

.hero-description::before {
  content: '"';
  position: absolute;
  left: 0;
  top: -10px;
  font-size: 40px;
  color: #007bff;
  font-family: "Playfair Display", serif;
}

.hero-description::after {
  content: '"';
  position: absolute;
  bottom: -10px;
  right: 0;
  font-size: 40px;
  color: #007bff;
  font-family: "Playfair Display", serif;
}

.hero-buttons {
  display: flex;
  gap: 20px;
  margin-bottom: 50px;
  flex-wrap: wrap;
}

.btn-primary {
  background: linear-gradient(135deg, #007bff, #0056b3);
  color: white;
  padding: 15px 30px;
  font-size: 16px;
  box-shadow: 0 5px 15px rgba(0, 123, 255, 0.3);
}

.btn-primary:hover {
  background: linear-gradient(135deg, #0056b3, #004494);
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.4);
}

.btn-secondary {
  background: transparent;
  color: #007bff;
  border: 2px solid #007bff;
  padding: 13px 28px;
  font-size: 16px;
  position: relative;
  overflow: hidden;
}

.btn-secondary::before {
  content: "";
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: #007bff;
  transition: left 0.3s ease;
  z-index: -1;
}

.btn-secondary:hover::before {
  left: 0;
}

.btn-secondary:hover {
  color: white;
  transform: translateY(-3px);
  box-shadow: 0 15px 35px rgba(0, 123, 255, 0.3);
}

.hero-stats {
  display: flex;
  gap: 40px;
  flex-wrap: wrap;
}

.stat-item {
  text-align: center;
  position: relative;
  padding: 20px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 25px rgba(0, 0, 0, 0.1);
  transition: transform 0.3s ease;
  min-width: 120px;
}

.stat-item:hover {
  transform: translateY(-5px);
}

.stat-number {
  display: block;
  font-size: 28px;
  font-weight: 700;
  color: #007bff;
  margin-bottom: 5px;
  font-family: "Playfair Display", serif;
}

.stat-label {
  font-size: 12px;
  color: #666;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-weight: 500;
}

.hero-image {
  flex: 1.2; /* Önceden flex: 1 idi */
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
  animation: fadeInRight 1s ease-out 0.3s both;
}

.image-container {
  position: relative;
  width: 500px; /* Önceden 400px idi */
  height: 650px; /* Önceden 500px idi */
  border-radius: 25px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.2);
  transform: rotate(-5deg);
  transition: transform 0.3s ease;
}

.image-container:hover {
  transform: rotate(0deg) scale(1.05);
}
.doctor-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.3s ease;
}

.image-container:hover .doctor-photo {
  transform: scale(1.1);
}

.image-overlay {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.1) 0%,
    rgba(44, 62, 80, 0.1) 100%
  );
  opacity: 0;
  transition: opacity 0.3s ease;
}

.image-container:hover .image-overlay {
  opacity: 1;
}

/* Floating Card Pozisyon Düzeltmesi */
.floating-card {
  position: absolute;
  bottom: 40px; /* Önceden 30px idi */
  right: -60px; /* Önceden -50px idi */
  background: rgb(0, 0, 0);
  padding: 25px;
  border-radius: 20px;
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
  display: flex;
  align-items: center;
  gap: 15px;
  min-width: 220px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  animation: float 3s ease-in-out infinite;
}
.card-icon {
  width: 50px;
  height: 50px;
  background: linear-gradient(135deg, #007bff, #0056b3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  font-size: 20px;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(0, 123, 255, 0.3);
}

.card-content {
  display: flex;
  flex-direction: column;
}

.card-title {
  font-weight: 600;
  color: #2c3e50;
  margin-bottom: 5px;
  font-size: 16px;
}

.card-subtitle {
  font-size: 13px;
  color: #666;
  font-weight: 400;
}

.hero-decoration {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  pointer-events: none;
  z-index: 1;
}

.decoration-circle {
  position: absolute;
  border-radius: 50%;
  background: linear-gradient(
    135deg,
    rgba(0, 123, 255, 0.1),
    rgba(0, 123, 255, 0.05)
  );
  filter: blur(1px);
}

.circle-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  right: 10%;
  animation: float 6s ease-in-out infinite;
}

.circle-2 {
  width: 200px;
  height: 200px;
  bottom: 15%;
  left: 5%;
  animation: float 8s ease-in-out infinite reverse;
}

.circle-3 {
  width: 150px;
  height: 150px;
  top: 30%;
  left: 15%;
  animation: float 10s ease-in-out infinite;
}

@keyframes float {
  0%,
  100% {
    transform: translateY(0px) rotate(0deg);
  }
  50% {
    transform: translateY(-30px) rotate(180deg);
  }
}

/* Side Menu */
.side-menu {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  background: linear-gradient(135deg, #2c3e50, #34495e);
  z-index: 999;
  border-radius: 15px 0 0 15px;
  box-shadow: 0 15px 40px rgba(0, 0, 0, 0.2);
  cursor: pointer;
  transition: all 0.4s ease;
  overflow: hidden;
}

.side-menu::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: linear-gradient(135deg, #34495e, #2c3e50);
  opacity: 0;
  transition: opacity 0.3s ease;
}

.side-menu:hover::before {
  opacity: 1;
}

.side-menu:hover {
  transform: translateY(-50%) translateX(-8px);
  box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.side-menu-content {
  padding: 30px 15px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 15px;
  position: relative;
  z-index: 2;
}

.side-menu-text {
  writing-mode: vertical-lr;
  text-orientation: mixed;
  color: white;
  font-weight: 600;
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.side-menu-icon {
  color: white;
  font-size: 18px;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% {
    transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1);
  }
}

/* WhatsApp Button */
.whatsapp-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 998;
}

.whatsapp-button a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  background: linear-gradient(135deg, #25d366, #128c7e);
  border-radius: 50%;
  color: white;
  font-size: 24px;
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.4);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;
}

.whatsapp-button a::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  background: rgba(255, 255, 255, 0.3);
  border-radius: 50%;
  transform: translate(-50%, -50%);
  transition: all 0.3s ease;
}

.whatsapp-button a:hover::before {
  width: 100%;
  height: 100%;
}

.whatsapp-button a:hover {
  transform: scale(1.15);
  box-shadow: 0 15px 40px rgba(37, 211, 102, 0.5);
}

.whatsapp-button a i {
  position: relative;
  z-index: 2;
  animation: bounce 2s infinite;
}

@keyframes bounce {
  0%,
  20%,
  50%,
  80%,
  100% {
    transform: translateY(0);
  }
  40% {
    transform: translateY(-3px);
  }
  60% {
    transform: translateY(-2px);
  }
}

/* Body scroll lock */
body.menu-open {
  overflow: hidden !important;
  position: fixed !important;
  width: 100% !important;
  height: 100% !important;
  left: 0 !important;
  right: 0 !important;
}

/* Touch hover efekti */
.touch-hover {
  background-color: rgba(0, 123, 255, 0.1) !important;
  transform: scale(0.98) !important;
  transition: all 0.1s ease !important;
}

/* Responsive Design */
@media (max-width: 1400px) {
  .mobile-nav .nav-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-nav .nav-link::after {
    display: none !important;
  }

  /* Dropdown ikonları - MOBİL */
  .mobile-nav .dropdown > .nav-link::after {
    content: "\f107" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    color: #007bff !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    position: static !important;
  }

  .mobile-nav .dropdown.active > .nav-link::after {
    transform: rotate(180deg) !important;
  }

  /* Dropdown Menu - MOBİL VERSİYON */
  .mobile-nav .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin: 8px 0 0 0 !important;
    border-radius: 8px !important;
    padding: 0 !important;
    border: 1px solid #e9ecef !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-nav .dropdown-menu::before {
    display: none !important;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 200px !important;
    padding: 10px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    padding: 10px 15px !important;
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e9ecef !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    margin: 1px 6px !important;
    width: calc(100% - 12px) !important;
    box-sizing: border-box !important;
  }

  .mobile-nav .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .mobile-nav .dropdown-menu a:hover {
    background: #007bff !important;
    color: white !important;
    transform: translateX(3px) !important;
  }

  .mobile-nav .dropdown-menu a::before {
    display: none !important;
  }

  /* Hero adjustments */
  .hero-section {
    margin-top: 80px;
    padding: 50px 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .image-container {
    width: 300px;
    height: 400px;
    transform: rotate(0deg);
  }

  .floating-card {
    position: static;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
  }
}

/* Custom scrollbar for mobile menu */
@media (max-width: 1024px) {
  .mobile-nav .nav-menu::-webkit-scrollbar {
    width: 3px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 2px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
  }
}

/* iOS Safari optimizations */
@supports (-webkit-overflow-scrolling: touch) {
  @media (max-width: 1024px) {
    .main-navigation.mobile-nav.active {
      -webkit-overflow-scrolling: touch;
    }

    .mobile-nav .nav-menu {
      -webkit-overflow-scrolling: touch;
    }
  }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
  @media (max-width: 1024px) {
    .mobile-nav .nav-link:hover {
      background: none;
      padding-left: 0;
      padding-right: 0;
    }

    .mobile-nav .nav-link:active {
      background: rgba(0, 123, 255, 0.1);
    }
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-main {
    padding: 12px 0;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .btn-header {
    padding: 8px 12px;
    font-size: 10px;
  }

  .main-navigation.mobile-nav {
    padding: 15px;
  }

  .mobile-nav .nav-menu {
    padding: 15px;
    max-width: 350px;
    max-height: 80vh;
  }

  .mobile-nav .nav-menu::after {
    top: 15px;
    left: 15px;
    font-size: 11px;
  }

  .mobile-nav .nav-menu::before {
    top: 12px;
    right: 15px;
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 30px;
  }

  .mobile-nav .nav-link {
    font-size: 14px;
    padding: 12px 0;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 150px !important;
    padding: 8px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    padding-left: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    min-width: 100px;
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .image-container {
    width: 280px;
    height: 350px;
  }

  .side-menu {
    right: 10px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo h1 {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 8px;
  }

  .btn-header {
    padding: 6px 10px;
    font-size: 9px;
  }

  .main-navigation.mobile-nav {
    padding: 10px;
  }

  .mobile-nav .nav-menu {
    padding: 12px;
    max-width: 320px;
    max-height: 75vh;
    border-radius: 12px;
  }

  .mobile-nav .nav-menu::after {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

  .mobile-nav .nav-menu::before {
    top: 10px;
    right: 12px;
    font-size: 14px;
    width: 28px;
    height: 28px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 25px;
  }

  .mobile-nav .nav-link {
    font-size: 13px;
    padding: 10px 0;
  }

  .mobile-nav .dropdown > .nav-link::after {
    font-size: 11px !important;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 120px !important;
    padding: 6px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }

  .hero-title {
    font-size: 28px;
  }

  .doctor-name {
    font-size: 24px;
  }

  .hero-description {
    font-size: 15px;
    padding-left: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    min-width: 90px;
    padding: 12px;
    width: 100%;
    max-width: 150px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .image-container {
    width: 250px;
    height: 320px;
  }

  .floating-card {
    padding: 20px;
    min-width: 180px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-subtitle {
    font-size: 12px;
  }

  .side-menu-content {
    padding: 25px 12px;
  }

  .side-menu-text {
    font-size: 12px;
  }

  .side-menu-icon {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .logo h1 {
    font-size: 14px;
  }

  .btn-header {
    padding: 5px 8px;
    font-size: 8px;
  }

  .main-navigation.mobile-nav {
    padding: 8px;
  }

  .mobile-nav .nav-menu {
    padding: 10px;
    max-width: 280px;
    max-height: 70vh;
  }

  .mobile-nav .nav-menu::after {
    top: 10px;
    left: 10px;
    font-size: 9px;
  }

  .mobile-nav .nav-menu::before {
    top: 8px;
    right: 10px;
    font-size: 12px;
    width: 25px;
    height: 25px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 22px;
  }

  .mobile-nav .nav-link {
    font-size: 12px;
    padding: 8px 0;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 100px !important;
    padding: 5px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 10px !important;
    padding: 5px 8px !important;
  }

  .hero-title {
    font-size: 24px;
  }

  .doctor-name {
    font-size: 20px;
  }

  .hero-description {
    font-size: 14px;
  }

  .image-container {
    width: 220px;
    height: 280px;
  }

  .floating-card {
    min-width: 160px;
    padding: 15px;
  }

  .hero-container {
    gap: 30px;
  }
}
container {
  max-width: 1200px;
}

.nav-menu {
  gap: 20px;
}

.nav-link {
  font-size: 12px;
}

.btn-header {
  padding: 10px 14px;
  font-size: 11px;
}

.hero-container {
  gap: 60px;
}
.side-menu {
  text-decoration: none;
}

@media (max-width: 1200px) {
  .nav-menu {
    gap: 15px;
  }

  .nav-link {
    font-size: 11px;
  }

  .logo h1 {
    font-size: 20px;
  }

  .hero-title {
    font-size: 42px;
  }

  .hero-container {
    gap: 40px;
  }

  .image-container {
    width: 350px;
    height: 450px;
  }
}

/* ============================================================================
   MOBİL MENU - TAM ÇALIŞAN VERSİYON
   ============================================================================ */
@media (max-width: 1024px) {
  .header-top {
    padding: 8px 0;
  }

  .contact-info {
    gap: 20px;
  }

  .contact-item span {
    display: none;
  }

  .contact-item i {
    font-size: 14px;
  }

  .mobile-menu-toggle {
    display: flex !important;
  }

  /* DESKTOP NAVİGATİON GİZLE */
  .main-navigation {
    display: none;
  }

  /* MOBİL NAVİGATİON - OVERLAY İLE */
  .main-navigation.mobile-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: flex !important;
    align-items: center;
    justify-content: center;
    padding: 20px;
    box-sizing: border-box;
  }

  .main-navigation.mobile-nav.active {
    opacity: 1 !important;
    visibility: visible !important;
  }

  /* Menü içeriği - Merkez kutu */
  .mobile-nav .nav-menu {
    background: white;
    border-radius: 15px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    padding: 20px;
    margin: 0;
    width: 100%;
    max-width: 380px;
    max-height: 85vh;
    overflow-y: auto;
    flex-direction: column;
    gap: 0;
    position: relative;
    transform: scale(0.9);
    transition: transform 0.3s ease;
    box-sizing: border-box;
  }

  .main-navigation.mobile-nav.active .nav-menu {
    transform: scale(1);
  }

  /* Kapatma butonu */
  .mobile-nav .nav-menu::before {
    content: "\f00d";
    font-family: "Font Awesome 6 Free";
    font-weight: 900;
    position: absolute;
    top: 15px;
    right: 20px;
    font-size: 18px;
    color: #666;
    cursor: pointer;
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    transition: all 0.3s ease;
    z-index: 10;
  }

  .mobile-nav .nav-menu::before:hover {
    background: #f5f5f5;
    color: #007bff;
  }

  /* Menü başlığı */
  .mobile-nav .nav-menu::after {
    content: "MENÜ";
    position: absolute;
    top: 20px;
    left: 20px;
    font-size: 12px;
    font-weight: 700;
    color: #007bff;
    letter-spacing: 2px;
  }

  .mobile-nav .nav-item {
    border-bottom: 1px solid #f0f0f0;
    width: 100%;
    margin-top: 0;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 35px;
  }

  .mobile-nav .nav-item:last-child {
    border-bottom: none;
  }

  .mobile-nav .nav-link {
    font-size: 15px;
    padding: 15px 0;
    color: #333;
    font-weight: 600;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease;
    text-decoration: none;
    border-radius: 6px;
  }

  .mobile-nav .nav-link:hover {
    color: #007bff;
    background: rgba(0, 123, 255, 0.05);
    padding-left: 10px;
    padding-right: 10px;
  }

  .mobile-nav .nav-link::after {
    display: none !important;
  }

  /* Dropdown ikonları - MOBİL */
  .mobile-nav .dropdown > .nav-link::after {
    content: "\f107" !important;
    font-family: "Font Awesome 6 Free" !important;
    font-weight: 900 !important;
    font-size: 12px !important;
    color: #007bff !important;
    transition: transform 0.3s ease !important;
    display: block !important;
    width: auto !important;
    height: auto !important;
    background: none !important;
    position: static !important;
  }

  .mobile-nav .dropdown.active > .nav-link::after {
    transform: rotate(180deg) !important;
  }

  /* Dropdown Menu - MOBİL VERSİYON */
  .mobile-nav .dropdown-menu {
    position: static !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    box-shadow: none !important;
    background: #f8f9fa !important;
    margin: 8px 0 0 0 !important;
    border-radius: 8px !important;
    padding: 0 !important;
    border: 1px solid #e9ecef !important;
    max-height: 0 !important;
    overflow: hidden !important;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1) !important;
  }

  .mobile-nav .dropdown-menu::before {
    display: none !important;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 200px !important;
    padding: 10px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    padding: 10px 15px !important;
    font-size: 13px !important;
    color: #666 !important;
    font-weight: 500 !important;
    border-bottom: 1px solid #e9ecef !important;
    text-transform: none !important;
    letter-spacing: 0 !important;
    transition: all 0.3s ease !important;
    display: block !important;
    width: 100% !important;
    text-decoration: none !important;
    border-radius: 6px !important;
    margin: 1px 6px !important;
    width: calc(100% - 12px) !important;
    box-sizing: border-box !important;
  }

  .mobile-nav .dropdown-menu a:last-child {
    border-bottom: none !important;
  }

  .mobile-nav .dropdown-menu a:hover {
    background: #007bff !important;
    color: white !important;
    transform: translateX(3px) !important;
  }

  .mobile-nav .dropdown-menu a::before {
    display: none !important;
  }

  /* Hero adjustments */
  .hero-section {
    margin-top: 80px;
    padding: 50px 0;
  }

  .hero-container {
    flex-direction: column;
    gap: 40px;
    text-align: center;
  }

  .hero-title {
    font-size: 36px;
  }

  .hero-buttons {
    justify-content: center;
  }

  .hero-stats {
    justify-content: center;
    gap: 30px;
  }

  .image-container {
    width: 300px;
    height: 400px;
    transform: rotate(0deg);
  }

  .floating-card {
    position: static;
    margin-top: 30px;
    width: 100%;
    max-width: 300px;
  }
}

/* Custom scrollbar for mobile menu */
@media (max-width: 1024px) {
  .mobile-nav .nav-menu::-webkit-scrollbar {
    width: 3px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 2px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-thumb {
    background: #007bff;
    border-radius: 2px;
  }

  .mobile-nav .nav-menu::-webkit-scrollbar-thumb:hover {
    background: #0056b3;
  }
}

/* iOS Safari optimizations */
@supports (-webkit-overflow-scrolling: touch) {
  @media (max-width: 1024px) {
    .main-navigation.mobile-nav.active {
      -webkit-overflow-scrolling: touch;
    }

    .mobile-nav .nav-menu {
      -webkit-overflow-scrolling: touch;
    }
  }
}

/* Touch optimizations */
@media (hover: none) and (pointer: coarse) {
  @media (max-width: 1024px) {
    .mobile-nav .nav-link:hover {
      background: none;
      padding-left: 0;
      padding-right: 0;
    }

    .mobile-nav .nav-link:active {
      background: rgba(0, 123, 255, 0.1);
    }
  }
}

@media (max-width: 768px) {
  .header-top {
    display: none;
  }

  .header-main {
    padding: 12px 0;
  }

  .logo h1 {
    font-size: 18px;
  }

  .logo-subtitle {
    font-size: 9px;
  }

  .btn-header {
    padding: 8px 12px;
    font-size: 10px;
  }

  .main-navigation.mobile-nav {
    padding: 15px;
  }

  .mobile-nav .nav-menu {
    padding: 15px;
    max-width: 350px;
    max-height: 80vh;
  }

  .mobile-nav .nav-menu::after {
    top: 15px;
    left: 15px;
    font-size: 11px;
  }

  .mobile-nav .nav-menu::before {
    top: 12px;
    right: 15px;
    font-size: 16px;
    width: 30px;
    height: 30px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 30px;
  }

  .mobile-nav .nav-link {
    font-size: 14px;
    padding: 12px 0;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 150px !important;
    padding: 8px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 12px !important;
    padding: 8px 12px !important;
  }

  .hero-title {
    font-size: 32px;
  }

  .hero-description {
    font-size: 16px;
    padding-left: 15px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
    gap: 15px;
  }

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 280px;
    justify-content: center;
  }

  .hero-stats {
    gap: 20px;
    flex-wrap: wrap;
    justify-content: center;
  }

  .stat-item {
    min-width: 100px;
    padding: 15px;
  }

  .stat-number {
    font-size: 24px;
  }

  .image-container {
    width: 280px;
    height: 350px;
  }

  .side-menu {
    right: 10px;
  }

  .whatsapp-button {
    bottom: 20px;
    right: 20px;
  }

  .whatsapp-button a {
    width: 50px;
    height: 50px;
    font-size: 20px;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 15px;
  }

  .logo h1 {
    font-size: 16px;
  }

  .logo-subtitle {
    font-size: 8px;
  }

  .btn-header {
    padding: 6px 10px;
    font-size: 9px;
  }

  .main-navigation.mobile-nav {
    padding: 10px;
  }

  .mobile-nav .nav-menu {
    padding: 12px;
    max-width: 320px;
    max-height: 75vh;
    border-radius: 12px;
  }

  .mobile-nav .nav-menu::after {
    top: 12px;
    left: 12px;
    font-size: 10px;
  }

  .mobile-nav .nav-menu::before {
    top: 10px;
    right: 12px;
    font-size: 14px;
    width: 28px;
    height: 28px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 25px;
  }

  .mobile-nav .nav-link {
    font-size: 13px;
    padding: 10px 0;
  }

  .mobile-nav .dropdown > .nav-link::after {
    font-size: 11px !important;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 120px !important;
    padding: 6px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 11px !important;
    padding: 6px 10px !important;
  }

  .hero-title {
    font-size: 28px;
  }

  .doctor-name {
    font-size: 24px;
  }

  .hero-description {
    font-size: 15px;
    padding-left: 10px;
  }

  .btn-primary,
  .btn-secondary {
    padding: 12px 20px;
    font-size: 14px;
  }

  .hero-stats {
    gap: 15px;
    flex-direction: column;
    align-items: center;
  }

  .stat-item {
    min-width: 90px;
    padding: 12px;
    width: 100%;
    max-width: 150px;
  }

  .stat-number {
    font-size: 22px;
  }

  .stat-label {
    font-size: 11px;
  }

  .image-container {
    width: 250px;
    height: 320px;
  }

  .floating-card {
    padding: 20px;
    min-width: 180px;
  }

  .card-icon {
    width: 40px;
    height: 40px;
    font-size: 16px;
  }

  .card-title {
    font-size: 14px;
  }

  .card-subtitle {
    font-size: 12px;
  }

  .side-menu-content {
    padding: 25px 12px;
  }

  .side-menu-text {
    font-size: 12px;
  }

  .side-menu-icon {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .logo h1 {
    font-size: 14px;
  }

  .btn-header {
    padding: 5px 8px;
    font-size: 8px;
  }

  .main-navigation.mobile-nav {
    padding: 8px;
  }

  .mobile-nav .nav-menu {
    padding: 10px;
    max-width: 280px;
    max-height: 70vh;
  }

  .mobile-nav .nav-menu::after {
    top: 10px;
    left: 10px;
    font-size: 9px;
  }

  .mobile-nav .nav-menu::before {
    top: 8px;
    right: 10px;
    font-size: 12px;
    width: 25px;
    height: 25px;
  }

  .mobile-nav .nav-item:first-child {
    margin-top: 22px;
  }

  .mobile-nav .nav-link {
    font-size: 12px;
    padding: 8px 0;
  }

  .mobile-nav .dropdown.active .dropdown-menu {
    max-height: 100px !important;
    padding: 5px 0 !important;
  }

  .mobile-nav .dropdown-menu a {
    font-size: 10px !important;
    padding: 5px 8px !important;
  }

  .hero-title {
    font-size: 24px;
  }

  .doctor-name {
    font-size: 20px;
  }

  .hero-description {
    font-size: 14px;
  }

  .image-container {
    width: 220px;
    height: 280px;
  }

  .floating-card {
    min-width: 160px;
    padding: 15px;
  }

  .hero-container {
    gap: 30px;
  }
}
