@import url("https://fonts.googleapis.com/css2?family=Electrolize&family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&family=Roboto:ital,wght@0,100..900;1,100..900&family=Titillium+Web:ital,wght@0,200;0,300;0,400;0,600;0,700;0,900;1,200;1,300;1,400;1,600;1,700&display=swap");
* {
  margin: 0;
  padding: 0;
}
body {
  font-family: "Electrolize", sans-serif;
}

.container {
  background-color: white;
  color: black;
}

/*!NAVBAR START  */

.navbar {
  background-color: white;
  color: black;
  height: 100px;
  width: 100%;

  position: sticky;
  top: 0;
  z-index: 1000;
}
.navbar-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100%;
  padding: 0 50px;
}
.logo-wrapper {
  position: relative;
  z-index: 10;
}

.logo-wrapper a {
  display: inline-block;
}

.logo-wrapper img {
  cursor: pointer;
  pointer-events: auto;
}
.logo {
  font-size: 30px;
  color: rgb(255, 70, 70);
}
.menu-list {
  display: flex;
  column-gap: 30px;
  list-style: none;
  align-items: center;
  padding: 0;
}
.menu-list-item {
  cursor: pointer;
  transition: ease-in-out 0.3s;
}
.menu-list-item:hover {
  font-weight: bold;
}
.menu-list-item-active a {
  font-weight: bold;
  text-decoration: none;
  color: black;
}
.menu-list-item a {
  text-decoration: none;
  color: black;
}

.profile-container {
  display: flex;
  align-items: center;
  column-gap: 40px;
}
.profile-picture {
  width: 120px;
  height: 90px;
  object-fit: cover;
  pointer-events: auto;
}
.profile-button .play-button {
  padding: 10px 25px;
  border-radius: 5px;
  border: none;
  outline: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  font-size: 16px;
  text-decoration: none;
  background: red;
  color: white;
  transition: ease 0.5s;
}
.profile-button .play-button:hover {
  background-color: #aa0505;
  font-weight: bold;
}
.toogle {
  width: 40px;
  height: 20px;
  background-color: black;
  position: relative;
  border-radius: 30px;
  display: flex;
  align-items: center;
  justify-content: space-around;
}
.toogle-icon {
  color: goldenrod;
}
.toogle-ball {
  width: 18px;
  height: 18px;
  background-color: white;
  border-radius: 50%;
  cursor: pointer;
  position: absolute;
  right: 1px;
  transition: 0.5s ease all;
}
.menu-toggle {
  display: none;
  font-size: 30px;
  cursor: pointer;
  color: #000;
}




/*!NAVBAR END  */

/*SIDEBAR START  */
.sidebar {
  background-color: white;
  height: 100vh;
  width: 50px;
  display: flex;
  flex-direction: column;
  top: 60px;
  justify-content: center;
  align-items: center;  
  row-gap: 70px;
  position: fixed;
  pointer-events: auto;
  z-index: 9999;
}

.sidebar i {
  color: black;
  font-size: 20px;
  cursor: pointer;
}
.sidebar a {
  pointer-events: auto;
}

/*SIDEBAR END  */

/*! FEATURED CONTENT START  */
.content-wrapper {
  margin-left: 50px;
}

.featured-content {
  position: relative;
  overflow: hidden;
  padding: 50px;
  min-height: 70vh;
  height: auto;
  background-size: 100% 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;

  z-index: 0;
}
.featured-content::before {
  content: "";
  display: block;
  min-height: 70vh;
}


.slider {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease;
}

/* Aktif olan */
.slide.active {
  opacity: 1;
}

.slide:nth-child(1) {
  background-image: url(./img/featured-1.jpg);
}
.slide:nth-child(2) {
  background-image: url(./img/featured-2.jpg);
}
.slide:nth-child(3) {
  background-image: url(./img/featured-3.jpg);
}
.slide:nth-child(4) {
  background-image: url(./img/featured-4.jpg);
}
.slide:nth-child(5) {
  background-image: url(./img/featured-5.jpg);
}
.slide:nth-child(6) {
  background-image: url(./img/featured-6.jpg);
}

.featured-overlay {
  position: absolute;
  inset: 0;

  display: flex;
  flex-direction: column;
  justify-content: flex-end; /* ALT REFERANS */
  align-items: center; /* YATAY ORTA */

  padding-bottom: 90px; /* ALTTA KALDIRIR (responsive) */
  gap: 30px; /* description ↔ button mesafesi */
  pointer-events: none;
}

.featured-description,
.featured-button {
  position: relative;
  z-index: 0;
}

.featured-description {
  background: rgba(255, 255, 255, 0.5);
  padding: 20px 30px;
  font-weight: bold;
  font-size: 24px;
  line-height: 1.4;
  color: black;
  font-family: "Roboto" sans-serif;
  white-space: nowrap;
  text-align: center;
}

