/* Genel Body Ayarlarè¦º */
body {
  font-family: 'Lato', sans-serif;
  background-color: #A7F5F3;
  color: #003366;
  margin: 0;
  padding: 0;
}

/* Header */
.header {
  background-color: #003366;
  padding: 30px 0;
}

.header-container {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.logo {
  height: 80px;
  border-radius: 20px;
  position: absolute;
  left: 40px;
}

.header-text {
  color: white;
  text-align: center;
}

.clinic-name {
  font-size: 2em;
  font-weight: bold;
}

.clinic-subtitle {
  font-size: 1.2em;
  margin-top: 5px;
  opacity: 0.8;
}

/* ID Photo */
.id-photo {
  text-align: center;
  padding: 50px 20px;
}

.id-photo img {
  width: 150px;
  height: 150px;
  max-width: 90%;
  border-radius: 75px;
  object-fit: cover;
  border: 4px solid #003366;
  transition: transform 0.3s ease;
}

.id-photo img:hover {
  transform: scale(1.08);
}

.id-photo p {
  font-size: 1.3em;
  color: #003366;
  margin-top: 10px;
}

.subtitle {
  font-size: 0.9em;
  opacity: 0.8;
}

/* Hero Section */
.hero {
  text-align: center;
  padding: 40px 20px;
}

.hero p {
  font-size: 1.2em;
  margin-bottom: 30px;
}

.cta-button {
  display: inline-block;
  background-color: #25D366;
  color: white;
  padding: 15px 30px;
  border-radius: 30px;
  text-decoration: none;
  font-size: 1.2em;
  transition: background-color 0.3s ease;
}

.cta-button:hover {
  background-color: #1DA851;
}

/* Links (Nos Services) */
.links {
  text-align: center;
  padding: 40px 20px;
}

.links h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.links ul {
  list-style: none;
  padding: 0;
}

.links li {
  margin: 10px 0;
}

.links a {
  color: #003366;
  text-decoration: none;
  font-size: 1.1em;
  transition: color 0.3s ease;
}

.links a:hover {
  color: #008080;
}

/* VIP Photos (Gallery) */
.vip-photos {
  text-align: center;
  padding: 50px 20px;
  background-color: #DFF6F5;
}

.vip-photos h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
}

