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

body {
  font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #e6f0ff; /* Açık mavi arka plan */
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 20px;
}

h1, h2, h3, h4 {
  margin-bottom: 15px;
  font-weight: 600;
}

p {
  margin-bottom: 15px;
  color: #555; /* Biraz daha koyu mavi tonuna yakın */
}

a {
  text-decoration: none;
  color: #1a3d7c; /* Koyu mavi */
}

ul {
  list-style: none;
}

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

.btn {
  display: inline-block;
  padding: 12px 30px;
  border-radius: 30px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  text-decoration: none;
}

.primary-btn {
  background-color: #1a3d7c; /* Koyu mavi */
  color: white;
}

.primary-btn:hover {
  background-color: #163366; /* Daha koyu mavi hover */
}

.highlight {
  color: #3399ff; /* Canlı mavi vurgu */
}

section {
  padding: 60px 0;
}

/* Top Bar */
.top-bar {
  background-color: #3399ff; /* Orta mavi */
  color: white;
  padding: 8px 0;
  font-size: 14px;
  border-radius: 0 0 30px 30px;
}

.top-bar .container {
  display: flex;
  justify-content: center;
}

/* Header */
header {
  background-color: white;
  padding: 20px 0;
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 10px rgba(26, 61, 124, 0.1); /* Mavi tonlarında hafif gölge */
}

header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.logo {
  display: flex;
  align-items: center;
}

.logo-img {
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin-right: 10px;
  object-fit: cover;
}

.logo h1 {
  font-size: 1.4rem;
  margin-bottom: 0;
  color: #1a3d7c; /* Koyu mavi */
}

nav ul {
  display: flex;
}

nav ul li {
  margin: 0 20px;
}

nav ul li a {
  font-weight: 500;
  transition: color 0.3s ease;
  font-size: 15px;
  color: #1a3d7c; /* Koyu mavi */
}

nav ul li a:hover,
nav ul li a.active {
  color: #3399ff; /* Orta mavi hover ve aktif renk */
}