/* Description Animasyon Start */
@keyframes slideDownFade {
  from {
    opacity: 0;
    transform: translateY(-40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-description.animate {
  animation: slideDownFade 1s ease forwards;
}
/* Description Animasyon end */

.featured-button {
  display: flex;
  flex-wrap: wrap;
}

.featured-button .info-button {
  padding: 10px 25px;
  outline: none;
  cursor: pointer;
  display: flex;
  column-gap: 10px;
  text-decoration: none;
  font-family: "Roboto" sans-serif;
  font-size: 16px;
  transition: ease 0.5s;
  background: red;
  color: white;
  pointer-events: auto;
  border-radius: 4px;
  border: none; /* kendi border'ını kapat */
  appearance: none; /* 🔥 TARAYICI STİLİNİ SİLER */
  -webkit-appearance: none;
  -moz-appearance: none;
}

.featured-button .info-button:hover {
  background-color: #aa0505;
  font-weight: bold;
  border-radius: 2px;
  border: 2px solid #ccc;
}

/* Featured Button Animation Start */
@keyframes slideUpFade {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.featured-button.animate {
  animation: slideUpFade 1s ease forwards;
  animation-delay: 0.2s;
}
/* Featured Button Animation END */

/*! FEATURED CONTENT END  */

/*! ABOUT CONTENT START   */
.row {
  position: relative;
  z-index: 2;
  height: 80vh;
  width: 100%;
  background: #f1efef;
  display: flex;
  margin-top: 50px;
}

.col-1 {
  flex-basis: 40%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.cards {
  margin-left: 40px;
  display: grid;
  grid-template-columns: repeat(2, 1fr); /* 2 sütun */
  grid-template-rows: repeat(2, auto); /* 2 satır */
  gap: 50px;
  max-width: 450px;
}

.card {
  width: 200px;
  height: 230px;
  background-position: center;
  background-size: cover;
  border-radius: 20px;
  cursor: pointer;
  border: 4px solid white;
  transition: 0.5s ease;
}

.card:hover {
  transform: translateY(-10px);
  
}

.card.card-1 {
  background-image: url(./img/card1.jpg);
}
.card.card-2 {
  background-image: url(./img/card2.jpg);
}
.card.card-3 {
  background-image: url(./img/card3.jpg);
}
.card.card-4 {
  background-image: url(./img/card4.jpg);
}

.row .col-2 {
  flex-basis: 60%;
  height: 100%;
  display: flex;
  justify-content: center;
  flex-direction: column;
  gap: 16px;
  padding: 40px 50px;

  font-family: sans-serif;
}

.col-2 h1 {
  font-size: 40px;
  text-align: center;
  color: rgb(100, 174, 25);
  margin: 0;
  margin-top: -30px;
}

.col-2 h2 {
  font-size: 24px;
  font-weight: 400;
  text-align: center;
  margin: 0;
  color: black;
}
.col-2 > p {
  font-size: 18px;
  line-height: 1.6;
  text-align: center;
  margin: 10px 0 20px;
  color: black;
}
.article {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.article h3 {
  font-size: 22px;
  margin-bottom: 5px;
  color: black;
}

.article p {
  font-size: 18px;
  line-height: 1.5;
  margin: 0;
  color: black;
}
.article h3,
.article1 h3,
.article2 h3,
.article3 h3 {
  display: flex;
  align-items: center;
  gap: 10px; /* ikon – yazı arası */
}

.article i {
  font-size: 22px;
  color: rgb(67, 114, 21);
}

/*! ABOUT CONTENT END  */

/*! MOVIE LİST START */
.movie-list-container {
  margin-left: 70px;
  padding-top: 70px;
  position: relative;
  z-index: 1;
}
.movie-list {
  list-style: none;
  height: 300px;
  display: flex;
  align-items: center;
  column-gap: 30px;
  transform: translateX(0);
  transition: 1s all ease-in-out;
}
.movie-list-title {
  width: 100%;
  text-align: center;
  margin-top: 30px;
  margin-bottom: 30px;
  font-size: 50px;
  letter-spacing: 3px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}
.movie-list-explanation {
  width: 100%;
  text-align: center;
  margin-bottom: 30px;

  font-size: 20px;
  font-weight: 400;
  line-height: 1.6;
  color: black;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}


/* Animasyon aktif olunca */
.movie-list-title.animate,
.movie-list-explanation.animate {
  opacity: 1;
  transform: translateY(0);
  

}
.movie-list-explanation.animate {
  transition-delay: 0.2s;
}



.movie-list-wrapper {
  overflow: hidden;
  position: relative;
}
.movie-item {
  position: relative;
}
.movie-item:hover .movie-item-title {
  opacity: 1;
  cursor: pointer;
}

.movie-item:hover .movie-item-image {
  transform: scale(1.2);
  margin: 0 30px;
  opacity: 0.5;
  cursor: pointer;
}

.movie-item-image {
  width: 270px;
  height: 200px;
  object-fit: cover;
  border-radius: 40px;
  transition: 1s all ease-in-out;
}
.movie-item-title {
  background-color: rgba(40, 40, 40, 0.5);
  padding: 10px 20px;
  position: absolute;
  color: white;
  bottom: 10px; /* resmin altına yakın */
  left: 50%; /* yatay ortalama */
  transform: translateX(-50%);

  font-size: 24px; /* sp değil px */
  font-weight: bold;
  white-space: nowrap;

  opacity: 0;
  transition: 0.6s ease;
}

.arrow {
  width: 100px;
  display: flex;
  font-size: 120px;
  position: absolute;
  right: 0;
  top: 100px;
  opacity: 0.5;
  transition: 0.5s ease all;
  cursor: pointer;
}
.arrow:hover {
  opacity: 1;
}

/*! MOVIE LİST END */



/*! COMMENT LİST START */

.comment-section {
  margin: 50px auto;
  width: 100%;
  text-align: center;
}

.comment-title {
  font-size: 40px;
  margin-bottom: 50px;
  opacity: 0;
  transform: translateY(-40px);
  transition: all 0.8s ease;
}

.comment-title.animate {
  opacity: 1;
  transform: translateY(0);
}


.comment-box {
  max-width: 900px;
  margin: auto;
}

.comment-list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 30px;
   align-items: stretch;
  transform: translateX(0);
  transition: 1s all ease-in-out;
}


.comment-item {
  flex: 0 0 350px; 
  background: #f5f5f5;
  padding: 25px;
  border-radius: 20px;
  text-align: center;
}





.comment-item p {
  font-size: 16px;
  line-height: 1.6;
  margin-bottom: 20px;

  /* HİZALAMA + RESPONSIVE */
  min-height: 4.8em;          /* 3 satır × 1.6 */
  
  display: -webkit-box;
  -webkit-line-clamp: 3;      
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.comment-item img {
  width: 80px;
  height: 80px;
  object-fit: cover;
  border-radius: 50%;
  margin-bottom: 10px;
}

.comment-item .name {
  display: block;
  font-weight: bold;
}

.comment-item .date {
  font-size: 13px;
  opacity: 0.6;
  color: #049b3c;
  font-weight: 800;
}
.comment-stars {
  margin-top: 10px;
  display: flex;
  justify-content: center;
  gap: 5px;
}

.comment-stars i {
  color: #f5b301; /* altın sarısı */
  font-size: 18px;
}


.comment-slider-wrapper {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding: 0 70px; /* movie-list-container gibi kenarlardan boşluk */
  box-sizing: border-box;
}

.comment-arrow {
  width: 100px;
  display: flex;
  font-size: 100px;
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0.5;
  transition: 0.5s ease all;
  cursor: pointer;
}

.comment-arrow:hover {
  opacity: 1;
}



/*! COMMEND LİST END */

/*! MAPS START */
.maps-full {
  width: 100%;
  height: 250px;
  padding-left: 50px;
  box-sizing: border-box;
  overflow: hidden;
}

.maps-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* ekstra boşluk önler */
}

/*! MAPS END */

/*! FOOTER START */

.footer {
  background-image: url(./img/footer.bg.png);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  padding: 60px 40px 20px;
  font-family: sans-serif;
}

.footer-wrapper {
  display: flex;
  gap: 20px;
  justify-content: space-between;
}

.footer-box {
  flex: 1;
  margin-left: 70px;
}

.footer-box h3 {
  margin-bottom: 25px;
  color: white;
  align-items: center;
}
.footer-box p > i,
.footer-box li > i,
.footer-box h3 > i {
  position: absolute;
  left: 0;
  top: 0;
  font-size: 18px;
  color: rgb(100, 174, 25);
}
.footer-box p {
  position: relative;
  padding-left: 30px;
  margin-bottom: 10px;
  color: #ccc;
  font-size: 16px;
}

.footer-box span {
  display: block;
  line-height: 1.5;
}

/* SERVICE START*/

.footer-services {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-services li {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
  font-size: 16px;
  color: #ccc;
}

.footer-services li i {
  position: static;
  display: inline-block;
  opacity: 1;
  visibility: visible;
  color: rgb(100, 174, 25);
  font-size: 16px;
}

.footer-services li span {
  line-height: 1.4;
}

/* SERVICE END*/

/* İLETİŞİM BİLGİLERİ START*/

.footer-address {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.footer-address i {
  margin-top: 3px;
}



/* İLETİŞİM BİLGİLERİ END*/

/* FORM START*/

.working-hours {
  list-style: none;
  padding: 0;
  margin: 0;
}

.working-hours li {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}

.working-hours span {
  display: inline-block;
  width: 120px; /* sabit kolon */
  color: #ccc;
}

.working-hours strong {
  color: #ccc;
  font-weight: 600;
}

/* FORM END*/


/* SOCIAL START */
.footer-social {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  margin: 20px 0 10px;
}

.footer-social a i {
  position: static !important;
  font-size: 26px;
  color: #fff;
  cursor: pointer;
  transition: all 0.3s ease;
}

/* Facebook */
.footer-social a.facebook:hover i {
  color: #1877f2;
}

/* WhatsApp */
.footer-social a.whatsapp:hover i {
  color: #25d366;
}

/* Instagram Gradient */
.footer-social a.instagram:hover i {
  background: linear-gradient(
    45deg,
    #feda75,
    #fa7e1e,
    #d62976,
    #962fbf,
    #4f5bd5
  );
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}


.footer-social a:hover {
  transform: scale(1.2);
}
/* SOCIAL END */


/* FOOTER BOTTOM START */

.footer-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;

  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #333;

  font-size: 14px;
  color: white;
}

/*! FOOTER END */

/*! DARK MODE START */

.navbar.active {
  background-color: black;
  color: white;
}
.menu-list-item-active a {
  color: inherit;
}
.menu-list-item a {
  color: inherit;
}

.sidebar.active {
  background-color: black;
}
.sidebar i.active {
  color: white;
}

.toogle.active {
  background-color: white;
}
.toogle-ball.active {
  background-color: black;
  transform: translate(-20px);
}

/*! DARK MODE END */





/*! ABOUT US HAKKIMIZDA START */
.about-us-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-direction: column;
}

.about-us-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/about-us-bg.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* yatay */
  align-items: center; /* dikey */
}

.about-us-title {
  color: white;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 24px;
  transform: translateY(40px);
}

.about-us-content {
  display: flex;
  gap: 20px; /* kart ↔ yazı mesafesi */
  padding: 20px 0;
}
.about-us-content + .about-us-content {
  margin-top: 0;
}

.about-us-col-1 {
  flex-basis: 35%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.about-us-card-1 {
  width: 300px;
  height: 300px;
  border-radius: 50%;

  overflow: hidden;
  border: 4px solid white;
}

.card-img-1 {
  width: 100%;
  height: 100%;

  background-image: url(./img/about-us-1.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.1); 
  transition: transform 0.4s ease;
}

.about-us-card-1:hover .card-img-1 {
  transform: scale(1); 
}

.about-us-col-2 {
  flex-basis: 55%;
  display: flex;
  justify-content: center; 
  align-items: flex-start; 
}

.about-us-article {
  width: 90%; /* kenarlardan nefes alsın */
}

.about-us-article p {
  text-align: justify; 
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

.about-us-article-down p {
  margin-left: 90px;
  text-align: justify; 
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

.card-img-2 {
  width: 100%;
  height: 100%;

  background-image: url(./img/about-us-2.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.1); 
  transition: transform 0.4s ease;
}

.about-us-card-1:hover .card-img-2 {
  transform: scale(1); 
}

/*! ABOUT US HAKKIMIZDA END */

/*! SERVICES HİZMETLERİMİZ START */

.services-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-direction: column;
}

.services-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/about-us-bg-1.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; 
  align-items: center; 
}

.services-title {
  color: white;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 24px;
  transform: translateY(40px);
}

.services-content {
  width: 100%;
  background: #f1efef;

  display: grid;
  grid-template-columns: repeat(3, 300px); /* HER SATIR 3 BOX */
  justify-content: center;
  gap: 50px;

  padding: 40px 0;
}

.box {
  position: relative;
  overflow: hidden;
  width: 300px;
  background: white;
  display: flex;
  flex-direction: column;
  min-height: 400px;
  text-align: center;
  margin: auto;
  margin-top: 5%;
  color: white;
  font-family: sans-serif;
  border: 2px solid white;
}

.box img {
  width: 300px;
  height: 250px;
  border-radius: 4px;
  cursor: pointer;
}

/* ŞİMŞEK KATMANI */
.box::after {
  pointer-events: none;
  content: "";
  position: absolute;
  top: -100%;
  left: -100%;
  width: 200%;
  height: 200%;
  background: linear-gradient(
    120deg,
    transparent 45%,
    rgba(255, 255, 255, 0.9) 50%,
    transparent 55%
  );
  opacity: 0;
}

/* Hover'da şimşek animasyonu */
.box:hover::after {
  opacity: 1;
  animation: lightning 0.6s ease-in-out;
}

@keyframes lightning {
  0% {
    transform: translate(-30%, -30%);
    opacity: 0;
  }
  30% {
    opacity: 1;
  }
  100% {
    transform: translate(30%, 30%);
    opacity: 0;
  }
}

.box h2 {
  color: black;
  font-family: "Roboto" sans-serif;
  margin-top: 5px;
}
.box p {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  margin-top: 15px;
  text-align: center;
}
.button {
  margin-top: auto;
  padding-bottom: 20px;
  display: flex;
  justify-content: center;
}

/* Hover .button içindeyken de aktif kalsın */
.button:hover .btn {
  background-color: #000;
  color: #fff;
  border-color: #fff;
}

.btn {
  padding: 12px 28px;
  font-weight: 700;
  font-size: 12px;
  margin-top: 30px;
  cursor: pointer;
  color: #000;
  background-color: #fff;
  border: 1px solid red;
  border-radius: 20px;
  transition: ease 0.5s;
  text-decoration: none;
}

/*! Services html HİZMETLERİMİZ END */

/*? Seat-Washing html KOLTUK YIKAMA START */
.seat-washing-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-direction: column;
}

.seat-washing-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/seat-washing-bg.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* yatay */
  align-items: center; /* dikey */
}

.seat-washing-title {
  color: white;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 24px;
  transform: translateY(40px);
}

.seat-washing-content {
  display: flex;
  gap: 20px; /* kart ↔ yazı mesafesi */
  padding: 20px 0;
}

.seat-washing-col-1 {
  flex-basis: 35%;
  display: flex;
  justify-content: flex-end; /* SAĞA YASLAR */
  align-items: center;
  padding-right: 40px;
}

.seat-washing-card {
  width: 400px;
  height: 400px;
  border-radius: 30%;

  overflow: hidden;
  border: 4px solid white;
}

.seat-washing-card-img {
  width: 100%;
  height: 100%;

  background-image: url(./img/seat-washing-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.1); /* BAŞTA BÜYÜK */
  transition: transform 0.4s ease;
}

.seat-washing-card:hover .seat-washing-card-img {
  transform: scale(1); /* İÇERİ DOĞRU KÜÇÜLÜR */
}

.seat-washing-col-2 {
  flex-basis: 55%;
  display: flex;
  justify-content: center; /* yatay */
  align-items: flex-start; /* ÜSTTEN BAŞLASIN */
}

.seat-washing-article {
  width: 90%; /* kenarlardan nefes alsın */
}
.seat-washing-article h2 {
  text-align: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #000;
}

.seat-washing-article p {
  text-align: justify; /* iki yana yasla */
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

/*? Seat-Washing html KOLTUK YIKAMA END */

/*! Bed-Washing html YATAK YIKAMA START */
.bed-washing-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-direction: column;
}

.bed-washing-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/bed-washing-bg.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* yatay */
  align-items: center; /* dikey */
}

.bed-washing-title {
  color: white;
  font-weight: bold;
  letter-spacing: 4px;
  font-size: 24px;
  transform: translateY(40px);
}

.bed-washing-content {
  display: flex;
  gap: 20px; /* kart ↔ yazı mesafesi */
  padding: 20px 0;
}

.bed-washing-col-1 {
  flex-basis: 35%;
  display: flex;
  justify-content: flex-end; /* SAĞA YASLAR */
  align-items: center;
  padding-right: 40px;
}

.bed-washing-card {
  width: 400px;
  height: 400px;
  border-radius: 30%;

  overflow: hidden;
  border: 4px solid white;
}

.bed-washing-card-img {
  width: 100%;
  height: 100%;

  background-image: url(./img/bed-washing-img.jpg);
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  transform: scale(1.1); /* BAŞTA BÜYÜK */
  transition: transform 0.4s ease;
}

.bed-washing-card:hover .bed-washing-card-img {
  transform: scale(1); /* İÇERİ DOĞRU KÜÇÜLÜR */
}

.bed-washing-col-2 {
  flex-basis: 55%;
  display: flex;
  justify-content: center; /* yatay */
  align-items: flex-start; /* ÜSTTEN BAŞLASIN */
}

.bed-washing-article {
  width: 90%; /* kenarlardan nefes alsın */
}
.bed-washing-article h2 {
  text-align: center;
  font-weight: bold;
  font-family: "Roboto", sans-serif;
  color: #000;
}

.bed-washing-article p {
  text-align: justify; /* iki yana yasla */
  line-height: 1.7;
  font-family: "Roboto", sans-serif;
}

/*! Bed-Washing html YATAK YIKAMA END */


/*! communication İLETİŞİM START */

.communication-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-direction: column;
}

.communication-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/communication-bg.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* yatay */
  align-items: center; /* dikey */
}