.photo-gallery {
  display: flex;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.photo-gallery div {
  text-align: center;
}

.photo-gallery img {
  width: 300px;
  height: 200px;
  object-fit: cover;
  border-radius: 20px;
  border: 3px solid #003366;
}

.photo-gallery p {
  margin-top: 10px;
  font-size: 1em;
}

/* Video Section */
.video-section {
  text-align: center;
  padding: 50px 20px;
  background-color: #DFF6F5;
}

.video-section iframe,
.video-placeholder {
  width: 80%;
  max-width: 600px;
  height: 315px;
  margin: 0 auto;
  background-color: #003366;
  color: white;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 20px;
  font-size: 1.5em;
}

/* Footer */
footer {
  background-color: #003366;
  color: white;
  text-align: center;
  padding: 20px 10px;
}

footer p {
  margin: 0;
}

/* WhatsApp Sticky Button */
.whatsapp-sticky {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
  color: white;
  padding: 15px 25px;
  border-radius: 50px;
  text-decoration: none;
  font-size: 18px;
  font-weight: bold;
  z-index: 1000;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.whatsapp-sticky:hover {
  background-color: #1DA851;
  transform: scale(1.05);
}

.whatsapp-sticky i {
  margin-right: 10px;
  font-size: 22px;
}

/* Social Sticky Buttons */
.social-sticky {
  position: fixed;
  bottom: 80px;
  right: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  z-index: 1000;
}

.social-sticky a {
  background-color: #003366;
  color: white;
  width: 45px;
  height: 45px;
  border-radius: 50%;
  text-align: center;
  line-height: 45px;
  font-size: 20px;
  transition: background-color 0.3s ease, transform 0.3s ease;
}

.social-sticky a:hover {
  background-color: #A7F5F3;
  color: #003366;
}

/* Mobil Versiyon Optimize */
@media screen and (max-width: 768px) {

  .header-container {
    flex-direction: column;
    align-items: center;
  }

  .logo {
    position: static;
    margin-bottom: 15px;
  }

  .photo-gallery {
    flex-direction: column;
    gap: 20px;
  }

  .whatsapp-sticky {
    right: 10px;
    bottom: 10px;
    padding: 12px 16px;
    font-size: 14px;
    border-radius: 40px;
  }

  .whatsapp-sticky i {
    font-size: 18px;
    margin-right: 6px;
  }

  .social-sticky {
    right: 10px;
    bottom: 70px;
    gap: 8px;
  }

  .social-sticky a {
    width: 36px;
    height: 36px;
    font-size: 16px;
  }
}
.video-placeholder {
  all: unset;
  display: block;
  margin: 0 auto;
  padding: 0;
  max-width: 700px;
  width: 100%;
  height: auto;
}

.video-placeholder .turkuaz-video {
  max-width: 100%;
  width: 100%;
  height: auto;
  display: block;
  margin: 0 auto;
  border-radius: 12px;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
  position: relative;
  z-index: 1;
}

@media screen and (max-width: 768px) {
  .video-placeholder {
    all: unset;
    display: block !important;
    width: 100% !important;
    max-width: 100% !important;
    height: auto !important;
    margin: 20px auto !important;
    padding: 0 !important;
    overflow: hidden;
  }

  .video-placeholder video {
    display: block !important;
    width: 100% !important;
    height: auto !important;
    max-width: 100% !important;
    border-radius: 10px !important;
    position: relative !important;
    z-index: 1 !important;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
  }

  footer {
    z-index: 0 !important;
    position: relative !important;
  }
}

.contact-form-section form {
  max-width: 500px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 15px;
}

.contact-form-section input,
.contact-form-section button {
  padding: 12px;
  border-radius: 8px;
  border: 1px solid #ccc;
  font-size: 16px;
}

.contact-form-section button {
  background-color: #25D366;
  color: white;
  font-weight: bold;
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.contact-form-section button:hover {
  background-color: #1DA851;
}
/* === FORM ARKA PLAN PATCH â€“ Magna Carta Kraliyet RÃ¶tÃ¼ÅŸÃ¼ ðŸ‘‘ === */

.contact-form-section {
  background-color: #DFF6F5;
  padding: 50px 20px;
  text-align: center;
  border-radius: 16px;
  max-width: 650px;
  margin: 0 auto;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.contact-form-wrapper {
  background-color: #003366;
  padding: 60px 7%;
  text-align: center;
}

@media screen and (max-width: 768px) {
  .contact-form-wrapper {
    padding: 40px 5%;
  }
}
.carousel-section {
  background-color: #DFF6F5;
  padding: 50px 20px;
  text-align: center;
}

.carousel-section h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #003366;
}

.carousel {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  gap: 20px;
  padding-bottom: 10px;
  scrollbar-width: none; /* Firefox */
  -ms-overflow-style: none;  /* IE 10+ */
}

.carousel::-webkit-scrollbar {
  display: none; /* Chrome, Safari */
}

.carousel img,
.carousel video {
  flex: 0 0 auto;
  width: 250px;
  height: 160px;
  border-radius: 12px;
  object-fit: cover;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background-color: #000;
}

.carousel img:hover,
.carousel video:hover {
  transform: scale(1.05);
}
/* 🎥 Reels formatlı medya carousel için özel dikey görünüm */
.carousel-reels .carousel img,
.carousel-reels .carousel video {
  width: 240px;
  height: 426px;
  object-fit: cover;
  border-radius: 12px;
  scroll-snap-align: start;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  transition: transform 0.3s ease;
  background-color: #000;
}

.carousel-reels .carousel img:hover,
.carousel-reels .carousel video:hover {
  transform: scale(1.05);
}
.carousel-caption {
  margin-top: 8px;
  font-size: 0.9em;
  color: #003366;
  text-align: center;
  font-style: italic;
}
@media screen and (max-width: 768px) {
  .carousel-item {
    width: 200px;
  }

  .carousel-caption {
    font-size: 0.85em;
  }
}
.carousel-item {
  flex: 0 0 auto;
  width: 250px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.testimonial-section {
  background-color: #f8f8f8;
  padding: 40px 20px;
  border-radius: 20px;
  margin: 50px auto;
  max-width: 800px;
  text-align: center;
}

.testimonial-section h2 {
  font-size: 1.8em;
  margin-bottom: 30px;
  color: #003366;
}

.testimonial {
  background-color: white;
  padding: 20px;
  border-radius: 15px;
  box-shadow: 0 0 10px rgba(0,0,0,0.05);
  margin-bottom: 20px;
}

.testimonial p {
  font-style: italic;
  font-size: 1.1em;
}

.testimonial .author {
  display: block;
  margin-top: 10px;
  font-weight: bold;
  color: #0099cc;
}
.testimonial-section {
  margin-top: 40px;
  margin-bottom: 60px;
}
.intro-text {
  max-width: 850px;
  margin: 30px auto;
  padding: 0 20px;
  font-size: 1.1em;
  line-height: 1.3;
  text-align: justify;
  color: #003366;
}
.intro-box {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 20px auto;
  text-align: justify;
  font-size: 1.1em;
  line-height: 1.4; /* ✅ Eskisi 1.8 idi */
  color: #003366;
}
.intro-box p {
  margin: 0;
  text-align: justify;
}
.link-box {
  background-color: #ffffff;
  padding: 35px 30px;
  border-radius: 20px;
  box-shadow: 0 0 12px rgba(0, 0, 0, 0.05);
  max-width: 900px;
  margin: 20px auto;
  color: #003366;
  font-family: 'Lato', sans-serif;
  text-align: center;
}

.link-box h2 {
  font-size: 1.8em;
  margin-bottom: 20px;
  color: #003366;
}

.link-box ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.link-box li {
  margin: 10px 0;
}

.link-box a {
  text-decoration: none;
  color: #0099cc;
  font-weight: 600;
  transition: color 0.3s ease;
}

.link-box a:hover {
  color: #006688;
}
.hero {
  margin: 0;
  padding: 0;
}