.contact-btn {
  background-color: #3399ff; /* Orta mavi */
  color: white;
  border: none;
  padding: 10px 25px;
  border-radius: 25px;
  font-weight: 600;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-btn:hover {
  background-color: #1a73e8; /* Daha koyu mavi hover */
}

/* Hero Section */
.hero {
  background-color: #e6f0ff; /* Açık mavi arka plan */
  padding: 40px 0;
}
.background-video {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
  z-index: -1;
  opacity: 0.6; /* İsteğe bağlı: videoyu biraz saydam yapar */
}


.hero .container {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.hero-content {
  flex: 1;
  padding-right: 40px;
  max-width: 60%;
}

.hero-content h2 {
  font-size: 2.2rem;
  line-height: 1.2;
  margin-bottom: 20px;
  color: #1a3d7c; /* Koyu mavi */
}

.hero-content h2 span {
  color: #3399ff; /* Vurgu için orta mavi */
}

.hero-content p {
  margin-bottom: 30px;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
  font-size: 16px;
}

.hero-image {
  flex: 0 0 40%;
  text-align: center;
  padding: 30px;
  background-color: white;
  border-radius: 15px;
  box-shadow: 0 5px 20px rgba(26, 61, 124, 0.1); /* Mavi tonlarında hafif gölge */
  border: 3px solid #3399ff; /* Orta mavi sınır */
}

.hero-image img {
  border-radius: 10px;
  max-height: 300px;
  object-fit: cover;
}

.stats {
  display: flex;
  margin-top: 40px;
}

.stat-item {
  margin-right: 60px;
}

.stat-item h3 {
  font-size: 2rem;
  color: #3399ff; /* Orta mavi */
  margin-bottom: 5px;
}

.stat-item p {
  font-size: 0.9rem;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
  margin: 0;
}

/* Appointment Section */
.appointment {
  background-color: white;
  padding: 50px 0;
}

.appointment .container {
  display: flex;
  justify-content: space-between;
  background-color: #f0f5ff; /* Çok açık mavi */
  border-radius: 15px;
  overflow: hidden;
  box-shadow: 0 5px 20px rgba(26, 61, 124, 0.05); /* Çok hafif mavi gölge */
}

.appointment-content {
  flex: 1;
  padding: 50px;
}

.appointment-content h2 {
  font-size: 1.8rem;
  margin-bottom: 15px;
  color: #1a3d7c; /* Koyu mavi */
}

.appointment-content h2 span {
  color: #3399ff; /* Orta mavi vurgu */
}

.appointment-form {
  flex: 1;
  padding: 50px;
  background-color: white;
}

.form-row {
  display: flex;
  margin-bottom: 20px;
  gap: 15px;
}

.form-group {
  flex: 1;
}

.form-group label {
  display: block;
  margin-bottom: 8px;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
  font-size: 14px;
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px;
  border: 1px solid #c3d0f7; /* Açık mavi sınır */
  border-radius: 8px;
  font-family: inherit;
  font-size: 14px;
}

.form-group textarea {
  height: 80px;
  resize: vertical;
}

.submit-btn {
  background-color: #1a3d7c; /* Koyu mavi */
  color: white;
  border: none;
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background-color 0.3s ease;
  margin-top: 15px;
}

.submit-btn:hover {
  background-color: #163366; /* Daha koyu mavi */
}

/* Award Section */
.award {
  padding: 60px 0;
  background-color: white;
}

.award-content {
  display: flex;
  align-items: flex-start;
  gap: 60px;
}

.award-badge {
  flex: 0 0 300px;
}

.award-img {
  width: 100%;
  height: auto;
  border-radius: 15px;
}

.award-text {
  flex: 1;
}

.title-icon {
  display: flex;
  align-items: center;
  margin-bottom: 30px;
}

.title-icon i {
  color: #3399ff; /* Orta mavi */
  font-size: 1.5rem;
  margin-right: 15px;
}

.title-icon h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #1a3d7c; /* Koyu mavi */
}

.award-text h2 {
  font-size: 2rem;
  margin-bottom: 15px;
  color: #1a3d7c; /* Koyu mavi */
}

.award-text h2 span {
  color: #3399ff; /* Orta mavi */
}

.award-text > p {
  margin-bottom: 40px;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
  font-size: 16px;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.service-item {
  display: flex;
  align-items: center;
  padding: 15px;
}

.service-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f0ff; /* Açık mavi arka plan */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 15px;
}

.service-icon i {
  color: #3399ff; /* Orta mavi */
  font-size: 1.2rem;
}

.service-item h4 {
  margin: 0;
  font-size: 1rem;
  color: #1a3d7c; /* Koyu mavi */
}

.service-cta {
  display: flex;
  align-items: center;
  gap: 30px;
}

.text-link {
  color: #3399ff; /* Orta mavi */
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}

/* Testimonials Section */
.testimonials {
  padding: 60px 0;
  background-color: #e6f0ff; /* Açık mavi */
}

.testimonials h2 {
  text-align: center;
  font-size: 2rem;
  margin-bottom: 50px;
  color: #1a3d7c; /* Koyu mavi */
}

.testimonials h2 span {
  color: #3399ff; /* Orta mavi */
}

.testimonial-slider {
  display: flex;
  justify-content: space-between;
  margin-bottom: 30px;
  gap: 30px;
}

.testimonial-item {
  flex: 1;
  text-align: center;
}

.video-thumbnail {
  position: relative;
  margin-bottom: 15px;
  border-radius: 10px;
  overflow: hidden;
}

.video-thumbnail img {
  width: 100%;
  height: 200px;
  object-fit: cover;
  display: block;
}

.play-btn {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  background-color: #3399ff; /* Orta mavi */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.3);
}

.play-btn i {
  color: white;
  font-size: 1.5rem;
  margin-left: 3px;
}

.testimonial-item p {
  margin: 0;
  font-size: 0.9rem;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
}

.slider-dots {
  display: flex;
  justify-content: center;
  margin-top: 30px;
  gap: 10px;
}

.dot {
  width: 10px;
  height: 10px;
  background-color: #c3d0f7; /* Açık mavi */
  border-radius: 50%;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.dot.active {
  background-color: #3399ff; /* Orta mavi */
}

/* Why Choose Us Section */
.why-choose-us {
  padding: 60px 0;
  background-color: #e6f0ff; /* Açık mavi */
}

.section-header {
  text-align: center;
  margin-bottom: 50px;
}

.section-header .title-icon {
  justify-content: center;
  margin-bottom: 20px;
}

.section-header h2 {
  font-size: 2rem;
  margin: 0;
  color: #1a3d7c; /* Koyu mavi */
}

.section-header h2 span {
  color: #3399ff; /* Orta mavi */
}

.features {
  display: flex;
  gap: 60px;
  align-items: center;
}

.features-content {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
}

.feature-item {
  background-color: white;
  padding: 25px;
  border-radius: 10px;
  box-shadow: 0 3px 15px rgba(26, 61, 124, 0.05); /* Hafif mavi gölge */
}

.feature-icon {
  width: 50px;
  height: 50px;
  background-color: #e6f0ff; /* Açık mavi */
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 15px;
}

.feature-icon i {
  color: #3399ff; /* Orta mavi */
  font-size: 1.3rem;
}

.feature-item h4 {
  margin-bottom: 10px;
  font-size: 1.1rem;
  color: #1a3d7c; /* Koyu mavi */
}

.feature-item p {
  font-size: 0.9rem;
  margin: 0;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
}

.features-image {
  flex: 0 0 400px;
  text-align: center;
}

.features-image img {
  border-radius: 50%;
  width: 300px;
  height: 300px;
  object-fit: cover;
  box-shadow: 0 10px 30px rgba(26, 61, 124, 0.1); /* Mavi tonlarında gölge */
}

/* Treatment Sections */
.treatment-section {
  padding: 60px 0;
  text-align: center;
  background-color: white;
}

.treatment-section:nth-child(even) {
  background-color: #e6f0ff; /* Açık mavi */
}

.treatment-section h2 {
  font-size: 2rem;
  margin-bottom: 10px;
  color: #1a3d7c; /* Koyu mavi */
}

.subtitle {
  color: #555; /* Orta koyulukta mavi tonuna yakın */
  margin-bottom: 50px;
  font-size: 16px;
}

.before-after-gallery {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


/* Map Section */
.map-section {
  padding: 10px;
  width: 140%;
  height: 80%;
  box-sizing: border-box; /* Padding genişlik etkisi için */
}



/* Footer */
footer {
  background-color: #f8f5f5; /* Açık mavi ton */
  padding: 60px 0 30px;
}

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

.footer-logo {
  display: flex;
  align-items: center;
}

.footer-logo h3 {
  margin: 0;
  font-size: 1.3rem;
  color: #1a3d7c; /* Koyu mavi */
}

.footer-contact ul li {
  margin-bottom: 15px;
  display: flex;
  align-items: center;
  color: #555; /* Orta koyulukta mavi tonuna yakın */
}

.footer-contact ul li i {
  margin-right: 15px;
  color: #3399ff; /* Orta mavi */
  width: 20px;
}

/* Chat Button */
.chat-button {
  position: fixed;
  bottom: 30px;
  right: 30px;
  z-index: 100;
}

.chat-button button {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background-color: #3399ff; /* Orta mavi */
  color: white;
  border: none;
  box-shadow: 0 5px 20px rgba(51, 153, 255, 0.4); /* mavi gölge */
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s ease;
}

.chat-button button:hover {
  transform: scale(1.1);
  box-shadow: 0 8px 25px rgba(51, 153, 255, 0.5); /* yoğunlaşan mavi gölge */
}

.chat-button button i {
  font-size: 1.5rem;
}
.photo-gallery {
  padding: 60px 0;
  background-color: #f9f9f9;
}

.gallery-row {
  display: flex;
  justify-content: space-between;
  gap: 15px;
  flex-wrap: wrap;
}

/* Bütün gallery-item'lar normalde aynı boyutta */
.gallery-item {
  flex: 1 1 calc(20% - 12px); /* 5 tane yan yana */
  border: 2px solid #ddd;
  border-radius: 8px;
  overflow: hidden;
  background-color: white;
  box-shadow: 0 2px 8px rgba(0,0,0,0.1);
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.gallery-item img {
  width: 100%;
  height: auto;
  display: block;
  transition: transform 0.3s ease;
}

/* Galeriye hover uygulanınca */
.gallery-row:hover .gallery-item {
  transform: scale(0.95);      /* hepsi biraz küçülür */
  opacity: 0.6;                /* biraz saydamlaşır */
}

/* Sadece mouse üzerindeki item büyüsün ve opaklığı tam olsun */
.gallery-row .gallery-item:hover {
  transform: scale(1.1);       /* büyüt */
  opacity: 1;                  /* tam görünür */
  z-index: 1;                  /* öne gelsin */
}


/* Responsive Design Geliştirmeleri */

@media (max-width: 992px) {
  .hero .container,
  .appointment .container,
  .features,
  .award-content {
    flex-direction: column;
  }
  
  .hero-content,
  .appointment-content,
  .features-content {
    max-width: 100%;
    padding-right: 0;
    margin-bottom: 30px;
  }
  
  .service-grid,
  .features-content {
    grid-template-columns: 1fr;
  }
  
  .testimonial-slider {
    flex-direction: column;
    flex-wrap: wrap;
  }
  

  
  
  .features-image {
    flex: none;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  nav {
    display: none;
  }
  
  .form-row {
    flex-direction: column;
    gap: 10px;
  }
  
  .form-group {
    margin-bottom: 15px;
  }
  
  .footer-top {
    flex-direction: column;
    text-align: center;
  }
  
  .footer-logo {
    margin-bottom: 30px;
  }
  
  
  
  .stats {
    flex-direction: column;
  }
  
  .stat-item {
    margin-right: 0;
    margin-bottom: 20px;
  }

  .container {
    padding: 0 15px;
  }

  section {
    padding: 40px 15px;
  }

  .testimonial-slider {
    flex-direction: column;
    flex-wrap: wrap;
  }

  .features {
    flex-direction: column;
  }

  .service-grid {
    grid-template-columns: 1fr !important;
  }

  .hero-image img,
  
  .features-image img {
    max-width: 100%;
    height: auto;
  }

  .btn, .submit-btn, .contact-btn, .chat-button button {
    padding: 15px 25px;
    font-size: 16px;
  }

  .testimonial-item {
    padding: 0 10px;
  }

  /* İçeriklerin tam ortalanması */
  .hero .container,
  .appointment .container,
  .features,
  .award-content,
  .testimonial-slider,
  .before-after-gallery {
    flex-direction: column;
    align-items: center;       /* Yatay ortalama */
    justify-content: center;   /* Dikey ortalama */
    text-align: center;        /* Yazıları ortala */
  }

  .hero-content,
  .appointment-content,
  .features-content,
  .award-text,
  .testimonial-item,
  .features-image {
    max-width: 100%;
    padding: 0;
    margin-bottom: 30px;
  }

  
  
}