.communication-title {
  color: white;
  font-weight: bold;
  letter-spacing: 3px;
  font-size: 24px;
  transform: translateY(40px);
}
.communication-content {
  width: 100%;
  background: #f1efef;

  display: grid;
  grid-template-columns: repeat(3, 300px); /* HER SATIR 3 BOX */
  justify-content: center;
  gap: 50px;

  padding: 40px 0;
}

.com-box {
  position: relative;
  overflow: hidden;
  width: 300px;
  background: white;
  display: flex;
  flex-direction: column;
  height: 100px;
  padding: 15px ;
  margin: 10px 0 10px 20px;
  color: white;
  font-family: sans-serif;
  border: 2px solid white;
  transition: ease .5s;
  
}

.com-box:hover{
transform: translateY(-10px);
border: 2px solid rgba(0, 0, 0, 0.2);
}
.com-box h2{
  font-size: 20px;
  color: rgba(0, 0, 0, 0.75);
  font-family: "Roboto" sans-serif;
  font-weight: 400;
}

.com-box p {
  color: rgba(0, 0, 0, 0.55);
  font-size: 14px;
  margin-top: 10px;
  
}
.com-icon {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.6);
}


.com-maps-full {
  width: 100%;
  height: 350px;
  padding-left: 50px;
  box-sizing: border-box;
  overflow: hidden;
}

.com-maps-full iframe {
  width: 100%;
  height: 100%;
  border: none;
  display: block; /* ekstra boşluk önler */
}

/*! communication İLETİŞİM END */


/*! MEDİA GALERİ START */
.media-container {
  width: 100%;
  background: #f1efef;
  display: flex;
  flex-wrap: wrap;        
  justify-content: center;
  gap: 30px;              
  padding: 40px 0;
}


.media-img {
  background: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
    url(./img/media-bg.jpg);
  height: 40vh;
  width: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  display: flex;
  justify-content: center; /* yatay */
  align-items: center; /* dikey */
}

.media-title {
  color: white;
  font-weight: bold;
  letter-spacing: 5px;
  font-size: 24px;
  transform: translateY(40px);
}
.media-content {
  width: 100%;
  background: #f1efef;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 16px;          
  padding: 30px 0;
}


.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
}


.media-box video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  cursor: pointer;
  transition: transform 0.3s ease;
  
}

.media-box:hover img,
.media-box:hover video {
  transform: scale(1.04);  
}


@media (max-width: 992px) {
  .media-content {
    grid-template-columns: repeat(3, 1fr);
    padding: 20px;
  }
}

@media (max-width: 576px) {
  .media-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 6px;
  }
}



/*! MEDİA GALERİ END */




/* RESPONSIVE START */


/* ========================= */
/* 📱 TABLET & MOBİL */ 
/* ========================= */


@media (max-width: 992px) {

  .sidebar { display: none; }

  .content-wrapper,
  .movie-list-container,
  .maps-full,
  .footer-box {
    margin-left: 0;
  }

  .navbar {
    height: auto;
    padding: 15px 0;
  }

  .navbar-wrapper {
    padding: 0 20px;
  }

  .menu-toggle {
    display: block;
  }

  .menu-container {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: #fff;
    display: none;
    flex-direction: column;
    z-index: 999;
  }

  .menu-container.active {
    display: block;
  }

  .menu-list {
    flex-direction: column;
    gap: 20px;
    padding: 20px 0;
  }

  .featured-content {
    height: auto;
    min-height: 70vh;
    padding: 20px;
  }

  .featured-description {
    font-size: 18px;
    white-space: normal;
  }

  .row {
    flex-direction: column;
    height: auto;
  }

  .cards {
    margin: 0;
    gap: 20px;
  }

  .movie-list-container {
    margin-left: 0;
    padding-top: 40px;
  }
  .movie-list {
    height: auto;
  }

  .movie-item-image {
    width: 220px;
    height: 160px;
  }

  .arrow,
  .comment-arrow {
    display: none;
  }

  .footer-wrapper {
    flex-direction: column;
  }
}



@media (max-width: 768px) {

  .media-content img,
  .media-content video {
    width: 100%;
    height: auto;
  }

  .card {
    width: 100%;
    max-width: 300px;
    height: auto;
    margin: auto;
  }

  .movie-list {
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .movie-item {
    scroll-snap-align: center;
  }
    .comment-slider-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comment-list {
    display: flex;
    gap: 20px;
    scroll-snap-type: x mandatory;
  }

  .comment-item {
    flex: 0 0 280px;   /* 🔥 EN KRİTİK SATIR */
    scroll-snap-align: center;
  }
}


/* 📱 MOBILE DİKEY (PORTRAIT) */
@media (max-width: 576px) {
  .row {
    flex-direction: column; /* Col-1 ve Col-2 alt alta gelsin */
    height: auto;           /* Kartların tamamı sığsın */
    margin-top: 30px;
  }

  .col-1 {
    flex-basis: 100%;
    margin-bottom: 20px;   /* altındaki Col-2 ile boşluk */
  }

  .cards {
    margin-left: 0;
    grid-template-columns: 1fr 1fr; /* 2 sütun hâlâ korunabilir */
    grid-template-rows: auto auto;
    gap: 20px;
    max-width: 100%;
    justify-items: center; /* kartları ortala */
  }

  .card {
    width: 45vw;   /* ekran genişliğine göre küçült */
    height: 200px; /* yükseklik biraz küçült */
  }

  .col-2 {
    flex-basis: 100%;
    padding: 20px;
  }

  .col-2 h1 {
    font-size: 28px;
  }
  .col-2 h2 {
    font-size: 18px;
  }
  .col-2 > p {
    font-size: 16px;
  }
  .article h3 {
    font-size: 18px;
  }
  .article p {
    font-size: 14px;
  }
}



body.menu-open {
  overflow: hidden;
}

/* ========================= */
/* 📱 MOBILE LANDSCAPE FIX */
/* ========================= */
@media (max-width: 992px) and (orientation: landscape) {

  /* Hamburger MENÜYÜ KAPAT */
  .menu-toggle {
    display: none !important;
  }

  /* Menü desktop gibi davransın */
  .menu-container {
    position: static;
    display: flex !important;
    background: transparent;
  }

  .menu-list {
    flex-direction: row;
    gap: 30px;
    padding: 0;
  }

  /* Featured alanı toparla */
  .featured-content {
    min-height: auto;
    padding: 30px 50px;
  }

  /* Slider üst üste binmesin */
  .movie-list-container {
    margin-top: 40px;
  }

}
/* 📱 TELEFON YATAY MOD (LANDSCAPE) */
@media (max-width: 900px) and (orientation: landscape) {

  .featured-content {
    min-height: 70vh;
    padding: 20px;
  }

  .featured-overlay {
    padding-bottom: 40px;
  }

  .featured-description {
    font-size: 16px;
    white-space: normal;
  }

  /* 🔥 SLIDER → SCROLL */
  .comment-list,
  .movie-list {
    transform: none !important;
    transition: none !important;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }

  .comment-item,
  .movie-item {
    flex: 0 0 280px;
    scroll-snap-align: center;
  }
}




/*! ABOUT US RESPONSIVE START */

/* Tablet ve mobil uyum (992px altı) */
@media (max-width: 992px) {
  .about-us-content {
    flex-direction: column; /* yan yana → alt alta */
    gap: 15px;
    padding: 15px;
  }

  .about-us-col-1,
  .about-us-col-2 {
    flex-basis: 100%; /* tam genişlik */
    justify-content: center;
    align-items: center;
  }

  .about-us-article,
  .about-us-article-down {
    width: 95%;
    margin-left: 0; /* mobilde sola kayma */
  }

  .about-us-card-1 {
    width: 250px;
    height: 250px;
    margin: 10px 0; /* üst-alt boşluk */
  }

  .about-us-title {
    font-size: 22px;
    transform: translateY(20px); /* biraz daha küçük ekran için yukarı taşı */
    text-align: center;
  }

  .about-us-img {
    height: 30vh; /* görseli biraz daha kısa yap */
  }
}

/* Küçük mobil (576px altı) */
@media (max-width: 576px) {
  .about-us-card-1 {
    width: 200px;
    height: 200px;
  }

  .about-us-article p,
  .about-us-article-down p {
    font-size: 14px; /* yazıları küçült */
    line-height: 1.6;
  }

  .about-us-img {
    height: 25vh;
  }

  .about-us-title {
    font-size: 20px;
    transform: translateY(15px);
  }
}

/*! ABOUT US RESPONSIVE END */

/*! BED WASHING RESPONSIVE START */
/* ============================= */
/* 📱 TABLET (992px ve altı) */
/* ============================= */
@media (max-width: 992px) {

  .bed-washing-content {
    flex-direction: column;   /* yan yana → alt alta */
    align-items: center;
    padding: 30px 0;
  }

  .bed-washing-col-1,
  .bed-washing-col-2 {
    flex-basis: 100%;
    justify-content: center;
    padding: 0;
  }

  .bed-washing-card {
    width: 300px;
    height: 300px;
    margin-bottom: 20px;
  }

  .bed-washing-article {
    width: 85%;
  }

  .bed-washing-article h2 {
    font-size: 22px;
  }
}


/* ============================= */
/* 📱 MOBİL (576px ve altı) */
/* ============================= */
@media (max-width: 576px) {

  .bed-washing-img {
    height: 30vh;
  }

  .bed-washing-title {
    font-size: 18px;
    letter-spacing: 2px;
    transform: translateY(20px);
    text-align: center;
  }

  .bed-washing-card {
    width: 220px;
    height: 220px;
    border-radius: 25%;
  }

  .bed-washing-article {
    width: 90%;
  }

  .bed-washing-article h2 {
    font-size: 20px;
    line-height: 1.4;
  }

  .bed-washing-article p {
    font-size: 14px;
    line-height: 1.6;
  }
}

/*! BED WASHING RESPONSIVE END */


/*! COMMUNICATION RESPONSIVE START */
/* ============================= */
/* 📱 TABLET (992px ve altı) */
/* ============================= */
@media (max-width: 992px) {

  .communication-content {
    grid-template-columns: repeat(2, 280px); /* 3 → 2 kolon */
    gap: 30px;
    padding: 30px 0;
  }

  .com-box {
    width: 280px;
    margin: 0;
  }

  .communication-title {
    font-size: 22px;
    transform: translateY(30px);
  }

  .com-maps-full {
    padding-left: 0;
    height: 300px;
  }
}


/* ============================= */
/* 📱 MOBİL (576px ve altı) */
/* ============================= */
@media (max-width: 576px) {

  .communication-img {
    height: 30vh;
  }

  .communication-title {
    font-size: 18px;
    letter-spacing: 2px;
    transform: translateY(20px);
    text-align: center;
  }

  .communication-content {
    grid-template-columns: 1fr; /* tek kolon */
    gap: 20px;
    padding: 20px 0;
  }

  .com-box {
    width: 90%;
    height: auto;
    margin: auto;
    padding: 20px;
  }

  .com-box h2 {
    font-size: 18px;
  }

  .com-box p {
    font-size: 14px;
    line-height: 1.5;
  }

  .com-icon {
    font-size: 20px;
  }

  .com-maps-full {
    height: 250px;
    padding-left: 0;
  }
}
/*! COMMUNICATION RESPONSIVE END */


/*! MEDIA RESPONSIVE START */
/* ============================= */
/* 🖥️ DESKTOP (Varsayılan) */
/* ============================= */
.media-content {
  width: 100%;
  background: #f1efef;
  display: grid;
  grid-template-columns: repeat(3, 300px);
  justify-content: center;
  gap: 16px;
  padding: 30px 0;
}

.media-box {
  width: 300px;
  height: 200px;
  overflow: hidden;
  border-radius: 6px;
}


/* ============================= */
/* 📱 TABLET (992px ve altı) */
/* ============================= */
@media (max-width: 992px) {

  .media-img {
    height: 32vh;
  }

  .media-title {
    font-size: 22px;
    letter-spacing: 3px;
    transform: translateY(30px);
  }

  .media-content {
    grid-template-columns: repeat(2, 1fr);
    padding: 20px;
    gap: 12px;
  }

  .media-box {
    width: 100%;
    height: 220px;
  }
}


/* ============================= */
/* 📱 MOBİL (576px ve altı) */
/* ============================= */
@media (max-width: 576px) {

  .media-img {
    height: 26vh;
  }

  .media-title {
    font-size: 18px;
    letter-spacing: 2px;
    transform: translateY(20px);
    text-align: center;
  }

  .media-content {
    grid-template-columns: 1fr;
    padding: 15px;
    gap: 10px;
  }

  .media-box {
    width: 100%;
    height: auto;
  }

  .media-box img,
  .media-box video {
    height: auto;
  }

  /* Mobilde hover büyümesini kapatalım */
  .media-box:hover img,
  .media-box:hover video {
    transform: none;
  }
}
/*! MEDIA RESPONSIVE END */



/*! SEAT WASHING RESPONSIVE START */
@media (max-width: 992px) {
  .seat-washing-content {
    flex-direction: column;
    align-items: center;
    gap: 30px;
  }

  .seat-washing-col-1,
  .seat-washing-col-2 {
    flex-basis: 100%;
    padding: 0;
    justify-content: center;
  }

  .seat-washing-card {
    width: 320px;
    height: 320px;
  }

  .seat-washing-article {
    width: 85%;
  }

  .seat-washing-title {
    transform: translateY(0);
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .seat-washing-img {
    height: 30vh;
  }

  .seat-washing-card {
    width: 260px;
    height: 260px;
    border-radius: 25%;
  }

  .seat-washing-article {
    width: 90%;
  }

  .seat-washing-article h2 {
    font-size: 18px;
    text-align: center;
  }

  .seat-washing-article p {
    font-size: 14px;
    line-height: 1.6;
  }
}
/*! SEAT WASHING RESPONSIVE END */


/*! SERVICES RESPONSIVE START */
@media (max-width: 992px) {
  .services-content {
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    padding: 30px 20px;
  }

  .box {
    width: 100%;
    max-width: 340px;
  }

  .box img {
    width: 100%;
    height: 220px;
    object-fit: cover;
  }

  .services-title {
    transform: translateY(0);
    font-size: 22px;
  }
}
@media (max-width: 576px) {
  .services-img {
    height: 30vh;
  }

  .services-content {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 20px 10px;
  }

  .box {
    max-width: 320px;
    margin-top: 0;
  }

  .box img {
    height: 200px;
  }

  .box h2 {
    font-size: 18px;
  }

  .box p {
    font-size: 13px;
    line-height: 1.6;
  }

  .btn {
    font-size: 11px;
    padding: 10px 24px;
  }
}
